@charset "UTF-8";
/*variables*/
/******************************************************************************
 全てのページで共通するstyleの管理
******************************************************************************/
/*foundation*/
/******************************************************************************
 Default CSS Reset
******************************************************************************/
* {
	box-sizing: border-box;
	min-height: 0vw;
}

html {
	/* scroll-behavior: smooth; */
	scroll-padding-top: 7.5em;

}

@media screen and (max-width: 1024px) {
	html {
		scroll-padding-top: 4.3em;
	}
}

html,
body {
	position: relative;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
figure {
	margin: 0;
	padding: 0;
}

table {
	border-collapse: collapse;
	table-layout: fixed;
}

fieldset,
img {
	border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
	font-style: normal;
	font-weight: normal;
}

ol,
ul {
	list-style: none;
}

caption {
	text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

img {
	vertical-align: bottom;
	/* chormeで画像のぼやけ回避 */
	-webkit-backface-visibility: hidden;
	width: 100%;
	max-width: 100%;
}

/* iOSでのデフォルトスタイルをリセット */
input,
button,
select,
textarea {
	border-radius: 0;
	font: inherit;
	outline: none;
}

input[type=submit] {
	-webkit-appearance: none;
}

textarea {
	resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/******************************************************************************
root
******************************************************************************/

:root {
     /* Colors */
    --text-color: #000;
}

/******************************************************************************
 animate.css追加
******************************************************************************/
@-webkit-keyframes fadeInRightS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(5%, 0, 0);
        transform: translate3d(5%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInRightS {
    -webkit-animation-name: fadeInRightS;
    animation-name: fadeInRightS;
}

@-webkit-keyframes fadeInLeftS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-5%, 0, 0);
        transform: translate3d(-5%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInLeftS {
    -webkit-animation-name: fadeInLeftS;
    animation-name: fadeInLeftS;
}

@-webkit-keyframes fadeInUpS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUpS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUpS {
    -webkit-animation-name: fadeInUpS;
    animation-name: fadeInUpS;
}


@keyframes fadeInUpSS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 5%, 0);
        transform: translate3d(0, 5%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUpSS {
    -webkit-animation-name: fadeInUpSS;
    animation-name: fadeInUpSS;
}


@-webkit-keyframes fadeInDownS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -10%, 0);
        transform: translate3d(0, -10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInDownS {
    -webkit-animation-name: fadeInDownS;
    animation-name: fadeInDownS;
}


@-webkit-keyframes fadeInTopRightS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(10%, -10%, 0);
        transform: translate3d(10%, -10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInTopRightS {
    -webkit-animation-name: fadeInTopRightS;
    animation-name: fadeInTopRightS;
}


@-webkit-keyframes fadeInTopLeftS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(50%, 10%, 0);
        transform: translate3d(-50%, 10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}
@media screen and (max-width: 750px){
    @-webkit-keyframes fadeInTopLeftS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(5%, 3%, 0);
        transform: translate3d(-5%, 3%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}
}

.animate__fadeInTopLeftS {
    animation-duration: 2.5s;
    -webkit-animation-name: fadeInTopLeftS;
    animation-name: fadeInTopLeftS;
}

/******************************************************************************
General Setting
******************************************************************************/
body {
	margin: 0 auto;
	padding: 0;
	font-family: "Zen Old Mincho", serif, "Noto Sans JP", "メイリオ", Meiryo, sans-serif, YuGothic, "Yu Gothic", "游ゴシック体";
	font-weight: 500;
	color: var(--text-color);
	word-wrap: break-word;
	-webkit-font-smoothing: antialiased;
	font-size: clamp(14px, 0.83vw, 17px);
	letter-spacing: 0;
	line-height: 1;
	padding-right: 0;
	font-feature-settings: "palt";
	background: #1b4776;
}

a {
	margin: 0;
	padding: 0;
	font-family: "Zen Old Mincho", serif, "Noto Sans JP", "メイリオ", Meiryo, sans-serif, YuGothic, "Yu Gothic", "游ゴシック体";
	color: var(--text-color);
	outline: none;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:focus,
*:focus {
	outline: none;
}

button {
	appearance: none;
	-webkit-appearance: none;

	border: none;
	background: none;

	color: inherit;
	font: inherit;
}

/******************************************************************************
display component
******************************************************************************/
.c-block {
	display: block;
}

.c-inline {
	display: inline;
}

.c-iBlock {
	display: inline-block;
}

/*** none ***/
.c-pcNone {
	display: none;
}

.c-spNone {
	display: block;
}

.c-LNone {
	display: none;
}

.c-sp-ssBlock {
	display: none;
}

@media screen and (max-width: 768px) {
	.c-pcNone {
		display: block;
		line-height: 0;
	}

	.c-spNone {
		display: none;
	}
}

@media screen and (max-width: 425px) {
	.c-sp-ssBlock {
		display: block;
	}

	.c-sp-ssNone {
		display: none;
	}
}


/*layout*/
/******************************************************************************
 Layout
******************************************************************************/
.inner {
	width: min(1200px, 85%);
	margin: 0 auto;
}

/******************************************************************************
 header
******************************************************************************/
header {
	display: block;
	width: 100%;
	position: fixed;
	z-index: 1000;
}

.h-header {
	display: block;
	width: 100%;
	padding-bottom: 2vw;
	background: linear-gradient(0deg,rgba(27, 71, 118, 0) 0%, rgba(27, 71, 118, 1) 100%);
}

.h-header nav {
    display: block;
    width: 100%;
    padding-top: 1.3vw;
}

.h-header nav ul {
	display: grid;
    grid-template-columns: repeat(5, auto);
    gap: 0 6.5%;
    width: 100%;
    justify-content: end;
    margin-left: auto;
}

.h-header a {
	color: #deebf5;
	font-size: clamp(18px, 1.42vw, 20px);
}

.h-header a:hover {
	color: #cbdb2a;
}


@media screen and (max-width: 768px) {
	.h-header {
		padding-bottom: initial;
		background: initial;
	}

	.h-header .inner {
		width: 100vw;
	}

	.h-header nav {
		padding-top: initial;
	}

	.h-header #h-header-menu ul {
		grid-template-columns: repeat(2, auto);
        gap: 2em 10%;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin: 0 auto 15%;
        text-align: center;
        padding-top: 20vw;
	}

	#h-header-menu {
		display: none;
		padding-bottom: initial;
		height: 100vh;
		background: #1B4776;
	}
}

.h-hamburger-info-area {
	width: 100%;
	margin: 0 auto;
}

.h-hamburger-info-area .mv__txt-name {
	width: 13%;
	min-width: 70px;
	margin: 0 auto 2em;
}

.h-hamburger-info-area h1 {
	width: 25%;
	min-width: 150px;
	margin: 0 auto 3em;
}

.h-hamburger-info-area .mv__txt-copy01 {
	font-size: clamp(16px, 1.7vw, 25px);
    font-weight: 700;
    color: #cbdb2a;
    letter-spacing: 0.25em;
    text-align: center;
    margin: 0 auto 3em;
}

.h-hamburger-info-area .mv__txt-copy02 {
	font-size: clamp(15px, 1.52vw, 22px);
    font-weight: 700;
    color: #cbdb2a;
    text-align: center;
    margin: 0 auto 12%;
}

.h-hamburger-info-area .mv__btn {
	display: block;
    width: fit-content;
    background: #cbdb2a;
    font-size: clamp(20px, 1.59vw, 23px);
    font-weight: 800;
    color: #040a18;
    align-self: center;
    padding: 1.5em;
    margin: 0 auto;
}

#h-hamburger {
	background: #d9e4f1;
    z-index: 1500;
}

.h-hamburger-wrapper {
	position: absolute;
	top: 2vw;
    right: 3vw;
    cursor: pointer;
    width: 32px;
    height: 24px;
}

.h-hamburger-wrapper span {
    transition: all .3s;
    position: absolute;
    height: 2px;
    background-color: #cbdb2a;
    width:100%;
    z-index: 10;
}

.h-hamburger-wrapper span:nth-of-type(1) {
    top: 4px;
}

.h-hamburger-wrapper span:nth-of-type(2) {
    top: 12px;
}

.h-hamburger-wrapper span:nth-of-type(3) {
    top: 20px;
}

#h-hamburger.open span:nth-of-type(1) {
    top: 10px;
    transform: translateY(6px) rotate(-33deg);
}

#h-hamburger.open span:nth-of-type(2) {
    opacity: 0;
}

#h-hamburger.open span:nth-of-type(3) {
    top: 22px;
    transform: translateY(-6px) rotate(33deg);
}

