@charset "UTF-8";
/*
    Theme Name: Original Theme
*/

/* 共通CSSファイル */

html {
	scroll-behavior: smooth;
}

@font-face {
    src: url('webfonts/NotoSansJP-Regular.woff') format("woff"),
         url('webfonts/NotoSansJP-Regular.woff2') format("woff2");
    font-family: "NotoSans Regular";
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}

@font-face {
    src: url('webfonts/NotoSansJP-Medium.woff') format("woff"),
         url('webfonts/NotoSansJP-Medium.woff2') format("woff2");
    font-family: "NotoSans Medium";
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}

@font-face {
    src: url('webfonts/NotoSansJP-Bold.woff') format("woff"),
         url('webfonts/NotoSansJP-Bold.woff2') format("woff2");
    font-family: "NotoSans Bold";
    font-style: normal;
    font-weight: normal;
    font-display: swap;
}

body, button {
    margin: 0;
    padding: 0;
    word-wrap: break-word;
/* テキスト文字の標準フォントを設定 */
    font-family: "NotoSans Regular", 'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo, "sans-serif";
	color: #212121;
    font-size: 16px;
    line-height: 2;
}

.bold {
    font-family: "NotoSans Bold", "sans-serif";
}
.medium {
    font-family: "NotoSans Medium", "sans-serif";
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 1.6;
    font-family: "NotoSans Bold";
    font-weight: normal;
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
}
.auto {
    margin: auto;
}

section, .relative {
    position: relative;
}

p {
    margin: 0 0 1em;
}
p:last-of-type {
    margin: 0;
}

