@charset "UTF-8";
body, html {
	font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 16px;
	height: 100%;
	line-height: 2;
	color: #1a1a1a;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

li {
	list-style: none;
}

div, header, footer, p {
	box-sizing: border-box;
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

a,
a:link,
a:visited,
a:hover,
a:focus {
	color: #00a4e4;
	text-decoration: none;
	word-break: break-all;
}

a {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
a.underline {
	text-decoration: underline;
}

a:hover {
	border-bottom-color: transparent;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
a:hover.underline {
	text-decoration: none;
}

.fixed #wrap,
.open #wrap {
	position: fixed;
	left: 0;
	width: 100%;
}

#loader-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #00a4e4;
	z-index: 1000;
}
.loader {
	width: 100%;
}
.loader span {
	background-color: #fff;
	border-radius: 50%;
	display: block;
	width: 7px;
	height: 7px;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	font-size: 10px;
	-webkit-animation: load8 1.2s infinite linear;
	animation: load8 1.2s infinite linear;
}
.loader span:nth-of-type(1) {
	transform: translateX(-26px);
}
.loader span:nth-of-type(2) {
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
}
.loader span:nth-of-type(3) {
	transform: translateX(26px);
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
}
@-webkit-keyframes load8 {
	0% {
		width: 7px;
		height: 7px;
	}
	33.3% {
		width: 18px;
		height: 18px;
	}
	66.6% {
		width: 7px;
		height: 7px;
	}
}
@keyframes load8 {
	0% {
		width: 7px;
		height: 7px;
	}
	33.3% {
		width: 18px;
		height: 18px;
	}
	66.6% {
		width: 7px;
		height: 7px;
	}
}

/*** header ***/
.header {
	background: #00a4e4;
	border-bottom: 1px solid #fff;
	display: block;
	padding: 11px 10px 16px;
	width: 100%;
	position: fixed;
	z-index: 11;
}
.header.no-fixed {
	position: absolute;
}
.header-logo {
	height: 36px;
	line-height: 1;
}
.header-logo img {
	width: auto;
	height: 100%;
}

/** menu **/
.menu-btn {
	padding: 14px;
	width: 63px;
	height: 63px;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	border-left: 1px solid #fff;
	cursor: pointer;
	z-index: 11;
}
.menu-btn div {
	width: 100%;
	height: 100%;
	position: relative;
}
.menu-btn span {
	width: 30px;
	height: 3px;
	display: block;
	background: #fff;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.menu-btn span:nth-child(2) {
	-webkit-transform: translateY(-13px);
	transform: translateY(-13px);
}
.menu-btn span:nth-child(3) {
	-webkit-transform: translateY(13px);
	transform: translateY(13px);
}
html.open .menu-btn span:nth-of-type(1) {
	opacity: 0;
}
html.open .menu-btn span:nth-of-type(2) {
	-webkit-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
}
html.open .menu-btn span:nth-of-type(3) {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}
.menu-block {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 64px;
	width: 100%;
	height: 0;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	overflow: hidden;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
html.open .menu-block {
	height: 100%;
}
.menu-list {
	font-size: 12px;
	font-weight: 900;
	margin: 0 auto;
	overflow-y: auto;
	padding: 50px;
	position: relative;
	height: 100%;
}

.menu-list > li {
	border-bottom: 1px dashed #00a4e4;
	padding-top: 10px;
}

.menu-list > li:first-child {
	border-top: 1px dashed #00a4e4;
}
.menu-list a {
	display: block;
	padding: 10px;
}
.menu-list .sub-menu-list {
	padding-left: 1.5em;
}
.menu-list .sub-menu-list a {
	padding-left: 0;
}
.menu-list .sub-menu-list .title {
	color: #8a8c8d;
}

/*** Slider ***/
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
	width: 100%;
}
.slick-list {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	z-index: 1;
}
.slick-list:focus {
	outline: none;
}
.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: auto;
	margin-right: auto;
}
.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}
.slick-track:after {
	clear: both;
}
.slick-loading .slick-track {
	visibility: hidden;
}
.slick-slide {
	display: none;
	min-height: 1px;
}
.slick-slide img {
	display: block;
}
.slick-slide.slick-loading img {
	display: none;
}
.slick-slide.dragging img {
	pointer-events: none;
}
.slick-initialized .slick-slide {
	display: block;
}
.slick-loading .slick-slide {
	visibility: hidden;
}
.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
	display: none;
}
.slick-arrow {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	outline: none;
	padding: 0;
	border: none;
	width: 10.933vw;
	height: 10.933vw;
	overflow: hidden;
	position: absolute;
	top: 50%;
	margin-top: -5.4665vw;
	text-indent: -9999px;
	z-index: 2;
}
.slick-arrow.slick-prev {
	background: url("../img/btn_prev.svg") no-repeat center center / contain;
	left: 5.33vw;
}
.slick-arrow.slick-next {
	background: url("../img/btn_next.svg") no-repeat center center / contain;
	right: 5.33vw;
}
.slick-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
}
.slick-dots li {
	width: 12px;
	height: 12px;
}
.slick-dots li + li {
	margin-left: 5px;
}
.slick-dots li button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border: 2px solid #000;
	border-radius: 12px;
	outline: none;
	padding: 0;
	width: 12px;
	height: 12px;
	overflow: hidden;
	text-indent: -9999px;
}
.slick-dots .slick-active button {
	background-color: #ade0ee;
}

