@charset "utf-8";
/* =============================================================
    common 共通
============================================*/
:root {
	--myColor01 : #004b35;
	--myColor02 : #ff4500;
	--myColor03 : #0043ff;
	--myColor04 : #eae2d1;
	--myColor05 : #0c5042;
	--myBasePX_XL : 80px;
	--myBasePX_L : 50px;
	--myBasePX_M : 30px;
	--myBasePX_S : 20px;
}
@media screen and (max-width: 767px) {
	:root {
		--myBasePX_XL : 50px;
		--myBasePX_L : 30px;
	}
}
@media screen and (max-width: 479px) {
	:root {
		--myBasePX_XL : 30px;
		--myBasePX_L : 20px;
		--myBasePX_M : 20px;
		--myBasePX_S : 12px;
	}
}

body {
	width: 100%;
}
body,figure,h1,h2,h3,h4,h5,h6,li,ol,p,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}
h1,h2,h3,h4,h5,h6,p {
	font-weight: normal;
}
li,ol,ul {
	list-style-type: none;
}

#page {
	font-size: 20px;
	margin: 0 auto;
    max-width: 1920px;
	color: var(--myColor01);
	font-family: "Noto Sans CJK JP", Lato, "Noto Sans JP", "游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.4;
	/* background-color: #e3e3e3; */
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt" 1;
	-webkit-text-size-adjust: 100%;
	position: relative;	/* 背景fixed　safari対応 ←　これ使う場合は必要*/
}

/* ==================================
============================*/

#page * {
	box-sizing: border-box;
}
#page img {
	width: 100%;
	border: 0;
	vertical-align: top;
}
#page a {
	transition: all 0.3s;
	text-decoration: none;
}
#page a:hover {
	opacity: 0.7;
}
#page a[tabindex*="-1"] {
	pointer-events: none;
}
#page a[tabindex*="-1"]:hover {
	opacity: 1;
}
#page em {
	font-style: normal;
	font-weight: bold;
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
	  pointer-events: none;
	  cursor: default;
	  text-decoration: none;
	}
  }
@media screen and (max-width: 767px) {
	#page {
		font-size: 18px;
	}
}
@media screen and (max-width: 479px) {
	#page {
		font-size: 16px;
	}
}

.serif {
	font-family: 'Shippori Mincho', serif;
	font-weight: 600;
}
.arial {
	font-family: Arial;
}
.font_kosugimaru {
	font-family: 'Kosugi Maru',sans-serif;
}
.font_zenmaru {
	font-family: 'Dela Gothic One', sans-serif;
	font-family: 'Zen Maru Gothic', serif;
}
.flex {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.flex.pc4,
.flex.pc3,
.flex.pc2 {
	column-gap: 3%;
	justify-content: center;
}
.flex.pc4 > div {
	width: calc(calc(100% - 3% * 3) / 4);
}
.flex.pc4 > div:nth-child(n + 5) {
	margin-top: 3%;
}
.flex.pc3 > div {
	width: calc(calc(100% - 3% * 2) / 3);
}
.flex.pc3 > div:nth-child(n + 4) {
	margin-top: 3%;
}
.flex.pc2 > div {
	width: calc(calc(100% - 3% * 1) / 2);
}
.flex.pc2 > div:nth-child(n + 3) {
	margin-top: 3%;
}
@media screen and (max-width: 1279px) {
	.flex.pc3 > div {
		width: calc(calc(100% - 3% * 1) / 2);
	}
	.topics_item:nth-child(n + 3) {
		margin-top: var(--myBasePX_L);
	}
}
@media screen and (max-width: 999px) {
	.flex.pc4 > div {
		width: calc(calc(100% - 3% * 2) / 3);
	}
	.flex.pc4 > div:nth-child(n + 4) {
		margin-top: 3%;
	}
}
@media screen and (max-width: 899px) {
	.flex.pc3 > div {
		width: 100%;
	}
	.topics_item:nth-child(n + 2) {
		margin-top: var(--myBasePX_L);
	}
	.icon_check {
		width: 14vw;
	}
}
@media screen and (max-width: 767px) {
	.flex.pc4 > div {
		width: calc(calc(100% - 3% * 1) / 2);
	}
	.flex.pc4 > div:nth-child(n + 3) {
		margin-top: 3%;
	}
}

.inner_wrap {
	padding: 0 var(--myBasePX_L);
	margin: 0 auto;
	max-width: 1500px;
}
.pd_tb {
	padding-top: var(--myBasePX_XL);
	padding-bottom: var(--myBasePX_XL);
}
.pd_t {
	padding-top: var(--myBasePX_XL);
}
.pd_b {
	padding-bottom: var(--myBasePX_XL);
}
.font_awe::before,
.font_awe::after {
	font-family: "Font Awesome 6 Free","Font Awesome 6 Brands";
    font-weight: 900;
}

.block_title {
	font-size: 1.4em;
	font-weight: bold;
	text-align: center;
}
.block_read p {
	margin: 0.8me auto;
}
.block_read p:not(.demo_btn) {
	padding-left: 1em;
	text-indent: -1em;
}
.ib {
	font-size: inherit !important;
	display: inline-block;
}
.btn_wrap {
	text-align: center;
}
.btn {
	font-size: 1.2em;
	color: #fff;
	font-weight: bold;
	padding: 0.8em var(--myBasePX_S);
	margin: 0 auto;
	line-height: 1.2;
	border-radius: 8px;
	transition: all 0.3s;
	display: inline-block;
}
.btn:hover {
	box-shadow: unset !important;
}
#btn_pagetop {
    position: fixed;
    font-size: 77%;
    z-index: 500;
}
#btn_pagetop a img {
  width: 80px;
}
#page_top:hover {
	cursor: pointer;
}
.pc {
	display: block;
}
@media screen and (min-width: 768px) {
    #btn_pagetop {
        bottom: 20px;
        right: 20px;
    }
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	.mob {
		display: none;
	}	
}
@media screen and (max-width: 767px) {
	.pc {
		display: none;
	}
    #btn_pagetop {
        bottom: 5px;
        right: 5px;
    }
    #btn_pagetop a img {
        width: 10vw;
        height: auto;
    }
}

