@CHARSET "UTF-8";

/* ------------------------------------common */
/*body {
    color: #000;
    font-size: 14px;
    font-weight: normal;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "游ゴシック  Medium", meiryo, sans-serif;
    letter-spacing: 1px;
    line-height: 1.6;
    background-color: #000;
	background-image: url("../img/img_background.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	background-attachment: fixed;
	overflow-x: hidden;
}*/

@media screen and (max-width: 768px) {
   /* body::before {
        content: "";
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-image: url(../img/site-bg-sp.jpg);
        background-repeat: no-repeat;
        background-position: top center;
        background-size: cover;
        z-index: -1;
    }*/
}


/* アニメーションの定義 */
@keyframes sway {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(2deg); }
  50% { transform: rotate(0deg); }
  75% { transform: rotate(-2deg); }
  100% { transform: rotate(0deg); }
}

.sway-random {
  animation-name: sway;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.scroll-animation-item {
  opacity: 0;
  transform: translateX(-100%); /* 左からスライドさせる場合 */
  transition: opacity 1s ease-out, transform 1s ease-out; /* アニメーションの設定 */
}

.scroll-animation-item.from-right {
  transform: translateX(100%); /* 右からスライドさせる場合 */
}

/* 左斜め上からスライドイン */
.from-top-left {
  transform: translateX(-100%) translateY(-50px) rotate(-5deg); /* Y軸をマイナスに設定 */
}

/* 右斜め上からスライドイン */
.from-top-right {
  transform: translateX(100%) translateY(-50px) rotate(5deg); /* Y軸をマイナスに設定 */
}

/* 左斜め下からスライドイン */
.from-bottom-left {
  transform: translateX(-100%) translateY(50px) rotate(-5deg); /* Y軸の移動と回転を追加 */
}

/* 右斜め下からスライドイン */
.from-bottom-right {
  transform: translateX(100%) translateY(50px) rotate(5deg);
}

/* アニメーション後の状態 */
.scroll-animation-item.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0) rotate(0);
}


/* ブラックアウト画面のスタイル */
#landscape-warning {
    display: none; /* 初期状態では表示しない */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    color: white;
    text-align: center;
    padding-top: 50%;
    font-size: 24px;
    z-index: 1000; /* 画面の最前面に表示 */
}
#landscape-warning p{
    position: absolute;
    top: 0;
    left: 0;
	right:0;
	bottom:0;
    color: white;
    text-align: center;
    font-size: 24px;
    z-index: 1100; /* 画面の最前面に表示 */
}

.loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-image:url("../img/img_loading.jpg");
  background-repeat: no-repeat;
  background-position: 100% 88%;
  background-size: cover;
  z-index: 100000;
}

.loading__img {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -90px;
  margin: auto;
}

.loading__img img {
	width: 100%;
	height: auto;
}

.loading__title {
  width: 380px;
  height: auto;
  position: absolute;
  left: 156px;
  bottom: 40%;
  margin: auto;
}

.loading__title img {
	width: 100%;
	height: auto;
}

.loading__cha {
  width: 400px;
  height: auto;
  position: absolute;
  right: 90px;
  bottom: 0%;
  margin: auto;
}

.loading__cha img {
	width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
		.loading__img {
		  width: 200px;
		  height: 200px;
		  position: absolute;
		  left: 0;
		  right: 0;
		  bottom: -90px;
		  margin: auto;
		}

		.loading__img img {
			width: 50%;
			height: auto;
			margin: 0 auto;
		}

		.loading__title {
		  width: 80vw;
		  height: auto;
		  position: absolute;
		  left: 0;
		  right: 0;
		  top: 30%;	
		  bottom: 0;
		  margin: auto;
		}

		.loading__title img {
			width: 100%;
			height: auto;
		}

		.loading__cha {
		  width: 67vw;
		  height: auto;
		  position: absolute;
		  left: 38%;
		  right: 0;	
		  bottom: 5%;
		  margin: auto;
		}

		.loading__cha img {
			width: 100%;
			height: auto;
		}
}

html {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  font-family: ryo-text-plusn,serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}

body.fixed {
  background: #fff;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

body:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../img/img_background.jpg");
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.page {

  }

/*@media screen and (min-width:769px) and ( max-width:1280px) {
    .fixed {
        min-width: 1280px;
    }
}

@media screen and (min-width:769px) and ( max-width:1280px) {
    .wrapp {
        width: 1280px;
        overflow-x: hidden;
    }
}*/

/*a:hover{
	opacity: 0.9;
	cursor:pointer;
	z-index: 200;
}*/


#nav_pc {
    background: #5D2B00;
    opacity: 0.86;
    position: relative;
    z-index: 2;
    border-bottom: 4px solid #E5CA71;
}

@media screen and (max-width: 768px) {
    #nav_pc {
        display: none;
    }
}

#nav_pc ul{
    display: flex;
    font-size: 22px;
    padding: 6px 0;
    text-align: center;
    margin: 0 auto;
    width: 740px;
    justify-content: space-between;
}

#nav_pc ul li{
    list-style: none;

}

#nav_pc ul a{
    color: #fff;
    text-decoration: none;
}

#movie {
    position: fixed;
    top: 0;
    left: 50%;
    right: 0;
    bottom: 0;
    text-align: center;
    max-width: 1920px;
    min-height: 100%;
    margin-left: -960px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1041;
}

header nav {
    width: 321px;
    position: fixed;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    left: 50%;
	right:50%;
    text-align: center;
    margin-top: 60px;
    display: none ;
    z-index: 9999;
}

@media screen and (max-width: 768px) {
    header nav {
        width: 250px;
        margin-top: 50px;
    }
}

header nav .nav_list {
    margin-bottom: 34px;
}

header nav .nav_list li {
    text-align: center;
    margin-top: 13px;
}

header nav .nav_list li a {
    font-family: ryo-text-plusn,serif;
    font-weight: 500;
    font-style: normal;
    color: #4a0202;
    text-decoration: none;
    font-size: 26px;
}

@media screen and (max-width: 768px) {
    header nav .nav_list li a {
        font-size: 20px;
    }
}

header a {
    transition: all .5s ease;
}

header a:hover {
    opacity: .7;
}

header .menu-title {
    text-align: center;
    display: block;
}

header .menu-title img {
    width: 230px;
}

@media screen and (max-width: 768px) {
    header .menu-title img {
        width: 75%;
    }
}

.entry_list {
    display: flex;
    justify-content: space-between;
    margin: 12px 0 37px;
}

header nav .entry_list .mail {
    width: 133px;
}

@media screen and (max-width: 768px) {
    header nav .entry_list .mail {
        width: 41%;
    }
}

header nav .entry_list .line {
    width: 83px;
}

@media screen and (max-width: 768px) {
    header nav .entry_list .line {
        width: 25%;
    }
}

header nav .entry_list .twitter {
    width: 83px;
}

@media screen and (max-width: 768px) {
    header nav .entry_list .twitter {
        width: 25%;
    }
}

header nav .entry_list img {
    width: 100%;
    height: auto;
}

header nav .share_list {
    display: flex;
    justify-content: space-between;
    width: 265px;
    margin: 12px auto 37px;
}

@media screen and (max-width: 768px) {
    header nav .share_list {
        width: 82%;
    }
}

header nav .share_list .item {
    width: 83px;
}

@media screen and (max-width: 768px) {
    header nav .share_list .item {
        width: 31%;
    }
}

header nav .share_list img {
    width: 100%;
    height: auto;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/img_background2.jpg");
	background-size: cover;
    background-repeat: no-repeat;
    display: none;
    z-index: 1041;
}

@media screen and (max-width: 768px) {
    .overlay {
/*        background-size: 550px;
        background-position: -230px 190px;*/
    }
}

