@charset "utf-8";

/*
Theme Name:harata-f
*/

/*テーマカラー
---------------------------------------------------------------------------*/
:root{
    --primary-color: #ed6d3d;
	--secondary-color: #e45858;
	--accent-color: #d1d1e9;
	--black: #2b2c34;
	--white: #fffffe;
	--gray-1: #eee;
	--gray-2: #ccc;
	--gray-3: #999;
	--gray-4: #666;
	--gray-5: #333;
}


/*all
---------------------------------------------------------------------------*/
html,
body{
	height: 100%;
	font-size: 18px;
}
body{
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", "Noto Serif JP", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: none;
	text-autospace: normal;
	line-break: strict;
	background: var(--white);
	color: var(--black);
	line-height: 1.8;
	letter-spacing: 0.05em;
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
	animation: fadeIn 1.5s ease 0s 1 normal;
}

@media screen and (max-width:1024px){
	html, body{
		font-size: 16px;
	}
}
@media screen and (max-width:768px){
	html, body{
		font-size: 14px;
	}
}

/*リセット*/
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,
form,figure,form,select,input,textarea{
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-weight: normal;
}
nav{
	margin: 0;
	padding: 0;
}
table{border-collapse: collapse;}
img{
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
video{max-width: 100%;}
iframe{width: 100%;}


/*link
---------------------------------------------------------------------------*/
a:hover{
	color: var(--secondary-color);
}
main a{
	color: var(--primary-color);
	text-decoration: underline;
	transition: 0.3s;
}
main a:hover{
	text-decoration: none;
}
main a img{
	transition: 0.3s;
}
main a img:hover{
	opacity: 0.8;
}

a.blank::after{
	font-family: "Font Awesome 6 Free";
	content:" \f08e";
	font-weight: 900;
	padding-left: 0.25em;
	display: inline-block;
	text-decoration: none;
}

@media screen and (min-width:767px){
	a[href*="tel:"]{
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}


/*container
---------------------------------------------------------------------------*/
#container{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 0 auto;
}


/*catchcopy
---------------------------------------------------------------------------*/
#catchcopy{
	background: var(--primary-color);
	text-align: center;
	font-size: 0.65em;
	color: var(--white);
}

@media screen and (max-width:480px){
	#catchcopy{
		padding: 5px;
	}
	#catchcopy span{
		display: none;
	}
}


/*header
---------------------------------------------------------------------------*/
header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	margin: 0 auto;
	padding: 20px 30px;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
	position: fixed;
	z-index: 999;
	top: 0;
}
header #logo img{
	width: 180px;
}
@media screen and (max-width:768px){
	header #logo img{
		width: 150px;
	}
}
@media screen and (max-width:480px){
	header{
		flex-direction: column;
		padding: 10px 5px;
	}
	header #logo{
		width: 100%;
	}
}


/*menubar
---------------------------------------------------------------------------*/
#menubar{
	margin-left: auto;
	margin-right: 50px;
}
#menubar ul{
	width: 98%;
	display: flex;
	justify-content: space-around;
}
#menubar li{
	flex: 1;
	margin-right: 1em;
	text-align: center;
}
#menubar a{
	text-decoration: none;
	display: block;
	font-size: 1em;
	color: var(--black);
	font-weight: 500;
	padding: 0.7em 0.5em;
	white-space: nowrap;
	border-bottom: solid 2px transparent;
	box-sizing: border-box;
	transition: 0.3s;
}
#menubar a:hover{
	color: var(--primary-color);
	border-bottom: solid 2px var(--primary-color);
}
#menubar li.current a{
	color: var(--primary-color);
	border-bottom: solid 2px var(--primary-color);
}


/*hamburgermenu
---------------------------------------------------------------------------*/
/*ボタン*/
.openbtn{
	position: fixed;
	z-index: 9999;
	background: var(--primary-color);
	right: 25px;
	top: 25px;
	width: 50px;
	height: 50px;
	border-radius: 5px;
	cursor: pointer;
}
.openbtn span{
	display: inline-block;
	transition: all 0.3s;
	position: absolute;
	left: 28%;
	height: 2px;
	border-radius: 5px;
	background: var(--white);
	width: 45%;
}
.openbtn span:nth-of-type(1){
	top: 30%;
}
.openbtn span:nth-of-type(2){
	top: 50%;
}
.openbtn span:nth-of-type(3){
	top: 70%;
}
.openbtn.active span:nth-of-type(1){
	top: 35%;
	left: 32.5%;
	transform: translateY(6px) rotate(-45deg);
	width: 35%;
}
.openbtn.active span:nth-of-type(2){
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
	top: 60%;
	left: 32.5%;
	transform: translateY(-6px) rotate(45deg);
	width: 35%;
}
	
