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

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

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

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

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

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

	content 
	個別のコンテンツ

===============================================================*/
.content + .content {
  margin-top: 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: calc((100% - 40px * 3) / 4); /* 40px * 3 = 120px */
}
.grid_wrp .grid_5_1 {
  width: calc((100% - 40px * 2) / 5); /* 20px * 4 = 80px */
}
.grid_wrp .grid_6_1 {
  width: calc((100% - 40px * 5) / 6); /* 50px * 5 = 100px */
}
.grid_wrp.grid_wrp3:after, .grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before, .grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
  content: "";
  display: block;
  height: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.grid_wrp.grid_wrp3:after {
  width: calc((100% - 40px * 2) / 3);
}
.grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before {
  width: calc((100% - 40px * 3) / 4);
}
.grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
  width: calc((100% - 40px * 2) / 5);
}
@media screen and (max-width: 800px) {
  .grid_wrp {
    margin-top: -5vw;
  }
  .grid_wrp .grid {
    margin-top: 5vw;
  }
  .grid_wrp .grid .grid_wrp {
    margin-top: -3vw;
  }
  .grid_wrp .grid .grid {
    margin-top: 3vw;
  }
  .grid_wrp .grid_1_1 {
    width: 100%;
  }
  .grid_wrp .grid_2_1 {
    width: 100%;
  }
  .grid_wrp .grid_3_1 {
    width: 100%;
  }
  .grid_wrp .grid_3_2 {
    width: 100%;
  }
  .grid_wrp .grid_4_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_5_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_6_1 {
    width: calc((100% - 10vw) / 3);
  }
  .grid_wrp.grid_wrp3:after {
    width: calc((100% - 80px) / 3);
  }
  .grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before {
    width: calc((100% - 120px) / 4);
  }
  .grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
    width: calc((100% - 80px) / 5);
  }
  .grid_wrp .sp_grid_1 {
    width: 100% !important;
  }
}

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

	thiscontents_nav

