@charset "UTF-8";
/*
Theme Name: SANE
Version: 1.0.0
Author: Sane - https://saneyoshi.com
-------------------------------------------------*/

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	/*baseline→middleにアレンジ*/
	vertical-align: middle;
	background: transparent;
}

body {
	margin: 0;
	word-break: normal;
	overflow-wrap: break-word;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: none;
}

* {
	box-sizing: border-box;
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

del {
	text-decoration: line-through;
}

table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

input,
select {
	vertical-align: middle;
}

/*img*/
img {
	max-width: 100%;
	height: auto;
	border: 0;
}

/*b*/
b {
	vertical-align: baseline;
}

/*========================================
	外部機能
	セクション
	レイアウト
	装飾
	ボタン
*---------------------------------------*/
:root {
	font-size: 62.5%;
	/*ベースカラー*/
	--real-black-color: #000;
	--black-color: #1d2327;
	--white-color: #fff;
	--gray-color: #dadce0;
	/*イメージカラー*/
	--blue-color: #3b1e87;
	--gold-color: #b89c59;
	--light-gold-color: #f9f6f0;
	--cream-color: #f9f6f0;
	/*テキスト*/
	--text-color: #262626;
	--text-gray-color: #A8A8A8;
	--text-link-color: #0645ad;
	/*ボタン*/
	--btn-color: #ee781f;
	/*メニュー*/
	--menu-color: #3b1e87;
	--light-menu-color: #4a26a9;
	--bar-color: #f1f1eb;

	/*背景*/
	--bg-color: #dbd0e6;
	--border-color: #272727;
	/*フォーム*/
	--form-input-color: #f9f6f0;
	--form-required-color: #b89c59;
	--form-submit-color: #b89c59;
	--form-error-color: #00B36B;
	--form-border-color: #c9c9c9;
	/*ページ最大幅*/
	--widthMax: 960px;
}

body {
	font-size: 1.9rem;
	font-family: sans-serif;
	line-height: 1.6;
	letter-spacing: 0.04em;
	color: var(--text-color);
	background: var(--bg-color);
	background-image: url(/assets/img/common/bg.png);
	background-size: 20px;
}

a {
	color: var(--text-link-color);
}

ul li {
	position: relative;
	display: flex;
	align-items: center;
}

ul.sns {
	margin-top: 20px;
}

figcaption {
	color: var(--white-color);
	background: var(--black-color);
	font-size: 1.6rem;
	padding: 0 5px;
	text-align: center;
}

/*========================================
*	外部機能
*---------------------------------------*/
/*fancybox*/
.fancybox__thumb {
	border-radius: 0 !important;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
	border-color: var(--gray-color) !important;
	border-radius: 0 !important;
}

/*splide homeで使用*/
.home-slide-mb {
	display: none;
}

.home-slide-pc .splide {
	border-radius: 2px;
	border: 6px solid var(--blue-color) !important;
	z-index: 1;
}

.home-slide-mb .splide {
	border-bottom: 6px solid var(--blue-color) !important;
	z-index: 1;
}

.splide__pagination {
	bottom: 10px !important;
	text-align: right !important;
	padding: 0 10px !important;
	justify-content: flex-end !important;
}

.splide__pagination__page {
	background: var(--real-black-color) !important;
	border-radius: 0 !important;
	opacity: 1 !important;
	width: 20px !important;
	height: 6px !important;
	margin: 3px !important;
}

.splide__pagination__page.is-active {
	background: var(--gold-color) !important;
}

/*========================================
*	セクション
*---------------------------------------*/
.section-contents {
	position: relative;
}

.section-inner {
	width: 100%;
	max-width: var(--widthMax);
	margin: 0 auto;
	padding: 30px 0 0;
}

/*========================================
*	ボタン
*---------------------------------------*/
a.btn {
	font-size: 2.8rem;
	font-family: 'Hind', sans-serif;
	font-weight: 900;
	letter-spacing: -0.004em;
	padding: 5px 15px 3px;
	border-radius: 100vh;
	color: var(--text-color);
	background-color: var(--white-color);
	border: 2px solid var(--gray-color);
	border-bottom: 7px solid var(--gray-color);
	text-decoration: none;
	display: inline-block;
	width: 250px;
}

a.btn:hover {
	margin-top: 3px;
	border-bottom: 2px solid var(--gray-color);
}

a.btn i.fa {
	margin-right: 10px;
	color: var(--gray-color);
}

/*========================================
*	レイアウト
*---------------------------------------*/
div.grid-3 {
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr 1fr 1fr;
}

div.flex-area {
	display: flex;
	align-items: center;
}

div.flex-area dt {
	font-weight: bold;
	width: 25%;
}

div.box {
	width: 100%;
	background: var(--white-color);
	border-radius: 2px;
	border-left: 2px solid var(--border-color);
	border-right: 2px solid var(--border-color);
	position: relative;
}

div.box-inner {
	margin: 0 3px;
	border-left: 1px solid var(--border-color);
	border-right: 1px solid var(--border-color);
	position: relative;
	padding: 30px;
}

div.box-inner.no-padding {
	padding: 0;
}

/*table*/
table th {
	font-size: 2.0rem;
	font-weight: bold;
	color: var(--text-gray-color);
	text-align: left;
	border-bottom: solid 1px var(--gray-color);
	padding-left: 5px;
}

table th.pr {
	color: var(--gold-color);
	border-bottom: solid 1px var(--white-color);
}

table td {
	padding: 5px 5px 25px;
}

/*========================================
*	装飾
*---------------------------------------*/
/*見出し*/
.headline {
	position: absolute;
	top: -10px;
	display: inline-block;
	margin: 1rem 0 1rem -30px;
	padding: 5px 15px;
	color: var(--white-color);
	font-size: 2.2rem;
	font-weight: bold;
	background: var(--gold-color);
}

.headline:before {
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 0;
	height: 0;
	content: '';
	border-top: 10px solid #005276;
	border-left: 10px solid transparent;
}

.pt40 {
	padding-top: 40px;
}

/*wcapsule*/
p.wcapsule {
	padding: 2px 38px 2px 12px;
	display: inline-flex;
	align-items: center;
	background: var(--blue-color);
	border-radius: 15px;
	margin-top: 10px;
	position: relative;
}

p.wcapsule a {
	color: var(--white-color);
}

p.wcapsule a::after {
	content: '';
	display: inline-block;
	background-size: contain;
	vertical-align: middle;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 7px;
	width: 25px;
	height: 25px;
	background-image: url(/assets/img/common/arrow.svg);
}

/*ノート*/
.note {
	background-color: var(--white-color);
	background-image: linear-gradient(90deg, transparent 0%, transparent 50%, var(--white-color) 50%, var(--white-color) 100%),
		linear-gradient(180deg, #ccc 1px, transparent 1px);
	background-size: 8px 100%,
		/* 点線1のサイズ */
		100% 2.5em;
	/* 点線2のサイズ */
	line-height: 2.5em;
	/* 文字の高さ */
	padding-bottom: 1px;
	/* 最終行の下にも罫線を引く */
}

/*縦書き*/
.vtext {
	position: absolute;
	top: 0;
	font-size: 2.3rem;
	padding: 20px 10px;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	right: 0;
	writing-mode: tb-rl;
	letter-spacing: 0.2em;
	color: var(--text-color);
	font-family: serif;
	font-weight: bold;
}

.vtext span {
	border: 0.1px solid var(--black-color);
	padding: 10px 5px;
	margin-top: -5px;
}

/*========================================
*	見出し
*---------------------------------------*/
h1 {
	color: var(--blue-color);
	font-size: 2.6rem;
	font-weight: bold;
	margin-bottom: 20px;
}

h2 {
	color: var(--blue-color);
	font-weight: bold;
	font-size: 2.2rem;
}

h3 {
	font-size: 2.4rem;
}

h3 span {
	font-size: 1.8rem;
	vertical-align: baseline;
}

h4 {
	font-size: 1.6rem;
	font-weight: normal;
	position: absolute;
	top: 5px;

}

/*========================================
*	header
*---------------------------------------*/
.header {
	background: var(--white-color);
}

#header-bar {
	background: var(--black-color);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header-bar-inner {
	font-size: 1.5rem;
	font-weight: bold;
	width: 100%;
	max-width: var(--widthMax);
	color: var(--white-color);
	margin: 0 auto;
	padding: 6px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	line-height: 1;
}

#header-bar-inner span {
	color: var(--gold-color);
	vertical-align: baseline;
}

#header-contents {
	width: 100%;
	max-width: var(--widthMax);
	margin: 0 auto;
	padding: 20px 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header-contents .logo img {
	width: 100%;
	max-width: 230px;
	filter: drop-shadow(0 3px 6px rgb(0 0 0 / 3%));
}

.header-contents-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-contents-inner a:first-of-type {
	margin-right: 10px;
}

/*========================================
*	menu-pc
*---------------------------------------*/
nav.menu-mb {
	display: none;
}

nav.menu-pc {
	width: 100%;
	background: linear-gradient(20deg, var(--light-menu-color), var(--menu-color));
	position: relative;
}

nav.menu-pc ul {
	max-width: var(--widthMax);
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}

nav.menu-pc ul li a {
	color: var(--white-color);
	font-size: 1.9rem;
	font-weight: bold;
	padding: 15px 25px;
	position: relative;
	text-decoration: none;
}

nav.menu-pc ul li a:after {
	display: block;
	content: "";
	width: 100%;
	height: 4px;
	background-size: 4px 4px;
}

nav.menu-pc ul li a:after {
	width: 100%;
	height: 1px;
	background: radial-gradient(circle farthest-side, var(--white-color), var(--white-color) 50%, transparent 50%, transparent);
}

nav.menu-pc ul li a.current:after {
	height: 2px;
	background: radial-gradient(circle farthest-side, var(--gold-color), var(--gold-color) 50%, transparent 50%, transparent);
}

/*========================================
*	home-contents
*---------------------------------------*/
/*wcapsule*/
.box.pr {
	padding: 0;
	border-left: 0 solid var(--black-color);
	border-right: 0 solid var(--black-color);
}

.box.pr h2 {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	display: inline-block;
	padding: 5px 15px;
	color: var(--white-color);
	background: var(--blue-color);
	line-height: 1.2;
	border-radius: 2px 0 0 0;
}

.box.pr figure img {
	overflow: hidden;
	border-radius: 2px;
	border: 4px solid var(--blue-color);
}

.box.pr p {
	position: absolute;
	z-index: 0;
	bottom: 4px;
	right: 4px;
	font-weight: bold;
	display: inline-block;
	background: rgba(255, 255, 255, 0.9);
	padding: 3px 10px;
	line-height: 1.5;
	font-size: 1.6rem;
	border: 1px solid var(--blue-color);
}

/*========================================
*	footer
*---------------------------------------*/
/*footer-fixed*/
#footer-fixed {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 0;
}

