@charset "UTF-8";

@font-face {
    font-family: "ZenKakuGothicNew";
    src: url("fonts/ZenKakuGothicNew-Medium.ttf") format("truetype");
    font-weight: 400;
}
@font-face {
    font-family: "ZenKakuGothicNew";
    src: url("fonts/ZenKakuGothicNew-Bold.ttf") format("truetype");
    font-weight: 600;
}
@font-face {
    font-family: "ZenOldMincho";
    src: url("fonts/ZenOldMincho-Regular.ttf") format("truetype");
    font-weight: 400;
}
@font-face {
    font-family: "ZenOldMincho";
    src: url("fonts/ZenOldMincho-Bold.ttf") format("truetype");
    font-weight: 600;
}

html {
    font-family: "ZenOldMincho", serif;
    font-weight: normal;
    font-size: 16px;
    line-height: 2;
    scroll-behavior: smooth;
}

.serif { font-family: "ZenOldMincho", serif!important; }
.sans { font-family: "ZenKakuGothicNew", sans-serif!important; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
}

.header {
	height: 0;
	position: sticky;
    top: 0px;
	z-index: 8;
    transition: margin-top 0.7s ease;
}

.header-inner {
	background: rgb(0,0,0,0.85);
    color: #fff;
	width: 220px;
	padding: 20px;
    position: relative;
    top: 0;
    transition: all 0.5s ease 0s, width 0.5s ease-in;
}

.scrolled .header-inner {
    top: -70px;
    width: 80px;
    transition: all 0.5s ease 0s, width 0.5s ease-in 0.7s;
}

.header-siteid {
	display: block;
	width: 150px;
	margin: 0 auto 30px 0;
}

.toggle-menu {
	width: 40px;
	height: 30px;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	background: none;
	position: relative;
	cursor: pointer;
    outline: none;
	display: block;
}

.toggle-menu > span {
	height: 2px;
	width: 100%;
	display: block;
	background: #fff;
	position: absolute;
	left: 0;
	margin: 0;
    transition: all 0.5s ease;
}

.toggle-menu > span:nth-child(1) { top: 0; }
.toggle-menu > span:nth-child(2) { top: 14px; }
.toggle-menu > span:nth-child(3) { top: 28px; }

.menu {
    max-height: 0;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    transition: all 1s ease;
    font-size: 1.16em;
    opacity: 0;
}

.menu-active .header-inner {
    background: rgba(0,0,0,0.95);
    width: 220px;
    transition: width 0.5s ease-in 0s;
}

.scrolled .menu-active .menu {
    transition: all 1s ease 0.5s;
}

.menu-active .menu {
    padding: 40px 0;
    max-height: 360px;
    opacity: 1;
    transition: all 1s ease 0s;
}

.menu-active .toggle-menu > span:nth-child(1) {
	transform: rotate(35deg);
	top: 50%;
}

.menu-active .toggle-menu > span:nth-child(2) {
	width: 0;
	height: 0;
}

.menu-active .toggle-menu > span:nth-child(3) {
	transform: rotate(-35deg);
	top: 50%;
}

.menu > ul {
	list-style: none;
}

.menu a {
	color: inherit;
	text-decoration: none;
}

.menu > ul > li {
	margin: 25px auto;
}

.menu > ul > li:last-child {
    margin-bottom: 0;
}


#top {
	background: url(./img/top-bg.jpg) #000;
	background-position-y: -400px;
	background-position-x: center;
	background-size: 1920px auto;
	background-repeat: no-repeat;
	padding: 10px 10px 15%;
	min-height: 100vh;
    width: 100%;
	position: relative;
}

#top:after {
    content: "";
    display: block;
    height: 60px;
    position: absolute;
    bottom: -1px;
	left: 0px;
    background: linear-gradient(0deg, black, transparent);
    width: 100%;
    z-index: 2;
}