.menu-btn {
    position: fixed;
    top: 20px;
    left: 50%;
    margin-left: 390px;
    z-index: 30;
    display: none;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .menu-btn {
        right: 10px;
        left: auto;
        z-index: 1041;
        display: none;
    }
}

.menu-btn img {
    width: 85px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .menu-btn img {
        width: 50px;
    }
}

footer {
    position: relative;
    padding-top: 30px;
    padding-bottom: 70px;
    background-color: rgba(93,43,0,.86);
    z-index: 11;
    font-size: 18px;
    font-family: ryo-text-plusn,serif;
    font-weight: 500;
    font-style: normal;
}

@media screen and (max-width: 768px) {
    footer {
        font-size: 20px;
        line-height: 190%;
    }
}

footer ul {
    margin-left: auto;
    margin-right: auto;
    margin-bottom:1em;
    display: flex;
	flex-direction: row;
}

@media screen and (max-width: 768px) {
    footer ul {
        direction: block;
        margin-bottom:20px;
		display: flex;
		flex-direction: column;
    }
}

footer ul li {
    text-align: center;
    padding-left: 20px;
    display: table-cell;
}

@media screen and (max-width: 768px) {
    footer ul li {
        text-align: center;
        padding-left: 20px;
        display: block;
    }
}

footer ul li a {
    color: #FFF;
    text-decoration: none;
}

footer ul li a:hover {
    color: #F00;
}

footer small {
    color: #909090;
    text-align: center;
    display: block;
}

@media screen and (max-width: 768px) {
    footer small {
        color: #FFF;
		font-size: 1rem;
    }
}

footer small a {
    color: #FFF;
    text-decoration: none;
}

footer small a:hover {
    color: #F00;
    text-decoration: underline;
}
@media screen and (max-width: 768px) {
    .body_index footer {
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 768px) {
    .contact-fixed {
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        background-color: rgba(0,0,0,.8);
        z-index: 99;
        padding: 10px;
        box-sizing: border-box;
        transition: opacity .5s ease;
        opacity: 0;
        display: block !important;
    }
}

.contact-fixed.off,
.contact-fixed.on {
    opacity: 0 !important;
    display: none;
}

@media screen and (max-width: 768px) {
    .contact-fixed.off {
        opacity: 0 !important;
    }

    .contact-fixed.on {
        opacity: 1 !important;
    }

    .contact-fixed .box-table {
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .contact-fixed img {
        width: 100%;
    }

    .contact-fixed .box-left {
        padding-right: 5px;
    }

    .contact-fixed .box-right {
        padding-left: 5px;
    }
}

.clear-both {
    clear: both;
}

.page-top {
    position: fixed;
    right: 50%;
    margin-right: -570px;
    bottom: 10px;
    z-index: 99;
    display: none;
}

@media screen and (max-width: 768px) {
    .page-top {
        right: 10px;
        bottom: 100px;
        margin-right: 0;
    }
}

.page-top img {
    width: 80px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .page-top img {
        width: 50px;
    }
}

.policy {
    margin-top: 100px;
}

/*
=================
その他プロパティ
=================
*/


.box-table {
    display: table;
}

.box-left {
    display: table-cell;
}

.box-center {
    display: table-cell;
}

.box-right {
    display: table-cell;
}

.valign-top {
    vertical-align: top;
}

.valign-middle {
    vertical-align: middle;
}

.valign-bottom {
    vertical-align: bottom;
}

.talign-left {
    text-align: left;
}

.talign-center {
    text-align: center;
}

.talign-right {
    text-align: right;
}

.reflection {
    position: relative;
    display: block;
    overflow: hidden;
}
.reflection :after {
    position: absolute;
    top: -100px;
    left: 0;
    width: 10%;
    height: 100%;
    background-color: rgba(255, 253, 243, .7);
    content: "";
    opacity: 0;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-animation: reflection 3s ease-in-out infinite;
       -moz-animation: reflection 3s ease-in-out infinite;
        -ms-animation: reflection 3s ease-in-out infinite;
         -o-animation: reflection 3s ease-in-out infinite;
            animation: reflection 3s ease-in-out infinite;
}

/*追記　ボタン反射*/
@keyframes reflection {
    0% {
        opacity: 0;
        transform: scale(0) rotate(45deg);
    }
    80% {
        opacity: .5;
        transform: scale(0) rotate(45deg);
    }
    81% {
        opacity: 1;
        transform: scale(4) rotate(45deg);
    }
    100% {
        opacity: 0;
        transform: scale(50) rotate(45deg);
    }
}

@-webkit-keyframes reflection {
    0% {
        opacity: 0;
        -webkit-transform: scale(0) rotate(45deg);
    }
    80% {
        opacity: .5;
        -webkit-transform: scale(0) rotate(45deg);
    }
    81% {
        opacity: 1;
        -webkit-transform: scale(4) rotate(45deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(50) rotate(45deg);
    }
}

@-moz-keyframes reflection {
    0% {
        opacity: 0;
        -moz-transform: scale(0) rotate(45deg);
    }
    80% {
        opacity: .5;
        -moz-transform: scale(0) rotate(45deg);
    }
    81% {
        opacity: 1;
        -moz-transform: scale(4) rotate(45deg);
    }
    100% {
        opacity: 0;
        -moz-transform: scale(50) rotate(45deg);
    }
}

@-ms-keyframes reflection {
    0% {
        opacity: 0;
        -ms-transform: scale(0) rotate(45deg);
    }
    80% {
        opacity: .5;
        -ms-transform: scale(0) rotate(45deg);
    }
    81% {
        opacity: 1;
        -ms-transform: scale(4) rotate(45deg);
    }
    100% {
        opacity: 0;
        -ms-transform: scale(50) rotate(45deg);
    }
}

@-o-keyframes reflection {
    0% {
        opacity: 0;
        -o-transform: scale(0) rotate(45deg);
    }
    80% {
        opacity: .5;
        -o-transform: scale(0) rotate(45deg);
    }
    81% {
        opacity: 1;
        -o-transform: scale(4) rotate(45deg);
    }
    100% {
        opacity: 0;
        -o-transform: scale(50) rotate(45deg);
    }
}

.flex {
    display: flex;
    justify-content: space-between;
}

/* ------------------------------------contents */

/*
===================
共通スタイル
===================
*/
body {
    overflow-x: hidden;
}

.site-width {
    position: relative;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
	text-align: center;
}

@media screen and (max-width: 768px) {
    .site-width {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .site-width.sec01 {
        padding: 0;
    }
}

.dl_box{

}

.dl_box .dl_list {
	display: block;
}

.dl_box .dl_list li {
	width: 100%;
	margin: 20px 0;
}

.dl_box .dl_list li img {
	width: 62%;
}

/*
===================
ページトップ
===================
*/


	#section00 {
		margin: 0 auto;
		padding-bottom: 72px;
		height: 700px;
	}

	@media screen and (max-width: 768px) {
	#section00 {
		z-index: 10;
		height: calc(100vw / 0.6);
	}
	.sec00 {

	}
}
	#section00 .logo-img {
		position: absolute;
		top:-10px;
		left: 0;
	}

	@media screen and (max-width: 768px) {
		#section00 .logo-img {
		position: absolute;
		top:-20px;
		left:15%;
		right:15%;
		}

	}
	#section00 .right-container {
		position: absolute;
		width: 900px;
		height: auto;
		top: 147px;
		left: 10%;
		right:50%;

	}
	#section00 .left-container {
		position: absolute;
		height: auto;
		top:680px;
		right:36%;
	}

	@media screen and (max-width: 768px) {
		#section00 .right-container {
			position: absolute;
			width: 96vw;
			height: auto;
			top: 26px;
			left: 0vw;

		}
		#section00 .left-container {
			position: absolute;
			width: 75vw;
			height: auto;
			top: calc(100vw / 1.5);
			left: 12%;

		}

	}

	#section00 .top-img .thanks-img {
		position: absolute;
		bottom:0px;
	}

	#section00 .logo-img img {
		max-width: 250px;
	}

	#section00 .bnr_box {
		position: absolute;
		top:8%;
	}

	#section00 .bnr_box img {
		max-width: 250px;
	}

	@media screen and (max-width: 768px) {
			#section00 .bnr_box {
			position: absolute;
			top:calc(100vw / 0.9);
			right: 0;
			left:0;
		}	

		#section00 .bnr_box img {
			max-width: 100vw;
		}
	}

	.sec00 img{
		width: 100%;
		height: auto;
	}



