@charset "utf-8";

:root {
    --link-color: #F06993;
}

/* flickityのボタンタップ青枠を消す */
*:focus {
    box-shadow: none !important;
}

/* ホーム：初回動画再生時にメインページを表示させない */
#home header,
#home main,
#home footer {
    visibility: hidden;
}

/* 基本 */
html {
    /* scroll-behavior: smooth; */
    font-family: 'IBM Plex Sans JP', sans-serif;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #000;
    overflow-x: hidden;
}
body {
    background-image: url("/assets/img/common/bg.jpg");
    background-repeat: repeat-y;
    background-size: 1900px;
    background-position: top -325px center;
}
a {
    display: inline-block;
}
p a,
.window.article .content a {
    opacity: 1;
    color: var(--link-color);
    font-weight: 600;
    word-wrap: break-word;
}
main {
    /* padding: 0 43px; */
    padding: 0 2.5%;
}
span {
    display: inline-block;
}
select {
    cursor: pointer;
}

.grecaptcha-badge { visibility: hidden; }

/* トップへ */

#to-top {
    max-width: 1312px;
    width: 100%;
    /* background-color: #FFF492; */
    display: block;
    position: fixed;
    /* bottom: 70px; */
    bottom: 50px;
    text-align: right;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 25px;
    pointer-events: none;
    animation-duration: 0.4s;
    animation-fill-mode:forwards;
    transform: translateX(-50%) translateY(100px);
    z-index: 999;
}
#to-top a {
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: inline-block;
    pointer-events: visible;
    position: relative;
}
#to-top.fadeUp {
    animation-name: fadeUpY;
}
#to-top.fadeDown {
    animation-name: fadeDownY;
}
@keyframes fadeUpY {
    from {
        transform: translateX(-50%) translateY(100px);
    }
    to {
        transform: translateX(-50%) translateY(0);
    }
}
@keyframes fadeDownY {
    from {
        transform: translateX(-50%) translateY(0);
    }
    to {
        transform: translateX(-50%) translateY(100px);
    }
}

/* 共用 */
.container {
    max-width: calc(1470px - 86px);
    width: 100%;
    /* padding: 0 43px 0; */
    height: 100%;
    /* transform: translateX(-18px); */
}
.note {
    font-size: 0.8rem;
    opacity: 0.65;
    line-height: 1.1rem;
    /* margin-top: 35px; */
}
.glow-outline {
    filter: 
    drop-shadow(0px 0px 10px rgba(240, 105, 147, 0.11))
    drop-shadow(0px 0px 1px rgba(240, 105, 147, 0.75));
}
.glow {
    filter: 
    drop-shadow(0px 0px 10px rgba(240, 105, 147, 0.11));
}
.btn {
    background-color: var(--link-color);
    border-radius: 35px;
    color: #fff;
    font-weight: 700;
    display: inline-block;
    /* width: 300px; */
    line-height: 45px;
    position: relative;
    padding: 0 43px;
}
.btn.submit {
    height: auto;
    padding: 0;
}
.btn::before {
    content: "";
    background-image: url("/assets/img/common/btn-arrow.svg");
    width: 16px;
    height: 16px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px;
    /* transform: translateY(11%); */
    transform: translateY(.18em);
    pointer-events: none;
}
.btn.submit::before {
    position: absolute;
    left: 43px;
    top: 50%;
    transform: translateY(-52%);
}
.btn.submit input {
    height: 45px;
    padding: 0 43px 0 73px;
    width: 100%;
}
.control-btn {
    width: 50px;
}
.sub-link-btn {
    padding: 0 5px 0px 5px;
    border-bottom: 2px solid var(--link-color);
    /* font-size: 0.9rem; */
    font-weight: 600;
    color: var(--link-color);
    display: inline-block;
}
.link-text {
    font-size: 15px;
    /* display: flex; */
    /* align-items: center; */
}
.link-text::before {
    content: "";
    background-image: url("/assets/img/common/link-icon.svg");
    display: block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    display: inline-block;
    transform: translateY(3px);
}

