@charset "utf-8";
/* --------------------------------------------

防災核シェルターページ

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

/* == 共通スタイル ============================== */

:root {
	--c-ocher: #B29A70;
	--c-ocher-rgb: 178,154,112;
	--c-gray-rgb: 154,157,174;
	--c-black: #141414;
	--c-white: #ffffff;
	--c-beige: #EBE9E6;
	--c-beige-rgb: 235,233,230;
	--c-gray-pale: #BEBEBE;
	--c-aqua: #0096af;

	--ff-en: 'Oswald', sans-serif;
}

body {
	overflow: hidden;
}

#shelter_main {
    opacity: 0;
    animation: anime_fadeIn 1.8s ease 0.5s 1 forwards;
    -webkit-animation: anime_fadeIn 1.8s ease 0.5s 1 forwards;
}

.titleType-A span {
	color: rgba(var(--c-ocher-rgb), 0.15);
}

.titleType-A.-gray span {
	color: rgba(var(--c-gray-rgb), 0.3);
}

.-skewBg {
	position: relative;
	color: var(--c-white);
	padding: 120px 0;
}

.-skewBg::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--c-black);
	z-index: -1;
    transform: skewY(-8deg);
}

.lead {
	max-width: 90vw;
	text-align: center;
	margin: 0 auto 40px;
}

img {
	width: 100%;
	height: auto;
}

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

	.-skewBg {
		padding: 60px 0;
	}

	.lead {
		text-align: left;
		margin: 0 auto 24px;
	}

}


/* == header ====================================== */

.header_logo {
	position: absolute;
	top: 5px;
	left: 30px;
	display: block;
	width: 90px;
}

.header {
	position: fixed;
	z-index: 9999;
	top: -102%;
	width: 100%;
	height: 85px;
	background-color: rgba(var(--c-beige-rgb), 0.8);
	transition: top 0.5s;
}

.header.is-fixed {
	top: 0;
	transition: top 0.5s;
}

.header_inner {
	height: 100%;
}
.header_nav {
	display: flex;
	justify-content: flex-end;
	height: 100%;
	margin-right: 20px;
	align-items: center;
}

.header_nav div {
	position: relative;
	margin-left: 2em;
	font-weight: bold;
}

.header_nav div:not(.header_contact) a::after {
	content: "";
	position: absolute;
	bottom: -0.4em;
	left: 0;
	width: 100%;
	height: 2px;
	transform: scale(0, 1);
	background-color: var(--c-ocher);
	transform-origin: center top;
    transition: transform 0.3s;
}

.header_nav div a.is-active::after {
    transform: scale(1, 1);
}

.header_contact {
	color: var(--c-white);
	background-color: var(--c-aqua);
	border: 1px solid var(--c-ocher);
	transition: background-color 0.3s;
}

.header_contact a {
	display: block;
	padding: 0.5em 1.2em;
	font-weight: bold;
	color: var(--c-white);
}

@media (hover: hover) {

	.header_contact:hover {
		background-color: var(--c-ocher);
		transition: background-color 0.3s;
	}

	.header_nav div:not(.header_contact) a:hover::after {
		transform: scale(1, 1);
	}

}