/*メニュー本体*/
#g-nav{
	overflow-y: auto;
	position: fixed;
	z-index: 999;
	top: 0;
	right: -120%;
	width: 50%;/*100%*/
	height: 100vh;
	padding: 5% 0;
	background: var(--gray-1);
	transition: all 0.4s;/*0.6*/
	display: flex;
	flex-wrap: wrap;
	justify-content: first baseline;
}
#g-nav.panelactive{
	right: 0;
}
#g-nav ul{
	width: calc(85% / 3);
	margin: 2.5%;
	padding: 0;
	list-style-type: none;
}
#g-nav ul li a{
	text-decoration: none;
	color: var(--black);
	transition: 0.3s;
	font-family: "Noto Serif JP";
	font-weight: 600;
}
#g-nav ul li a:hover{
	color: var(--gray-2);
}
#g-nav ul li:first-of-type > a{
	display: block;
	width: 100%;
	border-bottom: solid 1px var(--gray-3);
}
#g-nav ul li ul{
	display: block;
	width: 100%;
	padding-left: 1em;
}
#g-nav ul li ul li:first-of-type > a{
	border: none;
}

@media screen and (max-width:1024px){
	#g-nav{
		padding: 10% 0;
	}
	#g-nav ul li a{
		font-size: 0.85em;
	}
}
@media screen and (max-width:768px){
	#menubar{
		display: none;
	}
	#g-nav{
		padding: 15% 0;
		width: 100%;
	}
	#g-nav ul{
		width: calc(90% / 2);
	}
}
@media (orientation: landscape) and (max-width: 1024px){
	#g-nav{
		padding: 7.5% 0;
	}
	#g-nav ul{
		width: calc(85% / 3);
	}
}
@media screen and (max-width:480px){
	.openbtn{
		right: 10px;
		top: 12.5px;
	}
	.openbtn.active span:nth-of-type(3){
		top: 59.5%;
	}
	#g-nav ul li a{
		font-size: 0.85em;
	}
}


/*inner
---------------------------------------------------------------------------*/
.inner1{
	max-width: 1024px;
	margin: 0 auto;
	padding: 0 2.5%;
}
/*最大幅なし*/
.inner2{
	margin: 0 auto;
	padding: 0 2.5%;
}


/*main
---------------------------------------------------------------------------*/
main:not(#home){
	margin-top: 50px;
}

main h2{
	word-break: keep-all;
	font-feature-settings: "palt";
	display: block;
	font-size: 2.5em;
	font-weight: 600;
	padding: 0 15px;
	margin-bottom: 75px;
	position: relative;
	line-height: 1.3;
}
main h2.en::before{
	word-break: keep-all;
	font-feature-settings: "palt";
	content: attr(data-en);
	display: block;
	color: var(--accent-color);
	font-size: 1.5em;
}
/*背景色がある時*/
.bg1 h2.en::before,
.bg2 h2.en::before{
	color: var(--white);
}

main h2 .small,
main h3 .small{
	display: block;
	font-size: 0.4em;
}

main h3{
	word-break: keep-all;
	font-feature-settings: "palt";
	font-size: 2em;
	padding: 0 15px;
	margin-bottom: 30px;
	font-weight: 600;
}

main h4{
	font-feature-settings: "palt";
	font-size: 1.1em;
}
main h4.title{
	padding: 0 15px;
	margin-bottom: 20px;
	font-size: 1.5em;
	font-weight: 600;
}

main p{
	margin: 1em;
}
main p + p{
	/*margin-top: -0.5em;*/
}

/*投稿*/
main #post h2{
	font-size: 2.5em;
}
main #post h3{
	font-size: 2em;
}

