:root {
	--oc-link-color: #0d6efd;
	--oc-primary-color: #233b68;
	
	--oc-btn-primary-color: #233b68;
	--oc-btn-alt-color: #233b68;

	--oc-blog-heading-mt: 1.9rem;
	--oc-blog-heading-mb: 1.625rem;
	--oc-blog-heading-pt: 1.625rem;
	--oc-blog-font-size: calc(1rem + .069vw);
	--oc-blog-heading1-fs: calc(1.6rem + .069vw);
	--oc-blog-heading2-fs: calc(1.5rem + .069vw);
	--oc-blog-heading3-fs: calc(1.35rem + .069vw);
	--oc-blog-line-height: 1.625rem;
}

body {
	font-size: 16px;
	line-height: 1.8;
}

.text-primary-color{
	color: var(--oc-primary-color);
}
.clear-fix { clear: both; }

a {
	text-decoration: none;
	color: var(--oc-link-color);;
}
a:hover {
	text-decoration: none;
}
img {
	max-width: 100%;
}

.bg-image {
	z-index: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.text-bg-top {
	z-index: 0;
	height: 200px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.text-bg-top .caption {
}
.text-bg-top .caption h1,
.text-bg-top .caption h2 {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

.content-none {
    text-align: center;
    font-size: 20px;
    padding: 80px 10px;
}
.content-none .error-number {
    font-size: 70px;
    line-height: 1.8;
}
.content-none .content-none-btn {
    margin: 20px auto;
    text-align: center;
}

/* OC Button Style */
.site-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 375px;
    height: 73px;
    max-width: 90%;
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    transition: all 0.5s;
}
.site-btn {
    color: var(--oc-primary-color);
    border-color: var(--oc-primary-color);
}

/* END - OC Button Style */

/* OC Modal Style */
.modal-design {
	height: 80vh;
	overflow: scroll;
	margin: 15% 0 10% 0;
	border-radius: unset;
} 
.modal-dialog{
	max-width: 800px;
	padding: 1rem;
}

@media (min-width: 576px){
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto;
	}
}

.close-btn {
	position: fixed;
	right: 0x;
	top: 25px;
}
.modal-side-margin {
	margin: 0;
}

.modal-body-design {
	padding: 0;
}

.round_btn {
	display: block;
	width: 45px;
	height: 45px;
	border: 2px solid #AA8400; /* 枠の調整 */
	border-radius: 50%;  /* 丸みの度合い */
	background: #fff; /* ボタンの背景色 */
}

.round_btn::before, .round_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px; /* 棒の幅（太さ） */
	height: 22px; /* 棒の高さ */
	background: #AA8400; /* バツ印の色 */
}

.round_btn::before {
	transform: translate(-50%,-50%) rotate(45deg);
}

.round_btn::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}

/* END - OC Modal Style */

@charset "utf-8";

/*リセットCSS
----------------------------------------------------------------*/

/* 要素 フォントサイズ・マージン・パディングをリセット */
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%;
    font-weight: normal;
    vertical-align:baseline;
    background:transparent;
}

/* 行の高=フォントサイズ */
body {
    line-height:1;
}

/* 新規追加要素をブロック要素化 */
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

/* ulのマーカー非表示 */
ol, ul {
    list-style: none;
}

/* 引用符の非表示 */
blockquote, q {
    quotes:none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    outline: none;
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

/* テキスト 打ち消し線 */
del {
    text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
    border-collapse:collapse;
    border-spacing:0;
}

/* 水平罫線デフォルトリセット */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

/* 縦方向の揃え 中央揃え */
input, select {
    vertical-align:middle;
}

/* 画像を縦に並べた時に余白0 */
img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:after {
	overflow: hidden;
	visibility: hidden;
	height: 0;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
}

br {
	line-height: inherit;
}

/*【共通】パーツ
----------------------------------------------------------------*/
/* リンク */
a,
a * {
	-webkit-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	-o-transition: opacity 0.4s ease;
	transition: opacity  0.4s ease;
	text-decoration: none;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	font-family: inherit;
	-webkit-backface-visibility: hidden; /* 追加 */
	backface-visibility: hidden; /* 追加 */
}
a:hover, a:active {
	text-decoration:none;
	opacity: 0.8;
	filter: alpha(opacity=80);
}
img {
	max-width: 100%;
	height: auto;
}


/*基本設定
----------------------------------------------------------------*/

/*  配置  */
.flex-nml {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
}
.flex-btw {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
}
.flex-cnt {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
}
.flex-end {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
	-webkit-box-pack:end;
	-ms-flex-pack:end;
	justify-content:flex-end;
}
.row-reverse {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.items-center {
	-webkit-align-items: center;
	align-items: center;
}
.items-start {
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.items-end {
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
@charset "utf-8";

/*	フォント
---------------------------------*/
@font-face {
    font-family: 'Roboto';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/roboto/Roboto-Regular.woff2") format("woff2"),
    url("../fonts/roboto/Roboto-Regular.woff") format("woff");
}
@font-face {
    font-family: 'Roboto';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/roboto/Roboto-Medium.woff2") format("woff2"),
    url("../fonts/roboto/Roboto-Medium.woff") format("woff");
}
@font-face {
    font-family: 'Roboto';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/roboto/Roboto-Bold.woff2") format("woff2"),
    url("../fonts/roboto/Roboto-Bold.woff") format("woff");
}
@font-face {
    font-family: 'Roboto';
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/roboto/Roboto-Black.woff2") format("woff2"),
    url("../fonts/roboto/Roboto-Black.woff") format("woff");
}

@font-face {
    font-family: 'Zen_Kaku_Gothic_New';
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Light.woff2") format("woff2"),
    url("../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Light.woff") format("woff");
}
@font-face {
    font-family: 'Zen_Kaku_Gothic_New';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Regular.woff2") format("woff2"),
    url("../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Regular.woff") format("woff");
}
@font-face {
    font-family: 'Zen_Kaku_Gothic_New';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Medium.woff2") format("woff2"),
    url("../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Medium.woff") format("woff");
}
@font-face {
    font-family: 'Zen_Kaku_Gothic_New';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Bold.woff2") format("woff2"),
    url("../fonts/Zen_Kaku_Gothic_New/ZenKakuGothicNew-Bold.woff") format("woff");
}

@font-face {
    font-family: 'Zen_Old_Mincho';
    font-weight: 400;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Zen_Old_Mincho/ZenOldMincho-Regular.woff2") format("woff2"),
    url("../fonts/Zen_Old_Mincho/ZenOldMincho-Regular.woff") format("woff");
}
@font-face {
    font-family: 'Zen_Old_Mincho';
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Zen_Old_Mincho/ZenOldMincho-Medium.woff2") format("woff2"),
    url("../fonts/Zen_Old_Mincho/ZenOldMincho-Medium.woff") format("woff");
}
@font-face {
    font-family: 'Zen_Old_Mincho';
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Zen_Old_Mincho/ZenOldMincho-SemiBold.woff2") format("woff2"),
    url("../fonts/Zen_Old_Mincho/ZenOldMincho-SemiBold.woff") format("woff");
}
@font-face {
    font-family: 'Zen_Old_Mincho';
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Zen_Old_Mincho/ZenOldMincho-Bold.woff2") format("woff2"),
    url("../fonts/Zen_Old_Mincho/ZenOldMincho-Bold.woff") format("woff");
}
@font-face {
    font-family: 'Zen_Old_Mincho';
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/Zen_Old_Mincho/ZenOldMincho-Black.woff2") format("woff2"),
    url("../fonts/Zen_Old_Mincho/ZenOldMincho-Black.woff") format("woff");
}

/* scroll_up ｜ 下から上へ出現
---------------------------------*/
.scroll_up {
	transition: 0.8s ease-in-out;
	transform: translateY(30px);
	opacity: 0;
}
.scroll_up.is-inview {
	transform: translateY(0);
	opacity: 1.0;
}
.timing02 {transition-delay: .2s;}
.timing03 {transition-delay: .4s;}
.timing04 {transition-delay: .6s;}
.timing05 {transition-delay: .8s;}
.timing06 {transition-delay: .10s;}
.timing07 {transition-delay: .12s;}
.timing08 {transition-delay: .14s;}
.timing09 {transition-delay: .16s;}
.timing10 {transition-delay: .18s;}

/*	レイアウト
---------------------------------*/
html {
	/* font-size: 62.5%; */
}
body {
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
	font-family: 'Zen_Kaku_Gothic_New';
	font-size: 15px;
	font-weight: 400;
	font-style: normal;
	line-height: 30px;
	letter-spacing: 0.02em;
	color: #333333;
}
#wrapper {
	overflow: hidden;
}

/*	Language
---------------------------------*/
.language-box {
	position: fixed;
	top: 23px;
	left: calc(100% - 480px);
	width: 120px;
	line-height: 1;
    margin: 0;
    padding: 0;
	z-index: 1010;
}
.language-box #selectlink {
    cursor: pointer;
}
.language-box select
{
    width: 120px;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #D0CDCB;
    margin: 0;
    padding: 3px 0px 5px 26px;
    background-color: #333333;
    background-image: url("../img/cmn/icon_language01.svg"), url("../img/cmn/icon_language02.svg");
    background-position: 6px center, 93% center;
    background-repeat: no-repeat, no-repeat;
    background-size: 15px, 9px;
    border: none;
    -webkit-appearance: none;
    appearance: none; /* デフォルトの矢印を非表示 */
	outline: none;
    border-radius: 0px;
}
.language-box select::-ms-expand {
    display: none; /* デフォルトの矢印を非表示(IE用) */
}

@media screen and (max-width: 767px) {
    .language-box {
        position: fixed;
        left: 0;
    }
}

/*	ヘッダー
---------------------------------*/
header {
	position: fixed;
	top: 20px;
	right: 15px;
	width: 40px;
	line-height: 1;
	z-index: 1010;
}
.hd-inr {
	position: relative;
	margin: 0;
	padding: 0;
	width: 100%;
    height: 40px;
}

/*	フッター
---------------------------------*/
footer {
    position: relative;
	background: #333333;
}
footer.footer-front::before {
	content: "";
	display: block;
	position: absolute;
	top: -60px;
	left: 0;
	margin: 0;
	width: 100%;
    height: calc(100% + 60px);
	background: url("../img/top/bg_footer@3x.webp") center top no-repeat;
    background-size: 480px;
}

footer .contents-inr {
	padding-top: 15px;
	padding-bottom: 15px;
}
footer .ft-logo {
    margin-left: 60%;
    margin-bottom: 90px;
    width: 86px;
}
footer .ft-menu {
    position: absolute;
    top: 46px;
    left: 12%;
	text-align: left;
	z-index: 1001;
}
footer .ft-menu li {
    width: 33px;
    display: inline-block;
    vertical-align: top;
}
footer .ft-menu li a {
}
footer .ft-menu li a:hover {
    opacity: 1;
}
footer .ft-menu li a span {
    font-family: 'Zen_Old_Mincho';
font-family: "Zen Old Mincho", serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 30px;
letter-spacing: 0.5em;
    color: #FFFFFF;
    display: inline-block;
    text-align: left;

-ms-writing-mode: tb-rl;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
white-space: pre;

    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
    background-image: linear-gradient(
        180deg,
        #EAEAEA 0%,
        #EAEAEA 50%,
        transparent 50%,
        transparent 100%
    );
    background-size: 0.63px 200%;
    background-repeat: no-repeat;
    background-position: 100% 0;
    padding-bottom: 2px;
}
footer .ft-name {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin-bottom: 18px;
    padding-left: 20px;
    padding-right: 20px;
}
@media (any-hover: hover) {
    footer .ft-menu li a span:hover {
        animation-name: borderAnimation;
        animation-duration: 0.75s;
        animation-timing-function: var(--ease-in-out-quart);
    }
}
footer .btn-cmn01 {
    margin-bottom: 20px;
}
footer .btn-cmn02 {
    margin-bottom: 70px;
}
footer .ft-address {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin-bottom: 18px;
    padding-left: 20px;
    padding-right: 20px;
}
footer .ft-tel {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin-bottom: 3px;
    padding-left: 20px;
    padding-right: 20px;
}
footer .ft-uketuke {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
}
footer .ft-uketuke span {
    display: inline-block;
    background: #6F6F6F;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    padding: 6px 8px 6px 8px;
    margin-right: 8px;
}
footer .ft-sns {
	text-align: center;
    margin-bottom: 50px;
}
footer .ft-sns a {
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
}
footer .ft-sns a img {
    width: 40px;
    height: auto;
}
footer .ft-copyright {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: 0.045em;
    color: #FFFFFF;
    padding-bottom: 15px;
    text-align: center;
}
footer.footer-pc::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
    top: unset;
	margin: 0;
	width: 100%;
    height: calc(100% + 60px);
	background: url("../img/footer-bg-cover.webp") center top repeat;
}
footer .footer-inr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px 0;
}

