@charset "UTF-8";
/*===============================================================
	読み込み
===============================================================*/
/*===============================================================
	変数
===============================================================*/
/*　画面左右のマージン　*/
/*	グリッド幅  */
/*	セクション、コンテンツ間のマージン　*/
/*　幅　*/
/*===============================================================
	色
===============================================================*/
/* ==========================================================================

	2019/2/14

   ========================================================================== */
@import url("/extra/library/common/css/smart_phone.css") only screen and (max-width: 1030px);
/*===============================================================

	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/NotoSerifCJKjp-SemiBold_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");
}
.noto_sans {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.5px;
}

/*===============================================================
	_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 {
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.content_width {
  max-width: 1300px;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
  background: url(../images/content_bg.jpg) center;
  background-size: 500px;
}
@media screen and (max-width: 800px) {
  .content_width {
    padding-left: 0;
    padding-right: 0;
    background: none;
  }
}

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

.absolute_full_width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.btn_width {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .btn_width {
    max-width: inherit;
  }
}

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

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

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

.section_inner {
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 120px;
  padding: 0 50px;
  box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .section_inner {
    padding-top: 5vw;
    padding-bottom: 10vw;
    padding-left: 5vw;
    padding-right: 5vw;
    padding: 0;
    background: url(../images/content_bg.jpg) center;
    background-size: 500px;
  }
}

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

	content 
	個別のコンテンツ

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

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

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

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

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

/* タブレット以下 */
@media screen and (max-width: 1030px) {
  .content {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
} /* for tablet */
/* SP向けレイアウトの指定：～736px */
@media screen and (max-width: 800px) {
  .headline + .content,
  .content + .content {
    margin-top: 10vw;
  }
  .content + .headline {
    padding-top: 13vw;
  }
  .content .content + *,
  .content * + .content {
    margin-top: 8vw;
  }
  .content_title + .content {
    margin-top: 0;
  }
} /* for SP */
/*===============================================================
	_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 {
  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: #06397B;
  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: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  height: 60px;
}
.thiscontents_nav .navigation li {
  line-height: 1.1;
  font-size: 18px;
}
.thiscontents_nav .navigation li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.thiscontents_nav .navigation li a:hover {
  color: #fff;
  text-decoration: none;
}
.thiscontents_nav .navigation .localnav li {
  margin-top: 0;
  padding-left: 30px;
  margin-right: 30px;
  border-left: solid 1px #fff;
}
.thiscontents_nav .navigation .localnav li:first-child {
  padding-left: 0;
  border-left: 0px;
}
.thiscontents_nav .navigation .localnav li.blank a {
  background: url(/special/common/images/asset/icon-blank-pc.gif) no-repeat right top; /* white	 */
  background: url(/special/common/images/asset/icon-blank-pc_bk.gif) no-repeat right top; /* black	 */
  padding-right: 20px;
}
.thiscontents_nav .navigation .sns {
  position: absolute;
  top: 0;
  right: 0;
}
.thiscontents_nav .navigation .sns li {
  margin-left: 10px;
}
.thiscontents_nav .navigation .sns li.twitter a,
.thiscontents_nav .navigation .sns li.instagram a,
.thiscontents_nav .navigation .sns li.facebook a {
  width: 30px;
  height: 30px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: block;
  background-size: 30px 30px;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.thiscontents_nav .navigation .sns li.twitter a {
  background-image: url(/special/common/images/asset/icon_x_w.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;
  }
}
/*===============================================================

	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: 0px;
    left: 0;
    z-index: 200;
    background: #000;
  }
  .sp_menu .inner {
    position: relative;
    width: 100%;
  }
  .sp_menu .menu {
    width: 100px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1200;
    background: none;
    color: #fff;
    text-align: center;
    border-top: solid 0 #000;
  }
  .sp_menu .menu a {
    display: block;
    position: relative;
    color: #fff;
    line-height: 40px;
    text-decoration: none;
    text-align: right;
    padding-right: 40px;
  }
  .sp_menu .active .menu {
    background-color: rgba(0, 0, 0, 0.6);
  }
  .sp_menu .nav {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    -webkit-overflow-scrolling: touch;
  }
  .sp_menu .nav .nav_container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 140px;
    box-sizing: border-box;
  }
  .sp_menu .nav .nav_container::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .sp_menu {
    top: 0;
  }
  .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/icon_x_w.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/icon_x_w.png);
    background-color: #fff !important;
  }
  .sp_menu .sp_sns .sns li.instagram a {
    background-image: url(/special/common/images/asset/sp_btn_instagram.png);
    background-color: #fff;
  }
  .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: 0 10px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 50px;
  }
  .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;
    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: 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: 49px;
}
.block + .block {
  margin-top: 14px;
}
.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;
}
.headline .title {
  font-size: 40px;
  display: inline-block;
  position: relative;
}
.headline .title::before, .headline .title::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 60%;
  background: #06397B;
  width: 50px;
  height: 2px;
}
.headline .title::before {
  transform: rotate(45deg);
  left: -60px;
}
.headline .title::after {
  transform: rotate(-45deg);
  right: -60px;
}
.headline .lead {
  font-size: 20px;
  line-height: 1.6;
}
.headline .title + .lead {
  margin-top: 15px;
}
.headline .lead + .title {
  margin-top: 10px;
}
.content * + .headline {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .headline {
    padding-top: 8vw;
  }
  .headline::before, .headline::after {
    top: 50%;
    width: 11.71vw;
    height: 0.5vw;
  }
  .headline::before {
    left: -14vw;
  }
  .headline::after {
    right: -14vw;
  }
  .headline .title {
    font-size: 6.5vw;
  }
  .headline .lead {
    font-size: 3.5vw;
    line-height: 1.6;
  }
  .headline .title + .lead {
    margin-top: 3vw;
  }
  .headline .lead + .title {
    margin-top: 2vw;
  }
  .content * + .headline {
    margin-top: 10vw;
  }
}

/*-------------------------------------------------------------
	content_title	
-------------------------------------------------------------*/
.content_title {
  margin-bottom: 30px;
}
.content_title .title {
  font-size: 30px;
}
.content_title .lead {
  font-size: 20px;
  line-height: 1.6;
}
.content_title .title + .lead {
  margin-top: 15px;
}
.content_title .lead + .title {
  margin-top: 10px;
}
.content * + .content_title {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .content_title {
    margin-bottom: 5.5vw;
  }
  .content_title .title {
    font-size: 5vw;
  }
  .content_title .lead {
    font-size: 4vw;
    line-height: 1.5;
  }
  .content_title .title + .lead {
    margin-top: 2vw;
  }
  .content_title .lead + .title {
    margin-top: 2vw;
  }
  .content * + .content_title {
    margin-top: 10vw;
  }
}

/*-------------------------------------------------------------
	lv_1	
-------------------------------------------------------------*/
.lv_1 {
  margin-bottom: 20px;
}
.lv_1 .title {
  font-size: 30px;
}
.lv_1 .lead {
  font-size: 20px;
}
.lv_1 .title + .lead {
  margin-top: 5px;
}
.lv_1 .lead + .title {
  margin-top: 10px;
}
.content * + .lv_1 {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .lv_1 {
    margin-bottom: 5vw;
  }
  .lv_1 .title {
    font-size: 5vw;
  }
  .lv_1 .lead {
    font-size: 3.5vw;
    line-height: 1.5;
  }
  .lv_1 .title + .lead {
    margin-top: 1vw;
  }
  .lv_1 .lead + .title {
    margin-top: 1vw;
  }
  .content * + .lv_1 {
    margin-top: 10vw;
  }
}

/*-------------------------------------------------------------
	lv_2	
-------------------------------------------------------------*/
.lv_2 {
  margin-bottom: 20px;
}
.lv_2 .title {
  font-size: 25px;
}
.lv_2 .lead {
  font-size: 18px;
}
.lv_2 .title + .lead {
  margin-top: 5px;
}
.lv_2 .lead + .title {
  margin-top: 10px;
}
@media screen and (max-width: 800px) {
  .lv_2 {
    margin-bottom: 3vw;
  }
  .lv_2 .title {
    font-size: 4.5vw;
  }
  .lv_2 .lead {
    font-size: 3.5vw;
  }
  .lv_2 .title + .lead {
    margin-top: 1vw;
  }
  .lv_2 .lead + .title {
    margin-top: 1vw;
  }
}

/*-------------------------------------------------------------
	lv_3	
-------------------------------------------------------------*/
.lv_3 {
  margin-bottom: 20px;
}
.lv_3 .title {
  font-size: 20px;
}
.lv_3 .lead {
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  .lv_3 {
    margin-bottom: 3vw;
  }
  .lv_3 .title {
    font-size: 4.2vw;
  }
  .lv_3 .lead {
    font-size: 3.2vw;
    line-height: 1.4;
  }
  .lv_3 .title + .lead {
    margin-top: 1vw;
  }
  .lv_3 .lead + .title {
    margin-top: 0vw;
  }
}

/*-------------------------------------------------------------
	lv_4	
-------------------------------------------------------------*/
.lv_4 {
  margin-bottom: 20px;
}
.lv_4 .title {
  font-size: 18px;
}
.lv_4 .lead {
  font-size: 14px;
}
@media screen and (max-width: 800px) {
  .lv_4 {
    margin-bottom: 3vw;
  }
  .lv_4 .title {
    font-size: 4.2vw;
  }
  .lv_4 .lead {
    font-size: 3.2vw;
    line-height: 1.4;
  }
  .lv_4 .title + .lead {
    margin-top: 1vw;
  }
  .lv_4 .lead + .title {
    margin-top: 0vw;
  }
}

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

	btn_detail

===============================================================*/
.btn_detail {
  width: 350px;
  margin: 0 auto;
  margin-top: 40px;
}

.btn_detail a {
  position: relative;
  display: block;
  background-color: #B92A23;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  padding: 15px 0;
  border-radius: 10px;
}

.btn_detail a:after {
  position: absolute;
  content: " ";
  width: 6px;
  height: 6px;
  top: 0;
  left: auto;
  bottom: 0;
  right: 10px;
  margin: auto;
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  transform: rotate(135deg);
}

.btn_detail a:hover {
  text-decoration: none;
  background-color: #f00;
}

.btn_detail_red a {
  background-color: #B92A23;
}

.btn_detail_red a:hover {
  background-color: #B92A23;
}

.btn_detail_black a {
  background-color: #000;
}

.btn_detail_black a:hover {
  background-color: #222;
}

.jcom_btn .btn_primary {
  background-color: #B92A23;
  border-color: #B92A23;
}

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

	PAGETOP

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

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

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

#btn_pagetop a:after {
  position: absolute;
  content: " ";
  width: 14px;
  height: 14px;
  top: 20px;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  transform: rotate(45deg);
  border-radius: 2px;
}