@media screen and (max-width:768px){
	main h2.en::before{
		font-size: 1.25em;
		top: -30px;
	}
}
@media screen and (max-width:480px){
	main h2{
		font-size: 2em;
		margin-bottom: 25px;
	}
	main h2.en::before{
		font-size: 1em;
		top: -15px;
	}
	main h3{
		font-size: 1.75em;
		margin-bottom: 20px;
	}
}


/*ul,ol
---------------------------------------------------------------------------*/
ul,ol{
	padding: 0 1em 0 2em;
}
ul.none{
	list-style: none;
	padding-left: 0;
}


/*footer
---------------------------------------------------------------------------*/
footer{
	padding: 75px 0 0;
	background: #cacaca;
}
footer a{
	color: inherit;
	text-decoration: none;
}

footer .icon{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 50px;
}
footer .icon a{
	margin: 1.5%;
	text-align: center;
}
footer .icon a i{
	width: 80px;
}
/*
footer .icon a img{
	width: 80px;
}
*/

#footermenu nav{
	display: flex;
	flex-wrap: wrap;
	justify-content: first baseline;
}
#footermenu nav ul{
	width: calc(85% / 3);
	margin: 2.5%;
	padding: 0;
	list-style-type: none;
	line-height: 2.2;
	font-size: 0.9em;
}
#footermenu nav ul li a{
	text-decoration: none;
	transition: 0.3s;
}
#footermenu nav ul li a:hover{
	opacity: 0.8;
}
#footermenu nav ul li:first-of-type > a{
	display: block;
	width: 100%;
	border-bottom: solid 1px var(--gray-4);
}
#footermenu nav ul li ul{
	display: block;
	width: 100%;
	padding-left: 1em;
}
#footermenu nav ul li ul li:first-of-type > a{
	border: none;
}

footer #copyright{
	padding: 1.5%;
	background: var(--black);
	font-size: 0.75em;
	text-align: center;
	color: var(--white);
}

@media screen and (max-width:1024px){
	footer .icon a img{
		width: 60px;
	}
}
@media screen and (max-width:768px){
	#footermenu{
		display: none;
	}
}
@media screen and (max-width:480px){
	footer{
		padding: 25px 0 0;
	}
	footer .icon{
		margin-bottom: 25px;
	}
	footer .icon a img{
		width: 50px;
	}

}


/*article
---------------------------------------------------------------------------*/
article{
	padding: 7.5%;
	background: var(--white);
	border: solid 1px var(--gray-2);
	box-sizing: border-box;
	/*border-radius: 15px;*/
}
article a{
	text-decoration: none;
	color: var(--black);
	/*display: flex;*/
	transition: 0.3s;
}
article:has(a){
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
}
article a:hover{
	opacity: 0.8;
}
article figure{
	width: 100%;
	overflow: hidden;
	margin-bottom: 15px;
}
article figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 4 / 3;
}
article .text{
	color: var(--primary-color);
}
article h4{
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 1em;
}
article .text p{
	margin: 0;
	color: var(--gray-4);
}
article .text p.date{
	display: inline-block;
	background: var(--gray-1);
	border-radius: 5px;
	padding: 5px;
	margin-bottom: 5px;
	font-size: 0.85em;
}

/*調整*/
.uk-grid > * {
    padding-top: 15px;
    padding-bottom: 15px;
}


@media screen and (max-width:480px){
	article{
		margin: 1% 1% 5%;
		padding: 7.5% 5%;
	}
	article a{
		display: block;
	}
	article figure{
		width: 100%;
		margin-bottom: 10px;
	}
	article .text{
		width: 100%;
		padding-left: 0;
	}
	article:has(a){
		box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
	}
}