/*
===================
section01
===================
*/
#section01 {
    height: 0px;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 768px) {
    #section01 {
        height: auto;
        padding-bottom: 0;
    }
}

.sec01 {
    height: 0;
}

@media screen and (max-width: 768px) {
    .sec01 {
        height: auto;
        margin-top: 3%;
    }
}

#section01 .logo {
    position: absolute;
    bottom:-50px;
    left: 160px;
}

@media screen and (max-width: 768px) {
    #section01 .logo {
        position: static;
        margin-top: 43%;
        margin-bottom: 20px;
    }
}

#section01 .logo img {
    width: 700px;
    height: auto;
}

@media screen and (max-width: 768px) {
    #section01 .logo img {
        width: 96%;
        padding: 0 2%;
    }
}

@media screen and (max-width: 768px) {
    .sp-title img {
        width: 96%;
        padding: 0 2%;
    }
}

#section01 .item01 {
    padding-bottom: 5px;
    flex: none;
}

@media screen and (max-width: 768px) {
    #section01 .item01 {
        order: 2;
    }

}
#section01 .bnr_box {
display: flex;
flex-direction: column;
position: absolute;
width: 300px;
top: 40px;
left: 26%;
}

#section01 .item02 {
    padding-bottom: 5px;
}


@media screen and (max-width: 768px) {
    #section01 .bnr_box {
        width: 96%;
        padding: 2%;
        position: static;
        background-color: rgba(0,0,0,.75);
    }
	.bnr_box .slider_movie {
/*  	width: 600px;*/
    height: 200px;
	}

}

#section01 .bnr_box img {
    width: 100%;
    margin-bottom: 5px;
}



@media screen and (max-width: 768px) {
    .youtube-sp {
    height: 75vw;
    }

}
.bnr_box .slider_movie2 {
  	width: 600px;
    height: 200px;
}


.bnr_box .slick-prev {
    width: 70px;
    height: 140px;
    top: 65%;
    left: 0;
    margin-left: -149px;
}

.bnr_box .slick-next {
    width: 70px;
    height: 140px;
    top: 65%;
    right: 0;
    margin-right: -150px;
}



#section01 .form-box {
    z-index: 10;
}

#section01 .form-box .flex_box {
    display: flex;
    justify-content: space-between;
}

#section01 .form-box .flex_box a {
    width: 146px;
    display: block;
}

@media screen and (max-width: 768px) {
    #section01 .form-box .flex_box a {
        width: 49%;
    }
}

#section01 .form-box .flex_box a img {
    width: 100%;
}

#section01 .form-box .box-left {
    padding-top: 5px;
}

#section01 .sec01-r-box {
    width: 300px;
    border:3px solid #E5CA71;
    background: #fff;
    text-align: center;
    padding: 10px 0 0;
}
@media screen and (max-width: 768px) {
    #section01 .sec01-r-box {
        width: 100%;
        background: transparent;
        border:none;
    }
}

#section01 .bnr_box .sec01-r-icon {
    width: 92px;
    margin:0 auto;
}

@media screen and (max-width: 768px) {
    #section01 .bnr_box .sec01-r-icon {
        display: none;
    }
    #section01 .bnr_box .item01 {
        display: none;
    }
}

#section01 .form-box .sec01-r-box .flex_box {
    padding: 5px 3px;
}

/*
===================
bnr-flex-box
===================
*/
.bnr-flex-box {
    z-index: 50;
    position: relative;
}

.bnr-flex-box ul{
    display: flex;
    width: 1200px;
    list-style: none;
    justify-content: space-between;
    margin:0 auto;
}
.bnr-flex-box li img{
    width: 225px;
    height: auto;
	margin-top: 150px;
}

@media screen and (max-width: 768px) {
    .bnr-flex-box {
        border:none;
        overflow: hidden;
        width:100%;
        padding: 20px 0 10px;
    }
    .bnr-flex-box ul{
        width: 100%;
        padding-bottom:0;
    }

    .bnr-flex-box li img{
        margin:0 auto;
        width: 100%;
    }
    .bx-viewport{
        overflow:visible!important; /* 両サイドに前後の画像を表示させる */
        width: 96%;              /* 画像の幅（表示させる幅） */
        margin: 0 auto;             /* 画面中央にする */
    }
    .bnr-flex-box .slick-prev {
        left: 0;
        margin-left: -2%;
        width: 26px;
        height: 44px;
    }
    .bnr-flex-box .slick-next {
        right: 0;
        margin-right: -2%;
        width: 26px;
        height: 44px;
    }
}

/*
.bnrslider-wrapper {
    background: #000;
    padding: 20px;
    z-index: 10;
    position: relative;
    border-top: 2px solid #E5CA71;
    border-bottom: 2px solid #E5CA71;
}

@media screen and (max-width: 768px) {
    .bnrslider-wrapper {
      overflow: hidden;
      z-index: 100;
      padding: 0;
    }

    .bnrslider {
      position: relative;
      left: 3.5vw;
      overflow: visible !important;
    }

    .bnrslide {
      width: 90vw !important;
    }

    .bnrslider-wrapper {
      box-shadow: none;
      border: none;
      margin: 0;
    }
}
*/


/*
===================
section02
===================
*/

#section02 {
	margin: 0 auto;
	padding: 10px 0;
	background-image: url("../img/sec02-bg01.jpg");
	background-size: cover;
	overflow: hidden;
    border-top: 2px solid #E5CA71;
    border-bottom: 2px solid #E5CA71;
}

@media screen and (max-width: 768px) {
	#section02 {
	display: none;
	}
	#section02 .sec02 .sp-img {
		width: 100%;
		height: auto;
    }
}


#section02 #menu_cha01 {
 	position:absolute;
	top:-13px;
	z-index: -10;
}
#section02 #menu_cha01 img {
 	max-width: 200px;
	margin-left: 20px;
}
#section02 #menu_cha02 {
 	position:absolute;
	top: 0px;
	right: -10px;
	z-index: -10;	
}
#section02 #menu_cha02 img {
 	max-width: 170px;
	margin-left: 20px;
}



#particles-js{
	height: 100%;
	position: relative;
	z-index: 1;
	
}
#section02 h1 {
	text-align: center;
	margin-top: 50px;
	display: block;
	position: absolute; 
	left: 50%;
	transform: translateX(-50%);
}
.sec02-bg {
	width: 100%;
	position: absolute;
	top: 253px;
	left: 50%;
	margin-left: -550px;
	z-index: 10;
}
.sec02items01 {
	width: 500px;
	position: absolute;
	color: #ffffff;
	margin-top: 255px;
	right: 55px;
	z-index: 15;
}
.sec02item01 {
}
.sec02items01 .text01 {
	width: 411px;
	color: #ffeebb;
	font-size: 18px;
	line-height: 1.6;
	margin-top: 10px;
}
.sec02items01 span {
	font-size: 14px;
/* 	display: block; */
}

@media screen and (max-width: 768px) {
	.sec02items03 {
		text-align: center;
/*		position: absolute;*/
		top: 50px;
		left: 0;
		right: 0;
		z-index: 20;
	}
	.sec02items03 .sec02itpc {
		display:flex;
		justify-content: center;
	}
}