.brXS, .brS, .brM, .brL, .brXL { display: none; }
.brPC { display: none; }
@media (max-width: 479px) { .brXS { display: inline; } }
@media (max-width: 599px) { .brS { display: inline; } }
@media (max-width: 767px) { .brM { display: inline; } }
@media (max-width: 1024px) { .brL { display: inline; } }
@media (max-width: 1399px) { .brXL { display: inline; } }
@media (min-width: 1400px) { .brPC { display: inline; } }

/* =============================================================
    【movie】ブロック　※Brightecoveの動画表示
============================================*/
.movie_wrap {
	/* width: 100%;
    max-width: 900px; */
    margin: var(--myBasePX_L) auto 0;
	/* box-shadow: 0 0 var(--myBasePX_S) var(--myColor05);
	border: solid 2px #e9e2d0; */
}
#movie {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
    margin: 0 auto;
	border: solid 2px #009b8b;
    overflow: hidden;
}
.tvo-video {
	position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}

.tver_wrap {
	margin: var(--myBasePX_L) auto 0;
}
.bnr_tver {
	margin: 0 auto;
	max-width: 800px;
	box-shadow: 0 0 calc(var(--myBasePX_M) / 3) var(--myColor05);
}
.tver_wrap .limit_text {
	font-weight: bold;
	text-align: center;
	line-height: 1.3;
	margin: 12px auto 0;
	text-shadow: 0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.3em #fff,0 0 0.3em #fff,0 0 0.3em #fff;
}
.tver_wrap .limit_text small {
	font-size: 16px;
	font-weight: normal;
}

.mov_area.flex {
	column-gap: 4%;
	max-width: 1700px;
    margin: 0 auto;
}
.mov_wrap {
	/* width: calc(96% / 2); */
	width: 100%;
	max-width: 900px;
}
@media screen and (max-width: 1279px) {
	.mov_wrap {
		width: 100%;
	}
}
/* =============================================================
    【YouTube】ブロック　※YT再生リスト表示
============================================*/
.yt_mov_wrap {
    max-width: 900px;
    margin: var(--myBasePX_L) auto 0;
}
.yt_mov_wrap iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
	border: solid 2px #009b8b;
    vertical-align: top;
}
.btn_yt {
	font-size: clamp(18px, 3vw, 22px);
	color: #004b35;
	margin: 30px auto 8px;
    background-color: #ffffff;
    border: solid 3px #004b35;
    border-radius: 50px;
	box-shadow: 0 0 calc(var(--myBasePX_M) / 3) var(--myColor05);
}
.btn_yt i {
    font-size: 1.2em;
    color: #ff0000;
    margin-right: 8px;
}
.btn_yt span:not(.ib) {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}
.link_notice {
	font-size: 80%;
    display: block;
	text-shadow: 0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.2em #fff,0 0 0.3em #fff,0 0 0.3em #fff;
}
/* =============================================================
    page用css
============================================*/

