@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:wght@400;500;700;800&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: 400px;
  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: 140px;
}

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

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

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

.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: 10vw;
  }
  .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;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  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: 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%;
}
.thiscontents_nav .navigation_wrp {
  width: 100%;
  text-align: left;
  top: 0;
  left: 0;
  height: 60px;
  background: #1e275c;
  z-index: 999;
  padding: 0 10px;
}
.thiscontents_nav {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .thiscontents_nav {
    display: none;
  }
}
.thiscontents_nav {
  /* for TABLET */
  /* SP */
}
.thiscontents_nav {
  /* for SP */
  /*-------------------------------------------------------------
  	navigation	
  -------------------------------------------------------------*/
}
.thiscontents_nav .navigation {
  max-width: 1030px;
  position: relative;
  margin: 0 auto;
}
.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;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
}
.thiscontents_nav .navigation li a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.thiscontents_nav .navigation li a:hover {
  color: #eae0b7;
  text-decoration: none;
}
.thiscontents_nav .navigation .localnav li {
  margin-top: 0;
  padding-left: 20px;
  margin-right: 20px;
}
.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.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;
}
.thiscontents_nav .navigation {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .thiscontents_nav .navigation .navigation_wrp {
    display: none;
  }
}
.thiscontents_nav .navigation {
  /* for TABLET */
  /* SP */
}
.thiscontents_nav .navigation {
  /* for SP */
}
.thiscontents_nav {
  /*-------------------------------------------------------------
  	// thiscontents_nav	ここまで
  -------------------------------------------------------------*/
}

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

	linebtn

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

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

	sp_menu

===============================================================*/
.sp_menu {
  display: none;
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .sp_menu {
    display: block;
    position: absolute;
    width: 100%;
    height: 40px;
    top: 50px;
    left: 0;
    z-index: 200;
    background: #1e275c;
  }
  .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 {
    display: none;
    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;
  }
}
.sp_menu {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .sp_menu .menu {
    width: 80px;
    height: 40px;
  }
}
.sp_menu {
  /* for SP */
  /* SP */
}
@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;
  }
}
.sp_menu {
  /* for SP */
  /*-------------------------------------------------------------
  	menu-trigger
  -------------------------------------------------------------*/
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .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 {
    /* animation */
  }
  .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);
  }
}
.sp_menu {
  /* for TABLET */
  /* SP */
}
.sp_menu {
  /* for SP */
  /*-------------------------------------------------------------
  	sp_menu	 sp_sns
  -------------------------------------------------------------*/
  /* タブレット */
}
@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;
  }
}
.sp_menu {
  /* for TABLET */
  /* SP */
}
.sp_menu {
  /* for SP */
  /*-------------------------------------------------------------
  	sp_menu navigation
  -------------------------------------------------------------*/
  /* タブレット */
}
@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);
  }
}
.sp_menu {
  /* for TABLET */
  /* SP */
}
.sp_menu {
  /* for SP */
  /*-------------------------------------------------------------
  	sp_menu body	
  -------------------------------------------------------------*/
  /* タブレット */
}
@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;
  }
}
.sp_menu {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .sp_menu .body .bnr {
    float: none;
    width: 90%;
    margin: 0 auto;
    margin-top: 10px;
  }
}
.sp_menu {
  /* for SP */
  /*-------------------------------------------------------------
  	// sp_menu	ここまで
  -------------------------------------------------------------*/
}

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

	_headline.scss 2021/9/24

===============================================================*/
/*-------------------------------------------------------------
	mixin	
-------------------------------------------------------------*/
/*-------------------------------------------------------------
	block	
-------------------------------------------------------------*/
.block + .block_title {
  margin-top: 98px;
}
.block + .block {
  margin-top: 28px;
}
.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 {
  margin-bottom: 50px;
  text-align: center;
}
.headline .title {
  font-size: 40px;
  letter-spacing: -0.02em;
}
.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: 7vw;
    line-height: 1.3;
  }
  .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;
}
.lv_1 {
  /*.content * + & {
  	margin-top: $content_title_margin;
  }*/
}
@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;
  }
  .lv_1 {
    /*.content * + & {
    	margin-top: $content_title_margin_sp;
    }	*/
  }
}

/*-------------------------------------------------------------
	lv_2	
-------------------------------------------------------------*/
.lv_2 {
  margin-bottom: 20px;
}
.lv_2 .title {
  font-size: 25px;
}
.lv_2 .lead {
  font-size: 16px;
}
.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: 400px;
  margin: 0 auto;
  margin-top: 60px;
}

.btn_detail a {
  position: relative;
  display: block;
  background-color: #1e275c;
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
  padding: 20px 0;
}

/*.btn_detail 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;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}*/
.btn_detail a:hover {
  text-decoration: none;
  background-color: #182049;
  color: #ffffff;
}

.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: 5vw;
  }
  .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: #1e275c;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 101;
  border-radius: 30px;
}

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

#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;
  /* タブレット以下 */
}
@media screen and (max-width: 1030px) {
  .fixed {
    position: fixed;
    top: 0;
  }
}
.fixed {
  /* for tablet max-width: 1030px */
}

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

	PC/SP/TABLET

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

