
:root {
	--color-black: #000;
	--color-white: #fff;
	--color-darkgrey: #434343;
	--color-lightblack: #626262;
	--color-lightblue: #37cffa;
	--color-ttlblack: #313131;
	--color-softred: #eb6877;
	--color-softyellow: #fffeee;
	--color-softpink: #ffa1cb;
	--color-softgrey:#bcbcbc;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	width: 100%;
	height: 100%;
}
* {
	box-sizing:border-box;
}
body {
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: normal;
	line-height: 1;
	overflow-x: hidden;
	color: #535353;
	line-break: strict;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	font-size: 0;
	line-height: 0;
	border: 0;
}

.elps {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.clamp {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp:3;
	overflow: hidden;
}

.clamp_2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp:2;
	overflow: hidden;
}

/* form
-----------------------------------------------------------------------------------*/
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select,
textarea {
	width: 80%;
	padding: 2px 10px;
	border: solid 2px rgb(220, 220, 220);
	font-size: 16px;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 20px;
}

.select_box-inner {
	width: 80%;
	position: relative;
}

.select_box-inner select {
	width: 100%;
	padding: 6px 10px;
}

.select_box-inner::after {
	position: absolute;
	top: 30%;
	right: 15px;
	width: 10px;
	height: 10px;
	border-top: 3px solid #0068b7;
	border-right: 3px solid #0068b7;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	pointer-events: none;
	content: "";
}

textarea {
	height: 150px;
}

.hissu {
	background: #e60012;
	text-align: center;
	color: #fff;
	font-size: 14px;
	padding: 3px 5px;
	border-radius: 1px;
	margin-left: 5px;
	line-height: initial;
	border-radius: 5px;
}

.any {
	background: #959595;
	text-align: center;
	color: #fff;
	font-size: 14px;
	padding: 3px 5px;
	border-radius: 1px;
	margin-left: 5px;
	line-height: initial;
	border-radius: 5px;
}

button:not(.form__submit) {
	display: block;
	width: 60%;
	background: var(--color-orange);
	text-align: center;
	color: #fff;
	font-size: 1.4vw;
	margin: 0 auto;
	padding: 20px 0;
	cursor: pointer;
	border-radius: 5px;
	border: none;
}

button.send_ok {
	color: #fff;
}

.gray_btn {
	width: 45%;
	background: #ccc;
	text-align: center;
	color: #999;
	font-size: 1.2vw;
	font-weight: bold;
	border: none;
	margin: 0 auto;
	padding: 15px 0;
	border-radius: 40px;
}

#form input,
#form textarea {
	box-sizing: border-box;
	width: 100%;
	padding: 0.5vw;
	font-size: 16px;
}

#form button {
	-moz-appearance: none;
	appearance: none;
	width: 60%;
	padding: 15px 0;
	background: #e53081;
	border: none;
	border-radius: 100px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	display: block;
	margin: 0 auto;
}

#form button:disabled {
	background: #dcdcdc;
	color: #333;
}

::placeholder {
	color: #999;
}

.recaptcha_policy {
	color: #999;
	padding-top: 5px;
	font-size: 1rem;
	text-align: center;
}

.recaptcha_policy a:link,
a:visited,
a:hover,
a:active {
	color: #00f;
}

/* モーダル
-----------------------------------------------------------------------------------*/
#thanks {
	z-index: 30;
	max-width: 100%;
}

.inner_thanks {
	padding: 3vw 20vw 0 20vw;
}

.inner_thanks p {
	text-align: center;
	font-size: 20px;
	padding-bottom: 15px;
}

.inner_thanks .inner_thanks02 {
	text-align: left;
	padding-bottom: 15px;
	font-size: 20px;
	line-height: initial;
}

.inner_thanks .comp {
	font-size: 26px;
}

.inner_thanks .txt {
	text-align: left;
	line-height: initial;
}