/******************************************************************************
 main
******************************************************************************/
#kingdom .dive {
	display: block;
	background: linear-gradient(0deg,rgba(4, 10, 24, 1) 0%, rgba(27, 71, 118, 1) 76%);
	padding-bottom: 5%;
	overflow-x: clip;
}

#kingdom .mv {
	display: block;
	background: url(../images/mv__bg.png) no-repeat top center / cover;
	padding: 6% 0 27%;
	margin-bottom: 8%;
}

#kingdom .mv .mv__wrapper {
	display: grid;
	grid-template-columns: 38.5% auto;
	gap: 0 14%;
	align-items: center;
	width: 88%;
	margin-left: 9.5%;
}

#kingdom .mv .mv__gerbera {
	display: flex;
	align-items: center;
	width: 100%;
}

#kingdom .mv .mv__txt {
	display: block;
	width: fit-content;
}

#kingdom .mv .mv__txt-name {
	display: flex;
	align-items: center;
	width: 29.3%;
	margin: 0 auto 6.9%;
}

#kingdom .mv h1 {
	display: flex;
	width: 64.2%;
	margin: 0 auto 6.3%;
}

#kingdom .mv .mv__txt-copy01 {
	font-size: clamp(18px, 1.7vw, 25px);
	font-weight: 700;
	color: #cbdb2a;
	letter-spacing: 0.25em;
	text-align: center;
	margin: 0 auto 6.3%;
}