/*** contents ***/
#mainvisual {
	background: url("../img/img_mainvisual.png") no-repeat center center / cover;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	padding-top: 90px;
	position: relative;
}
#mainvisual.local {
	background-position: center 20%;
	height: calc(100vh - 107px);
}
#mainvisual .title {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
}
#mainvisual .title h1 {
	display: inline-block;
	font-weight: 900;
	line-height: 1.2;
	padding: 0 15px 10px 10px;
	position: relative;
	text-align: right;
}
#mainvisual .title h1 .circle {
	display: block;
	width: calc(3.6em + 20px);
	height: 100%;
	position: absolute;
	left: 0.5em;
	top: 0;
	transform: translate(-50%);
	z-index: 1;
}
#mainvisual .title h1 .circle:before {
	background-color: #f8b500;
	border-radius: 50%;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	transform: scale(0);
	-webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
	-moz-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
	-o-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#mainvisual .title.show h1 .circle:before {
	transform: scale(1);
}
#mainvisual .title h1:after {
	background-color: #f8b500;
	content: "";
	display: block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0.5em;
	top: 0;
	z-index: 1;
	-webkit-transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) .6s;
	-moz-transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) .6s;
	-o-transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) .6s;
	transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) .6s;
}
#mainvisual .title.show h1:after {
	width: 100vw;
}
#mainvisual .title h1 span {
	opacity: 0;
	position: relative;
	display: inline-block;
	z-index: 2;
	transform: translateX(100%);
}
#mainvisual .title.show h1 span {
	opacity: 1;
	transform: translateX(0);
}
#mainvisual .title h1 .white {
	color: #fff;
	font-size: 24px;
	-webkit-transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) 1.4s;
	-moz-transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) 1.4s;
	-o-transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) 1.4s;
	transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) 1.4s;
}
#mainvisual .title h1 .black {
	font-size: 32px;
	-webkit-transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) 1.7s;
	-moz-transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) 1.7s;
	-o-transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) 1.7s;
	transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) 1.7s;
}
#mainvisual .title h1 .area {
	border: 2px solid #000;
	border-radius: 10px;
	font-size: 15px;
	padding: 5px 0;
	width: 190px;
	text-align: center;
	-webkit-transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) 2.1s;
	-moz-transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) 2.1s;
	-o-transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) 2.1s;
	transition: all .75s cubic-bezier(0.165, 0.84, 0.44, 1) 2.1s;
}
#mainvisual .tab-wrap {
	border-bottom: 3px solid #fff;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
#mainvisual .tab-wrap ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	padding: 0 20px;
	position: relative;
	text-align: center;
}
#mainvisual .tab-wrap ul li {
	flex: 1;
}
#mainvisual .tab-wrap ul li + li {
	margin-left: 20px;
}
#mainvisual .tab-wrap ul li a {
	border: 3px solid #fff;
	border-bottom: none;
	border-radius: 15px 15px 0 0;
	display: block;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.3;
	letter-spacing: 0.05em;
	width: 100%;
	padding: 10px 0 25px;
	position: relative;
}
#mainvisual .tab-wrap ul li a.cur {
	height: calc(100% + 3px);
	margin-bottom: -3px;
}
#mainvisual .tab-wrap ul li .tab-detail {
	background-color: #f8b500;
	color: #1a1a1a;
}
#mainvisual .tab-wrap ul li .tab-activity {
	background-color: #00a4e4;
	color: #fff;
}
#mainvisual .tab-wrap ul li a span {
	display: inline-block;
	position: relative;
}
#mainvisual .tab-wrap ul li a span:after {
	content: "";
	display: block;
	width: 11px;
	height: 8px;
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	margin: 0 auto;
	-webkit-animation: arrow 1.75s infinite linear;
	animation: arrow 1.75s infinite linear;
}
@-webkit-keyframes arrow {
	0% {
		transform: translateY(0);
	}
	25% {
		transform: translateY(-2px);
	}
	50% {
		transform: translateY(0);
	}
	75% {
		transform: translateY(2px);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes arrow {
	0% {
		transform: translateY(0);
	}
	25% {
		transform: translateY(-2px);
	}
	50% {
		transform: translateY(0);
	}
	75% {
		transform: translateY(2px);
	}
	100% {
		transform: translateY(0);
	}
}
#mainvisual .tab-wrap ul li .tab-detail span:after {
	background: url("../img/icon_arrow_detail.svg") no-repeat center center / contain;
}
#mainvisual .tab-wrap ul li .tab-activity span:after {
	background: url("../img/icon_arrow_activity.svg") no-repeat center center / contain;
}

/** main-section **/

.section {
	padding-top: 50px;
}
.section:last-of-type {
	padding-bottom: 50px;
}
.arrow {
	background: url("../img/icon_next.svg") no-repeat center 0 / contain;
	border: none;
	width: 100%;
	height: 8.8vw;
}
.dotted {
	background: url("../img/icon_dotted_detail.svg") no-repeat center 0 / contain;
	border: none;
	width: 100%;
	height: 10.66vw;
}
#activity .dotted {
	background-image: url("../img/icon_dotted_activity.svg");
}
.tab-target {
	display: none;
}
.tab-target.show {
	display: block;
}