.sec02items03 {
	text-align: center;
	top: 50px;
	left: 0;
	right: 0;
	z-index: 20;
}

.sec02items03 .sec02itpc {
	display:flex;
	justify-content: center;
}

.sec02items03 .sec02itsp li img {
	width: 100%;
	height: auto;
}

.sec02items03 h2 {
	display: block;
}


.sec02items03 ul li {
	margin: 5px;
	border-radius: 5px;
	list-style: none;
}

.sec02items03 ul li a {

}

.sec02items03 ul li a .tw_button {
	width : 50% !important;
	position:relative;
	top:-50px;
}

.sec02items03 ul li a img {
	width: 100%;
	max-width: 600px;
	border-radius: 5px;
}


@media screen and (max-width: 768px) {
		.sec02items04 {
		text-align: justify;
		margin: 1em 0 1em 0;
		font-size: 1.3rem;
		color: white;
		z-index: 10;
	}

}



.sec02items04 {
	margin: 1em auto;
	font-size: 1.5rem;
	color: white;
	z-index: 10;
}




/*
#section02 {
    position: relative;
    z-index: 10;
    padding: 163px 0 150px;
    overflow-x: hidden;
    background-color: rgba(0,0,0,.75);
}

@media screen and (max-width: 768px) {
    #section02 {
        padding: 24px 0 10px;
    }
}

#section02 .ttl {
    width: 475px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#section02 .questionnaire {
    background-color:white;
	max-width:475px;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 2;
}


@media screen and (max-width: 768px) {
    #section02 .ttl {
        width: 100%;
    }
}

#section02 .ttl .ttl_bg {
    width: 100%;
    height: auto;
}


#section02 .ttl .ttl_txt {
    width: 142px;
    height: auto;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
    #section02 .ttl .ttl_txt {
        width: 28%;
        right: 5%;
    }
}

#section02 .twitter_box {
    width: 475px;
    position: relative;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    #section02 .twitter_box {
        width: 100%;
    }
}

#section02 .twitter_box .twitter {
    width: 100%;
    height: 580px;
    background-color: #fff;
    border: solid 5px #E5CA71;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    #section02 .twitter_box .twitter {
        height: 406px;
    }
    #section02 .twitter_box .twitter iframe {
        height: 360px !important;
    }
}

#section02 .twitter_box .img_left {
    position: absolute;
    left: -375px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 1;
}

#section02 .twitter_box .img_right {
    position: absolute;
    right: -363px;
    z-index: 1;
    top: 0;
    bottom: 0;
    margin: auto 0;
}*/


@media screen and (max-width: 768px) {
    .youtube-sp {
    display: block;
    }
    .youtube-sp img{
        width: 100%;
        margin-top: 26px;
    }
    .youtube-sp .slick-prev {
    width: 38px;
    height: 70px;
    }
    .youtube-sp .slick-next {
    width: 38px;
    height: 70px;
    }
}
/*
===================
section03
===================
*/
#section03 {
	margin: 0 auto;
	background-image:url("../img/sec02-bg01.jpg");
	background-repeat: repeat;
	overflow: hidden;
	z-index: 10;
}

#section03 img{
	margin-top: 30px;
}

@media screen and (max-width: 768px) {
	#section03 {
		margin: 0 auto;
		background-color: rgba(0, 0, 0, 0.8);
		overflow: hidden;
		z-index: 10;
	}
	#section03 .sec03 .sp-img {
		width: 100%;
		height: auto;
    }
}

#section03 h1 {
    text-align: center;
    padding-top: 25px;
    position: relative;
    z-index: 15;
}

#section03 h1 img {
    width: 978px;
}

@media screen and (max-width: 768px) {
    #section03 h1 img {
        width: 100%;
    }
}

#section03 .sec03-bg {
    width: 100%;
    position: absolute;
    top: 100px;
    left: -30px;
    z-index: 10;
}

#section03 .item_box {
    width: 511px;
    position: absolute;
    color: #ffffff;
    margin-top: 50px;
    right: 0;
    z-index: 15;
}

@media screen and (max-width: 768px) {
    #section03 .item_box {
        width: 100%;
        position: static;
        margin-top: 0;
    }
}

#section03 .item_box h2 img {
    width: 100%;
}

#section03 .item_box .item_01 img {
    width: 100%;
    height: auto;
}

#section03 .item_box .text01 {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.6;
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    #section03 .item_box .text01 {
        font-size: 15px;
    }
}

#section03 .item_box span {
    font-size: 14px;
/*  display: block; */
}

/*
===================
section04
===================
*/
#section04 {
	background-image:url("../img/sec02-bg01.jpg");
	background-repeat: repeat;
	overflow: hidden;
    position: relative;
    z-index: 10;
    padding-bottom: 168px;
    overflow-x: hidden;
	overflow-y: hidden;
}

#section04 .btn_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 20;
}

#section04 .lead {
    padding-bottom: 27px;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 768px) {
	#section04 {
    background-color: rgba(0,0,0,0.8);
    background-size: cover;
    position: relative;
    z-index: 10;
    padding-bottom: 78px;
    overflow-x: hidden;
	overflow-y: hidden;
	}
    #section04 .lead {
        padding-bottom: 10px;
    }
}

#section04 .lead p {
    font-size: 20px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    #section04 .lead p {
        font-size: 15px;
		text-align: justify;
		color: #fff;
		margin: 20px;
    }
}

#section04 .bg_01 {
    position: absolute;
    top: -86px;
    right: -349px;
    z-index: -1;
	width: 79%;
}

#section04 .bg_02 {
    position: absolute;
    top: 318px;
    left: -132px;
    z-index: 19;
	width:62%;
}

#section04 h1 {
    text-align: center;
    display: block;
    z-index: 20;
    position: relative;
    padding-bottom: 23px;
    width: 350px;
    margin: 50px auto 0px;
}

@media screen and (max-width: 768px) {
    #section04 h1 {
        width: 100%;
        padding-bottom: 7px;
    }
}

#section04 h1 img {
    width: 100%;
}

#section04 .slider01 {
    position: relative;
    width: 100%;
    z-index: 20;
}

@media screen and (max-width: 768px) {
    #section04 .slider01 {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        position: static;
    }
}

#section04 .slider01 ul {
    left: 50%;
    margin-left: -191px;
}

#section04 .slider01 li img {
    width: 382px;
    height: auto;
}

@media screen and (max-width: 768px) {
    #section04 .slider01 ul {
        margin-left: -171px;
    }
    #section04 .slider01 li {
        padding: 0 10px;
        box-sizing: border-box;
    }
    #section04 .slider01 li img {
        margin-left: 10px;
    }
}


/*
===================
section05
===================
*/


.slide-top {
    position: absolute;
    z-index: 11;
}

.slide-bg {
    position: absolute;
    z-index: 10;
}

.slider02 {
    position: absolute;
    width: 100%;
    top: 230px;
    /*  left: 0; */
    z-index: 20;
}


.slider-box {
    position: relative;
    top: 0px;
}

@media screen and (max-width: 768px) {
    .slider-box {
        top: 0;
		height:300px;
    }
}

.slider-box li {
    position: relative;
    width: 768px !important;
/*    height: 806px;*/
    height: 1306px;
    left: 50%;
    margin-left: -384px;
    /*  border: 1px solid #ffffff; */
}

@media screen and (max-width: 768px) {
    .slider-box li {
        width: 100% !important;
        height: calc(100vw / 0.6);
        margin-left: 0;
        left: 0;
    }
}

.slick-track {
    height: 841px;
}
@media screen and (max-width: 768px) {
    .slick-track {
        height: auto;
    }
}