a {
/* フォントカラーを設定 */
    color: #212121;
    text-decoration: none;
	transition: .3s;
}
a.under {
    text-decoration: underline;
}
a:hover, .link:hover {
    opacity: .7;
}
.link, .main-btn {
    position: relative;
    transition: .3s;
}
.link a, .main-btn a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-wrap {
	margin: 3em 0 0;
}
.main-btn {
	font-family: "NotoSans Bold";
	width: fit-content;
	min-width: 250px;
	min-height: 60px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.6;
	color: #fff;
	background: #aaa;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: .5em .8em .6em;	
}
.main-btn::after {
    content: '\f061';
    font-family: "Font Awesome 7 Free";
    font-weight: bold;
    flex-shrink: 0;
    margin-left: 1em;
}
.main-btn:hover {
    background: #af1817;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

ul, ol {
    padding-left: 1.5em;
}
ul.list-none {
    list-style: none;
    margin: 0;
    padding: 0;
}
li {
    line-height: 1.6;
}
li:not(:last-child) {
    margin: 0 0 .5em;
}

.f14 {
    font-size: 14px;
}
.center {
    text-align: center!important;
}
.left {
    text-align: left!important;
}
.center-sp {
    text-align: center;
}
.small {
    font-size: 80%;
}
.fb {
    font-weight: bold;
}
@media screen and (min-width: 768px) {
    .center-pc {
        text-align: center;
    }
    .center-sp {
        text-align: left;
    }
}

.wrap {
    box-sizing: content-box;
    margin: auto;
    position: relative;
/* 左右の余白を設定 */
    padding: 0 20px;
}
.__pc {
    display: none;
}
.d-none {
    display: none;
}
@media screen and (max-width: 767px) {
    .wrap.sp-none {
        padding: 0;
    }
/* 左右の余白を設定 */
	.sp-side {
		padding: 0 20px;
	}
}
@media screen and (min-width: 600px) {
    .wrap.min {
        max-width: 600px!important;
    }
}
@media screen and (min-width: 768px) {
    .wrap {
        max-width: 900px;
    }
    .wrap.max {
        max-width: 1100px!important;
    }
    
    .__pc {
        display: block;
    }
    .__sp {
        display: none;
    }
    
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

/* Scroll Hintを使用する場合*/
.scroll-hint-icon {
    width: 140px!important;
    left: 50%!important;
    transform: translateX(-50%);
    height: 90px!important;
}


/* header
--------------------------------------------*/
/* スクロールしたら固定 */
.header-block.fixed {
    position: fixed!important;
    top: 0;
    left: 0;
    width: 100%;
	z-index: 9999;
    background: #fff!important;
}

/* ヘッダーメニュー */
.header-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 70px;
	padding: 0 0 0 15px;
}
.header-logo {
	width: 250px;
}
.header-menu-ul li {
	margin: 0 0 .8em;
}
.header-nav .sub-menu {
	margin: .8em 0 0;
}
@media screen and (min-width: 768px) {
	.header-wrap {
		max-width: 1100px;
		margin: auto;
		height: 100px;
		padding: 0 15px;
	}
	.header-logo {
		width: 300px;
	}
	.header-menu-ul {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}
	.header-menu-ul li {
		margin: 0 1em;
	}
}

/* メニュー ホバー時の動き */

@media screen and (min-width: 768px) {
	.header-nav .sub-menu {
		visibility: hidden;
		opacity: 0;
		transition: all .3s;
		position: absolute;
		top: 32px;
		left: 0;
		padding: 0;
		width: 180px;
		background: #ccc;
		z-index: 999;
		margin: 0;
	}
	.header-nav li {
		position: relative;
	}
	.header-nav li:hover .sub-menu {
		visibility: visible;
		opacity: 1;
	}
	.header-nav li a {
		padding: .5em 0;
	}
	.header-nav .sub-menu li {
		margin: 0;
		list-style: none;
	}
	.header-nav .sub-menu a {
		display: block;
		padding: .8em;
	}
	.header-nav .sub-menu a:hover {
		background: #eee;
	}
}

@media screen and (max-width: 767px) {
	/* スマホメニュー　右からスライド表示 */
    .header-menu {
		position: fixed;
		top: 70px;
		right: -120%;
		width: 100%;
		background: #F5F5F5;
		margin: 0;
		padding: 2em 2em 10em 2em;
		transition: all 0.6s;
		height: 100vh;
		z-index: 99999;
    }
	.header-menu.active {
		overflow-y: scroll;
		right: 0;
	}
	
	/* ハンバーガーアイコン */
	.hamb-icon {
        height: 70px;
		width: 70px;
		background: #eee;
        display: flex;
        align-items: center;
        justify-content: center;
		flex-shrink: 0;
		cursor: pointer;
    }
	
	/* ハンバーガーのバー */
    .hamb-bar {
        position: relative;
        width: 32px;
        height: 18px;
        cursor: pointer;
        z-index: 99999;
    }
    .bar-line {
        background: #323232;
        width: 100%;
        height: 1px;
        position: absolute;
        left: 0;
        transition: all .4s;
    }
    .bar-line.top {
        top: 0;
    }
    .bar-line.middle {
        top: 50%;
        transform: translateY(-50%);
    }
    .bar-line.bottom {
        bottom: 0;
    }

	/* オープン時のバーアニメーション */
    .hamb-bar.open .bar-line.top, .hamb-bar.open .bar-line.bottom {
        background: #323232;
        top: 50%;
    }
    .hamb-bar.open .bar-line.top {
        transform: translateY(-50%) rotate(-45deg);
    }
    .hamb-bar.open .bar-line.middle {
        display: none;
    }
    .hamb-bar.open .bar-line.bottom {
        bottom: auto;
        transform: translateY(-50%) rotate(45deg);
    }
}



/* footer
--------------------------------------------*/
.footer-block {
	background: #eee;
	margin: 5em 0 0;
}
.footer-wrap {
	padding: 5em 0 0;
}
.footer-main {
	margin: 0 0 2em;
}
.footer-logo {
	margin: 0 0 1em;
}

/* Copyright */
.footer-copy {
	text-align: center;
	font-size: 90%;
	padding: 1em 0;
}

/* Page top */
.page-top {
	position: absolute;
	top: 0;
	right: 0;
}
.page-top-btn {
	background: #ccc;
	padding: 1em;
}

@media screen and (max-width: 767px) {
	
}
@media screen and (min-width: 768px) {
	.footer-wrap {
		display: flex;
		justify-content: center;
		align-items: flex-end;
		padding: 2em 0;
	}
	.footer-main {
		margin: 0 5em 0 0;
	}
	.footer-logo {
		width: 300px;
	}
}



/* main-head
--------------------------------------------*/
.main-head {
	background: #eee;
	padding: 3em 1em;
	text-align: center;
}
.main-title {
	font-size: 25px;
	line-height: 1.6;
}

@media screen and (max-width: 767px) {
	
}
@media screen and (min-width: 768px) {

}


/* breadcrumb
--------------------------------------------*/
.breadcrumb-list {
	font-size: 12px;
    padding: 1em 0;
	list-style: none;
	margin: 0;
}
.breadcrumb-list li {
	margin: 0;
	display: inline;
}
.breadcrumb-list li:not(:last-child)::after {
	content: '\f105';
	font-family: "Font Awesome 7 Free";
	font-weight: 900;
	margin: 0 .7em;
}


/* 404ページ
--------------------------------------------*/
.not-page {
	margin: 3em 0;
}
@media screen and (max-width: 767px) {
	
}
@media screen and (min-width: 768px) {
	
}

/* 
--------------------------------------------*/

@media screen and (max-width: 767px) {
	
}
@media screen and (min-width: 768px) {
	
}