/* リキッドレイアウト対応 */

body {
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
}

.u-mobile {
	display: none;
}

html {
	font-size: 62.5%;
}

/* pcの電話番号発信対応 */

a[href^="tel:"] {
	pointer-events: none;
}

/* ホバー */

a {
	color: inherit;
	text-decoration: none;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
	-webkit-filter: blur(10px);
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

.button {
	background-color: #78BCCC;
	border: 3px solid #78bccc;
	border-radius: 9999px;
	color: #fff;
	display: inline-block;
	font-family: "Jost", sans-serif;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 0.3em;
	line-height: 1;
	padding: 24px;
	padding: 2.4rem;
	position: relative;
	text-transform: uppercase;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 305px;
	width: 30.5rem;
}

.button:hover {
	background-color: #fff;
	color: #78BCCC;
}

.button::after {
	background-image: url(../img/button_arrow_white.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 10px;
	height: 1rem;
	position: absolute;
	right: 24px;
	right: 2.4rem;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 14px;
	width: 1.4rem;
}

.button:hover::after {
	background-image: url(../img/button_arrow_blue.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	right: 16px;
	right: 1.6rem;
}

.card {
	background: #fff;
	border: 1px solid #000;
	border-radius: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 32px 30px 20px;
	padding: 3.2rem 3rem 2rem;
	position: relative;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

.card::before,
.card::after {
	border: solid #231815;
	content: "";
	height: 36px;
	height: 3.6rem;
	position: absolute;
	width: 36px;
	width: 3.6rem;
}

.card::before {
	border-top-left-radius: 10px;
	border-width: 3px 0 0 3px;
	left: -2px;
	top: -2px;
}

.card::after {
	border-bottom-right-radius: 10px;
	border-width: 0 3px 3px 0;
	bottom: -2px;
	right: -2px;
}

.card__img {
	aspect-ratio: 1/1;
	border-radius: 5px;
	display: block;
	line-height: 0;
	overflow: hidden;
}

.card__img img {
	-o-object-fit: cover;
	border-radius: 5px;
	display: block;
	height: 100%;
	max-width: 100%;
	object-fit: cover;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 100%;
}

.card:hover .card__img img {
	-webkit-transform: scale(1.06);
	transform: scale(1.06);
}

.card:hover {
	background-image: url(../img/card_bg.png);
	height: 100%;
	width: 100%;
}

.card__body {
	margin-top: 14px;
	margin-top: 1.4rem;
}

.card__date {
	font-family: "Jost", sans-serif;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 300;
	letter-spacing: 0.1em;
	line-height: 1;
}

.card__title {
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.21428571;
	margin-top: 8px;
	margin-top: 0.8rem;
}

.card02 {
	background: #fff;
	border: 1px solid #000;
	border-radius: 5px;
	padding: 10px;
	padding: 1rem;
	position: relative;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

.card02__img {
	aspect-ratio: 1/1;
	border-radius: 5px;
	display: block;
	line-height: 0;
	overflow: hidden;
}

.card02__img img {
	-o-object-fit: cover;
	border-radius: 5px;
	display: block;
	height: 100%;
	max-width: 100%;
	object-fit: cover;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 100%;
}

.card02:hover .card02__img img {
	-webkit-transform: scale(1.06);
	transform: scale(1.06);
}

.card02__time {
	line-height: 1;
	margin-top: 10px;
    margin-top: 1rem;
}

.card02__time-start,
.card02__time-end {
	font-size: 22px;
	font-size: 2.2rem;
	display: inline-block;
	width: fit-content;
	font-family: "Jost", sans-serif;
	font-weight: 500;
}

.card02__time-start {
	padding-right: 30px;
	padding-right: 3rem;
	position: relative;
}

.card02__time-start::after {
	content: '-';
	position: absolute;
    top: 50%;
    right: -10px;
    right: 1rem;
    transform: translate(0, -50%);
}

.drawer-menu {
	-webkit-overflow-scrolling: touch;
	background-color: #fff;
	display: none;
	height: auto;
	left: 0;
	overflow: scroll;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 5000;
}

.drawer-menu__inner {
	padding-top: 110px;
	padding-top: 11rem;
}

.drawer-menu__items {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.drawer-menu__link {
	gap: 10px;
	gap: 1rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-right: 1px solid #D3D3D3;
	border-top: 1px solid #D3D3D3;
	color: #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: 500;
	height: 100px;
	height: 10rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	line-height: 1;
	padding-bottom: 23px;
	padding-bottom: 2.3rem;
	padding-top: 20px;
	padding-top: 2rem;
	text-align: center;
	width: 33.3333333333%;
}

.drawer-menu__link:hover {
	background: url(../img/card_bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	opacity: 1;
}

.drawer-menu__link:nth-of-type(3),
.drawer-menu__link:nth-of-type(6) {
	border-right: none;
}

.drawer-menu__link:nth-of-type(2) .drawer-menu__nav-icon,
.drawer-menu__link:nth-of-type(4) .drawer-menu__nav-icon {
	width: 23px;
	width: 2.3rem;
}

.drawer-menu__link.large {
	width: 100%;
}

.drawer-menu__nav-icon {
	position: relative;
}

.drawer-menu__link:hover .drawer-menu__nav-icon img:first-of-type {
	opacity: 0;
}

.drawer-menu__nav-icon img:last-of-type {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
}

.drawer-menu__link:hover .drawer-menu__nav-icon img:last-of-type {
	opacity: 1;
}

.drawer-menu__nav-icon img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.drawer-menu__sns {
	background-color: #000;
	height: inherit;
	padding: 27px 25px 30px;
	padding: 2.7rem 2.5rem 3rem;
	width: 100%;
}

.drawer-menu__sns-title {
	border-bottom: 1px solid #fff;
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.3em;
	line-height: 1;
	padding-bottom: 20px;
	padding-bottom: 2rem;
	text-align: center;
	text-transform: uppercase;
}

.drawer-menu__sns-icon-block {
	gap: 33px;
	gap: 3.3rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 27px;
	margin-top: 2.7rem;
	padding-bottom: 24px;
	padding-bottom: 2.4rem;
}

.drawer-menu__sns-link {
	position: relative;
	top: 0;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 25px;
	width: 2.5rem;
}

.drawer-menu__sns-link:hover {
	opacity: 1;
	top: -3px;
	top: -0.3rem;
}

.footer {
	background-color: #000;
	color: #fff;
	margin-top: -10px;
	margin-top: -1rem;
	padding-bottom: 42px;
	padding-bottom: 4.2rem;
	padding-top: 20px;
	padding-top: 2rem;
	position: relative;
}

.footer__waves {
	height: 140px;
	height: 14rem;
	margin-top: 20px;
	margin-top: 2rem;
}

.footer__wave {
	height: 100%;
	width: 100%;
}

.footer__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1400px;
	max-width: 140rem;
	padding-left: 100px;
	padding-left: 10rem;
	padding-right: 100px;
	padding-right: 10rem;
	width: 100%;
}

.footer__logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 147px;
	margin-top: 14.7rem;
	position: relative;
	top: 0;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 272px;
	width: 27.2rem;
}

.footer__logo:hover {
	top: -3px;
	top: -0.3rem;
}

.footer__top-button {
	gap: 10px;
	gap: 1rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: fixed;
	right: 20px;
	right: 2rem;
	z-index: 10;
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

.footer__top-button.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

.footer__top-button.DownMove {
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

.footer__top-button img {
	position: relative;
	top: 0;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 54px;
	width: 5.4rem;
}

.footer__top-button:hover {
	opacity: 1;
}

.footer__top-button:hover img {
	top: -3px;
	top: -0.3rem;
}

.top-button__text {
	color: #000;
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
	text-transform: uppercase;
}

.footer__flex {
	gap: 150px;
	gap: 15rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.footer__list {
	width: 50%;
}

.footer__link {
	color: #fff;
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 400;
	left: 0;
	padding-bottom: 13px;
	padding-bottom: 1.3rem;
	padding-left: 20px;
	padding-left: 2rem;
	padding-top: 13px;
	padding-top: 1.3rem;
	position: relative;
	-webkit-transition: left 0.4s ease-in-out;
	transition: left 0.4s ease-in-out;
}

.footer__link:hover {
	left: 6px;
	left: 0.6rem;
}

.footer__link::before {
	background-image: url(../img/arrow_white.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 10px;
	height: 1rem;
	left: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	width: 10px;
	width: 1rem;
}

.footer__right {
	margin-top: 10px;
	margin-top: 1rem;
}

.footer__company {
	border-bottom: 1px solid #D3D3D3;
	font-size: 14px;
	font-size: 1.4rem;
	padding-bottom: 16px;
	padding-bottom: 1.6rem;
	display: block;
	width: 100%;
}

.footer__right-lists {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.footer__copyright {
	color: #fff;
	display: block;
	font-family: "Jost", sans-serif;
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1;
	margin-top: 63px;
	margin-top: 6.3rem;
	text-align: center;
}

.header {
	background-color: #fff;
	height: 90px;
	height: 9rem;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.header__inner {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-left: 115px;
	padding-left: 11.5rem;
}

.header__name {
	margin-right: auto;
}

.header__logo-link {
	position: relative;
	top: 0;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}

.header__logo-link:hover {
	top: -3px;
	top: -0.3rem;
}

.header__logo {
	width: 230px;
	width: 23rem;
}

.header__nav {
	height: inherit;
	margin-right: 20px;
	margin-right: 2rem;
}

.header__items {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
}

.header__link {
	gap: 10px;
	gap: 1rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-image: none;
	border-radius: 5px;
	color: #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 400;
	height: inherit;
	height: 95px;
	height: 9.5rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-right: 24px;
	margin-right: 2.4rem;
	width: 95px;
	width: 9.5rem;
}

.header__link:last-of-type {
	margin-right: 0;
}

.header__link:hover {
	background-image: url(../img/on.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
}

.header__nav-icon {
	position: relative;
	width: 34px;
	width: 3.4rem;
}

.header__link:hover .header__nav-icon img:first-of-type {
	opacity: 0;
}

.header__nav-icon img:last-of-type {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
}

.header__link:hover .header__nav-icon img:last-of-type {
	opacity: 1;
}

.header__link:nth-of-type(2) .header__nav-icon,
.header__link:nth-of-type(4) .header__nav-icon {
	width: 28px;
	width: 2.8rem;
}

.header__sns {
	background-color: #000;
	height: inherit;
	padding: 15px 15px 0;
	padding: 1.5rem 1.5rem 0;
	width: 305px;
	width: 30.5rem;
}

.header__sns-title {
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.3em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.header__sns-icon-block {
	gap: 27px;
	gap: 2.7rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 23px;
	margin-top: 2.3rem;
}

.header__sns-link {
	position: relative;
	top: 0;
	-webkit-transition: top 0.4s ease-in-out;
	transition: top 0.4s ease-in-out;
	width: 20.5px;
	width: 2.05rem;
}

.header__sns-link:hover {
	top: -2px;
	top: -0.2rem;
}

.hamburger {
	background-color: #000;
	cursor: pointer;
	height: 56px;
	height: 5.6rem;
	position: fixed;
	right: 0;
	top: 0;
	width: 56px;
	width: 5.6rem;
	z-index: 9999;
}

.hamburger.is-active {
	right: 0;
	top: 0;
}

.hamburger span {
	background-color: #fff;
	display: inline-block;
	height: 1px;
	left: 13px;
	left: 1.3rem;
	position: absolute;
	-webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
	transition: background-color 0.3s, -webkit-transform 0.3s;
	transition: transform 0.3s, background-color 0.3s;
	transition: transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
	width: 30px;
	width: 3rem;
}

.hamburger.is-active span {
	background-color: #fff;
}

.hamburger span:nth-child(1) {
	top: 23px;
	top: 2.3rem;
}

.hamburger span:nth-child(2) {
	top: 33px;
	top: 3.3rem;
}

.hamburger.is-active span:nth-child(1) {
	top: 30px;
	top: 3rem;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.hamburger.is-active span:nth-child(2) {
	top: 30px;
	top: 3rem;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.ikari {
	-o-object-fit: cover;
	height: 260px;
	height: 26rem;
	left: 70px;
	left: 7rem;
	object-fit: cover;
	position: absolute;
	top: 0;
	-webkit-transform-origin: center top;
	transform-origin: center top;
	width: 173px;
	width: 17.3rem;
	z-index: 30;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1230px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.item {
	background: #fff;
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 400px;
	height: 40rem;
	position: relative;
}

.item::before {
	background: url(../img/Broadcast.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 60px;
	height: 6rem;
	left: -25px;
	left: -2.5rem;
	position: absolute;
	top: -5px;
	top: -0.5rem;
	width: 200px;
	width: 20rem;
	z-index: 20;
}

.item__text-block {
	padding: 65px 18px 40px 50px;
	padding: 6.5rem 1.8rem 4rem 5rem;
	width: 50%;
}

.item__text {
	font-size: 20px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
}

.item__title {
	font-size: 35px;
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.37;
	margin-top: 40px;
	margin-top: 4rem;
}

.item__sub {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #78BCCC;
	border-radius: 5px;
	color: #fff;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	font-size: 15px;
	font-size: 1.5rem;
	font-weight: 700;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 20px;
	margin-top: 2rem;
	padding: 3px;
	padding: 0.3rem;
}

.item__img {
	aspect-ratio: 1/1;
	width: 50%;
}

.item__img img {
	-o-object-fit: cover;
	border-bottom-right-radius: 10px;
	border-top-right-radius: 10px;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.news {
	padding-bottom: 90px;
	padding-bottom: 9rem;
	padding-top: 40px;
	padding-top: 4rem;
	position: relative;
}

/* .news::after {
	background: url(../img/radio_lush_textbg.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 100%;
	position: absolute;
	right: 12px;
	right: 1.2rem;
	top: 19px;
	top: 1.9rem;
	width: 12%;
	z-index: -1;
} */

.news__bg {
	position: absolute;
	width: 12%;
	height: 100%;
	right: 12px;
	right: 1.2rem;
	top: 19px;
	top: 1.9rem;
	z-index: -1;
	max-width: 16rem;
}

.news__bg img {
	width: 100%;
	object-fit: contain;
	min-height: 50%;
	padding-top: 8vh;
}

.news__bg img:first-child {
	animation: loop 50s -25s linear infinite;
}

.news__bg img:last-child {
	animation: loop2 50s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateY(100%);
    }
    to {
        transform: translateY(-100%);
    }
}
@keyframes loop2 {
    0% {
        transform: translateY(0);
    }
    to {
        transform: translateY(-200%);
    }
}

.news__title-bg {
	background-color: #78BCCC;
	position: relative;
	z-index: 3;
}

.news__inner {
	margin-top: 58px;
	margin-top: 5.8rem;
}

.news__cards {
	gap: 50px;
	gap: 5rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.news__button-block {
	margin-top: 50px;
	margin-top: 5rem;
	text-align: center;
}

.official {
	margin-top: 77px;
	margin-top: 7.7rem;
	position: relative;
}

.official__top-bg {
	height: 193px;
	height: 19.3rem;
	left: 0;
	position: absolute;
	top: -170px;
	top: -17rem;
	width: 100%;
}

.official__top-bg img {
	-o-object-fit: cover;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.official__waves {
	height: 140px;
	height: 14rem;
	margin-top: -80px;
	margin-top: -8rem;
}

.official__wave {
	height: 100%;
	width: 100%;
}

.official__inner {
	padding-top: 70px;
	padding-top: 7rem;
}

.official__contents {
	gap: 68px;
	gap: 6.8rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 70px;
	margin-top: 7rem;
}

.official__icon {
	display: inline-block;
	height: auto;
	position: relative;
	top: 0;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 42px;
	width: 4.2rem;
}

.official__icon:hover {
	top: -3px;
	top: -0.3rem;
}

.official__icon img {
	-o-object-fit: cover;
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.partners {
	margin-top: 77px;
	margin-top: 7.7rem;
	overflow: hidden;
}

.partners__title-bg {
	background-image: url(../img/wave_bg.png);
	background-position: 10% center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 300px;
	height: 30rem;
	position: relative;
	top: 0;
	width: 110%;
	z-index: 3;
}

.partners__title {
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-5%, -50%);
	transform: translate(-5%, -50%);
}

.partners__contents {
	gap: 65px 153px;
	gap: 6.5rem 15.3rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-left: auto;
	margin-right: auto;
	margin-top: 145px;
	margin-top: 14.5rem;
	max-width: 800px;
	max-width: 80rem;
	width: 100%;
}

.partners__banner {
	aspect-ratio: 5/1;
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
	max-width: 200px;
	max-width: 20rem;
	position: relative;
	top: 0;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 100%;
}

.partners__banner:hover {
	top: -3px;
	top: -0.3rem;
}

.partners__banner img {
	-o-object-fit: contain;
	display: block;
	height: 100%;
	max-width: 100%;
	object-fit: contain;
	width: 100%;
}

.recommend {
	padding: 80px 0;
	padding: 8rem 0;
}

.recommend__title {
	font-family: "Jost", sans-serif;
	font-size: 35px;
	font-size: 3.5rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
	text-align: center;
}

.recommend__contents {
	margin-top: 55px;
	margin-top: 5.5rem;
}

.recommend__cards {
	gap: 20px;
	gap: 2rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.section-title {
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: 50px;
	font-size: 5rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	z-index: 5;
}

.section-title.section-title--gray {
	color: #D3D3D3;
}

.slide {
	background-color: #F2F2F2;
	height: auto;
	padding: 27px 0 40px 0;
	padding: 2.7rem 0 4rem 0;
	position: relative;
}

.slide__waves {
	height: 100px;
	height: 10rem;
}

.slide__waves.slide__waves--flipped {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.slide__wave {
	height: 100%;
	width: 100%;
}

.swiper-pagination-bullet {
	background: #000;
	border-radius: 50%;
	display: inline-block;
	height: 8px;
	opacity: 1;
	width: 8px;
}

.swiper-pagination-bullet-active {
	background: #000;
	opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 12px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 15px;
	bottom: 1.5rem;
	left: 0;
	top: auto;
	width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #000;
	border-radius: 2px;
	color: var(--swiper-theme-color);
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 50px;
	height: 5rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: calc(var(--swiper-navigation-size) / -2);
	position: absolute;
	top: 50%;
	width: 50px;
	width: 5rem;
	z-index: 10;
}

.swiper-button-next::before,
.swiper-button-prev::before {
	background-image: url(../img/white_arrow.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 13px;
	height: 1.3rem;
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 18px;
	width: 1.8rem;
}

.swiper-button-prev::before {
	-webkit-transform: translate(-50%, -50%) rotate(-180deg);
	transform: translate(-50%, -50%) rotate(-180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: 100px;
	left: 10rem;
	right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	left: auto;
	right: 100px;
	right: 10rem;
}

.time-table {
	overflow: hidden;
	margin-top: 80px;
	margin-top: 8rem;
}

.time-table__title-bg {
	background-image: url(../img/wave_bg.png);
	background-position: 10% center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 300px;
	height: 30rem;
	position: relative;
	top: 0;
	width: 110%;
	z-index: 3;
}

.time-table__title {
	left: 45%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.time__table-bg {
	background-color: #F2F2F2;
	margin-top: -100px;
	margin-top: -10rem;
	padding-bottom: 100px;
	padding-bottom: 10rem;
	padding-top: 100px;
	padding-top: 10rem;
}

.time-table__contents {
	margin-top: 70px;
	margin-top: 7rem;
}

.time-table__cards {
	gap: 20px;
	gap: 2rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.title-waves {
	height: 140px;
	height: 14rem;
}

.title-waves.title-waves--flipped {
	margin-top: -30px;
	margin-top: -3rem;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.title-wave {
	height: 100%;
	width: 100%;
}

@media screen and (min-width: 1440px) {

.official__top-bg {
	height: 25.3rem;
}

.official__inner {
	padding-top: 17rem;
}

.partners__title-bg {
	height: 40rem;
	top: 4rem;
}

.time-table__title-bg {
	height: 40rem;
	top: 4rem;
}

}

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

.header__inner {
	padding-left: 2rem;
}

.header__logo {
	width: 20rem;
}

.header__nav {
	margin-right: 0.8rem;
}

.header__link {
	font-size: 1.1rem;
	height: 8rem;
	margin-right: 0.8rem;
	width: 8rem;
}

.header__nav-icon {
	width: 2rem;
}

.header__link:nth-of-type(2) .header__nav-icon,
.header__link:nth-of-type(4) .header__nav-icon {
	width: 1.5rem;
}

.header__sns {
	width: 25.5rem;
}

}

@media (max-width: 1024px) {

html {
	font-size: 0.9765625vw;
}

}

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

.footer__flex {
	gap: 8rem;
}

.item__text-block {
	padding: 6.5rem 1.8rem 2.4rem 2.4rem;
}

.news__cards {
	gap: 2.4rem;
}

.recommend__cards {
	gap: 1rem;
}

.time-table__cards {
	gap: 1rem;
}

}

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

.u-desktop {
	display: none;
}

.u-mobile {
	display: block;
}

a[href^="tel:"] {
	pointer-events: auto;
}

a:hover {
	opacity: 0.8;
}

.button {
	padding: 1.7rem;
	width: 23.5rem;
}

.card {
	gap: 2rem;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	padding: 1.5rem 1.3rem 1.5rem 1.8rem;
}

.card__img {
	width: 35%;
}

.card__body {
	margin-top: 0;
	width: 50%;
}

.card__date {
	font-size: 1rem;
}

.card__title {
	font-size: 1.2rem;
	line-height: 1.16666667;
}

.card02 {
	padding: 1.9rem;
}

.footer__waves {
	height: 7rem;
}

.footer__inner {
	padding-left: 2rem;
	padding-right: 2rem;
}

.footer__logo {
	margin-top: 9.4rem;
	width: 20rem;
}

.footer__flex {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.footer__right-lists .footer__list {
	width: 100%;
}

.header {
	height: 6rem;
}

.header__inner {
	padding-left: 1.2rem;
}

.header__name {
	left: 1.2rem;
	position: fixed;
	top: 0.8rem;
	z-index: 9999;
}

.ikari {
	height: 15rem;
	left: 2rem;
	width: 10rem;
}

.inner {
	padding-left: 20px;
	padding-right: 20px;
}

.item {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: auto;
}

.item::before {
	/* display: none; */
	left: initial;
	right: 0;
	top: 15px;
	top: 1.5rem;

}

.item__text-block {
	height: 16.5rem;
	padding: 2.5rem;
	width: 100%;
}

.item__text {
	font-size: 1.4rem;
}

.item__title {
	font-size: 2.4rem;
	line-height: 1.25;
	margin-top: 1.6rem;
}

.item__sub {
	font-size: 1.2rem;
	margin-top: 1rem;
}

.item__img {
	width: 100%;
}

.item__img img {
	border-bottom-left-radius: 10px;
	border-top-right-radius: 0;
}

.news {
	padding-bottom: 6rem;
}

.news::after {
	content: "";
	display: none;
}

.news__inner {
	margin-top: 4rem;
}

.news__cards {
	gap: 1rem;
	grid-template-columns: repeat(1, 1fr);
	margin-left: auto;
	margin-right: auto;
	max-width: 45rem;
	width: 100%;
}

.news__button-block {
	margin-top: 2.5rem;
}

.official {
	background-color: #fff;
	margin-top: 0rem;
	padding-top: 5rem;
}

.official__top-bg {
	height: 12.3rem;
	top: -6rem;
}

.official__waves {
	height: 7rem;
}

.official__contents {
	gap: 3.8rem;
	margin-top: 3.5rem;
}

.official__icon {
	width: 2.8rem;
}

.partners {
	margin-top: 3.5rem;
}

.partners__title-bg {
	height: 18rem;
}

.partners__contents {
	gap: 5rem;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 7.4rem;
}

.partners__banner {
	width: 12.8rem;
}

.recommend__title {
	font-size: 2.7rem;
}

.recommend__contents {
	margin-top: 4rem;
}

.recommend__cards {
	grid-template-columns: repeat(1, 1fr);
	margin-left: auto;
	margin-right: auto;
	max-width: 40rem;
	width: 100%;
}

.section-title {
	font-size: 2.4rem;
}

.slide {
	padding: 4rem 0;
}

.slide__inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 2rem;
	padding-right: 2rem;
	width: 100%;
}

.slide__waves {
	height: 4rem;
}

.swiper-pagination-bullet {
	height: 6px;
	width: 6px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
}

.swiper-button-next,
.swiper-button-prev {
	height: 3rem;
	top: 20%;
	width: 3rem;
}

.swiper-button-next::before,
.swiper-button-prev::before {
	height: 1rem;
	width: 1.4rem;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: 0;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: 0;
}

.time-table {
	margin-top: 6rem;
}

.time-table__title-bg {
	height: 18rem;
}

.time__table-bg {
	padding-bottom: 7rem;
}

.time-table__contents {
	margin-top: 2.7rem;
}

.time-table__cards {
	grid-template-columns: repeat(1, 1fr);
	margin-left: auto;
	margin-right: auto;
	max-width: 40rem;
	width: 100%;
}

.title-waves {
	height: 9rem;
}

}

@media (max-width: 768px) {

html {
	font-size: 62.5%;
}

}

@media (max-width: 375px) {

html {
	font-size: 2.6666666667vw;
}

}


/*# sourceMappingURL=styles.css.map */

/* LOW PAGE */
main#content {
    margin-top: 90px;
    position: relative;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex_2culm {
	width: 48%;
	margin-right: 4%;
}
.flex_2culm:nth-child(2n) {
	margin-right: 0%;
}
.flex_3culm {
	width: 30.66666%;
	margin-right: 4%;
}
.flex_3culm_sp4:nth-child(4) {
	display: none;
}
.flex_3culm:nth-child(3n) {
	margin-right: 0%;
}
.flex_3culm_nopadding {
	margin: 0;
	width: 33.333%;
}
.flex_4culm {
	width: 22%;
	margin-right: 4%;
}
.flex_4culm:nth-child(4n) {
	margin-right: 0%;
}
.maxwidth {
	max-width: 1220px;
	margin: 0 auto;
	padding: 0 2rem;
}
.mainimg {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: fit-content;
}
.mainimg:before {
	content: "";
	display: block;
	padding-top: 100%;
}
.mainimg img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
	transition:all 0.5s ease;
}
a:hover .mainimg img {
	transform: translate(-50%, -50%) scale(1.1);
}
.breadcrumbs {
    color: #A0A0A0;
    font-size: 11px;
}
.breadcrumbs span {
    color: #A0A0A0;
    margin: 0 0.3em;
}
.breadcrumbs a span {
    color: #000;
}
.breadcrumbs>span:first-child {
    margin: 0;
}
.breadcrumbs>span:first-child span {
    margin: 0 0.3em 0 0;
}
.low_page__hd {
    margin-top: 30px;
    position: relative;
    margin-bottom: 50px;
}
.low_page__hd--ttl {
    position: absolute;
    width: 100%;
    text-align: center;
    top: calc(50% - 25px);
}
.low_page__hd--ttl h1 {
    color: #fff;
    font-family: "Jost", sans-serif;
    font-size: 50px;
    font-size: 5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    z-index: 5;
}
.low_pagenation {
    max-width: 1200px;
    margin: 0em auto 0em;
    padding: 0 2%;
    text-align: center;
    font-family: "Jost", sans-serif;
    font-size: 14px;
}
.wp-pagenavi {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0em;
}
span.current {
    padding: 0em 0em 0!important;
    margin-right: 1em!important;
    color: #42403F;
    background: unset;
    border: none!important;
    border-bottom: 2px solid #42403F!important;
    width: 1.5em;
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}
a.page.larger {
    padding: 0em 0em 0!important;
    margin-right: 1em!important;
    color: #42403F;
    background: unset;
    border: none!important;
    border-bottom: 2px solid #fff!important;
    width: 1.5em;
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}
a.page.smaller {
    padding: 0em 0em 0!important;
    margin-right: 1em!important;
    color: #42403F;
    background: unset;
    border: none!important;
    border-bottom: 2px solid #fff!important;
    width: 1.5em;
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}
a.page.larger:hover {
    border-bottom: 2px solid #42403F!important;
}
a.page.smaller:hover {
    border-bottom: 2px solid #42403F!important;
}
.low_page_recommend {
    background: #F2F2F2;
    margin: 100px 0 0;
    padding: 80px 0;
}
.low_page_recommend__main h2 {
    text-align: center;
    font-family: "Jost", sans-serif;
    font-size: 35px;
    font-weight: 500;
}
.low_page_recommend__archive {
    margin: 40px 0;
}
.low_page_recommend__button-block {
    text-align: center;
}
.low_page_recommend__archive--content {
    background: #fff;
    border: solid 1px #000;
    border-radius: 5px;
	position: relative;
	height: fit-content;
	padding: 10px;
    padding: 1rem;
}
.low_page_recommend__archive--content img {
	max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}
.low_page_recommend__archive--content div {
	margin-top: 10px;
	margin-top: 1rem;
	font-size: 20px;
	font-size: 2rem;
	line-height: 1.4;
}
.sp_only {
	display: none;
}
/* NEWS */
.news_page::after {
    background: url(../img/radio_lush_textbg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 100%;
    position: absolute;
    right: 12px;
    right: 1.2rem;
    top: 19px;
    top: 1.9rem;
    width: 12%;
    z-index: -1;
}
.news__search--archive {
    justify-content: center;
    margin: 50px 0;
}
.news__search--archive a {
    border: solid 1px #000;
    padding: 0.5em 2em;
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    height: 40px;
    font-size: 15px;
    margin: 0 1em;
    font-family: "Jost", sans-serif;
}
.news__search--archive a:hover {
    background: #000;
    color: #fff;
}
.news__search--archive a.active {
    background: #000;
    color: #fff;
}
.news__archive--content {
    border: solid 1px #000;
    position: relative;
    padding: 30px 20px;
    border-radius: 5px;
    margin-bottom: 40px;
	width: 22.75%;
    margin-right: 3%;
}
.news__archive--img {
    border-radius: 5px;
}
.news__archive--taxonomy {
    font-family: "Jost", sans-serif;
    position: absolute;
    top: 0;
    right: 0;
    background: #000;
    color: #fff;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    border-radius: 0 0 0 5px;
}
.news__archive--description {
    margin: 10px 0 0;
}
.news__archive--date {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 13px;
}
.news__archive--ttl {
    font-size: 14px;
}
.low_news__description--taxonomy {
    border: solid 1px #000;
    padding: 0.5em 2em;
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    height: 40px;
    font-size: 15px;
    margin: 0 0 1em;
    font-family: "Jost", sans-serif;
    background: #000;
}
.low_news__description--ttl h1 {
    font-size: 30px;
    margin-bottom: 50px;
}
.low_news__main--thumbnail {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: fit-content;
    max-width: 400px;
    margin: 0 auto;
}
.low_news__main--thumbnail:before {
    content: "";
    display: block;
    padding-top: 100%;
}
.low_news__main--thumbnail img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
	max-width: none;
	min-height: 100%;
    object-fit: cover;
}
.news__search--archive a.active_hover {
    background: #000;
    color: #fff;
}
.low_news__main--thumbnail {
    margin-bottom: 40px;
}
.low_news__main h2 {
    font-size: 25px;
    margin: 20px 0 20px;
}
.low_news__main h3 {
    font-size: 20px;
    margin: 20px 0 20px;
}
.low_news__main h4 {
    font-size: 18px;
    margin: 20px 0 20px;
}
.low_news__main p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.8;
}
.low_news__main blockquote {
    border: solid 1px #000;
    padding: 30px;
    margin-bottom: 40px;
}
.low_news__main blockquote p {
    margin-bottom: 0;
}
.low_news__main p a {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-decoration-color: #1f5a89;
    color: #1f5a89;
}
.low_news__main ul {
    counter-reset: item;
    list-style-type: none;
    margin: 0px 0 50px;
    font-size: 14px;
}
.low_news__main ul li {
    counter-increment: item;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.low_news__main ul li:before {
    content: "";
    background: #000;
    color: #fff;
    border-radius: 100%;
    width: 1em;
    height: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5em;
}
.low_news__main ol {
    counter-reset: item;
    list-style-type: none;
    margin: 0px 0 50px;
    font-size: 14px;
}
.low_news__main ol li {
    counter-increment: item;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.low_news__main ol li:before {
    content: counter(item) ".";
    width: 1.5em;
    height: 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5em;
}
.low_page_news__button_area {
    justify-content: center;
}
.low_page_news__prev-button-block {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-right: 70px;
	width: 70px;
}
.low_page_news__next-button-block {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-left: 70px;
	width: 70px;
}
.low_news__main table {
    width: 100%;
    border-collapse: collapse;
    margin: 0em 0 40px;
}
.low_news__main td {
    padding: 25px 2em;
    border: unset;
    border-bottom: dashed 1px #000;
	font-size: 14px;
}
.low_news__main td:first-child {
    font-size: 16px;
    position: relative;
}
.low_news__main td:first-child:after {
    content: "";
    width: 1px;
    height: 50%;
    background: #000;
    position: absolute;
    right: 0;
    top: 25%;
}
/* TIME TABLE */
.timetbl__date {
    background: #F2F2F2;
    margin: 0px 0 50px;
    padding: 50px 0;
}
.timetbl__date--main a {
    border: solid 1px #000;
    padding: 0.5em 0;
    width: 12.57%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    height: 40px;
    font-size: 14px;
    margin: 0 2% 0 0;
    background: #fff;
}
.timetbl__date--main a:nth-child(7n) {
    margin: 0 0 0 0%;
}
.timetbl__date--main a:hover {
    background: #000;
    color: #fff;
}
.timetbl__date--main a.active {
    background: #000;
    color: #fff;
}
.timetbl__archive--content {
    margin-bottom: 50px;
}
.timetbl__archive--time {
    width: 150px;
    background: #000;
    color: #fff;
    text-align: center;
    font-family: "Jost", sans-serif;
    font-size: 30px;
    padding-top: 30px;
}
.timetbl__archive--time_start {
    padding-bottom: 50px;
    position: relative;
}
.timetbl__archive--time_start:after {
    content: "";
    position: absolute;
    height: 30px;
    width: 1px;
    background: #fff;
    bottom: 10px;
    left: 50%;
}
.timetbl__archive--detail {
    width: calc(100% - 150px);
    padding-left: 30px;
}
.timetbl__archive--thumbnail {
    width: 30%;
    position: relative;
    overflow: hidden;
    height: fit-content;
    border: solid 1px #000;
    border-radius: 5px;
}
.timetbl__archive--thumbnail:before {
	content: "";
    display: block;
    padding-top: 100%;
}
.timetbl__archive--thumbnail img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 96%;
    height: auto;
	max-width: none;
	min-height: 96%;
    object-fit: cover;
}
.timetbl__archive--description {
    width: 70%;
    padding-left: 30px;
    font-size: 16px;
    font-weight: 400;
    padding-top: 10px;
}
.timetbl__archive--description h2 {
    font-size: 30px;
    margin-bottom: 0.8em;
}
.timetbl__archive--description .timetbl__archive--text h2 {
    font-size: 20px;
    border-bottom: solid 0.2px #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.timetbl__archive--description .timetbl__archive--text h3 {
    font-size: 18px;
    border-bottom: solid 0.2px #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.timetbl__archive--description .timetbl__archive--text h4 {
    font-size: 16px;
    border-bottom: solid 0.2px #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.timetbl__archive--text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 1.5em;
}
.timetbl__archive--option a {
    border: solid 1px #78BCCC;
    background: #78BCCC;
    padding: 0.5em 4em;
    display: block;
    color: #fff;
    height: 40px;
    font-size: 14px;
    margin: 0 2% 0 0;
    width: fit-content;
    border-radius: 2px;
    margin-bottom: 10px;
}
.timetbl__archive--option a:hover {
    background: #fff;
    color: #78BCCC;
}
.timetbl__archive--option a:last-child {
    margin-bottom: 0px;
}
/* PERSONALITY */
.personality__archive--content {
    margin-bottom: 40px;
}
.personality__archive--img {
    border: solid 1px #000;
    border-radius: 5px;
}
.personality__archive--img img {
    width: 96%;
    height: auto;
    max-width: none;
    min-height: 96%;
    object-fit: cover;
}
a:hover .personality__archive--img img {
    transform: translate(-50%, -50%);
}
.personality__archive--ttl {
    font-size: 14px;
    font-weight: 400;
}
.low_personality__main--thumbnail {
    border: solid 1px #000;
    border-radius: 5px;
    width: 30%;
}
.low_personality__main--thumbnail img {
    width: 96%;
    height: auto;
    max-width: none;
    min-height: 96%;
    object-fit: cover;
}
.low_personality__detail {
    width: 70%;
    padding-left: 50px;
    font-size: 16px;
    font-weight: 400;
    padding-top: 10px;
}
.low_personality__detail table {
    width: 100%;
    border-collapse: collapse;
    margin: 0em 0 40px;
}
.low_personality__detail td {
    padding: 15px 2em;
    border: unset;
    border-bottom: solid 0.2px #000;
    font-size: 14px;
    width: calc(100% - 10em);
}
.low_personality__detail td:first-child {
    position: relative;
    width: 10em;
}
.low_personality__detail td:first-child:after {
    content: "";
    width: 1px;
    height: 50%;
    background: #000;
    position: absolute;
    right: 0;
    top: 25%;
}
.low_personality__detail--text h1 {
    font-weight: 400;
    font-size: 16px;
}
.low_personality__detail--message h2 {
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 400;
    margin-bottom: 1em;
    font-family: "Jost", sans-serif;
}
.low_personality__detail--message p {
    font-size: 15px;
    line-height: 2;
}
.low_page_personality__button_area {
    text-align: center;
    margin-top: 50px;
}
/* COMPANY */
.company_page__detail {
    margin-bottom: 80px;
    border-left: solid 1px #cacaca;
    border-right: solid 1px #cacaca;
}
.company_page__detail--content {
    border-top: solid 1px #cacaca;
    display: flex;
    font-size: 15px;
    line-height: 2;
}
.company_page__detail--ttl {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5em;
    background: #F2F2F2;
}
.company_page__detail--text {
    width: 75%;
    padding: 2em;
    font-size: 15px;
}
.company_page__detail--content:last-child {
    border-bottom: solid 1px #cacaca;
}
.company_page__access {
    align-items: flex-end;
}
.company_page__access--content h2 {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 35px;
    margin-bottom: 30px;
}
.company_page__access--text {
    font-size: 15px;
    font-weight: 400;
}
.company_page__access--text h3 {
    font-weight: 500;
    font-size: 17px;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
    border-bottom: solid 0.2px #000;
}
.company_page__access--content {
    width: 400px;
}
.company_page__access--map {
    width: calc(100% - 400px);
    padding-left: 50px;
}
.company_page__access--map iframe {
    width: 100%;
    height: 400px;
}
/* POLICY */
.policy_page__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
}
/* CONTACT */
.form__content {
    padding: 1.5em 2em;
    border-top: solid 1px #707070;
    font-size: 15px;
    font-weight: 400;
}
.contact_page__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 50px;
}
.contact_page__form {
    padding: 0 50px;
}
.form__content--ttl {
    width: 25%;
    margin-right: 4%;
    display: flex;
    align-items: center;
}
.form__content--ttl p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.form__content--ttl p span {
    background: #ff0000;
    color: #fff;
    font-size: 11px;
    display: inline-block;
    padding: 0.2em 0.5em;
}
.form__content--input {
    width: 71%;
}
.form__content--input input[type="text"] {
    border: solid 1px #707070;
    height: 3em;
    padding: 0 1em;
    width: 100%;
}
.form__content--input .wpcf7-list-item label {
    display: flex;
    align-items: center;
    padding: 0.5em 1em;
    border-radius: 5px;
}
.form__content--input input[type="radio"] {
    border: solid 1px #000!important;
    display: inline-block;
    width: 1em;
    height: 1em;
    border-radius: 100%;
    padding: 0;
    margin: 0.5em;
}
.form__content--input input[type="radio"] {
    border: solid 1px #000!important;
    display: inline-block;
    width: 1em;
    height: 1em;
    border-radius: 100%;
    padding: 0;
    margin: 0.5em;
    position: relative;
}
.form__content--input input[type="radio"]:checked {
    border-color: #007bff;
}
.form__content--input input[type="radio"]:checked::before {
    content: '';
    display: block;
    width: 0.6em;
    height: 0.6em;
    background-color: #007bff;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.form__doui label {
    display: flex;
    align-items: center;
    padding: 0.5em 1em;
    border-radius: 5px;
}
.form__doui--check input[type="checkbox"] {
    border: solid 1px #000!important;
    display: inline-block;
    width: 1em;
    height: 1em;
    border-radius: 3px;
    padding: 0;
    margin: 0.5em;
    position: relative;
}
.form__doui--check input[type="checkbox"]:checked {
    border-color: #007bff;
}
.form__doui--check input[type="checkbox"]:checked::before {
    content: '';
    display: block;
    width: 0.6em;
    height: 0.6em;
    background-color: #007bff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-radius: 3px;
}
.form__doui--check input[type="checkbox"]:checked::after {
    content: '';
    display: block;
    width: 0.2em;
    height: 0.4em;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.form__content--input textarea {
    border: solid 1px #707070;
    height: 23em;
    padding: 1em 1em;
    width: 100%;
}
.form__button {
    justify-content: center;
    padding: 2em 0 0;
}
.form__doui {
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    margin-bottom: 30px;
}
.form__button--content.form__button--soshin .wpcf7-submit {
    background-color: #78BCCC;
    border: 3px solid #78bccc;
    border-radius: 9999px;
    color: #fff;
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    line-height: 1;
    padding: 24px;
    padding: 2.4rem;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    width: 305px;
    width: 30.5rem;
    margin: 0 auto;
}
.form__button--content.form__button--soshin .wpcf7-submit::after {
    background-image: url(../img/button_arrow_white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 10px;
    height: 1rem;
    position: absolute;
    right: 24px;
    right: 2.4rem;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
    width: 14px;
    width: 1.4rem;
}
.wpcf7-response-output {
    font-size: 15px;
    font-weight: 400;
}
.contact_page__thanks {
    text-align: center;
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
    margin-bottom: 50px;
}
.contact_page__thanks h1 {
    font-size: 28px;
}
.contact_page__thanks h2 {
    font-size: 20px;
    margin-bottom: 30px;
}
.contact_page__button_area {
    text-align: center;
}
.form__doui a {
    text-decoration: underline;
}
.minutes_page__h2 {
    font-family: "Jost", sans-serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 1em;
}
.minutes_page__detail--content h3 {
    font-size: 28px;
    margin-bottom: 0.5em;
}
.minutes_page__detail--text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}
.minutes_page__detail--content {
    margin-bottom: 7em;
}
.minutes_pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.minutes_pagination .current {
    padding: 0em 0em 0!important;
    margin: 0 0.5em!important;
    color: #000;
    background: unset;
    border: none!important;
    border-bottom: 2px solid #000!important;
    width: 1.5em;
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.minutes_pagination a {
    padding: 0em 0em 0!important;
    margin: 0 0.5em!important;
    color: #000;
    background: unset;
    border: none!important;
    border-bottom: 2px solid #fff!important;
    width: 1.5em;
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.minutes_pagination a:hover {
    border-bottom: 2px solid #000!important;
}

@media (max-width: 768px) {
	.sp_only {
		display: inline-block;
	}
	.pc_only {
		display: none;
	}
	.low_news::after {
		display: none;
	}
.low_page_recommend {
    margin: 80px 0 0;
    padding: 40px 0;
}
.low_page_recommend__main h2 {
    font-size: 26px;
}
.low_page_recommend__archive {
    margin: 20px 0;
}
.low_page_recommend__archive--content {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
}
.low_page__hd {
    margin-bottom: 30px;
}
.low_page__hd--ttl h1 {
    font-size: 3rem;
}
.low_page__hd--ttl {
    top: calc(50% - 10px);
}
.news__search--archive a {
	font-size: 14px;
    margin: 0 1em;
    font-family: "Jost", sans-serif;
    width: 49%;
    margin: 0 2% 2% 0%;
}
.news__search--archive a:nth-child(2n) {
    margin: 0 0% 2% 0%;
}
.news__archive--content {
    width: 100%;
    margin-right: 0;
}
.low_news__description--taxonomy {
    padding: 0.5em 3em;
    width: fit-content;
    height: 30px;
    font-size: 13px;
    margin: 0 0 1em;
}
.low_news__description--ttl h1 {
    font-size: 22px;
    margin-bottom: 30px;
}
.low_news__main--thumbnail {
    margin-bottom: 25px;
}
.low_news__main h2 {
    font-size: 20px;
}
.low_news__main h3 {
    font-size: 18px;
}
.low_news__main h4 {
    font-size: 16px;
}
.low_news__main p {
    font-size: 14px;
    margin-bottom: 30px;
}
.low_news__main blockquote {
    margin-bottom: 30px;
}
.low_news__main table {
    margin: 0em 0 30px;
}
.low_news__main td:first-child {
    font-size: 14px;
    width: 6em;
    text-align: center;
    padding: 0 1em;
}
.low_news__main td {
    font-size: 12px;
    width: calc(100% - 6em);
}
.low_news__main ul {
    margin: 0px 0 40px;
    font-size: 13px;
}
.low_news__main ol {
    margin: 0px 0 40px;
    font-size: 13px;
}
.low_page_news__button-block a {
    width: 13rem;
    padding: 1.2rem 1.5rem;
    font-size: 13px;
}
.low_page_news__prev-button-block {
    font-size: 14px;
    margin-right: 20px;
    width: 60px;
}
.low_page_news__next-button-block {
    font-size: 14px;
    margin-left: 20px;
    width: 60px;
}
/* TIME TABLE */
.timetbl__archive--time {
    width: 50px;
    font-size: 15px;
    padding-top: 20px;
}
.timetbl__archive--detail {
    width: calc(100% - 50px);
    padding-left: 15px;
}
.timetbl__archive--thumbnail {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}
.timetbl__archive--description {
    width: 100%;
    padding-left: 0;
    padding-top: 15px;
}
.timetbl__archive--description h2 {
    font-size: 22px;
}
.timetbl__archive--description .timetbl__archive--text h2 {
    font-size: 18px;
}
.timetbl__archive--description .timetbl__archive--text h3 {
    font-size: 16px;
}
.timetbl__archive--description .timetbl__archive--text h4 {
    font-size: 14px;
}
.timetbl__archive--text p {
    font-size: 12px;
}
.timetbl__archive--option a {
    padding: 0.5em 4em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    font-size: 12px;
}
.timetbl__date {
    margin: 0px 0 30px;
    padding: 30px 0;
}
.timetbl__date--main {
    justify-content: center;
}
.timetbl__date--main a {
    width: 23.5%;
    height: 35px;
    font-size: 12px;
    margin: 1% 2% 1% 0;
}
.timetbl__date--main a:nth-child(7n) {
    margin: 1% 0% 1% 0;
}
.timetbl__date--main a:nth-child(4n) {
    margin: 1% 0% 1% 0;
}
/* PERSONALITY */
.personality__archive--content {
    width: 48%;
}
.personality__archive--content:nth-child(2n) {
    margin-right: 0%;
}
.low_personality__main--thumbnail {
    width: 100%;
    margin: 0 auto 20px;
    max-width: 250px;
}
.low_personality__detail {
    width: 100%;
    padding-left: 0;
    font-size: 15px;
}
.low_personality__detail--message p {
    font-size: 14px;
}
/* COMPANY */
.company_page__detail--content {
    font-size: 13px;
}
.company_page__detail--text {
    width: 65%;
    padding: 1em;
    font-size: 13px;
    display: flex;
    align-items: center;
}
.company_page__detail--ttl {
    width: 35%;
    padding: 1.5em 0.5em;
}
.company_page__detail.company_page__detail--sp_1culm .company_page__detail--content {
    flex-wrap: wrap;
}
.company_page__detail.company_page__detail--sp_1culm .company_page__detail--ttl {
    width: 100%;
}
.company_page__detail.company_page__detail--sp_1culm .company_page__detail--text {
    width: 100%;
    display: block;
}
.company_page__detail {
    margin-bottom: 50px;
}
.company_page__access--content h2 {
    font-size: 25px;
	margin-bottom: 20px;
}
.company_page__access--text {
    font-size: 13px;
    line-height: 2;
}
.company_page__access--text h3 {
    font-size: 16px;
}
.company_page__access--map {
    width: 100%;
    padding-left: 0;
    margin-top: 50px;
}
/* POLICY */
.policy_page__text {
    font-size: 14px;
}
/* CONTACT */
.contact_page__text {
    font-size: 12px;
}
.contact_page__form {
    padding: 0 0px;
}
.form__content {
    padding: 1.5em 0em;
    font-size: 13px;
}
.form__content--ttl {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
}
.form__content--input {
    width: 100%;
}
.form__content--ttl p {
    justify-content: unset;
}
.form__content--ttl p span {
    margin-left: 1em;
}
.wpcf7-list-item {
    margin: 0 1em 0 0em;
}
.form__doui {
    font-size: 13px;
}
.form__button--content.form__button--soshin .wpcf7-submit {
    font-size: 15px;
    font-size: 1.3rem;
    padding: 2rem;
    width: 27.5rem;
}

.contact_page__thanks {
    font-size: 14px;
}
.contact_page__thanks h1 {
    font-size: 24px;
}
.contact_page__thanks h2 {
    font-size: 18px;
    margin-bottom: 30px;
}
.contact_page__thanks br {
    display: none;
}
.footer__top-button {
	position: absolute;
	top: 10px;
	top: 1rem;
	right: 20px;
	right: 2rem;
	transform: translateY(0px);
	opacity: 1;
}
.top-button__text {
	color: #fff;
}
.minutes_page__h2 {
    font-size: 22px;
}
.minutes_page__detail--content h3 {
    font-size: 18px;
}
.minutes_page__detail--text {
    font-size: 13px;
}
}

.notFound__text {
	text-align: center;
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
    margin-bottom: 50px;
}
.notFound__text h1 {
	margin-bottom: 20px;
}

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

@media (max-width: 768px) {
	.notFound__text {
		font-size: 14px;
	}
	.notFound__text h1 {
		font-size: 24px;
		line-height: 1.4;
	}
}

/* トップバナー追加 */
.top-banner {
	background-color: #78BCCC;
	padding: 13px 0;
	padding: 1.3rem 0;
	margin-top: 90px;
	margin-top: 9rem;
	position: relative;
	z-index: 40;
}

.top-banner__inner {
	max-width: 1200px;
	max-width: 120rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 25px;
	padding-left: 2.5rem;
	padding-right: 25px;
	padding-right: 2.5rem;
}

.top-banner__img {
	aspect-ratio: 946 / 524;
	max-width: 946px;
	max-width: 94.6rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	opacity: 1;
	transition: 0.3s ease-in-out;
}

.top-banner__img:hover {
	opacity: 0.7;
}

.top-banner__img img {
	max-width: 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 946 / 524;
}

.top-banner__button-block {
	text-align: center;
}

.top-banner__button {
	display: inline-block;
	max-width: 208px;
	max-width: 20.8rem;
	width: 100%;
	opacity: 1;
	transition: 0.3s ease-in-out;
}

.top-banner__button:hover {
	opacity: 0.7;
}

.top-banner__button img {
	width: 100%;
}

@media (max-width: 768px) {
	.top-banner {
		background-color: #005BAC;
		padding: 0 0 1rem 0;
		margin-top: 6rem;
	}
	.top-banner__inner {
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
}