#kingdom .mv .mv__txt-copy02 {
	font-size: clamp(16px, 1.52vw, 22px);
	font-weight: 700;
	color: #cbdb2a;
	text-align: center;
	margin:  0 auto 19.5%;
}

#kingdom .mv .mv__txt-date {
	font-size: clamp(15px, 1.59vw, 23px);
	font-weight: 700;
	color: #FFF;
	letter-spacing: 0.04em;
	text-align: center;
	margin: 0 auto 9.6%;
}

#kingdom .mv .mv__txt-date span {
	font-size: clamp(22px, 2.43vw, 35px);
}

#kingdom .mv .mv__btn {
	display: block;
	width: fit-content;
	background: #cbdb2a;
	font-size: clamp(20px, 1.59vw, 23px);
	font-weight: 800;
	color: #040a18;
	align-self: center;
	padding: 1em 1.5em;
	margin: 0 auto;
}

#kingdom #news {
	display: block;
}

#kingdom #news h2 {
	display: block;
	width: fit-content;
	font-size: clamp(25px, 2.43vw, 35px);
	color: #f0f9fe;
	margin: 0 auto 2.6%;
	filter: drop-shadow(0 0 2px #032148) drop-shadow(0 0 2px #032148) drop-shadow(0 0 2px #032148) drop-shadow(0 0 5px #032148);
}

#kingdom #news .news__wrapper {
	display: block;
	width: 100%;
	position: relative;
}

#kingdom #news .news__wrapper::before {
	content: "";
    display: block;
    position: absolute;
    background: url(../images/news-bubble01.png) no-repeat center center / contain;
    width: 6.3vw;
    height: 3.3vw;
    top: -28%;
    left: -4%;
	z-index: 5;
}