/* ヘッダー */
header {
    width: 100vw;
    position: relative;
    /* text-align: center; */
    display: flex;
    justify-content: center;
    /* padding: 0 43px 0; */
    padding: 0 20px 0;
}
header::after {
    content: "";
    display: block;
    background-color: #fff;
    width: 100%;
    height: 105px;
    position: absolute;
    top: 0;
    z-index: -1;
}
header .container {
    display: flex;
    justify-content: space-around;
}
header .left {
    /* background-color: #FFF491; */
    height: 105px;
    position: relative;
    flex: 3;
    display: flex;
    align-items: center;
    /* padding-right: 15px; */
}
header .left .wrap {
    width: 100%;
    max-width: 400px;
    margin-left: 40px;
    position: relative;
    margin-right: 25px;
}
header .left .wrap::after {
    content: "";
    background-image: url("/assets/img/common/search-icon.svg");
    width: 23px;
    height: 23px;
    display: block;
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
header .left .wrap input {
    width: 100%;
    height: 39px;
    border: 1px solid rgba(0,0,0,0.35);
    border-radius: 20px;
    background-color: #fff;
    padding: 9px 40px 7px 50px;
    font-size: 18px;
    text-align: center;
}
header .left button img {
    width: 80px;
    z-index: 100;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
header .center {
    width: 100%;
    max-width: 255px;
    /* background-color: aquamarine; */
}
header .center .logo {
    width: 100%;
    padding-top: 3px;
}
header .right {
    flex: 3;
    /* width: calc(0% - 37px); */
    /* background-color: cadetblue; */
    /* display: flex; */
    /* justify-content: flex-end; */
    /* align-items: center; */
    max-height: 105px;
    position: relative;
    /* padding-right: 37px; */
}
header .right .menu {
    position: absolute;
    top: 50%;
    right: 37px;
    transform: translateY(-50%);
    cursor: pointer;
}
header,
#sub header {
    margin-bottom: 25px;
}

/*--------------------------------------------
ドロワー
--------------------------------------------*/
/*メインコンテンツ上の黒レイヤー表示*/
.overlay {
	width: 0;
	height: 0;
	background-color: rgba(0, 0, 0, 0.5);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 200;
	transition: opacity .5s;
}
.overlay.open {
	width: 100%;
	height: 100%;
	opacity: 1;
}
/*ドロワーエリア*/
.drawer {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 300;
}
.drawer .area {
	max-width: 307px;
	margin: 0 0 0 auto;
	height: 100vh;
	overflow: hidden;
	position: relative;
}
.drawer nav {
	position: absolute;
	right: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	background-color: #fff;
	/* transform: translate(100%); */
    right: -100%;
	transition: right .5s;
	overflow-y: auto;
	pointer-events: initial;
	padding-bottom: 50px;
    text-align: center;
}
.drawer nav.open {
	/* transform: translateZ(0); */
    right: 0;
}
.drawer nav > ul {
	/* margin-top: 17%;	 */
    margin: 100px auto 0;
    /* background-color: #FFF491; */
    display: inline-block;
    text-align: left;
}
.drawer nav > ul > li {
    font-weight: 500;
	padding-bottom: 40px;
}
.drawer .close {
	width: 20px;
	/* max-width: 20px; */
    top: 26px;
	right: 22px;
	cursor: pointer;
    position: absolute;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* フッター */
footer {
    width: 100vw;
    background-color: #fff;
    margin-top: 108px;
    padding: 62px 0 54px;
    text-align: center;
    position: relative;
}
footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 7px;
    top: 0;
    position: absolute;
    background: linear-gradient(to right, #FFF491, #FFB9F4);
}
footer .sublogo {
    width: 100%;
    max-width: 190px;
    /* margin: 0 auto; */
    display: inline-block;
}
footer nav {
    margin: 44px 0 60px;
    opacity: 0.65;
}
footer nav li {
    display: inline;
}
footer nav li:not(:last-child) {
    margin-right: 50px;
}
footer .copylight {
    font-size: 0.625rem;
    line-height: 1rem;
    opacity: 0.65;
}

/* ウィンドウ */
.window {
    max-width: 1212px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    text-align: center;
}
.window h1 {
    font-size: 1.625rem;
    color: #EC5F8C;
    background-color: #fff;
    border-radius: 35px;
    font-weight: 600;
    padding: 19px 62px;
    text-align: center;
    display: inline-block;
    height: 62px;
    margin-bottom: -31px;
    vertical-align: middle;
}
.window .inner {
    text-align: initial;
    /* padding: 99px 74px 122px; */
    /* padding: 99px 74px 105px; */
    padding: 99px 7% 105px;
    border-radius: 35px;
    background-color: #fff;
}
.window .win-btn.btn {
    transform: translateY(-50%);
}
.window:has(.win-btn.btn) {
    margin-bottom: -22px;
}
.window.multiple { /* 1ページ内に複数ウィンドウ */
    margin-top: 50px;
}
.window.textlink {
    /* letter-spacing: -0.4em; */
    width: 100%;
    max-width: 1330px;
    /* background-color: aqua; */
    margin: 0 auto;
}
.window.searchlink {
    display: flex;
    /* justify-content: space-between; */
    align-content: center;
    flex-wrap: wrap;
}
.window.textlink .btn {
    margin: 20px 10px 0;
    line-height: normal;
    padding: 10px 40px;
}
.window.textlink .btn span {
    font-size: 0.75em;
    margin-left: 2px;
    vertical-align: -2%;
}
.window.wordlink .inner {
    width: 100%;
    padding: 16px 35px 0px 35px;
    border-radius: 40px;
    /* background-color:#3134da; */
    display: flex;
    align-content: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 19px;
    position: relative;
}
.window.wordlink .inner::after {
    content: "";
    background-image: url("/assets/img/common/scrollx.png");
    background-size: cover;
    width: 51px;
    height: 44px;
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    /* background-color: aqua; */
    pointer-events: none;
}
.window.wordlink .inner.hidden::after {
    display: none;
}
.window.wordlink p {
    color: var(--link-color);
    font-size: 16px;
    font-weight: bold;
    line-height: 40px;
    margin-right: 25px;
}
.window.wordlink .link-list {
    /* background-color: #F1D0CF; */
    /* max-width: 1125px; */
    width: calc(100% - 125px);
    display: flex;
    /* align-content: center;
    justify-content: flex-start; */
    overflow-x: scroll;
    padding-bottom: 10px;
}
.window.wordlink .link-list::-webkit-scrollbar {
    height: 6px; /* スクロールバーの高さ */
}
.window.wordlink .link-list::-webkit-scrollbar-thumb {
    background: #00000035; /* ツマミの色 */
    border-radius: 3px;
}
.window.wordlink .link-item {
    padding: 5px 15px;
    font-size: 15px;
    border: 1px solid #00000035;
    border-radius: 5px;
    flex-shrink: 0;
}
.window.wordlink .link-item:not(:first-child) {
    margin-left: 16px;
}

/* ウィンドウ外の要素 */
.outside-window {
    margin-top: 70px;
    display: flex;
    justify-content: center;
}

/* フォーム */
.form-table {
    margin-top: 88px;
    width: 100%;
    /* background-color: aquamarine; */
}
.form-table tr {
    display: block;
    /* background-color: #FFB9F4; */
}
.form-table tr:not(:first-child) {
    padding: 35px 0 0 0;
}
.form-table tr:not(:first-child):not(:last-child) {
    padding: 35px 0;
}
.form-table tr:not(:last-child) {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    padding: 0 0 35px 0;
}
.form-table th {
    font-weight: 500;
    line-height: 1rem;
    min-width: 180px;
    padding-top: 6px;
    /* width: 20%; */
    /* background-color: aquamarine; */
}
.form-table th span {
    font-size: 0.75rem;
    color: var(--link-color);
    display: block;
    line-height: 0.75rem;
    margin-bottom: 4px;
}
.form-table td {
    width: 100%;
}
.form-table input,
.form-table textarea,
.form-table button {
    border: 1px solid rgba(0,0,0,0.35);
    border-radius: 5px;
    width: 100%;
    padding: 9px 14px 7px;
}

/* 検索用に追加@2023-05-23　↓ */
.form-table.top {
    margin-top: 0;
}
.form-table input[type="text"] {
    height: 40px;
}
.form-table input[type="submit"] {
    width: auto;
    display: inline-block;
    height: 40px;
    word-wrap: break-word;
    word-break: break-all;
}
.form-table button {
    width: auto;
    line-height: 1.5em;
    min-height: 40px;
    margin-bottom: 12px;
}
.form-table select {
    border: 1px solid rgba(0,0,0,0.35);
    border-radius: 5px;
    padding: 2px 34px 0 14px;
    height: 40px;
    width: 100%;
}
.form-table .select-wrap {
    position: relative;
    max-width: 204px;
    width: 42%;
}
.form-table td > *:not(:last-child),
.form-table button {
    margin-right: 12px;
}
.form-table td > * {
    display: inline-block;
}
.form-table .select-wrap::after {
    content: "";
    background-image: url("/assets/img/common/pulldown-icon.svg");
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
/* 検索用に追加@2023-05-23 ↑ */

.form-table input {
    line-height: 1rem;
}
::placeholder {
    color: #000;
    /* opacity: .3; */
    opacity: .5;
  }
.form-table textarea {
    resize: vertical; /* 縦方向のリサイズを許可 */
}

/*--------------------------------------------
検索ページ アコーディオン
--------------------------------------------*/
.accordion {
    margin: 0 auto;
    padding: 0;
	border-radius: 35px;
	overflow: hidden;
	background :#fff;
    border: 1px solid #F2CCD9;
}
.accordion,
.accordion .inner{
	list-style: none;
	padding: 0;
}
.accordion .inner,
.accordion div {
    display: none;
}
.accordion li:not(:last-of-type) p {
	border-bottom: 1px solid #F2CCD9;
	box-sizing: border-box;
}
.accordion > li > p {
	cursor: pointer;
	display: block;
	margin: 0;
    padding : 0 35px 0;
    background :#F8EBEF;
    height: 71px;
    display: flex;
    align-items: center;
}
.accordion > li > p::before {
    content: "";
    background-image: url("/assets/img/common/pulldown-icon.svg");
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 10px;
    transform: rotate(-90deg);
    transition: .25s all;
}
.accordion > li > p.open::before {
    transform:rotate(0deg);
}
.accordion .inner div {padding: 10px 2em 60px;}
.accordion .inner {
    padding: 0 35px 0;
}
.accordion .form-table tr {
    padding: 40px 0 28px;
    /* background-color: #FFF491; */
}
.accordion .form-table tr:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.accordion .form-table th {
    font-weight: 500;
    line-height: 1rem;
    min-width: 180px;
    padding-top: 16px;
}

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

.top-carousel-area {
    width: 100vw;
    max-width: none;
    margin: 0 -2.62%;
    /* margin-bottom: 99px; */
    margin-bottom: 45px;
}
.top-carousel-area .list-item {
    margin-right: 51px !important;
    margin-bottom: 0 !important;
    /* max-width: 1100px; */
    max-width: 760px;
    width: 100%;
}
@keyframes over {
	0% {
		opacity: .65;
	}
	100% {
		opacity: 1;
	}
}
.top-carousel-area .list-item.test {
    background-color: #f4d1dc;
    /* height: 100%; */
    /* padding: 30px; */
}
.top-carousel-area .list-item iframe {
    /* width: 100%; */
    /* height: 578px; */
    height: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    display: block;
}
.top-carousel-area .list-item a {
    position: relative;
}
.top-carousel-area .list-item div {
    display: block;
    margin-top: auto;
}
.top-carousel-area .list-item h2 {
    min-height: 1em;
    margin-bottom: .5em;
    padding-left: .5em;
}
.top-carousel-area .list-item .city {
    margin-right: 1em;
    padding-left: .5em;
}
.top-carousel-area .list-item .city,
.top-carousel-area .list-item .amount {
    display: inline-block;
    position: static;
}
.top-carousel-area .list-item .amount::after {
    pointer-events: none;
    position: absolute;
    right: 1em;
    bottom: 1em;
}
.top-carousel .flickity-page-dots {
    bottom: -35px;
}
.top-carousel .flickity-page-dots .dot {
    height: 6px;
    width: 55px;
    margin: 0;
    margin-right: 15px;
    border-radius: 2px;
    background-color: #fff;
    border: 1px solid #F1D0CF;
    opacity: 1;
    box-sizing: content-box;
}
.top-carousel .flickity-page-dots .dot:last-child {
    margin-right: 0;
}
.top-carousel .flickity-page-dots .dot.is-selected {
    background: #F06993;
    border: none;
}
.top-carousel .flickity-prev-next-button {
    width: 38px;
    height: 112px;
    background: transparent;
    background-size: cover;
    border-radius: 0;
}
.top-carousel .flickity-prev-next-button:active {
    opacity: 1;
}
.top-carousel .flickity-prev-next-button .arrow {
    display: none;
}
.top-carousel .flickity-prev-next-button.previous {
    border-radius: 8px 0 0 8px;
    left: calc(50% - 380px);
    transform: translateX(-100%) translateY(-50%); 
    background-image: url("/assets/img/common/topslide-prev-pc.svg");
}
.top-carousel .flickity-prev-next-button.next {
    border-radius: 0px 8px 8px 0px;
    right: calc(50% - 380px);
    transform: translateX(100%) translateY(-50%); 
    background-image: url("/assets/img/common/topslide-next-pc.svg");
}

/* ニュース一覧 */
ul.news-list {
    width: 100%;
}
ul.news-list li {
    border-bottom: 1px solid #DADADA;
}
ul.news-list > li:first-child {
    border-top: 1px solid #DADADA;
}
ul.news-list li a {
    padding: 20px 0;
    display: flex;
    width: 100%;
    height: 100%;
}
ul.news-list li span {
    padding-right: 27px;
}
ul.news-list li p {
    position: relative;
    width: 100%;
    line-height: 1.75em;
    padding-right: 1.5em;
}
ul.news-list li p::after {
    content: "";
    position: absolute;
    display: block;
    background-image: url("/assets/img/common/link-icon.svg");
    width: 16px;
    height: 16px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

#top-page .window.wide .inner {
    padding: 83px 3% 50px;
}
.window.fullwide {
    width: 100vw;
    max-width: none;
    margin: 0 -2.62%;
}
.window.fullwide .inner {
    border-radius: 0;
    padding: 61px 0 70px;
}
#top-page .window.multiple {
    margin-top: 85px !important;
}
.window.narrow {
    max-width: 1024px;
}
.movie-banner {
    cursor: pointer;
    background-color: #fff;
    width: auto;
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    margin: 1% 0;
}
.movie-banner img {
    width: 100%;
}
.movie-banner:hover img {
    opacity: .6;
}
/* external css: flickity.css */
.new-item-list {
    width: 100%;
}
.new-item-list .list-item {
	margin-right: 1.4% !important;
    margin-bottom: 0 !important;
    vertical-align: bottom;
    /* height: auto; */
}
.new-item-list .list-item figure {
    margin-bottom: 1em;
}
.new-item-list .list-item img.new {
    width: 72px;
    height: 29px;
    margin-bottom: .75em;
    margin-left: -10px;
}
/* 前後ボタン */
.new-item-list-btn {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 25px;
    cursor: pointer;
    transform: translateY(-40%);
    position: absolute;
    bottom: 0;
}
.button--previous {
    left: 7%;
}
.button--next {
    right: 7%
}

/* 初回ムービー再生 */
.movie-load {
    z-index: 3000;
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
}
.movie-load .load {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("/assets/img/common/bg.jpg");
    background-repeat: repeat-y;
    background-size: 1900px;
    background-position: top -325px center;
}
.movie-load .load img.logo {
    width: 217px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.movie-load .load img.loading {
    width: 344px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    /* transform-origin: 50%, 50%; */
    animation: rotate 2s;
}
@keyframes rotate {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	25% {
		transform: translate(-50%, -50%) rotate(90deg);
	}
	50% {
		transform: translate(-50%, -50%) rotate(180deg);
	}
	75% {
		transform: translate(-50%, -50%) rotate(270deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}
.movie-load .movie {
    visibility: hidden;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    /* padding: 117px 0 0; */
    padding: 127px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.movie-load .movie .close {
    width: 64px;
    height: 64px;
    position: absolute;
    top: 19px;
    right: 19px;
    cursor: pointer;
}
.movie-load .movie .wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.movie-load .movie .wrap.one {
    padding-bottom: 117px;
}
.movie-load .movie article {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 80px;
}
.movie-load .movie article:first-child {
    margin-right: 15px;
}
.movie-load .movie article:last-child {
    margin-left: 15px;
}
.movie-load .movie .video {
    width: 100%;
    aspect-ratio: 16/9;
}
.movie-load .movie article .video {
    width: auto;
    height: 100%;
    max-width: calc(100vw / 2 - 15px);
    max-height: calc(100vw * 0.5625 / 2 - 7.5px);
}
.movie-load .movie article h1 {
    width: 100%;
    min-height: 80px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 24px 15px 0;
}
.movie-load .movie .video iframe {
    width: 100%; 
    height: 100%;
}

/*--------------------------------------------
検索結果ページ
--------------------------------------------*/

.select-wrap.pink {
    height: 40px;
    /* max-width: 206px; */
    width: 206px;
    border: 2px solid #F06993;
    color: #F06993;
    font-weight: bold;
    font-size: 15px;
    background-color: #fff;
    border-radius: 35px;
    line-height: 34px;
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    /* pointer-events: none; */
    position: relative;
}
.select-wrap.pink::after {
    content: "";
    background-image: url("/assets/img/common/link-icon.svg");
    display: block;
    width: 18px;
    height: 18px;
    /* margin-right: 10px; */
    pointer-events: none;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}
.select-wrap.pink select {
    width: 100%;
    height: 100%;
    pointer-events: initial;
    padding-left: 25px;
    padding-top: 2px;
    /* background-color: aquamarine; */
    /* color: #000; */
}

.window.wide {
    /* max-width: 1384px; */
    max-width: 1800px;
}
#results-page .window.wide .inner {
    padding: 40px 3% 98px;
}

#results-page .window.wide .header {
    display: block !important;
}
#results-page .window.wide .header .sort-menu {
    display: flex;
    justify-content: space-between;
    margin-top: 37px;
}
#results-page .window.wide .header .sort-menu > div {
    display: flex;
    align-items: center;
}
#results-page .window.wide .header .sort-menu > div > p.title {
    margin-right: 21px;
    line-height: 1.2em;
}

#results-page .sort-menu .amount {
    /* background-color: #f4d1dc; */
    flex-grow: 1;
    margin-right: 35px;
}
#results-page .sort-menu .amount select {
    border: 1px solid rgba(0,0,0,0.35);
    border-radius: 5px;
    padding: 2px 34px 0 14px;
    height: 40px;
    width: 100%;
}
#results-page .sort-menu .amount .select-wrap {
    position: relative;
    max-width: 204px;
    width: 42%;
}
#results-page .sort-menu .amount .select-wrap::after {
    content: "";
    background-image: url("/assets/img/common/pulldown-icon.svg");
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
#results-page .sort-menu .amount p.range {
    margin: 0 12px;
}
#results-page .sort-menu .amount .btn {
    margin-left: 20px;
}

