@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

@import url('https://fonts.googleapis.com/css2?family=Hina+Mincho&display=swap');

/* 管理画面　編集中のみ仮措置 */
.theme-editor-php .wrap .notice {
	display: none;
}

:root {
	--my_font-serif: "Hiragino Mincho ProN", YuMincho, serif;
	--my_font-serif-hina: "Hina Mincho", serif;
	--my_image-mask-wave-circle: url(http://life.hoshiko.work/wp-content/uploads/2024/05/wave-circle.svg);
}

/*
 * グローバルヘッダー
 * */
.l-header {
    -webkit-animation: FadeInFromY .75s ease 1.25s 1 normal both;
    animation: FadeInFromY .75s ease 1.25s 1 normal both;
    opacity: 0;
	transform: translateY(-100px);
}
.c-gnav>.menu-item {
	min-width: calc( 4em + 24px );
}
.l-header .c-gnav>li>a:after {
	background: var(--color_main);
}
.c-gnav a::after {
	height: 100% !important;
}
.c-gnav > li > a {
	transition: translateY .5s;
}
.c-gnav > li:hover > a {
	transform: translateY(-2px);
}

/* トップページ */
.top #content {
	padding-top: 0;
}

.p-mainVisual__slideTitle {
  font-family: var(--my_font-serif-hina);
  font-weight: 400;
  font-style: normal;
	font-size: 5vw;
}

.home h2 {
	font-size: 1.75em;
	font-family: var(--my_font-serif);
	letter-spacing: var(--swl-letter_spacing,.2em);
}

/* トップページ　店舗紹介 */
.home-store {
	background: rgb(83,191,222);
	background: linear-gradient(160deg, rgba(83,191,222,1) 60%, rgba(172,223,213,1) 100%);
}

.home-store_balloon-column {
	height: 3.6em;
}

.home-store_balloon-column .wp-block-column:first-child {
	display: flex;
    justify-content: right;
    padding-right: 1em;
}

.home-store_balloon {
	color: #fff;
    background: var(--color_main);
    font-weight: bold;
    border-width: 2px;
	border-radius: 10px;
}

.home-store_balloon:before {
	left: 50%;
	border-width: 2px;
}

.home-store_balloon_1 {
}

.home-store_balloon_2 {
}

.home h2.home-store_h2 {
	font-size: 3em;
}

.home-store_inner {
	margin-right: 50px;
	margin-left: 50px;
	padding: 0 50px 50px;
	border: 1px solid rgba(255,255,255,0.5);
	border-radius: 4px;
}
.post_content div.home-store_inner div>:first-child {
	margin-top: -0.65em !important;
}
.home-store_inner h3 mark{
	padding: 5px 2em;
	background-color: #fff !important;
	color: var(--color_main) !important;
}

.home-store_inner .wp-block-image img {
	width: 70%;
	background-color: #fff;
}

/* スライドショー */
.swiper-slide {
	transition: all 1.5s 0s;
}
.swiper-slide:not(.swiper-slide-active) {
	transform: scale(0.85);	
	opacity: 0.7;
}
.post_content .swiper-slide h3 {
	margin: 0.5em 0 0.8em;
	font-size: 1.25rem;
	font-family: var(--my_font-serif);
	text-align: center;
}
.swiper-slide p {
/* 	font-size: 0.9375rem; */
	line-height: 1.5;
	margin: 0 3% 0.5em;
}
.swiper-slide ul {
	font-size: 0.9375rem;
	line-height: 1.3;
	background-color: rgba(255,255,255,0.35);
	margin: 0 1rem;
	padding: 1em 3% 1em 10%;
}
.swiper-slide img {
	-webkit-mask-image: var(--my_image-mask-wave-circle);
    mask-image: var(--my_image-mask-wave-circle);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: 50% 50%;
    mask-position: 50% 50%;
    -webkit-mask-size: contain;
    mask-size: contain;
	}

/* ローディング画面 */
@keyframes loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}