.container {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.container.container--relative {
	position: relative;
}

.mobile-site_id {
    display: none;
}

.main-title {
	margin: 30px 10px 0 auto;
	margin-right: 0;
	width: fit-content;
    position: relative;
    z-index: 7;
}

.main-title img {
	display: block;
}

.main-message {
    width: fit-content;
    margin: 0px auto;
}

.main-message img {
	display: block;
	width: 84px;
	height: auto;
}

.main-contdown-days {
	width: 240px;
	margin-left: auto;
	color: #fff;
	border: solid 1px #fff;
	padding: 5px 20px;
	font-weight: bolder;
    line-height: 1.5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-contdown-days > span {
	font-size: 2em;
	margin: 0 5px 0.1em;
}

.music {
	.music-wrap {
		width: 240px;
		margin-left: auto;
		margin-top: 40px;
		color: #fff;
		position: relative;
		text-align: right;
	}
	.music-title-before {
		font-size: 0.84em;
		line-height: 1;
		margin-bottom: 10px;
	}
	.music-title {
		font-size: 1.64em;
		line-height: 1;
		display: inline-block;
		vertical-align: middle;
	}
	.music-controller {
		width: 46px;
		height: 46px;
		padding: 2px;
		-webkit-appearance: none;
		appearance: none;
		border: none;
		background: #69318e;
		border: solid 2px #fff;
		border-radius: 50%;
		display: inline-block;
		vertical-align: middle;
		margin-left: 15px;
		cursor: pointer;
	}
	.music-download {
		margin-top: 10px;
		margin-right: 1px;
	}
}
.icon-play polygon,
.icon-pause rect {
	fill: #fff;
}
.icon-pause {
	display: none;
}
.play .icon-play {
	display: none;
}
.play .icon-pause {
	display: block;
}

.info {
	width: fit-content;
	margin: 20px auto;
	font-size: 0.84em;
	max-width: 600px;
}

#info {
	padding: 20px;
	background: #000;
	color: #fff;
}

.info-bnr {
    display: flex;
    gap: 30px;
    margin-bottom: 100px;
    flex-wrap: wrap;
	align-items: baseline;
}

.info-title {
	margin: 0 auto 1em;
	line-height: 1;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.info-title:after,
.info-title:before {
	content: "";
	width: 2em;
	height: 1px;
	background: #bbb;
	display: inline-block;
	margin: 0 1em;
}

.info-content {
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
}

.info-date {
	margin-right: 1em;
}

.info-text {
    text-decoration: none;
    color: inherit;
}

#pos1 {
    position: relative;
}

.mySwiper2 {
    min-height: 100vh;
}

.swiper-thumbs {
    max-width: 1920px;
    margin: 50px auto 0;
}

.swiper-thumbs .swiper-slide {
	width: calc(20% - 50px);
}

.swiper-thumbs .swiper-slide {
	margin-left: 25px;
    margin-right: 25px;
}

.swiper-thumbs .swiper-slide picture {
    height: auto;
}
.swiper-thumbs .swiper-slide picture > * {
    width: auto;
    height: auto;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    margin: auto;
    position: relative;
    z-index: 2;
}

.slide-wrap {
    position: relative;
    display: block;
    width: 100vw;
	height: 100vh;
	min-height: 50vw;
}

.slide-wrap picture img,
.slide-wrap picture source {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}

.slide-wrap:before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 140%;
	height: 140%;
	filter: blur(25px);
	z-index: 1;
	background: inherit;
}

.slide-wrap:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.7;
	z-index: 3;
}

.swiper-thumbs .swiper-slide {
	background: #000;
}

.swiper-thumbs .swiper-slide img {
	opacity: 0.5;
	transition: all 2s ease;
}

.swiper-thumbs .swiper-slide.swiper-slide-thumb-active img {
	opacity: 1;
}

.lead-text {
	position: absolute;
	z-index: 3;
	color: #fff;
	top: 0;
	left: 50%;
	margin-top: 15%;
	font-size: 1.2em;
	transform: translateX(-50%);
	line-height: 2.1;
    display: flex;
    align-items: center;
    height: 23em;
    width: 100%;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.lead-text p {
    -ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-align: justify;
    width: fit-content;
	margin: auto;
    height: 100%;
}

#pos2 {
	margin: 100px auto 50px;
	padding: 100px 0 50px;
}

.katsudo-heading {
	width: fit-content;
	margin: 0 auto 100px;
}

.katsudo-heading img {
	display: block;
}

.katsudo-desc {
	text-align: center;
	font-size: 1.16em;
	margin-bottom: 50px;
}