#footer-fixed div {
	background: var(--white-color);
	padding: 15px;
	border-radius: 99px;
	width: 80px;
	height: 80px;
	filter: drop-shadow(0 3px 6px rgb(0 0 0 / 10%));
}

#footer-fixed img {
	width: 100%;
}

.footer {
	margin-top: 60px;
	position: relative;
	background: var(--white-color);
}

#footer-inner {
	width: 100%;
	max-width: var(--widthMax);
	margin: 0 auto;
	padding: 50px 10px;
	display: flex;
	justify-content: space-between;
}

#footer-inner figure img {
	width: 220px;
}

#footer-inner p {
	line-height: 2.1;
	padding-top: 20px;
}

#map {
	overflow: hidden;
	border: 6px solid var(--gray-color);
	border-radius: 2px;
	flex-basis: 65%;
	/* flexアイテムの幅を割合で指定 */
	position: relative;
}

#map iframe {
	width: 100%;
	height: 500px;
	margin-top: -170px;
}

#map p.wcapsule {
	border-radius: 0 6px 0 0;
	position: absolute;
	bottom: 0;
	padding-top: 5px;
}

.copyright {
	width: 100%;
	background: var(--real-black-color);
}

.copyright-inner {
	font-size: 1.3rem;
	color: var(--white-color);
	text-align: center;
	padding: 5px 0;
}