footer .footer-inr-wrap {
    display: flex;
    justify-content: space-between;
}
footer .footer-right{
    flex: 0 0 40%;
    position: relative;
}
footer .footer-left {
    flex: 0 0 40%;
    padding-top: 40px;
    text-align: center;
}
footer .footer-right .ft-menu.pc {
    top: 40px;
}
footer .footer-right .ft-logo.pc {
    width: 120px;
    margin-bottom: 40px;
}




@media screen and (max-width: 767px) {
    footer.footer-front::before {
        background-size: 100%;
    }
    footer .footer-inr-wrap {
        flex-direction: column-reverse;
    } 
    footer .footer-inr {
        max-width: 375px;
    }
    footer.footer-pc::before {
        background: url(../img/top/bg_footer@3x.webp) center top no-repeat;
        background-size: 767px;
        top: -65px;
    }
    footer .footer-left {
        text-align: left;
    }
}

@media screen and (max-width: 480px) {
    footer::before {
        background-size: 480px;
    }
}

/*	グローバナビ（スマホ用）
---------------------------------*/
header .navToggle,
header nav.sp-nav {
}
header nav.sp-nav {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    /* bottom: 0; */
    margin: auto;
    padding: 10% 15%;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    font-size: 1.8rem;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.9);
    transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
}
/* ナビゲーション アニメーション */
header.open nav.sp-nav {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    transition: transform 0.4s, opacity 0.4s;
}
header nav.sp-nav a {
    color:#fff;
}
header nav.sp-nav a * {
    transition: 0s;
}
header nav.sp-nav .nav-box {
    display: block;
    position :absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 340px;
    text-align: center;
}

header nav.sp-nav .nav-box .nav-logo {
    margin-bottom: 10px;
}
header nav.sp-nav .nav-box .nav-logo img {
    width: 100px;
    height: auto;
}

header nav.sp-nav .nav-box ul {
    margin-right: 30px;
}
header nav.sp-nav .nav-box li {
    margin-left: 24px;
    width: 45px;
    height: 330px;
    display: inline-block;
    vertical-align: top;
}
header nav.sp-nav .nav-box li a {
}
header nav.sp-nav .nav-box li a:hover {
    opacity: 1;
}
header nav.sp-nav .nav-box li a span {
    font-family: 'Zen_Old_Mincho';
font-family: "Zen Old Mincho", serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 45px;
letter-spacing: 0.4em;
    color: #FFFFFF;
    display: inline-block;
    text-align: left;

-ms-writing-mode: tb-rl;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
white-space: pre;

    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
    background-image: linear-gradient(
        180deg,
        rgba(234,234,234,0.7) 0%,
        rgba(234,234,234,0.7) 50%,
        transparent 50%,
        transparent 100%
    );
    background-size: 1px 200%;
    background-repeat: no-repeat;
    background-position: 100% 0;
    padding-bottom: 2px;
}
@media (any-hover: hover) {
    header nav.sp-nav .nav-box li a span:hover {
        animation-name: borderAnimation;
        animation-duration: 0.75s;
        animation-timing-function: var(--ease-in-out-quart);
    }
}

header nav.sp-nav .nav-box .btn-cmn01 {
    margin-bottom: 20px;
}
header nav.sp-nav .nav-box .btn-cmn02 {
}