#katsudo-news-list {
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 50px;
}
.katsudo-news-title {
	text-align: center;
	margin-bottom: 20px;
	font-size: 1.64em;
}
.katsudo-item {
	line-height: 1.35;
	color: inherit;
	text-decoration: none;
}
.katsudo-item:hover {
	opacity: 0.65;
	text-decoration: underline;
}
.katsudo-item-thumb {
	display: block;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	position: relative;
	margin-bottom: 5px;
}
.katsudo-item-thumb img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.katsudo-item-title {
	font-size: 0.92em;
	display: -webkit-box;
	-webkit-line-clamp: 5;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.katsudo-item-quote {
    color: #888;
    font-size: 0.8em;
}
#katsudo-news-list .swiper-slide {
	width: 240px;
	max-width: 50%;
	padding-left: 10px;
	padding-right: 10px;
}
#katsudo-news-list .swiper-button-next,
#katsudo-news-list .swiper-button-prev {
	width: 25px;
	height: 100%;
	top: 0;
	margin: 0;
}
#katsudo-news-list .swiper-button-prev:after,
#katsudo-news-list .swiper-button-next:after {
	font-size: 1.2em;
	color: #69318e;
}
#katsudo-news-list .swiper-button-prev {
	left: -1px;
	background: linear-gradient(-90deg,transparent,#fff 70%);
}
#katsudo-news-list .swiper-button-prev:after {
	left: -6px;
	position: relative;
}
#katsudo-news-list .swiper-button-next {
	right: -1px;
	background: linear-gradient(90deg,transparent,#fff 70%);
}
#katsudo-news-list .swiper-button-next:after {
	position: relative;
	right: -6px;
}
#katsudo-news-list .swiper-button-next.swiper-button-disabled,
#katsudo-news-list .swiper-button-prev.swiper-button-disabled {
	opacity: 1;
}
#katsudo-news-list .swiper-button-next.swiper-button-disabled:after,
#katsudo-news-list .swiper-button-prev.swiper-button-disabled:after {
	opacity: 0.2;
}

.katsudo-info {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	align-items: baseline;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.katsudo-info > dt {
	display: block;
	width: 6em;
	text-align-last: justify;
	padding-right: 1em;
	position: relative;
}

.katsudo-info > dd {
	width: calc(100% - 6em);
}

.katsudo-info > dt:after {
	content: "：";
	position: absolute;
	right: 0;
	top: 0;
}

.katsudo-info ol {
	padding-inline-start: 1.15em;
	padding-left: 1.15em;
}

.katsudo-info .caption {
	font-size: 0.88em;
}

.ext-link-wrap {
	margin: 40px auto;
	flex-wrap: wrap;
}

.katsudo-link {
	display: flex;
	justify-content: center;
	align-items: stretch;
	width: auto;
}

.katsudo-link > a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 250px;
}

.katsudo-link > a > * {
	display: block;
	text-align: center;
	margin: 0 auto;
	width: 100%;
}

.katsudo-link > a > * + * {
	margin-top: 5px;
}

.separator {
    border: none;
    height: 3px;
    width: 100%;
    background: radial-gradient(#bbb, transparent);
    border-radius: 50%;
    margin: auto;
    max-width: 840px;
}

.separator.separator--min {
    height: 2px;
    max-width: 560px;
}

.btn {
    font-family: ZenKakuGothicNew,sans-serif;
	border: solid 1px #000;
	background: #fff;
	color: inherit;
	text-decoration: none;
	line-height: 1;
	padding: 10px 20px;
	min-width: 250px;
	display: inline-block;
	text-align: center;
	transition: all 0.5s ease;
}

.btn + .btn {
	margin-left: 50px;
}

.btn:hover {
	background: #000;
	color: #fff;
	border-color: #000;
}

.btn.btn--min {
	min-width: 0px;
    padding: 8px 10px;
    font-size: 0.92em;
}
.btn.btn--white {
    color: #000;
    border-color: #fff;
}

.btn.btn--white:hover {
    color: #fff;
    background: #555;
}

.btn.btn-katsudobi {
	font-size: 1em;
	color: #fff;
	background: #69318e;
	border-color: #69318e;
	border-width: 2px;
	height: 4em;
}

.btn.btn-katsudobi:hover {
	background: #fff;
	color: #69318e;
    border-color: #69318e;
}

.btn.btn--oyasatokoenkai {
	margin: 0;
    font-size: 1.4em;
    line-height: 1;
    padding: 0.75em 1em;
	display: block;
	padding: 0;
	border: none;
	min-width: 0;
	max-width: 280px;
	width: calc(50% - 15px);
}

.btn.btn--oyasatokoenkai img {
    display: block;
}

.tanto-link {
	color: #004098;
	text-decoration: none;
	font-size: 1.24em;
	font-weight: bold;
	font-family: "ZenKakuGothic";
}

.tanto-link:hover {
	text-decoration: underline;
}

.coming-soon {
	margin: 60px auto;
	text-align: center;
}

.coming-soon a {
    display: inline-block;
	color: inherit;
}

#pos3 {
	padding: 100px 0;
	background: url(./img/ukeire-bg.jpg);
	background-size: auto;
    background-position: top center;
	background-repeat: repeat;
}