.slick-slider {
    padding-bottom: 30px;
}

/*å·¦å³ã®çŸ¢å°ã®ä½ç½®ã‚’å¤‰ãˆã‚‹*/
@keyframes arrow_prev_slick {
    0% {
        left: 25.5%;
    }
    50% {
        left: 25%;
    }
    100% {
        left: 25.5%;
    }
}

@keyframes arrow_next_slick {
    0% {
        right: 25.5%;
    }
    50% {
        right: 25%;
    }
    100% {
        right: 25.5%;
    }
}

@media screen and (max-width: 1750px) {
    @keyframes arrow_prev_slick {
        0% {
            left: 20.5%;
        }
        50% {
            left: 20%;
        }
        100% {
            left: 20.5%;
        }
    }

    @keyframes arrow_next_slick {
        0% {
            right: 20.5%;
        }
        50% {
            right: 20%;
        }
        100% {
            right: 20.5%;
        }
    }
}
@media screen and (max-width: 1500px) {
    @keyframes arrow_prev_slick {
        0% {
            left: 15.5%;
        }
        50% {
            left: 15%;
        }
        100% {
            left: 15.5%;
        }
    }

    @keyframes arrow_next_slick {
        0% {
            right: 15.5%;
        }
        50% {
            right: 15%;
        }
        100% {
            right: 15.5%;
        }
    }
}
@media screen and (max-width: 1300px) {
    @keyframes arrow_prev_slick {
        0% {
            left: 10.5%;
        }
        50% {
            left: 10%;
        }
        100% {
            left: 10.5%;
        }
    }

    @keyframes arrow_next_slick {
        0% {
            right: 10.5%;
        }
        50% {
            right: 10%;
        }
        100% {
            right: 10.5%;
        }
    }
}

@media screen and (max-width: 768px) {
    @keyframes arrow_prev_slick {
        0% {
            left: 0.5%;
        }
        50% {
            left: 1%;
        }
        100% {
            left: 0.5%;
        }
    }

    @keyframes arrow_next_slick {
        0% {
            right: 0.5%;
        }
        50% {
            right: 1%;
        }
        100% {
            right: 0.5%;
        }
    }
}
.slick-next {
    width: 58px;
    height: 100px;
    text-indent: -99999px;
    position: absolute;
    top: 21%;
    right: 25%;
    z-index: 100;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    background-image: url(../img/site-arrow-right.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    outline: none;
    animation: arrow_next_slick 1s infinite;
    cursor: pointer;
}
@media screen and (max-width: 1750px) {
    .slick-next {
        right: 20%;
    }
}
@media screen and (max-width: 1500px) {
    .slick-next {
        right: 15%;
    }
}
@media screen and (max-width: 1300px) {
    .slick-next {
        right: 10%;
    }
}
@media screen and (max-width: 768px) {
    .slick-next {
        width: 45px;
        height: 78px;
        right: 1%;
        top: 45%;
        transform: translateY(-50%);
    }
}
.slick-prev {
    width: 58px;
    height: 100px;
    text-indent: -99999px;
    position: absolute;
    top: 21%;
    left: 5%;
    z-index: 100;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    background-image: url(../img/site-arrow-left.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    outline: none;
    animation: arrow_prev_slick 1s infinite;
    cursor: pointer;
}
@media screen and (max-width: 1750px) {
    .slick-prev {
        left: 20%;
    }
}
@media screen and (max-width: 1500px) {
    .slick-prev {
        left: 15%;
    }
}
@media screen and (max-width: 1300px) {
    .slick-prev {
        left: 10%;
    }
}
@media screen and (max-width: 768px) {
    .slick-prev {
        width: 45px;
        height: 78px;
        left: 1%;
        top: 45%;
        transform: translateY(-50%);
    }
}
.slick-item {
    width: 620px;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 11;
}
@media screen and (max-width: 768px) {
    .slick-item {
        width: 100%;
        position: static;
    }
}
.slick-text {
    position: absolute;
    bottom: 653px;
    left: 15px;
    z-index: 12;
    opacity: 0;
    width: 451px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .slick-text {
        width: 100%;
        bottom: calc(100vw / 7);
		left: 0px;
    }
}

.slick-dots {
    position: absolute;
    bottom: 300px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 0 5px 0;
    list-style: none;
    text-align: center;
    z-index: 30;
}

@media screen and (max-width: 768px) {
    .slick-dots {
        bottom: -7px;
    }
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px !important;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    left: 0 !important;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .slick-dots li {
        margin: 0;
    }
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 3px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: 'â—';
    text-align: center;
    opacity: 1;
    background-color: #C39600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 5px;
}
.slick-dots .slick-active button:before {
    opacity: 1;
    background-color: #FFE58D;
}
/*
===================
section06
===================
*/

#section06 {
	background-image:url("../img/sec02-bg01.jpg");
	background-repeat: repeat;
	overflow: hidden;
    position: relative;
    z-index: 10;
    overflow-x: hidden;
	overflow-y: hidden;
}

#section06 .btn_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 20;
}

#section06 .lead {
    padding-bottom: 27px;
    display: flex;
    justify-content: center;
}

#section06 h1 {
    text-align: center;
    display: block;
    z-index: 20;
    position: relative;
    padding-bottom: 23px;
    width: 350px;
    margin: 0 auto;
}


@media screen and (max-width: 768px) {
    #section06 .lead {
        padding-bottom: 10px;
    }
}

#section06 .lead p {
    font-size: 20px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    #section06 .lead p {
        font-size: 15px;
    }
}


#section06 .bg_01 {
    position: absolute;
    top: 35px;
    right: -381px;
    z-index: -1;
	width: 97%;
}

#section06 .bg_02 {
    position: absolute;
    top: 358px;
    left: -200px;
    z-index: 19;
}

#section06 h1 {
    text-align: center;
    display: block;
    z-index: 20;
    position: relative;
    padding-bottom: 23px;
    width: 350px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    #section06 h1 {
        width: 100%;
        padding-bottom: 7px;
    }
}

#section06 h1 img {
	margin-top: 20px;
    width: 100%;
}

#section06 .slider01 {
    position: relative;
    width: 1200px;
	z-index: 20;
	margin: 10px auto -191px;
}

@media screen and (max-width: 768px) {
    #section06 .slider01 {
        max-width: 100vw;
        margin-left: auto;
        margin-right: auto;
		margin-bottom: 0px;
        position: static;
		z-index: 20;
    }
}


#section06 .slider01 ul {
	text-align:center;
}


#section06 .slider01 li img {
    max-width: 382px;
	height: auto;
}

@media screen and (max-width: 768px) {
    #section06 .slider01 ul {
        width:100%;
    }
    #section06 .slider01 li {
        box-sizing: border-box;
    }
    #section06 .slider01 li img {
        margin: 0 auto;
    }
}


#section06 .slider3 .slick-item2 {
	margin-left: -191px;
}

#section06 .slider3 .slick-item2 img {
  position: relative;
  height: auto;
  opacity: .15;
  transform: scale(.8);
  transition: opacity .5s, transform .5s; 
  z-index: 170;
}

#section06 .slider3 .slick-center img {
  opacity: 1; 
  transform: scale(1); 
  width:382px;
  max-width:382px;
  z-index: 200;
}

#section06 .slider3 .slick-item2 a img {
	margin-top: -67px;
}

@media screen and (max-width: 768px) {
#section06 .slider3 .slick-center img {
	  position: relative;
	  opacity: 1; 
	  transform: scale(1); 
	  z-index: 200;
		width:100vw;
		max-width:97vw;
	}
		#section06 .slider2 .slick-item2 {
		position:relative;
	}
}

.slide-top {
    position: absolute;
    z-index: 11;
}

.slide-bg {
    position: absolute;
    z-index: 10;
}

