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

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

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

	レイアウト
	_rayout.scss

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

.max_width {
  max-width: 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: 1200px) {
  .section_inner {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.section_inner {
  /* for TABLET */
}
@media screen and (max-width: 800px) {
  .section_inner {
    padding-top: 1vw;
    padding-bottom: 10vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

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

	content 
	個別のコンテンツ

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

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

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

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

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

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .content {
    width: 100%;
    margin: 0 auto;
    -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;
  -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: 25%;
}
.grid_wrp .grid_4_3 {
  width: 75%;
}
.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: 1200px) {
  .grid_wrp .grid_4_1 {
    width: 35%;
  }
  .grid_wrp .grid_4_3 {
    width: 65%;
  }
}
.grid_wrp {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .grid_wrp .grid_4_1, .grid_wrp .grid_4_3 {
    width: 100%;
  }
}
@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% - 3vw) / 3);
  }
  .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: #000;
  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;
}
.thiscontents_nav .navigation li a {
  color: #fff;
  text-decoration: none;
}
.thiscontents_nav .navigation li a:hover {
  color: #ccc;
  text-decoration: none;
}
.thiscontents_nav .navigation .localnav li {
  margin-top: 0;
  padding-left: 20px;
  margin-right: 20px;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
}
.thiscontents_nav .navigation .localnav li:first-child {
  padding-left: 0;
  border-left: 0px;
}
.thiscontents_nav .navigation .localnav li.blank a {
  background: url(/special/common/images/asset/icon-blank-pc.gif) no-repeat right top; /* white	 */
  background: url(/special/common/images/asset/icon-blank-pc_bk.gif) no-repeat right top; /* black	 */
  padding-right: 20px;
}
.thiscontents_nav .navigation .sns {
  position: absolute;
  top: 0;
  right: 0;
}
.thiscontents_nav .navigation .sns li {
  margin-left: 10px;
}
.thiscontents_nav .navigation .sns li.twitter a,
.thiscontents_nav .navigation .sns li.instagram a,
.thiscontents_nav .navigation .sns li.facebook a {
  width: 30px;
  height: 30px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: 30px 30px;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.thiscontents_nav .navigation .sns li.twitter a {
  background-image: url(/special/common/images/asset/icon_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: 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: #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 {
    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: 70px;
}
.block + .block {
  margin-top: 20px;
}
.block p + p {
  margin-top: 1em;
}
@media screen and (max-width: 800px) {
  .block + .block_title {
    margin-top: 8vw;
  }
  .block + .block {
    margin-top: 2vw;
  }
}

/*-------------------------------------------------------------
	headline	
-------------------------------------------------------------*/
.headline .title {
  font-size: 3rem;
  font-family: var(--font-family-min);
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.6;
  letter-spacing: -0.02em;
}
.headline .lead {
  font-size: 2rem;
  line-height: 1.6;
}
.headline .title + .lead {
  margin-top: 1.5rem;
}
.headline .lead + .title {
  margin-top: 1rem;
}
.content * + .headline {
  margin-top: 100px;
}
.headline {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .headline .title {
    font-size: 2.8rem;
  }
}
.headline {
  /* for TABLET */
}
@media screen and (max-width: 800px) {
  .headline {
    margin-bottom: 8vw;
    padding-top: 10vw;
  }
  .headline .title {
    font-size: 5.5vw;
    text-align: left;
  }
  .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: 40px;
}

.btn_detail a {
  position: relative;
  display: block;
  background: linear-gradient(104.03deg, #FF7CC6 -1.87%, #F3CB47 82.99%);
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  padding: 30px 0;
  border-radius: 80px;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.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;
  color: #fff !important;
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

.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;
  /* タブレット以下 */
}
@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
  ===============================================================*/
}

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

	carousel_slider

===============================================================*/
.section_slider {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(9.35%, #e83c1d), color-stop(85.48%, #fff8ec));
  background: linear-gradient(180deg, #e83c1d 9.35%, #fff8ec 85.48%);
  overflow: hidden;
  margin-top: -180px;
  padding-top: 170px;
}
.section_slider .main_title_wrp {
  position: relative;
  margin: 0 auto;
  text-align: center;
  z-index: 5;
}
.section_slider .main_title_wrp .main_title {
  font-family: var(--font-family-min);
  font-size: 4.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.section_slider .main_title_wrp .main_title span {
  font-size: 6rem;
  color: #fffdc1;
}
.section_slider {
  /* タブレット */
}
.section_slider {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .section_slider .main_title_wrp .main_title {
    font-size: 6vw;
    line-height: 1.5;
  }
  .section_slider .main_title_wrp .main_title span {
    font-size: 7vw;
  }
}
.section_slider {
  /* for SP */
  /*-------------------------------------------------------------
  	.carousel_slider
  -------------------------------------------------------------*/
}
.section_slider .carousel_slider {
  margin-top: 3rem;
}
.section_slider .carousel_slider .slider {
  position: relative;
  opacity: 0;
}
.section_slider .carousel_slider .slider .slide {
  width: 1200px;
  padding: 0 10px;
}
.section_slider .carousel_slider .slider .slide .grid_wrp {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .section_slider .carousel_slider .slider .slide {
    width: 1000px;
  }
}
.section_slider .carousel_slider .slider {
  /* for TABLET */
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .section_slider .carousel_slider .slider .slide {
    width: 800px;
  }
}
.section_slider .carousel_slider .slider {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .section_slider .carousel_slider .slider {
    margin-top: 3vw;
  }
}
.section_slider .carousel_slider .slider {
  /* for SP */
  /*-------------------------------------------------------------
  	.slider .pager
  -------------------------------------------------------------*/
}
.section_slider .carousel_slider .slider .pager {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  z-index: 5;
}
.section_slider .carousel_slider .slider .prev {
  left: calc((100% - 1200px) / 2 - 25px);
}
.section_slider .carousel_slider .slider .next {
  right: calc((100% - 1200px) / 2 - 25px);
}
@media screen and (max-width: 1200px) {
  .section_slider .carousel_slider .slider .prev {
    left: calc((100% - 1000px) / 2 - 25px);
  }
  .section_slider .carousel_slider .slider .next {
    right: calc((100% - 1000px) / 2 - 25px);
  }
}
.section_slider .carousel_slider .slider {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .section_slider .carousel_slider .slider .pager {
    top: 0;
    bottom: 0;
  }
  .section_slider .carousel_slider .slider .prev {
    left: 0;
  }
  .section_slider .carousel_slider .slider .next {
    right: 0;
  }
}
.section_slider .carousel_slider .slider {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .section_slider .carousel_slider .slider .pager {
    top: 0;
    bottom: 0;
    width: 8vw;
    height: 8vw;
  }
  .section_slider .carousel_slider .slider .prev {
    left: 1.5vw;
  }
  .section_slider .carousel_slider .slider .next {
    right: 1.5vw;
  }
}
.section_slider .carousel_slider .slider {
  /* for SP */
  /*-------------------------------------------------------------
  	.pager a
  -------------------------------------------------------------*/
}
.section_slider .carousel_slider .slider .pager a {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #e83c1d;
  border-radius: 50% 50%;
  overflow: hidden;
  text-indent: -200%;
  position: relative;
}
.section_slider .carousel_slider .slider .pager a:hover {
  opacity: 0.7;
}
.section_slider .carousel_slider .slider .pager a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-right: solid 1px #fff;
  border-bottom: solid 1px #fff;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg) translate(-2px, -2px);
          transform: rotate(-45deg) translate(-2px, -2px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section_slider .carousel_slider .slider .prev a:after {
  -webkit-transform: rotate(135deg) translate(-2px, -2px);
          transform: rotate(135deg) translate(-2px, -2px);
}
.section_slider .carousel_slider .slider {
  /* タブレット */
}
.section_slider .carousel_slider .slider {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .section_slider .carousel_slider .slider .pager a {
    width: 8vw;
    height: 8vw;
  }
}
.section_slider .carousel_slider .slider {
  /* for SP */
  /*-------------------------------------------------------------
  .slider .slide .photo
  -------------------------------------------------------------*/
}
.section_slider .carousel_slider .slider .slide .photo {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.section_slider .carousel_slider .slider .slide .photo:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.section_slider .carousel_slider .slider .slide .photo img {
  width: inherit;
  max-width: 100%;
  min-width: 100%;
  height: auto;
  border-radius: 2rem;
  -webkit-box-shadow: 0px 4px 10px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 10px 5px rgba(0, 0, 0, 0.1);
}
.section_slider .carousel_slider .slider .slide {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .section_slider .carousel_slider .slider .slide .photo {
    padding-bottom: 10px;
  }
  .section_slider .carousel_slider .slider .slide .photo img {
    border-radius: 2rem 2rem 0 0;
  }
}
.section_slider .carousel_slider .slider .slide {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .section_slider .carousel_slider .slider .slide .photo {
    padding-bottom: 1rem;
  }
}
.section_slider .carousel_slider .slider .slide {
  /* for SP */
}
.section_slider .carousel_slider .slider {
  /*-------------------------------------------------------------
  	.slider .slide .txt
  -------------------------------------------------------------*/
}
.section_slider .carousel_slider .slider .slide .txt {
  padding: 25px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333;
  background: #f8f3ed;
  border-radius: 0px 20px 20px 0px;
}
.section_slider .carousel_slider .slider .slide .txt .pickup_icon {
  width: 50%;
  height: auto;
}
.section_slider .carousel_slider .slider .slide .txt .pickup_title {
  font-family: var(--font-family-min);
  font-weight: var(--font-weight-bold);
  font-size: 2rem;
  margin-top: 15px;
}
.section_slider .carousel_slider .slider .slide .txt .pickup_txt {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  margin-top: 10px;
}
@media screen and (max-width: 1200px) {
  .section_slider .carousel_slider .slider .slide .txt .pickup_icon {
    width: 40%;
  }
  .section_slider .carousel_slider .slider .slide .txt .pickup_title {
    font-size: 1.7rem;
    margin-top: 10px;
  }
  .section_slider .carousel_slider .slider .slide .txt .pickup_txt {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-top: 5px;
  }
}
.section_slider .carousel_slider .slider .slide {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .section_slider .carousel_slider .slider .slide .grid.grid_4_1 {
    margin-top: -10px;
  }
  .section_slider .carousel_slider .slider .slide .txt {
    width: 100%;
    margin: 0 auto;
    border-radius: 0 0 20px 20px;
    padding: 3vw 4vw 4vw;
  }
  .section_slider .carousel_slider .slider .slide .txt .pickup_icon {
    width: 16%;
  }
  .section_slider .carousel_slider .slider .slide .txt .pickup_title {
    font-size: 2rem;
    margin-top: 20px;
  }
}
.section_slider .carousel_slider .slider .slide {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .section_slider .carousel_slider .slider .slide .grid.grid_4_1 {
    margin-top: -1rem;
  }
  .section_slider .carousel_slider .slider .slide .txt .pickup_icon {
    width: 25%;
  }
  .section_slider .carousel_slider .slider .slide .txt .pickup_title {
    font-size: 4.5vw;
    margin-top: 3vw;
  }
  .section_slider .carousel_slider .slider .slide .txt .pickup_txt {
    font-size: 3.5vw;
    line-height: 1.6;
    margin-top: 2vw;
  }
}
.section_slider .carousel_slider .slider .slide {
  /* for SP */
}
.section_slider .carousel_slider .slider {
  /*-------------------------------------------------------------
  slick-dotted
  -------------------------------------------------------------*/
}
.section_slider .carousel_slider .slider .slick-dotted.slick-slider {
  margin-bottom: 80px;
}
.section_slider .carousel_slider .slider .slick-dots li button:before {
  font-size: 10px;
  width: 20px;
  height: 20px;
  color: #d9d9d9;
  opacity: 1;
}
.section_slider .carousel_slider .slider .slick-dots li.slick-active button:before {
  color: #f8c2c2;
  opacity: 1;
}

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

	thiscontents

===============================================================*/
.thiscontents {
  width: 100%;
}
.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 .jtele-header__title__logo {
  margin-right: 22px;
}
.thiscontents {
  /*#jteleHeader {
     transition: all .3s;
  }
  #jteleHeader.fixed {
     position: fixed;
     top: 0;
     left: 0;
     z-index: 1000;
  }

  .jtele-header__title__area {
  	width: 18em;
  }*/
}

/* タブレット */
@media screen and (max-width: 1030px) {
  html {
    font-size: 62.5%;
  }
  .thiscontents .jtele-header__title__area {
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
  }
} /* for TABLET */
/* SP */
@media screen and (max-width: 800px) {
  .thiscontents {
    margin-bottom: 10px;
  }
  .thiscontents p {
    font-size: 1.6rem;
    line-height: 1.6;
  }
} /* for SP */
.thiscontents {
  /*===============================================================

  	section_lineup

  ===============================================================*/
}
.thiscontents .section_lineup {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.5%, #ffffff), color-stop(15%, #fae2e2), color-stop(50%, #ffe1a1), color-stop(84%, #cbe0fc));
  background: linear-gradient(180deg, #ffffff 0.5%, #fae2e2 15%, #ffe1a1 50%, #cbe0fc 84%);
}
.thiscontents .section_lineup .title {
  font-family: var(--font-family-min);
  font-weight: var(--font-weight-bold);
  text-align: center;
}
.thiscontents .section_lineup {
  /* タブレット */
}
.thiscontents .section_lineup {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents .section_lineup .title {
    text-align: left;
    font-size: 4.5vw;
  }
}
.thiscontents .section_lineup {
  /* for SP */
  /*===============================================================
  	nav
  ===============================================================*/
}
.thiscontents .section_lineup .lineup_nav {
  margin-top: 4rem;
}
.thiscontents .section_lineup .lineup_nav .nav_wrp {
  border-radius: 50px;
  padding: 2rem 1rem 3rem;
  text-align: center;
  color: #fff;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.thiscontents .section_lineup .lineup_nav .nav_wrp:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.thiscontents .section_lineup .lineup_nav .nav_wrp {
  /*&::before {
  	content: '';
  	display: inline-block;
  	width: 34px;
  	height: 29px;
  	background-image: url(../images/icon/icon_morning.svg);
  	background-size: contain;
  	vertical-align: middle;
  	margin-right: 5px;
  }*/
}
.thiscontents .section_lineup .lineup_nav .nav_wrp::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.thiscontents .section_lineup .lineup_nav .nav_wrp:hover::after {
  -webkit-transform: translate(-50%, 3px) rotate(45deg);
          transform: translate(-50%, 3px) rotate(45deg);
}
.thiscontents .section_lineup .lineup_nav .nav_wrp.morning {
  background-color: #fa8e8e;
}
.thiscontents .section_lineup .lineup_nav .nav_wrp.afternoon {
  background-color: #ffa862;
}
.thiscontents .section_lineup .lineup_nav .nav_wrp.night {
  background-color: #92b9ef;
}
.thiscontents .section_lineup .lineup_nav {
  /* タブレット */
}
.thiscontents .section_lineup .lineup_nav {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents .section_lineup .lineup_nav .nav_wrp {
    border-radius: 10vw;
    padding: 4vw 1vw 6vw;
    text-align: center;
    font-size: 4vw;
  }
}
.thiscontents .section_lineup .lineup_nav {
  /* for SP */
}
.thiscontents .section_lineup {
  /*===============================================================
  	lineup datearea
  ===============================================================*/
}
.thiscontents .section_lineup .lineup {
  background-color: #fff;
  border-radius: 4rem;
  padding: 4rem;
  margin-top: 4rem;
}
.thiscontents .section_lineup .lineup .lineup_datearea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.thiscontents .section_lineup .lineup .lineup_datearea .country {
  margin-left: auto;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  color: #fff;
  border-radius: 50%;
  padding: 1rem;
}
.thiscontents .section_lineup .lineup .lineup_datearea .country.korea {
  background-color: #b384f0;
}
.thiscontents .section_lineup .lineup .lineup_datearea .country.china {
  background-color: #d85c46;
}
.thiscontents .section_lineup .lineup .lineup_datearea .timezone {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  border-radius: 50px;
  padding: 1rem 1.5rem;
}
.thiscontents .section_lineup .lineup .lineup_datearea .timezone.gogodora {
  background-color: #ffa862;
}
.thiscontents .section_lineup .lineup .lineup_datearea .timezone.dramanight {
  background-color: #92b9ef;
}
.thiscontents .section_lineup .lineup .lineup_datearea .oadate {
  font-size: 3rem;
  font-weight: 700;
}
.thiscontents .section_lineup .lineup .lineup_datearea .rebroadcast {
  font-size: 1.8rem;
}
.thiscontents .section_lineup .lineup {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .thiscontents .section_lineup .lineup .lineup_datearea .country {
    font-size: 1.6rem;
    padding: 1rem;
  }
  .thiscontents .section_lineup .lineup .lineup_datearea .timezone {
    font-size: 1.6rem;
    padding: 1rem 1.5rem;
  }
  .thiscontents .section_lineup .lineup .lineup_datearea .oadate {
    font-size: 2.5rem;
  }
  .thiscontents .section_lineup .lineup .lineup_datearea .rebroadcast {
    font-size: 1.6rem;
  }
}
.thiscontents .section_lineup .lineup {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents .section_lineup .lineup {
    padding: 5vw;
    border-radius: 5vw;
  }
  .thiscontents .section_lineup .lineup .lineup_datearea {
    display: block;
    position: relative;
  }
  .thiscontents .section_lineup .lineup .lineup_datearea .timezone {
    width: 50%;
    text-align: center;
  }
  .thiscontents .section_lineup .lineup .lineup_datearea .oadate {
    font-size: 4.5vw;
    margin-top: 1rem;
  }
  .thiscontents .section_lineup .lineup .lineup_datearea .rebroadcast {
    margin-top: 0.5rem;
  }
  .thiscontents .section_lineup .lineup .lineup_datearea .country {
    position: absolute;
    font-size: 3vw;
    top: 0;
    right: 0;
  }
  .thiscontents .section_lineup .lineup .lineup_datearea.lineup_first .country {
    top: -1vw;
  }
}
.thiscontents .section_lineup .lineup {
  /* for SP */
  /*===============================================================
  	lineup grid_wrp
  ===============================================================*/
}
.thiscontents .section_lineup .lineup .program_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
}
.thiscontents .section_lineup .lineup .program_wrp .program_ph {
  width: 60%;
}
.thiscontents .section_lineup .lineup .program_wrp .titlearea {
  width: 40%;
  padding: 3rem;
  background-color: #fffdf3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
}
.thiscontents .section_lineup .lineup .program_wrp .titlearea .lead {
  font-size: 1.8rem;
  color: #d85c46;
  line-height: 1.5;
}
.thiscontents .section_lineup .lineup .program_wrp .titlearea .title {
  font-family: var(--font-family-min);
  font-weight: var(--font-weight-bold);
  font-size: 3.2rem;
  text-align: left;
  line-height: 1.2;
  color: #d85c46;
  margin-top: 1rem;
  letter-spacing: -0.02em;
}
.thiscontents .section_lineup .lineup .program_wrp .titlearea .title span {
  font-size: 2.2rem;
}
.thiscontents .section_lineup .lineup .program_wrp .titlearea .copyright {
  font-size: 1.4rem;
  margin-top: 2rem;
  line-height: 1.2;
  color: #666;
}
.thiscontents .section_lineup .lineup .highlights_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 3rem;
}
.thiscontents .section_lineup .lineup .highlights_wrp .highlights_title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-right: 3rem;
  width: 12%;
}
.thiscontents .section_lineup .lineup .highlights_wrp .highlights_txt {
  width: 88%;
}
.thiscontents .section_lineup .lineup {
  /* タブレット */
}
@media screen and (max-width: 1030px) {
  .thiscontents .section_lineup .lineup .program_wrp {
    display: block;
  }
  .thiscontents .section_lineup .lineup .program_wrp .program_ph, .thiscontents .section_lineup .lineup .program_wrp .titlearea {
    width: 100%;
  }
  .thiscontents .section_lineup .lineup .highlights_wrp .highlights_title {
    width: 18%;
  }
}
.thiscontents .section_lineup .lineup {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents .section_lineup .lineup .program_wrp {
    margin-top: 3vw;
  }
  .thiscontents .section_lineup .lineup .program_wrp .titlearea {
    padding: 3vw;
  }
  .thiscontents .section_lineup .lineup .program_wrp .titlearea .lead {
    font-size: 3.5vw;
  }
  .thiscontents .section_lineup .lineup .program_wrp .titlearea .title {
    font-size: 6vw;
  }
  .thiscontents .section_lineup .lineup .program_wrp .titlearea .title span {
    font-size: 4.5vw;
  }
  .thiscontents .section_lineup .lineup .highlights_wrp {
    display: block;
  }
  .thiscontents .section_lineup .lineup .highlights_wrp .highlights_title {
    width: 100%;
    font-size: 4vw;
  }
  .thiscontents .section_lineup .lineup .highlights_wrp .highlights_txt {
    margin-top: 1rem;
    width: 100%;
  }
}
.thiscontents .section_lineup .lineup {
  /* for SP */
}
.thiscontents {
  /*===============================================================

  	section_next

  ===============================================================*/
}
.thiscontents .section_next {
  background-color: #fff;
}
.thiscontents .section_next .headline {
  text-align: center;
}
.thiscontents .section_next .headline .next_headline {
  font-size: 3rem;
  text-align: center;
}
.thiscontents .section_next .headline .next_headline::before, .thiscontents .section_next .headline .next_headline::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 31px;
  background-image: url(../images/icon/icon_star.svg);
  background-size: contain;
  vertical-align: super;
}
.thiscontents .section_next .headline .next_headline::before {
  margin-right: 5px;
}
.thiscontents .section_next .headline .next_headline::after {
  margin-left: 5px;
}
.thiscontents .section_next .headline {
  /* タブレット */
}
.thiscontents .section_next .headline {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents .section_next .headline .next_headline {
    font-size: 5.5vw;
  }
}
.thiscontents .section_next .headline {
  /* for SP */
}
.thiscontents .section_next {
  /*===============================================================
  	section_next content
  ===============================================================*/
}
.thiscontents .section_next .grid {
  background-color: #fff;
  border-radius: 2rem;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.thiscontents .section_next .grid img {
  border-radius: 2rem 2rem 0 0;
}
.thiscontents .section_next .grid .next_txt_wrp {
  padding: 2rem;
}
.thiscontents .section_next .grid .next_txt_wrp .title {
  font-size: 2rem;
}
.thiscontents .section_next .grid .next_txt_wrp .oadate {
  font-size: 1.8rem;
  font-weight: 700;
}
.thiscontents .section_next .grid .next_txt_wrp .txt {
  font-size: 1.6rem;
  margin-top: 1rem;
}
.thiscontents .section_next {
  /* タブレット */
}
.thiscontents .section_next {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .thiscontents .section_next .grid_wrp {
    margin-top: -10vw;
  }
}
.thiscontents .section_next {
  /* for SP */
}
.thiscontents {
  /*===============================================================

  	section_

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

/*===============================================================
	!!! デモ用の記載 不要なので作業開始時に削除 !!!
===============================================================*/
.demo {
  background: #222;
  padding: 50px 0;
  color: #fff;
  text-align: center;
}

.demo .inner {
  width: 1030px;
  margin: 0 auto;
  text-align: left;
}

.demo h3 {
  font-size: 40px;
  line-height: 40px;
  background: #222;
}

.demo h4 {
  color: #fff;
  font-size: 25px;
  line-height: 26px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.demo h4 + * {
  margin-top: 10px;
}

.demo p {
  font-size: 14px;
  line-height: 25px;
  margin-top: 20px;
}

.demo .demo_discription {
  font-size: 18px;
  font-weight: bold;
}

.demo span {
  font-weight: bold;
  margin-right: 20px;
}

.demo .demo_btn {
  margin-right: 10px;
  margin-top: 20px;
  float: left;
}

.demo .demo_btn a {
  display: block;
  width: 100px;
  text-align: center;
  border: solid 1px #ccc;
  background: #ccc;
  font-size: 14px;
  line-height: 25px;
  color: #222;
  text-decoration: none;
}

.demo .demo_btn a:hover {
  border: solid 1px #fff;
  color: #fff;
  background: none;
  text-decoration: none;
}

.demo .history p {
  border-top: dotted 1px rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.demo .demo_txthide {
  display: none;
}

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .demo .inner {
    width: 100%;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
} /* for tablet max-width: 1030px */
/*# sourceMappingURL=style.css.map */