/* #detail */
#detail {
	background-color: #f8b500;
	overflow: hidden;
	padding: 0 40px;
	position: relative;
	width: 100%;
}
.underline-title {
	text-align: center;
	font-size: 27px;
	font-weight: 900;
	line-height: 1.6;
}
.underline-title .underline {
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.underline-title br + .underline {
	margin-top: -5px;
}
.underline-title .underline .split {
	display: inline-block;
	transform: translateY(100%);
	-webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	-moz-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	-o-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.underline-title .underline .split.show {
	transform: translateY(0);
}
.underline-title .underline:after {
	background-color: #fff;
	border-radius: 3px;
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 3px;
	-webkit-transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
	-moz-transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
	-o-transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.underline-title .underline.show:after {
	width: 100%;
}
#detail .catch {
	font-size: 13px;
	margin-top: 10px;
	text-align: center;
}
#detail .lead {
	font-weight: 900;
	line-height: 1.6;
	margin-bottom: 16px;
	text-align: center;
}
#detail .lead span {
	display: inline-block;
	padding: 0 10px;
	position: relative;
}
#detail .lead span:after,
#detail .lead span:before {
	background: url("../img/icon_lead_arrow.svg") no-repeat center center / contain;
	content: "";
	display: block;
	width: 13px;
	height: 11px;
	position: absolute;
	top: 50%;
	margin-top: -6px;
	vertical-align: top;
}
#detail .lead span:before {
	right: 100%;
}
#detail .lead span:after {
	left: 100%;
}
#detail01 p {
	font-size: 15px;
	font-weight: bold;
	margin-top: 24px;
	text-align: center;
}
#detail01 .img {
	margin-top: 64px;
}
.risk-nav-container {
	margin-top: 40px;
	padding-top: 19px;
	position: relative;
}
.risk-nav-container .risk-nav {
	font-size: 12px;
	position: relative;
	overflow: visible;
	margin: 0 auto;
	z-index: 1;
	max-width: 295px;
}
.risk-nav .nav {
	color: #1a1a1a;
	display: block;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.4;
	text-align: center;
	outline: none;
	position: relative;
	width: 8em;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.risk-nav .nav.slick-current {
	color: #00a4e4;
}
.risk-nav .nav.slick-current:before {
	border-style: solid;
	border-width: 10px 6px 0 6px;
	border-color: #00a3e4 transparent transparent transparent;
	content: "";
	display: block;
	width: 0;
	height: 0;
	position: absolute;
	left: 50%;
	bottom: calc(100% + 9px);
	margin-left: -6px;
}
.risk-nav .nav .img {
	background: center center / contain;
	border: 2px solid #f8b500;
	border-radius: 50%;
	width: 74px;
	height: 74px;
	margin: 0 auto 6px;
}
.risk-nav .nav.slick-current .img {
	border-color: #fff;
}
.risk-nav .nav01 .img { background-image: url("../img/thm_risk_01.png"); }
.risk-nav .nav01.slick-current .img { background-image: url("../img/thm_risk_01_on.png"); }
.risk-nav .nav02 .img { background-image: url("../img/thm_risk_02.png"); }
.risk-nav .nav02.slick-current .img { background-image: url("../img/thm_risk_02_on.png"); }
.risk-nav .nav03 .img { background-image: url("../img/thm_risk_03.png"); }
.risk-nav .nav03.slick-current .img { background-image: url("../img/thm_risk_03_on.png"); }
.risk-nav .nav04 .img { background-image: url("../img/thm_risk_04.png"); }
.risk-nav .nav04.slick-current .img { background-image: url("../img/thm_risk_04_on.png"); }
.risk-nav .nav05 .img { background-image: url("../img/thm_risk_05.png"); }
.risk-nav .nav05.slick-current .img { background-image: url("../img/thm_risk_05_on.png"); }
.risk-nav .nav06 .img { background-image: url("../img/thm_risk_06.png"); }
.risk-nav .nav06.slick-current .img { background-image: url("../img/thm_risk_06_on.png"); }
.risk-nav .nav .txt {
	width: 8em;
	margin: 0 auto;
}
.risk-detail-container {
	position: relative;
	margin: 30px -40px 0;
}
.risk-detail-container .risk-wrap {
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.risk-detail-container .risk {
	background-color: #00a4e4;
	background-position: center 0;
	background-size: 100% auto;
	height: 100%;
	margin: 0 2.66vw;
	outline: none;
	position: relative;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.movie-btn-wrap {
	margin: 60px -40px 0;
}
.movie-btn-wrap .movie-btn {
	display: block;
	position: relative;
	padding-left: 38px;
	max-width: 333px;
	margin: 0 auto;
}
#detail03 .movie-btn-wrap .movie-btn { max-width: 277px; }
.movie-btn-wrap .movie-btn .icon {
	width: 45px;
	height: 45px;
	position: absolute;
	left: 0;
	bottom: 0;
}
.movie-btn-wrap .movie-btn .btn {
	-webkit-animation: swing 1.5s infinite linear;
	animation: swing 1.5s infinite linear;
}
@-webkit-keyframes swing {
	0% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(10px);
	}
	100% {
		transform: rotate(0deg);
	}
}
@keyframes swing {
	0% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(10px);
	}
	100% {
		transform: rotate(0deg);
	}
}
#detail03 .lead {
	margin-bottom: 40px;
}
.feature-wrap {
	margin-top: 24.73vw;
}
.feature-wrap .feature-box {
	background: url("../img/bg_feature_body.svg") no-repeat center center / cover;
	padding: 8.8vw 0 5.1vw;
	position: relative;
}
.feature-wrap .feature-box:after,
.feature-wrap .feature-box:before {
	background: url("../img/bg_feature.svg") no-repeat center 0 / 100% auto;
	content: "";
	display: block;
	width: 100%;
	height: 6.6vw;
	position: absolute;
	left: 0;
}
.feature-wrap .feature-box:before {
	bottom: calc(100% - 1px);
}
.feature-wrap .feature-box:after {
	background-position: center bottom;
	top: calc(100% - 1px);
}
.feature-wrap .feature-box .num {
	border: 0.8vw solid #000;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Lato', sans-serif;
	font-size: 10vw;
	font-weight: bold;
	width: 18.13vw;
	height: 18.13vw;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: -6.6vw auto 0;
	transform: translateY(-50%);
}
.feature-wrap .feature-box .feature-title {
	font-size: 25px;
	font-weight: bold;
	text-align: center;
}
.feature-wrap .feature-box .feature-img {
	margin-top: 36px;
}
.feature-wrap .feature-box .feature-txt {
	font-size: 15px;
	font-weight: bold;
	margin: 40px 6.1vw 0;
}
.feature-wrap .feature-box .note {
	font-size: 12px;
	text-align: right;
	margin: 0 6.1vw;
}
.feature-wrap .dotted {
	margin: 13.8vw 0 22.6vw;
}
#detail03 .movie-btn-wrap {
	margin-top: 22.4vw;
}
.object01 {
	background: url("../img/bg_object.png") no-repeat right 0 / contain;
	border: none;
	width: calc(100% + 80px);
	height: 56.266vw;
	margin: 75px -40px 0;
	position: relative;
}
#detail04 .underline-title + p {
	font-size: 15px;
	font-weight: bold;
	margin-top: 32px;
}
.service-tile-wrap {
	position: relative;
	margin: 44px -40px 72px;
}
.service-tile-wrap .service {
	background-color: #fde9b2;
	font-weight: bold;
	height: 100%;
	margin: 0 2.66vw;
	padding: 32px 0;
	position: relative;
}
.service-tile-wrap .service .icon {
	border: 2px solid #00a4e4;
	border-radius: 50%;
	display: block;
	width: 74px;
	margin: 0 auto;
}
.service-tile-wrap .service h3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.5;
	margin: 16px 0 32px;
	padding: 0 2.13vw;
	height: 3em;
	text-align: center;
}
.service-tile-wrap .service p {
	padding: 0 12vw;
}
.service-tile-wrap .service .note {
	font-size: 12px;
	line-height: 1.2;
	position: absolute;
	width: 100%;
	left: 0;
	top: calc(100% + 8px);
	word-break: break-all;
}
.service-tile-wrap .service .note ol li {
	padding-left: 2.5em;
	text-indent: -2.5em;
}
.service-tile-wrap .slick-dots {
	position: absolute;
	left: 0;
	bottom: -50px;
	width: 100%;
}
.foot-btn-wrap {
	background-color: #fff;
	margin: 0 -40px;
	padding: 40px 20px 40px;
	position: relative;
}
.foot-btn-wrap a {
	display: block;
}
.foot-btn-wrap a + a {
	margin-top: 40px;
}