.slider02 {
    position: absolute;
    width: 100%;
    top: 230px;
    /*  left: 0; */
    z-index: 20;
}


.slider-box {
    position: relative;
    top: 0px;
}

@media screen and (max-width: 768px) {
    .slider-box {
        top: 0;
		height:300px;
    }
}

.slider-box li {
    position: relative;
    width: 768px !important;
/*    height: 806px;*/
    height: 1306px;
    left: 50%;
    margin-left: -384px;
    /*  border: 1px solid #ffffff; */
}

@media screen and (max-width: 768px) {
    .slider-box li {
        width: 100% !important;
        height: calc(100vw / 0.6);
        margin-left: 0;
        left: 0;
    }
}

.slick-track {
    height: 841px;
}
@media screen and (max-width: 768px) {
    .slick-track {
        height: auto;
    }
}

.slick-slider {
    padding-bottom: 30px;
}

/*å·¦å³ã®çŸ¢å°ã®ä½ç½®ã‚’å¤‰ãˆã‚‹*/
@keyframes arrow_prev_slick {
    0% {
        left: 25.5%;
    }
    50% {
        left: 25%;
    }
    100% {
        left: 25.5%;
    }
}

@keyframes arrow_next_slick {
    0% {
        right: 25.5%;
    }
    50% {
        right: 25%;
    }
    100% {
        right: 25.5%;
    }
}

@media screen and (max-width: 1750px) {
    @keyframes arrow_prev_slick {
        0% {
            left: 20.5%;
        }
        50% {
            left: 20%;
        }
        100% {
            left: 20.5%;
        }
    }

    @keyframes arrow_next_slick {
        0% {
            right: 20.5%;
        }
        50% {
            right: 20%;
        }
        100% {
            right: 20.5%;
        }
    }
}
@media screen and (max-width: 1500px) {
    @keyframes arrow_prev_slick {
        0% {
            left: 15.5%;
        }
        50% {
            left: 15%;
        }
        100% {
            left: 15.5%;
        }
    }

    @keyframes arrow_next_slick {
        0% {
            right: 15.5%;
        }
        50% {
            right: 15%;
        }
        100% {
            right: 15.5%;
        }
    }
}
@media screen and (max-width: 1300px) {
    @keyframes arrow_prev_slick {
        0% {
            left: 10.5%;
        }
        50% {
            left: 10%;
        }
        100% {
            left: 10.5%;
        }
    }

    @keyframes arrow_next_slick {
        0% {
            right: 10.5%;
        }
        50% {
            right: 10%;
        }
        100% {
            right: 10.5%;
        }
    }
}

@media screen and (max-width: 768px) {
    @keyframes arrow_prev_slick {
        0% {
            left: 0.5%;
        }
        50% {
            left: 1%;
        }
        100% {
            left: 0.5%;
        }
    }

    @keyframes arrow_next_slick {
        0% {
            right: 0.5%;
        }
        50% {
            right: 1%;
        }
        100% {
            right: 0.5%;
        }
    }
}
.slick-next {
    width: 58px;
    height: 100px;
    text-indent: -99999px;
    position: absolute;
    top: 21%;
    right: 25%;
    z-index: 100;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    background-image: url(../img/site-arrow-right.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    outline: none;
    animation: arrow_next_slick 1s infinite;
    cursor: pointer;
}
@media screen and (max-width: 1750px) {
    .slick-next {
        right: 20%;
    }
}
@media screen and (max-width: 1500px) {
    .slick-next {
        right: 15%;
    }
}
@media screen and (max-width: 1300px) {
    .slick-next {
        right: 10%;
    }
}
@media screen and (max-width: 768px) {
    .slick-next {
        width: 45px;
        height: 78px;
        right: 1%;
        top: 45%;
        transform: translateY(-50%);
    }
}
.slick-prev {
    width: 58px;
    height: 100px;
    text-indent: -99999px;
    position: absolute;
    top: 21%;
    left: 5%;
    z-index: 100;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    background-image: url(../img/site-arrow-left.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    outline: none;
    animation: arrow_prev_slick 1s infinite;
    cursor: pointer;
}
@media screen and (max-width: 1750px) {
    .slick-prev {
        left: 20%;
    }
}
@media screen and (max-width: 1500px) {
    .slick-prev {
        left: 15%;
    }
}
@media screen and (max-width: 1300px) {
    .slick-prev {
        left: 10%;
    }
}
@media screen and (max-width: 768px) {
    .slick-prev {
        width: 45px;
        height: 78px;
        left: 1%;
        top: 45%;
        transform: translateY(-50%);
    }
}
.slick-item {
    width: 620px;
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 11;
}
@media screen and (max-width: 768px) {
    .slick-item {
        width: 100%;
        position: static;
    }
}
.slick-text {
    position: absolute;
    bottom: 653px;
    left: 15px;
    z-index: 12;
    opacity: 0;
    width: 451px;
    height: auto;
}

@media screen and (max-width: 768px) {
    .slick-text {
        width: 100%;
        bottom: calc(100vw / 7);
		left: 0px;
    }
}

.slick-dots {
    position: absolute;
    bottom: 300px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 0 5px 0;
    list-style: none;
    text-align: center;
    z-index: 30;
}

@media screen and (max-width: 768px) {
    .slick-dots {
        bottom: -7px;
    }
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px !important;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    left: 0 !important;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .slick-dots li {
        margin: 0;
    }
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 3px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: 'â—';
    text-align: center;
    opacity: 1;
    background-color: #C39600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 5px;
}
.slick-dots .slick-active button:before {
    opacity: 1;
    background-color: #FFE58D;
}

/*
===================
section07
===================
*/

#section07 {
	height: 3100px;
	margin: 0 auto;
	overflow: hidden;
	overflow: hidden;
	z-index: 10;
}

#section07 .btn_bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 20;
}

@media screen and (max-width: 820px) {
	#section07 {
		height: calc(100vw / 0.6);
		margin: 0 auto;
		overflow: hidden;
		z-index: 10;
		border-bottom: 10px solid #e21538;
	}
	#section07 .sec07 .sp-img {
		width: 100%;
		height: auto;
    }
	
}

@media screen and (max-width: 768px) {
	#section07 {
		height: calc(100vw / 0.11);
		margin: 0 auto;
		overflow: hidden;
		z-index: 10;
		border-bottom: 10px solid #e21538;
	}
	#section07 .sec07 .sp-img {
		width: 100%;
		height: auto;
    }
}
#section07 .sec07itpc {
		width: 100%;
		max-width: 1200px;
		text-align: center;
		margin: 0 auto;
}

#section07 .sec07itsp {
	width: 100vw;
	margin: 0 auto;
}

#section07 .sec07itpc .message {
	position: relative;
	list-style: none;
	margin-top:170px;
	z-index: 200;
}

#section07 .sec07itpc .message li {
	margin-bottom:150px; 
}


#section07 .sec07itpc .sec07items01 {
	position:absolute;
	z-index: 10;
	top:13%;
	left:19%;
}

#section07 .sec07itpc .sec07items02 {
	position:absolute;
	z-index: 10;
	top:-2%;
	right:20%;
}

#section07 .sec07itpc .sec07items03 {
	position:absolute;
	z-index: 10;
	top:21.5%;
	left:20%;
}

#section07 .sec07itpc .sec07items04 {
	position:absolute;
	z-index: 10;
	top:20.5%;
	right:20%;
}

#section07 .sec07itpc .sec07items05 {
	position:absolute;
	z-index: 10;
	top:38%;
	left:16%;
}

#section07 .sec07itpc .sec07items06 {
	position:absolute;
	z-index: 10;
	top:38%;
	right:9%;
}

#section07 .sec07itpc .sec07items07 {
	position:absolute;
	z-index: 10;
	top: 32%;
	left:14%;
}