/*ハンバーガーボタン*/
header .navToggle {
    display: block;
    position: absolute;
    right: 0px;
    top: 0px;
    margin: auto;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1002;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
header .navToggle:hover {
    opacity: 1;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
header .navToggle div {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 30px;
    height: 22px;
}
header .navToggle span {
    display: block;
    position: absolute;
    height:1px;
    width:100%;
    background: #fff;
    left:0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
header .navToggle.color01 span {
    background: #333333;
}
header .navToggle span:nth-child(1) {
    top: 4px;
}
header .navToggle span:nth-child(2) {
    top: 10px;
}
header .navToggle span:nth-child(3) {
    top: 16px;
}
/* ハンバーガーボタン 切り替えアニメーション */
header.open .navToggle span {
    background: #fff;
}
header.open .navToggle span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}
header.open .navToggle span:nth-child(2) {
    width: 0;
    left: 50%;
}
header.open .navToggle span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

@media screen and (max-width: 480px) {
    header nav.sp-nav .nav-box .nav-logo {
        margin-bottom: 2px;
    }
    header nav.sp-nav .nav-box .nav-logo img {
        width: 90px;
        height: auto;
    }
    header nav.sp-nav .nav-box {
        max-width: 300px;
    }
    header nav.sp-nav .nav-box ul {
        margin-right: 25px;
    }
    header nav.sp-nav .nav-box li {
        margin-left: 20px;
        width: 40px;
        height: 280px;
    }
    header nav.sp-nav .nav-box li a span {
        font-size: 18px;
        line-height: 40px;
        letter-spacing: 0.3em;
    }
    header nav.sp-nav .nav-box .btn-cmn01 {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 375px) {
    header nav.sp-nav .nav-box .nav-logo {
        margin-bottom: 2px;
    }
    header nav.sp-nav .nav-box .nav-logo img {
        width: 80px;
        height: auto;
    }
    header nav.sp-nav .nav-box {
        max-width: 300px;
    }
    header nav.sp-nav .nav-box ul {
        margin-right: 25px;
    }
    header nav.sp-nav .nav-box li {
        margin-left: 20px;
        width: 40px;
        height: 250px;
    }
    header nav.sp-nav .nav-box li a span {
        font-size: 17px;
        line-height: 40px;
        letter-spacing: 0.3em;
    }
    header nav.sp-nav .nav-box .btn-cmn01 {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 320px) {
    header nav.sp-nav .nav-box .nav-logo {
        margin-bottom: 2px;
    }
    header nav.sp-nav .nav-box .nav-logo img {
        width: 60px;
        height: auto;
    }
    header nav.sp-nav .nav-box {
        max-width: 300px;
    }
    header nav.sp-nav .nav-box ul {
        margin-right: 25px;
    }
    header nav.sp-nav .nav-box li {
        margin-left: 20px;
        width: 40px;
        height: 210px;
    }
    header nav.sp-nav .nav-box li a span {
        font-size: 15px;
        line-height: 40px;
        letter-spacing: 0.2em;
    }
    header nav.sp-nav .nav-box .btn-cmn01 {
        margin-bottom: 12px;
    }
}

/*	基本レイアウト
---------------------------------*/
.contents-box {
	margin: 0 0 0 calc(100% - 480px);
	width: 480px;
    overflow: hidden;
}
.contents-inr {
	position: relative;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
	max-width: 375px;
}

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

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

@media screen and (max-width: 767px) {
    .contents-box {
        margin: 0 0 0 0;
        width: 100%;
    }
}

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

/*	汎用タイトル
---------------------------------*/
.ttl-cmn01 {
    text-align: center;
}
.ttl-cmn01 span {
    position: relative;
    display: inline-block;
    font-family: 'Zen_Old_Mincho';
font-family: "Zen Old Mincho", serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 30.8px;
letter-spacing: 0.5em;
    color: #63595A;
    text-align: left;

-ms-writing-mode: tb-rl;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
white-space: pre;

    width: 32px;
}
.ttl-cmn01 span::after {
	content: "";
	display: block;
	position: absolute;
	top: 3px;
	right: 0px;
	margin: 0;
	width: 1px;
	height: calc(100% - 3px);
    background: #C1C1C1;
}

.ttl-cmn02 {
    text-align: center;
}
.ttl-cmn02 span {
    border-bottom: 1px solid #D57D36;
    font-family: 'Zen_Old_Mincho';
    font-size: 25px;
    font-weight: 600;
    line-height: 37.5px;
    letter-spacing: 0.05em;
    color: #D57D36;
    padding-bottom: 5px;
}

/*	汎用ボタン
---------------------------------*/
.btn-cmn01 {
    text-align: center;
}
.btn-cmn01 a {
    margin-left: auto;
    margin-right: auto;
	background: #D57D36 url("../img/cmn/icon_arw01.svg") calc(100% - 17px) center no-repeat;
    max-width: 335px;
    height: 47px;
    padding: 12px 32px 12px 32px;
    border-radius: 30px;
    color: #FFFFFF;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 400;
    line-height: 22.5px;
    letter-spacing: 0.04em;
    display: block;
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}
.btn-cmn01 a:hover {
	background: #D57D36 url("../img/cmn/icon_arw01.svg") calc(100% - 12px) center no-repeat;
    opacity: 1;
}

.btn-cmn02 {
    text-align: center;
}
.btn-cmn02 a {
    margin-left: auto;
    margin-right: auto;
	background: url("../img/cmn/icon_arw01.svg") calc(100% - 17px) center no-repeat;
    max-width: 337px;
    height: 47px;
    padding: 12px 32px 12px 32px;
    border-radius: 30px;
    color: #FFFFFF;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 400;
    line-height: 22.5px;
    letter-spacing: 0.04em;
    display: block;
    border: #ffffff 1px solid;
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}
.btn-cmn02 a:hover {
	background: url("../img/cmn/icon_arw01.svg") calc(100% - 12px) center no-repeat;
    opacity: 1;
}

.btn-cmn03 {
    text-align: center;
}
.btn-cmn03 a {
    margin-left: auto;
    margin-right: auto;
	background: url("../img/cmn/icon_arw03.svg") calc(100% - 17px) center no-repeat;
    max-width: 337px;
    height: 47px;
    padding: 12px 32px 12px 32px;
    border-radius: 30px;
    color: #333333;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 500;
    line-height: 22.5px;
    letter-spacing: 0.04em;
    display: block;
    border: #7B7B7B 1px solid;
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}
.btn-cmn03 a:hover {
	background: url("../img/cmn/icon_arw03.svg") calc(100% - 12px) center no-repeat;
    opacity: 1;
}

.btn-cmn04 {
    text-align: center;
}
.btn-cmn04 a {
    margin-left: auto;
    margin-right: auto;
	background: #ffffff url("../img/cmn/icon_arw03.svg") calc(100% - 17px) center no-repeat;
    max-width: 337px;
    height: 47px;
    padding: 12px 32px 12px 32px;
    border-radius: 30px;
    color: #333333;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 500;
    line-height: 22.5px;
    letter-spacing: 0.04em;
    display: block;
    border: #7B7B7B 1px solid;
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}
.btn-cmn04 a:hover {
	background: #ffffff url("../img/cmn/icon_arw03.svg") calc(100% - 12px) center no-repeat;
    opacity: 1;
}

/*	メインイメージ
---------------------------------*/
.main-img-otr {
	position: fixed;
	top: 0;
	left: 0;
	width: calc(100% - 480px);
    height: 100vh;
    height: 100lvh;
	line-height: 1;
    margin: 0;
	padding: 0;
    background: #333333;
}
.main-img-inr {
	position: relative;
	margin: 0 auto;
	width: 100%;
}
.main-img {
	position: relative;
	width: 100%;
	height: 100vh;
    height: 100lvh;
	background: no-repeat center center / cover;
}
.main-img.img01 {
	background-image: url("../img/top/img_main01.webp");
}
.main-img.img02 {
	background-image: url("../img/top/img_main02.webp");
}
.main-img.img03 {
	background-image: url("../img/top/img_main03.webp");
}
.main-img.img04 {
	background-image: url("../img/top/img_main04.webp");
}
.main-img.img05 {
	background-image: url("../img/top/img_main05.webp");
}
.main-img.img06 {
	background-image: url("../img/top/img_main06.webp");
}
.main-img.img07 {
	background-image: url("../img/top/img_main07.webp");
}
.main-img.img08 {
	background-image: url("../img/top/img_main08.webp");
}
.main-img.img09 {
	background-image: url("../img/top/img_main09.webp");
}
.main-img.img10 {
	background-image: url("../img/top/img_main10.webp");
}

.main-img-sns {
	position: absolute;
	top: 75px;
	left: 80px;
	text-align: left;
	z-index: 1001;
}
.main-img-sns a {
    display: block;
    margin-bottom: 20px;
}
.main-img-sns a img {
    width: 36px;
    height: auto;
}

.main-img-menu {
	position: absolute;
	top: 70px;
	left: 130px;
	text-align: left;
	z-index: 1001;
}
.main-img-menu li {
    margin-left: 24px;
    width: 45px;
    height: 370px;
    display: inline-block;
    vertical-align: top;
}
.main-img-menu li a {
}
.main-img-menu li a:hover {
    opacity: 1;
}
.main-img-menu li a span {
    font-family: 'Zen_Old_Mincho';
font-family: "Zen Old Mincho", serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 45px;
letter-spacing: 0.4em;
    color: #FFFFFF;
    display: inline-block;
    text-align: left;

-ms-writing-mode: tb-rl;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
white-space: pre;

    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
    background-image: linear-gradient(
        180deg,
        rgba(234,234,234,1) 0%,
        rgba(234,234,234,1) 50%,
        transparent 50%,
        transparent 100%
    );
    background-size: 1px 200%;
    background-repeat: no-repeat;
    background-position: 100% 0;
    padding-bottom: 2px;
}
@media (any-hover: hover) {
    .main-img-menu li a span:hover {
        animation-name: borderAnimation;
        animation-duration: 0.75s;
        animation-timing-function: var(--ease-in-out-quart);
    }
}
@keyframes borderAnimation {
    0% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 100% -100%;
    }
}

.main-img-btn {
	position: absolute;
	top: 510px;
	left: 77px;
	text-align: left;
	z-index: 1001;
    width: 337px;
}
.main-img-btn .btn-cmn01 {
    margin-bottom: 28px;
}
.main-img-btn .btn-cmn02 {
}

.main-img-otr .bx-controls {
	display: none!important;
}

@media screen and (max-width:1279px) {
    .main-img-sns {
        left: 5%;
    }
    .main-img-menu {
        left: 12%;
    }
    .main-img-menu li {
        margin-left: 18px;
        width: 3vw;
        height: 320px;
    }
    .main-img-menu li a span {
        font-size: 1.6vw;
        line-height: 3.2vw;
    }
    .main-img-btn {
        left: 4%;
    }
}

@media screen and (max-width: 959px) {
    .main-img-menu {
        left: 16%;
    }
    .main-img-menu li {
        margin-left: 10px;
        height: 230px;
    }
    .main-img-btn {
        width: 73%;
    }
}

@media screen and (max-width: 767px) {
    .main-img-otr {
        display: none;
    }
}

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

/*	動画
---------------------------------*/
.movie-box {
	position: fixed;
	top: 50%;
	right: 0;
	width: 480px;
    height: 100vh;
    height: 100lvh;
	line-height: 1;
    margin: 0;
	padding: 0;
    background: #333333;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    overflow: hidden;
    z-index: -10;
}
.movie-box video {
    position: absolute;
    top: 50%;
    left: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}
.movie-box video p {
    color: #ffffff;
}

@media screen and (max-width: 767px) {
    .movie-box {
        width: 100%;
    }
}

/*	トップページ
---------------------------------*/
/* 百年遍路 */
#top-catch {
    padding-top: 114px;
    padding-bottom: 35px;
    position: relative;
}
#top-catch::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 100%;
    background-image: linear-gradient(180deg, rgba(85,85,85,0), rgba(0,0,0,0.6));
    z-index: -1;
}
#top-catch .contents-inr {
}
#top-catch .top-catch-logo {
    width: 136px;
    margin: 0 auto 0px auto;
}
#top-catch .top-catch-logo img {
    width: 100%;
    height: auto;
}
#top-catch h2 {
    text-align: center;
    margin-bottom: 123px;
}
#top-catch h2 span {
    font-family: 'Zen_Old_Mincho';
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0.28em;
    color: #FFFFFF;
    text-shadow: 0px 4px 13.7px 0px #0000001A;
    border-bottom: 1px solid #DADADA;
}
#top-catch p {
    position: relative;
    text-align: right;
    z-index: 2;
}
#top-catch p span {
    display: inline-block;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 14px;
    font-weight: 300;
    line-height: 25.2px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-align: left;
}