/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
  #btn_pagetop a {
    width: 40px;
    height: 40px;
  }
  #btn_pagetop a:after {
    width: 12px;
    height: 12px;
    top: 17px;
    left: 0;
    right: 0;
    bottom: auto;
  }
} /* for SP max-width: 736px */
/*===============================================================

	_utils.scss 2021/9/24

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

.align_right {
  text-align: right;
}

.align_left {
  text-align: left;
}

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

	フロート関係

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

.clearboth {
  clear: both;
}

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

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

.flol {
  float: left;
}

.flor {
  float: right;
}

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

	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;
  border-bottom: solid 1px #ddd;
}

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

    section_kv

===============================================================*/
.section_kv {
  padding: 0 50px;
  z-index: 0;
  color: #000;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      inner
  ===============================================================*/
  /*===============================================================
      kv_content
  ===============================================================*/
  /*===============================================================
      content_sprv
  ===============================================================*/
  /*===============================================================
  ball
  ===============================================================*/
}
@media screen and (max-width: 1030px) {
  .section_kv {
    padding: 0 50px;
  }
}
@media screen and (max-width: 800px) {
  .section_kv {
    background-size: 4vw;
    padding: 0 5vw;
  }
}
.section_kv .inner {
  max-width: 1300px;
  background: url(../images/content_bg.jpg) center;
  background-size: 500px;
  margin: auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_kv .kv_content {
  position: relative;
  padding: 40px 0 100px;
  overflow: hidden;
  z-index: 0;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      kv_block_title
  ===============================================================*/
}
.section_kv .kv_content::before, .section_kv .kv_content::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  z-index: 0;
  background-size: cover;
}
.section_kv .kv_content::before {
  background: url(../images/kv/kv_left.svg) no-repeat;
  width: 38%;
  height: 100%;
  left: -4%;
  top: -1%;
}
.section_kv .kv_content::after {
  background: url(../images/kv/kv_right.svg) no-repeat;
  right: -5%;
  width: 32%;
  top: -4%;
  height: 100%;
  background-size: cover;
}
@media screen and (max-width: 1030px) {
  .section_kv .kv_content {
    margin-right: 0;
    margin-left: 0;
  }
  .section_kv .kv_content::before {
    height: 90%;
    left: -4%;
  }
  .section_kv .kv_content::after {
    width: 30%;
    top: -3%;
    height: 85%;
  }
}
@media screen and (max-width: 800px) {
  .section_kv .kv_content {
    padding: 8vw 0 8vw;
  }
  .section_kv .kv_content::after {
    right: 0%;
    width: 35%;
    top: -5%;
    height: 95%;
  }
  .section_kv .kv_content::before {
    left: -3%;
    top: -1%;
    height: 95%;
  }
}
.section_kv .kv_content .kv_block_title {
  position: relative;
  z-index: 1;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_kv .kv_content .kv_block_title .title {
  margin: auto;
  max-width: 1150px;
  padding: 0 50px;
  position: relative;
}
.section_kv .kv_content .kv_block_title .label {
  position: absolute;
  background: #06397B;
  color: #fff;
  font-weight: bold;
  font-size: min(30px, 2.3vw);
  padding: 0px 20px;
  text-align: center;
  right: 16%;
  top: 13%;
  transform: rotate(12deg);
}
.section_kv .kv_content .kv_block_title .sub_title {
  position: relative;
  margin: 10px auto 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
}
.section_kv .kv_content .kv_block_title .sub {
  position: absolute;
  font-size: min(27px, 3.2vw);
  left: 50%;
  transform: translate(-50%, 0%);
  line-height: 1;
  width: 100%;
  color: #fff;
  font-weight: inherit;
}
@media screen and (max-width: 1030px) {
  .section_kv .kv_content .kv_block_title .title {
    width: 95%;
    padding: 0 0;
  }
}
@media screen and (max-width: 800px) {
  .section_kv .kv_content .kv_block_title .label {
    right: 14%;
    top: 3%;
    font-size: 3.8vw;
    padding: 0.5vw 2.5vw;
    transform: rotate(10deg);
  }
  .section_kv .kv_content .kv_block_title .sub_title {
    width: 45%;
    margin: 2vw auto 0;
  }
  .section_kv .kv_content .kv_block_title .sub {
    font-size: 3.8vw;
  }
}
.section_kv .content_sprv {
  max-width: 1100px;
  position: relative;
  padding: 0 50px;
  margin: -70px auto 0;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_kv .content_sprv .photo_block {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}
.section_kv .content_sprv .photo {
  width: calc((100% - 90px) / 4);
  box-shadow: 0px 10px 10px -12px rgba(0, 0, 0, 0.3);
}
.section_kv .content_sprv .photo .name {
  text-align: center;
  display: block;
  width: calc(100% - 12px);
  margin: 0 auto;
  background-color: #06397B;
  border-radius: 0 0 30px 30px;
  padding: 10px 0;
  color: #fff;
}
@media screen and (max-width: 1030px) {
  .section_kv .content_sprv .photo_block {
    gap: 20px;
  }
  .section_kv .content_sprv .photo {
    width: calc((100% - 60px) / 4);
  }
  .section_kv .content_sprv .photo .name {
    width: calc(100% - 1vw);
  }
}
@media screen and (max-width: 800px) {
  .section_kv .content_sprv {
    margin: -5vw auto 0;
  }
  .section_kv .content_sprv .photo_block {
    gap: 2vw;
    margin: 0 calc(50% - 48vw) 0vw;
    z-index: 2;
    position: relative;
  }
  .section_kv .content_sprv .photo {
    width: calc((100% - 6vw) / 4);
  }
  .section_kv .content_sprv .photo .name {
    border-radius: 0 0 3vw 3vw;
    padding: 2vw 0;
    color: #fff;
  }
}
.section_kv .ball {
  width: 14%;
  position: absolute;
  right: 0%;
  bottom: 30%;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  .section_kv .ball {
    bottom: 32%;
  }
}
@media screen and (max-width: 800px) {
  .section_kv .ball {
    width: 25%;
    bottom: 35.5%;
    right: -6%;
  }
}

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

    section_head

===============================================================*/
.section_head {
  background: #766A46;
  color: #fff;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_head .inner {
  padding: 10px 0;
}
.section_head .title {
  text-align: center;
  font-size: 20px;
  line-height: 1;
}
@media screen and (max-width: 800px) {
  .section_head .inner {
    padding: 2.7vw 0;
  }
  .section_head .title {
    font-size: 4vw;
  }
}

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

    section_sprv

===============================================================*/
.section_sprv {
  /* for TABLET */
  /* for SP */
  /*===============================================================
      content_sprv
  ===============================================================*/
}
.section_sprv .section_inner {
  padding-top: 0;
  padding-bottom: 0;
}
.section_sprv .content_width {
  padding-bottom: 120px;
}
@media screen and (max-width: 800px) {
  .section_sprv {
    padding: 0 5vw;
  }
  .section_sprv .content_width {
    padding-bottom: 5vw;
  }
}
.section_sprv .content_sprv {
  max-width: 1000px;
  position: relative;
  padding: 0;
  margin: auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_sprv .content_sprv .photo_block {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}
.section_sprv .content_sprv .photo {
  width: calc((100% - 90px) / 4);
  box-shadow: 0px 10px 10px -12px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1030px) {
  .section_sprv .content_sprv .photo_block {
    gap: 20px;
  }
  .section_sprv .content_sprv .photo {
    width: calc((100% - 60px) / 4);
  }
}
@media screen and (max-width: 800px) {
  .section_sprv .content_sprv .photo_block {
    gap: 2vw;
    margin: 0 calc(50% - 48vw) 0vw;
    z-index: 2;
    position: relative;
  }
  .section_sprv .content_sprv .photo {
    width: calc((100% - 6vw) / 4);
  }
}

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

	section_rec_event

===============================================================*/
.section_rec_event {
  color: #000;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      headline
  ===============================================================*/
  /*===============================================================
      content_about_event
  ===============================================================*/
  /*===============================================================
      content_event_detail
  ===============================================================*/
  /*===============================================================
  	datalist
  ===============================================================*/
  /*===============================================================
  	content_youtube
  ===============================================================*/
  /*===============================================================
  	btn_deactive
  ===============================================================*/
  /*===============================================================
  	block_footer_info
  ===============================================================*/
}
.section_rec_event .content_width {
  padding: 120px 50px 120px;
}
@media screen and (max-width: 800px) {
  .section_rec_event {
    padding: 0 5vw;
  }
  .section_rec_event .content_width {
    padding: 5vw 5vw 13vw;
  }
}
.section_rec_event .headline {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_rec_event .headline .title {
  font-size: inherit;
}
.section_rec_event .headline .subtitle_block {
  max-width: 630px;
  margin: 30px auto 0;
}
@media screen and (max-width: 800px) {
  .section_rec_event .headline .title {
    width: 34%;
  }
  .section_rec_event .headline .subtitle_block {
    margin: 6vw auto 0;
  }
}
.section_rec_event .content_about_event {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_rec_event .content_about_event .txt_block, .section_rec_event .content_about_event .photo_block {
  width: calc((100% - 40px) / 2);
}
.section_rec_event .content_about_event .txt_block .txt {
  line-height: 2.2;
  font-weight: bold;
}
@media screen and (max-width: 1030px) {
  .section_rec_event .content_about_event .txt_block, .section_rec_event .content_about_event .photo_block {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .section_rec_event .content_about_event {
    gap: 5vw;
    margin-top: 8vw;
  }
  .section_rec_event .content_about_event .txt_block .txt {
    text-align: center;
    font-size: 4vw;
    line-height: 2.4;
  }
}
.section_rec_event .content_event_detail {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_rec_event .content_event_detail .jcom_btn {
  margin-top: 50px;
}
.section_rec_event .content_event_detail .caution {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 800px) {
  .section_rec_event .content_event_detail .jcom_btn {
    margin-top: 5vw;
  }
  .section_rec_event .content_event_detail .caution {
    font-size: 3.5vw;
    line-height: 1.4;
    margin-top: 3vw;
  }
}
.section_rec_event .datalist {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
  text-align: left;
  /* タブレット以下 */
  /* for tablet max-width: 960px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
}
.section_rec_event .datalist dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  border-bottom: solid 1.5px #E2D9CD;
}
.section_rec_event .datalist dt {
  width: 15%;
  border-top: solid 1.5px #E2D9CD;
  font-weight: bold;
  color: #B92A23;
  padding: 20px 10px;
}
.section_rec_event .datalist dd {
  width: 85%;
  border-top: solid 1.5px #E2D9CD;
  padding: 20px 0;
}
.section_rec_event .datalist .caption {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 30px;
}
@media screen and (max-width: 800px) {
  .section_rec_event .datalist {
    width: 100%;
    margin-top: 20px;
  }
  .section_rec_event .datalist dt {
    width: 100%;
    padding: 3vw 0 0 0;
    font-size: 4.5vw;
  }
  .section_rec_event .datalist dd {
    width: 100%;
    border-top: none;
    padding: 0px 0 4vw 0;
    font-size: 4.5vw;
    line-height: 1.3;
    margin-top: 3px;
  }
  .section_rec_event .datalist dd .small {
    font-size: 3.2vw;
    display: block;
    margin-top: 2.5vw;
  }
  .section_rec_event .datalist .caption {
    font-size: 3.5vw;
    line-height: 1.4;
    margin-top: 3vw;
  }
}
.section_rec_event .content_youtube {
  text-align: center;
  max-width: 1000px;
  margin: auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_rec_event .content_youtube .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.section_rec_event .content_youtube .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.section_rec_event .content_youtube .time {
  color: #666;
  font-size: 14px;
  margin-top: 15px;
}
@media screen and (max-width: 800px) {
  .section_rec_event .content_youtube {
    margin-top: 5vw;
  }
}
.section_rec_event .btn_primary.btn_deactive {
  pointer-events: none;
  color: #999 !important;
  background: #666 !important;
  border-color: #666 !important;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_rec_event .btn_primary.btn_deactive:after {
  opacity: 0.3;
}
.section_rec_event .block_footer_info {
  max-width: 660px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 30px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_rec_event .block_footer_info .title {
  font-size: 25px;
  line-height: 1.4;
  font-weight: bold;
  color: #B92A23;
}
.section_rec_event .block_footer_info .subtitle {
  margin-top: 20px;
  font-size: 20px;
  font-weight: inherit;
  color: #0E0D6A;
  align-items: center;
  display: flex;
  justify-content: center;
}
.section_rec_event .block_footer_info .subtitle::after {
  content: "";
  width: 24px;
  height: 19px;
  background: url(../images/rec_event/icon_call.svg) no-repeat;
  display: inline-block;
  margin-left: 15px;
}
.section_rec_event .block_footer_info .tel_number {
  margin-top: 10px;
}
.section_rec_event .block_footer_info .tel_number a {
  text-decoration: none;
  font-size: 40px;
  line-height: 1;
  font-weight: bold;
  color: #000;
}
.section_rec_event .block_footer_info .date {
  font-size: 14px;
  margin-top: 10px;
  font-weight: inherit;
}
.section_rec_event .block_footer_info .caption_link {
  margin-top: 30px;
}
.section_rec_event .block_footer_info .caption_link a {
  color: #000;
  text-decoration: underline;
}
@media screen and (max-width: 800px) {
  .section_rec_event .block_footer_info {
    padding: 5vw;
    border-radius: 5vw;
  }
  .section_rec_event .block_footer_info .title {
    font-size: 4.5vw;
  }
  .section_rec_event .block_footer_info .subtitle {
    margin-top: 3vw;
    font-size: 3.5vw;
    font-weight: bold;
  }
  .section_rec_event .block_footer_info .subtitle::after {
    margin-left: 3vw;
    width: 5.8vw;
    height: 4.4vw;
  }
  .section_rec_event .block_footer_info .tel_number {
    margin-top: 3vw;
  }
  .section_rec_event .block_footer_info .tel_number a {
    font-size: 7vw;
  }
  .section_rec_event .block_footer_info .date {
    font-size: 3.5vw;
    margin-top: 2vw;
  }
}

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

	section_program_info

===============================================================*/
.section_program_info {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      content_program
  ===============================================================*/
  /*===============================================================
      content_fuji_info
  ===============================================================*/
  /*===============================================================
      content_channels
  ===============================================================*/
  /*===============================================================
      channel_info
  ===============================================================*/
}
.section_program_info .section_inner {
  background: #06397B;
  padding: 120px 0 200px;
}
.section_program_info .headline {
  border-bottom: solid #fff 2px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  color: #fff;
}
.section_program_info .headline .title::before, .section_program_info .headline .title::after {
  background: none;
}
.section_program_info .wide_width {
  position: relative;
  padding: 0 30px;
}
.section_program_info .dokidoki {
  width: 120px;
  top: -150px;
  left: -50px;
}
.section_program_info .wakuwaku {
  width: 120px;
  top: -150px;
  right: -50px;
}
@media screen and (max-width: 800px) {
  .section_program_info .section_inner {
    padding: 5vw 5vw 18vw;
  }
  .section_program_info .wide_width {
    padding: 0;
  }
  .section_program_info .dokidoki {
    width: 20vw;
    top: -3vw;
    left: -6vw;
    z-index: 2;
  }
  .section_program_info .wakuwaku {
    width: 20vw;
    top: -10vw;
    right: -8vw;
  }
}
.section_program_info .content_program {
  background: #fff;
  padding: 40px;
  border-radius: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_program_info .content_program .txt_block,
.section_program_info .content_program .thumb_block {
  width: calc((100% - 40px) / 2);
}
.section_program_info .content_program .thumb_l1 {
  margin-top: -24%;
}
.section_program_info .content_program .border {
  border: solid 1px #dddddd;
}
.section_program_info .content_program .title {
  font-size: 30px;
  padding-top: 10px;
}
.section_program_info .content_program .title .sub {
  display: block;
  font-size: 75%;
}
.section_program_info .content_program p {
  font-size: 20px;
  margin-top: 1em;
}
.section_program_info .content_program .jcom_btn {
  width: 350px;
  margin-top: 30px;
}
.section_program_info .content_program .logo {
  position: absolute;
  right: 40px;
  top: 40px;
  width: min(100px, 7vw);
}
@media screen and (max-width: 1030px) {
  .section_program_info .content_program .thumb_l1 {
    margin-top: -40%;
  }
  .section_program_info .content_program .logo {
    top: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 800px) {
  .section_program_info .content_program {
    padding: 5vw;
    border-radius: 5vw;
    flex-direction: column;
  }
  .section_program_info .content_program .txt_block,
  .section_program_info .content_program .thumb_block {
    width: 100%;
  }
  .section_program_info .content_program .title {
    font-size: 6vw;
    margin-top: 4vw;
  }
  .section_program_info .content_program .title .sub {
    display: block;
    font-size: 4.3vw;
  }
  .section_program_info .content_program p {
    font-size: 4vw;
    margin-top: 4vw;
  }
  .section_program_info .content_program .jcom_btn {
    width: 100%;
    margin-top: 5vw;
  }
  .section_program_info .content_program .logo {
    position: absolute;
    width: 20vw;
    top: -5vw;
    right: -3vw;
    background: #fff;
    border-radius: 3vw;
    overflow: hidden;
    padding: 1.5vw;
    box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.1);
  }
  .section_program_info .content_program .thumb_l1 {
    margin-top: 0;
  }
}
.section_program_info .content_fuji_info {
  text-align: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_program_info .content_fuji_info p {
  font-size: 14px;
  color: #fff;
}
.section_program_info .content_fuji_info a {
  text-decoration: underline;
  color: #fff;
}
.section_program_info .content_fuji_info a:hover {
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .section_program_info .content_fuji_info {
    text-align: center;
  }
  .section_program_info .content_fuji_info p {
    font-size: 3.5vw;
  }
  .section_program_info .content_fuji_info p + p {
    margin-top: 3vw;
  }
  .section_program_info .content_fuji_info a {
    text-decoration: underline;
    color: #fff;
  }
  .section_program_info .content_fuji_info a:hover {
    text-decoration: none;
  }
}
.section_program_info .content_channels {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_program_info .content_channels .item {
  width: calc((100% - 80px) / 3);
  background: #fff;
  padding: 30px 30px;
  border-radius: 40px;
  text-align: center;
}
.section_program_info .content_channels .item .logo {
  max-width: 200px;
  margin: 0 auto;
}
.section_program_info .content_channels .item p {
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  .section_program_info .content_channels {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-radius: 5vw;
    overflow: hidden;
  }
  .section_program_info .content_channels .item {
    width: 100%;
    padding: 5vw;
    border-radius: 0vw;
    margin-top: 0px;
  }
  .section_program_info .content_channels .item .logo {
    max-width: 150px;
    margin: 0 auto;
  }
  .section_program_info .content_channels .item p {
    line-height: 1.5;
  }
  .section_program_info .content_channels .item + .item {
    border-top: dashed 1px #ddd;
  }
}
.section_program_info .channel_info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_program_info .channel_info .icon {
  width: 60px;
  height: 60px;
  border: solid 1px #ececec;
}
.section_program_info .channel_info .txt {
  width: calc(100% - 80px);
}
.section_program_info .channel_info .txt .name {
  font-size: 17px;
  font-weight: bold;
}
.section_program_info .channel_info .txt .date {
  font-size: 16px;
}
.section_program_info .channel_info .status {
  color: #B92A23;
  font-weight: bold;
}
.section_program_info .channel_info .presents_txt {
  font-size: 22px;
  font-weight: bold;
  color: #B80202;
  line-height: 1.5;
  padding-top: 10px;
  display: block;
}
.section_program_info .channel_info .presents_time {
  font-weight: bold;
  color: #B80202;
  border-bottom: solid 2px;
}
.section_program_info .channel_info .img {
  width: 250px;
  margin: 10px 0 15px;
}
@media screen and (max-width: 800px) {
  .section_program_info .channel_info {
    margin-top: 4vw;
  }
  .section_program_info .channel_info .name {
    font-size: 4.5vw;
  }
  .section_program_info .channel_info .date {
    font-size: 4vw;
  }
  .section_program_info .channel_info .status {
    font-size: 4vw;
    display: block;
  }
  .section_program_info .channel_info .presents_txt {
    font-size: 5vw;
    display: block;
    padding-top: 2vw;
    margin-bottom: -3vw;
  }
  .section_program_info .channel_info .img {
    width: 95%;
    margin: 14% 0 10%;
  }
  .section_program_info .channel_info .presents_time {
    font-size: 4.2vw;
  }
}

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

	section_report

===============================================================*/
.section_report {
  background: #000;
  color: #fff;
  /* タブレット */
  /* for TABLET */
  /*===============================================================
     headline
  ===============================================================*/
  /*===============================================================
      txt_block
  ===============================================================*/
}
.section_report .section_inner {
  padding-top: 0;
}
.section_report .thankyou {
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.1em;
  background: #000;
  display: inline-block;
  padding: 10px 40px;
  margin: 0 auto;
  margin-top: -40px;
  border-radius: 50px;
}
.section_report .block_report_title_bg {
  padding-top: 0;
  position: relative;
  z-index: 1;
  text-align: center;
}
.section_report .block_report_title_bg .thankyou {
  position: relative;
  text-align: center;
  font-size: 28px;
  letter-spacing: 0.1em;
  background: #000;
  display: inline-block;
  padding: 10px 40px;
  margin: 0 auto;
  margin-top: -40px;
  border-radius: 50px;
}
.section_report .block_report_title_bg .thankyou .copy {
  position: absolute;
  color: #666;
  width: 100%;
  bottom: 56px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  text-align: center;
}
@media screen and (max-width: 1030px) {
  .section_report .block_report_title_bg .thankyou {
    margin-top: -20px;
  }
}
@media screen and (max-width: 800px) {
  .section_report .block_report_title_bg {
    padding-top: 0;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .section_report .block_report_title_bg .thankyou {
    font-size: 5vw;
    font-weight: bold;
    padding: 4vw 0vw 0;
    margin: 0 auto;
    margin-top: 10vw;
    border-radius: 0;
    border-bottom: solid 2px #fff;
  }
  .section_report .block_report_title_bg .thankyou .copy {
    bottom: 74%;
    color: #ccc;
    font-weight: normal;
    width: 120%;
    font-size: 2.7vw;
  }
}
.section_report .headline {
  background: linear-gradient(to bottom, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
  padding: 50px;
  padding-top: 100px;
  position: relative;
  z-index: 2;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_report .headline .title {
  border-bottom: solid 2px #fff;
}
.section_report .headline .block_report_title_bg {
  padding-top: 0;
  margin-top: -3vw;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .section_report .headline {
    padding: 5vw;
    padding-top: 8vw;
  }
}
.section_report .txt_block_report {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_report .txt_block_report .txt {
  margin-top: 50px;
}
@media screen and (max-width: 800px) {
  .section_report .txt_block_report .txt {
    margin-top: 10vw;
  }
}

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

	section_after_talk

===============================================================*/
.section_after_talk {
  /* for SP */
  /*===============================================================
  	content_report
  ===============================================================*/
  /*===============================================================
  	interview_wrp
  ===============================================================*/
}
.section_after_talk .content_talk {
  text-align: center;
  margin-top: 30px;
}
.section_after_talk .talk_title {
  text-align: center;
  font-size: 25px;
  color: #fff;
  border-radius: 50px;
  padding: 5px 20px;
  display: inline-block;
  margin: 0 auto;
  background: #B92A23;
}
@media screen and (max-width: 800px) {
  .section_after_talk .content_talk {
    margin-top: 5vw;
  }
  .section_after_talk .talk_title {
    font-size: 5vw;
    border-radius: 5vw;
  }
}
.section_after_talk .content_report {
  border: solid 2px #fff;
  background: #000;
  padding: 30px;
  border-radius: 30px;
  position: relative;
  z-index: 2;
}
.section_after_talk .content_report::before, .section_after_talk .content_report::after {
  content: "";
  position: absolute;
}
.section_after_talk .content_report::before {
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #000;
  z-index: 2;
}
.section_after_talk .content_report::after {
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #fff;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .section_after_talk .content_report {
    padding: 5vw;
    border-radius: 5vw;
    margin-top: 0vw;
  }
}
.section_after_talk .interview_wrp {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      .left_wrp,.right_wrp
  ===============================================================*/
  /*===============================================================
      name_wrp
  ===============================================================*/
  /*===============================================================
      left_wrp
  ===============================================================*/
  /*===============================================================
      right_wrp
  ===============================================================*/
  /*===============================================================
      popbox
  ===============================================================*/
  /*===============================================================
      popbox_left
  ===============================================================*/
  /*===============================================================
      popbox_right
  ===============================================================*/
}
.section_after_talk .interview_wrp .left_wrp, .section_after_talk .interview_wrp .right_wrp {
  margin-top: 20px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 800px) {
  .section_after_talk .interview_wrp .left_wrp, .section_after_talk .interview_wrp .right_wrp {
    position: relative;
    margin-top: 10vw;
  }
}
.section_after_talk .interview_wrp .name_wrp {
  display: inline-block;
  width: 150px;
  vertical-align: top;
  text-align: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_after_talk .interview_wrp .name_wrp .face {
  width: 150px;
  height: 150px;
  border-radius: 50% 50%;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
  overflow: hidden;
}
.section_after_talk .interview_wrp .name_wrp .name_tag {
  color: #000;
  font-weight: bold;
  margin-top: 5px;
}
@media screen and (max-width: 800px) {
  .section_after_talk .interview_wrp .name_wrp {
    display: block;
    width: auto;
    position: absolute;
    z-index: 10;
    top: -8vw;
  }
  .section_after_talk .interview_wrp .name_wrp .face {
    width: 16vw;
    height: 16vw;
    font-size: 3.5vw;
    line-height: 13vw;
  }
  .section_after_talk .interview_wrp .name_wrp .name_tag {
    position: absolute;
    top: 3.5vw;
    font-size: 4vw;
    width: 50vw;
    text-align: left;
    margin-top: 0;
  }
}
.section_after_talk .interview_wrp .left_wrp {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 800px) {
  .section_after_talk .interview_wrp .left_wrp .name_wrp {
    left: -5vw;
  }
  .section_after_talk .interview_wrp .left_wrp .name_tag {
    text-align: left;
    left: 18vw;
  }
}
.section_after_talk .interview_wrp .right_wrp {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 800px) {
  .section_after_talk .interview_wrp .right_wrp .name_wrp {
    right: -5vw;
  }
  .section_after_talk .interview_wrp .right_wrp .name_tag {
    text-align: right;
    right: 18vw;
  }
}
.section_after_talk .interview_wrp .popbox {
  display: inline-block;
  position: relative;
  text-align: left;
  color: #000;
  width: calc(100% - 150px - 20px);
  margin-top: 40px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      popbox_arw
  ===============================================================*/
  /*===============================================================
      popbox_body
  ===============================================================*/
}
.section_after_talk .interview_wrp .popbox .popbox_inner {
  padding: 30px;
}
@media screen and (max-width: 800px) {
  .section_after_talk .interview_wrp .popbox {
    position: relative;
    text-align: left;
    color: #000;
    width: 100%;
    z-index: 1;
    margin-top: 2vw;
  }
  .section_after_talk .interview_wrp .popbox .popbox_inner {
    padding: 5vw;
  }
}
.section_after_talk .interview_wrp .popbox .popbox_arw {
  position: relative;
  width: 50px;
  height: 50px;
  margin: 0;
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_after_talk .interview_wrp .popbox .popbox_arw:after {
  position: absolute;
  z-index: 5;
  content: "";
  margin: auto;
  left: 0;
  right: 0;
  top: -10px;
  width: 42px;
  height: 42px;
  background: #fff;
  border: solid 2px #B92A23;
  transform: rotate(45deg);
}
@media screen and (max-width: 800px) {
  .section_after_talk .interview_wrp .popbox .popbox_arw {
    display: none;
  }
  .section_after_talk .interview_wrp .popbox .popbox_arw:after {
    position: absolute;
    z-index: 5;
    content: "";
    margin: auto;
    left: 0;
    right: 0;
    top: -15px;
    width: 30px;
    height: 30px;
    background: #fff;
    transform: rotate(45deg);
    bottom: -40px;
  }
}
.section_after_talk .interview_wrp .popbox .popbox_body {
  border: solid 2px #B92A23;
  background: #fff;
  color: #000;
  border-radius: 10px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_after_talk .interview_wrp .popbox .popbox_body .title {
  font-size: 16px;
}
.section_after_talk .interview_wrp .popbox .popbox_body .read {
  font-size: 16px;
}
@media screen and (max-width: 800px) {
  .section_after_talk .interview_wrp .popbox .popbox_body .title {
    font-size: 4vw;
  }
  .section_after_talk .interview_wrp .popbox .popbox_body .read {
    font-size: 4vw;
  }
}
.section_after_talk .interview_wrp .popbox_left {
  position: relative;
  padding-right: 170px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_after_talk .interview_wrp .popbox_left .popbox_body {
  margin-left: 20px;
}
.section_after_talk .interview_wrp .popbox_left .popbox_arw {
  position: absolute;
  width: 40px;
  height: 40px;
  margin: auto;
  top: 20px;
  left: 0;
  right: auto;
  z-index: 1;
}
.section_after_talk .interview_wrp .popbox_left .popbox_arw:after {
  top: 0;
  bottom: 0;
  left: 8.9px;
  right: auto;
}
@media screen and (max-width: 800px) {
  .section_after_talk .interview_wrp .popbox_left {
    padding-right: 0;
  }
  .section_after_talk .interview_wrp .popbox_left .popbox_body {
    margin-left: 0;
  }
  .section_after_talk .interview_wrp .popbox_left .popbox_arw {
    display: none;
  }
}
.section_after_talk .interview_wrp .popbox_right {
  position: relative;
  padding-left: 170px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_after_talk .interview_wrp .popbox_right .popbox_body {
  margin-right: 20px;
}
.section_after_talk .interview_wrp .popbox_right .popbox_arw {
  position: absolute;
  width: 40px;
  height: 40px;
  margin: auto;
  top: 20px;
  left: auto;
  right: 0;
  z-index: 1;
}
.section_after_talk .interview_wrp .popbox_right .popbox_arw:after {
  top: 0;
  bottom: 0;
  left: auto;
  right: 8.8px;
}
@media screen and (max-width: 800px) {
  .section_after_talk .interview_wrp .popbox_right {
    padding-left: 0;
  }
  .section_after_talk .interview_wrp .popbox_right .popbox_body {
    margin-right: 0;
  }
  .section_after_talk .interview_wrp .popbox_right .popbox_arw {
    display: none;
  }
}

/* Base
   ========================================================================== */
#campaign_tv_sales_waku1 {
  margin: 0 auto 20px;
}

body {
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.clearText {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* Contents
========================================================================== */
#page, .container {
  color: #000;
}

.thiscontents {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.5px;
}

a {
  transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  color: #0066CC;
}

a:hover {
  color: #0099CC;
}

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

	thiscontents

===============================================================*/
.thiscontents {
  position: relative;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.thiscontents::after {
  content: "";
  position: fixed;
  z-index: -2;
  background: url(../images/bg.svg) center;
  background-position: calc(50% - 5.5px) center;
  background-size: 101px;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.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 .small {
  font-size: small;
}
.thiscontents .section {
  position: relative;
}
.thiscontents h1, .thiscontents h2, .thiscontents h3, .thiscontents h4, .thiscontents h5, .thiscontents h6 {
  font-weight: bold;
  line-height: 1.6;
}
.thiscontents dl, .thiscontents dt, .thiscontents dd {
  font-size: 18px;
  line-height: 1.8;
}
.thiscontents p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.8;
}
.thiscontents sup {
  margin: 0;
  padding: 0;
  font-size: 11px;
  line-height: 15px;
}
@media screen and (max-width: 1400px) {
  .thiscontents::after {
    left: 50%;
    transform: translateX(-3px);
    background-position: center bottom;
    background-size: 31px;
  }
  .thiscontents::before {
    content: "";
    position: fixed;
    z-index: -2;
    background: url(../images/bg.svg) center;
    background-position: calc(50% - 6px) center;
    background-size: 31px;
    bottom: 0;
    right: 50%;
    transform: translateX(-1px);
    background-position: center bottom;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1030px) {
  .thiscontents {
    padding-top: 40px;
  }
  .thiscontents::after, .thiscontents::before {
    background-size: 28px;
  }
  .thiscontents::before {
    transform: translateX(32px);
  }
  .thiscontents::after {
    transform: translateX(35px);
  }
}
@media screen and (max-width: 800px) {
  .thiscontents::after, .thiscontents::before {
    background-size: 4vw;
  }
  .thiscontents::before {
    transform: translateX(-5.65vw);
  }
  .thiscontents::after {
    transform: translateX(0.5vw);
  }
  .thiscontents p {
    font-size: 3.8vw;
    line-height: 1.6;
  }
  .thiscontents dl, .thiscontents dt, .thiscontents dd {
    font-size: 3.8vw;
    line-height: 1.8;
  }
}

/*===============================================================
	border
===============================================================*/
.border {
  position: relative;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
}
.border::after, .border::before {
  content: "";
  width: 10px;
  height: 100%;
  background: rgba(0, 0, 0, 0.07);
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
}
.border::before {
  left: 0;
}
@media screen and (max-width: 800px) {
  .border::before, .border::after {
    width: 1vw;
  }
}

.border_line {
  position: relative;
  max-width: 1300px;
  margin: auto;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
}
.border_line::after, .border_line::before {
  content: "";
  width: 1px;
  height: 100%;
  background: #e8d4b6;
  position: absolute;
  top: 0;
  z-index: 1;
  right: -1px;
}
@media screen and (max-width: 800px) {
  .border_line::after, .border_line::after {
    display: block;
    width: 0.5vw;
  }
  .border_line::after {
    display: block;
    right: -0.6vw;
  }
}

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

	fixed

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

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

	content_photo

===============================================================*/
.content_photo {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.content_photo .thumb_block img {
  width: 100%;
  height: auto;
}
.content_photo .grid_3_1 {
  width: 30.776%;
}
.content_photo .grid_3_2 {
  width: 65.339%;
}
.content_photo .grid_1_1 {
  width: 100%;
}
.content_photo .grid_2_1 {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 800px) {
  .content_photo .grid_3_1 {
    width: 33.3%;
  }
}
@media screen and (max-width: 800px) {
  .content_photo .grid_2_1 {
    width: 50%;
  }
}
@media screen and (max-width: 800px) {
  .content_photo .grid_3_1:first-child {
    width: 100%;
  }
  .content_photo .grid_3_1 {
    width: 50%;
  }
}

/*===============================================================
    l-footer
===============================================================*/
.l-footer {
  padding-top: 64px;
  margin: 0 auto 0;
  background: #fff;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}/*# sourceMappingURL=thiscontents.css.map */