===============================================================*/
.thiscontents_nav {
  width: 100%;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	navigation	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	// thiscontents_nav	ここまで
  -------------------------------------------------------------*/
}
.thiscontents_nav .navigation_wrp {
  width: 100%;
  text-align: left;
  top: 0;
  left: 0;
  height: 60px;
  background: #eb7257;
  z-index: 999;
  padding: 0 10px;
}
@media screen and (max-width: 1030px) {
  .thiscontents_nav {
    display: none;
  }
}
.thiscontents_nav .navigation {
  max-width: 1030px;
  position: relative;
  margin: 0 auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thiscontents_nav .navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
}
.thiscontents_nav .navigation li {
  line-height: 1.5;
  font-size: 16px;
  font-weight: 700;
}
.thiscontents_nav .navigation li a {
  color: #fff;
  text-decoration: none;
}
.thiscontents_nav .navigation li a:hover {
  color: #f7edc5;
  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: 50px 50px;
  overflow: hidden;
}
@media screen and (max-width: 1030px) {
  .thiscontents_nav .navigation .navigation_wrp {
    display: none;
  }
}
/*===============================================================

	linebtn

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

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

	sp_menu

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

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

	_headline.scss 2021/9/24

===============================================================*/
/*-------------------------------------------------------------
	mixin	
-------------------------------------------------------------*/
/*-------------------------------------------------------------
	block	
-------------------------------------------------------------*/
.block + .block_title {
  margin-top: 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 {
  text-align: center;
  /*.content * + & {
  	margin-top: $content_headline_margin;
  }*/
  /* タブレット */
  /* for TABLET */
  /* SP */
}
.headline .title {
  font-size: 38px;
  font-weight: 800;
  color: #a94027;
  line-height: 1.3;
}
.headline .lead {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
}
.headline .title + .lead {
  margin-top: 20px;
}
.headline .lead + .title {
  margin-top: 10px;
}
@media screen and (max-width: 1030px) {
  .headline .title {
    font-size: 34px;
  }
}
@media screen and (max-width: 800px) {
  .headline {
    margin-bottom: 6vw;
    padding-top: 5vw;
  }
  .headline .title {
    font-size: 6.5vw;
  }
  .headline .lead {
    font-size: 4.5vw;
    line-height: 1.8;
  }
  .headline .title + .lead {
    margin-top: 5vw;
  }
  .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;
  font-weight: 800;
}
.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;
  font-weight: 800;
}
.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;
  }
}

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

  	btn_detail

  ===============================================================*/
  /* タブレット以下 */
  /* for TABLET */
  /* SP */
  /* for SP max-width: 736px */
  /*-------------------------------------------------------------
  	flexbtn	
  -------------------------------------------------------------*/
  /* タブレット以下 */
  /* for TABLET */
  /* SP */
  /* for SP max-width: 736px */
}
.thiscontents .btn_detail {
  width: 300px;
  margin: 0 auto;
  margin-top: 40px;
}
.thiscontents .btn_detail a {
  position: relative;
  display: block;
  background-color: #a94027;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  padding: 20px 0;
  border-radius: 50px;
}
.thiscontents .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 #ffffff;
  border-left: solid 1px #ffffff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.thiscontents .btn_detail a:hover {
  text-decoration: none;
  background-color: #c9715b;
}
.thiscontents .btn_detail_red a {
  background-color: #c91b36;
}
.thiscontents .btn_detail_red a:hover {
  background-color: #e31838;
}
.thiscontents .btn_detail_black a {
  background-color: #000;
}
.thiscontents .btn_detail_black a:hover {
  background-color: #222;
}
@media screen and (max-width: 800px) {
  .thiscontents .btn_detail {
    width: 100%;
    margin: 0 auto;
    margin-top: 4vw;
  }
  .thiscontents .btn_detail a {
    font-size: 4vw;
    padding: 4vw 0;
  }
}
.thiscontents .flexbtn {
  width: auto;
  text-align: center;
}
.thiscontents .flexbtn a {
  display: inline-block;
  padding: 15px 40px;
}
/*===============================================================

	PAGETOP

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

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

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

#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向けレイアウトの指定：～$width_sp */
@media only screen and (max-width: 800px) {
  #btn_pagetop a {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }
  #btn_pagetop a:after {
    width: 12px;
    height: 12px;
    top: 17px;
    left: 0;
    right: 0;
    bottom: auto;
  }
} /* for SP max-width: $width_sp */
/*===============================================================

	_utils.scss 2021/9/24

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

.align_right {
  text-align: right;
}

.align_left {
  text-align: left;
}

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

	フロート関係

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

.clearboth {
  clear: both;
}

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

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

.flol {
  float: left;
}

.flor {
  float: right;
}

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

	fixed

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

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

	PC/SP/TABLET

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

.tablet {
  display: none;
}

.sp {
  display: none;
}

.sp_tablet {
  display: none;
}

.none {
  display: none !important;
}

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

	img fig

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

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

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

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

	マージン

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

.mt05 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb05 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

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

	fixed

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

.bg_fixed {
  background-attachment: fixed;
}

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

	テーブル

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

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

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

.table td {
  color: #000;
}

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

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

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

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

	フォーム

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

    txtlink

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

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

	radius

===============================================================*/
.radius_20 {
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 800px) {
  .radius_20 {
    border-radius: 2vw;
  }
}

.radius_10 {
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 800px) {
  .radius_10 {
    border-radius: 1vw;
  }
}

.radius_50 {
  overflow: hidden;
  border-radius: 50%;
}

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

	boxshadow

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

.boxshadow_20 {
  -webkit-box-shadow: 0px 0px 26px -6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 26px -6px rgba(0, 0, 0, 0.2);
}

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

	thiscontents