/* #activity */
#activity {
	background-color: #00a4e4;
	color: #fff;
}
#activity .section {
	padding: 40px 20px;
}
#activity .section:first-child {
	padding: 50px 40px;
}
#activity .activity-lead {
	font-size: 25px;
	font-weight: 900;
	line-height: 1.5;
	text-align: center;
}
#activity .activity-lead + p {
	margin-top: 40px;
	font-size: 15px;
	font-weight: bold;
	line-height: 2;
}
#activity .activity-num {
	background-color: #fff;
	border-radius: 10px;
	color: #00a4e4;
	font-family: 'Lato', sans-serif;
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
	max-width: 160px;
	margin: 0 auto 10px;
	padding: 10px 0;
	text-align: center;
}
#activity .activity-title {
	text-align: center;
	line-height: 1.5;
}
#activity .activity-title .sub {
	font-size: 15px;
	font-weight: bold;
}
#activity .activity-title .main {
	font-size: 23px;
	font-weight: 900;
}
#activity .activity-title .main .mean {
	font-size: 20px;
}
#activity .activity-detail {
	margin-top: 20px;
}
#activity .activity-detail .activity-detail-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	z-index: 1;
}
#activity .activity-detail .activity-detail-img img {
	background-color: #000;
	border: 3px solid #000;
	border-radius: 16px;
	display: block;
}
#activity #activity01 .activity-detail .activity-detail-img img {
	width: calc((100% - 3vw) / 2);
	height: auto;
}
#activity .activity-detail .activity-detail-txt {
	background-color: #fff;
	border-radius: 15px;
	color: #1a1a1a;
	font-size: 15px;
	font-weight: bold;
	margin-top: 10px;
	padding: 35px 20px 30px;
	position: relative;
	z-index: 2;
}
#activity .activity-detail .activity-detail-btn {
	margin-top: 30px;
}
#activity .activity-detail .activity-detail-btn .detail-btn {
	background-color: #f8b500;
	border: 3px solid #000;
	border-radius: 24px;
	color: #1a1a1a;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 900;
	margin: 0 auto;
	padding-right: 20px;
	position: relative;
	height: 45px;
	width: 53.3vw;
	text-align: center;
}
#activity #activity02 .activity-detail .activity-detail-btn .detail-btn,
#activity #activity01 .activity-detail .activity-detail-btn .detail-btn {
	width: 68vw;
}
#activity .activity-detail .activity-detail-btn .detail-btn:after {
	background: url("../img/icon_external_activity.svg") no-repeat center center / contain;
	content: "";
	display: block;
	width: 22px;
	height: 17px;
	position: absolute;
	right: 22px;
	top: 50%;
	margin-top: -8px;
}
#etc01 {
	margin-top: 48px;
}
.etc-section {
	background-color: #e5f6fc;
	border-top: 6px solid #fff;
}
.etc-section .etc-title {
	background-color: #00a4e4;
	color: #fff;
	display: block;
	line-height: 1.5;
	outline: 0;
	position: relative;
	padding: 24px 0;
	text-align: center;
}
.etc-section .etc-title:after {
	background: url("../img/icon_closed.svg") no-repeat center center / contain;
	content: "";
	display: block;
	width: 31px;
	height: 31px;
	position: absolute;
	right: 16px;
	top: 50%;
	margin-top: -15px;
}
.etc-section.opened .etc-title:after {
	background-image: url("../img/icon_opened.svg");
}
.etc-section .etc-title .etc-title-lead {
	font-weight: bold;
}
.etc-section .etc-title .etc-title-name {
	font-size: 25px;
	font-weight: 900;
}
.etc-section .etc-body {
	color: #1a1a1a;
	display: none;
	padding: 40px;
}
.etc-section .etc-body.open {
	display: block;
}
.etc-section .etc-body .etc-body-txt {
	margin-top: 10px;
}
#activity .foot-btn-wrap {
	margin: 0;
}
#movie-modal {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 500;
}
#movie-modal.hide {
	display: none;
}
#movie-modal .mask {
	background-color: #00a4e4;
	width: 100%;
	height: 100%;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
#movie-modal .mask.show {
	opacity: 1;
}
#movie-modal #movie {
	padding-top: 50.625%;
	position: relative;
	width: 90%;
	z-index: 2;
}
#movie-modal #movie .closeBtn {
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 0;
	bottom: calc(100% + 8px);
}
#movie-modal #movie .closeBtn img {
	width: 100%;
}
#movie-modal #movie iframe {
	background-color: #000;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