/*<div class="page_bg"></div><!-- bg fixed用 safari対応 -->*/
.page_bg {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* clip: rect(0, auto, auto, 0); */
    z-index: -1;
}
.page_bg:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
	background: url(../images/bg01.jpg) center center repeat-y;
	/* background: url(../images/bg.jpg) center center repeat-y; */
}

.sec_wrap {
	text-align: center;
	position: relative;
	z-index: 10;
}
.box01 {
	padding-bottom: var(--myBasePX_XL);
	background-color: #fff;
	/* border: solid 0.6em var(--myColor04); */
	border: solid clamp(4px, 1vw, 12px) var(--myColor04);
	border-radius: var(--myBasePX_S);
	box-shadow: 0 0 var(--myBasePX_S) var(--myColor05);
}
.sec_title_wrap {
	font-size: 0em;
	margin: calc(var(--myBasePX_XL) * -1) auto 0;
}
.sec_read {
	letter-spacing: -1px;
	margin-top: var(--myBasePX_M);
}
.sec_read p {
	/* font-size: 1.6em; */
	font-size: clamp(20px, 4vw, 32px);
	font-weight: 900;
	text-shadow: 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.2em #fff, 0 0 0.3em #fff, 0 0 0.3em #fff, 0 0 0.3em #fff, 0 0 0.3em #fff;
}
.sec_read em {
	font-size: 1.1em;
	font-weight: 900 !important;
	color: var(--myColor02);
}
.sec_read p:not(:last-of-type) {
	padding-bottom: 0.8em;
}
@media screen and (max-width: 1499px) {
	.page_bg:before {
		background: url(../images/bg01.jpg) center center/125% repeat-y;
		/* background: url(../images/bg.jpg) center center/125% repeat-y; */
	}
	.sec_title_wrap {
		width: 30vw;
	}
}
@media screen and (max-width: 767px) {
	.sec_read {
		font-size: 1.2em;
	}
}
@media screen and (max-width: 479px) {
	.page_bg:before {
		background: url(../images/bg01.jpg) center top/125% repeat-y;
		/* background: url(../images/bg.jpg) center top/125% repeat-y; */
	}
	.sec_title_wrap {
		width: 36vw;
	}
	.sec_read {
		font-size: 1em;
	}
	.sec_read em {
		font-size: 1.1em;
	}
}

/* =============================================================
    キービジュアル
============================================*/
#header {
	background: url(../images/kv_bg.jpg) center top no-repeat;
    padding-bottom: 140px;
}
.kv_logo_wrap {
	font-size: 0;
	margin: 0 auto;
	padding-top: 80px;
	max-width: 1109px;
}
.kv_logo {
	background: url(../images/kv_logo.png) center center/contain no-repeat;
	padding-top: calc(633 /1109 * 100%);
}
.kv_oainfo_wrap {
	position: relative;
	z-index: 100;
}
.img_kv_mc {
	max-width: 626px;
	width: 45%;
    margin-top: -110px;
}
.img_kv_oadate {
	max-width: 749px;
	width: 53%;
}
@media screen and (max-width: 1499px) {
	#header {
		background: url(../images/kv_bg.jpg) center top/125% no-repeat;
		padding-bottom: 120px;
	}
	.kv_logo_wrap {
		width: 72vw;
		padding-top: 6vw;
	}
	.img_kv_mc {
		width: 43%;
		margin-top: -7vw;
	}
	.img_kv_oadate {
		width: 47vw;
	}
}
@media screen and (max-width: 767px) {
	#header {
		padding-bottom: 16vw;
	}
}

/* =============================================================
    この番組は
============================================*/
#overview .inner_wrap {
	max-width: 100%;
}
#overview .box01 {
	border-radius: 0;
	border-color: #00b57e;
	background: url(../images/bg_cloud.png) center left repeat, linear-gradient(-222deg, white 70%, #e9e2d0 70%, #e9e2d0 72.5%, #00b57e 72.5%, #00b57e 100%);
}
#overview .sec_title_wrap {
	max-width: 351px;
}
#overview .sec_title {
	background: url(../images/title_overview.png) center top/contain no-repeat;
	padding-bottom: calc(181 / 351 * 100%);
}
.icon_live_wrap {
	position: relative;
	margin-top: var(--myBasePX_L);
	padding-top: var(--myBasePX_M);
}
.icon_live_wrap::before {
	position: absolute;
	content: '';
	width: 100%;
	max-width: 800px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	border-top: dashed 2px var(--myColor01);
}
.icon_live_wrap img {
	max-width: 534px;
}
@media screen and (max-width: 1499px) {
	.icon_live_wrap img {
		width: 40vw !important;
	}
}
@media screen and (max-width: 1099px) {
	#overview .box01 {
		background: url(../images/bg_cloud.png) center left/70vw repeat, linear-gradient(-222deg, white 80%, #e9e2d0 80%, #e9e2d0 82.5%, #00b57e 82.5%, #00b57e 100%);
	}
}
@media screen and (max-width: 479px) {
	.icon_live_wrap img {
		width: 46vw !important;
	}
}