/*========================================
*	Contact form 7
*---------------------------------------*/
input[type="text"],
input[type="email"],
input[type="tel"] {
	font-size: 1.8rem;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 3px;
	border: 1px solid var(--form-border-color);
	height: 44px;
	width: 100%;
	padding-left: 5px;
	margin-top: 10px;
}

input[type="checkbox"] {
	height: 44px;
	width: 100%;
	margin-top: 10px;
}

.wpcf7-list-item:first-of-type {
	margin: 0;
}

textarea {
	border: 1px solid var(--form-border-color);
	font-size: 1.8rem;
	width: 100%;
	height: 200px;
	overflow: scroll;
	padding: 5px;
	font-family: inherit;
	padding-left: 5px;
	margin-top: 10px;
}

.wpcf7 input[type="submit"] {
	-webkit-appearance: none;
	appearance: none;
	border: none;
	cursor: pointer;
	border-radius: 2px;
	padding: 30px 10px;
	width: 100%;
	max-width: 100%;
	font-family: inherit;
	font-size: 1.9rem;
	font-weight: 900;
	background-color: var(--form-submit-color);
	color: var(--white-color);
	margin: 0 auto;
	line-height: 1;
	height: 80px;
}

.wpcf7-validates-as-required {
	background: var(--form-input-color);
}