.container.container--ukeire {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	margin-top: 100px;
	max-width: 900px;
}

.ukeire-heading {
	margin-top: 30px;
	width: 50px;
	margin-right: 20%;
}

.ukeire-heading picture {
    height: auto;
    width: auto;
    max-width: 100%;
}

.ukeire-subheading {
	font-size: 2.3em;
	margin: 0 0 30px;
}
.ukeire-content-wrap {
	width: calc(80% - 50px);
}

.section-title img {
	display: block;
}

.onegaidutome-nittei {
	margin: 20px auto;
}

.sub-heading {
	font-size: 1.56em;
	position: relative;
	width: fit-content;
}

.onegaidutome-nittei > ul {
	list-style: none;
	padding-left: 1em;
	border-left: solid 1px #000;
	margin-left: 0.8em;
}

.onegaidutome-nittei > ul li {
    display: inline-block;
    margin-right: 1em;
    min-width: 120px;
}

.oyasato-hinokishin-thumb {
	margin: 60px auto 60px 0;
	max-width: 600px;
}

.oyasato-hinokishin-thumb img {
	display: block;
}

.youtube-wrap {
    max-width: 600px;
    margin-top: 30px;
    margin-bottom: 30px;
}
.youtube {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	position: relative;
}

.youtube > iframe {
	position: absolute;
	height: 100%;
	width: 100%;
}

.ukeire-desc,.onegaidutome-desc {
	font-size: 1.16em;
    text-align: justify;
}

.oyasato-hinokishin-info {
	margin-bottom: 2em;
}

.oyasato-hinokishin-info > dt {
	font-size: 1.16em;
	font-weight: bolder;
}

.oyasato-hinokishin-info > dt:before {
	content: "○";
}

.oyasato-hinokishin-info > dd {
	padding-left: 0.5em;
}

.oyasato-hinokishin-caption {
	font-size: 0.92em;
}

.text-indent1 {
	text-indent: -1em;
	padding-left: 1em;
	line-height: 1.8;
}

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

.ukeire-content-wrap section:nth-of-type(n+2) {
    margin-top: 140px;
}

.kaigaten-link {
	margin: 10px auto;
	display: block;
}

.kaigaten-link img {
	display: block;
}

.kaigaten-link:hover img {
	filter: grayscale(0.2) brightness(0.95);
}

.oyasatokoenkai-data {
	font-size: 1.08em;
	margin: 20px 0;
}

.koenkai-table {
    padding-left: 1em;
}	

.koenkai-table-name {
    padding-left: 0.5em;
}

.oyasatokoenkai-latest {
    margin: 25px 0;
    max-width: 440px;
}

.oyasatokoenkai-latest img {
    display: block;
}

#pos4 {
	margin: 100px auto;
	padding: 100px 0;
}

.nensaikatsudo-heading {
    margin: auto;
    width: fit-content;
}

.nensaikatsudo-heading img {
	display: block;
	margin-bottom: 100px;
}

.nensaikatsudo-articles {
    max-width: 680px;
    margin: auto;
}

.nensaikatsudo-article {
	display: block;
	padding: 10px;
	margin-bottom: 30px;
    position: relative;
}