@media screen and (max-width: 480px) {
    #top-catch p {
        padding-right: 20px;
    }
}

/* お知らせ */
#top-news {
    padding-top: 25px;
    padding-bottom: 60px;
	background: #ffffff;
	position: relative;
}
#top-news::before {
	content: "";
	display: block;
	position: absolute;
	top: -45px;
	left: 0;
	margin: 0;
	width: 100%;
	height: calc(10% + 45px);
	background: url("../img/top/bg_white_top@3x.webp") center top no-repeat;
    background-size: 480px;
}
#top-news .contents-inr {
}
#top-news .icon-momiji {
    position: absolute;
    top: -102px;
    left: 86%;
    width: 100px;
    mix-blend-mode: multiply;
    z-index: 1;
}
#top-news .ttl-cmn01 {
	margin-bottom: 35px;
}
#top-news .btn-cmn03 {
	margin-top: 45px;
}
#top-news .top-news__list {
	width: 100%;
	max-width: 305px;
    margin-left: auto;
    margin-right: auto;
}
#top-news .top-news__list ul {
    border-top: 1px solid #D0CDCB;
}
#top-news .top-news__list ul li {
	font-size: 0;
	margin: 0 0 0px 0;
	padding: 0px 0px 0px 0;
	text-align:left;
    border-bottom: 1px solid #D0CDCB;
}
#top-news .top-news__list ul li .date {
	display: block;
	vertical-align: top;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 12px;
    font-weight: 500;
    line-height: 21.6px;
    letter-spacing: 0.02em;
    color: #D57D36;
    margin-bottom: 2px;
}
#top-news .top-news__list ul li .title {
	display: block;
	vertical-align: top;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 400;
    line-height: 22.5px;
    letter-spacing: 0.02em;
    color: #333333;
}
#top-news .top-news__list ul li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 8px 20px 12px 0;
	background: url("../img/cmn/icon_arw02.svg") calc(100% - 5px) center no-repeat;
    background-size: 6px;
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}
#top-news .top-news__list ul li a:hover {
    opacity: 1;
	background: url("../img/cmn/icon_arw02.svg") 100% center no-repeat;
    background-size: 6px;
}

@media screen and (max-width: 767px) {
    #top-news::before {
        background-size: 100%;
    }
}
@media screen and (max-width: 480px) {
    #top-news::before {
        background-size: 480px;
    }
    #top-news .icon-momiji {
        left: 73%;
    }
}

/* お遍路について */
#top-ohenro {
    padding-top: 130px;
    padding-bottom: 110px;
	position: relative;
}
#top-ohenro::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	background-image: url("../img/top/bg_ohenro02@3x.webp"), url("../img/top/bg_ohenro01@2x.jpg");
	background-position: center calc(100% + 5px), center top;
	background-repeat: no-repeat, repeat-y;
    background-size: 480px, 480px;
    z-index: -1;
}
#top-ohenro .contents-inr {
}
#top-ohenro .ttl-cmn01 {
	margin-bottom: 60px;
}
#top-ohenro .btn-cmn01 {
	margin-top: 60px;
}
#top-ohenro .img-box01 {
    position: relative;
    height: 460px;
}
#top-ohenro .img-box01 .img-ohenro01-01 {
    position: absolute;
    top: 0px;
    left: calc(50% - 198px);
    width: 188px;
    height: auto;
}
#top-ohenro .img-box01 .img-ohenro01-02 {
    position: absolute;
    top: 115px;
    left: calc(50% + 70px);
    width: 129px;
    height: auto;
}
#top-ohenro .img-box01 .img-ohenro01-03 {
    position: absolute;
    top: 232px;
    left: calc(50% - 220px);
    width: 271px;
    height: auto;
}
#top-ohenro .ttl01 {
	padding-right: 5px;
	margin-bottom: 95px;

-ms-writing-mode: tb-rl;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
white-space: pre;

    margin-left: auto;
    margin-right: auto;
}
#top-ohenro .ttl01 span {
    display: inline-block;
    font-family: 'Zen_Old_Mincho';
font-family: "Zen Old Mincho", serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
letter-spacing: 0.4em;
    color: #8E464C;
    border-right: 1px solid #CC888E;
    text-align: left;
    width: 43px;
}
#top-ohenro .ttl02 {
	padding-right: 5px;
	margin-top: 95px;
	margin-bottom: 60px;

-ms-writing-mode: tb-rl;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
white-space: pre;

    margin-left: auto;
    margin-right: auto;
}
#top-ohenro .ttl02 .span01 {
    display: inline-block;
    font-family: 'Zen_Old_Mincho';