.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 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;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.txtlink {
  /* タブレット */
}
.txtlink {
  /* for TABLET */
  /* SP */
}
@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;
  }
}
.txtlink {
  /* for SP */
  /*===============================================================
      //	txtlink
  ===============================================================*/
}

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

	thiscontents

===============================================================*/
.thiscontents {
  width: 100%;
  font-family: "Shippori Mincho B1", serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #1e275c;
}
.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;
  font-weight: 400;
}
.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 {
  	color: #0099CC;
  }*/
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .thiscontents {
    padding-top: 40px;
  }
}
.thiscontents {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents {
    margin-bottom: 10px;
  }
  .thiscontents p {
    font-size: 3.8vw;
    line-height: 1.6;
  }
}
.thiscontents {
  /* for SP */
  /*===============================================================

  	リンクふわっと

  ===============================================================*/
}
.thiscontents a:hover img {
  opacity: 0.6;
  -webkit-opacity: 0.6;
  -moz-opacity: 0.6;
  filter: alpha(opacity=60);
  /* IE lt 8 */
  -ms-filter: "alpha(opacity=60)";
  /* IE 8 */
}
.thiscontents a img {
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
}
.thiscontents {
  /*===============================================================

  	header

  ===============================================================*/
}
.thiscontents .maintitle {
  width: 100%;
  background-color: #fff;
  padding: 20px 0;
  font-family: "Shippori Mincho B1", serif;
}
.thiscontents .maintitle .title {
  font-size: 16px;
  font-weight: 800;
  color: #1e275c;
  text-align: left;
}
.thiscontents .maintitle .title span {
  font-size: 30px;
  margin-right: 10px;
}
.thiscontents .maintitle {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .thiscontents .maintitle .content_width {
    width: 96%;
  }
  .thiscontents .maintitle .title {
    font-size: 15px;
  }
  .thiscontents .maintitle .title span {
    font-size: 26px;
  }
}
.thiscontents .maintitle {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents .maintitle {
    padding: 2vw 0;
  }
  .thiscontents .maintitle .title {
    font-size: 3vw;
  }
  .thiscontents .maintitle .title span {
    font-size: 6vw;
  }
}
.thiscontents .maintitle {
  /* for SP */
}
.thiscontents {
  /*===============================================================

  	pickup

  ===============================================================*/
}
.thiscontents .section_pickup {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.thiscontents .section_pickup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/202606/pickup_bg.jpg") center center/cover no-repeat;
  background-attachment: fixed;
  z-index: 0;
  -webkit-animation: bgFade 4s ease-in-out infinite alternate;
          animation: bgFade 4s ease-in-out infinite alternate;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.thiscontents .section_pickup > * {
  position: relative;
  z-index: 1;
}
.thiscontents .section_pickup .grid.linkarea {
  -webkit-box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.4);
}
@-webkit-keyframes bgFade {
  0% {
    opacity: 1;
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  50% {
    opacity: 0.85;
    -webkit-filter: brightness(1.05);
            filter: brightness(1.05);
  }
  100% {
    opacity: 1;
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}
@keyframes bgFade {
  0% {
    opacity: 1;
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
  50% {
    opacity: 0.85;
    -webkit-filter: brightness(1.05);
            filter: brightness(1.05);
  }
  100% {
    opacity: 1;
    -webkit-filter: brightness(1);
            filter: brightness(1);
  }
}
.thiscontents .section_pickup {
  /* タブレット */
}
.thiscontents .section_pickup {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents .section_pickup .grid_wrp .grid_3_1 {
    width: 100%;
  }
}
.thiscontents .section_pickup {
  /* for SP */
  /*===============================================================
  	ph_area
  ===============================================================*/
}
.thiscontents .section_pickup .ph_area {
  position: relative;
}
.thiscontents .section_pickup .ph_area .pickup_icon {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #1e275c;
  color: #ffffff;
  top: -20px;
  left: -5px;
  z-index: 10;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.thiscontents .section_pickup .ph_area .pickup_icon span {
  width: 40px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  text-align: center;
  position: absolute;
  top: 0px;
  font-size: 16px;
  font-weight: 800;
  line-height: 40px;
  text-align: center;
}
.thiscontents .section_pickup .ph_area .pickup_icon.color_hana {
  background-color: #e28194;
}
.thiscontents .section_pickup .ph_area .pickup_icon.color_tsuki {
  background-color: #f5b602;
}
.thiscontents .section_pickup .ph_area .pickup_icon.color_yuki {
  background-color: #8ab3a1;
}
.thiscontents .section_pickup .ph_area .pickup_icon.color_hoshi {
  background-color: #5cb7d4;
}
.thiscontents .section_pickup .ph_area .pickup_icon.color_sora {
  background-color: #b179c4;
}
.thiscontents .section_pickup .ph_area {
  /* タブレット */
}
.thiscontents .section_pickup .ph_area {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents .section_pickup .ph_area .pickup_icon {
    width: 8vw;
    height: 8vw;
    top: -3vw;
    left: 0;
  }
  .thiscontents .section_pickup .ph_area .pickup_icon span {
    width: 8vw;
    font-size: 3.2vw;
    line-height: 8vw;
  }
}
.thiscontents .section_pickup .ph_area {
  /* for SP */
}
.thiscontents .section_pickup {
  /*===============================================================
  	txt_area
  ===============================================================*/
}
.thiscontents .section_pickup .txt_area {
  text-align: center;
  padding: 20px 10px;
  font-family: YakuHanMP, "Shippori Mincho B1", serif;
}
.thiscontents .section_pickup .txt_area.lv_1 {
  margin-bottom: 0;
}
.thiscontents .section_pickup .txt_area.lv_1 .title {
  line-height: 1;
}
.thiscontents .section_pickup .txt_area.lv_1 .title span {
  font-size: 15px;
}
.thiscontents .section_pickup .txt_area.lv_1 .sub_txt {
  font-size: 16px;
  font-weight: 400;
  margin-top: 7px;
}
.thiscontents .section_pickup .txt_area.lv_1 .oadate {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}
.thiscontents .section_pickup .txt_area.lv_1 .copyright {
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
  margin-top: 15px;
  color: #666;
}
.thiscontents .section_pickup .txt_area {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .thiscontents .section_pickup .txt_area {
    padding: 15px 10px;
    text-align: left;
  }
  .thiscontents .section_pickup .txt_area.lv_1 .title span {
    font-size: 14px;
  }
  .thiscontents .section_pickup .txt_area.lv_1 .sub_txt {
    font-size: 15px;
  }
}
.thiscontents .section_pickup .txt_area {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents .section_pickup .txt_area {
    padding: 5vw;
  }
  .thiscontents .section_pickup .txt_area.lv_1 .title {
    line-height: 1.2;
  }
  .thiscontents .section_pickup .txt_area.lv_1 .title span {
    font-size: 3vw;
  }
  .thiscontents .section_pickup .txt_area.lv_1 .sub_txt {
    font-size: 3.5vw;
  }
  .thiscontents .section_pickup .txt_area.lv_1 .oadate {
    font-size: 3.5vw;
    margin-top: 3vw;
  }
}
.thiscontents .section_pickup .txt_area {
  /* for SP */
}
.thiscontents .section_pickup {
  /*===============================================================
  	j-stream
  ===============================================================*/
}
.thiscontents .section_pickup.section_j-stream .attention {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-top: 20px;
}
.thiscontents .section_pickup.section_j-stream .j-stream .txt_area {
  padding: 10px;
}
.thiscontents .section_pickup.section_j-stream .j-stream .txt_area .title {
  font-size: 1.35vw;
  line-height: 1.4;
  font-weight: 800;
}
.thiscontents .section_pickup.section_j-stream .j-stream .txt_area .title span {
  font-size: 1.15vw;
}
.thiscontents .section_pickup.section_j-stream .j-stream .txt_area .year_place {
  font-size: 1vw;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 5px;
}
.thiscontents .section_pickup.section_j-stream .j-stream .txt_area .delivery_date {
  font-size: 1.15vw;
  margin-top: 10px;
}
.thiscontents .section_pickup.section_j-stream .j-stream .txt_area .delivery_date span {
  font-size: 1vw;
}
.thiscontents .section_pickup.section_j-stream .bnr_area_wrp {
  margin-top: 80px;
}
.thiscontents .section_pickup.section_j-stream .bnr_area_wrp .bnr_area_txt {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.thiscontents .section_pickup.section_j-stream .bnr_area_wrp .bnr_area {
  margin-top: 5px;
}
.thiscontents .section_pickup.section_j-stream .bnr_area_wrp .bnr_area img.pc_tablet {
  display: block;
}
@media screen and (max-width: 1200px) {
  .thiscontents .section_pickup.section_j-stream .j-stream .txt_area .title {
    font-size: 1.6vw;
  }
  .thiscontents .section_pickup.section_j-stream .j-stream .txt_area .title span {
    font-size: 1.4vw;
  }
  .thiscontents .section_pickup.section_j-stream .j-stream .txt_area .year_place {
    font-size: 1.1vw;
  }
  .thiscontents .section_pickup.section_j-stream .j-stream .txt_area .delivery_date {
    font-size: 1.4vw;
  }
}
.thiscontents .section_pickup.section_j-stream {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .thiscontents .section_pickup.section_j-stream .attention {
    font-size: 2vw;
    margin-top: 4vw;
  }
  .thiscontents .section_pickup.section_j-stream .j-stream .txt_area .title {
    font-size: 18px;
    text-align: left;
  }
  .thiscontents .section_pickup.section_j-stream .j-stream .txt_area .title span {
    font-size: 15px;
  }
  .thiscontents .section_pickup.section_j-stream .j-stream .txt_area .year_place {
    font-size: 14px;
  }
  .thiscontents .section_pickup.section_j-stream .j-stream .txt_area .delivery_date {
    text-align: left;
  }
  .thiscontents .section_pickup.section_j-stream .bnr_area_wrp {
    margin-top: 10vw;
  }
  .thiscontents .section_pickup.section_j-stream .bnr_area_wrp .bnr_area_txt {
    font-size: 4.5vw;
  }
  .thiscontents .section_pickup.section_j-stream .bnr_area_wrp .bnr_area {
    margin-top: 2vw;
  }
  .thiscontents .section_pickup.section_j-stream .bnr_area_wrp .bnr_area img.pc_tablet {
    display: none;
  }
  .thiscontents .section_pickup.section_j-stream .bnr_area_wrp .bnr_area img.sp {
    display: block;
  }
}
.thiscontents .section_pickup.section_j-stream {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents .section_pickup.section_j-stream .j-stream .txt_area {
    padding: 3vw;
  }
  .thiscontents .section_pickup.section_j-stream .j-stream .txt_area .title {
    font-size: 4vw;
    line-height: 1.3;
  }
  .thiscontents .section_pickup.section_j-stream .j-stream .txt_area .title span {
    font-size: 3vw;
  }
  .thiscontents .section_pickup.section_j-stream .j-stream .txt_area .year_place {
    font-size: 3vw;
  }
  .thiscontents .section_pickup.section_j-stream .j-stream .txt_area .delivery_date {
    font-size: 3.5vw;
    margin-top: 3px;
  }
  .thiscontents .section_pickup.section_j-stream .j-stream .txt_area .delivery_date span {
    font-size: 3vw;
  }
}
.thiscontents .section_pickup.section_j-stream {
  /* for SP */
}
.thiscontents {
  /*===============================================================

  	skystage_campaign

  ===============================================================*/
}
.thiscontents .skystage_campaign {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 237, 0.8)), to(rgba(255, 244, 199, 0.4)));
  background-image: linear-gradient(0deg, rgba(255, 255, 237, 0.8), rgba(255, 244, 199, 0.4));
  border: 1px solid #d5c47b;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px;
  text-align: center;
  margin-top: 180px;
  -webkit-box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1px 20px rgba(0, 0, 0, 0.1);
}
.thiscontents .skystage_campaign .logo_campaign {
  width: 300px;
  height: auto;
  margin: 0 auto;
}
.thiscontents .skystage_campaign .campaign_lead {
  font-size: 24px;
  font-weight: 800;
  margin-top: 30px;
}
.thiscontents .skystage_campaign .campaign_wrp {
  border-top: 1px solid rgba(213, 196, 123, 0.4);
  margin-top: 20px;
  padding: 20px 0 30px;
}
.thiscontents .skystage_campaign .campaign_wrp .campaign_title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 10px;
}
.thiscontents .skystage_campaign .campaign_wrp .campaign_title span {
  font-size: 62px;
}
.thiscontents .skystage_campaign .campaign_wrp .campaign_date {
  font-size: 30px;
  font-weight: 800;
}
.thiscontents .skystage_campaign .campaign_wrp .campaign_date span {
  font-size: 24px;
  margin-left: 2px;
}
.thiscontents .skystage_campaign .camapaign_detail {
  font-size: 16px;
  text-align: left;
  margin-top: 30px;
}
.thiscontents .skystage_campaign .btn_detail {
  margin-top: 30px;
}
.thiscontents .skystage_campaign {
  /* タブレット */
}
.thiscontents .skystage_campaign {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents .skystage_campaign {
    padding: 8vw 4vw;
    margin-top: 10vw;
  }
  .thiscontents .skystage_campaign .logo_campaign {
    width: 80%;
  }
  .thiscontents .skystage_campaign .campaign_lead {
    font-size: 4.5vw;
    margin-top: 2vw;
  }
  .thiscontents .skystage_campaign .campaign_wrp {
    margin-top: 5vw;
    padding: 5vw 0 6vw;
  }
  .thiscontents .skystage_campaign .campaign_wrp .campaign_title {
    font-size: 5vw;
    margin-top: 2vw;
  }
  .thiscontents .skystage_campaign .campaign_wrp .campaign_title span {
    font-size: 7.5vw;
  }
  .thiscontents .skystage_campaign .campaign_wrp .campaign_date {
    font-size: 4.5vw;
  }
  .thiscontents .skystage_campaign .campaign_wrp .campaign_date span {
    font-size: 3.5vw;
    margin-left: 0;
  }
  .thiscontents .skystage_campaign .camapaign_detail {
    font-size: 3vw;
    margin-top: 5vw;
  }
  .thiscontents .skystage_campaign .btn_detail {
    margin-top: 2vw;
  }
}
.thiscontents .skystage_campaign {
  /* for SP */
}
.thiscontents {
  /*===============================================================

  	howto

  ===============================================================*/
}
.thiscontents .howto {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 50px;
}
.thiscontents .howto .headline .title {
  font-size: 50px;
  font-family: YakuHanMP, "Shippori Mincho B1", serif;
}
.thiscontents .howto .howto_img {
  width: 800px;
  height: auto;
  margin: 0 auto;
}
.thiscontents .howto .grid_wrp {
  margin-top: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.thiscontents .howto .grid_wrp .waku_gray {
  background-color: #f2f2f2;
  padding: 15px;
  margin-top: 20px;
}
.thiscontents .howto {
  /* タブレット */
}
.thiscontents .howto {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents .howto {
    padding: 8vw 5vw 5vw;
  }
  .thiscontents .howto .headline .title {
    font-size: 7vw;
  }
  .thiscontents .howto .howto_img {
    width: 100%;
  }
  .thiscontents .howto .grid_wrp {
    margin-top: 5vw;
  }
  .thiscontents .howto .grid_wrp .waku_gray {
    padding: 3vw;
    margin-top: 5vw;
  }
}
.thiscontents .howto {
  /* for SP */
}
.thiscontents {
  /*===============================================================

  	section_column

  ===============================================================*/
}
.thiscontents .section_column {
  background-color: #ffffff;
}
.thiscontents .section_column .headline_center {
  text-align: center;
}
.thiscontents .section_column .headline_center .logo {
  width: 240px;
  height: auto;
  margin: 0 auto;
  margin-top: 20px;
}
.thiscontents .section_column .headline_center .title {
  font-size: 45px;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 10px;
}
.thiscontents .section_column .headline_center .lead {
  font-size: 20px;
  margin-top: 10px;
}
.thiscontents .section_column .btn_lead {
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
}
.thiscontents .section_column {
  /* タブレット */
}
.thiscontents .section_column {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents .section_column .headline_center .logo {
    width: 40%;
    margin-top: 2vw;
  }
  .thiscontents .section_column .headline_center .title {
    font-size: 6.5vw;
    margin-top: 1vw;
  }
  .thiscontents .section_column .headline_center .lead {
    font-size: 4.5vw;
    margin-top: 1vw;
  }
  .thiscontents .section_column .btn_lead {
    font-size: 3.5vw;
    margin-top: 5vw;
  }
}
.thiscontents .section_column {
  /* for SP */
}
.thiscontents {
  /*===============================================================

  	header

  ===============================================================*/
  /* タブレット */
}
.thiscontents {
  /* for TABLET */
  /* SP */
}
.thiscontents {
  /* for SP */
  /*===============================================================

  	header

  ===============================================================*/
  /* タブレット */
}
.thiscontents {
  /* for TABLET */
  /* SP */
}
.thiscontents {
  /* for SP */
  /*===============================================================

  ===============================================================*/
  /* タブレット */
}
.thiscontents {
  /* for TABLET */
  /* SP */
}
.thiscontents {
  /* for SP */
}

/*===============================================================
js_multilinkarea js_linkarea
===============================================================*/
.js_linkarea,
.js_multilinkarea {
  cursor: pointer;
}

/*===============================================================
    js_scroll
===============================================================*/
.js_scroll {
  -webkit-transition: all 1s;
  transition: all 1s;
  /* タブレット */
}
.js_scroll {
  /* for TABLET */
  /* SP */
}
.js_scroll {
  /* for SP */
}

/*===============================================================
    js_fadein
===============================================================*/
.js_fadein {
  opacity: 0;
}
.js_fadein.is_active {
  opacity: 1;
}
.js_fadein {
  /* タブレット */
}
.js_fadein {
  /* SP */
}
/*===============================================================
    js_fadein_up
===============================================================*/
.js_fadein_up {
  opacity: 0;
  -webkit-transform: translateY(3vw);
          transform: translateY(3vw);
}
.js_fadein_up.is_active {
  opacity: 1;
  -webkit-transform: translateY(0vw);
          transform: translateY(0vw);
}

.js_move_up {
  -webkit-transform: translateY(3vw);
          transform: translateY(3vw);
}
.js_move_up.is_active {
  -webkit-transform: translateY(0vw);
          transform: translateY(0vw);
}

/*===============================================================
    js_fadein_down
===============================================================*/
.js_fadein_down {
  opacity: 0;
  -webkit-transform: translateY(-3vw);
          transform: translateY(-3vw);
}
.js_fadein_down.is_active {
  opacity: 1;
  -webkit-transform: translateY(0vw);
          transform: translateY(0vw);
}

/*===============================================================
    js_fadein_left
===============================================================*/
.js_fadein_left {
  opacity: 0;
  -webkit-transform: translateX(-3vw);
          transform: translateX(-3vw);
}
.js_fadein_left.is_active {
  opacity: 1;
  -webkit-transform: translateX(0vw);
          transform: translateX(0vw);
}

/*===============================================================
    js_fadein_right
===============================================================*/
.js_fadein_right {
  opacity: 0;
  -webkit-transform: translateX(3vw);
          transform: translateX(3vw);
}
.js_fadein_right.is_active {
  opacity: 1;
  -webkit-transform: translateX(0vw);
          transform: translateX(0vw);
}

/*===============================================================
    js_fadein_photo
===============================================================*/
.js_fadein_photo {
  overflow: hidden;
}
.js_fadein_photo img {
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.js_fadein_photo.is_active img {
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*===============================================================
	js_gsap_parallax_photo
===============================================================*/
.js_gsap_parallax_photo_reverse,
.js_gsap_parallax_photo {
  background-color: #000;
  overflow: hidden;
}

/*===============================================================
	js_2step
===============================================================*/
.js_2step, .js_2step_down, .js_2step_up {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.js_2step::before, .js_2step_down::before, .js_2step_up::before, .js_2step::after, .js_2step_down::after, .js_2step_up::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: #eee;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: all 0.5s cubic-bezier(0.51, -0.01, 0.21, 1.01);
  transition: all 0.5s cubic-bezier(0.51, -0.01, 0.21, 1.01);
  z-index: 2;
}
.js_2step::after, .js_2step_down::after, .js_2step_up::after {
  background-color: #fff;
}
.js_2step.is_active::before, .is_active.js_2step_down::before, .is_active.js_2step_up::before, .js_2step.is_active::after, .is_active.js_2step_down::after, .is_active.js_2step_up::after {
  -webkit-transform-origin: 0 right;
          transform-origin: 0 right;
}
.js_2step.is_active::after, .is_active.js_2step_down::after, .is_active.js_2step_up::after {
  left: auto;
  right: 0;
  width: 0%;
}
.js_2step.is_active::before, .is_active.js_2step_down::before, .is_active.js_2step_up::before {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  left: auto;
  right: 0;
  width: 0%;
}

/*===============================================================
	js_2step_up
===============================================================*/
.js_2step_up.is_active::before, .js_2step_up.is_active::after {
  -webkit-transform-origin: top 0;
          transform-origin: top 0;
  top: 0;
  bottom: auto;
  left: auto;
  right: auto;
  width: 100%;
  height: 0%;
}

/*===============================================================
	js_2step_down
===============================================================*/
.js_2step_down.is_active::before, .js_2step_down.is_active::after {
  -webkit-transform-origin: bottom 0;
          transform-origin: bottom 0;
  top: auto;
  bottom: 0;
  left: auto;
  right: auto;
  width: 100%;
  height: 0%;
}

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

	linkarea

===============================================================*/
.linkarea {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.linkarea:hover {
  background: #fff;
  opacity: 0.6;
}

.haslink {
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .linkarea:hover {
    opacity: 1;
  }
} /* for SP */
/*===============================================================

	.detail_program_list

===============================================================*/
.detail_program_list {
  position: relative;
}
.detail_program_list .list .listitem {
  background: #f6f3eb;
  padding: 8px;
  text-align: left;
}
.detail_program_list .list .odd {
  background: #e7e3d5;
}
.detail_program_list .list .hover {
  background: #efe6c5;
}
.detail_program_list .list .listitem {
  position: relative;
}
.detail_program_list .list a {
  text-decoration: none;
  color: #1e275c;
}
.detail_program_list .list a:hover {
  text-decoration: underline;
  color: #1e275c;
}
.detail_program_list {
  /* SP */
}
@media screen and (max-width: 800px) {
  .detail_program_list .list .listitem {
    padding: 3vw 5vw 5vw;
  }
}
.detail_program_list {
  /* for SP */
  /*-------------------------------------------------------------
  	.detail_program_list .list .listitem .thumb
  -------------------------------------------------------------*/
}
.detail_program_list .list .listitem .thumb {
  float: left;
  width: 50px;
  height: 50px;
  overflow: hidden;
  background: #fff;
  border: solid 1px #ddd;
}
.detail_program_list .list .listitem .thumb img {
  width: 100%;
  height: auto;
}
.detail_program_list {
  /*-------------------------------------------------------------
  	.detail_program_list .list .listitem .txt 	
  -------------------------------------------------------------*/
}
.detail_program_list .list .listitem .txt {
  margin-left: 65px;
  margin-right: 170px;
  padding-top: 5px;
}
.detail_program_list .list .listitem .title {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}
.detail_program_list .list .listitem .date {
  font-size: 15px;
  line-height: 20px;
  margin-top: 0px;
}
.detail_program_list .list .listitem {
  /* タブレット以下 */
}
@media screen and (max-width: 1030px) {
  .detail_program_list .list .listitem .txt {
    margin-right: 0;
  }
  .detail_program_list .list .listitem .txt ul {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .detail_program_list .list .listitem .txt li {
    float: none;
    width: auto;
  }
  .detail_program_list .list .listitem .txt li.date br {
    display: none;
  }
  .detail_program_list .list .listitem .txt li.live {
    float: none;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.detail_program_list .list .listitem {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .detail_program_list .list .listitem .txt {
    padding-top: 1vw;
  }
  .detail_program_list .list .listitem .title {
    font-size: 4vw;
    line-height: 1.6;
    margin-top: 2vw;
  }
  .detail_program_list .list .listitem .date {
    font-size: 3.5vw;
    line-height: 1.2;
    margin-top: 0;
  }
}
.detail_program_list .list .listitem {
  /* for SP */
}
.detail_program_list {
  /*-------------------------------------------------------------
  	.detail_program_list .list .listitem .function_btn 
  -------------------------------------------------------------*/
}
.detail_program_list .list .listitem .function_btn {
  float: right;
}
.detail_program_list .list .listitem .function_btns {
  position: absolute;
  top: 0;
  right: 10px;
  width: 160px;
}
.detail_program_list .list .listitem .function_btns .function_btn {
  margin-left: 10px;
}
.detail_program_list .list .listitem .function_btn a,
.detail_program_list .list .listitem .function_btn a:hover,
.detail_program_list .list .listitem .hover .function_btn a {
  color: #fff;
  text-decoration: none;
}
.detail_program_list .list .listitem {
  /* タブレット以下 */
}
@media screen and (max-width: 1030px) {
  .detail_program_list .list .listitem .function_btn {
    float: none;
  }
  .detail_program_list .list .listitem .function_btns {
    margin-top: 5px;
  }
  .detail_program_list .list .listitem .function_btns .function_btn {
    float: left;
    margin-left: 0;
    margin-right: 10px;
    margin-top: 10px;
    padding-bottom: 5px;
  }
  .detail_program_list .list .listitem .function_btn a,
  .detail_program_list .list .listitem .function_btn a:hover,
  .detail_program_list .list .listitem .hover .function_btn a {
    color: #fff;
    text-decoration: none;
  }
}
.detail_program_list .list .listitem {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .detail_program_list .list .listitem .function_btns {
    position: static;
    width: 100%;
    margin-left: 0;
    clear: both;
    margin-top: 5vw;
  }
  .detail_program_list .list .listitem .function_btns .function_btn {
    float: left;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    padding-bottom: 0;
  }
  .detail_program_list .list .listitem .function_btns .btn-rec {
    margin: 0 auto;
    float: none;
  }
  .detail_program_list .list .listitem .function_btn a,
  .detail_program_list .list .listitem .function_btn a:hover,
  .detail_program_list .list .listitem .hover .function_btn a {
    color: #fff;
    text-decoration: none;
  }
}
.detail_program_list .list .listitem {
  /* for SP */
}
.detail_program_list {
  /*-------------------------------------------------------------
  	.detail_program_list .errormessage
  -------------------------------------------------------------*/
}
.detail_program_list .errormessage {
  padding: 10px 15px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  text-align: center;
  margin-top: 30px;
  color: #999;
}
.detail_program_list {
  /* SP */
}
@media screen and (max-width: 800px) {
  .detail_program_list .errormessage {
    margin-top: 0px;
  }
}
.detail_program_list {
  /* for SP */
}

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

	function_btn

===============================================================*/
.function_btns .btn-play {
  float: left;
}

.function_btns .btn-rec {
  float: right;
}

.function_btn {
  width: 150px;
  height: 50px;
  margin: 0 auto;
  margin-top: 15px;
  position: relative;
}

.function_btn a {
  position: absolute;
  width: 150px;
  display: block;
  background-color: #6c0;
  background-image: none;
  text-align: left;
  text-indent: 32px;
  color: #fff;
  font-size: 12px;
  line-height: 30px;
  font-weight: bold;
  padding: 5px 0;
  border-radius: 3px;
}

.function_btn a:hover {
  position: absolute;
  color: #fff;
  text-decoration: none;
  background-color: #6c0;
  border-bottom: solid 0px #50af21;
  top: 2px;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .function_btn {
    width: 130px;
    height: 40px;
    margin-top: 15px;
  }
  .function_btn a {
    width: 130px;
    text-indent: 28px;
    font-size: 11px;
    line-height: 30px;
    padding: 5px 0;
  }
  /* for TABLET */
}
/* SP */
@media screen and (max-width: 800px) {
  .function_btn {
    width: 48%;
    margin: 0 auto;
    margin-top: 5vw;
    position: relative;
  }
  .function_btn a {
    position: absolute;
    width: 100%;
    display: block;
    background-color: #6c0;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 20px 30px;
    text-align: center;
    text-indent: 0;
    color: #fff;
    font-size: 3vw;
    line-height: 1;
    font-weight: bold;
    padding: 20px 0 5px 0;
  }
}
/* for SP */
/*-------------------------------------------------------------
	.btn-rec 	
-------------------------------------------------------------*/
.btn-rec a {
  text-indent: 32px;
  background-color: #8e8252;
  border-bottom: none;
  -webkit-transition: 0;
  transition: 0;
}

.btn-rec a:hover {
  top: 2px;
  background-color: #937612;
  border-bottom: none;
}

.btn-rec a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  right: auto;
  margin: auto;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50% 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* SP */
@media screen and (max-width: 800px) {
  .btn-rec a {
    text-indent: 0;
    font-size: 3.5vw;
    line-height: 1;
    padding: 3vw 0;
  }
  .btn-rec a:before {
    content: inherit;
    top: 5px;
    bottom: auto;
    left: 0;
    right: 0;
    margin: auto;
  }
}
/* for SP */
/*-------------------------------------------------------------
icon_free
-------------------------------------------------------------*/
.listitem .icon_free {
  display: inline-block;
  background-color: rgb(142, 73, 84);
  border-radius: 2px;
  color: #fff;
  font-size: 90%;
  line-height: 1;
  padding: 2px;
  margin-right: 0.4em;
}

/*-------------------------------------------------------------
	.deactive 
-------------------------------------------------------------*/
.deactive a,
.deactive a:hover {
  cursor: default;
  top: 3px;
  background-color: #999;
  border-bottom: solid 0px #990000;
}

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

	section_program

===============================================================*/
.section_program {
  background-image: url(../images/bg_rose.png);
}

.section_program .section_inner .content {
  padding: 0;
}

.section_program .program_detail_inner {
  margin-top: 20px;
}

.section_program .header_title {
  display: none;
  width: 100%;
  text-align: center;
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
  padding: 0;
  border-bottom: solid 1px #ddd;
  padding-bottom: 25px;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .section_program .program_detail_inner {
    padding: 10px 20px;
    margin-top: 0;
  }
}
/* for TABLET */
/* SP */
@media screen and (max-width: 800px) {
  .section_program .program_detail_inner {
    padding: 10px 0 40px;
  }
  .section_program .header_title {
    width: 100%;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    border-bottom: solid 1px #ddd;
    padding: 20px 15px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
}
/* for SP */
/*===============================================================

  jmagazine_slider

===============================================================*/
.content_column_list {
  margin-top: 40px;
}

.jmagazine_slider {
  position: relative;
  margin: 0 calc(50% - 50vw) 0;
  padding-bottom: 80px;
}

/*-------------------------------------------------------------
  arw
-------------------------------------------------------------*/
.jmagazine_slider:not(:has(.item)) {
  display: none;
}

.jmagazine_slider .item {
  width: 420px;
  margin: 0 5px;
}

.jmagazine_slider .item.item_deactive {
  pointer-events: none;
}

.jmagazine_slider .item a {
  display: block;
  color: #000;
  text-decoration: none;
}

.jmagazine_slider .item a:hover {
  opacity: 0.7;
}

.jmagazine_slider .item .img {
  border: 1px solid #ddd;
}

.jmagazine_slider .item .img img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.jmagazine_slider .item .txt {
  margin-top: 20px;
  color: #1e275c;
  padding: 0 5px;
}

.jmagazine_slider .item .txt .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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5px;
}

.jmagazine_slider .item .txt .wrp .genre {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  padding: 5px 7.5px;
  border: 1px solid #1e275c;
  border-radius: 12px;
  background: #1e275c;
}

.jmagazine_slider .item .txt .wrp .tag {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  color: #e6371d;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  padding: 5px 7.5px;
  border: 1px solid #e6371d;
  border-radius: 12px;
  background: #fff;
}

.jmagazine_slider .item .txt .wrp .date {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  margin-left: auto;
}

.jmagazine_slider .item .txt .head {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 10px;
}

/* for TABLET */
/* SP */
@media screen and (max-width: 800px) {
  .jmagazine_slider {
    padding-bottom: 12vw;
  }
  .jmagazine_slider .item {
    width: 80vw;
    margin: 0 1vw;
  }
  .jmagazine_slider .item .txt {
    margin-top: 4vw;
  }
  .jmagazine_slider .item .txt .wrp {
    gap: 0 1vw;
  }
  .jmagazine_slider .item .txt .wrp .genre {
    font-size: 3vw;
    padding: 1vw 2vw;
    border-radius: 5vw;
  }
  .jmagazine_slider .item .txt .wrp .tag {
    font-size: 3vw;
    padding: 1vw 2vw;
    border-radius: 5vw;
  }
  .jmagazine_slider .item .txt .wrp .date {
    display: block;
    width: 100%;
    font-size: 3.5vw;
    margin-top: 3vw;
  }
  .jmagazine_slider .item .txt .head {
    font-size: 4vw;
    margin-top: 2vw;
  }
}
/* for SP */
.jmagazine_slider .arw {
  padding: 0;
  outline: none;
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.jmagazine_slider .arw:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.jmagazine_slider .arw:focus-visible {
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}

.jmagazine_slider .arw.deactive {
  opacity: 0.7;
  pointer-events: none;
}

.jmagazine_slider .arw:hover {
  opacity: 0.7;
}

.jmagazine_slider .arw:before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #1e275c;
}

.jmagazine_slider .arw:after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  -webkit-transform: rotate(-45deg) translate(2px, 2px);
          transform: rotate(-45deg) translate(2px, 2px);
}

.jmagazine_slider .arw.arw_prev {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.jmagazine_slider .arw.arw_next {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.jmagazine_slider .arw.arw_next:after {
  -webkit-transform: rotate(135deg) translate(2px, 2px);
          transform: rotate(135deg) translate(2px, 2px);
}

/* for TABLET */
/* SP */
@media screen and (max-width: 800px) {
  .jmagazine_slider .arw {
    width: 8vw;
    height: 8vw;
  }
  .jmagazine_slider .arw:after {
    width: 2vw;
    height: 2vw;
    border-top-width: 1px;
    border-left-width: 1px;
  }
  .jmagazine_slider .arw.arw_prev {
    -webkit-transform: translateX(-5vw);
            transform: translateX(-5vw);
  }
  .jmagazine_slider .arw.arw_next {
    -webkit-transform: translateX(5vw);
            transform: translateX(5vw);
  }
}
.main_font_r {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
}

.main_font_m {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
}

.main_font_b {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  font-style: normal;
}

.main_font_e {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 800;
  font-style: normal;
}
/*# sourceMappingURL=style.css.map */