#kingdom #news .news__wrapper::after {
	content: "";
    display: block;
    position: absolute;
    background: url(../images/news-bubble02.png) no-repeat center center / contain;
    width: 16.8vw;
    height: 26.2vw;
    bottom: -83%;
    right: -8%;
	z-index: 5;
}

#kingdom #news .news__container {
	border: solid 1px #f0f9fe;
	padding: 2% 0;
	filter: drop-shadow(0 0 2px #032148) drop-shadow(0 0 2px #032148) drop-shadow(0 0 2px #032148) drop-shadow(0 0 5px #032148);
}

#kingdom #news ul {
	display: block;
	width: 95%;
	margin: 0 auto;
}

#kingdom #news ul li {
	display: grid;
	grid-template-columns: 6em 1fr;
	gap: 0 1em;
	color: #f0f9fe;
	width: 100%;
}

#kingdom #news ul li a {
	color: #f0f9fe;
	text-decoration: underline;
}

#kingdom #news ul li:not(:last-of-type) {
	margin-bottom: 1.5em;
}

#kingdom #story {
	display: block;
	background: url(../images/kingdom-bg.jpg) no-repeat top center / cover;
	padding: 21% 0 39.5%;
}

#kingdom #story .story__wrapper {
	display: block;
	width: 50%;
	margin-left: auto;
	margin-right: 0;
}

#kingdom #story h2 {
	display: block;
	width: fit-content;
	font-size: clamp(25px, 2.43vw, 35px);
	color: #f0f9fe;
	margin: 0 auto 6.5% 0;
	filter: drop-shadow(0 0 2px #032148) drop-shadow(0 0 2px #032148) drop-shadow(0 0 2px #032148) drop-shadow(0 0 5px #032148);
}

#kingdom #story .story__txt {
	font-size: clamp(16px, 1.25vw, 18px);
	color: #f0f9fe;
	line-height: 1.6;
	text-align: justify;
	filter: drop-shadow(0 0 2px #032148) drop-shadow(0 0 2px #032148) drop-shadow(0 0 2px #032148) drop-shadow(0 0 5px #032148);
}

#kingdom .character {
	display: block;
	padding: 7.7% 0;
	background: #e6f6ff;
	border-top: solid 5px #67c4c7;
	border-bottom: solid 5px #67c4c7;
}

#kingdom .character .character-copy {
	font-size: 18px;
	font-weight: 700;
	color: #1b4776;
	letter-spacing: 0.2em;
	text-align: center;
	margin-bottom: 7.4%;
}

#kingdom .character .character__list {
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 3em 5%;
	align-items: center;
	justify-content: center;
	margin-bottom: 10%;
}

#kingdom .character .character__list-item {
	display: block;
}

#kingdom .character .character__list-item-face {
	display: block;
	width: 160px;
	margin: 0 auto 1em;
}

#kingdom .character .character__list-item-rubi {
	color: #1b4776;
	font-size: 14px;
	text-align: center;
	letter-spacing: 0;
	margin-bottom: 0.5em;
}

#kingdom .character .character__list-item-name {
	color: #1b4776;
	font-size: clamp(20px, 1.7vw, 25px);
	font-weight: 700;
	text-align: center;
	margin-bottom: 1em;
}

#kingdom .character .character__list-item-txt {
	color: #1b4776;
	font-size: 16px;
	text-align: center;
	line-height: 1.5;
}

#kingdom .character .character__bonus-txt {
	color: #1b4776;
	font-size: 18px;
	font-weight: 800;
	text-align: center;
	line-height: 1.5;
}

#kingdom .deep-sea {
	display: block;
	background: url(../images/deep-sea__bg.jpg) no-repeat top center / cover;
	padding: 11.2% 0 19%;
	overflow-x: hidden;
}

#kingdom #reviews {
	display: block;
	margin-bottom: 10%;
}

#kingdom #reviews h2 {
	display: block;
	width: fit-content;
	font-size: clamp(25px, 2.43vw, 35px);
	color: #f0f9fe;
	margin: 0 auto 5.8%;
	filter: drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 5px #0a3468);
}