/* =============================================================
    1週間住んでみるのは
============================================*/
.contents {
	padding-top: 1000px;
}
.contents .sec_title_wrap {
	max-width: 351px;
}
.contents .sec_title {
	background: url(../images/title_cont.png) center top/contain no-repeat;
	padding-bottom: calc(181 / 351 * 100%);
}

.cont_inner {
	margin-top: calc(var(--myBasePX_XL) + var(--myBasePX_L));
	padding: var(--myBasePX_XL) var(--myBasePX_L) var(--myBasePX_XL);
	border-radius: var(--myBasePX_S);
	position: relative;
}
.cont01_wrap.cont_inner {
	margin-top: var(--myBasePX_XL);
}
.icon_num {
	position: absolute;
	top: calc(var(--myBasePX_L) * -1);
	left: var(--myBasePX_L);
}
.cont_title {
	/* font-size: 2.3em; */
	font-size: clamp(22px, 4.6vw, 46px);
	font-weight: bold;
	line-height: 1.2;
	padding: 10px 16px;
	background-color: #fff;
	border: solid 3px var(--myColor05);
	border-radius: 10px;
	box-shadow: 4px -4px var(--myColor05);
}
.cont_title em {
	font-size: 1.22em;
}
.cont_intro {
	margin: var(--myBasePX_S) auto var(--myBasePX_M);
	padding: var(--myBasePX_S) 0;
	min-height: 144px;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
}
.cont_intro p {
	font-size: clamp(18px, 4vw, 24px);
	font-weight: bold;
	color: #fff;
	letter-spacing: 1px;
}
.cont_mainimg img,
.cont_img img  {
	/* border: solid 3px #fff !important; */
	border: solid clamp(2px, 1vw, 3px) #fff !important;
	/* border-radius: var(--myBasePX_S); */
	border-radius: clamp(8px, 2vw, 20px);
}

.topics_wrap {
	margin-top: calc(var(--myBasePX_M) * -1);
}
.topics_item {
	text-align: justify;
	padding: 0 var(--myBasePX_S) var(--myBasePX_S);
	background-color: #fff;
	/* border: solid 6px var(--myColor04); */
	border: solid clamp(3px, 1vw, 6px) var(--myColor04);
	/* border-radius: var(--myBasePX_S); */
	border-radius: clamp(8px, 2vw, 20px);
	box-shadow: 0 0 calc(var(--myBasePX_M) / 3) var(--myColor05);
}
.icon_check {
	max-width: 115px;
	margin: calc(var(--myBasePX_L) * -1) auto calc(var(--myBasePX_S) / 2);
}
.topics_read {
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.2;
}
.topics_read em {
	font-size: 1.6em;
}
.cont_img_wrap {
	margin-top: var(--myBasePX_L);
}
.icon_live {
	max-width: 108px;
	position: absolute;
	right: var(--myBasePX_L);
	bottom: calc(var(--myBasePX_L) * -1);
}

.icon_num.num01 {
	max-width: 117px;
}
.cont01_wrap {
	background-color: rgb(255 69 0 / 85%);
}
.cont01_wrap .cont_title em {
	color: var(--myColor02);
}
.cont01_wrap .cont_intro {
	text-shadow: 2px 2px 0 var(--myColor02);
	background: url(../images/icon_map_kyoto.png) center center no-repeat;
}
.cont01_wrap .topics_read em {
	color: var(--myColor02);
}

.icon_num.num02 {
	max-width: 148px;
}
.cont02_wrap {
	background-color: rgb(0 67 255 / 85%);
}
.cont02_wrap .cont_title em {
	color: var(--myColor03);
}
.cont02_wrap .cont_intro {
	text-shadow: 2px 2px 0 var(--myColor03);
	background: url(../images/icon_map_wkym.png) center center no-repeat;
}
.cont02_wrap .topics_read em {
	color: var(--myColor03);
}
@media screen and (max-width: 1919px) {
	.contents {
		padding-top: 100vh;
	}
}
@media screen and (max-width: 1499px) {
	.icon_num.num01 {
		width: 10vw;
	}
	.icon_num.num02 {
		width: 12.5vw;
	}
	.icon_live {
		width: 10vw;
	}
}
@media screen and (max-width: 1279px) {
	.contents {
		padding-top: 50vw;
	}
}
@media screen and (max-width: 767px) {
	/* .cont_title {
		font-size: 1.8em;
	} */
}
@media screen and (max-width: 479px) {
	/* .cont_title {
		font-size: 1.4em;
	} */
	.topics_read {
		font-size: 1em;
	}
	.topics_read em {
		font-size: 1.3em;
	}
}