.nensaikatsudo-article:after {
	content: "";
	display: block;
	width: 0vw;
	height: 100%;
	position: absolute;
	top: 0;
    left: 50%;
	z-index: -1;
	background: linear-gradient(135deg, transparent, transparent 30%, #ddd1e7);
	transform: translateX(-50%);
	pointer-events: none;
}

.nensaikatsudo-article:hover:after {
	width: 100vw;
    transition: width 0.35s ease-in;
}

.nensaikatsudo-article > a {
	display: block;
	color: inherit;
	text-decoration: none;
}

.nensaikatsudo-article-flex {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
}

.nensaikatsudo-article-text {
	width: calc(65% - 60px);
	margin-right: 60px;
}

.nensaikatsudo-article-thumb {
	width: 35%;
	height: 0;
	padding-bottom: calc(35% / 16 * 10);
	position: relative;
	overflow: hidden;
}

.nensaikatsudo-article-title {
	line-height: 1;
	margin-bottom: 15px;
}

.nensaikatsudo-article-tag {
	list-style: none;
	font-size: 0.84em;
	line-height: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 15px;
	font-family: ZenKakuGothicNew,sans-serif;
	color: #888;
}

.nensaikatsudo-article-tag > li {
	display: inline;
	margin-right: 1em;
}

.nensaikatsudo-article-line {
	width: 30px;
	margin: 15px auto;
	margin-left: 0;
	border: none;
	height: 1px;
	background: #888;
}

.nensaikatsudo-article-description {
	font-size: 0.92em;
	line-height: 1.6;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.nensaikatsudo-article-thumb img {
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
}

.more {
	margin: 80px auto 40px;
}

#pos4 {
	margin: 0;
	padding-bottom: 0;
}

.kyosoden-footer {
	background: url(./img/footer-bg.jpg);
    background-position-x: 50%;
    background-position-y: bottom;
    background-size: 120% auto;
    background-repeat: no-repeat;
    padding: 280px 0 200px;
    margin-top: -100px;
}

.manabu-heading {
	font-size: 3em;
	line-height: 1.3;
	text-align: center;
	font-weight: normal;
	width: fit-content;
	margin: 0 auto 100px;
}

.manabu-books {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	flex-wrap: wrap;
}

.manabu-books::-webkit-scrollbar{
    display: none;
    -ms-overflow-style: none;
}

.hinagata-books-item {
	width: auto;
	margin: 0 20px;
	display: block;
    transition: all 0.35s ease;
}

.hinagata-books-item:hover {
	box-shadow: 3px 3px 7px #000;
}

.hinagata-books-item img {
	display: block;
	max-width: 160px;
	max-height: 160px;
    margin: auto;
}

#pos6 {
    margin-top: 100px;
}

.download-heading {
	font-size: 3em;
	color: #fff;
	text-align: center;
	margin-bottom: 20px;
}

.download-items {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.download-items > a {
	max-width: 200px;
	margin: 0 40px;
	font-size: 1.08em;
	text-align: center;
	text-decoration: none;
	color: #fff;
    transition: all 0.35s ease;
}

.download-items > a:hover {
	opacity: 0.5;
}

.download-items > a > img {
	max-width: 180px;
	width: 100%;
	margin: 0 auto 20px;
	display: block;
}

.download-items > a.logomark img {
	margin-left: 20%;
}

.download-items > a > span {
    height: 1.5em;
    display: block;
    line-height: 1.5;
}

.footer {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    margin-top: -100px;
}

.footer-logo {
	display: block;
	width: fit-content;
	margin: 20px auto;
	max-width: 160px;
}

.footer-logo img {
	display: block;
}

.copyright {
	font-size: 0.84em;
	line-height: 1;
}

@media all and (min-width: 1601px){
    .kyosoden-footer {
        background-size: 100% auto;
    }
}

@media all and (max-width: 1310px){
    .kyosoden-footer {
        background-size: 135% auto;
    }
}

@media all and (max-width: 1024px){
    .container {
    	padding-left: 15px;
    	padding-right: 15px;
    }
}

@media (orientation: portrait) {
    #top {
        background-size: auto 100%;
        background-position: top center;
    }

    .main-message img {
        width: 13vw;
    }

    .main-title img {
        width: 25vw;
    }

    .main-message {
        margin: 80px auto;
    }

    picture {
        height: 100vh;
        display: block;
    }
    picture > * {
        width: auto;
        height: auto;
        max-width: none;
        min-width: 100%;
        min-height: 100%;
    }

    .lead-text {
        top: 45%;
        transform: translate(-50%,-50%);
        margin: 0;
        font-size: 2.6vw;
        line-height: 2;
    }

    .ukeire-heading {
    	margin-right: 10%;
    }

    .ukeire-content-wrap {
    	width: calc(90% - 50px);
    }

    .kyosoden-footer {
        background-size: 160% auto;
        padding-bottom: 50px;
    }

    .manabu-heading br {
        display: none;
    }

    .footer {
        background: #000;
        margin-top: 0;
        padding: 10px 0 20px;
    }
}