/* add */
.attention-wrap {
	background-color: #fff;
	padding: 20px 0;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 11;
}
.attention-wrap .attention {
	background-color: #fff;
	color: #e73656;
	display: -webkit-box;
	display:-ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	width: 100%;
}
.attention-wrap .attention .btn-wrap {
	display:-ms-flexbox;
	display: -webkit-box;
	display: flex;
	align-items: center;
	justify-content: center;
}
.attention-wrap .attention p + .btn-wrap {
	margin-top: 16px;
}
.attention-wrap .attention .btn-wrap a + a {
	margin-left: 20px;
}
.attention-wrap .attention .btn-wrap a img {
	max-width: 158px;
}
#local {
	background-color: #f8b500;
	overflow: hidden;
	padding: 0 20px;
	position: relative;
	width: 100%;
}
#local05 p,
#local04 p,
#local03 p,
#local02 p,
#local01 p {
	font-size: 15px;
	font-weight: bold;
	line-height: 1.6;
	margin-top: 24px;
	text-align: center;
}
#local01 p {
	font-size: 16px;
}
#local .catch {
	font-size: 13px;
	margin-top: 10px;
	text-align: center;
}
#local01 .txt {
	margin-top: 32px;
}
#local03,
#local02 {
	padding-top: 120px;
}
#local02 .txt {
	margin-top: 24px;
}
#local02 .movie-btn-wrap {
	margin: 30px 0 0;
	position: relative;
}
#local02 .movie-btn-wrap .movie-btn {
	padding-left: 0;
	max-width: 640px;
}
#local02 .notes {
	background-color: #fde9b2;
	border-radius: 15px;
	font-size: 13px;
	font-weight: bold;
	margin-top: 24px;
	padding: 16px;
	text-align: center;
}
#local03 .lead {
	font-size: 16px;
	line-height: 1.3;
	margin-top: 16px;
}
#local03 .lead .sp-big {
	font-size: 22px;
}
#local03 .pamphlet-download-wrap {
	margin-top: 20px;
	padding: 0 20px;
}
#local03 .pamphlet-download-wrap .pamphlet-img {
	max-width: 295px;
	margin: 0 auto;
}
#local03 .pamphlet-download-wrap .pamphlet-img figcaption {
	font-size: 10px;
}
#local03 .pamphlet-download-wrap .pamphlet-download {
	margin-top: 24px;
	text-align: center;
}
#local03 .pamphlet-download-wrap .pamphlet-download ul + ul {
	margin-top: 60px;
}
#local03 .pamphlet-download-wrap .pamphlet-download ul li + li {
	margin-top: 16px;
}
#local03 .pamphlet-download-wrap .pamphlet-download .pamphlet-ttl {
	font-size: 18px;
}
#local03 .pamphlet-download-wrap .pamphlet-download .dl-btn {
	max-width: 250px;
}
#local04 {
	padding-top: 140px;
}
#local04 .lead {
	font-size: 16px;
	font-weight: bold;
}
#local04 .contact-block-wrap {
	margin: 54px auto 0;
	padding: 6.6vw 0;
	position: relative;
}
#top #local04 .contact-block-wrap {
	padding: 0;
}
#top #local04 .contact-block-wrap {
	margin-top: 48px;
}
#local04 .contact-block-wrap:before {
	background: url(../img/bg_contact.png) no-repeat center top / cover;
	content: "";
	display: block;
	width: 100%;
	height: 6.6vw;
	position: absolute;
	left: 0;
	top: 0;
}
#local04 .contact-block-wrap:after {
	background: url(../img/bg_contact.png) no-repeat center bottom / cover;
	content: "";
	display: block;
	width: 100%;
	height: 6.6vw;
	position: absolute;
	left: 0;
	bottom: 0;
}
#top #local04 .contact-block-wrap:after,
#top #local04 .contact-block-wrap:before {
	display: none;
}
#local04 .contact-block-wrap h3 {
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(0,-50%);
	width: 100%;
}
#top #local04 .contact-block-wrap h3 {
	margin-bottom: 32px;
	position: static;
	transform: translate(0,0);
}
#local04 .contact-block-wrap h3 .ttl {
	display: inline-block;
	font-size: 4.26vw;
	font-weight: bold;
	line-height: 1.2;
	position: relative;
}
#top #local04 .contact-block-wrap h3 .ttl {
	line-height: 1.5;
}
#local04 .contact-block-wrap h3 .ttl:after,
#local04 .contact-block-wrap h3 .ttl:before {
	content: "▼";
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
}
#local04 .contact-block-wrap h3 .ttl:before {
	right: 100%;
}
#top #local04 .contact-block-wrap h3 .ttl:before {
	right: calc(100% + 10px);
}
#local04 .contact-block-wrap h3 .ttl:after {
	left: 100%;
}
#top #local04 .contact-block-wrap h3 .ttl:after {
	left: calc(100% + 10px);
}
#local04 .contact-block-wrap .contact-block {
	background: url(../img/bg_contact.png) no-repeat center center / cover;
	padding: 0 5.333vw;
}
#top #local04 .contact-block-wrap .contact-block {
	background: none;
}
#local04 .contact-block-wrap.ishikawa .contact-block {
	padding: 4vw 5.333vw;
}
#local04 .contact-block-wrap .contact-block .contact {
	margin-top: 0;
}
#local04 .contact-block-wrap.ishikawa .contact-block .contact {
	margin-top: 24px;
}
#local04 .contact-block-wrap .contact-block .department {
	font-size: 14px;
}
#local04 .contact-block-wrap.ishikawa .contact-block .department {
	margin-top: 0;
}
#local04 .contact-block-wrap .contact-block .telNum {
	font-size: 30px;
	line-height: 1.1;
	margin-top: 0;
}
#local04 .contact-block-wrap .contact-block .telNum a {
	color: #1a1a1a;
}
#local04 .contact-block-wrap .contact-block .telBtn {
	margin-top: 10px;
}
#local04 .contact-block-wrap .contact-block .note {
	font-size: 13px;
	font-weight: normal;
	margin-top: 8px;
}
#local05 {
	padding-top: 160px;
}
#local05 .covid19-tile-wrap .covid19-tile-inner {
	margin-top: 32px;
}
#local05 .covid19-tile-wrap .covid19-tile .service {
	background-color: #fde9b2;
	border-radius: 15px;
	padding: 20px;
}
#local05 .covid19-tile-wrap .covid19-tile .service .icon {
	border-radius: 50%;
	display: block;
	width: 74px;
	margin: 0 auto;
}
#local05 .covid19-tile-wrap .covid19-tile .service h3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.5;
	margin: 16px 0 32px;
	padding: 0 2.13vw;
	text-align: center;
}
#local05 .covid19-tile-wrap .service p {
	text-align: left;
}
.covid19-tile-wrap .note {
	font-size: 10px;
	line-height: 1.2;
	margin-top: 10px;
	word-break: break-all;
}
.covid19-tile-wrap .note ol li {
	padding-left: 1em;
	text-indent: -1em;
}
#local .foot-btn-wrap {
	margin: 0 -20px;
	padding: 50px 20px;
}

/*** footer ***/
.footer {
	display: block;
	width: 100%;
}
.footer .foot-movie-link {
	text-align: center;
}
.footer .foot-movie-link a {
	border-bottom: 1px solid #000;
	color: #000;
	font-weight: 900;
}
.footer .spec-wrap {
	color: #333;
	font-size: 10px;
	margin-top: 36px;
	padding: 0 20px;
}
.footer .spec-wrap .spec-list {
	display: flex;
	flex-wrap: wrap;
}
.footer .spec-wrap .spec-list .spec {
	width: 50%;
	margin-top: 20px;
}
.footer .spec-wrap .spec-list .spec ul {
	padding-left: 1em;
}
.footer .spec-wrap .note {
	margin-top: 30px;
	padding-left: 1em;
	text-indent: -1em;
}
.footer .code {
	color: #333;
	font-size: 10px;
	font-weight: 100;
	margin-top: 30px;
	padding: 0 20px;
}
.copyright {
	background-color: #00a4e4;
	color: #fff;
	padding: 5.385% 5.601%;
	font-size: 10px;
	font-weight: 500;
	margin-top: 15px;
	text-align: center;
	line-height: 1;
}
.footer a {
	color: #fff;
}