/*--- Responsive ---*/
@media screen and (max-width: 640px) {

	.header {
		height: 50px;
	}

	.header_logo {
		position: absolute;
		z-index: 9999;
		top: 9px;
		left: 4%;
		width: 150px;
	}

	.header_spCvBtn {
		position: absolute;
		z-index: 4000;
		right: 0;
		top: 5px;
		display: grid;
		place-content: center;
		width: auto;
		height: 38px;
		padding: 0 1.5em;
		margin-right: calc(4% + 45px);
		font-size: 15px;
		font-size: 1.5rem;
		color: var(--c-white);
		font-weight: bold;
		letter-spacing: 0.05em;
		background-color: var(--c-aqua);
		border: 1px solid var(--c-ocher);
	}

	/* ハンバーガーメニューボタン */
    .header_spBtn {
        position: absolute;
		z-index: 9999;
        top: 11px;
        right: 4%;
        width: 32px;
        height: 26px;
    }
    .header_spBtn span {
        display: inline-block;
        position: absolute;
        width: 100%;
        height: 2px;
        margin: 0 auto;
        background-color: var(--c-black);
        transition: 0.5s;
    }
    .header_spBtn span:first-child{
        top: 0;
    }
    .header_spBtn span:nth-child(2){
        opacity: 1;
        top: 50%;
        transform: translateY(-1px);
    }
    .header_spBtn span:last-child{
        top: auto;
        bottom: 0;
    }

    /* ボタンクリックで×に */
    .header.is-open .header_spBtn span:first-child {
        transform: translateY(12px) rotate(45deg);
    }
    .header.is-open .header_spBtn span:nth-child(2){
        opacity: 0;
    }
    .header.is-open .header_spBtn span:last-child {
        transform: translateY(-12px) rotate(-45deg);
    }

	/* メニュー */
	.header_inner {
		position: fixed;
		z-index: 5000;
		top: 0;
		right: -102%;
		padding: 7rem 6%;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		width: 100vw;
		height: 100vh;
		background-color: var(--c-beige);
		transition: right 0.5s;
	}

	.header.is-open .header_inner {
		right: 0;
		transition: right 0.5s;
	}

	.header_nav {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.header_nav div {
		padding: 0.8em 0;
		margin-left: 0;
		font-size: 20px;
		font-size: 2.0rem;
	}

	.header_nav div span {
		display: inline-block;
		margin-left: 1em;
		font-size: 0.86em;
		font-family: var(--ff-en);
		font-weight: normal!important;
		color: var(--c-ocher);
		transition: 0.3s;
	}

	.header_nav .header_contact {
		padding: 0;
		margin-top: 0.5em;
		text-align: center;
		line-height: 1.4;
	}

	.header_nav .header_contact a span {
		display: block;
		margin-left: 0;
		text-align: center;
	}

}

/* == mv ====================================== */

.mv {
	width: 100%;
	margin-bottom: 40px;
	aspect-ratio: 16 / 9;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}

.mv_img01,
.mv_img02 {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left top;
}

.mv_img01 {
	background-image: url(../img/mv_img-01.jpg);
}

.mv_img02 {
	background-image: url(../img/mv_img-02.jpg);
}

.mv_mainText {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.mv_copy {
	width: 6.4vw;
	max-width: 120px;
}

.mv_title {
	width: 25vw;
	max-width: 480px;
	margin: 3.6vw 0 30px;
}

.mv_mainText p {
	margin-bottom: 5px;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
}

.mv_logo {
	width: 7.3vw;
	max-width: 140px;
}

/*--- Responsive ---*/
@media screen and (max-width:960px) {
}

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

	.mv {
		position: relative;
		aspect-ratio: 9 / 16;
		grid-template-columns: 1fr;
		margin-bottom: 20px;
	}

	.mv_img-sp {
		position: absolute;
		bottom: 26.5%;
		left: 0;
		z-index: -1;
		width: 100%;
		aspect-ratio: 5 / 4;
		background-image: url(../img/mv_img-sp.jpg);
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
	}

	.mv_img01.showPc,
	.mv_img02.showPc {
		display: none;
	}

	.mv_mainText {
		justify-content: flex-start;
	}

	.mv_copy {
		width: 14%;
		margin-top: 3%;
	}

	.mv_title {
		width: 75%;
		max-width: 480px;
		margin: auto 0 16px;
	}

	.mv_mainText p {
		margin-bottom: 8px;
		font-size: 16px;
		font-size: 1.6rem;
		line-height: 1;
	}

	.mv_logo {
		width: 45%;
		max-width: 140px;
		margin-bottom: 8px;
	}
}

/* == lead ====================================== */

.titleType-A.lead_title {
	line-height: 1.5;
}

.titleType-A.lead_title span {
	margin: -2.05em auto 0;
}

.titleType-A.lead_title .newline {
	display: none;
}

.lead_text {
	max-width: 90vw;
	text-align: center;
	line-height: 2.5;
	padding: 2em 0;
	margin: 0 auto 120px;
}

/*--- Responsive ---*/
@media screen and (max-width:1200px) {

	.titleType-A.lead_title .newline {
		display: block;
	}

}

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

	.titleType-A.lead_title {
		margin-bottom: 0;
	}

	.titleType-A.lead_title span {
		margin: -2.2em auto 0;
		font-size: 2.8em;
	}

	.lead_text {
		text-align: left;
		padding: 0;
		margin: 0 auto 60px;
	}

}
/* == about ====================================== */

.about {
	margin-bottom: 140px;
}

.about_wrap {
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	background-image:url(../img/about_bg-01.jpg),url(../img/about_bg-02.jpg);
	background-size: 60% auto;
	background-position: top left, center right;
    background-repeat: no-repeat;
}

.about_lead {
	text-align: center;
	margin-bottom: 40px;
}

.about_inner {
	width: 90%;
	max-width: 960px;
	margin: 0 auto;
	padding: 40px 0;
}

.about_box {
	display: flex;
	column-gap: 50px;
	margin-bottom: 85px;
}

.about_box:nth-child(even) {
	flex-direction: row-reverse;
}

.about_body {
	align-self: center;
}

.about_body h3 {
	position: relative;
	margin-bottom: 8px;
}

.about_body h3::before {
	display: block;
	padding: 0 0 15px 60px;
	font-size: 70px;
	font-size: 7.0rem;
	font-weight: 500;
	line-height: 1;
	font-family: var(--ff-en);
	color: var(--c-ocher);
}