/* =============================================================
    Photoエリア
============================================*/
#photo_area {
	padding: 350px 0 0;
	margin: calc(var(--myBasePX_S) * -1) auto;
	position: relative;
	z-index: 500;
}
#photo_area .slideshow img {
	border: solid 0.6em var(--myColor04);
	border: solid clamp(4px, 1vw, 12px) var(--myColor04);
	/* border-radius: var(--myBasePX_S); */
	border-radius: clamp(8px, 2vw, 20px);
	box-shadow: 0 0 calc(var(--myBasePX_M) / 2) var(--myColor05);
}
#photo_area .swiper {
	padding: var(--myBasePX_S) 0;
}
#photo_area .swiper-slide {
	padding: 0 var(--myBasePX_S);
}
@media screen and (max-width: 1279px) {
	#photo_area {
		padding: 10vw 0 0;
	}
}

/* =============================================================
    出演
============================================*/
#cast {
	background: url(../images/ill_mountain.png) center var(--myBasePX_L) no-repeat;
	margin-top: 350px;
}
#cast .sec_title_wrap {
	max-width: 351px;
}
#cast .sec_title {
	background: url(../images/title_cast.png) center top/contain no-repeat;
	padding-bottom: calc(181 / 351 * 100%);
}
#cast .sec_title_wrap {
	margin-top: 0;
}
.cast_img {
	text-align: center;
	margin-top: var(--myBasePX_M);
	padding: 0 var(--myBasePX_S);
}
.cast_img img {
	width: 80vw !important;
	max-width: 1170px;
}
@media screen and (max-width: 1919px) {
	#cast {
		margin-top: 20vw;
	}
}
@media screen and (max-width: 1279px) {
	#cast {
		background-size: 140%;
	}
}
@media screen and (max-width: 767px) {
	#cast {
		background-size: 150%;
	}
}




/* =============================================================
    【swiper】ブロック ※スライド
============================================*/
.swiper-wrapper {
	transition-timing-function: linear !important;
}
.swiper-wrapper li {
	list-style: none;
}
@keyframes loop-slide {
	from {
	  transform: translateX(0);
	}
	to {
	  transform: translateX(-100%);
	}
}
.slide-paused:hover .slideshow {
	-webkit-animation-play-state: paused;
	animation-play-state: paused;
}
@media screen and (max-width: 479px) {
	.swiper-slide {
		padding: 0 5px;
	}
	.slide_note {
		font-size: 16px;
	}
}

/* =============================================================
    css　アニメーション
============================================*/
.pikopiko {
	animation: pikopiko 3s steps(1, start) infinite;
}
.topics_item:nth-child(2n) .pikopiko {
	animation: pikopiko 3s steps(1, start) infinite 1s;
}
@keyframes pikopiko {
	0%, 24.75% {
		transform: rotate(0deg);
	}
	4.95% {
		transform: rotate(0deg);
	}
	9.9% {
		transform: rotate(-4deg);
	}
	14.85% {
		transform: rotate(0deg);
	}
	19.8% {
		transform: rotate(-4deg);
	}
}
/* @keyframes pikopiko {
	0% {
		transform: rotate(4deg);
	}
	100% {
		transform: rotate(-4deg);
	}
} */

.poyoyon {
	animation: poyoyon 3s infinite 2s;
	opacity: 1;
}
@keyframes poyoyon {
	0%, 33% {
	  transform: skew(0deg, 0deg);
	}
	4.125% {
	  transform: skew(5deg, 5deg);
	}
	8.25% {
	  transform: skew(-4deg, -4deg);
	}
	12.375% {
	  transform: skew(3deg, 3deg);
	}
	16.5% {
	  transform: skew(-2deg, -2deg);
	}
	20.625% {
	  transform: skew(1deg, 1deg);
	}
	24.75% {
	  transform: skew(-0.6deg, -0.6deg);
	}
	28.875% {
	  transform: skew(0.3deg, 0.3deg);
	}
}

.fuwafuwa {
	animation: fuwafuwa 2s infinite;
}
@keyframes fuwafuwa {
   0% {
	 transform: translateY(0px);
   }
   50% {
	 transform: translateY(calc(var(--myBasePX_S) * -1));
   }
   100% {
	 transform: translateY(0px);
   }
}