@media all and (max-width: 768px){
    .header-inner {
    	padding: 15px;
    	top: -70px;
    	width: 64px;
    	transition: all 0.5s ease 0s, width 0.5s ease-in 0.7s;
    }

    .scrolled .header-inner {
        width: 64px;
    }

    .menu-active .header-inner {
        width: 220px;
    }

    .toggle-menu {
    	width: 34px;
    	height: 26px;
    }

    .toggle-menu > span:nth-child(2) {
    	top: 12px;
    }

    .toggle-menu > span:nth-child(3) {
    	top: 24px;
    }

    .mobile-site_id {
        display: block;
    	margin: 10px auto;
    	max-width: 150px;
    }

    .mobile-site_id img {
        display: block;
    }

	#top {
		min-height: 720px;
	}

    .main-title {
        margin: 7vw auto;
        width: 40%;
    }

    .main-title > img {
        width: 100%;
    }

    .main-message {
        margin: 50px auto;
    }

    .main-message img {
        max-width: 13vw;
    	max-height: 320px;
    	width: auto;
    }

    .main-contdown-days {
        margin: 30px auto;
        padding: 0 20px;
    }

    .main-contdown-days > span {
        font-size: 1.64em;
    }

	.music {
		.music-wrap {
			width: 100%;
			margin: 40px auto 0;
			text-align: center;
		}
		.music-title-before {
			font-size: 1em;
		}
		.music-title {
			display: block;
		}
		.music-controller {
			display: block;
			margin: 10px auto 15px;
		}
	}

    .swiper-thumbs .swiper-slide {
        width: calc(33.33% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }

    .swiper-thumbs {
        margin-top: 30px;
    }

	.katsudo-link > a {
		width: 250px;
		min-width: 0;
		margin: 0 10px 20px;
	}
	
	.btn.btn-katsudobi + .btn.btn-katsudobi {
		margin: 0 10px 20px;
	}

	#pos3 {
        padding-bottom: 50px;
    }

    .container.container--ukeire {
    	margin: 0;
    }

    .ukeire-heading {
    	margin: 25px 10% 25px 5%;
    }

    .ukeire-content-wrap {
    	width: calc(80% - 50px);
    	margin-right: 5%;
    }

    .hinagata-books-item {
        display: inline-block;
        width: calc(33.33% - 40px);
        margin-bottom: 40px;
    }

    .manabu-heading {
        color: #000;
    }

}