.window.wide .header { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.window.wide .header div.text {
    width: 70%;
}
.window.wide .header h3 {    
    display: inline-block;
}
.window.wide .header h3.hits {
    font-size: 20px;
    margin-right: 23px;
}
.window.wide .header h3.hits span {
    font-size: 14px;
}
.window.wide .header h3.words {
    font-size: 18px;
    /* margin: 0 23px; */
    display: inline;
    /* display: block; */
    overflow-wrap: break-word;
}

.window .list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.list-item {
    border: 1px solid #D9D9D9;
    /* box-sizing: border-box; */
    border-radius: 10px;
    margin-right: 1.5%;
    margin-bottom: 2.5%;
    width: 23.875%;
    position: relative;
    background-color: #fff;
}
.list-item:nth-child(4n) {
	margin-right: 0;
}
.list-item a {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    height: 100%;
}
.list-item .soldout {
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 9px;
    font-weight: bold;
    font-size: 16px;
    /* border: 1px solid rgba(0,0,0,.5); */
}
.list-item figure {
    margin-bottom: 26px;
}
.list-item figure img {
    width: 100%;
    border-radius: 5px 5px 0 0;
}
.list-item h2 {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5em;
    min-height: 3em;
    margin-bottom: 1.3em;
}
.list-item .city {
    font-size: 18px;
    font-weight: 500;
    margin-top: auto;
    display: block;
}
.list-item .amount {
    font-size: 19px;
    font-weight: 600;
    color: #DB688C;
    position: relative;
    padding-right: 2em;
    line-height: 1.3em;
    margin-top: .2em;
}
.list-item .amount::after {
    content: "";
    background-image: url("/assets/img/common/link-icon.svg");
    display: block;
    width: 14px;
    height: 14px;
    /* margin-right: 10px; */
    /* transform: rotate(90deg); */
    pointer-events: none;
    position: absolute;
    right: 0;
    bottom: 4px;
}

.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 45px;
}
.pager li {
    color: #E07193;
    font-size: 16px;
    font-weight: bold;
}
.pager li:not(:last-child) {
    margin-right: 10px;
}
.pager li.page {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border: 2px solid #E07193;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pager li.page.selected {
    background-color: #E07193;
    color: #fff;
}
.pager li.page.prev,
.pager li.page.next {
    font-weight: normal;
}
.pager button {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*--------------------------------------------
NEWSページ
--------------------------------------------*/
#news-list-page .pager {
    margin-top: calc(45px + 2.5%);
}
.window.article {
    max-width: 1024px;
}
.window.article .header {
    text-align: center;
    margin-bottom: 90px;
}
.window.article .header h1 {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    color: #000;
    font-weight: normal;
    font-size: 26px;
    word-wrap: break-word;
    display: inline;
    line-height: 1.4em;
}
.window.article .header p {
    margin-top: 15px;
    font-size: 14px;
    word-wrap: break-word;
}
.window.article .content h2 {
    font-size: 1.3rem;
    font-weight: 400;
    /* color: var(--link-color); */
    /* font-weight: 400; */
}
.window.article .content a {
    word-break: break-all;
    display: inline; 
}
.window.article .content img {
    max-width: 650px;
    width: 100%;
    /* margin: 0 auto; */
    display: block;
}
.window.article .content iframe {
    max-width: 650px;
    width: 100%;
    aspect-ratio: 16 / 9;
	height: 100%;
    /* margin: 0 auto; */
    display: block;
}
.window.article .content ul {
    list-style-type: '・';
    padding-left: 1em;
}
.window.article .content ol {
    list-style-type: decimal;
    padding-left: 1em;
}
.window.article .content li {
    line-height: 1.35em;
}
.window.article .content li:not(:last-child) {
    padding-bottom: .95em;
}
.window.article .content table {
    table-layout: fixed;
    width: 100%;
}
.window.article .content caption {
    padding-bottom: .95em;
    line-height: 1.35em;
}
.window.article .content tr th,
.window.article .content tr td {
    font-weight: normal;
    line-height: 1.35em;
}
.window.article .content tr:not(:last-child) td:nth-child(2) {
    padding-bottom: .95em;
}
.window.article .content tr td:first-child {
    padding-bottom: .15em;
}
.window.article aside {
    font-size: 12px;
    line-height: 1.3em;
    margin-top: 1em;
}