.close_btn a {
	width: 40%;
	margin: 20px auto 0 auto;
	font-size: 1.2vw;
	font-weight: bold;
	border: 2px solid #fff;
	border-radius: 30px;
	padding: 1.5rem 0;
	color: #fff;
	display: block;

}

.changed {
	display: none !important;
}

/* =======================================

main

======================================= */
.main {
	position: relative;
}
.wrap {
	padding: 20px 20px 100px;
	background: url(../images/bg_body.jpg) no-repeat center top / cover;
	position: relative;
}
.wrap__inner {
	padding: 20px;
	background: rgba(255,255,255,.7);
}
/* =======================================

header

======================================= */
.header {
	padding: 20px;
	border: 2px solid var(--color-softgrey);
	background: #fff;
	position: relative;
}
.header-inner {
	text-align: center;
	background-image: url(../images/header_bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	height: 0;
	padding-top: 28%;
}
.logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30%;
}

/*********************************

common

*********************************/
.u-inner {
	max-width: 1240px;
	margin-inline: auto;
}
/********************************

content

********************************/


.p-section {
	border-left: 2px solid var(--color-softgrey);
	border-right: 2px solid var(--color-softgrey);
	border-bottom: 2px solid var(--color-softgrey);
	background: #fff;
	position:relative;
}
.p-section__inner {
	padding: 80px 20px;
	position: relative;
}

.p-section__title {
    text-align: center;
    color: #313131;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 30px;
}

.p-section__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.p-list {
	width: calc(100% / 4 - 15px);
	background: #fff;
}
.p-list__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p-list__image {
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 10px;
	max-height: 168px;
	overflow: hidden;
}

.p-list__title {
	color: #000;
	margin-bottom: 20px;
	font-weight: 600;
	line-height: 1.4;
}

.p-list__info {
    font-size: 12px;
    color: var(--color-lightblack);
    display: flex;
    align-items: center;
    gap: 0 5px;
}

.p-list__location {
	display: inline-block;
	background: var(--color-softred);
	color: #fff;
	padding: 4px 10px;
	border-radius: 5px;
	white-space: nowrap;
}

.p-section__footer {
    text-align: center;
    position: relative;
    z-index: 0;
}

.p-section__more-link {
	display: inline-block;
	background: var(--color-softyellow);
	color: #000 !important;
	font-weight: 600;
	border: 3px solid #575757;
	padding: 15px;
	position: relative;
	max-width: 360px;
	width: 100%;
}

.p-section__more-link::after {
	content: "";
	display: block;
	background: #bfbfbf;
	border: 3px solid #575757;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: -1;
}

.p-section__more-link::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMjQnIGhlaWdodD0nMjQnIHZpZXdCb3g9JzAgMCAyNCAyNCcgZmlsbD0nbm9uZScgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyA+IDxwYXRoIGQ9J00yMy4wNjc3IDExLjk5MjlMMTguODE4IDcuNzU3MzlMMTcuNDA2MSA5LjE3Mzk4TDE5LjI0MTUgMTEuMDAzMkwwLjkzMjQ2OSAxMS4wMDEyTDAuOTMyMjUxIDEzLjAwMTJMMTkuMjM2OSAxMy4wMDMyTDE3LjQxNTUgMTQuODMwOEwxOC44MzIxIDE2LjI0MjZMMjMuMDY3NyAxMS45OTI5WicgZmlsbD0nY3VycmVudENvbG9yJyAvPiA8L3N2Zz4=");
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}
.p-section-channel {
	position:relative;
}
.p-section-channel::before {
	content: "";
	display: inline-block;
	width: 11vw;
	height: auto;
	background: url(../images/cloud-l-2.webp) no-repeat;
	position: absolute;
	top: 50%;
	left: -3vw;
	transform: translateY(-50%);
	z-index: 0;
	background-size: contain;
	aspect-ratio: 274 / 193;
}
.p-section-channel .p-section__title {
	margin-bottom: 60px;
}
.p-section-channel .u-inner {
	padding-left: 60px;
	padding-right: 60px;
	padding-bottom: 10em;
}
.p-section__cannel {
	display: flex;
	gap: 40px 80px;
	flex-wrap: wrap;
}
.p-section__item {
	width: calc(100% / 5 - 64px);
}
.p-section__link {
	text-align: center;
}
.p-section__thumbnail {
	margin-inline: auto;
	display: block;
	margin-bottom: 10px;
	border-radius: 50%;
	width: 100px;
	height: 90px;
	object-fit: cover;
}
.p-section__description.elps {
	font-size: 13px;
	color: var(--color-lightblack);
}