/*flex / item
---------------------------------------------------------------------------*/
.flex{
	width: 98%;
	margin: 1% 1% 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/*2列*/
.flex .item2{
	width: 48%;
	margin: 1%;
	padding: 2.5%;
	background: var(--accent-color);
	border-radius: 15px;
	transition: 0.3s;
}
.flex .item2 figure{
	width: 100%;
	margin-bottom: 10px;
	overflow: hidden;
}
.flex .item2 h4{
	font-weight: 500;
	margin-bottom: 10px;
}
.flex .item2 p{
	margin: 0;
}
/*背景色がある時*/
.bg1 .flex .item2,
.bg2 .flex .item2{
	background: var(--white);
}
/*リンクあり*/
.flex .item2 a{
	text-decoration: none;
	color: var(--black);
}
.flex .item2 a figure img{
	transition: 0.3s;
}
.flex .item2 a:hover figure img{
	scale: 1.15;
}
.flex .item2:has(a){
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
}

/*3列*/
.flex .item3{
	width: 31.33333%;
	margin: 1%;
	padding: 2.5%;
	background: var(--accent-color);
	border-radius: 15px;
	transition: 0.3s;
}
.flex .item3 figure{
	width: 100%;
	margin-bottom: 10px;
	overflow: hidden;
}
.flex .item3 h4{
	font-weight: 500;
	margin-bottom: 10px;
}
.flex .item3 p{
	margin: 0;
}
/*背景色がある時*/
.bg1 .flex .item3,
.bg2 .flex .item3{
	background: var(--white);
}
/*リンクあり*/
.flex .item3 a{
	text-decoration: none;
	color: var(--black);
}
.flex .item3 a figure img{
	transition: 0.3s;
}
.flex .item3 a:hover figure img{
	scale: 1.15;
}
.flex .item3:has(a){
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width:480px){
	.flex .item2,
	.flex .item3{
		width: 95%;
		margin: 2.5%;
		padding: 5%;
	}
	.flex .item2:has(a),
	.flex .item3:has(a){
		box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
	}
}


/*link-btn
---------------------------------------------------------------------------*/
.flex.link-btn{
	flex-wrap: wrap;
	justify-content: center;
}
.flex.link-btn a{
	flex: auto;
	width: 31.33333%;
	background: var(--white);
	padding: 2.5%!important;
	margin: 1%;
	border: solid 1px var(--gray-4);
	box-sizing: border-box;
	border-radius: 15px;
	color: var(--gray-4);
	text-align: center;
	text-decoration: none;
	transition: 0.3s;
}
.flex.link-btn a::after{
	font-family: "Font Awesome 6 Free";
	content:" \f107";
	font-weight: 600;
	padding-left: 0.5em;
	display: inline-block;
	text-decoration: none;
}
.flex.link-btn a:hover{
	background: var(--gray-1);
}

@media screen and (max-width:768px){
	.list-item3{
		width: 47%;
	}
	.list-item2{
		width: 97%;
	}
}
@media screen and (max-width:480px){
	.list-item3{
		width: 97%;
	}
	.list-item2{
		display: block;
	}
	.flex.link-btn a{
		width: 48%;
		padding: 1.5%;
		font-size: 0.9em;
	}
}


/*textimg
---------------------------------------------------------------------------*/
.flex .textbox{
	width: 60%;
}
.flex .imgbox{
	width: 40%;
}


/*table
---------------------------------------------------------------------------*/
.ta1{
	width: 98%;
	margin: 50px auto;
	box-sizing: border-box;
	border-collapse: collapse;
	background: var(--white);
}
.ta1 th,
.ta1 td{
	border-bottom: 2px solid var(--gray-2);
	box-sizing: border-box;
	border-collapse: collapse;
	padding: 1em;
	word-break: break-all;
	border-collapse: collapse;
}
.ta1 th{
	width: 30%;
	text-align: left;
	border-bottom: 2px solid var(--primary-color);
}

@media screen and (max-width:768px){
	.ta1{
		margin: 25px auto;
	}
}
@media screen and (max-width:480px){
	.ta1 th,
	.ta1 td{
		display: block;
		width: 100%;
	}
}


/*pagetop
---------------------------------------------------------------------------*/
.pagetop-show{
	display: block;
}
.pagetop a{
	display: block;
	text-decoration: none;
	text-align: center;
	z-index: 99;
	position: fixed;
	right: 20px;
	bottom: 50px;
	color: var(--white);
	/*font-size: 1.5em;*/
	/*background: rgba(0,0,0,0.2);*/
	width: 100px;
	line-height: 100px;
	/*border-radius: 50%;*/
}

@media screen and (max-width:768px){
	.pagetop-show,
	.pagetop a{
		display: none;
	}
}


/*button
---------------------------------------------------------------------------*/
p:has(a.btn1){
	margin: 15px 0;
}
a.btn1{
    background: var(--primary-color);
    margin: 0 auto;
    max-width: 300px;
    padding: 15px 50px;
	border-radius: 30px;
    color: var(--white);
	text-decoration: none;
	transition: 0.3s;
}
a.btn1:hover{
    color: var(--white);
	opacity: 0.8;
}

/*前のページに戻る*/
a.btn1.back{
    background: var(--gray-4);
}
p:has(a.btn1.back){
	margin-top: 100px;
}


/*animation
---------------------------------------------------------------------------*/
/*下から出現*/
.fadeUpTrigger{
	opacity: 0;
}
/*左から出現*/
.fadeRightTrigger{
	opacity: 0;
}
/*右から出現*/
.fadeLeftTrigger{
	opacity: 0;
}
/*順番に下から出現*/
.delayScroll > * {
	opacity: 0;
}
/*下から出現*/
.fadeUp{
	animation: fadeUpAnime 1s forwards;
	opacity: 0;
}
@keyframes fadeUpAnime{
	from {
	  opacity: 0;
	  transform: translateY(80px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
}
/*左から出現*/
.fadeRight{
	animation: fadeRightAnime 1s forwards;
	opacity: 0;
}
@keyframes fadeRightAnime{
	from {
	  opacity: 0;
	  transform: translateX(-80px);
	}
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
}
/*右から出現*/
.fadeLeft{
	animation: fadeLeftAnime 1s forwards;
	opacity: 0;
}
@keyframes fadeLeftAnime{
	from {
	  opacity: 0;
	  transform: translateX(80px);
	}
	to {
	  opacity: 1;
	  transform: translateX(0);
	}
}
/*上下に揺れる*/
.yurayura{
	animation-name: yurayura;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-duration: 1.5s;
}
@keyframes yurayura{
    0%{
        transform: translate(0,0px);
    }

    100%{
        transform: translate(0,-15px)
    }
}


/*mainimg
---------------------------------------------------------------------------*/
#mainimg{
	width: 100%;
	/*margin-top: 90px;*/
	position: relative;
}
#mainimg img{
	width: 100%;
}

#mainimg .vtext{
    position: absolute;
    top: 55%;
    left: 5%;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: "Noto Serif JP";
    font-weight: 900;
    color: var(--black);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
#mainimg .vtext span{
    display: inline-flex;
    width: auto;
    height: auto;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    line-height: 1.5;
}