/*--------------------------------------------
Specialページ
--------------------------------------------*/
.window.special {
    /* max-width: 1024px; */
    max-width: 1212px;
}
.window.special .inner {
    padding: 0;
    overflow: hidden;
}
.window.special .inner .container {
    padding: 90px 7% 105px;
}
.window.special .inner img.banner {
    width: 100%;
    /* max-width: 100%; */
}
.window.special .content {
    /* margin-top: 90px; */
    margin-bottom: 0;
}
.window.special .link-area {
    text-align: center;
    margin-bottom: 80px;
}
.window.special .link-area .link-btn {
    line-height: 1.45em;
    padding-top: .75em;
    padding-bottom: .75em;
    padding-left: 3.5em;
    padding-right: 2em;
}
.window.special .link-area .link-btn::before {
    display: block;
    position: absolute;
    left: 1.5em;
    top: 50%;
    transform: translateY(-50%);
}

/*--------------------------------------------
レスポンシブ
--------------------------------------------*/

@media screen and (min-width:1800px) {
   
    .new-item-list .list-item {
        width: 15.42%;
        margin-right: .8% !important;
    }  

}

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

    /* 検索結果 */
    #results-page .window.wide .header .sort-menu {
        display: block;
    }
    #results-page .window.wide .header .sort-menu .pulldown {
        margin-top: 20px;
    }
    #results-page .window.wide .header .sort-menu > div > p.title {
        min-width: 65px;
    }
    
}