.p-content__link-item {
	display: flex;
	align-items: center;
}

.p-content__link-item {
	display: flex;
	align-items: center;
}
.p-content {
	text-align: center;
	max-width: 1280px;
	margin-inline: auto;
	margin-top: -90px;
	z-index: 1;
	position: relative;
	padding: 0 40px;
}
.p-content__text {
	padding: 2em;
	border-bottom: 2px solid #575757;
	line-height: initial;
}
.p-content__icon {
	padding: 2em;
	border-right: 2px solid #575757;
}
.p-content__description {
	flex: 1;
	font-size: 30px;
	color: var(--color-lightblue);
	font-weight: 600;
}
.p-content-inner {
	position: relative;
	background: var(--color-softyellow);
	border: 2px solid #575757;
}
.p-content-inner::after {
    display: block;
    background: var(--color-lightblue);
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    z-index: -2;
    top: 10px;
    left: 10px;
    border: 2px solid #575757;
}
.p-content__link-item::after {
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nMjQnIGhlaWdodD0nMjQnIHZpZXdCb3g9JzAgMCAyNCAyNCcgZmlsbD0nbm9uZScgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyA+IDxwYXRoIGQ9J00yMy4wNjc3IDExLjk5MjlMMTguODE4IDcuNzU3MzlMMTcuNDA2MSA5LjE3Mzk4TDE5LjI0MTUgMTEuMDAzMkwwLjkzMjQ2OSAxMS4wMDEyTDAuOTMyMjUxIDEzLjAwMTJMMTkuMjM2OSAxMy4wMDMyTDE3LjQxNTUgMTQuODMwOEwxOC44MzIxIDE2LjI0MjZMMjMuMDY3NyAxMS45OTI5WicgZmlsbD0nY3VycmVudENvbG9yJyAvPiA8L3N2Zz4=");
	content: "";
	display: inline-block;
	width: 28px;
	height: 28px;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 20px;
}
/********************************

pager

********************************/

.pager01 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.pager01 li {
	margin: 3px;
}