.about_box.-no01 .about_body h3::before {
	content: "01";
}

.about_box.-no02 .about_body h3::before {
	content: "02";
}

.about_box.-no03 .about_body h3::before {
	content: "03";
}

.about_box.-no04 .about_body h3::before {
	content: "04";
}

.about_box.-no05 .about_body h3::before {
	content: "05";
}

.about_body h3::after {
	content: "";
	width: 45px;
	height: 6px;
	background-color: var(--c-ocher);
	position: absolute;
	top: 36px;
	left: 0;
}

.about_img {
	width: 50%;
	flex-shrink: 0;
}

.about_imgText {
	font-size: 0.8em;
}

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

	.about {
		margin-bottom: 80px;
	}

	.about_wrap {
		background-image: none;
	}

	.about_inner {
		padding: 0 0 40px;
	}

	.about_box {
		flex-direction: column;
		margin-bottom: 30px;
	}

	.about_box:nth-child(even) {
		flex-direction: column;
	}

	.about_body {
		margin-bottom: 1em;
	}

	.about_body h3::before {
		padding: 0 0 10px 50px;
		font-size: 60px;
		font-size: 6.0rem;
	}

	.about_body h3::after {
		width: 40px;
		height: 5px;
		top: 27px;
	}

	.about_img {
		width: 100%;
	}
}

/* == manga ====================================== */

.about_manga {
	width: fit-content;
	padding: 30px 50px;
	margin: 0 auto;
	color: var(--c-black);
	background-color: var(--c-beige);
}

.aboutManga_title {
	margin-bottom: 1em;
	font-size: 18px;
	font-size: 1.8rem;
	line-height: 1.4;
	text-align: center;
}

.aboutManga_link {
	display: block;
	width: 500px;
	margin: 0 auto;
	border: 1px solid var(--c-black);
	transition: opacity 0.3s;
}

.aboutManga_association {
	display: block;
	width: fit-content;
	width: -moz-fit-content;
	margin: 1.8em auto 0;
	font-size: 15px;
	font-size: 1.5rem;
	text-decoration: underline;
}

@media (hover:hover) {

	.aboutManga_link:hover {
		opacity: 0.8;
		transition: opacity 0.3s;
	}

}

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

	.about_manga {
		padding: 30px 3% 40px;
		margin: 0 5%;
	}

	.aboutManga_link {
		width: 100%;
	}

}

/* == detail ====================================== */

.detail {
	margin-bottom: 80px;
}

.detail_link {
	display: block;
	width: 600px;
	margin: 0 auto;
	color: var(--c-white);
}

.detail_link p {
	margin-bottom: 0.2em;
	font-size: 18px;
	font-size: 1.8rem;
	text-align: center;
	font-weight: bold;
}

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

	.detail {
		margin-bottom: 40px;
	}

	.detail_link {
		width: 90%;
	}

}


/* == setup ====================================== */

.setup {
	width: 90%;
	max-width: 880px;
	margin: 120px auto 60px;
}

.setup_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 50px;
	margin-bottom: 3em;
}

.setup_body {
	margin-bottom: 3em;
}

.setup_list {
	margin-bottom: 30px;
}

.setup_list li {
	position: relative;
	padding-left: 1.5em;
	font-size: 18px;
	font-size: 1.8rem;
	margin-bottom: 0.5em;
}

.setup_list li::before {
	content: "";
	width: 1em;
	height: 3px;
	background-color: var(--c-ocher);
	position: absolute;
	top: 0.8em;
	left: 0;
}

.setup_img {
	width: 40%;
}

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

	.setup {
		margin: 60px auto 0;
	}

	.setup_wrap {
		flex-direction: column;
		margin-bottom: 0;
	}

	.setup_list {
	margin-bottom: 20px;
}

	.setup_list li {
		font-size: 16px;
		font-size: 1.6rem;
		margin-bottom: 0.2em;
	}

	.setup_img {
		width: 100%;
	}

}


/* == cv ====================================== */

.cv_wrap.-skewBg {
	padding: 330px 0 0;
	overflow: hidden;
}

.cv_wrap.-skewBg::after {
	transform: skewY(-8deg) translateY(160px);
}

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

	.cv_wrap.-skewBg {
		padding: 170px 0 0;
		overflow: hidden;
	}

	.cv_wrap.-skewBg::after {
		transform: skewY(-8deg) translateY(100px);
	}

}

/* == showroom ====================================== */

.showroom {
	width: 90%;
	max-width: 960px;
	margin: 0 auto 120px;
}

.showroom_text {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 20px;
	margin-bottom: 20px;
}

.showroom_text a[href*="tel:"] {
	color: var(--c-white);
}

.showroom_text div {
	display: flex;
	margin-bottom: 0.8em;
}