/* @media screen and (max-width:1100px) { */
/* @media screen and (max-width:1178px) { */
@media screen and (max-width:865px) {
   
    .top-carousel .flickity-page-dots {
        bottom: -24px;
    }
    .top-carousel .flickity-page-dots .dot {
        height: 4px;
        width: 41px;
        margin-right: 11px;
    }
    .flickity-button:disabled {
        display: none;
    }
    /* .top-carousel .flickity-prev-next-button {
        width: 30px;
        height: 112px;
    } */
    .top-carousel .flickity-prev-next-button {
        width: calc(28px * 0.85);
        height: calc(105px * 0.85);
        top: auto !important;
        bottom: 2% !important;
    }
    .top-carousel .flickity-prev-next-button.previous,
    .top-carousel .flickity-prev-next-button.next {
        transform: none;
    }
    .top-carousel-area .list-item .amount::after {
        right: 2em;
    }
    .top-carousel-area .list-item h2,
    .top-carousel-area .list-item a > div {
        padding: 0 2em;
    }
    .top-carousel-area .list-item .city {
        padding: 0;
    }
    
    .top-carousel .flickity-prev-next-button.previous {
        left: 0;
        border-radius: 0 8px 8px 0;
        transform: none;
        /* transform: translateY(-50%); */
        background-image: url("/assets/img/common/topslide-prev-mobile.svg");
    }
    .top-carousel .flickity-prev-next-button.next {
        right: 0;
        border-radius: 8px 0 0 8px;
        transform: none; 
        /* transform: translateY(-50%); */
        background-image: url("/assets/img/common/topslide-next-mobile.svg");
    }

}

