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

/*===============================================================
	変数
===============================================================*/
/*　画面左右のマージン　*/
/*　幅　*/
/*	グリッド幅  */
/*	セクション、コンテンツ間のマージン　*/
/*===============================================================
	色
===============================================================*/
.c_jch {
  color: #1B9AC4;
}

.c_jtele {
  color: #E93816;
}

.c_red {
  color: #E93816;
}

/*===============================================================
	_mixin.scss
===============================================================*/
/*===============================================================

	レイアウト
	_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: 900px;
  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: 300px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .btn_width {
    max-width: inherit;
  }
}

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

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

===============================================================*/
.section_wrp {
  position: relative;
  z-index: 2;
}

.section {
  width: 100%;
}

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

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

	content 
	個別のコンテンツ

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

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

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

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

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

.content_mt60 {
  margin-top: 60px !important;
}

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

@media screen and (max-width: 1030px) {
  .content {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 800px) {
  .content + .content {
    margin-top: 10vw;
  }
  .content + .headline {
    margin-top: 10vw;
  }
  .headline + .content {
    margin-top: 5vw;
  }
  .content .content + *,
  .content * + .content {
    margin-top: 8vw;
  }
  .content_title + .content {
    margin-top: 0;
  }
  .content_mt60 {
    margin-top: 5vw !important;
  }
  .content_mt30 {
    margin-top: 5vw !important;
  }
  .content_mt100_sp {
    margin-top: 10vw !important;
  }
}
/*===============================================================
	_grid.scss
===============================================================*/
.grid_wrp {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -40px;
  box-sizing: border-box;
}
.grid_wrp .grid {
  box-sizing: border-box;
  margin-top: 40px;
}
.grid_wrp .grid .grid_wrp {
  margin-top: -20px;
}
.grid_wrp .grid .grid {
  margin-top: 20px;
}
.grid_wrp .grid_1_1 {
  width: 100%;
}
.grid_wrp .grid_2_1 {
  width: calc((100% - 40px) / 2);
}
.grid_wrp .grid_3_1 {
  width: calc((100% - 40px * 2) / 3); /* 40px * 2 = 80px */
}
.grid_wrp .grid_3_2 {
  width: calc(100% - (100% - 40px * 2) / 3 - 40px);
}
.grid_wrp .grid_4_1 {
  width: calc((100% - 40px * 3) / 4); /* 40px * 3 = 120px */
}
.grid_wrp .grid_5_1 {
  width: calc((100% - 40px * 2) / 5); /* 20px * 4 = 80px */
}
.grid_wrp .grid_6_1 {
  width: calc((100% - 40px * 5) / 6); /* 50px * 5 = 100px */
}
.grid_wrp.grid_wrp3:after, .grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before, .grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
  content: "";
  display: block;
  height: 0;
  order: 1;
}
.grid_wrp.grid_wrp3:after {
  width: calc((100% - 40px * 2) / 3);
}
.grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before {
  width: calc((100% - 40px * 3) / 4);
}
.grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
  width: calc((100% - 40px * 2) / 5);
}
@media screen and (max-width: 800px) {
  .grid_wrp {
    margin-top: -5vw;
  }
  .grid_wrp .grid {
    margin-top: 5vw;
  }
  .grid_wrp .grid .grid_wrp {
    margin-top: -3vw;
  }
  .grid_wrp .grid .grid {
    margin-top: 3vw;
  }
  .grid_wrp .grid_1_1 {
    width: 100%;
  }
  .grid_wrp .grid_2_1 {
    width: 100%;
  }
  .grid_wrp .grid_3_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_3_2 {
    width: 100%;
  }
  .grid_wrp .grid_4_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_5_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_6_1 {
    width: calc((100% - 10vw) / 3);
  }
  .grid_wrp.grid_wrp3:after {
    width: calc((100% - 80px) / 3);
  }
  .grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before {
    width: calc((100% - 120px) / 4);
  }
  .grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
    width: calc((100% - 80px) / 5);
  }
  .grid_wrp .sp_grid_1 {
    width: 100% !important;
  }
}

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

	thiscontents_nav

===============================================================*/
.thiscontents_nav {
  position: relative;
  z-index: 3;
  width: 100%;
  /*-------------------------------------------------------------
  	navigation	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	// thiscontents_nav	ここまで
  -------------------------------------------------------------*/
}
.thiscontents_nav .navigation_wrp {
  width: 100%;
  text-align: left;
  top: 0;
  left: 0;
  height: 50px;
  background: #C4914F;
  z-index: 999;
  padding: 0 10px;
}
@media screen and (max-width: 1030px) {
  .thiscontents_nav {
    display: none;
  }
}
.thiscontents_nav .navigation {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
}
.thiscontents_nav .navigation ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  height: 50px;
}
.thiscontents_nav .navigation li {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}
.thiscontents_nav .navigation li a {
  color: #fff;
  text-decoration: none;
}
.thiscontents_nav .navigation li a:hover {
  color: #FFE693;
  text-decoration: none;
}
.thiscontents_nav .navigation .localnav li {
  margin-top: 0;
  padding-left: 20px;
  margin-right: 20px;
  border-left: solid 2px rgba(77, 49, 14, 0.2);
}
.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;
}
@media screen and (max-width: 1030px) {
  .thiscontents_nav .navigation .navigation_wrp {
    display: none;
  }
}
/*===============================================================

	sp_menu

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

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

	_headline.scss 2021/9/24

===============================================================*/
/*-------------------------------------------------------------
	block	
-------------------------------------------------------------*/
.block + .block {
  margin-top: 50px;
}
@media screen and (max-width: 800px) {
  .block + .block {
    margin-top: 5vw;
  }
}