@media all and (max-width: 480px){
    .main-title {
    	width: 75%;
        height: auto;
        margin: 5vh auto;
    }

    .main-message {
        height: auto;
    	width: auto;
        margin: 5vh auto;
    }

    .main-message img {
    	max-width: 18vw;
    	margin: auto;
    }

    #info {
        padding: 20px 10px;
    }

    .info-content {
    	line-height: 1.5;
    	margin-bottom: 0.5em;
    }

    .lead-text {
        display: block;
        font-size: 16px;
    	line-height: 2;
        padding: 0 40px;
        overflow-x: scroll;
        top: 45%;
    }
    .lead-text::-webkit-scrollbar{
        display: none;
    }

    .swiper-thumbs .swiper-slide {
    	width: calc(50% - 30px);
    }

    #pos2 {
    	margin: 50px auto 0;
    }

    .katsudo-heading {
    	width: auto;
    	margin-bottom: 60px;
    }

    .katsudo-heading img {
    	width: 20%;
    	margin: auto;
    }

    .katsudo-desc {
    	font-size: 1em;
    }

	.katsudo-news-title {
		font-size: 1.12em;
	}
	#katsudo-news-list {
		margin-left: -15px;
		margin-right: -15px;
	}
	#katsudo-news-list .swiper-slide {
		padding-left: 5px;
		padding-right: 5px;
	}
	#katsudo-news-list .swiper-button-next,
	#katsudo-news-list .swiper-button-prev {
		width: 40px;
	}
	#katsudo-news-list .swiper-button-next.swiper-button-disabled,
	#katsudo-news-list .swiper-button-prev.swiper-button-disabled {
		background: transparent;
	}
	#katsudo-news-list .swiper-button-next:after {
		right: 0;
	}
	#katsudo-news-list .swiper-button-prev:after {
		left: 0;
	}

    .katsudo-info.sans {
    	display: block;
    }

    .katsudo-info > dt {
    	text-align-last: auto;
    	width: fit-content;
    }

    .katsudo-info > dd {
    	width: auto;
    	margin-left: 1em;
    	font-size: 0.92em;
    	line-height: 1.8;
    }

    .btn + .btn {
    	margin: 25px 0 0;
    }

    .ext-link-wrap {
        margin: 40px auto;
    }

    .tanto-link {
    	font-size: 1em;
    }

    #pos3 {
    	padding: 50px 0;
    }

    .container.container--ukeire {
    	display: block;
    }

    .ukeire-heading {
    	margin: 10px auto 40px;
    	width: 20%;
    }

    .ukeire-heading * {
    	max-width: 100%;
    }

    .ukeire-content-wrap {
    	width: 100%;
    	margin: 0;
    }

    .oyasato-hinokishin-title, .yoboku-kosyukai-title,.onegaidutome-title {
    	font-size: 1.64em;
    	line-height: 1;
    }

	.onegaidutome-title {
		font-size: 6vw;
	}

    .ukeire-desc,.onegaidutome-desc {
    	font-size: 1em;
    	line-height: 1.7;
    }

    .oyasato-hinokishin-thumb {
    	margin: 30px auto;
    }

    .oyasato-hinokishin-info {
    	margin-bottom: 20px;
    	font-size: 1em;
    }

    .oyasato-hinokishin-info > dt {
    	font-size: 1em;
    }

    .oyasato-hinokishin-info > dd {
    	font-size: 0.92em;
    	line-height: 1.7;
    }

    .ukeire-content-wrap section:nth-of-type(n+2) {
        margin-top: 80px;
    }

	.oyasatokoenkai-data {
		font-size: 0.96em;
	}

    #yoboku-kosyukai .ext-link-wrap {
    	text-align: center;
    }

    .nensaikatsudo-heading img {
    	width: 20%;
    	margin: 30px auto 60px;
    }

    .nensaikatsudo-heading {
    	width: auto;
    }

    #pos4 {
    	padding: 50px 0;
    }

    .nensaikatsudo-article-thumb {
    	width: 80px;
    	height: 80px;
    	padding: 0;
    }

    .nensaikatsudo-article-thumb img {
    	object-fit: cover;
    	width: 100%;
    	height: 100%;
    }

    .nensaikatsudo-article-text {
    	width: calc(100% - 95px);
    	margin-right: 15px;
    }

    .nensaikatsudo-article {
    	padding: 10px 0;
    }

    .nensaikatsudo-article-title {
    	font-size: 1em;
    	margin-bottom: 10px;
    	line-height: 1.25;
    }

    .nensaikatsudo-article-tag {
    	font-size: 0.76em;
    	margin-bottom: 10px;
    }

    .nensaikatsudo-article-line {
    	margin: 10px auto;
    	margin-left: 0;
    }

    .nensaikatsudo-article-description {
    	font-size: 0.84em;
    	line-height: 1.6;
    }

    .more {
    	margin: 40px auto;
    }

    .kyosoden-footer {
    	padding: 50px 0;
    	margin-top: 0;
    }

    .manabu-heading {
    	font-size: 1.8em;
    	line-height: 1;
    	margin-bottom: 40px;
    }

    .hinagata-books-item img {
    	width: 100%;
    }

    .hinagata-books-item {
    	width: calc(33.33% - 20px);
    	margin: 0 10px 20px;
    }

    .manabu-books {
    	margin-bottom: -20px;
    }

    .download-heading {
        font-size: 1.8em;
    }

	.download-items > a {
		margin: 0 10px;
		font-size: 0.84em;
	}
	
	.download-items > a > img {
		width: 75%;
		margin-bottom: 15px;
	}

    .copyright {
    	font-size: 11px;
    }
}

@media (orientation: portrait) and (max-width: 480px){
	#top {
		background-size: auto 720px;
	}
}

@media (orientation: landscape) and (max-height: 480px){
	.lead-text {
		font-size: 3.5vh;
		margin-top: 20px;
	}
}
/* animation *
#top {
    position: absolute;
    z-index: 2;
}
#pos1 {
    transform: scale(1);
    opacity: 0;
}
.animated #top {
	transform: scale(1.8);
	opacity: 0;
	transition: transform 3s ease-in-out,opacity 2.5s ease-out 0.5s;
}

.animated #pos1 {
	transform: scale(1);
	opacity: 1;
	transition: transform 1.5s ease-out 2s,opacity 2s ease-out 2s;
}
/**/