#kingdom #reviews .reviews__slider {
	display: block;
	width: 82.5%;
	margin: 0 auto;
	filter: drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 5px #0a3468);
}

#kingdom #reviews .slick-track  {
	display: flex;
	align-items: center;
}

#kingdom #reviews .reviews__slider.reviews__slider-item {
	display: block;
}

#kingdom #reviews .reviews__slider-txt {
	font-size: clamp(16px, 1.25vw, 18px);
	color: #f0f9fe;
	line-height: 1.6;
	font-weight: 700;
	text-align: justify;
	margin-bottom: 1em;
}

#kingdom #reviews .reviews__slider-name {
	font-size: clamp(14px, 1.25vw, 18px);
	color: #f0f9fe;
	text-align: right;
}

#kingdom #reviews .slick-prev, .slick-next {
	width: 1.6vw;
	height: 2vw;
}

#kingdom #reviews .slick-prev {
	left: -5vw;
	top: 50%;
	transform: translateY(-50%);
}

#kingdom #reviews .slick-next {
	right: -5vw;
	top: 50%;
	transform: translateY(-50%);
}

#kingdom #reviews .slick-prev:before {
    content: '';
	display: block;
	position: absolute;
	background: url(../images/reviews__triangle-left.png) no-repeat center center / contain;
	width: 1.6vw;
	height: 2vw;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

#kingdom #reviews .slick-next:before {
    content: '';
	display: block;
	position: absolute;
	background: url(../images/reviews__triangle-right.png) no-repeat center center / contain;
	width: 1.6vw;
	height: 2vw;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

#kingdom #reviews .slick-num {
	display: block;
	width: fit-content;
	margin: 0 auto;
	font-size: clamp(18px, 1.38vw, 20px);
	color: #f0f9fe;
	margin-top: 5%;
}

#kingdom #reviews .reviews__video {
	display: block;
	width: 35%;
	margin: 10% auto 0;
}

#kingdom #reviews .reviews__video video {
	width: 100%;
}

#kingdom #message {
	display: block;
	margin-bottom: 10%;
}

#kingdom #message h2 {
	display: block;
	width: fit-content;
	font-size: clamp(25px, 2.43vw, 35px);
	color: #f0f9fe;
	margin: 0 auto 3%;
	filter: drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 5px #0a3468);
}

#kingdom #message .message__txt {
	font-size: clamp(16px, 1.25vw, 18px);
	color: #f0f9fe;
	line-height: 1.6;
	text-align: center;
	filter: drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 5px #0a3468);
}

#kingdom #profile {
	display: block;
}

#kingdom #profile h2 {
	display: block;
	width: fit-content;
	font-size: clamp(25px, 2.43vw, 35px);
	color: #f0f9fe;
	margin: 0 auto 5.8%;
	filter: drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 5px #0a3468);
}

#kingdom #profile .profile__wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0;
	align-items: center;
	filter: drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 5px #0a3468);
}

#kingdom #profile .profile__img {
	display: flex;
	align-items: center;
	width: 64.5%;
	margin: 0 auto;
}

#kingdom #profile .profile__txt-name {
	font-size: clamp(18px, 1.7vw, 25px);
	color: #f0f9fe;
	font-weight: 700;
	margin-bottom: 6.3%;
}

#kingdom #profile .profile__txt-main {
	font-size: clamp(16px, 1.25vw, 18px);
	color: #f0f9fe;
	line-height: 1.6;
	text-align: justify;
}

#kingdom .last__btn {
	display: block;
	width: fit-content;
	background: #cbdb2a;
	font-size: clamp(20px, 1.59vw, 23px);
	font-weight: 800;
	color: #040a18;
	align-self: center;
	padding: 1em 1.5em;
	margin: 10% auto 0;
}

footer {
	display: block;
	width: 100%;
	background: #1B4776;
	padding: 0.5em 0;
	font-size: 15px;
	color: #FFF;
	text-align: center;
}