@media screen and (min-width:1023px) and (max-width:1280px){
	#mainimg .vtext{
		top: 30%;
	}
}
@media screen and (max-width:768px){
	#mainimg{
		/*margin-top: 75px;*/
	}
	#mainimg .vtext{
		top: 45%;
		font-size: 1.5em;
	}
}
@media screen and (max-width:480px){
	#mainimg{
		/*margin-top: 60px;*/
	}
	#mainimg .vtext{
		top: 50%;
		font-size: 1em;
	}
}


/*flow
---------------------------------------------------------------------------*/
.flow{
	margin-bottom: 100px;
}
.flow .flow-item{
	width: 98%;
	margin: 2.5em auto;
	position: relative;
}
.flow .flow-item .title{
	display: inline-flex;
	align-items: center;
}
.flow .flow-item .title .circle{
	display: inline-block;
	width: 1em;
	height: 1em;
	content: "";
	border-radius: 50%;
	background: var(--gray-4);
	border: 1px solid var(--gray-4);
}
.flow .flow-item .title h4{
	padding-left: 1em;
	color: var(--primary-color);
	font-size: 1.15em;
	font-weight: 500;
}
.flow .flow-item .comment{
	padding-left: 2em;
	margin-top: 10px;
}
.flow .flow-item .comment img{
	width: 30%;
	margin-top: 15px;
	border: solid 1px var(--gray-3);
	box-sizing: border-box;
}
.flow .flow-item .line{
	width: 1px;
	height: calc(100% + 2em);
	background: var(--gray-3);
	position: absolute;
	top: 1em;
	left: 0.5em;
	z-index: -1;
}
.flow-item:last-of-type .line:last-of-type{
	display: none;
}


/*form
---------------------------------------------------------------------------*/
form input,
form select,
form textarea{
	font-family: 'Noto Sans JP';
	background: var(--gray-1);
	width: 100%;
	border: none;
	padding: 15px;
}
form input::placeholder,
form textarea::placeholder{
	color: var(--gray-4);
}