===============================================================*/
.thiscontents {
  width: 100%;
  font-family: "Noto Sans JP";
  /*a:hover {
  	color: #0099CC;
  }*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================

  	section_about

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

  	section_top_present

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

  	section_spot

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

  	section_footer_info

  ===============================================================*/
}
.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: 18px;
  line-height: 2;
}
.thiscontents sup {
  margin: 0;
  padding: 0;
  font-size: 11px;
  line-height: 15px;
}
.thiscontents a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #eb7257;
}
@media screen and (max-width: 1030px) {
  .thiscontents {
    padding-top: 40px;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents {
    margin-bottom: 10px;
  }
  .thiscontents p {
    font-size: 4.2vw;
    line-height: 1.8;
  }
}
.thiscontents .section_about {
  /* タブレット以下 */
  /* for TABLET */
  /* SP */
  /* for SP max-width: 736px */
}
.thiscontents .section_about .about_ph {
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  .thiscontents .section_about {
    margin-top: 0;
  }
  .thiscontents .section_about img {
    border-radius: 5vw;
  }
}
.thiscontents .section_top_present {
  background-color: #faf3ed;
  background-image: radial-gradient(circle, #fbfbfb 20px, transparent 20px), radial-gradient(circle, #fbfbfb 20px, transparent 20px);
  background-position: 0 0, 40px 80px;
  background-size: 80px 160px;
  position: relative;
  border-top: 10px solid #eb7257;
  border-bottom: 10px solid #eb7257;
  /* タブレット以下 */
  /* for TABLET */
  /* SP */
  /* for SP max-width: 736px */
}
.thiscontents .section_top_present .ribbon {
  position: absolute;
  width: 100px;
  height: auto;
  margin: 0 auto;
  top: -25px;
  left: 0;
  right: 0;
}
.thiscontents .section_top_present .content {
  position: relative;
}
.thiscontents .section_top_present .content .present_img_01, .thiscontents .section_top_present .content .present_img_02 {
  position: absolute;
  width: 200px;
  height: auto;
}
.thiscontents .section_top_present .content .present_img_01 img, .thiscontents .section_top_present .content .present_img_02 img {
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 26px -6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 26px -6px rgba(0, 0, 0, 0.1);
  border: 5px solid #fcebed;
}
.thiscontents .section_top_present .content .present_img_01 {
  top: 40%;
  left: -18%;
  -webkit-animation: scale_01 4s ease-out infinite;
          animation: scale_01 4s ease-out infinite;
}
.thiscontents .section_top_present .content .present_img_02 {
  top: -8%;
  right: -13%;
  -webkit-animation: scale_01 3s ease-out infinite;
          animation: scale_01 3s ease-out infinite;
}
.thiscontents .section_top_present .content .present_txt {
  font-size: 20px;
  text-align: center;
  margin-top: 40px;
}
.thiscontents .section_top_present .content .present_txt_date {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 1030px) {
  .thiscontents .section_top_present .content .present_img_01, .thiscontents .section_top_present .content .present_img_02 {
    width: 150px;
  }
  .thiscontents .section_top_present .content .present_img_01 {
    top: 40%;
    left: -5%;
  }
  .thiscontents .section_top_present .content .present_img_02 {
    top: -8%;
    right: -3%;
  }
  .thiscontents .section_top_present .content .present_txt {
    font-size: 18px;
  }
  .thiscontents .section_top_present .content .present_txt_date {
    font-size: 24px;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .section_top_present .ribbon {
    width: 20vw;
    top: -6vw;
  }
  .thiscontents .section_top_present .content .present_img_01, .thiscontents .section_top_present .content .present_img_02 {
    width: 22vw;
  }
  .thiscontents .section_top_present .content .present_img_01 {
    top: -10%;
    left: -3%;
  }
  .thiscontents .section_top_present .content .present_img_02 {
    top: -10%;
    right: -3%;
  }
  .thiscontents .section_top_present .content .present_txt {
    font-size: 4vw;
    margin-top: 0;
  }
  .thiscontents .section_top_present .content .present_txt_date {
    font-size: 5vw;
    margin-top: 5vw;
  }
}
.thiscontents .section_spot {
  /* タブレット以下 */
  /* for TABLET */
  /* SP */
  /* for SP max-width: 736px */
}
.thiscontents .section_spot .headline .title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 線を上下中央 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 文字と線を横並び */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 文字を中央寄せ */
}
.thiscontents .section_spot .headline .title::before, .thiscontents .section_spot .headline .title::after {
  background-color: #a94027; /* 線の色 */
  content: "";
  height: 5px; /* 線の高さ */
  width: 40px; /* 線の長さ */
}
.thiscontents .section_spot .headline .title::before {
  margin-right: 20px; /* 文字との余白 */
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg); /* 傾ける */
}
.thiscontents .section_spot .headline .title::after {
  margin-left: 20px; /* 文字との余白 */
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg); /* 傾ける */
}
.thiscontents .section_spot .grid_wrp {
  margin-top: 20px;
}
.thiscontents .section_spot .grid_wrp .spot_ph_txt {
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}
.thiscontents .section_spot .lv_1 {
  text-align: center;
  margin-top: 40px;
}
.thiscontents .section_spot .spot_wrp {
  border: 1px solid #ccc;
  padding: 30px;
  margin-top: 20px;
}
.thiscontents .section_spot .spot_wrp .spot_txt {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #a94027;
}
.thiscontents .section_spot .spot_wrp .spot_txt_sub {
  font-size: 15px;
  text-align: center;
}
.thiscontents .section_spot .spot_wrp + .lv_1 {
  margin-top: 80px;
}
@media screen and (max-width: 1030px) {
  .thiscontents .section_spot .headline .title::before, .thiscontents .section_spot .headline .title::after {
    height: 5px; /* 線の高さ */
    width: 30px; /* 線の長さ */
  }
  .thiscontents .section_spot .headline .lead {
    text-align: left;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .section_spot .headline .title::before, .thiscontents .section_spot .headline .title::after {
    height: 1.5vw; /* 線の高さ */
    width: 8vw; /* 線の長さ */
  }
  .thiscontents .section_spot .grid_wrp {
    margin-top: -5vw;
  }
  .thiscontents .section_spot .grid_wrp img {
    border-radius: 5vw;
  }
  .thiscontents .section_spot .grid_wrp .spot_ph_txt {
    font-size: 3.5vw;
    margin-top: 2vw;
    text-align: left;
  }
  .thiscontents .section_spot .lv_1 {
    text-align: center;
    margin-top: 8vw;
  }
  .thiscontents .section_spot .spot_wrp {
    border-radius: 3.5vw;
    padding: 5vw;
    margin-top: 3.5vw;
  }
  .thiscontents .section_spot .spot_wrp .spot_txt {
    font-size: 5vw;
  }
  .thiscontents .section_spot .spot_wrp .spot_txt_sub {
    font-size: 3.5vw;
  }
  .thiscontents .section_spot .spot_wrp + .lv_1 {
    margin-top: 10vw;
  }
}
.thiscontents .section_footer_info {
  background-image: url("/special/jtele/goto-sata/common/images/kv/mainvisual_town.png");
  background-repeat: no-repeat;
  background-position: bottom -8vw center;
  background-size: 100% auto;
  background-color: #f5eddc;
  color: #3b0b0e;
  /* タブレット以下 */
  /* for TABLET */
  /* SP */
  /* for SP max-width: 736px */
}
.thiscontents .section_footer_info .section_inner {
  padding-top: 80px;
}
.thiscontents .section_footer_info .grid_wrp {
  text-align: center;
}
.thiscontents .section_footer_info .grid_wrp img {
  width: 80%;
  height: auto;
}
.thiscontents .section_footer_info .grid_wrp .footer_info_title {
  font-size: 20px;
  margin-top: 40px;
}
.thiscontents .section_footer_info .grid_wrp .btn_detail {
  margin: 0 auto;
  margin-top: 40px;
}
@media screen and (max-width: 1030px) {
  .thiscontents .section_footer_info {
    background-position: bottom -7vw center;
  }
}
@media screen and (max-width: 800px) {
  .thiscontents .section_footer_info {
    background-position: bottom -10vw center;
    background-size: 200% auto;
  }
  .thiscontents .section_footer_info .section_inner {
    padding-top: 10vw;
    padding-bottom: 25vw;
  }
  .thiscontents .section_footer_info .grid_wrp img {
    width: 60%;
  }
  .thiscontents .section_footer_info .grid_wrp .footer_info_title {
    font-size: 5vw;
    margin-top: 0;
  }
  .thiscontents .section_footer_info .grid_wrp .btn_detail {
    margin: 0 auto;
    margin-top: 40px;
  }
}

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

	section_kv

===============================================================*/
.section_kv {
  width: 100%;
  min-height: 38vw;
  background: #eb7257;
  position: relative;
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	キャスト・ロゴまわり
  -------------------------------------------------------------*/
  /* タブレット以下 */
  /* for TABLET */
  /* SP */
  /* SP  */
  /*-------------------------------------------------------------
  	雲
  -------------------------------------------------------------*/
  /* タブレット以下 */
  /* for TABLET */
  /* SP */
  /* SP  */
  /*-------------------------------------------------------------
  	風船
  -------------------------------------------------------------*/
  /* タブレット以下 */
  /* for TABLET */
  /* SP */
  /* for 
  /*-------------------------------------------------------------
  	気球
  -------------------------------------------------------------*/
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP */
  /* SP */
  /*-------------------------------------------------------------
  	アニメーション
  -------------------------------------------------------------*/
  /*@keyframes updown_01_2{
    0% {transform:translate(2px,5px);}
    100% {transform:translate(-2px,0px); }
  }
  */
  /* タブレット以下 */
  /* SP */
  /* for SP max-width: 736px */
}
.section_kv .main_mountain {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -4vw;
}
.section_kv .studio_img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.section_kv .main_town {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -12%;
}
@media screen and (max-width: 800px) {
  .section_kv {
    min-height: 62vw;
    background: #a93f27;
  }
  .section_kv .main_town {
    width: 120%;
    bottom: 4vw;
  }
}
.section_kv .jtele_logo {
  width: 8.5%;
  height: auto;
  position: absolute;
  top: 10px;
  right: 10px;
}
.section_kv .jtele_logo img {
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}
.section_kv .main_logo {
  width: 14%;
  height: auto;
  position: absolute;
  top: 2%;
  left: 1%;
}
.section_kv .logo {
  width: 55%;
  height: auto;
  position: absolute;
  top: 20%;
  right: 7%;
}
.section_kv .cast {
  width: 34%;
  height: auto;
  position: absolute;
  bottom: 6%;
  left: 11%;
}
.section_kv .cast_name {
  width: 12%;
  height: auto;
  position: absolute;
  bottom: 36%;
  left: 9%;
}
.section_kv .oa_title {
  width: 300px;
  height: auto;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  padding: 10px;
  margin: 0 auto;
  text-align: center;
}
.section_kv .kv_oainfo {
  position: absolute;
  bottom: 2.5%;
  left: 0;
  right: 0;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 1030px) {
  .section_kv .kv_oainfo {
    font-size: 17px;
  }
}
@media screen and (max-width: 800px) {
  .section_kv .jtele_logo {
    width: 15%;
    top: 2%;
    right: 2%;
  }
  .section_kv .main_logo {
    width: 15%;
    top: 2%;
    left: 1%;
  }
  .section_kv .logo {
    width: 65%;
    height: auto;
    top: 22%;
    right: 0;
  }
  .section_kv .cast {
    width: 48%;
    bottom: 15%;
    left: 0;
  }
  .section_kv .cast_name {
    width: 15%;
    height: auto;
    position: absolute;
    bottom: 40%;
    left: 0;
  }
  .section_kv .kv_oainfo {
    font-size: 3.5vw;
    line-height: 1.5;
    bottom: 4%;
  }
}
.section_kv .cloud01 {
  width: 7.4%;
  height: auto;
  position: absolute;
  top: 3%;
  left: 38%;
}
.section_kv .cloud02 {
  width: 7%;
  height: auto;
  position: absolute;
  top: 35%;
  left: -2%;
}
.section_kv .cloud03 {
  width: 5.2%;
  height: auto;
  position: absolute;
  top: 16%;
  right: 30%;
}
.section_kv .cloud04 {
  width: 6.5%;
  height: auto;
  position: absolute;
  top: 10%;
  right: -1%;
}
.section_kv .cloud05 {
  width: 5.5%;
  height: auto;
  position: absolute;
  top: 29%;
  right: 15%;
}
.section_kv .baloon_pink {
  width: 1.3%;
  height: auto;
  position: absolute;
  bottom: 48%;
  left: 2%;
}
.section_kv .baloon_lightblue {
  width: 1.5%;
  height: auto;
  position: absolute;
  top: 15%;
  left: 17%;
}
.section_kv .baloon_red {
  width: 1.3%;
  height: auto;
  position: absolute;
  top: 13%;
  right: 45%;
}
.section_kv .baloon_blue {
  width: 1.3%;
  height: auto;
  position: absolute;
  top: 20%;
  right: 3%;
}
.section_kv .baloon_green {
  width: 1.4%;
  height: auto;
  position: absolute;
  top: 50%;
  right: 6%;
}
.section_kv .baloon_yellow {
  width: 1.3%;
  height: auto;
  position: absolute;
  top: 60%;
  right: 2.5%;
}
@media screen and (max-width: 800px) {
  .section_kv .baloon_pink {
    width: 2.3%;
    top: 20%;
    left: 6%;
  }
  .section_kv .baloon_lightblue {
    width: 2.5%;
    top: 25%;
    left: 9%;
  }
  .section_kv .baloon_red {
    width: 2.3%;
    top: 60%;
    left: 3%;
  }
  .section_kv .baloon_blue {
    width: 3%;
    top: 20%;
    right: 1%;
  }
  .section_kv .baloon_green {
    width: 2.4%;
    top: 40%;
    right: 4%;
  }
  .section_kv .baloon_yellow {
    width: 3.3%;
    top: 50%;
    right: 7%;
  }
}
.section_kv .kikyu_yellow {
  width: 5.5%;
  height: auto;
  position: absolute;
  top: 12%;
  right: 11%;
}
.section_kv .kikyu_red {
  width: 5.5%;
  height: auto;
  position: absolute;
  top: 4.6%;
  right: 18%;
}
.section_kv .kikyu_yellow img {
  transform: rotate(12deg);
  -moz-transform: rotate(12deg);
  -webkit-transform: rotate(12deg);
}
.section_kv .kikyu_red img {
  transform: rotate(-12deg);
  -moz-transform: rotate(-12deg);
  -webkit-transform: rotate(-12deg);
}
@media screen and (max-width: 800px) {
  .section_kv .kikyu_yellow {
    width: 7%;
    top: 3%;
    right: 30%;
  }
  .section_kv .kikyu_red {
    width: 7%;
    right: 12%;
  }
}
.section_kv .cloud01 {
  -webkit-animation: scale_01 5s ease-out infinite;
          animation: scale_01 5s ease-out infinite;
}
.section_kv .cloud02 {
  -webkit-animation: scale_01 3s ease-out infinite;
          animation: scale_01 3s ease-out infinite;
}
.section_kv .cloud03 {
  -webkit-animation: scale_01 4s ease-out infinite;
          animation: scale_01 4s ease-out infinite;
}
.section_kv .cloud04 {
  -webkit-animation: scale_01 5s ease-out infinite;
          animation: scale_01 5s ease-out infinite;
}
.section_kv .cloud05 {
  -webkit-animation: scale_01 6s ease-out infinite;
          animation: scale_01 6s ease-out infinite;
}
@-webkit-keyframes scale_01 {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
@keyframes scale_01 {
  0%, 40%, 60%, 80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50%, 70% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
@-webkit-keyframes updown_01 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 5px);
            transform: translate(0, 5px);
  }
}
@keyframes updown_01 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 5px);
            transform: translate(0, 5px);
  }
}
.section_kv .kikyu_yellow {
  -webkit-animation: updown_02 12s ease-in-out infinite alternate both;
          animation: updown_02 12s ease-in-out infinite alternate both;
}
.section_kv .kikyu_red {
  -webkit-animation: updown_02 9s ease-in-out infinite alternate both;
          animation: updown_02 9s ease-in-out infinite alternate both;
}
@-webkit-keyframes updown_02 {
  0% {
    -webkit-transform: translate(2px, 35px);
            transform: translate(2px, 35px);
  }
  100% {
    -webkit-transform: translate(-2px, -10px);
            transform: translate(-2px, -10px);
  }
}
@keyframes updown_02 {
  0% {
    -webkit-transform: translate(2px, 35px);
            transform: translate(2px, 35px);
  }
  100% {
    -webkit-transform: translate(-2px, -10px);
            transform: translate(-2px, -10px);
  }
}
.section_kv .baloon_pink {
  -webkit-animation: shake01 linear 10s infinite, updown_03 10s ease-in infinite alternate both;
          animation: shake01 linear 10s infinite, updown_03 10s ease-in infinite alternate both;
  -webkit-transform-origin: center -20px 0;
          transform-origin: center -20px 0;
}
.section_kv .baloon_lightblue {
  -webkit-animation: shake01 linear 13s infinite, updown_03 12s ease-in infinite alternate both;
          animation: shake01 linear 13s infinite, updown_03 12s ease-in infinite alternate both;
}
.section_kv .baloon_red {
  -webkit-animation: shake01 linear 15s infinite, updown_03 15s ease-in infinite alternate both;
          animation: shake01 linear 15s infinite, updown_03 15s ease-in infinite alternate both;
}
.section_kv .baloon_blue {
  -webkit-animation: shake01 linear 11s infinite, updown_03 8s ease-in infinite alternate both;
          animation: shake01 linear 11s infinite, updown_03 8s ease-in infinite alternate both;
}
.section_kv .baloon_green {
  -webkit-animation: shake01 linear 12s infinite, updown_03 9s ease-in infinite alternate both;
          animation: shake01 linear 12s infinite, updown_03 9s ease-in infinite alternate both;
}
.section_kv .baloon_yellow {
  -webkit-animation: shake01 linear 16s infinite, updown_03 11s ease-in infinite alternate both;
          animation: shake01 linear 16s infinite, updown_03 11s ease-in infinite alternate both;
}
@-webkit-keyframes updown_03 {
  0% {
    -webkit-transform: translate(2px, 30px);
            transform: translate(2px, 30px);
  }
  100% {
    -webkit-transform: translate(-2px, 0px);
            transform: translate(-2px, 0px);
  }
}
@keyframes updown_03 {
  0% {
    -webkit-transform: translate(2px, 30px);
            transform: translate(2px, 30px);
  }
  100% {
    -webkit-transform: translate(-2px, 0px);
            transform: translate(-2px, 0px);
  }
}
@-webkit-keyframes shake01 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes shake01 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media screen and (max-width: 800px) {
  .section_kv .kikyu_yellow {
    -webkit-animation: updown_02 8s ease-in infinite alternate both;
            animation: updown_02 8s ease-in infinite alternate both;
  }
  .section_kv .kikyu_red {
    -webkit-animation: updown_02 9s ease-in infinite alternate both;
            animation: updown_02 9s ease-in infinite alternate both;
  }
}
@keyframes updown_02 {
  0% {
    -webkit-transform: translate(1vw, 3vw);
            transform: translate(1vw, 3vw);
  }
  100% {
    -webkit-transform: translate(-1vw, -3vw);
            transform: translate(-1vw, -3vw);
  }
}

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

	視聴方法
	_section_howto.scss