.hide {
	display: none;
}

@media screen and (max-width: 767px) {
.pcOnly { display: none !important; }

.sp-fade {
	opacity: 0;
	transform: translateY(75px);
	transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sp-fade.risk-nav-container {
	opacity: 1;
	transform: translateY(0);
}
.sp-fade .activity-detail-txt {
	opacity: 0;
	transform: translateY(75px);
	transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;
}
.sp-fade.show .activity-detail-txt,
.sp-fade.show {
	opacity: 1;
	transform: translateY(0);
}
.sp-fade.risk-nav-container .nav {
	transform: scale(0);
	-webkit-transition: all .3s cubic-bezier(0.410, 0.060, 0.385, 1);
	-webkit-transition: all .3s cubic-bezier(0.410, 0.060, 0.385, 1.440);
	-moz-transition: all .3s cubic-bezier(0.410, 0.060, 0.385, 1.440);
	-o-transition: all .3s cubic-bezier(0.410, 0.060, 0.385, 1.440);
	transition: all .3s cubic-bezier(0.410, 0.060, 0.385, 1.440);
}
.sp-fade.risk-nav-container .nav.show {
	transform: scale(1);
}
#top #local04 {
	margin: 0 -20px;
	padding-top: 40px;
}
#top #local04 .lead {
	font-size: 18px;
	font-weight: 900;
}


}
@media screen and (min-width: 768px) {
.spOnly { display: none !important; }

.detail-btn:hover,
#movie-modal #movie .closeBtn:hover,
.foot-btn-wrap a:hover,
.movie-btn:hover {
	opacity: .7;
}
.footer .foot-movie-link a:hover {
	border-bottom-color: #fff;
}

.pc-fade {
	opacity: 0;
	transform: translateY(75px);
	transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.pc-fade.show {
	opacity: 1;
	transform: translateY(0);
}


/*** header ***/
.header {
	padding: 0;
}
.header .header-inner {
	padding: 15px 0;
	width: 940px;
	margin: 0 auto;
	position: relative;
}
.header-logo {
	height: 50px;
}
/** menu **/
.menu-btn {
	border-right: 1px solid #fff;
	width: 80px;
	height: 80px;
}
.menu-btn span {
	width: 40px;
	height: 4px;
}
.menu-btn span:nth-child(2) {
	-webkit-transform: translateY(-18px);
	transform: translateY(-18px);
}
.menu-btn span:nth-child(3) {
	-webkit-transform: translateY(18px);
	transform: translateY(18px);
}
.menu-block {
	padding-top: 81px;
}
.menu-list {
	font-size: 16px;
	max-width: 940px;
}

/*** contents ***/
#wrap {
	min-width: 960px;
}
#mainvisual {
	background-image: url("../img/img_mainvisual_pc.png");
	padding-top: 140px;
	height: 680px;
}
#mainvisual.local {
	height: 590px;
}
#mainvisual .inner {
	max-width: 940px;
	margin: 0 auto;
}
#mainvisual .title h1 {
	padding: 0 15px 10px 10px;
	position: relative;
}
#mainvisual .title.show h1:after {
	width: 50vw;
}
#mainvisual .tab-wrap ul {
	padding: 0 79px;
	max-width: 940px;
	margin: 0 auto;
}
#mainvisual .tab-wrap ul li + li {
	margin-left: 16px;
}
#mainvisual .tab-wrap ul li a {
	padding: 12px 0 30px;
}

/** main-section **/
.section {
	padding-top: 60px;
	max-width: 940px;
	margin: 0 auto;
}
.section:last-of-type {
	padding-bottom: 60px;
}
.arrow {
	height: 30px;
}
.dotted {
	display: none;
}

/* #detail */
#detail {
	padding: 0;
}
#detail .lead span:after,
#detail .lead span:before {
	width: 15px;
	height: 12px;
}
.underline-title {
	font-size: 30px;
}
#detail01 .underline-title {
	font-size: 34px;
}
#detail01 .txt-img-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	margin-top: 40px;
	padding: 0 100px;
}
#detail01 .txt-img-wrap .txt {
	flex: 1;
}
#detail01 .txt-img-wrap .txt p {
	font-size: 18px;
	margin-top: 0;
	text-align: left;
}
#detail01 .txt-img-wrap .txt p + p {
	margin-top: 32px;
}
#detail01 .img {
	margin: 0 0 0 20px;
	width: 374px;
}
#detail02 .lead {
	margin: 0 auto 30px;
}
.risk-nav-container {
	display: none;
}
.risk-detail-container {
	margin: 60px 0 0;
}
.risk-detail-container .risk-detail {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.risk-detail-container .risk-detail .risk-wrap {
	width: calc((100% - 40px) / 3);
}
.risk-detail-container .risk-detail .risk-wrap:nth-of-type(n+4) {
	margin-top: 20px;
}
.risk-detail-container .risk-detail .risk {
	border-radius: 15px;
	margin: 0;
	overflow: hidden;
	width: 100%;
}
.risk-detail-container .risk .risk-txt,
.risk-detail-container .risk .risk-lead {
	letter-spacing: -0.02em;
}
.movie-btn-wrap .movie-btn {
	padding-left: 70px;
	max-width: 568px;
}
#detail03 .movie-btn-wrap .movie-btn { max-width: 473px; }
.movie-btn-wrap .movie-btn .icon {
	width: 76px;
	height: 76px;
}
#detail03 .lead {
	width: 460px;
	margin: 0 auto 40px;
}
.feature-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	margin-top: 110px;
}
.feature-wrap .feature-box {
	background-image: url("../img/bg_feature_body.png");
	padding: 30px 0;
	width: calc((100% - 40px) / 3);
}
.feature-wrap .feature-box:after,
.feature-wrap .feature-box:before {
	background-image: url("../img/bg_feature.png");
	height: 20px;
}
.feature-wrap .feature-box .num {
	border-width: 4px;
	font-size: 30px;
	width: 55px;
	height: 55px;
	margin-top: -20px;
}
.feature-wrap .feature-box .feature-title {
	font-size: 22px;
}
.feature-wrap .feature-box .feature-img {
	margin-top: 16px;
	display: flex;
	align-items: center;
}
.feature-wrap .feature-box .feature-img.feature03 img {
	margin-bottom: 32px;
}
.feature-wrap .feature-box .feature-txt {
	font-size: 13px;
	margin: 20px 39px 0;
}
.feature-wrap .feature-box .note {
	font-size: 10px;
	text-align: right;
	margin: 0 39px;
}
#detail03 .movie-btn-wrap {
	margin-top: 80px;
}
.object01 {
	background: url("../img/bg_object_pc.png") no-repeat right 0 / contain;
	width: 901px;
	height: 537px;
	margin: 60px auto 0;
}
#detail04 .underline-title + p {
	font-size: 18px;
	margin-top: 50px;
	text-align: center;
}
.service-tile-wrap {
	margin: 60px 0 40px;
}
.service-tile-wrap .service-tile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
}
.service-tile-wrap .service-tile .service-tile-inner {
	width: 220px;
}
.service-tile-wrap .service {
	border-radius: 15px;
	margin: 0;
	width: 100%;
	padding: 16px 0 32px;
}
.service-tile-wrap .service .icon {
	width: 56px;
}
.service-tile-wrap .service h3 {
	font-size: 14px;
	margin: 16px 0 20px;
	padding: 0;
}
.service-tile-wrap .service p {
	font-size: 12px;
	padding: 0 30px;
}
.service-tile-wrap .service .note {
	font-size: 9px;
}
.foot-btn-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 60px 0 50px;
	text-align: center;
}
.foot-btn-wrap a + a {
	margin: 0 0 0 20px;
}
.foot-btn-wrap img {
	width: 460px;
}