#section07 .sec07itpc .sec07items08 {
	position:absolute;
	z-index: 10;
	top:42%;
	right:17%;
}

#section07 .sec07itpc .sec07items09 {
	position:absolute;
	z-index: 10;
	top:63%;
	left:14%;
}

#section07 .sec07itpc .sec07items10 {
	position:absolute;
	z-index: 10;
	top:68%;
	right:-1%;
}

@media screen and (max-width: 1600px) {
	#section07 .sec07itpc .sec07items01 {
		position:absolute;
		z-index: 10;
		top:13%;
		left:7%;
	}

	#section07 .sec07itpc .sec07items02 {
		position:absolute;
		z-index: 10;
		top:-2%;
		right:10%;
	}

	#section07 .sec07itpc .sec07items03 {
		position:absolute;
		z-index: 10;
		top:21.5%;
		left:12%;
	}

	#section07 .sec07itpc .sec07items04 {
		position:absolute;
		z-index: 10;
		top:20.5%;
		right:10%;
	}

	#section07 .sec07itpc .sec07items05 {
		position:absolute;
		z-index: 10;
		top:38%;
		left:12%;
	}

	#section07 .sec07itpc .sec07items06 {
		position:absolute;
		z-index: 10;
		top:38%;
		right:10%;
	}

	#section07 .sec07itpc .sec07items07 {
		position:absolute;
		z-index: 10;
		top: 32%;
		left:12%;
	}

	#section07 .sec07itpc .sec07items08 {
		position:absolute;
		z-index: 10;
		top:42%;
		right:10%;
	}

	#section07 .sec07itpc .sec07items09 {
		position:absolute;
		z-index: 10;
		top:63%;
		left:12%;
	}

	#section07 .sec07itpc .sec07items10 {
		position:absolute;
		z-index: 10;
		top:68%;
		right:-22%;
	}
}


#section07 .sec07itpc .x_link {
	position:absolute;
	z-index: 200;
	top:85%;
	left:46%;
}
/*SP*/
#section07 .sec07itsp .message {
	position: relative;
	list-style: none;
	margin-bottom:300px;
	z-index: 200;
}

#section07 .sec07itsp .message li {
	margin-bottom:-23vw; 
}


#section07 .sec07itsp .sec07items01 .up_img {
	position:absolute;
	z-index: 10;
	top:7%;
}

#section07 .sec07itsp .sec07items01 .down_img {
	position:absolute;
	z-index: 10;
	top:12.5%;
}

#section07 .sec07itsp .sec07items02 .up_img {
	position:absolute;
	z-index: 10;
	top:20%;
}

#section07 .sec07itsp .sec07items02 .down_img {
	position:absolute;
	z-index: 10;
	top:26.5%;
}

#section07 .sec07itsp .sec07items03 .up_img {
	position:absolute;
	z-index: 10;
	top:22.5%;
}

#section07 .sec07itsp .sec07items03 .down_img {
	position:absolute;
	z-index: 10;
	top:27%;
}

#section07 .sec07itsp .sec07items04 .up_img {
	position:absolute;
	z-index: 10;
	top:33%;
}

#section07 .sec07itsp .sec07items04 .down_img {
	position:absolute;
	z-index: 10;
	top:37%;
}

#section07 .sec07itsp .sec07items05 .up_img {
	position:absolute;
	z-index: 10;
	top:40%;
}

#section07 .sec07itsp .sec07items05 .down_img {
	position:absolute;
	z-index: 10;
	top:47%;
}

#section07 .sec07itsp .x_link {
		text-align: center;
		margin: -160px auto 0 auto;
		width: 50vw;
		z-index: 200;
		position: relative;
}

@media screen and (max-width: 768px) {
      #section07 .sec07itsp .x_link {
		text-align: center;
		margin: -142px auto 0 auto;
		width: 50vw;
		z-index: 200;
		position: relative;
  }
}



















#section07 .title-left {
    text-align: center;
    display: block;
    z-index: 20;
    position: relative;
    width: 350px;
    margin: 0 auto;
	padding-right:350px; 
}

#section07 .title-right {
    text-align: center;
    display: block;
    z-index: 20;
    position: relative;
    width: 350px;
    margin: 0 auto;
	padding-left:352px; 
	
}


@media screen and (max-width: 768px) {

}


#section07 h1 img {
	margin-top: 20px;
    width: 90%;
}
/*
===================
section08
===================
*/


#section08 {
    position: relative;
    background: url(../img/sec06-bg00.png) no-repeat top rgba(0,0,0,.75);
    background-size: 100% auto;
    overflow: hidden;
    z-index: 10;
    padding: 150px 0 410px;
}
.sec08-bg {
	
}
.sec08items04 {
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 20;
}

.sec08items04 .snslink {
	height: auto;
	text-align: center;
	overflow: hidden;
	margin-bottom: 2vw;
	z-index: 10;
}

.sec08items04 .snslink ul {
    display:flex;
    justify-content: center;
	margin-top: 10px;
}

.sec08items04 .snslink ul li{
	margin: 0.1vw;
	list-style: none;
}

.sec08items04 .snslink ul li a img{
	width: 97%; 
	height: auto;
}



.sec08items04 .return-img {
	width: 342px;
	height: auto;
	text-align: center;
	margin: 1em auto 1em auto;
	left: 0;
	right: 0;
	z-index: 20;
}

.sec08items04 .twlink-img {
	width: 322px;
	max-width: 322px;
	height: auto;
	margin: 1em auto 1em auto;
	left: 0;
	right: 0;
	z-index: 20;
}

.sec08items04 .walllink-img {
	width: 322px;
	max-width: 322px;
	height: auto;
	margin: 1em auto 1em auto;
	left: 0;
	right: 0;
	z-index: 20;
}

@media screen and (max-width: 768px) {
	.sec08items04 .omikuji-img {
		width: 97%;
		height: auto;
		text-align: center;
		position: absolute;
		margin: 1em auto 1em auto;
		left: 0;
		right: 0;
		z-index: 20;
	}
}



@media screen and (max-width: 768px) {
    #section08 {
		padding: 39px 0 380px;
		position: relative;
		background: url(../img/sec06-bg00.png) no-repeat top rgba(0,0,0,0.8);
		background-size: 100% auto;
		overflow: hidden;
		z-index: 10;
    }
	.sec08items04 .return-img {
		width: 97%;
		text-align: center;
		left: 0;
		right: 0;
		z-index: 20;
	}
	.sec08items04 .snslink ul li a img {
	width: 95%; 
	height: auto;
	}
}



#section08 .sec08-items {
    width: 467px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    #section08 .sec08-items {
        width: 100%;
    }
}

#section08 .sec08-item {
    margin-bottom: 38px;
}

#section08 .sec08-item img {
    width: 100%;
}

#section08 .btn_box {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1em auto;
}

#section08 .btn_box img{
    width: 190px;
	margin: 0 10px;
}

@media screen and (max-width: 768px) {
    #section08 .btn_box {
        width: 100%;
    }
    #section08 .btn_box img{
        width: 90%;
	    margin: 0 10px;
    }   
    
    
}

#section08 .btn_box .mail {
    width: 400px;
    height: auto;
    margin-bottom: 13px;
    display: block;
}

@media screen and (max-width: 768px) {
    #section08 .btn_box .mail {
        width: 100%;
    }
}

#section08 .btn_box .mail img {
    width: 100%;
}

#section08 .btn_box .line,
#section08 .btn_box .twitter {
    width: 194px;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    #section08 .btn_box .line,
    #section08 .btn_box .twitter {
        width: 48%;
    }
}

#section08 .btn_box .line img,
#section08 .btn_box .twitter img {
    width: 100%;
}