===============================================================*/
.section_howto {
  text-align: center;
  background-color: #fcf6e3;
}
.section_howto .headline .title {
  font-size: 36px;
}
@media screen and (max-width: 800px) {
  .section_howto .headline .title {
    font-size: 6vw;
  }
}

/*-------------------------------------------------------------
	howto	
-------------------------------------------------------------*/
.howto {
  position: relative;
  margin-top: 50px !important;
  padding: 50px !important;
  background-color: #ffffff;
}
.howto .name {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.howto .name .logo {
  width: 80px;
  margin-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #333;
}
.howto .name .logo img {
  aspect-ratio: 3/2;
}
.howto.howto_jch .name .logo {
  border: 1px solid #00a5c7;
}
.howto.howto_jtele .name .logo {
  border: 1px solid #ef4029;
}
.howto.howto_dolocal .name .logo {
  border: none;
  width: 60px;
}
.howto.howto_dolocal .name .logo img {
  aspect-ratio: 1/1;
}
.howto .name .head {
  font-size: 34px;
  line-height: 1.6;
  font-weight: 700;
}
.howto.howto_jch .name .logo {
  border: 1px solid #00a5c7;
}
.howto.howto_jch .name .head {
  color: #00a5c7;
}
.howto.howto_jtele .name .head {
  color: #ef4029;
}
.howto.howto_dolocal .name .head {
  color: #333;
  font-size: 30px;
}
.howto.howto_dolocal .name + .name {
  margin-top: 10px;
}
.howto.howto_dolocal .oa_date {
  margin-top: 20px;
}
.howto.howto_dolocal .txt_box {
  margin-top: 10px;
  text-align: center;
}
.howto.howto_dolocal .txt_box .title {
  font-size: 24px;
  font-weight: 800;
}
.howto.howto_dolocal .txt_box .cap {
  font-size: 15px;
}
.howto.howto_dolocal .area .txt_box + .txtlink {
  margin-top: 60px;
}
.howto .oa_date_title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
}
.howto .oa_date {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.howto .oa_date span {
  font-size: 22px;
  font-weight: bold;
}
@media screen and (max-width: 1030px) {
  .howto {
    margin-top: 40px !important;
    padding: 40px !important;
  }
  .howto .name .head {
    font-size: 30px;
    line-height: 1.6;
    font-weight: 700;
  }
  .howto .box .logo {
    width: 100px;
    margin-right: 10px;
  }
  .howto .box .head {
    font-size: 26px;
  }
  .howto.howto_dolocal .name .logo {
    width: 50px;
    margin-right: 10px;
  }
  .howto.howto_dolocal .name .head {
    font-size: 22px;
  }
}
@media screen and (max-width: 800px) {
  .howto {
    margin-top: 5vw !important;
    padding: 5vw !important;
  }
  .howto .name {
    display: block;
  }
  .howto .name .logo {
    display: block;
    width: 100px;
    margin: 0 auto;
  }
  .howto .name .head {
    font-size: 5vw;
    line-height: 1.4;
    margin-top: 2vw;
  }
  .howto .oa_date {
    font-size: 3.5vw;
    margin-top: 5vw;
  }
  .howto.howto_dolocal .name .logo {
    display: block;
    width: 80px;
    margin: 0 auto;
  }
  .howto.howto_dolocal .name .head {
    font-size: 5vw;
    line-height: 1.4;
    margin-top: 1vw;
  }
  .howto.howto_dolocal .name + .name {
    margin-top: 5vw;
  }
  .howto.howto_dolocal .oa_date {
    margin-top: 3vw;
  }
  .howto.howto_dolocal .txt_box {
    margin-top: 2vw;
  }
  .howto.howto_dolocal .txt_box .title {
    font-size: 6vw;
    line-height: 1.4;
  }
  .howto.howto_dolocal .txt_box .cap {
    font-size: 3.2vw;
  }
  .howto.howto_dolocal .area .txt_box + .txtlink {
    margin-top: 10vw;
  }
}

/*-------------------------------------------------------------
	howto area	
-------------------------------------------------------------*/
.howto {
  /* &.howto_jch .area .head {
    color: $c_jch;
  }
  &.howto_jtele .area .head {
    color: $c_jtele;
  }
  &.howto_dolocal .area .head {
    color: $c_dolocal;
  } */
}
.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: #f2f2f4;
  border: 2px solid #fff;
}
.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: #f2f2f4;
  border: 2px solid #fff;
}
.howto .area .box td .l {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
}
.howto .area .caution {
  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;
  }
}

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

	プレゼントページ