font-family: "Zen Old Mincho", serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
letter-spacing: 0.4em;
    color: #8E464C;
    border-right: 1px solid #CC888E;
    text-align: left;
    width: 43px;
}
#top-ohenro .ttl02 .span02 {
    display: inline-block;
    writing-mode: horizontal-tb;
    margin-top: -15px;
    margin-right: -17px;
}
#top-ohenro .top-ohenro-box {
    max-width: 303px;
    margin: 0 auto 40px auto;
}
#top-ohenro .top-ohenro-box h3 {
    margin-top: -2px;
    margin-left: 2px;
    margin-bottom: 10px;
}
#top-ohenro .top-ohenro-box h3 span {
    font-family: 'zen-maru-gothic', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #D57D36;
    padding-bottom: 5px;
    border-bottom: 1px solid #D57D36;
}
#top-ohenro .top-ohenro-box p {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #333333;
    margin-left: 2px;
    margin-bottom: 10px;
}
#top-ohenro .img-ohenro03 {
    max-width: 195px;
    margin: 0 auto 70px auto;
}
#top-ohenro .img-box02 {
    position: relative;
    padding-top: 800px;
}
#top-ohenro .img-box02 .img-ohenro04-01 {
    position: absolute;
    top: 0px;
    left: calc(50% - 45px);
    width: 192px;
    height: auto;
}
#top-ohenro .img-box02 .img-ohenro04-02 {
    position: absolute;
    top: 140px;
    left: calc(50% - 185px);
    width: 206px;
    height: auto;
}
#top-ohenro .img-box02 .img-ohenro04-03 {
    position: absolute;
    top: 205px;
    left: calc(50% + 5px);
    width: 186px;
    height: auto;
}
#top-ohenro .img-box02 .img-ohenro04-04 {
    position: absolute;
    top: 475px;
    left: calc(50% - 192.5px);
    width: 385px;
    height: auto;
}
#top-ohenro .img-box02 p {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin-left: 25px;
    margin-right: 25px;
    text-shadow: 0px 0px 30px 0px rgba(0,0,0,0.85);
}

@media screen and (max-width: 767px) {
    #top-ohenro::before {
        background-size: 100%, 100%;
    }
}
@media screen and (max-width: 480px) {
    #top-ohenro::before {
        background-size: 480px, 480px;
    }
}

/* お遍路ハウス 四国88 */
#top-house {
    margin-top: 680px;
    padding-top: 80px;
    padding-bottom: 130px;
	position: relative;
}
#top-house::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	background-image: url("../img/top/bg_house@2x.webp");
	background-position: center top;
	background-repeat: no-repeat;
    background-size: 480px;
    background-color: #ffffff;
    z-index: -1;
}
#top-house::after {
	content: "";
	display: block;
	position: absolute;
	top: -45px;
	left: 0;
	margin: 0;
	width: 100%;
	height: calc(10% + 45px);
	background: url("../img/top/bg_white_top@3x.webp") center top no-repeat;
    background-size: 480px;
}
#top-house .contents-inr {
}
#top-house .ttl-cmn01 {
	margin-bottom: 60px;
}
#top-house .img-box01 {
    position: relative;
    height: 600px;
}
#top-house .img-box01 .img-house01-01 {
    position: absolute;
    top: 0px;
    left: calc(50% - 115px);
    width: 302px;
    height: auto;
}
#top-house .img-box01 .img-house01-02 {
    position: absolute;
    top: 252px;
    left: calc(50% - 156px);
    width: 188px;
    height: auto;
}
#top-house .img-box01 .img-house01-03 {
    position: absolute;
    top: 336px;
    left: calc(50% + 70px);
    width: 96px;
    height: auto;
}
#top-house .img-box01 .img-house01-04 {
    position: absolute;
    top: 466px;
    left: calc(50% - 200px);
    width: 129px;
    height: auto;
}
#top-house .ttl01 {
	margin-bottom: 30px;
	padding-right: 5px;

-ms-writing-mode: tb-rl;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
white-space: pre;

    margin-left: auto;
    margin-right: auto;
}
#top-house .ttl01 .span01 {
    display: inline-block;
    font-family: 'Zen_Old_Mincho';
font-family: "Zen Old Mincho", serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
letter-spacing: 0.4em;
    color: #CC7127;
    border-right: 1px solid #E3B896;
    text-align: left;
    width: 43px;
}
#top-house .ttl01 .span02 {
    display: inline-block;
    writing-mode: horizontal-tb;
    margin-top: -15px;
    margin-right: -17px;
}
#top-house .ttl01 .span03 {
    display: inline-block;
    writing-mode: horizontal-tb;
    margin-top: -4px;
    margin-bottom: -6px;
    margin-right: -2.5px;
    transform: rotate(90deg);
}
#top-house .img-house02 {
    max-width: 155px;
    margin: 0 auto 40px auto;
}
#top-house .txt01 {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #333333;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 15px;
}
#top-house .txt02 {
    margin-bottom: 40px;
}
#top-house .img-house03 {
    max-width: 294px;
    margin: 100px auto 50px auto;
}
#top-house .top-house-box {
    max-width: 345px;
    margin: 0px auto 20px auto;
    padding: 25px 25px 25px 25px;
    background: #F7ECCD;
    border-radius: 5px;
    text-align: center;
}
#top-house .top-house-box img {
    width: 60px;
    height: auto;
}
#top-house .top-house-box h3 {
    margin-top: 5px;
    margin-bottom: 12px;
}
#top-house .top-house-box h3 span {
    border-bottom: 1px solid #A39892;
    font-family: 'zen-maru-gothic', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.05em;
    color: #333333;
    padding-bottom: 3px;
}
#top-house .top-house-box p {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #333333;
    text-align: left;
}

@media screen and (max-width: 767px) {
    #top-house::before {
        background-size: 100%;
    }
    #top-house::after {
        background-size: 100%;
    }
}
@media screen and (max-width: 480px) {
    #top-house::before {
        background-size: 480px;
    }
    #top-house::after {
        background-size: 480px;
    }
}

/* ギャラリー */
#top-house .top-house-gallery {
    position: relative;
    padding-top: 80px;
    z-index: 1001;
}
#top-house .top-house-gallery .ttl-cmn02 {
    margin-bottom: 22px;
}
#top-house .top-house-gallery .top-house-gallery-item {
}
#top-house .top-house-gallery .top-house-gallery-item .slider-1 {
    max-width: 100%;
    height: 360px;
    margin-left: auto;
    margin-right: auto;
}
#top-house .top-house-gallery .top-house-gallery-item .slider-1 .slick-slide {
    width: 323px;
    height: 450px;
    margin: 0 6px 0 6px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
#top-house .top-house-gallery .top-house-gallery-item .slider-1 .slick-arrow {
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0;
}
#top-house .top-house-gallery .top-house-gallery-item .slider-1 .slick-next {
    background: url("../img/top/icon_slide_right.svg") no-repeat center center !important;
    background-size: contain !important;
    width: 52px !important;
    height: 52px !important;
    position: absolute;
    top: 40%;
    right: 8%;
    z-index: 1006;
}
#top-house .top-house-gallery .top-house-gallery-item .slider-1 .slick-prev {
    background: url("../img/top/icon_slide_left.svg") no-repeat center center !important;
    background-size: contain !important;
    width: 52px !important;
    height: 52px !important;
    position: absolute;
    top: 40%;
    left: 8%;
    z-index: 1006;
}
#top-house .top-house-gallery .top-house-gallery-item .slider-1 .slick-dots {
    position: absolute;
    bottom: 0px;
    display: block;
    width: 100%;
    padding: 0 5px 0 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
#top-house .top-house-gallery .top-house-gallery-item .slider-1 .slick-dots li {
    position: relative;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}
#top-house .top-house-gallery .top-house-gallery-item .slider-1 .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
#top-house .top-house-gallery .top-house-gallery-item .slider-1 .slick-dots li button:hover,
#top-house .top-house-gallery .top-house-gallery-item .slider-1 .slick-dots li button:focus {
    outline: none;
}
#top-house .top-house-gallery .top-house-gallery-item .slider-1 .slick-dots li button:hover:before,
#top-house .top-house-gallery .top-house-gallery-item .slider-1 .slick-dots li button:focus:before {
    opacity: 1;
}
#top-house .top-house-gallery .top-house-gallery-item .slider-1 .slick-dots li button:before {
    font-family: 'slick';
    font-size: 30px;
    line-height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: '•';
    text-align: center;
    color: #DDDDDD;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#top-house .top-house-gallery .top-house-gallery-item .slider-1 .slick-dots li.slick-active button:before {
    color: #E18700;
}

@media screen and (max-width: 480px) {
    #top-house .top-house-gallery .top-house-gallery-item .slider-1 .slick-next {
        right: 1%;
    }
    #top-house .top-house-gallery .top-house-gallery-item .slider-1 .slick-prev {
        left: 1%;
    }
}