/* 高さが低い場合、タブレット縦の場合 */

@media screen and (max-height:600px),
screen and (max-width:1024px) and (orientation: portrait) {
    .movie-load .movie article {
        padding-bottom: 0;
    }
    .movie-load .movie h1 {
        display: none;
    }
    .movie-load .movie {
        padding: 70px 0 0;
    }
    .movie-load .movie .close {
        width: 45px;
        height: 45px;
    }
    .movie-load .movie .wrap.one {
        padding-bottom: 0;
    }
}

/* タブレット縦 */

@media screen and (max-width:1024px) and (orientation: portrait) {
    .movie-load .movie .wrap {
        flex-wrap: wrap;
        height: auto;
    }
    .movie-load .movie article {
        display: block;
    }
    .movie-load .movie article:first-child {
        margin-right: 0px;
    }
    .movie-load .movie article:last-child {
        margin-left: 0px;
        margin-top: 25px;
    }
    .movie-load .movie article .video {
        margin: 0 auto;
        max-width: calc(calc(50vh - 100px) * 1.777777777777778);
        max-height: calc(50vh - 100px);
    }
}

/* タブレット */

@media screen and (max-width:1024px) {
   
    header .left .wrap {
        display: none;
    }
    header .left button img {
        width: 70px;
    }

    .accordion .form-table th {
        min-width: 100px;
    }
    
   
}

/* スマホ */