/* #activity */
#activity .section:first-child {
	padding: 80px 0 50px;
}
#activity .activity-lead {
	font-size: 34px;
}
#activity .activity-lead + p {
	font-size: 18px;
	text-align: center;
}
#activity .activity-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 60px 0 50px;
	max-width: 930px;
	margin: 0 auto;
}
#activity .activity-wrap .section {
	padding: 0;
	width: 296px;
	margin: 0 10px;
}
#activity .activity-wrap .section:nth-of-type(3) {
	margin-left: 0;
}
#activity .activity-wrap .section:nth-of-type(n+3) {
	margin-top: 80px;
}
#activity .activity-num {
	font-size: 18px;
}
#activity .activity-title {
	color: #fff;
}
#activity .activity-title .sub {
	font-size: 13px;
}
#activity .activity-title .main {
	font-size: 22px;
}
#activity .activity-title .main .mean {
	font-size: 18px;
}
#activity #activity01 .activity-detail .activity-detail-img img {
	width: calc((100% - 8px) / 2);
	height: auto;
}
#activity .activity-detail .activity-detail-txt {
	font-size: 13px;
	padding: 32px 20px 35px;
}
#activity .activity-detail .activity-detail-btn {
	margin-top: 25px;
}
#activity .activity-detail .activity-detail-btn .detail-btn {
	font-size: 16px;
	height: 40px;
	width: 178px;
}
#activity #activity02 .activity-detail .activity-detail-btn .detail-btn,
#activity #activity01 .activity-detail .activity-detail-btn .detail-btn {
	width: 240px;
}
#activity .activity-detail .activity-detail-btn .detail-btn:after {
	right: 20px;
}
.etc-section-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	padding: 70px 0 100px;
	max-width: 940px;
	margin: 0 auto;
}
#etc01 {
	margin-top: 0;
}
.etc-section {
	border: 4px solid #fff;
	border-radius: 15px;
	overflow: hidden;
	width: calc((100% - 60px) / 4);
}
.etc-section + .etc-section {
	margin-left: 20px;
}
.etc-section .etc-title {
	padding: 20px 0;
	pointer-events: none;
}
.etc-section .etc-title:after {
	display: none;
}
.etc-section .etc-title .etc-title-lead {
	font-size: 11px;
}
.etc-section .etc-title .etc-title-name {
	font-size: 18px;
}
.etc-section .etc-body {
	display: block;
	padding: 4px 0 24px;
}
.etc-section .etc-body .etc-body-txt {
	font-size: 12px;
	margin-top: 20px;
	padding: 0 20px;
}
#movie-modal #movie {
	padding-top: 45%;
	width: 80%;
}

/* add */
.attention-wrap {
	padding: 10px 0;
}
.attention-wrap .attention {
	font-size: 18px;
}
.attention-wrap .attention p + .btn-wrap {
	margin-top: 10px;
}
.attention-wrap .attention .btn-wrap a + a {
	margin-left: 30px;
}
.attention-wrap .attention .btn-wrap a img {
	max-width: 234px;
}
#local01 p {
	font-size: 21px;
}
#local05 p,
#local04 p,
#local03 p,
#local02 p {
	font-size: 18px;
}
#local03,
#local02 {
	padding-top: 160px;
}
#local02 .movie-btn-wrap {
	margin-top: 32px;
}
#local02 .movie-btn-wrap .movie-btn {
	padding-left: 0;
	max-width: 640px;
}
#local02 .notes {
	font-size: 15px;
	max-width: 640px;
	margin: 20px auto 0;
}
#local03 .lead .sp-big,
#local03 .lead {
	font-size:24px;
}
#local03 .pamphlet-download-wrap {
	display:-ms-flexbox;
	display: -webkit-box;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-top: 50px;
}
#local03 .pamphlet-download-wrap .pamphlet-img {
	max-width: 300px;
	margin: 0;
}
#local03 .pamphlet-download-wrap .pamphlet-download {
	margin: 0 0 0 32px;
	text-align: left;
}
#local03 .pamphlet-download-wrap .pamphlet-download.aichi {
	width: 550px;
}
#local03 .pamphlet-download-wrap .pamphlet-download.aichi ul {
	display:-ms-flexbox;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}