/*チェックボックス*/
form input[type="checkbox"]{
	width: auto;
	margin-right: 0.25em;
}

/*送信ボタン*/
form input[type="submit"]{
	width: auto;
	padding: 15px 30px;
	background: var(--primary-color);
	border-radius: 30px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	color: var(--white);
	transition: 0.3s;
}
form input[type="submit"]:hover{
	opacity: 0.7;
}


/*common-access
---------------------------------------------------------------------------*/
#common-access{
	position: relative;
    width: 100%;
	overflow: hidden;
    height: 600px;
}
#common-access iframe{
	position: absolute;
	top: 0;
	left: 0;
    width: 100%;
    height: 100%;/*860px*/
	/*margin-top: -170px;*/
    border: 0;
}

@media screen and (max-width:1024px){
	#common-access{
		height: 450px;
	}
}
@media screen and (max-width:480px){
	#common-access{
		height: 360px;
	}
}


/*text / images / other
---------------------------------------------------------------------------*/
.color1,
.color1 a{
	color: var(--primary-color)!important;
}
.l{
	text-align: left!important;
}
.c{
	text-align: center!important;
}
.r{
	text-align: right!important;
}
.small{
	font-size: 0.75em;
}
/*デバイス切替*/
.pc{
	display: block;
}
.tb{
	display: none;
}
.sp{
	display: none;
}
/*幅調整*/
.ws{
	display: block;
	width: 50%!important;
	margin: 0 auto!important;
}
.wl{
	display: block;
	width: 96%!important;
	margin: 0 auto!important;
}
/*背景色*/
.bg1{
	background: var(--accent-color);
}
.bg2{
	background: var(--secondary-color);
}

/*Googlemap*/
iframe.gmap{
	width: 100%;
	height: 400px;
	margin: 10px auto;
	border: none;
}
/*上付き文字*/
sup{
	position: relative;
	vertical-align: baseline;
    height: 0;
    line-height: 1;
	bottom: 1ex;
}

/*画像右寄せ*/
.right-nofloat {
  float: none !important;
  display: block;
  text-align: right;
}
.right-nofloat img {
  display: inline-block;
}


@media screen and (max-width:1023px){
	.pc{
		display: none;
	}
	.tb{
		display: block;
	}
}
@media screen and (max-width:768px){
	.ws{
		width: 98%!important;
	}
	iframe.gmap{
		height: 300px;
	}
}
@media (orientation: landscape){
	.pc{
		display: block;
	}
	.tb{
		display: none;
	}
	.sp{
		display: none;
	}
}
@media screen and (max-width:480px){
	.tb{
		display: none;
	}
	.sp{
		display: block;
	}
	iframe.gmap{
		height: 240px;
	}
}


/*padding / margin
---------------------------------------------------------------------------*/
.mb25{
	margin-bottom: 25px!important;
}
.mb50{
	margin-bottom: 50px!important;
}
.mb-50{
	margin-bottom: -50px!important;
}
.mb100{
	margin-bottom: 100px!important;
}
.mt50{
	margin-top: 50px!important;
}
.mt100{
	margin-top: 100px!important;
}

/*コンテンツ区切り*/
.contents{
	padding: 150px 0;
	overflow: hidden;
}
.contents-in{
	padding: 50px 0;
	overflow: hidden;
}

@media screen and (max-width:768px){
	.contents{
		padding: 100px 0;
	}
	.contents-in{
		padding: 25px 0;
	}
}
@media screen and (max-width:480px){
	.contents{
		padding: 50px 0;
	}
}


/*ページナビゲーション
---------------------------------------------------------------------------*/
.page-nav ul{
	display: flex;
	justify-content: center;
	list-style: none;
	gap: 8px;
	padding: 0;
	margin-top: 100px;
}
.page-nav li *{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 45px;
}
.page-nav li *:not(.dots){
	background: var(--white);
	width: 45px;
	border-radius: 50%;
	color: var(--black);
	transition: 0.3s;
	text-decoration: none;
}
.page-nav li .current,
.page-nav li a:hover{
	background: var(--black);
	color: var(--white);
}
.page-nav h2.screen-reader-text{
	display: none;
}