@media screen and (max-width:768px) {
 
    /* 基本 */
    main {
        padding: 0 10px;
        /* font-size: 15px; */
    }
    select,
    input,
    button {
        font-size: 15px;
    }

    /* 共用 */
    .btn {
        line-height: 40px;
    }

    /* ヘッダー */
    header {
        padding: 0 15px 0;
    }
    header::after {
        height: 77px;
    }
    header .center {
        width: 100%;
        max-width: 174px;
    }
    header .center .logo {
        padding-top: 6px;
    }
    header .left button img {
        width: 60px;
    }
    header .left,
    header .right {
        height: 77px;
    }
    header .right .menu {
        right: 0px;
    }
    header,
    #sub header {
        margin-bottom: 16px;
    }

    /* フッター */
    footer {
        margin-top: 85px;
    }
    footer nav li {
        display: block;
    }
    footer nav li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 8px;
    }
    footer nav {
        margin: 44px 0 45px;
        font-size: 0.9rem;
    }
 
    /* ウィンドウ */
    .window h1 {
        height: 52px;
        margin-bottom: -26px;
    }
    .window .inner {
        padding: 55px 25px 66px;
        border-radius: 35px;
    }
    .window:has(.win-btn.btn) {
        margin-bottom: -20px;
    }
    .window.multiple { /* 1ページ内に複数ウィンドウ */
        margin-top: 44px;
    }

    /* フォーム */
    .form-table {
        margin-top: 54px;
    }
    .form-table.top {
        margin-top: 0;
    }
    .form-table tr:not(:first-child) {
        padding: 28px 0 0 0;
    }
    .form-table tr:not(:first-child):not(:last-child) {
        padding: 28px 0;
    }
    .form-table tr:not(:last-child) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.15);
        padding: 0 0 28px 0;
    }
    .form-table th {
        display: block;
    }
    .form-table td {
        width: 100%;
        display: block;
        margin-top: 14px;
    }
    .form-table td > *:not(:last-child) {
        margin-right: 10px;
    }

    /* トップページ */

    .top-carousel-area {
        margin-left: -10px;
        margin-right: -10px;
        /* margin-bottom: 70px; */
        margin-bottom: 47px;
    }
    .window.fullwide {
        margin: 0 -10px;
    }
    #top-page .window.multiple {
        margin-top: 60px !important;
    }
    .new-item-list .list-item img.new {
        width: 60px;
        height: 24px;
        margin-left: -5px;
    }
    .new-item-list-btn { /* 前後ボタン */
        width: 40px;
        height: 40px;
        transform: translateY(-50%);
    }
    .button--previous {
        left: 4%;
    }
    .button--next {
        right: 4%
    }

    /* 検索ページ アコーディオン */
    .accordion {
        border-radius: 15px;
    }
    .accordion > li > p {
        padding : 0 20px 0;
    }
    .accordion .inner {
        padding: 0 20px 0;
    }
    .accordion .form-table tr {
        padding: 28px 0;
    }
    #search-page .window > .inner {
        margin: 0 -10px;
        border-radius: 0;
        padding-left: 4%;
        padding-right: 4%;
        padding: 48px 3% 66px;
    }

    /* 検索結果 */
    .window.wide .inner {
        margin: 0 -10px;
        border-radius: 0;
        padding: 48px 3% 65px !important;
    }
    .window.wide .header { 
        display: block;
        margin-bottom: 30px;
    }
    .window.wide .header div.text { 
        text-align: center;
        width: 100%;
    }
    .window.wide .header h3.hits {
        margin-right: 0;
    }
    .window.wide .header h3.words {
        display: block;
        margin: 0 23px;
    }
    .window.wide .header .select-wrap.pink { 
        margin: 23px auto 0;
    }
    .window.wide .header .select-wrap.pink select {
        font-size: 15px;   
    }

    #results-page .window.wide .header .sort-menu {
        margin-top: 29px;
    }
    #results-page .window.wide .header .sort-menu > div {
        display: block;
        max-width: 400px;
        /* background-color: #FFF491; */
        margin: 0 auto;
        transform: translateX(2.62%);
    }
    #results-page .window.wide .header .sort-menu .amount {
        padding-bottom: 29px;
        border-bottom: 1px solid #00000015;
    }
    #results-page .window.wide .header .sort-menu .pulldown {
        margin-top: 29px;
    }
    #results-page .window.wide .header .sort-menu .amount p.title {
        height: 125px;
        float: left;
        padding-top: 11px;
    }
    #results-page .window.wide .header .sort-menu .pulldown p.title {
        float: left;
        padding-top: 11px;
    }
    #results-page .window.wide .header .sort-menu .amount p.range {
        margin: 0;
        margin-left: 3px;
        width: 16px;
    }
    #results-page .sort-menu .amount .btn {
        margin-left: 0px;
    }
    #results-page .window.wide .header .sort-menu .amount .btn.submit {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #results-page .window.wide .header .sort-menu .amount .btn.submit::before {
        position: absolute;
        left: auto;
        top: auto;
        transform: none;
        transform: translateX(-30px);
    }
    #results-page .window.wide .header .sort-menu .amount .btn.submit input {
        height: 40px;
        padding: 0;
        padding-left: 27px;
        width: 100%;
    }
    #results-page .window.wide .header .sort-menu .amount .select-wrap,
    #results-page .window.wide .header .sort-menu .amount .btn.submit,
    #results-page .window.wide .header .sort-menu .pulldown .select-wrap {
        max-width: none;
        width: calc(100% - 115px);
        margin: 0;
    }
    #results-page .window.wide .header .sort-menu .amount .select-wrap {
        margin-bottom: 14px;
    }
    #results-page .window.wide .header .sort-menu .pulldown {
        clear: both;
    }
    #results-page .window.wide .header .sort-menu > div > * {
        display: inline-block;
    }

    .list-item {
        margin-right: 1.5%;
        margin-bottom: 1.5%;
        width: 49.25%;
    }
    .list-item a {
        padding: 5px;
    }
    .list-item:nth-child(2n) {
        margin-right: 0;
    }
    .list-item:nth-child(4n) {
        margin-right: auto;
    }
    .list-item .soldout {
        font-size: 14px;
    }
    .list-item figure {
        margin-bottom: 1em;
    }
    .list-item h2 {
        font-size: 14px;
    }
    .list-item .city {
        font-size: 16px;
    }
    .list-item .amount {
        font-size: 17px;
        /* background-color: #FFF491; */
    }
    .pager {
        margin-top: 35px;
    }
    .pager li:not(:last-child) {
        margin-right: 5px;
    }

    /* NEWSページ */
    .window.article .header {
        margin-bottom: 45px;
    }
    .window.article .header h1 {
        font-size: 22px;
    }
    .window.article .content tr th,
    .window.article .content tr td {
        width: 100%;
        display: block;
    }

    /* 特設ページ */
    .window.special .inner {
        border-radius: 10px;
    }
    .window.special .inner .container {
        padding: 45px 4% 66px;
    }
    /* .window.special .content {
        margin-bottom: 45px;
    } */
    .window.special .link-area {
       margin-bottom: 40px;
    }

    /* Homeページ テキストリンク */
    .textlink .btn {
        margin: 10px 3px 0 !important;
        /* line-height: normal; */
        padding: 10px 22px !important;
        font-size: .9em;
    }
    .textlink .btn::before {
        display: none;
    }
    .textlink .btn span {
        display: none;
    }

    .window.wordlink {
        width: 100vw;
        max-width: none;
        /* margin: 0 -2.62%; */
        margin-left: -10px;
        margin-bottom: -10px;
    }
    .window.wordlink .inner {
        margin-top: 40px;
        border-radius: 0;
        position: relative;
        padding: 28px 10px 0 10px;
    }
    .window.wordlink .inner::after {
        right: 0;
    }
    .window.wordlink p {
        position: absolute;
        top: -22px;
        left: 50%;
        width: 100%;
        max-width: 147px;
        transform: translateX(-50%);
        background-color: #fff;
        border-radius: 35px;
        /* font-weight: 600; */
        /* font-size: 5vw; */
        /* padding: 17px 6vw; */
        padding: 5px 25px;
        text-align: center;
        display: inline-block;
        height: 44px;
        vertical-align: middle;
    }
    .window.wordlink .link-list {
        width: calc(100%);
        padding-bottom: 21px;
    }
    .window.wordlink .link-item {
        padding: 4px 10px;
        font-size: 13px;
    }
    .window.wordlink .link-item:not(:first-child) {
        margin-left: 10px;
    }
}

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

    select,
    input,
    button {
        font-size: 15px;
    }

    /* ウィンドウ */
    .window h1 {
        font-size: 1.5rem;
        padding: 17px 8vw;
    }

    .form-table .select-wrap {
        max-width: 204px;
        width: 44%;
    }
    .form-table td > *:not(:last-child),
    .accordion button {
        margin-right: 5px;
    }

    .top-carousel .flickity-prev-next-button {
        bottom: 4% !important;
    }
}

