@charset "UTF-8";
/* リセット */
html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
    border : 0;
    font-size : 100%;
    font-weight : normal;
    margin : 0;
    padding : 0;
}
article, header, footer, aside, figure, figcaption, nav, .sec {
    display : block;
}
body {
    line-height : 1;
}
ol, ul {
    list-style : none;
    list-style-type : none;
}
/* 全体 */
body {
  color: #333333;
  -webkit-text-size-adjust: 100%;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}

@media (max-width: 767px) {
:root {
    font-size: 14px;
}
}
/* ヒーロー全体 */
.hero {
}
.hero .container {
}
/* 各ページイメージ */
.pageImage {
    height: 100vw;
    max-height: 100vh;
    background-position: center center;
    background-size: cover;
    position: relative;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
.pageImage {
/*height: 768px;*/
}
}
/* 各ページタイトル */
.pageTitle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.pageTitle .title {
    color: #fff;
    text-align: center;
    opacity: 0.7;
    white-space: nowrap;
}
.pageTitle .title .ja {
    font-size: 5.6vw;
    line-height: 1em;
}
.pageTitle .title .en {
    font-family: 'Noto Sans', sans-serif;
    font-size: 2.8vw;
    line-height: 2em;
    letter-spacing: .0625em;
    margin-left: .0625em;
}

@media (max-width: 500px) {
.pageTitle .title .ja {
    font-size: 28px;
}
.pageTitle .title .en {
    font-size: 14px;
}
}

@media (min-width: 768px) {
.pageTitle .title .ja {
    font-size: 6.4vw;
}
.pageTitle .title .en {
    font-size: 3.2vw;
}
}

@media (min-width: 992px) {
.pageTitle .title .ja {
    font-size: 63.488px;
}
.pageTitle .title .en {
    font-size: 31.744px;
}
}
/* 各ページサマリー */
.pageSummary {
	text-align: justify;
	line-height: 2em;
	padding: 1.5rem 1rem;
}

@media (min-width: 768px) {
.pageSummary {
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
}
}
/* セクション全体 */
.sec {
}
.sec .container {
}
.sec .secTitle {
    padding-top: 1.2rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
}
.sec .secTitle .en {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    font-size: 2rem;
    line-height: 2rem;
    letter-spacing: .0625em;
    margin-left: .0625em;
}
.sec .secTitle .ja {
    font-size: 1rem;
    line-height: 2rem;
}
.sec .secTitle:after {
    content: '';
    display: block;
    height: 0.125rem;
    width: 3rem;
    background-color: #ccc;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -1.5em;
}
/* サブセクション全体 */
.subsec {
}
.smallContainer {
    padding: 1.5rem 1rem;
}

@media (min-width: 768px) {
.smallContainer {
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
}
}
.smallContainer h3 {
    display: table;
    margin-bottom: 1.5rem;
}
.smallContainer h3 i {
    display: inline-block;
    font-size: 1rem;
    width: 2em;
    line-height: 2em;
    border-radius: 50%;
    background-color: #999;
    color: #fff;
    text-align: center;
    margin-right: .25rem;
}
.smallContainer h3 span {
    display: table-cell;
    white-space: nowrap;
    vertical-align: middle;
}
.smallContainer .notes {
    margin-bottom: 1.5rem;
}
.smallContainer .notes ul {
    display: inline-block;
    text-align: left;
}
.smallContainer .notes li {
    font-size: 0.875rem;
    line-height: 1.5rem;
}
.required {
    display: inline-block;
    width: 1em;
    text-align: center;
    color: red;
}
/* ヘッダー全体 */
header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #fff;
    opacity: 0.8;
}
header .container {
}
header .titleAndBtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* ヘッダータイトル */
.headTitle {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    line-height: 3rem;
    letter-spacing: 1em;
}
.headTitle a {
    display: inline-block;
    padding-left: 1em;
    color: #fff;
    text-decoration: none;
    background-color: #333333;
}
/* トグルボタン */
.toggleBtn {
    border: none;
    outline: none;
    background-color: #333333;
    width: 2rem;
    height: 2rem;
    margin-right: 1rem;
    cursor: pointer;
    position: relative;
}
.toggleBtn:hover {
}
.toggleBtn .bars {
    display: block;
    width: 1rem;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px 0 0 -0.5rem;
    /* [disabled]transition: .2s;
*/
}
.toggleBtn .bars:before, .toggleBtn .bars:after {
    display: block;
    content: "";
    width: 1rem;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    /* [disabled]transition: .3s; */
}
.toggleBtn .bars:before {
    margin-top: -0.5rem;
}
.toggleBtn .bars:after {
    margin-top: 0.375rem;
}
.toggleBtn .close {
    background-color: transparent;
}
.toggleBtn .close:before, .toggleBtn .close:after {
    margin-top: 0;
}
.toggleBtn .close:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.toggleBtn .close:after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
/* ヘッダーナビ */
.headNav {
    display: none;
}
.headNav .menu {
    text-align: center;
}
.headNav .menu .en {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: .0625em;
    margin-left: .0625em;
}
.headNav .menu .ja {
    line-height: 2rem;
}
.headNav a {
    display: block;
    padding-top: 1.2rem;
    color: #333333;
    text-decoration: none;
}
.headNav a:hover {
    color: #ff8a0a;
}
/* フッター全体 */
footer {
    background-color: #333333;
}
footer .container {
    padding: 3rem 1rem 0;
}