/*WordPress
---------------------------------------------------------------------------*/
div.wpcf7 .wpcf7-spinner{
    display: block;
}
.form input.wpcf7-form-control.wpcf7-submit:hover{
	transition: 0.3s;
}
.form input.wpcf7-form-control.wpcf7-submit:hover{
	cursor: pointer;
	opacity: 0.8;
}
.wpcf7-not-valid-tip::before{
	font-family: "Font Awesome 6 Free";
	content:" \f071";
	font-weight: 900;
	padding-right: 0.25em;
	display: inline-block;
	text-decoration: none;
}
.wpcf7-response-output{
	display: block;
	padding: 2.5%!important;
	text-align: center;
}
.grecaptcha-badge{
	visibility: hidden;
}

.wp-block-table,
.wp-block-gallery,
.wp-block-image{
	width: 98%;
	margin: 50px auto;
}
.wp-block-heading{
	margin-top: 50px;
}

.wp-block-table.ta1 table{
	width: 98%;
	margin: 50px auto;
	box-sizing: border-box;
	border-collapse: collapse;
	background: var(--white);
}
.wp-block-table.ta1 table td{
	border-bottom: 2px solid var(--gray-2);
	box-sizing: border-box;
	border-collapse: collapse;
	padding: 1em;
	word-break: break-all;
	border-collapse: collapse;
}
.wp-block-table.ta1 table td:first-child{
	width: 30%;
	text-align: left;
	border-bottom: 2px solid var(--primary-color);
}

.wp-block-button__link:hover{
	opacity: 0.85;
	color: var(--white);
}

/*breadcrumbs*/
.aioseo-breadcrumbs{
	font-size: 0.75em;
	margin-bottom: 30px;
	color: var(--gray-3);
}

@media screen and (max-width:768px){
	.wp-block-table.ta1 table{
		margin: 25px auto;
	}
}
@media screen and (max-width:480px){
	.wp-block-table.ta1 table td,
	.wp-block-table.ta1 table td:first-child{
		display: block;
		width: 100%;
	}
}


/*home / about us ★
---------------------------------------------------------------------------*/
#home-about{
	background-image: url(images/bg-about_pc.webp);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}

#home-about .flex{
	margin: 50px auto;
	align-items: end;
}
#home-about .text{
	width: 50%;
}
#home-about figure{
	width: 50%;
}
#home-about p:has(a.btn1){
	margin-top: 50px;
}

#home-about .inner1{
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
}
#home-about .inner1 p{
    writing-mode: vertical-rl;
    text-orientation: upright;
    white-space: pre-wrap;
    text-indent: 0;
    line-height: 2;
    margin: 0;
    display: block;
	font-family: "Noto Serif JP";
	font-weight: 600;
	
}

.text-blur{
  position: relative;
  display: inline-block;
}
.text-blur::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  filter: blur(6px);
  border-radius: 6px;
  z-index: -1;
}

@media screen and (max-width:1023px){
	#home-about{
		background-image: url(images/bg-about_tb.webp);
	}
}
@media screen and (max-width:768px){
	#home-about .inner1{
        flex-direction: column;
        gap: 16px;
    }
	#home-about .inner1 p{
        writing-mode: horizontal-tb;
        text-orientation: mixed;
        white-space: normal;
        line-height: 1.8;
    }
}
@media screen and (max-width:480px){
	#home-about .flex{
		width: 98%;
		flex-direction: column;
		margin: 25px auto;
	}
	#home-about .text{
		width: 100%;
		margin-bottom: 15px;
		font-size: 1em;
	}
	#home-about figure{
		width: 90%;
	}
	#home-about p:has(a.btn1){
		margin: 25px 0;
	}
	#home-about{
		background-image: url(images/bg-about_sp.webp);
	}
}


/*home / products ★
---------------------------------------------------------------------------*/
#home-products{
	background-image: url(images/bg-products.jpg);
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}


/*products ★
---------------------------------------------------------------------------*/
.shopping-banner a{
	background: var(--white);
	border: 1px solid var(--primary-color);
	box-sizing: border-box;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
	padding: 25px 5%;
	text-align: center;
	font-size: 1.5em;
	width: 100%;
	display: block;
	text-decoration: none;
}
.shopping-banner a:hover{
	background: var(--gray-1);
}