.showroom_text dt {
	display: block;
	align-self: flex-start;
	width: 6em;
	padding: 0 0.5em;
	margin-right: 0.5em;
	text-align: center;
	border: 1px solid var(--c-white);
}


.showroom_wrap {
	display: flex;
	column-gap: 20px;
}

.showroom_img {
	width: 50%;
}

.showroom_img p:first-of-type {
	margin-bottom: 15px;
}

.showroom_img p {
	padding-top: 0.5em;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.4;
}

.showroom_map {
	width: 50%;
}

.showroom_map iframe {
	width: 100%;
	height: 100%;
}

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

	.showroom {
		margin: 0 auto 80px;
	}

	.showroom_text {
		display: grid;
		grid-template-columns: 1fr;
	}

	.showroom_wrap {
		flex-direction: column;
	}

	.showroom_img {
		width: 100%;
		margin-bottom: 20px;
	}

	.showroom_map {
		width: 100%;
		aspect-ratio: 1 / 1;
	}

}

/* == contact ====================================== */

.contact_box {
	width:90%;
	max-width: 1000px;
	padding: 30px;
    margin: 0 auto 100px;
    text-align: center;
	background-color: var(--c-beige);
}

.contact_box a {
	display: inline-block;
    width: 40%;
    max-width: 400px;
    margin: 0 2%;
    vertical-align: middle;
    height: 7.2rem;
    border: 1px solid var(--c-gray-pale);
}

.contact_box a:nth-of-type(1) {
	font-size: 12px;
	font-size: 1.2rem;
	background: var(--c-beige);
}

.contact_box a:nth-of-type(1) img {
    max-height: 42%;
	width: auto;
    max-width: 80%;
    margin-top: 1.2em;
}

.contact_box a:nth-of-type(2) {
    color: var(--c-beige);
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 7.2rem;
    font-weight: bold;
    border: 1px solid #B29A70;
    background: #0096af;
}

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

	.contact_box {
		padding: 20px;
		margin: 0 auto 60px;
	}

	.contact_box a {
		width: 90%;
		margin: 2%;
	}

}

/* == pagetop ====================================== */

#page_top {
    position: fixed;
    z-index: 500;
    right: 2vw;
    bottom: -5px;
    width: 60px;
    height: 60px;
    background-color: var(--c-black);
    border: 3px solid var(--c-ocher);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s;
}

#page_top a {
    display: block;
    height: 100%;
    user-select: none;
}

#page_top::after {
    content: "";
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-top: 3px solid var(--c-ocher);
    border-right: 3px solid var(--c-ocher);
    transform: translateX(-50%) rotate(-45deg);
    transition: margin 0.25s;
    pointer-events: none;
}

#page_top.is-fixed {
    opacity: 1;
    visibility: visible;
    bottom: 2vw;
    transition: all 0.25s;
}

@media (hover: hover) {

    #page_top:hover {
        background-color: var(--c-ocher);
    }

    #page_top:hover::after {
        border-top: 3px solid var(--c-black);
        border-right: 3px solid var(--c-black);
    }

}

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

    #page_top {
        right: 3.5vw;
		width: 50px;
		height: 50px;
    }

    #page_top::before {
        width: 30px;
        height: 30px;
    }

    #page_top.is-fixed {
        bottom: 3.5vw;
    }

}

/* == footer ====================================== */

footer {
	color: var(--c-white);
	background-color: var(--c-black);
}

footer p a {
	color: var(--c-white);
}

.footer_heading {
	font-size: 20px;
	font-size: 2.0rem;
	font-weight: bold;
	margin-bottom: 0.5em;
}

footer p,
footer div {
	text-align: center;
	margin: 0 auto;
}

.footer_logo {
	width: 70%;
	max-width: 300px;
	margin-bottom: 1em;
}

.footerAddress {
	font-size: 12px;
	font-size: 1.2rem;
	margin-bottom: 80px;
}

.footerCopy {
	font-size: 12px;
	font-size: 1.2rem;
	padding-bottom: 1em;
}

.footer_association {
	display: flex;
	justify-content: center;
	width: fit-content;
	align-items: center;
	margin: 0 auto 80px;
}

.footerAssociation_banner {
	width: 120px;
	height: auto;
	margin: 0;
}

.footerAssociation_text {
	color: var(--c-white);
	font-size: 15px;
	font-size: 1.5rem;
	margin: 0 0 0.5em;
	padding-left: 30px;
	text-align: left;
}

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

	.footer_heading {
		font-size: 18px;
		font-size: 1.8rem;
	}

	.footerAddress {
		margin-bottom: 40px;
	}

	.footer_association {
		flex-direction: column-reverse;
		margin: 0 auto 50px;
	}

	.footerAssociation_text {
		padding-left: 0;
		text-align: center;
	}
}