/* ご利用者の声 */
#top-voice {
    padding-top: 0px;
    padding-bottom: 30px;
    background: #f7ecce;
	position: relative;
}
#top-voice::before {
	content: "";
	display: block;
	position: absolute;
	top: -80px;
	left: 0;
	margin: 0;
	width: 100%;
	height: calc(20% + 80px);
	background: url("../img/top/bg_voice_top@3x.webp") center top no-repeat;
    background-size: 480px;
    z-index: 1;
}
#top-voice::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -45px;
	left: 0;
	margin: 0;
	width: 100%;
	height: calc(10% + 45px);
	background: url("../img/top/bg_voice_bottom@3x.webp") center bottom no-repeat;
    background-size: 480px;
    z-index: 1;
}
#top-voice .contents-inr {
}
#top-voice .ttl-cmn02 {
	margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
#top-voice .txt01 {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #333333;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    #top-voice::before {
        background-size: 100%;
    }
    #top-voice::after {
        background-size: 100%;
    }
}
@media screen and (max-width: 480px) {
    #top-voice::before {
        background-size: 480px;
    }
    #top-voice::after {
        background-size: 480px;
    }
}

/* ご利用者の声 ギャラリー */
#top-voice .top-voice-gallery {
    position: relative;
    z-index: 1001;
}
#top-voice .top-voice-gallery .top-voice-gallery-item {
}
#top-voice .top-voice-gallery .top-voice-gallery-item .img-box {
    width: 64px;
    display: inline-block;
    vertical-align: top;
}
#top-voice .top-voice-gallery .top-voice-gallery-item .img-box img {
}
#top-voice .top-voice-gallery .top-voice-gallery-item h3 {
    margin-left: 10px;
    display: inline-block;
    vertical-align: top;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #333333;
}
#top-voice .top-voice-gallery .top-voice-gallery-item h3 span {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 500;
    line-height: 22.5px;
    letter-spacing: 0.02em;
    color: #A39892;
}
#top-voice .top-voice-gallery .top-voice-gallery-item p {
    margin-top: 15px;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #333333;
}
#top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 {
    max-width: 100%;
    height: 350px;
    margin-left: auto;
    margin-right: auto;
}
#top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-slide {
    width: 327px;
    height: 318px;
    background: #FFFFFF;
    box-shadow: 0px 4px 20px 0px rgba(51,51,51,0.1);
    border-radius: 5px;
    margin: 0 50px 0 50px;
    padding: 30px 30px 0px 30px;
    position: relative;
    overflow: hidden;
    text-align: left;
}
#top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-arrow {
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0;
}
#top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-next {
    background: url("../img/top/icon_slide_right.svg") no-repeat center center !important;
    background-size: contain !important;
    width: 52px !important;
    height: 52px !important;
    position: absolute;
    top: 40%;
    right: 8%;
    z-index: 1006;
}
#top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-prev {
    background: url("../img/top/icon_slide_left.svg") no-repeat center center !important;
    background-size: contain !important;
    width: 52px !important;
    height: 52px !important;
    position: absolute;
    top: 40%;
    left: 8%;
    z-index: 1006;
}
#top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-dots {
    position: absolute;
    bottom: 0px;
    display: block;
    width: 100%;
    padding: 0 5px 0 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
#top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-dots li {
    position: relative;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}
#top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
#top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-dots li button:hover,
#top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-dots li button:focus {
    outline: none;
}
#top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-dots li button:hover:before,
#top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-dots li button:focus:before {
    opacity: 1;
}
#top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-dots li button:before {
    font-family: 'slick';
    font-size: 30px;
    line-height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: '•';
    text-align: center;
    color: #DDDDDD;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-dots li.slick-active button:before {
    color: #E18700;
}

@media screen and (max-width: 480px) {
    #top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-next {
        right: 1%;
    }
    #top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-prev {
        left: 1%;
    }
}

@media screen and (max-width: 320px) {
    #top-voice .top-voice-gallery .top-voice-gallery-item .slider-2 .slick-slide {
        width: 300px;
        margin: 0 30px 0 30px;
    }
}

/* お遍路ハウス四国８８のご予約はこちらから */
#top-yoyaku {
    padding-top: 150px;
    padding-bottom: 80px;
	position: relative;
}
#top-yoyaku::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	background: url("../img/top/img_goyoyaku@3x.webp") center center no-repeat;
    background-size: cover;
    z-index: -1;
}
#top-yoyaku .contents-inr {
}
#top-yoyaku .ttl01 {
	margin-bottom: 190px;
	padding-right: 10px;

-ms-writing-mode: tb-rl;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
white-space: pre;

    margin-left: auto;
    margin-right: auto;
}
#top-yoyaku .ttl01 span {
    display: inline-block;
    font-family: 'Zen_Old_Mincho';
font-family: "Zen Old Mincho", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
letter-spacing: 0.4em;
    color: #ffffff;
    border-right: 1px solid #D0AC8F;
    text-align: left;
    width: 43px;
}
#top-yoyaku .txt01 {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    margin-left: 20px;
    margin-right: 20px;
}
#top-yoyaku .btn-cmn04 {
    margin-top: 25px;
}

/* 体験型ツアー */
#top-taiken {
    padding-top: 70px;
    padding-bottom: 80px;
    background: #ffffff;
	position: relative;
}
#top-taiken::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -45px;
	left: 0;
	margin: 0;
	width: 100%;
	height: calc(10% + 45px);
	background: url("../img/top/bg_white_bottom@3x.webp") center bottom no-repeat;
    background-size: 480px;
    z-index: 1;
}
#top-taiken .contents-inr {
}
#top-taiken .img-hikikomori {
    position: absolute;
    top: 70px;
    right: calc(50% - 145px);
    width: 389px;
}
#top-taiken .icon-hikikomori {
    position: absolute;
    top: -5px;
    right: calc(50% - 175px);
    width: 73px;
}
#top-taiken .ttl01 {
    display: inline-block;
    background: #FFFFFF;
    font-family: 'Zen_Old_Mincho';
    font-size: 22px;
    font-weight: 600;
    line-height: 31.86px;
    letter-spacing: 0.04em;
    color: #333333;
    margin-left: -100px;
	margin-bottom: 320px;
    padding: 18px 36px 18px 50px;
    position: relative;
    z-index: 2;
}
#top-taiken .ttl01 span {
    font-family: 'Zen_Old_Mincho';
    font-size: 14px;
    font-weight: 600;
    line-height: 20.27px;
    letter-spacing: 0.04em;
    color: #D57D36;
}
#top-taiken .txt01 {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.02em;
    color: #333333;
    margin-left: 25px;
    margin-right: 25px;
}
#top-taiken .btn-cmn03 {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    #top-taiken::after {
        background-size: 100%;
    }
}
@media screen and (max-width: 480px) {
    #top-taiken::after {
        background-size: 480px;
    }
    #top-taiken .ttl01 {
        margin-left: -45px;
    }
}
@media screen and (max-width: 320px) {
    #top-taiken .btn-cmn03 a {
        padding: 12px 30px 12px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}

/* お遍路情報 */
#top-joho {
    margin-top: 700px;
    padding-top: 80px;
    padding-bottom: 80px;
	position: relative;
}
#top-joho .btn-cmn01 {
    margin-top: 30px;
}
#top-joho::before {
	content: "";
	display: block;
	position: absolute;
	top: -45px;
	left: 0;
	margin: 0;
	width: 100%;
	height: calc(100% + 45px);
	background: url("../img/top/bg_joho@3x.webp") center top no-repeat;
    background-size: 480px;
    z-index: -1;
}
#top-joho::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 40%;
	background: #f7ecce;
    z-index: 1;
}
#top-joho .contents-inr {
}
#top-joho .ttl-cmn01 {
	margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
    #top-joho::before {
        background-size: 100%;
    }
}
@media screen and (max-width: 480px) {
    #top-joho::before {
        background-size: 480px;
    }
}