.wpcf7 p {
	padding-top: 30px;
}

/* 必須項目 */
.wpcf7 span.required {
	color: var(--white-color);
	padding: 0 3px;
	border-radius: 1px;
	background: var(--form-required-color);
	display: inline-block;
	margin-left: 5px;
	vertical-align: baseline;
}

/* 送信後のメッセージ */
.wpcf7 form .wpcf7-response-output {
	border: none !important;
	margin: 0 !important;
}

.wpcf7 form .wpcf7-response-output {
	font-weight: 900;
	color: var(--form-error-color) !important;
}

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

	/*========================================
*	装飾
*---------------------------------------*/
	/*見出し*/
	.headline {
		margin: 1rem 0 1rem -10px;
	}

	.vtext {
		font-size: 1.9rem;
	}

	/*========================================
*	レイアウト
*---------------------------------------*/
	.section-inner {
		padding: 30px 10px 0;
	}

	/*========================================
*	ヘッダ
*---------------------------------------*/
	#header-bar-inner {
		letter-spacing: -0.004em;
	}

	#header-contents {
		display: block;
	}

	.header-contents-inner {
		margin-top: 20px;
	}

	/*========================================
*	外部機能
*---------------------------------------*/
	/*flickity homeで使用*/
	.home-slide-pc {
		display: none;
	}

	.home-slide-mb {
		display: block;
	}

	/*========================================
*	ボタン
*---------------------------------------*/
	a.btn {
		font-size: 2rem;
		width: 100%;
		padding: 5px 10px 3px;
	}

	/*========================================
*	セクション
*---------------------------------------*/
	.home-slide-mb .section-inner {
		padding: 0
	}

	/*========================================
*	レイアウト
*---------------------------------------*/
	div.flex-area {
		display: block;
	}

	div.flex-area dt {
		width: 100%;
	}

	div.box {
		padding: 0;
	}

	div.box-inner {
		padding: 10px;
	}

	div.grid-3 {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.photo div.grid-3 {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 1px;
	}

	.photo figcaption {
		display: none;
	}

	/*========================================
*	メニュー
*---------------------------------------*/
	nav.menu-pc {
		display: none;
	}

	nav.menu-mb {
		display: block;
	}

	nav.menu-mb ul {
		background: var(--menu-color);
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	nav.menu-mb ul li {
		border-bottom: 1px solid var(--white-color);
	}

	nav.menu-mb ul li a {
		font-weight: bold;
		color: var(--white-color);
		padding: 12px 0 12px 10px;
		width: 100%;
		text-decoration: none;
	}

	nav.menu-mb ul li:nth-child(even) {
		border-left: 1px solid var(--white-color);
	}

	/*========================================
*	footer
*---------------------------------------*/
	#footer-inner {
		display: block;
	}

	#map {
		margin-top: 20px;
	}
}