/*-------------------------------------------------------------
	headline	
-------------------------------------------------------------*/
.headline {
  color: #4D310E;
}
.headline .title {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
.headline.headline_white {
  color: #fff;
}
.headline .line {
  display: inline-block;
  font-size: 1.2em;
  transform: translateY(0.1em);
}
@media screen and (max-width: 800px) {
  .headline .title {
    font-size: 7vw;
  }
}

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

	btn_detail

===============================================================*/
.btn_detail {
  width: 300px;
  margin: 0 auto;
}
* + .btn_detail {
  margin-top: 60px;
}
.btn_detail a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  padding: 15px 0;
  background: #C4914F;
}
.btn_detail a:hover {
  background: #4D310E;
}
.btn_detail a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  top: 0;
  bottom: 0;
  right: 26px;
  margin: auto;
  background: #fff;
}
.btn_detail a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  width: 18px;
  height: 12px;
  border-top: 6px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
  box-sizing: border-box;
}
.btn_detail.btn_back a:before {
  right: auto;
  left: 26px;
}
.btn_detail.btn_back a:after {
  right: auto;
  left: 10px;
  transform: rotate(180deg);
}
@media screen and (max-width: 800px) {
  .btn_detail {
    width: 82vw;
    margin: 0 auto;
  }
  * + .btn_detail {
    margin-top: 5vw;
  }
  .btn_detail a {
    font-size: 5vw;
    line-height: 1.2;
    padding: 3.5vw 0;
  }
  .btn_detail a:before {
    width: 2vw;
    height: 0.4vw;
    right: 5.2vw;
  }
  .btn_detail a:after {
    right: 2vw;
    width: 3.6vw;
    height: 2.4vw;
    border-top: 1.2vw solid transparent;
    border-right: 1.8vw solid transparent;
    border-bottom: 1.2vw solid transparent;
    border-left: 1.8vw solid #fff;
  }
  .btn_detail.btn_back a:before {
    right: auto;
    left: 5.2vw;
  }
  .btn_detail.btn_back a:after {
    right: auto;
    left: 2vw;
    transform: rotate(180deg);
  }
}

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

	PAGETOP

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

#btn_pagetop a {
  position: relative;
  display: block;
  position: fixed;
  right: -300px;
  top: 0;
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #C4914F;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 101;
  border-radius: 30px;
  transition: background-color 0.3s;
}
#btn_pagetop a:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 10px;
  top: 25px;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
}
#btn_pagetop a:after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 18px;
  border-top: 9px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 9px solid #fff;
  border-left: 6px solid transparent;
  box-sizing: border-box;
}

#btn_pagetop a:hover {
  background-color: #4D310E;
}

@media screen and (max-width: 800px) {
  #btn_pagetop a {
    width: 40px;
    height: 40px;
  }
  #btn_pagetop a:before {
    height: 8px;
    top: 20px;
  }
  #btn_pagetop a:after {
    top: 4px;
    width: 10px;
    height: 16px;
    border-top: 8px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #fff;
    border-left: 5px solid transparent;
  }
}
/*===============================================================

	背景FIXの対応

===============================================================*/
.frame_header {
  position: relative;
  z-index: 2;
}

.frame_footer {
  position: relative;
  z-index: 2;
  background: #fff;
  padding-bottom: 60px;
}
@media screen and (max-width: 800px) {
  .frame_footer {
    padding-bottom: 10vw;
  }
}

.section_footer_recommend_bnr_lane {
  position: relative;
  z-index: 2;
  margin-top: 0;
}
@media screen and (max-width: 800px) {
  .section_footer_recommend_bnr_lane {
    margin-top: 0;
  }
}

.l-footer {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 64px;
  background: #fff;
}

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

	font

===============================================================*/
/*----------------------------------------------------------------
  noto sans
----------------------------------------------------------------*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("/special/common/webfont/NotoSansCJKjp-Regular_subset.woff") format("woff");
  font-display: swap;
}
/* @font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 600;
  src: url('/special/common/webfont/NotoSansCJKjp-Medium_subset.woff') format("woff");
  font-display: swap;
}
 */
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 700;
  src: url("/special/common/webfont/NotoSansCJKjp-Bold_subset.woff") format("woff");
  font-display: swap;
}
/* @font-face {
  font-family: 'Noto Sans JP';
  font-style: bold;
  font-weight: 800;
  src: url('/special/common/webfont/NotoSansCJKjp-Black_subset.woff') format('woff');
  font-display: swap;
} */
.noto_sans {
  font-family: "Noto Sans JP", sans-serif;
}

/*----------------------------------------------------------------
  kaisei_opti
----------------------------------------------------------------*/
.kaisei_opti {
  font-family: "Kaisei Opti", serif;
  font-weight: 700;
  font-style: normal;
}

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

	_utils.scss 2021/9/24

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

.align_right {
  text-align: right;
}

.align_left {
  text-align: left;
}

@media 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;
  }
}
/*===============================================================

	フロート関係

===============================================================*/
.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;
  }
}

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

	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;
  }
}
@media screen and (max-width: 800px) {
  .sp {
    display: block;
  }
  .pc_tablet,
  .tablet {
    display: none;
  }
}
/*===============================================================

	box-shadow

===============================================================*/
.boxshadow_10 {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 800px) {
  .boxshadow_10 {
    box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
  }
}
/*===============================================================

	border-radius

===============================================================*/
.radius_10 {
  overflow: hidden;
  border-radius: 10px;
}

.radius_5 {
  overflow: hidden;
  border-radius: 5px;
}

@media screen and (max-width: 800px) {
  .radius_10 {
    border-radius: 2vw;
  }
  .radius_5 {
    border-radius: 1vw;
  }
}
/*===============================================================

	img fig

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

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

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

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

	マージン

===============================================================*/
.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 */
@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;
  }
}
/*===============================================================

  section_footer_recommend_bnr_lane

===============================================================*/
.section_footer_recommend_bnr_lane a {
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s;
}
/*===============================================================

  section_bg_stamp

===============================================================*/
.section_bg_stamp::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/bg_stamp.svg) no-repeat center/contain;
}
/*===============================================================

  slick_slider

===============================================================*/
.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