/* お遍路情報 ギャラリー */
#top-joho .top-joho-gallery {
    position: relative;
    z-index: 1001;
}
#top-joho .top-joho-gallery .top-joho-gallery-item {
}
#top-joho .top-joho-gallery .top-joho-gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}
#top-joho .top-joho-gallery .top-joho-gallery-item img {
}
#top-joho .top-joho-gallery .top-joho-gallery-item .cate {
    float: left;
    margin-top: 15px;
    margin-left: 10px;
}
#top-joho .top-joho-gallery .top-joho-gallery-item .cate span {
    display: inline-block;
    vertical-align: top;
    background: #D57D36;
    font-family: 'zen-maru-gothic', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
    padding: 5px 2px 5px 2px;
    color: #ffffff;
}
#top-joho .top-joho-gallery .top-joho-gallery-item .date {
    float: right;
    margin-top: 20px;
    margin-right: 10px;
    font-family: 'zen-maru-gothic', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
    color: #A39892;
}
#top-joho .top-joho-gallery .top-joho-gallery-item p {
    margin-top: 5px;
    margin-left: 15px;
    margin-right: 15px;
    font-family: 'zen-maru-gothic', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.02em;
    color: #333333;
}
#top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 {
    max-width: 100%;
    height: 325px;
    margin-left: auto;
    margin-right: auto;
}
#top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-slide {
    width: 320px;
    height: 295px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px rgba(51,51,51,0.08);
    border-radius: 5px;
    margin: 0 50px 0 50px;
    padding: 0px 0px 0px 0px;
    position: relative;
    overflow: hidden;
    text-align: left;
}
#top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-arrow {
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0;
}
#top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-next {
    background: url("../img/top/icon_slide_right.svg") no-repeat center center !important;
    background-size: contain !important;
    width: 52px !important;
    height: 52px !important;
    position: absolute;
    top: 40%;
    right: 8%;
    z-index: 1006;
}
#top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-prev {
    background: url("../img/top/icon_slide_left.svg") no-repeat center center !important;
    background-size: contain !important;
    width: 52px !important;
    height: 52px !important;
    position: absolute;
    top: 40%;
    left: 8%;
    z-index: 1006;
}
#top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-dots {
    position: absolute;
    bottom: 0px;
    display: block;
    width: 100%;
    padding: 0 5px 0 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
#top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-dots li {
    position: relative;
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}
#top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
#top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-dots li button:hover,
#top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-dots li button:focus {
    outline: none;
}
#top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-dots li button:hover:before,
#top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-dots li button:focus:before {
    opacity: 1;
}
#top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-dots li button:before {
    font-family: 'slick';
    font-size: 30px;
    line-height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: '•';
    text-align: center;
    color: #DDDDDD;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
#top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-dots li.slick-active button:before {
    color: #E18700;
}

@media screen and (max-width: 480px) {
    #top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-next {
        right: 1%;
    }
    #top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-prev {
        left: 1%;
    }
}

@media screen and (max-width: 320px) {
    #top-joho .top-joho-gallery .top-joho-gallery-item .slider-3 .slick-slide {
        width: 300px;
        margin: 0 30px 0 30px;
    }
}

#top-joho img.column-img {
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* 遍路ハウス四国８８ 参画者募集 */
#top-sankakusya {
    padding-top: 40px;
    padding-bottom: 70px;
    background: #ffffff;
	position: relative;
}
#top-sankakusya::before {
	content: "";
	display: block;
	position: absolute;
	top: -45px;
	left: 0;
	margin: 0;
	width: 100%;
	height: calc(10% + 45px);
	background: url("../img/top/bg_white_top@3x.webp") center top no-repeat;
    background-size: 480px;
    z-index: 1;
}
#top-sankakusya::after {
	content: "";
	display: block;
	position: absolute;
	bottom: -45px;
	left: 0;
	margin: 0;
	width: 100%;
	height: calc(10% + 45px);
	background: url("../img/top/bg_white_bottom@3x.webp") center bottom no-repeat;
    background-size: 480px;
    z-index: 1;
}
#top-sankakusya .contents-inr {
}
#top-sankakusya .img-box01 {
    position: relative;
    height: 603px;
}
#top-sankakusya .img-box01 .ttl01 {
    position: absolute;
    top: 240px;
    left: calc(50% - 30px);

-ms-writing-mode: tb-rl;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
white-space: pre;

    margin-left: auto;
    margin-right: auto;
}
#top-sankakusya .img-box01 .ttl01 .span01 {
    display: inline-block;
    text-align: left;
    width: 40px;
}
#top-sankakusya .img-box01 .ttl01 .span02 {
    font-family: 'Zen_Old_Mincho';
font-family: "Zen Old Mincho", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 26.06px;
letter-spacing: 0.5em;
    color: #D57D36;
}
#top-sankakusya .img-box01 .ttl01 .span03 {
    font-family: 'Zen_Old_Mincho';
font-family: "Zen Old Mincho", serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 36.2px;
letter-spacing: 0.5em;
    color: #333333;
}
#top-sankakusya .img-box01 .img-sankakusya01-01 {
    position: absolute;
    top: 0px;
    left: calc(50% - 78px);
    width: 319px;
    height: auto;
}
#top-sankakusya .img-box01 .img-sankakusya01-02 {
    position: absolute;
    top: 210px;
    left: calc(50% - 210px);
    width: 144px;
    height: auto;
}
#top-sankakusya .img-box01 .img-sankakusya01-03 {
    position: absolute;
    top: 226px;
    left: calc(50% + 90px);
    width: 120px;
    height: auto;
}
#top-sankakusya .img-box01 .img-sankakusya01-04 {
    position: absolute;
    top: 478px;
    left: calc(50% - 216px);
    width: 145px;
    height: auto;
}
#top-sankakusya .txt01 {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #333333;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 60px;
}
#top-sankakusya .txt02 {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #333333;
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 70px;
}
#top-sankakusya .top-sankakusya-box {
    max-width: 345px;
    margin: 0px auto 40px auto;
    padding: 0px 25px 25px 25px;
    text-align: center;
    position: relative;
}
#top-sankakusya .top-sankakusya-box::before {
	content: "";
	display: block;
	position: absolute;
	top: 100px;
	left: 0;
	margin: 0;
	width: 100%;
	height: calc(100% - 100px);
    background: #F7ECCD;
    border-radius: 5px;
}
#top-sankakusya .top-sankakusya-box img {
    width: 184px;
    height: auto;
    position: relative;
    z-index: 2;
}
#top-sankakusya .top-sankakusya-box h3 {
    margin-top: 12px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}
#top-sankakusya .top-sankakusya-box h3 span {
    border-bottom: 1px solid #E3B896;
    font-family: 'zen-maru-gothic', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.05em;
    color: #8E464C;
    padding-bottom: 3px;
}
#top-sankakusya .top-sankakusya-box p {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #333333;
    text-align: left;
    position: relative;
    z-index: 2;
}

#top-sankakusya .btn-cmn03 {
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    #top-sankakusya::before {
        background-size: 100%;
    }
    #top-sankakusya::after {
        background-size: 100%;
    }
}
@media screen and (max-width: 480px) {
    #top-sankakusya::before {
        background-size: 480px;
    }
    #top-sankakusya::after {
        background-size: 480px;
    }
}

/* よくあるご質問 */
#top-faq {
    padding-top: 120px;
    padding-bottom: 130px;
	position: relative;
}
#top-faq::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	background: url("../img/top/bg_faq@3x.webp") center center no-repeat;
    background-size: cover;
    z-index: -1;
}
#top-faq .contents-inr {
}
#top-faq .ttl-cmn01 {
	margin-bottom: 55px;
}
#top-faq .ttl-cmn01 span {
    color: #ffffff;
    font-weight: 400;
}
#top-faq .ttl-cmn01 span::after {
    background: #D0CDCB;
}

#top-faq .acd-box, #top-faq .question-answer {
    height: auto;
    margin-bottom: 0px;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    background: #ffffff;
}
#top-faq .acd-box .acd-content {
    display: none;
}
#top-faq .acd-box .acd-label {
    display: block;
    margin: 15px 0px 0px 0px;
    position: relative;
    text-align: left;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    cursor: pointer;
	z-index: 1001;
}
#top-faq .acd-box .acd-label::before,
#top-faq .acd-box .acd-label::after {
	position: absolute;
	content: '';
	top: 0;
	right: 15px;
	bottom: 0;
	width: 15px;
	height: 2px;
	margin: auto;
	background: #D57D36;
}
#top-faq .acd-box .acd-label::after {
	transform: rotate(-90deg);
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
#top-faq .acd-box .acd-label.active::after {
	transform: rotate(0deg);
}
#top-faq .acd-box .acd-label h3, .question-answer {
    padding: 15px 15px 15px 15px;
}
#top-faq .acd-box .acd-label h3 .spanleft{
    margin-top: 3px;
    width: 30px;
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    color: #D57D36;
}
.questions-answers .question-answer.open .question {
    padding-bottom: 15px;
}
.questions-answers .question-answer.open .answer {
    display: block;
}
.questions-answers .question-answer.open .answer p {
    display: flex;
}
.questions-answers .question-answer .question:before {
    content: "Q.";
    margin-right: 10px;
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 700;
    color: #D57D36;
}
.questions-answers .question-answer .answer :before {
    content: "A.";
    margin-top: 4px;
    margin-right: 10px;
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    color: #D57D36;
}
.questions-answers .question-answer .control {
    color: #D57D36;
    font-size: 25px;
    font-weight: 500;
    line-height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.questions-answers .question-answer .question {
    display: flex;
    align-items: center;
    color: #D57D36;
    margin-right: 15px;
    font-size: 14px;
    font-weight: 500;
    line-height: 25.2px;
    letter-spacing: 0.02em;
}


#top-faq .acd-box .acd-label h3 .spanright {
    width: calc(100% - 60px);
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 14px;
    font-weight: 500;
    line-height: 25.2px;
    letter-spacing: 0.02em;
    color: #D57D36;
}
#top-faq .acd-box .acd-content {
    border-top: #D0CDCB 1px solid;
    text-align: left;
    margin: 0px 15px 0px 15px;
    padding: 15px 0px 15px 0px;
}
#top-faq .acd-box .acd-content p {
}
#top-faq .acd-box .acd-content p .spanleft {
    margin-top: 3px;
    width: 30px;
    font-family: 'Roboto';
    font-size: 18px;
    font-weight: 700;
    line-height: 21.6px;
    color: #D57D36;
}
#top-faq .acd-box .acd-content p .spanright {
    width: calc(100% - 30px);
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 14px;
    font-weight: 400;
    line-height: 25.2px;
    letter-spacing: 0.02em;
    color: #333333;
}