===============================================================*/
.section_present {
  background-color: #faf3ed;
  background-image: radial-gradient(circle, #fbfbfb 20px, transparent 20px), radial-gradient(circle, #fbfbfb 20px, transparent 20px);
  background-position: 0 0, 40px 80px;
  background-size: 80px 160px;
  background-attachment: fixed;
  /* タブレット以下 */
  /* for TABLET */
  /* SP */
  /* for SP max-width: 736px */
  /*-------------------------------------------------------------
  	present_item	
  -------------------------------------------------------------*/
}
.section_present .headline .ribbon {
  width: 50px;
  height: auto;
  margin: 0 auto;
  padding-bottom: 10px;
}
.section_present .present_item {
  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;
  padding: 60px;
  margin-top: 40px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 26px -6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 26px -6px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  /* タブレット以下 */
  /* for TABLET */
  /* SP */
  /* for SP max-width: 736px */
}
.section_present .present_item + .present_item {
  margin-top: 50px;
}
.section_present .present_item .img {
  position: relative;
  width: 48.5%;
}
.section_present .present_item .img .num {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 90px;
  height: 90px;
  color: #fff;
  font-size: 46px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  letter-spacing: -2px;
  /*text-shadow: -1px -1px 1px rgba(0,0,0,0.2);*/
  padding: 10px 3px;
  /*background: linear-gradient(#ffe400 0%, #ab9900 100%);999999*/
  background: #eb7257;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /*box-shadow: 2px 2px 2px rgba(0,0,0,0.2);*/
  /*box-shadow: 0px 0px 4px rgba(0,0,0,0.4);*/
  /*transform: rotate(-15deg);*/
}
.section_present .present_item .img .num:after {
  content: "";
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  width: 85px;
  height: 85px;
  border: 1px solid #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.section_present .present_item .img .num .s {
  display: block;
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  letter-spacing: 0;
}
.section_present .present_item .txt {
  width: 48.5%;
}
.section_present .present_item .txt .head {
  font-size: 26px;
  line-height: 1.5;
  font-weight: 800;
  margin-top: 5px;
}
.section_present .present_item .txt .head span {
  font-size: 32px;
  font-weight: 800;
  color: #a94027;
}
.section_present .present_item .txt .sub_head {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 20px;
}
.section_present .present_item .txt .sub_head span {
  font-size: 26px;
  font-weight: 800;
  margin-right: 5px;
}
.section_present .present_item .txt p {
  font-size: 18px;
  line-height: 2;
}
.section_present .present_item .txt p + p {
  margin-top: 30px;
}
.section_present .present_item .present_item .btn_detail {
  text-align: right;
}
@media screen and (max-width: 800px) {
  .section_present .present_item {
    padding: 6vw;
    -webkit-box-shadow: 0px 0px 2vw rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 2vw rgba(0, 0, 0, 0.1);
    margin-top: 8vw;
    border-radius: 5vw;
  }
  .section_present .present_item + .present_item {
    margin-top: 6vw;
  }
  .section_present .present_item .img {
    width: 100%;
  }
  .section_present .present_item .img .num {
    position: absolute;
    top: -9vw;
    left: -9vw;
    width: 20vw;
    height: 20vw;
    font-size: 9vw;
    letter-spacing: -1px;
    padding: 3vw 0;
    /*box-shadow: 0px 0px 1vw rgba(0,0,0,0.4);*/
  }
  .section_present .present_item .img .num:after {
    top: 1vw;
    left: 1vw;
    width: 18vw;
    height: 18vw;
    border-width: 1px;
  }
  .section_present .present_item .img .num .s {
    font-size: 4vw;
    line-height: 4vw;
    margin-top: 0;
  }
  .section_present .present_item .txt {
    width: 100%;
    margin-top: 4vw;
  }
  .section_present .present_item .txt .tag {
    font-size: 4vw;
    padding: 1vw;
  }
  .section_present .present_item .txt .head {
    font-size: 4.5vw;
    margin-top: 1vw;
  }
  .section_present .present_item .txt .head span {
    font-size: 7vw;
  }
  .section_present .present_item .txt .sub_head {
    font-size: 5vw;
    margin-top: 5vw;
  }
  .section_present .present_item .txt .sub_head span {
    font-size: 6vw;
    margin-right: 2vw;
  }
  .section_present .present_item .txt .lead {
    font-size: 4vw;
    margin-top: 2vw;
  }
  .section_present .present_item .txt p {
    font-size: 4vw;
    margin-top: 2vw;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

	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-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 700;
  src: url("/special/common/webfont/NotoSansCJKjp-Bold_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 800;
  src: url("/special/common/webfont/NotoSansCJKjp-Black_subset.woff") format("woff");
}
.noto_sans {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.5px;
}
/*# sourceMappingURL=style.css.map */