/*-------------------------------------------------------------
	slick_arw
-------------------------------------------------------------*/
.slick_arw {
  position: absolute;
  z-index: 1;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
.slick_arw.slick-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.slick_arw:hover:after {
  border-color: #4D310E;
}
.slick_arw:after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border-top: solid 2px #C4914F;
  border-left: solid 2px #C4914F;
  transform: rotate(-45deg) translate(2px, 2px);
  transition: border-color 0.3s;
}
.slick_arw.arw_prev {
  left: -50px;
  right: auto;
}
.slick_arw.arw_next {
  left: auto;
  right: -50px;
}
.slick_arw.arw_next:after {
  transform: rotate(135deg) translate(2px, 2px);
}
@media screen and (max-width: 800px) {
  .slick_arw {
    top: 10vw;
    bottom: auto;
    width: 6vw;
    height: 6vw;
  }
  .slick_arw:hover:after {
    border-color: #fff;
  }
  .slick_arw:after {
    width: 3vw;
    height: 3vw;
    border-top: solid 2px #fff;
    border-left: solid 2px #fff;
  }
  .slick_arw.arw_prev {
    left: 0;
    right: auto;
  }
  .slick_arw.arw_next {
    left: auto;
    right: 0;
  }
}

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

	thiscontents

===============================================================*/
.thiscontents {
  width: 100%;
}
.thiscontents:before {
  content: "";
  position: fixed;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg_texture.jpg) repeat center/750px auto;
}
.thiscontents:after {
  content: "";
  position: fixed;
  z-index: 1;
  top: 60px;
  left: 10px;
  width: 330px;
  height: 330px;
  background: url(../images/bg_stamp.svg) no-repeat center/contain;
  mix-blend-mode: color-burn;
  opacity: 0.5;
}
.thiscontents * {
  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: 700;
  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 {
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s;
}
@media screen and (max-width: 1030px) {
  .thiscontents {
    padding-top: 40px;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents:before {
    background: url(../images/bg_texture.jpg) repeat center/400px auto;
  }
  .thiscontents:after {
    top: calc(40px + 4vw);
    left: 4vw;
    width: 50vw;
    height: 50vw;
  }
  .thiscontents p {
    font-size: 3.8vw;
    line-height: 1.6;
  }
}

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

	メインビジュアル
	_mainvisual.scss

===============================================================*/
.mainvisual {
  position: relative;
  z-index: 2;
  background: #785634 url(../images/visual/bg_visual.jpg) no-repeat center/cover;
  padding: 50px 0;
}
.mainvisual .maintitle_wrp {
  position: relative;
  padding: 50px 0 45px;
  text-align: center;
}
.mainvisual .maintitle_wrp:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 960px;
  height: 14px;
  background: url(../images/visual/line.svg) repeat-x top left/auto 100%;
}
.mainvisual .maintitle_wrp:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 960px;
  height: 14px;
  background: url(../images/visual/line.svg) repeat-x top left/auto 100%;
}
.mainvisual .maintitle_wrp .maintitle {
  font-size: 75px;
  line-height: 0.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: linear-gradient(to bottom, #fff 0%, #FFE693 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}
.mainvisual .maintitle_wrp .maintitle .l {
  font-size: 1.09em;
  letter-spacing: 0;
}
.mainvisual .lead {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1030px) {
  .mainvisual {
    padding: 5vw;
  }
  .mainvisual .maintitle_wrp {
    padding: 5vw 0 4.5vw;
  }
  .mainvisual .maintitle_wrp:before {
    width: 100%;
    height: 1.4vw;
  }
  .mainvisual .maintitle_wrp:after {
    width: 100%;
    height: 1.4vw;
  }
  .mainvisual .maintitle_wrp .maintitle {
    font-size: 7vw;
  }
}
@media screen and (max-width: 800px) {
  .mainvisual {
    position: relative;
    padding: 5vw;
  }
  .mainvisual .maintitle_wrp {
    margin: 0 calc(50% - 50vw) 0;
  }
  .mainvisual .maintitle_wrp:before {
    width: 100%;
    height: 1.4vw;
  }
  .mainvisual .maintitle_wrp:after {
    width: 100%;
    height: 1.4vw;
  }
  .mainvisual .maintitle_wrp .maintitle {
    font-size: 7.5vw;
    filter: drop-shadow(0 0 1vw rgba(0, 0, 0, 0.2));
  }
  .mainvisual .lead {
    font-size: 3.8vw;
    margin-top: 2vw;
    text-shadow: 0 0 1vw rgba(0, 0, 0, 0.2);
  }
}

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

	サブビジュアル
	_subvisual.scss

===============================================================*/
.subvisual {
  position: relative;
  z-index: 2;
  background: #785634 url(../images/visual/bg_visual.jpg) no-repeat center/cover;
}
.subvisual a {
  display: block;
  text-decoration: none;
  padding: 30px 0 30px;
}
.subvisual .maintitle_wrp {
  position: relative;
  padding: 35px 0 30px;
  text-align: center;
}
.subvisual .maintitle_wrp:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 550px;
  height: 10px;
  background: url(../images/visual/line.svg) repeat-x top left/auto 100%;
}
.subvisual .maintitle_wrp:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 550px;
  height: 10px;
  background: url(../images/visual/line.svg) repeat-x top left/auto 100%;
}
.subvisual .maintitle_wrp .maintitle {
  font-size: 42px;
  line-height: 0.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: linear-gradient(to bottom, #fff 0%, #FFE693 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}
.subvisual .maintitle_wrp .maintitle .l {
  font-size: 1.09em;
  letter-spacing: 0;
}
@media screen and (max-width: 800px) {
  .subvisual a {
    padding: 3vw 5vw;
  }
  .subvisual .maintitle_wrp {
    padding: 4.5vw 0 4vw;
  }
  .subvisual .maintitle_wrp:before {
    width: 75%;
    height: 1.4vw;
  }
  .subvisual .maintitle_wrp:after {
    width: 75%;
    height: 1.4vw;
  }
  .subvisual .maintitle_wrp .maintitle {
    font-size: 5vw;
    filter: drop-shadow(0 0 1vw rgba(0, 0, 0, 0.2));
  }
}

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

	トップリンク
	_toplink.scss

===============================================================*/
.toplink {
  margin: 0 calc(50% - 50vw) 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.toplink .item a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
.toplink .item a:hover .img img {
  transform: scale(1.1);
}
.toplink .item a:hover .txt {
  background: #4D310E;
}
.toplink .item .img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 110px;
  height: 110px;
  border-radius: 50%;
}
.toplink .item .img img {
  transition: 0.3s;
  background: #333;
}
.toplink .item .txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 280px;
  font-size: 22px;
  line-height: 1.36;
  font-weight: 700;
  padding-left: 45px;
  background: #C4914F;
  height: 90px;
  margin-left: -30px;
  transition: background 0.3s;
}
.toplink .item .txt .s {
  display: block;
  font-size: 16px;
}
@media screen and (max-width: 800px) {
  .toplink {
    gap: 2vw;
  }
  .toplink .item .img {
    width: 20vw;
    height: 20vw;
  }
  .toplink .item .txt {
    width: 60vw;
    height: 17vw;
    font-size: 4vw;
    padding-left: 15vw;
    margin-left: -12vw;
  }
  .toplink .item .txt .s {
    font-size: 3vw;
  }
}

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

	絞り込み検索パーツ
	_searchparts.scss

===============================================================*/
.searchparts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  padding: 30px;
  padding-right: 0;
  background: rgba(160, 119, 79, 0.5);
}
.searchparts .head {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.searchparts .head .icon {
  width: 26px;
}
.searchparts .box {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1030px) {
  .searchparts {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 30px;
  }
  .searchparts .box {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .searchparts {
    gap: 3vw;
    padding: 3vw 4vw 4vw;
  }
  .searchparts .head {
    font-size: 5.5vw;
    gap: 1vw;
  }
  .searchparts .head .icon {
    width: 5vw;
  }
  .searchparts .box {
    width: 100%;
    gap: 4vw;
  }
}

/*-------------------------------------------------------------
	.セレクト 
-------------------------------------------------------------*/
/* セレクタの装飾 */
.sortlist {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.sortlist .name {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}
.sortlist .select_wrap {
  position: relative;
  overflow: hidden;
  width: 240px;
  color: #4D310E !important;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #4D310E;
  box-sizing: border-box;
  transition: all 0.1s linear;
}
.sortlist .select_wrap:hover {
  background-color: #fff;
  border: 1px solid #4D310E;
}
.sortlist .select_wrap:after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 5px;
  height: 5px;
  border-top: 4px solid #4D310E;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  box-sizing: border-box;
}
.sortlist .select_wrap:before {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 5px;
  height: 5px;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid #4D310E;
  border-left: 4px solid transparent;
  box-sizing: border-box;
}
.sortlist .select_wrap.deactive {
  pointer-events: none;
  opacity: 0.3;
}
.sortlist .select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  /* fallback non calc support */
  width: calc(100% + 1em);
  margin: 0;
  padding: 12px;
  padding-right: 20px;
  color: #4D310E;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
.sortlist .select:focus {
  border-color: #4D310E;
}
.sortlist .select optgroup.area {
  color: #4D310E;
  background: #eee;
}
@media screen and (max-width: 1030px) {
  .sortlist .select_wrap {
    width: 28vw;
  }
}
@media screen and (max-width: 800px) {
  .sortlist {
    flex-direction: column;
    gap: 2vw;
    width: 100%;
  }
  .sortlist .name {
    width: 100%;
    font-size: 4vw;
  }
  .sortlist .select_wrap {
    width: 100%;
  }
  .sortlist .select_wrap:after {
    bottom: 2.4vw;
    right: 10px;
    width: 2vw;
    height: 2vw;
    border-top: 1vw solid #4D310E;
    border-right: 1vw solid transparent;
    border-bottom: 1vw solid transparent;
    border-left: 1vw solid transparent;
  }
  .sortlist .select_wrap:before {
    top: 2.4vw;
    right: 10px;
    width: 2vw;
    height: 2vw;
    border-top: 1vw solid transparent;
    border-right: 1vw solid transparent;
    border-bottom: 1vw solid #4D310E;
    border-left: 1vw solid transparent;
  }
  .sortlist .select {
    font-size: 4vw;
    padding: 3vw 2vw;
  }
}

/*-------------------------------------------------------------
	.テキスト 
-------------------------------------------------------------*/
.keywords {
  width: 60%;
}
.keywords input {
  width: 100%;
  font-size: 15px;
  padding: 10px;
  border: 1px solid #333;
  box-sizing: border-box;
  transition: all 0.1s linear;
}
@media screen and (max-width: 1030px) {
  .keywords .keywords {
    width: 100%;
  }
  .keywords .keywords input {
    font-size: 4vw;
    padding: 2vw;
  }
}

/*-------------------------------------------------------------
	.noitem 
-------------------------------------------------------------*/
.noitem {
  display: none;
  text-align: center;
}
/*===============================================================

	視聴方法
	_section_special.scss

===============================================================*/
/*-------------------------------------------------------------
	special	
-------------------------------------------------------------*/
.special {
  padding: 40px 40px 50px;
  background: rgba(255, 255, 255, 0.8);
}
.special + .special {
  margin-top: 50px;
}
@media screen and (max-width: 1030px) {
  .special {
    padding: 40px 40px 50px;
  }
}
@media screen and (max-width: 800px) {
  .special {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0 !important;
    padding: 5vw;
  }
  .special + .special {
    margin-top: 5vw;
  }
}

/*-------------------------------------------------------------
	special	main
-------------------------------------------------------------*/
.special .main {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 4%;
}
.special .main .img {
  width: 48%;
}
.special .main .img img {
  background: #333;
}
.special .main .txt {
  width: 48%;
}
.special .main .txt .box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 2px dotted rgba(77, 49, 14, 0.5);
}
.special .main .txt .logo {
  overflow: hidden;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.special .main .txt .logo_jch {
  border: 1px solid #1B9AC4;
}
.special .main .txt .logo_jtele {
  border: none;
}
.special .main .txt .right {
  flex: 1;
}
.special .main .txt .head {
  color: #4D310E;
  font-size: 34px;
  line-height: 1.3;
  font-weight: 700;
}
.special .main .txt .head .s {
  display: block;
  font-size: 22px;
  margin-top: 5px;
}
.special .main .txt .date_btn {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.special .main .txt .date_btn .date {
  color: #C4914F;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
}
.special .main .txt .date_btn .date .caption {
  display: block;
  font-size: 12px;
  font-weight: 400;
  margin-top: 5px;
}
.special .main .txt .date_btn .btn {
  margin-left: auto;
}
.special .main .txt .date_btn .btn a {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  background: #E93816;
  padding: 5px 10px 7px 5px;
}
.special .main .txt .date_btn .btn a:hover {
  background: #a61b00;
}
.special .main .txt .date_btn .btn a .icon {
  width: 16px;
  height: 16px;
  background: url(../images/special/icon_btn_rec.svg) no-repeat top center/contain;
  transform: translateY(1px);
}
.special .main .txt .desc {
  margin-top: 20px;
}
@media screen and (max-width: 1030px) {
  .special .main {
    flex-direction: column;
    gap: 30px;
  }
  .special .main .img {
    width: 100%;
  }
  .special .main .txt {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .special .main {
    gap: 4vw;
  }
  .special .main .txt .box {
    gap: 2vw;
    padding-bottom: 4vw;
  }
  .special .main .txt .logo {
    width: 10vw;
    height: 10vw;
  }
  .special .main .txt .head {
    font-size: 6vw;
  }
  .special .main .txt .head .s {
    font-size: 3.8vw;
    margin-top: 1vw;
  }
  .special .main .txt .date_btn {
    flex-direction: column;
    align-items: flex-start;
    gap: 4vw;
    margin-top: 1vw;
  }
  .special .main .txt .date_btn .date {
    font-size: 5vw;
  }
  .special .main .txt .date_btn .date .caption {
    font-size: 3vw;
    margin-top: 1vw;
  }
  .special .main .txt .date_btn .btn {
    align-self: flex-end;
    margin-left: 0;
  }
  .special .main .txt .date_btn .btn a {
    gap: 1vw;
    font-size: 4vw;
    line-height: 1;
    padding: 2vw 3vw 2vw 2vw;
  }
  .special .main .txt .date_btn .btn a .icon {
    width: 4vw;
    height: 4vw;
    transform: translateY(0.2vw);
  }
  .special .main .txt .desc {
    margin-top: 3vw;
  }
}

/*-------------------------------------------------------------
  special main	
-------------------------------------------------------------*/
.special:nth-child(even) .main {
  flex-direction: row-reverse;
}
/*-------------------------------------------------------------
  special sub	
-------------------------------------------------------------*/
.special .sub {
  padding: 40px 40px 50px;
  background: #EFEFEF;
  border: 1px solid #ddd;
}
.special .sub .inner {
  width: auto;
  max-width: 900px;
  margin: 0 auto;
}
.special .sub .item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 4%;
}
.special .sub .item + .item {
  margin-top: 40px;
}
.special .sub .item .img {
  width: 42%;
}
.special .sub .item .img img {
  background: #333;
}
.special .sub .item .txt {
  width: 54%;
}
.special .sub .item .txt .head {
  color: #4D310E;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}
.special .sub .item .txt .date {
  color: #C4914F;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 2px solid #fff;
}
.special .sub .item .txt .desc {
  margin-top: 15px;
}
@media screen and (max-width: 1030px) {
  .special .sub {
    padding: 30px 30px 40px;
  }
}
@media screen and (max-width: 800px) {
  .special .sub {
    padding: 4vw 4vw 5vw;
  }
  .special .sub .item {
    flex-direction: column;
    gap: 3vw;
  }
  .special .sub .item + .item {
    margin-top: 4vw;
  }
  .special .sub .item .img {
    width: 100%;
  }
  .special .sub .item .txt {
    width: 100%;
  }
  .special .sub .item .txt .head {
    font-size: 4.5vw;
  }
  .special .sub .item .txt .date {
    font-size: 3.5vw;
    padding-bottom: 2vw;
  }
  .special .sub .item .txt .desc {
    font-size: 3.5vw;
    margin-top: 2vw;
  }
}

/*-------------------------------------------------------------
  special sub2	
-------------------------------------------------------------*/
.special .sub2 {
  padding: 40px 40px 50px;
  background: #EFEFEF;
  border: 1px solid #ddd;
}
.special .sub2 .inner {
  width: auto;
  max-width: 900px;
  margin: 0 auto;
}
.special .sub2 .cast {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
}
.special .sub2 .cast .head {
  color: #4D310E;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  writing-mode: vertical-rl;
}
.special .sub2 .cast .box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 92%;
}
.special .sub2 .cast .box .item {
  width: 22.9%;
}
.special .sub2 .cast .box .item .img {
  border-radius: 50%;
  overflow: hidden;
}
.special .sub2 .cast .box .item .img img {
  background: #333;
}
.special .sub2 .cast .box .item .role {
  color: #C4914F;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  width: 150%;
  margin-left: -25%;
}
.special .sub2 .cast .box .item .name {
  color: #4D310E;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
.special .sub2 .movie {
  margin-top: 40px;
}
.special .sub2 .movie .head {
  color: #E93816;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}
.special .sub2 .movie .head .line {
  display: inline-block;
  font-size: 1.2em;
  transform: translateY(0.1em);
}
.special .sub2 .movie .desc {
  margin-top: 20px;
}
.special .sub2 .movie .video {
  margin-top: 30px;
}
@media screen and (max-width: 1030px) {
  .special .sub2 {
    padding: 30px 30px 40px;
  }
  .special .sub2 .cast {
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
  }
  .special .sub2 .cast .head {
    text-align: center;
    writing-mode: horizontal-tb;
  }
  .special .sub2 .cast .box {
    width: 100%;
  }
  .special .sub2 .cast .box .item {
    width: 22.9%;
  }
}
@media screen and (max-width: 800px) {
  .special .sub2 {
    padding: 4vw 4vw 5vw;
  }
  .special .sub2 .cast {
    gap: 4vw;
  }
  .special .sub2 .cast .head {
    font-size: 6vw;
    text-align: center;
    writing-mode: horizontal-tb;
  }
  .special .sub2 .cast .box {
    justify-content: flex-start;
    gap: 4vw;
    width: 100%;
  }
  .special .sub2 .cast .box .item {
    width: calc((100% - 4vw) / 2);
  }
  .special .sub2 .cast .box .item .img {
    width: 90%;
    margin: 0 auto;
  }
  .special .sub2 .cast .box .item .role {
    font-size: 3vw;
    margin-top: 2vw;
    width: 100%;
    margin-left: 0;
  }
  .special .sub2 .cast .box .item .name {
    font-size: 4.5vw;
    margin-top: 0.5vw;
  }
  .special .sub2 .movie {
    margin-top: 5vw;
  }
  .special .sub2 .movie .head {
    font-size: 6vw;
  }
  .special .sub2 .movie .desc {
    margin-top: 3vw;
  }
  .special .sub2 .movie .video {
    margin-top: 4vw;
  }
}

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

	アイテム一覧
	_section_itemlist.scss

===============================================================*/
.section_itemlist .section_inner {
  padding-top: 0;
}
/*-------------------------------------------------------------
  headline_itemlist	
-------------------------------------------------------------*/
.headline_itemlist {
  position: relative;
  margin: 0 calc(50% - 50vw) 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 25px 0 30px;
}
.headline_itemlist:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  margin: auto;
  width: 40px;
  height: 40px;
  border-top: 20px solid rgba(255, 255, 255, 0.8);
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid transparent;
  box-sizing: border-box;
}
.headline_itemlist + * {
  margin-top: 60px;
}
.headline_itemlist .title {
  color: #4D310E;
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
.headline_itemlist .title .s {
  display: block;
  color: #C4914F;
  font-size: 30px;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
}
@media screen and (max-width: 800px) {
  .headline_itemlist {
    padding: 3.5vw 0 4vw;
  }
  .headline_itemlist:after {
    bottom: -4vw;
    width: 4vw;
    height: 4vw;
    border-top: 2vw solid rgba(255, 255, 255, 0.8);
    border-right: 2vw solid transparent;
    border-bottom: 2vw solid transparent;
    border-left: 2vw solid transparent;
  }
  .headline_itemlist + * {
    margin-top: 5vw;
  }
  .headline_itemlist .title {
    font-size: 7vw;
  }
  .headline_itemlist .title .s {
    font-size: 4vw;
    padding-bottom: 1vw;
  }
}

/*-------------------------------------------------------------
  headline_itemlist_top	
-------------------------------------------------------------*/
.headline_itemlist_top {
  position: relative;
  margin: 0 calc(50% - 50vw) 0;
  background: rgba(255, 255, 255, 0.8);
  padding: 25px 30px 30px;
}
.headline_itemlist_top + * {
  margin-top: 60px;
}
.headline_itemlist_top .inner {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
}
.headline_itemlist_top .inner:after {
  content: "";
  position: absolute;
  left: 145px;
  bottom: -70px;
  margin: auto;
  width: 40px;
  height: 40px;
  border-top: 20px solid rgba(255, 255, 255, 0.8);
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid transparent;
  box-sizing: border-box;
}
.headline_itemlist_top .title {
  color: #4D310E;
  font-size: 50px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  padding-right: 20px;
  border-right: 2px dotted rgba(77, 49, 14, 0.5);
}
.headline_itemlist_top .title .s {
  display: block;
  color: #C4914F;
  font-size: 30px;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
}
.headline_itemlist_top .lead {
  flex: 1;
  color: #4D310E;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
  padding-left: 25px;
}
@media screen and (max-width: 1030px) {
  .headline_itemlist_top {
    padding: 25px 50px 30px;
  }
  .headline_itemlist_top .inner {
    flex-direction: column;
    gap: 20px;
  }
  .headline_itemlist_top .inner:after {
    left: 0;
    right: 0;
    bottom: -70px;
  }
  .headline_itemlist_top .title {
    padding-right: 0;
    border-right: none;
  }
  .headline_itemlist_top .lead {
    flex: 1;
    color: #4D310E;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    padding-left: 0;
  }
}
@media screen and (max-width: 800px) {
  .headline_itemlist_top {
    padding: 3.5vw 4vw 4vw;
  }
  .headline_itemlist_top + * {
    margin-top: 5vw;
  }
  .headline_itemlist_top .inner {
    gap: 2vw;
  }
  .headline_itemlist_top .inner:after {
    bottom: -8vw;
    width: 4vw;
    height: 4vw;
    border-top: 2vw solid rgba(255, 255, 255, 0.8);
    border-right: 2vw solid transparent;
    border-bottom: 2vw solid transparent;
    border-left: 2vw solid transparent;
  }
  .headline_itemlist_top .title {
    font-size: 7vw;
  }
  .headline_itemlist_top .title .s {
    font-size: 4vw;
    padding-bottom: 1vw;
  }
  .headline_itemlist_top .lead {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3.5vw;
    line-height: 1.6;
  }
}

/*-------------------------------------------------------------
	itemlist	
-------------------------------------------------------------*/
.itemlist {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 40px 2.45%;
}
.itemlist .item {
  width: 31.7%;
}
.itemlist .item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  transition: box-shadow 0.3s;
}
.itemlist .item a:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.itemlist .item a:hover .img img {
  transform: scale(1.05);
  filter: grayscale(100%);
}
.itemlist .item .img {
  position: relative;
  overflow: hidden;
}
.itemlist .item .img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 8/4.2;
  transition: 0.3s;
  background: #333;
}
.itemlist .item .area_sub {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  background: #C4914F;
}
.itemlist .item .box {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 10px 15px;
}
.itemlist .item .box .lead {
  color: #C4914F;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.itemlist .item .box .head {
  color: #4D310E;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  margin-top: 3px;
}
@media screen and (max-width: 1030px) {
  .itemlist {
    gap: 40px 4%;
  }
  .itemlist .item {
    width: 48%;
  }
}
@media screen and (max-width: 800px) {
  .itemlist {
    gap: 4vw 4%;
  }
  .itemlist .item .area_sub {
    font-size: 3vw;
    padding: 1vw;
  }
  .itemlist .item .box {
    padding: 2vw 2vw 3vw;
  }
  .itemlist .item .box .lead {
    font-size: 3vw;
  }
  .itemlist .item .box .head {
    font-size: 4vw;
    margin-top: 0.5vw;
  }
}

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

	アイテム一覧
	_section_item_detail.scss

===============================================================*/
/*-------------------------------------------------------------
  item_detail	
-------------------------------------------------------------*/
.item_detail {
  padding: 30px 40px 60px;
  background: rgba(255, 255, 255, 0.8);
}
.item_detail .inner {
  width: auto;
  max-width: 900px;
  margin: 0 auto;
}
.item_detail .head {
  color: #4D310E;
  font-size: 45px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  padding-bottom: 30px;
}
.item_detail .area_sub {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  background: #C4914F;
}
.item_detail .box_txt {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 4%;
  margin-top: 40px;
}
.item_detail .box_txt .img {
  width: 48%;
}
.item_detail .box_txt .img img {
  background: #333;
}
.item_detail .box_txt .txt {
  width: 48%;
}
.item_detail .box_txt .lead {
  color: #C4914F;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  text-box: trim-start cap alphabetic;
}
.item_detail .box_txt p {
  margin-top: 10px;
}
.item_detail .box_map {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  background: #fff;
  border: 1px solid rgba(77, 49, 14, 0.5);
}
.item_detail .box_map .map {
  width: 48%;
  background: #333;
}
.item_detail .box_map .map iframe {
  width: 100%;
  height: auto;
  min-height: 250px;
  vertical-align: bottom;
}
.item_detail .box_map .txt {
  width: 52%;
  padding: 0 4%;
}
.item_detail .box_map .txt .txthead {
  color: #C4914F;
  font-size: 16px;
  font-weight: 700;
}
.item_detail .box_map .txt p + .txthead {
  margin-top: 20px;
}
.item_detail .box_map .txt p {
  word-break: break-all;
}
.item_detail .box_map .txt p a {
  color: #333;
  text-decoration: none;
}
.item_detail .box_map .txt p a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 800px) {
  .item_detail {
    padding: 4vw 5vw 5vw;
  }
  .item_detail .head {
    font-size: 7vw;
    padding-bottom: 4vw;
  }
  .item_detail .area_sub {
    font-size: 3.8vw;
    padding: 1.5vw;
  }
  .item_detail .box_txt {
    flex-direction: column;
    gap: 4vw;
    margin-top: 5vw;
  }
  .item_detail .box_txt .img {
    width: 100%;
  }
  .item_detail .box_txt .txt {
    width: 100%;
  }
  .item_detail .box_txt .lead {
    font-size: 4.5vw;
    text-box: none;
  }
  .item_detail .box_txt p {
    margin-top: 1vw;
  }
  .item_detail .box_map {
    flex-direction: column;
    margin-top: 5vw;
  }
  .item_detail .box_map .map {
    width: 100%;
  }
  .item_detail .box_map .map iframe {
    height: 45vw;
    min-height: auto;
  }
  .item_detail .box_map .txt {
    width: 100%;
    padding: 4vw;
  }
  .item_detail .box_map .txt .txthead {
    font-size: 3.5vw;
  }
  .item_detail .box_map .txt p + .txthead {
    margin-top: 2vw;
  }
  .item_detail .box_map .txt p {
    font-size: 3.5vw;
  }
}

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

	アイテム一覧
	_section_item_detail_slider.scss

===============================================================*/
.section_item_detail_slider .section_inner {
  padding-top: 0;
}
.section_item_detail_slider:not(:has(.item)) {
  /* .detail_slider_head {
    display: none;
  }
  .detail_slider {
    display: none;
  }
  .btn_detail {
    margin-top: 0;
  } */
}
/*-------------------------------------------------------------
  detail_slider_head
-------------------------------------------------------------*/
.detail_slider_head {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: #4D310E;
  font-size: 35px;
  line-height: 1 !important;
  font-weight: 700;
}
.detail_slider_head:after {
  content: "";
  flex: 1;
  border-top: 2px dotted rgba(77, 49, 14, 0.5);
}
@media screen and (max-width: 800px) {
  .detail_slider_head {
    gap: 2vw;
    font-size: 6vw;
    line-height: 1;
  }
}

/*-------------------------------------------------------------
  detail_slider	
-------------------------------------------------------------*/
.detail_slider {
  margin-top: 20px;
}
.detail_slider .slick-list {
  width: calc(100% + 30px);
  margin-left: -15px;
  padding: 20px 0;
}
.detail_slider .item {
  margin: 0 15px;
}
.detail_slider .item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  transition: box-shadow 0.3s;
}
.detail_slider .item a:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.detail_slider .item a:hover .img img {
  transform: scale(1.05);
  filter: grayscale(100%);
}
.detail_slider .item .img {
  position: relative;
  overflow: hidden;
}
.detail_slider .item .img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 8/4.2;
  transition: 0.3s;
  background: #333;
}
.detail_slider .item .area_sub {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  background: #C4914F;
}
.detail_slider .item .box {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 10px 15px;
}
.detail_slider .item .box .lead {
  color: #C4914F;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
.detail_slider .item .box .head {
  color: #4D310E;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  margin-top: 3px;
}
.detail_slider + .btn_detail {
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  .detail_slider {
    margin-top: 3vw;
  }
  .detail_slider .slick-list {
    width: calc(100% + 4vw);
    margin-left: -2vw;
    padding: 1vw 0;
  }
  .detail_slider .item {
    margin: 0 2vw;
  }
  .detail_slider .item a:hover {
    box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
  }
  .detail_slider .item .area_sub {
    font-size: 3vw;
    padding: 1vw;
  }
  .detail_slider .item .box {
    padding: 2vw 2vw 3vw;
  }
  .detail_slider .item .box .lead {
    font-size: 3vw;
  }
  .detail_slider .item .box .head {
    font-size: 4vw;
    margin-top: 0.5vw;
  }
  .detail_slider + .btn_detail {
    margin-top: 4vw;
  }
}

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

	視聴方法
	_section_howto.scss

===============================================================*/
.section_howto {
  text-align: center;
  background: url(../images/howto/bg_howto.jpg), #d0ad8a;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}
@media screen and (max-width: 800px) {
  .section_howto {
    background-size: 200% auto;
  }
}

/*-------------------------------------------------------------
	howto	
-------------------------------------------------------------*/
.howto {
  position: relative;
  color: #4D310E;
  padding: 40px 50px 50px;
  background: rgba(255, 255, 255, 0.8);
}
.howto + .howto {
  margin-top: 50px !important;
}
.howto .name {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.howto .name .logo {
  width: 80px;
  box-sizing: border-box;
  border: 1px solid #333;
}
.howto.howto_jch .name .logo {
  border: 1px solid #1B9AC4;
}
.howto.howto_jtele .name .logo {
  border: 1px solid #E93816;
}
.howto.howto_youtube .name .logo {
  width: 50px;
  border: none;
}
.howto.howto_app .name .logo {
  width: 50px;
  border: none;
}
.howto .name .head {
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
}
.howto.howto_jch .name .head {
  color: #1B9AC4;
}
.howto.howto_jtele .name .head {
  color: #E93816;
}
@media screen and (max-width: 1030px) {
  .howto {
    padding: 40px 40px 50px;
  }
}
@media screen and (max-width: 800px) {
  .howto {
    padding: 5vw;
  }
  .howto + .howto {
    margin-top: 5vw !important;
  }
  .howto .name {
    gap: 3vw;
  }
  .howto .name .logo {
    width: 12vw;
  }
  .howto.howto_youtube .name .logo {
    width: 10vw;
  }
  .howto.howto_app .name .logo {
    width: 10vw;
  }
  .howto .name .head {
    font-size: 6vw;
  }
}

/*-------------------------------------------------------------
	howto area	
-------------------------------------------------------------*/
.howto .area {
  width: 100%;
  margin-top: 40px;
}
.howto .area .head {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}
.howto .area .box {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
.howto .area .box_2 th {
  width: 50%;
}
.howto .area .box_3 th {
  width: 33.3333%;
}
.howto .area .box_4 th {
  width: 25%;
}
.howto .area .box th {
  font-size: 13px;
  line-height: 1.4;
  font-weight: normal;
  text-align: center;
  padding: 15px 0;
  background: #fff;
  border: 1px solid #e5ddd6;
}
.howto .area .box th .enc {
  display: block;
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 5px;
}
.howto .area .box td {
  font-size: 16px;
  line-height: 1;
  text-align: center;
  padding: 20px 0;
  background: #fff;
  border: 1px solid #e5ddd6;
}
.howto .area .box td .l {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}
.howto .area .caution {
  color: #333;
  margin-top: 20px;
}
.howto .area .txtlink {
  margin-top: 10px;
}
.howto .area .btn_s {
  margin-top: 30px;
}
@media screen and (max-width: 1030px) {
  .howto .area .box td .l {
    display: block;
    margin-top: 5px;
  }
}
@media screen and (max-width: 800px) {
  .howto .area {
    margin-top: 5vw;
  }
  .howto .area .head {
    font-size: 4vw;
  }
  .howto .area .box {
    margin-top: 4vw;
  }
  .howto .area .box th {
    display: none;
  }
  .howto .area .box th .enc {
    font-size: 3.5vw;
  }
  .howto .area .box td {
    display: block;
    font-size: 4vw;
    padding: 1vw 0 3vw;
    border: none;
  }
  .howto .area .box td + td {
    margin-top: 5px;
  }
  .howto .area .box td .sub {
    display: block;
    font-size: 3vw;
    padding: 2vw 0;
  }
  .howto .area .box td .sub + .sub {
    padding-top: 1vw;
  }
  .howto .area .box td .sub .enc {
    display: block;
    font-size: 3.5vw;
    font-weight: 700;
    padding-bottom: 2vw;
  }
  .howto .area .box td .l {
    display: inline;
    font-size: 6vw;
    margin-top: 0;
  }
  .howto .area .caution {
    font-size: 3.5vw;
    line-height: 1.6;
    text-align: left;
    margin-top: 4vw;
  }
  .howto .area .txtlink {
    text-align: center;
    margin-top: 4vw;
  }
  .howto .area .btn_s {
    margin-top: 4vw;
  }
  .howto .area .btn_s a {
    font-size: 3.5vw;
    border-radius: 5.75vw;
  }
}

/*-------------------------------------------------------------
	howto detail	
-------------------------------------------------------------*/
.howto .detail {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 40px;
}
.howto .detail .left {
  width: 48%;
}
.howto .detail .left img {
  background: #333;
}
.howto .detail .right {
  width: 48%;
}
.howto .detail .right .lead {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
}
.howto .detail .right .btn_detail {
  margin-top: 30px;
}
.howto .detail .right .sep {
  margin-top: 20px;
}
.howto .detail .right .sep .catch {
  overflow: visible;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  background: #C4914F;
  padding: 10px;
}
.howto .detail .right .sep .catch:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 14px;
  height: 20px;
  border-top: 10px solid #C4914F;
  border-right: 7px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 7px solid transparent;
  box-sizing: border-box;
}
.howto .detail .right .sep .qr {
  width: 120px;
  margin: 0 auto;
  margin-top: 20px;
}
@media screen and (max-width: 800px) {
  .howto .detail {
    gap: 4vw;
    margin-top: 5vw;
  }
  .howto .detail .left {
    width: 100%;
  }
  .howto .detail .right {
    width: 100%;
  }
  .howto .detail .right .lead {
    font-size: 4vw;
  }
  .howto .detail .right .btn_detail {
    margin-top: 5vw;
  }
}

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

	アイテム一覧
	_section_btn_totop.scss

===============================================================*/
.section_btn_totop .section_inner {
  padding-bottom: 80px;
}
@media screen and (max-width: 800px) {
  .section_btn_totop .section_inner {
    padding-bottom: 10vw;
  }
}/*# sourceMappingURL=style.css.map */