@media screen and (max-width:400px) {
    .button--previous {
        left: 2%;
    }
    .button--next {
        right: 2%
    }
    ul.news-list li a > span {
       font-size: 14px;
    }

    .movie-load .load img.logo {
        width: calc(217px * .6);
    }
    .movie-load .load img.loading {
        width: calc(344px * .6);
    }
}
@media screen and (max-width:350px) {
    .new-item-list-btn {
        display: none;
    }
}
@media screen and (max-width:350px) {

    .form-table .select-wrap {
        max-width: none;
        width: 100%;
    }
    .form-table td > * {
        display: block;
    }
    .form-table td > *:has(#city) {
        margin-top: 10px;
    }

    .accordion button {
        margin-bottom: 10px;
    }

    /* ウィンドウ */
    .window h1 {
        font-size: 7vw;
        padding: 17px 6vw;
    }

    header .center {
        width: 45%;
    }
}

@media (hover: hover) {

    a:hover:not(a.nohover) {
        /* filter: brightness(110%) ; */
        /* mix-blend-mode:multiply; */
        /* filter: drop-shadow(0px 0px 5px rgba(240,105,147,.75)); */
        opacity: 65%;
    }
    /* a:hover::before {
        content: "";
        display: block;
        position: absolute;
        background-color: #fff;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        filter: brightness(150%);
        mix-blend-mode: soft-light;
    } */
    a.btn:hover {
        opacity: unset;
    }
    #to-top a:hover {
        opacity: unset;
    }
    #to-top a:hover::after {
        content: "";
        background-color: #fff;
        width: 100%;
        position: absolute;
        height: 100%;
        top: 0;
        left: 0;
        opacity: .35;
        border-radius: 35px;
        pointer-events: none;
    }
    .btn:hover {
        opacity: 100% !important;
    }
    .btn:hover::after {
        content: "";
        background-color: #fff;
        width: 100%;
        position: absolute;
        height: 100%;
        top: 0;
        left: 0;
        opacity: .35;
        border-radius: 35px;
        pointer-events: none;
    }
    .top-carousel-area .list-item:hover {
        /* animation: over 1.5s; */
        opacity: .85;
    }
    .top-carousel-area .list-item a:hover {
        opacity: 1;
    }
    .top-carousel .flickity-prev-next-button:hover,
    .top-carousel .flickity-prev-next-button:active {
        background-color:rgba(255,255,255,0.45);
        background-blend-mode: lighten;
        opacity: 1;
    }
    .new-item-list-btn img:hover {
        opacity: .65;
    }
    .movie-load .movie .close:hover {
        opacity: .65;
    }
    .pager li:not(.pager li.selected):hover {
        opacity: .65;
    }
}