#local03 .pamphlet-download-wrap .pamphlet-download ul + ul {
	margin-top: 50px;
}
#local03 .pamphlet-download-wrap .pamphlet-download.aichi ul li {
	width: 55%;
}
#local03 .pamphlet-download-wrap .pamphlet-download.aichi ul li:nth-of-type(2n) {
	width: 45%;
}
#local03 .pamphlet-download-wrap .pamphlet-download ul li + li {
	margin-top: 20px;
}
#local03 .pamphlet-download-wrap .pamphlet-download.aichi ul li + li {
	margin-top: 0;
}
#local03 .pamphlet-download-wrap .pamphlet-download.aichi ul li:nth-of-type(n+3) {
	margin-top: 20px;
}
#local03 .pamphlet-download-wrap .pamphlet-download .pamphlet-ttl {
	margin-top: 0;
	text-align: left;
}
#local03 .pamphlet-download-wrap .pamphlet-download a:hover {
	opacity: .7;
}
#local03 .pamphlet-download-wrap .pamphlet-download .dl-btn {
	max-width: 235px;
}
#local04 .balloon-wrap {
	display:-ms-flexbox;
	display: -webkit-box;
	display: flex;
	justify-content: center;
	margin: 20px 0 48px;
}
#local04 .balloon-wrap .balloon {
	background-color: #fde9b2;
	border-radius: 15px;
	display:-ms-flexbox;
	display: -webkit-box;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.6;
	padding: 25px;
	position: relative;
	text-align: center;
	width: 300px;
}
#local04 .balloon-wrap .balloon +  .balloon {
	margin-left: 20px;
}
#local04 .balloon-wrap .balloon:after {
	content: "";
	width: 35px;
	height: 31px;
	position: absolute;
	top: calc(100% - 10px);
}
#local04 .balloon-wrap .balloon.left-balloon:after {
	background: url(../img/bg_balloon_side.png) no-repeat center center / contain;
	right: 50px;
}
#local04 .balloon-wrap .balloon.center-balloon:after {
	background: url(../img/bg_balloon_center.png) no-repeat center center / contain;
	width: 30px;
	margin-left: -15px;
	left: 50%;
}
#local04 .balloon-wrap .balloon.right-balloon:after {
	background: url(../img/bg_balloon_side.png) no-repeat center center / contain;
	left: 50px;
	transform: scale(-1, 1);
}
#local04 .lead {
	font-size: 24px;
}
#local04 .contact-block-wrap {
	background: url(../img/bg_contact_pc.png) no-repeat center center / contain;
	margin: 70px auto 0;
	max-width: 930px;
	padding: 50px 0 30px;
}
#top #local04 .contact-block-wrap {
	background: none;
	margin-top: 50px;
	padding: 0;
}
#local04 .contact-block-wrap.ishikawa {
	padding: 40px 0;
}
#local04 .contact-block-wrap:after,
#local04 .contact-block-wrap:before {
	display: none;
}
#local04 .contact-block-wrap h3 {
	transform: translate(0,0);
}
#local04 .contact-block-wrap.ishikawa h3 {
	line-height: 1;
	transform: translate(0,-50%);
}
#local04 .contact-block-wrap h3 .ttl {
	font-size: 21px;
}
#local04 .contact-block-wrap h3 .ttl:after,
#local04 .contact-block-wrap h3 .ttl:before {
	font-size: 12px;
}
#local04 .contact-block-wrap h3 .ttl:before {
	right: calc(100% + 10px);
}
#local04 .contact-block-wrap h3 .ttl:after {
	left: calc(100% + 10px);
}
#local04 .contact-block-wrap .contact-block {
	background: none;
	display:-ms-flexbox;
	display: -webkit-box;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}
#local04 .contact-block-wrap.ishikawa .contact-block {
	display: block;
	padding: 0;
	align-items: center;
}
#local04 .contact-block-wrap .contact-block .contact {
	width: 300px;
	margin-right: 40px;
}
#top #local04 .contact-block-wrap .contact-block .contact {
	width: 380px;
	margin: 0 auto;
}
#local04 .contact-block-wrap.ishikawa .contact-block .contact {
	width: 400px;
	margin: 16px auto 0;
}
#local04 .contact-block-wrap .contact-block .contact a:hover {
	opacity: .7;
}
#local04 .contact-block-wrap .contact-block .department {
	font-size: 17px;
	margin-top: 0;
	text-align: left;
}
#local04 .contact-block-wrap.ishikawa .contact-block .department {
	text-align: center;
}
#local04 .contact-block-wrap .contact-block .telNum {
	font-size: 50px;
	text-align: left;
}
#local04 .contact-block-wrap .contact-block .telBtn {
	display: none;
}
#local04 .contact-block-wrap .contact-block .note {
	text-align: left;
}
#local05 {
	padding-top: 170px;
}
#local05 .covid19-tile-wrap {
	margin: 50px auto 0;
	padding: 0 5px;
}
#local05 .covid19-tile {
	display:-ms-flexbox;
	display: -webkit-box;
	display: flex;
	justify-content: space-between;
}
#local05 .covid19-tile-wrap .covid19-tile-inner {
	margin-top: 0;
	width: calc((100% - 20px) / 2);
}
#local05 .covid19-tile-wrap .covid19-tile .service {
	display:-ms-flexbox;
	display: -webkit-box;
	display: flex;
	align-items: center;
	padding: 24px 30px;
}
#local05 .covid19-tile-wrap .covid19-tile .service .icon {
	width: 55px;
}
#local05 .covid19-tile-wrap .covid19-tile .service .service-txt {
	flex: 1;
	margin-left: 20px;
}
#local05 .covid19-tile-wrap .covid19-tile .service h3 {
	display: block;
	font-size: 14px;
	margin: 0 0 10px;
	padding: 0;
	text-align: left;
}
#local05 .covid19-tile-wrap .service p {
	font-size: 12px;
	margin: 0;
}

/*** footer ***/
.footer .foot-movie-link a {
	font-size: 20px;
}
.footer .spec-wrap {
	margin: 60px auto 0;
	max-width: 940px;
	padding: 0;
}
.footer .spec-wrap .spec-list .spec {
	width: auto;
}
.footer .spec-wrap .spec-list .spec + .spec {
	margin-left: 45px;
}
.footer .spec-wrap .note {
	margin-top: 20px;
}
.footer .code {
	max-width: 940px;
	margin: 40px auto 0;
	padding: 0;
}
.copyright {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	height: 40px;
	margin-top: 20px;
}

}