/*
===================
section09
===================
*/
#section09 {
	height: 1700px;
	margin: 0 auto;
	background-image:url("../img/sec02-bg01.jpg");
	background-repeat: repeat;
	overflow: hidden;
	z-index: 10;
}


@media screen and (max-width: 768px) {
	#section09 {
		height: calc(100vw / 0.28);
		margin: 0 auto;
		background-color: rgba(0, 0, 0, 0.8);
		overflow: hidden;
		z-index: 10;
	}
	#section09 .sec07 .sp-img {
		width: 100%;
		height: auto;
    }
}
#section09 h1 {
    text-align: center;
    display: block;
    z-index: 20;
    position: relative;
    padding-bottom: 23px;
    width: 350px;
    margin: 0 auto;
}

#section09 h1 img {
	margin-top: 20px;
    width: 100%;
}

#section09 .sec09itpc .sec09items01 {
	margin: 20px auto;
    width: 100%;
	text-align: center;
}

#section09 .sec09itpc .sec09items01 img {
	margin: 0 auto;
	max-width: 658px;
	height: auto;
}

#section09 .sec09itsp img {
	width: 100vw;
	height: auto;
}

#section09 .sec09itpc .sec09items02 {
	margin: 20px auto;
    width: 100%;
	text-align: center;
}

#section09 .sec09itpc .sec09items02 ul {
	display: flex;
	justify-content: center;
	text-align: center;
	margin: 30px auto 20px;
}

#section09 .sec09itsp ul {
	display: flex;
	justify-content: center;
	text-align: center;
	margin: 30px auto 20px;
}

#section09 .sec09itpc .sec09items02 ul li {
	list-style: none;
}

#section09 .sec09itsp .sec09items02 ul li {
	list-style: none;
}

#section09 .sec09itpc .sec09items02 img {
	margin:  auto 5px;
	max-width: 658px;
	height: auto;
}

#section09 .sec09itsp .sec09items02 img {
	width:96%;
}











/* ------------- css未調整  ------------- */

/*
===================
フォーム
===================
*/
#form-bg {
    background-image: url(../img/pre-bg.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: top;
    background-size: auto;
    background-color: #ffffff;
}

@media screen and (max-width: 768px) {
    #form-bg {
        background-image: none;
    }
}

#form {
    width: 480px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -310px;
    margin-left: -250px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

@media screen and (max-width: 768px) {
    #form {
        width: 100%;
        position: static;
        max-width: 320px;
        margin: 50px auto;
    }
}

#form h3 {
    color: #ffffff;
    font-size: 27px;
    text-align: center;
    padding: 8px;
    display: block;
    border-radius: 8px 8px 0px 0px;
    background-color: #909090;
}

.sub-form {
    padding: 25px;
    word-break: break-all;
}

.sub-form .title {
    color: #747474;
    font-size: 21px;
    text-align: center;
    margin-top: 30px;
    display: block;
}

.sub-form .input-text {
    margin-top: 5px;
}

.sub-form .input-text input {
    width: 100%;
    font-size: 21px;
    padding: 10px;
    box-sizing: border-box;
}

.err {
    font-size: 14px;
    color: #FF5252;
}

.sub-form .box-table {
    width: 280px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    .sub-form .box-table {
        width: 100%;
        margin-top: 20px;
        display: block;
    }
}

.sub-form .box-left {
    padding-right: 20px;
}

@media screen and (max-width: 768px) {
    .sub-form .box-left {
        display: block;
        padding-right: 0;
    }

    .sub-form .box-right {
        display: block;
    }
}

.sub-form .text01 {
    color: #747474;
    font-size: 14px;
    letter-spacing: 0px;
    margin-top: 20px;
    display: block;
}

.sub-form .check-btn {
    margin-top: 20px;
}

.sub-form .check-btn input {
    width: 100%;
    font-size: 21px;
    color: #ffffff;
    box-sizing: border-box;
    border-radius: 30px;
    padding: 10px;
    border: none;
    background-color: #FF8F2F;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.16);
}

.input-text02 {
    color: #1580CE;
    font-size: 21px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .input-text02 {
        word-break: break-all
    }
}

.text02 {
    color: #1580CE;
    font-size: 21px;
    letter-spacing: 0px;
    text-align: center;
    display: block;
}

.text03 {
    font-size: 14px;
    color: #747474;
    letter-spacing: 0px;
    margin-top: 20px;
    display: block;
}

.text04 {
    font-size: 14px;
    color: #FF5252;
    letter-spacing: 0px;
    display: block;
}

.sub-form .send-btn {
    width: 150px;
    font-size: 21px;
    color: #ffffff;
    box-sizing: border-box;
    border-radius: 30px;
    padding: 10px;
    border: none;
    background-color: #909090;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.16);
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .sub-form .send-btn {
        width: 100%;
        margin-top: 20px;
    }
}

.sub-form .send-btn:hover {
    width: 150px;
    font-size: 21px;
    color: #ffffff;
    box-sizing: border-box;
    border-radius: 30px;
    padding: 10px;
    border: none;
    background-color: #FF8F2F;
}

@media screen and (max-width: 768px) {
    .sub-form .send-btn:hover {
        width: 100%;
    }
}

.sub-form .thanks-btn {
    width: 200px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.sub-form .thanks-btn input {
    width: 100%;
    font-size: 21px;
    color: #ffffff;
    box-sizing: border-box;
    border-radius: 30px;
    padding: 10px;
    border: none;
    background-color: #FF8F2F;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.16);
}

.sub-form .twitter-btn {
    width: 300px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    .sub-form .twitter-btn {
        width: 100%;
    }
}

.sub-form .twitter-btn input {
    width: 100%;
    font-size: 21px;
    color: #ffffff;
    box-sizing: border-box;
    border-radius: 30px;
    padding: 10px;
    border: none;
    background-color: #FF8F2F;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.16);
}

.sub-form .mtop {
    margin-top: 20px;
}

.radio02-input {
    display: none;
}

.radio02-input+label {
    color: #ffffff;
    width: 120px;
    padding: 10px 10px 10px 30px;
    position: relative;
    border-radius: 20px;
    background-color: #D0A83C;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.16);
    display: block;
}

@media screen and (max-width: 768px) {
    .radio02-input+label {
        width: auto;
        margin-top: 20px;
    }
}

.radio02-input+label::before {
    content: "";
    display: block;
    position: absolute;
    top: 12px;
    left: 10px;
    width: 15px;
    height: 15px;
    border: 1px solid #999;
    background-color: #ffffff;
    border-radius: 50%;
}

.radio02-input:checked+label::after {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: 13px;
    width: 11px;
    height: 11px;
    background: #FF8F2F;
    border-radius: 50%;
}

#subcontent-bg {
    background-image: url(../img/bg-lowerpage.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    background-size: cover;
}

@media screen and (max-width: 768px) {
    #subcontent-bg {
        background-position: right;
    }

    #subcontent-bg #contents {
        padding: 0px 10px;
    }

    #contents.form {
        padding: 0 10px;
    }
}

.sub-content {
    width: 100%;
    max-width: 1000px;
    color: #ffffff;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    padding: 50px;
    background-color: rgba(0,0,0,0.7);
}

@media screen and (max-width: 768px) {
    .sub-content {
        width: auto;
        max-width: none;
        margin-top: 30px;
    }
}

.sub-content h2 {
    color: #ffffff;
    font-size: 24px;
    text-align: center;
    margin-bottom: 50px;
}

.sub-content strong {
    font-size: 18px;
    margin-top: 20px;
    display: block;
}

.sub-content p {
    font-size: 14px;
    line-height: 1.6;
    font-weight: normal;
}

.sub-content ol {
    margin-left: 20px;
}

.sub-content ul {
    list-style-type: none;
}

.sub-content a {
    color: #ffffff;
}

.sub-content a:hover {
    color: #fff000;
}