.pager01 li a {
  display: block;
  padding: 10px;
  border: 1px solid #999;
  border-radius: 3px;
  color: #333;
}
.pager01 li.current a {
  background: #e1e1e1;
}
.now {
	margin-right: auto;
}
.p-section__pager {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/********************************

footer

********************************/

.copyrights {
	text-align: center;
	margin: 7em auto 0em;
	font-size: 12px;
	padding-bottom: 4em;
	line-height: initial;
}

.nav_list {
	position: fixed;
	top: 50%;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	z-index: 99999;
}
.nav_list-item:not(:last-child) {
	margin-bottom: 10px;
}
.nav_list-item a {
	display: flex;
	align-items: center;
	padding: 0 10px;
	width: 140px;
	height: 40px;
	background: #FFF;
	color: #111;
	text-decoration: none;
	border-top: solid 2px #111;
	border-bottom: solid 2px #111;
	border-left: solid 2px #111;
	border-radius: 9999px 0 0 9999px;
	z-index: 10;
	font-size: 14px;
	gap: 0 10px;
}
.nav_list-item.youtube svg {
	width: 20%;
}
.nav_list-item span {
	font-weight: 600;
}
@media screen and (min-width: 769px) {
.nav_list-item a:hover {
	background: #000;
	transition: .2s;
	color: #fff;
}
.nav_list-item a:hover svg {
	fill: #fff;
}
}

@media screen and (max-width: 1024px) {
.image-wrapper {
	max-width: 70%;
	margin-inline: auto;
}
.p-section__cannel {
	display: flex;
	gap: 60px;
	flex-wrap: wrap;
	justify-content: center;
}
.p-section__item {
	width: calc(100% / 3 - 40px);
}
}

@media screen and (max-width: 768px) {
.header {
	padding: 10px;
}
.header-inner {
	padding-top: 50%;
	background-size: cover;
}
.logo {
	width: 50%;
}
.wrap {
	padding: 10px 10px 100px;
	background: url(../images/bg_body.jpg) repeat center top / contain;
	overflow-x: hidden;
}
.p-content__text {
	font-size: 14px;
}

.p-section__cannel {
	gap: 0px 40px;
}
.p-section__item {
	width: calc(100% / 5 - 32px);
}

.p-list {
	width: calc(100% / 2 - 10px);
}
.wrap__inner {
	padding:0;
}
.p-section__inner {
	padding: 60px 20px;
}
.p-section-channel .u-inner {
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 2em;
}
.p-section__cannel {
	gap: 20px;
	justify-content: center;
}
.p-section__item {
	width: calc(100% / 2 - 10px);
}
.p-content__text {
	padding: 1em;
	font-size: 12px;
}
.p-content__icon {
	padding: 1em;
}
.p-content__icon img {
	width: 70%;
}
.p-content__description {
	font-size: 20px;
}
.p-content__link-item::after {
	width: 18px;
	height: 18px;
	right: 5px;
}
.p-content {
	margin-top: 20px;
	padding: 0 20px;
}
.p-section__pager {
	flex-direction: column;
	gap: 40px;
}
.now {
	margin: initial;
}
.pager01 {
	position: static;
	transform: initial;
}
.p-section__title {
	max-width: 85%;
	margin-inline: auto;
}
.p-section-channel::before {
	width: 30vw;
	top: 0;
	z-index: 1;
}
/* モーダル
-----------------------------------------------------------------------------------*/
#thanks {
	z-index: 30;
	max-width: 100%;
}

.inner_thanks {
	padding: 2rem 2rem 0 2rem;
}

.inner_thanks p {
	text-align: center;
	font-size: 2rem;
	padding-bottom: 15px;
}

.inner_thanks .inner_thanks02 {
	text-align: left;
	font-size: 4vw;
	padding-bottom: 15px;
	line-height: initial;
}

.inner_thanks .txt {
	text-align: left;
	font-size: 4vw;
	line-height: initial;
}

.close_btn a {
	width: 75%;
	margin: 20px auto 0 auto;
	color: #fff;
	font-size: 4vw;
	font-weight: bold;
	border: 2px solid #fff;
	border-radius: 30px;
	padding: 1rem 0;
}


.changed {
	display: none !important;
}
.nav_list {
	display: flex;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background: #fff;
	z-index: 999999;
	flex-direction: initial;
	top: initial;
	box-shadow: 0px 0px 5px 0px rgb(136, 136, 136);
}
.nav_list-item {
	text-align: center;
	width: calc(100% / 4);
}
.nav_list-item a {
	font-size: 3.5vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 10px 0;
	color: #000;
	gap: 10px 0;
	width: auto;
	border: none;
}
.nav_list-item.youtube a {
	gap: 3px 0;
}
.nav_list-item:not(:last-child) {
	margin-bottom: 0;
}

.nav_list-item.youtube svg {
	width:auto;
}

}

@media screen and (max-width: 480px) {
.p-content {
	padding: 0 15px 0 10px;
}
.p-section__list {
    grid-template-columns: 1fr;
    gap: 12px;
}
.p-content__description {
	font-size: 4vw;
	text-align: left;
	text-indent: .5em;
}
.p-list__store-name {
	font-size: 14px;
}
.p-list {
	width: 100%;
}

}