@media screen and (max-width: 1024px) {
	#kingdom .mv {
		padding: 10% 0 30%;
	}

	#kingdom .mv .mv__wrapper {
		gap: 0;
		width: 90%;
	}

	#kingdom #reviews {
		margin-bottom: 15%;
	}

	#kingdom #message {
		display: block;
		margin-bottom: 15%;
	}
}

@media screen and (max-width: 768px) {
	#kingdom .mv {
        padding: 15% 0 30%;
    }
	
	#kingdom .mv .mv__wrapper {
		grid-template-columns: 1fr;
        width: 100%;
        margin-left: initial;
        position: relative;
	}
	
	#kingdom .mv .mv__txt {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		filter: drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 2px #0a3468) drop-shadow(0 0 5px #0a3468);
		will-change: filter;
		backdrop-filter: blur(1px);
        padding: 100% 0;
	}

	#kingdom .mv .mv__txt-copy01 {
		font-size: clamp(15px, 1.7vw, 25px);
	}

	#kingdom .mv .mv__txt-copy02 {
		font-size: clamp(15px, 1.52vw, 22px);
	}

	#kingdom #news .news__wrapper::before {
        width: 13.3vw;
        height: 8.3vw;
        top: -9%;
    }

	#kingdom #news .news__wrapper::after {
        width: 24.8vw;
        height: 37.2vw;
        bottom: -19%;
        right: -8%;
    }

	#kingdom #news .news__container {
        padding: 5% 0;
	}

	#kingdom #news ul {
		width: 90%;
	}

	#kingdom #news ul li {
		grid-template-columns: 1fr;
		gap: 0.5em 0;
	}

	#kingdom #news ul li p:nth-of-type(2) {
		line-height: 1.3;
	}

	#kingdom .character {
		padding: 10% 0;
	}

	#kingdom #story {
		display: flex;
		background: url(../images/kingdom-bg.jpg) no-repeat 9% center / cover;
		padding: initial;
		height: 616px;
	}

	#kingdom #story > div {
		display: block;
		width: 100%;
		height: 100%;
		backdrop-filter: blur(1px);
	}

	#kingdom #story .story__wrapper {
        width: 100%;
		text-shadow: 0 0 5px #032148, 0 0 5px #032148, 0 0 5px #032148, 0 0 5px #032148, 0 0 5px #032148, 0 0 5px #032148, 0 0 5px #032148;
		margin-top: 180px;
	}

	#kingdom #story h2 {
		margin: 0 auto 6.5%;
		filter: initial;
	}

	#kingdom #story .story__txt {
		filter: initial;
	}

	#kingdom .character .character__list {
        grid-template-columns: repeat(1, auto);
        gap: 5em 0%;
		margin-bottom: 15%;
	}

	#kingdom .character .character__list-item-face {
        width: 175px;
	}

	#kingdom .deep-sea {
		padding: 15% 0 25%;
	}

	#kingdom #reviews .slick-prev, .slick-next {
		width: 4.6vw;
		height: 5vw;
	}

	#kingdom #reviews .slick-prev {
		left: -9vw;
	}

	#kingdom #reviews .slick-prev:before {
		width: 4.6vw;
		height: 5vw;
	}

	#kingdom #reviews .slick-next {
		right: -9vw;
	}

	#kingdom #reviews .slick-next:before {
		width: 4.6vw;
		height: 5vw;
	}

	#kingdom #reviews {
        margin-bottom: 25%;
    }

	#kingdom #reviews .reviews__video {
		width: 100%;
        margin: 20% auto 0;
	}

	#kingdom #message {
        margin-bottom: 25%;
    }

	#kingdom #profile .profile__wrapper {
		grid-template-columns: repeat(1, 1fr);
		gap: 3em 0;
	}

	#kingdom #profile .profile__img {
		width: 40%;
	}

	#kingdom #profile .profile__txt-name {
		margin-bottom: 5%;
		text-align: center;
	}

	#kingdom .last__btn {
		margin: 15% auto 0;
	}

}