@media (min-width: 768px) {
footer .container {
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
}
}

/* フッタータイトルとフッターナビ */
@media (min-width: 768px) {
.footerItems {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
}
.footTitleAndAddress {
}
.footNav {
    flex: auto;
    margin: 0 0 0 1rem;
}
}
/* フッタータイトル */
.footTitle {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1rem;
    line-height: 3rem;
    letter-spacing: 1em;
}
.footTitle a {
    display: inline-block;
    margin: 0 -1rem;
    padding-left: 1em;
    color: #fff;
    text-decoration: none;
}
.address {
    color: #ccc;
    font-size: 0.875rem;
    line-height: 1.5rem;
    text-align: justify;
}
.address .telNumber {
	font-size: 0.875rem;
	line-height: 1.5rem;
	letter-spacing: .125em;
}
.address .telNumber .text {
    color: #999;
}
.address .telNumber .number {
    margin-left: .583em;
}
/* フッターナビ */
.footNav {
}
.footNav .menu {
    font-family: 'Noto Sans', sans-serif;
    font-size: 0.875rem;
    line-height: 3rem;
    letter-spacing: .0546875rem;
    border-bottom: 1px solid #999;
    position: relative;
}
.footNav .menu:first-child {
    border-top: 1px solid #999;
}
.footNav .menu .ja {
	letter-spacing: 0;
	color: #ccc;
	position: absolute;
	left: 50%;
}
.footNav a {
    display: block;
    color: #999;
    text-decoration: none;
}
.footNav a:hover {
    color: #ff8a0a;
}
.footNav a:hover > .ja {
    color: #ff8a0a;
}
/* ソーシャルボタン */
.socialBtn {
	text-align: center;
}
.socialBtn a {
	display: inline-block;
	margin: 0 .5rem;
}
.socialBtn i {
	display: inline-block;
	font-size: 2rem;
	width: 2em;
	line-height: 1.5em;
	border-radius: 100%;
	color: #fff;
	text-align: center;
}
.socialBtn i:hover {
	opacity: 0.4;
}
.socialBtn i.fa.fa-facebook {
	/* [disabled]background-color: #3B5998; */
}
.socialBtn i.fa.fa-twitter {
	/* [disabled]background-color: #1DA1F2; */
}

/* コピーライト */
.copyright {
    font-family: 'Noto Sans', sans-serif;
    line-height: 3rem;
    font-size: 0.875rem;
    text-align: right;
    letter-spacing: .0625em;
    margin-left: .0625em;
    color: #999;
}
/* slickのボタン */
.slick-dotted.slick-slider {
    margin-bottom: 0px;
}
.slick-dots {
    bottom: 0px;
    margin: 7px 0 81px 0;
}

@media (min-width: 768px) {
.slick-dots {
    bottom: 0px;
    margin: 10px 0 94px 0;
}
}
.slick-dots li {
    margin: 0 2px;
}
.slick-dots li button {
    padding: 2px;
    opacity: 0.8;
}
.slick-dots li button:hover, .slick-dots li button:focus {
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
}
.slick-dots li button:before {
    font-size: 1rem;
    opacity: 1;
    color: #fff;
}
.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #ff8a0a;
}
/* slickの矢印 */
.slick-prev, .slick-next {
    width: 2rem;
    height: 2rem;
    z-index: 10;
}
.slick-prev:before, .slick-next:before {
    font-family: 'FontAwesome';
    font-size: 1rem;
    line-height: 1rem;
    opacity: 0.8;
    color: #fff;
}
.slick-prev {
    left: 1rem;
}
[dir='rtl'] .slick-prev {
    right: 1rem;
}
.slick-prev:before {
    content: '\f053';
}
[dir='rtl'] .slick-prev:before {
    content: '\f054';
}
.slick-next {
    right: 1rem;
}
[dir='rtl'] .slick-next {
    left: 1rem;
}
.slick-next:before {
    content: '\f054';
}
[dir='rtl'] .slick-next:before {
    content: '\f053';
}
.fa-user-circle {
}
.fa-gratipay {
}
.subsec {
}