#top-faq .questions-answers .question-answer {
    border-bottom: unset;
    margin-top: 15px;
}

/* お問い合わせ */
#top-contact {
    padding-top: 60px;
    padding-bottom: 130px;
	background: #ffffff;
	position: relative;
}
#top-contact::before {
	content: "";
	display: block;
	position: absolute;
	top: -45px;
	left: 0;
	margin: 0;
	width: 100%;
	height: calc(10% + 45px);
	background: url("../img/top/bg_white_top@3x.webp") center top no-repeat;
    background-size: 480px;
}
#top-contact .contents-inr {
}
#top-contact .ttl-cmn01 {
	margin-bottom: 60px;
}
#top-contact .txt01 {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0.02em;
    color: #333333;
	margin-left: 30px;
	margin-right: 30px;
	margin-bottom: 35px;
}
#top-contact .form-box {
    margin-left: auto;
    margin-right: auto;
	margin-bottom: 25px;
    max-width: 344px;
}

#top-contact .form-box .doui-box {
    text-align: center;
}
#top-contact .form-box .doui {
    display: inline-block;
    vertical-align: top;
    margin-top: -4px;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #333333;
    text-align: left;
}
#top-contact .form-box .doui a {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 14px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #D57D36;

    background-image: linear-gradient(
        90deg,
        #D57D36 0%,
        #D57D36 50%,
        transparent 50%,
        transparent 100%
    );
    background-size: 200% 1px;
    background-repeat: no-repeat;
    background-position: 0 100%;
    padding-bottom: 3px;
}
@media (any-hover: hover) {
    #top-contact .form-box .doui a:hover {
        animation-name: borderAnimation2;
        animation-duration: 0.75s;
        animation-timing-function: var(--ease-in-out-quart);
    }
}
@keyframes borderAnimation2 {
    0% {
        background-position: 100% 100%;
    }
    100% {
        background-position: -100% 100%;
    }
}

#top-contact .form-box table {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width:100%;
    border-collapse:separate;
    border-spacing:-1px;
}
#top-contact .form-box table th {
    width: 100%;
    display: block;
    vertical-align: top;
    padding: 0px 0px 3px 0px;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: #333333;
    text-align: left;
}
#top-contact .form-box table th .hissu {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 12px;
    font-weight: 400;
    line-height: 10px;
    color: #ffffff;
    background: #D05547;
    margin-top: 2px;
    margin-right: 8px;
    padding: 5px 8px 5px 8px;
    display: inline-block;
    vertical-align: top;
}
#top-contact .form-box table th .nini {
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 12px;
    font-weight: 400;
    line-height: 10px;
    color: #ffffff;
    background: #A39892;
    margin-top: 2px;
    margin-right: 8px;
    padding: 5px 8px 5px 8px;
    display: inline-block;
    vertical-align: top;
}
#top-contact .form-box table td {
    width: 100%;
    display: block;
    vertical-align:top;
    padding: 5px 0px 25px 0px;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 400;
    line-height: 22.5px;
    letter-spacing: 0.02em;
    color: #333333;
    text-align: left;
}
#top-contact .form-box table td p {
}

#top-contact .form-box input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding: 12px 15px 12px 15px;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.02em;
    background: #F3F3F3;
    border-radius: 8px;
    border: none;
}

#top-contact .form-box .checkbox-2 {
    border: none;
    display: inline-block;
}
#top-contact .form-box .checkbox-2 label {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
#top-contact .form-box .checkbox-2 label::before {
    width: 20px;
    height: 20px;
    border: 2px solid #d0cdcb;
    border-radius: 5px;
    background: #ffffff;
    content: "";
}
#top-contact .form-box .checkbox-2 label:has(:checked)::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 10px;
    border-bottom: 3px solid #d57d36;
    border-left: 3px solid #d57d36;
    transform: rotate(-45deg);
}
#top-contact .form-box .checkbox-2 input {
    /* display: none; */
    opacity: 0;
    width: 1px;
    height: 1px;
    padding: unset;
}

#top-contact .form-box textarea {
    -webkit-appearance: none;
    appearance: none;
    padding: 12px 15px 12px 15px;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.02em;
    background: #F3F3F3;
    border-radius: 8px;
    width: 100%;
    border: none;
}

#top-contact .form-box .in_koumoku {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 1em 10em;
    border: none;
}
#top-contact .form-box .in_koumoku label {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0 .8em;
    position: relative;
    cursor: pointer;
}
#top-contact .form-box .in_koumoku label::before,
#top-contact .form-box .in_koumoku label::after {
    border-radius: 50%;
    content: '';
}
#top-contact .form-box .in_koumoku label::before {
    width: 24px;
    height: 24px;
    border: 2px solid #D0CDCB;
    box-sizing: border-box;
}
#top-contact .form-box .in_koumoku label::after {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background-color: #ffffff;
}
#top-contact .form-box .in_koumoku label:has(:checked)::after {
    background-color: #d57d36;
}
#top-contact .form-box .in_koumoku input {
    display: none;
}

#top-contact input[type="submit"] {
	appearance: none;
	-webkit-appearance: none;
}
#top-contact .formbtn {
    margin-top: 25px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
	background: #D57D36;
    width: 300px;
    height: 47px;
    padding: 12px 32px 12px 32px;
    border-radius: 30px;
    color: #FFFFFF;
    font-family: 'Zen_Kaku_Gothic_New';
    font-size: 15px;
    font-weight: 500;
    line-height: 22.5px;
    letter-spacing: 0.04em;
    display: block;
    -webkit-transition: .4s ease-in-out;
    -moz-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    border: none;
    cursor : pointer;
}
#top-contact .formbtn:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

/* ▼IE10・IE11用 */
#top-contact :-ms-input-placeholder {
    color: #aaaaaa;
    font-family: 'Zen_Kaku_Gothic_New';
}
/* ▼Chrome・Safari・Opera用(※1：Edgeでも有効) */
#top-contact ::-webkit-input-placeholder {
    color: #aaaaaa;
    font-family: 'Zen_Kaku_Gothic_New';
}
/* ▼Firefox18以前用(※2) */
#top-contact :-moz-placeholder {
    color: #aaaaaa;
    font-family: 'Zen_Kaku_Gothic_New';
}
/* ▼Firefox19以上用(※3) */
#top-contact ::-moz-placeholder {
    color: #aaaaaa; opacity: 1;
    font-family: 'Zen_Kaku_Gothic_New';
}
/* ▼CSS4標準(予定)の記述 */
#top-contact ::placeholder {
    color: #aaaaaa;
    font-family: 'Zen_Kaku_Gothic_New';
}

@media screen and (max-width: 767px) {
    #top-contact::before {
        background-size: 100%;
    }
}
@media screen and (max-width: 480px) {
    #top-contact::before {
        background-size: 480px;
    }
}
.bread-crumbs .bc-item {
    white-space: unset!important;
}
.privacy-btm a {
    color: #D57D36;
}

.container.default-page {
    margin: 80px auto;
}

/* プライバシーポリシー */
.privacy-policy h2 {
    font-size: 2rem;
}
.privacy-policy h3 {
    font-size: 1.75rem;
}
.privacy-policy h1, .privacy-policy h2, .privacy-policy h3, .privacy-policy h4, .privacy-policy .h5, .privacy-policy h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    margin-top: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
}
.privacy-policy p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.privacy-policy dl, .privacy-policy ol, .privacy-policy ul {
    margin-top: 0;
    margin-bottom: 1rem;
}
.privacy-policy ol, .privacy-policy ul {
    padding-left: 2rem;
}


