﻿@charset "utf-8";

/*
  File Name   : content.css
  Description : 各コンテンツ用CSS
*/


/* PC Layout ******************************************************************************************* */

/* Common
============================================================ */


/* Home
============================================================ */
/*add 20200803*/
body{
	background-color: #D7000F;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-style: normal;
	margin: 0;
}

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 99; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modalArea01 {
  display: none;
  position: fixed;
  z-index: 99; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modalArea02 {
  display: none;
  position: fixed;
  z-index: 99; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.6);
}
.modalBg01 {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.6);
}
.modalBg02 {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.6);
}

.modalWrapper {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
    padding: 2rem 5rem 4rem;
    background-color: #fff;
    font-weight: 600;
    line-height: 2;
	height : 70%; /*お好みの高さで固定*/
	overflow : auto; /*状況に応じて縦スクロールバーが出現*/
}
.modalWrapper01 {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 55%;
    padding: 2rem 5rem 6rem;
    background-color: #fff;
    font-weight: 600;
    line-height: 2;
	height : 65%; /*お好みの高さで固定*/
	overflow : auto; /*状況に応じて縦スクロールバーが出現*/
}

.modalWrapper01 p {
	width: 90%;
    margin: 0 auto;
}
.modalWrapper02 {
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 70%;
    padding: 2rem 5rem 6rem;
    background-color: #fff;
    font-weight: 600;
    line-height: 2;
	height : 70%; /*お好みの高さで固定*/
	overflow : auto; /*状況に応じて縦スクロールバーが出現*/
}

.modalWrapper02 p {
	width: 90%;
    margin: 0 auto;
}
.closeModal {
    cursor: pointer;
	padding: 1rem 2.5rem;
    background-color: #D7000F;
    border: 1px solid #D7000F;
    border-radius: 2px;
    color: #fff;
	width: 90px;
    margin: 5rem auto 0;
}

.modalContents h1 {
	font-size: 30px;
	border-bottom: 2px solid;
	color: #D7000F;
	text-align: center;
    width: 170px;
    margin: 1rem auto 4rem;
}

.modalContents p span {
	font-size: 28px;
	position: absolute;
    right: 5.5rem;
}

.modalContents01 h1 {
	font-size: 30px;
	border-bottom: 2px solid;
	color: #D7000F;
	text-align: center;
    width: 300px;
    margin: 1rem auto 4rem;
}

.modalContents01 p span {
	font-size: 23px;
}
.modalContents02 h1 {
	font-size: 30px;
	border-bottom: 2px solid;
	color: #D7000F;
	text-align: center;
    width: 300px;
    margin: 1rem auto 4rem;
}

.modalContents02 p span {
	font-size: 23px;
}

/* 以下ボタンスタイル */
button {
	padding: 1rem 2.5rem;
    background-color: #D7000F;
    border: 1px solid #D7000F;
    color: #fff;
    cursor: pointer;
}
button img {
	width: 180px;
}

#openModal {
	position: relative;
	left: 14%;
	bottom: 150px;
	transform:translate(-50%,-50%);
}
#openModal01 {
	position: relative;
	bottom: 0;
}
#openModal02 {
	position: relative;
	bottom: 0;
	padding: 0;
    border-bottom: 1px solid;
	margin: 1rem 0;
}

.openModal01 img {
	width: 250px;
}

.openModal02 img {
	width: 150px;
}

/*============================
mobile style
============================*/
@media (min-width: 751px) {
a[href*="tel:"] {
pointer-events: none;
cursor: default;
text-decoration: none;
}
}

@media screen and (max-width:768px) {
/*hamburger menu style*/
	#nav_toggle {
		display: block;
		width: 30px;
		height: 30px;
		position: relative;
		top: 30px;
		right: 30px;
		z-index: 100;
	}
	#nav_toggle div {
		position: relative;
	}
/*hamburger menu close style*/
	#nav_toggle span {
		display: block;
		height: 2px;
		background: #fff;
		position:absolute;
		width: 100%;
		left: 0;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;
	}
	#nav_toggle span:nth-child(1) {
		top:0px;
	}
	#nav_toggle span:nth-child(2) {
		top:10px;
	}
	#nav_toggle span:nth-child(3) {
		top:20px;
	}
/*hamburger menu open style*/
	.open #nav_toggle span:nth-child(1) {
		top: 10px;
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.open #nav_toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav_toggle span:nth-child(3) {
		top: 10px;
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		transform: rotate(-135deg);
	}
/*nav style*/
	#header nav {
		display: none;
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		z-index: 999;
	}
	#header nav ul {
		display: block;
		width: 80%;
		margin: 0 auto;
	}
	#header nav ul li {
		text-align: center;
		border-right: none;
	}
	#header nav ul li:last-child {
		border: none;
	}
/*nav link style*/
	#header nav ul li a {
		display: block;
	}
	
	#header nav ul .btn_box {
		height: 80px;
		padding-left: 0;
		margin: auto;
		width: 100%;
		display: block;
	}
	
	#header nav ul .btn_box a {
		color: #fff;
		padding: 0;
		padding-top: 15px;
	}
}

@media screen and (max-width: 480px) {
	#header nav ul {
		width: 100%;
		margin-top: 15px;
		padding: 0;
		background-color: #D7000F;
	}
}
/*ヘッダー終わり*/


.header {
	padding: 5px 24px;
	background-color: #D7000F;
	height: 70px;
	position: fixed;
	width: 100%;
	z-index: 98;
}

.header-title {
	font-size: 27px;
	padding-left: 3rem;
	color: #fff;
}

.header-title span {
	font-size: 13px;
	margin-left: 1rem;
}

.header_inner {
	display: flex;
	margin: 0 auto;
	justify-content: space-between;
	
}

.header-list {
	display: flex;
	font-size: 15px;
	font-weight: bold;
	list-style: none;
	margin: 2rem 0;
    padding-right: 4rem;
}

.header-item {
	padding: 0 20px;
}

.main-kv {
	width: 100%;
	margin: 0 auto;
	padding-top: 80px;
}

.report {
	padding: 4rem 0 5rem;
}

.rep_title {
	font-size: 48px;
	border-bottom: 2px solid;
	color: #fff;
	text-align: center;
    width: 50%;
    margin: 1rem auto 3rem;
}

.sns_box {
	display: table;
	margin: 0 auto;
	justify-content: space-between;
}

.instagram a img {
	width: 300px;
    margin-right: 15px;
    margin-left: auto;
}

.sns_btn {
	background: #fff;
    padding: 1rem;
    display: block;
    text-align: right;
    margin: 0.5rem 0 2rem;
}

.sns_btn img {
	width: 200px;
    margin-right: 55px;
    margin-left: auto;
}

.f-title {
	width: 50%;
    margin: 0 auto 1rem;
}

.line_btn {
	background: #fff;
	display: block;
	text-align: center;
	padding: 0.5rem 0 0.3rem;
	margin-top: 2rem;
}

.line_btn img {
	width: 60%;
	margin-right: 130px;
    margin-left: auto;
}

.profile{
	background-color: #fff;
}

.pro-title {
	font-size: 48px;
	border-bottom: 2px solid;
	text-align: center;
    width: 56%;
    margin: 1rem auto 2rem;
	color: #D7000F;
    clear: both;
}

.pro-inner {
	padding: 4rem 0;
}

.pro-inner-2 {
	padding: 4rem 0 11rem 0;
}

.pro-title span {
	font-size: 16px;
    display: block;
    margin-left: -21rem;
}

.pro-box {
    width: 50%;
    display: inline-block;
    margin: 0;
}

.profile-img {
	float: left;
    width: 85%;
	font-size: 14px;
	font-weight: bold;
}

.profile-text {
	float: right;
    font-weight: 600;
    width: 50%;
    line-height: 2;
	font-size: 21px;
}

.profile-text span {
	color: #D7000F;
}

.report-box {
	display: flex;
	flex-wrap: wrap;
	/*justify-content: space-between;*/
	height: 250px;
}

.rep-btn {
	background-color: #D7000F;
	padding: 0.5rem 3rem 0.3rem;
	margin-right: 5.3rem;
}

.rep-btn img {
	width: 180px;
}

.movie {
	background-color: #FCEDEE;
	padding: 5rem 0;
}

.movie-title {
	font-size: 48px;
	border-bottom: 2px solid;
	text-align: center;
    width: 35%;
    margin: 0 auto;
    color: #D7000F;
}

.movie-box {
	width: 55%;
    aspect-ratio: 16 / 9;
    margin: 5rem auto 0;
}

.movie-box iframe {
    width: 100%;
    height: 100%;
}

.youtube_btn {
	display: block;
	background-color: #D7000F;
    padding: 1rem 3rem;
    width: 350px;
    margin: 5rem auto 0;
}

.supporter {
	background-color: #fff;
	padding: 5rem 0;
}

.sup-title {
	font-size: 48px;
	border-bottom: 2px solid;
	text-align: center;
    width: 70%;
    margin: 0 auto;
    color: #D7000F;
}

.sup-text {
	font-size: 22px;
    font-weight: 600;
    line-height: 1.7;
    padding: 2rem 0;
}

.sup-text span{
	color: #D7000F;
}

.sup-box {
    display: flex;
	justify-content: space-evenly;
}

.sup-btn01 {
	background-color: #D7000F;
    padding: 1rem 3rem;
    width: 220px;
}

#footer{
	margin: 5rem 0;
    padding: 0;
}

.footer-box {
	display: flex;
	justify-content: space-between;
}
.footer-box01 {
	display: flex;
	justify-content: space-between;
}

.f-inner {
	
}

.footer-title {
	font-size: 38px;
	color: #fff;
	font-weight: bold;
	margin: 0;
}

.footer-title span {
	font-size: 28px;
	margin-left: 1rem;
}

.f-inner h1 {
	font-size: 60px;
	color: #fff;
	margin: 0;
}

.f-inner .p01 {
	font-size: 19px;
	color: #fff;
	margin: -1rem 0 0; 
}

.i_box {
	font-size: 20px;
    color: #fff;
    border: 1px solid;
    padding: 0.2rem 1rem;
    text-align: center;
	margin: 0
}

.off_text {
	color: #fff;
	font-size: 17px;
	margin: 0.5rem 0;
}

.f-inner a img {
	width: 200px;
}

.footer-logo {
	width: 300px;
	margin: 0 auto;
	padding: 5rem 0;
}

.footer-text {
	font-family: "noto-sans";
	font-weight: 400;
	font-size: 12px;
	width: 1000px;
	margin: 0 auto 3rem;
}

.copyright {
	font-size: 14px;
	color: #fff;
	margin: 1.5rem 0 0;
}

/***追従するトップへ戻るボタン***/
.page-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    color: #737373;
    padding: 10px;
	cursor: pointer;
  transition: .3s;
  
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}


#footer .page-top img {
	width: 65px;
}
/***トップへ戻るボタンここまで***/


/* SP Layout ******************************************************************************************* */

/* Index
============================================================ */
@media screen and (max-width: 768px) {
	
	
}

@media screen and (max-width: 480px) {
	/* 以下ボタンスタイル */
	button {
		padding: 0.8rem 2rem;
	}
	button img {
		width: 140px;
	}

	#openModal {
		left: 30%;
		bottom: 90px;
	}
	#openModal01 {
		position: relative;
		bottom: 0;
	}
	#openModal02 {
		margin: 1rem auto;
		width: 150px;
		display: block;
	}

	.openModal01 img {
		width: 220px;
	}

	.openModal02 img {
		width: 150px;
	}
	
	.header {
		padding: 0 0 0.8rem;
	}

	.header-title {
		font-size: 20px;
		padding-left: 2rem;
		margin: 0.7rem 0;
	}

	.header-title span {
		font-size: 13px;
		margin-left: 0;
	}
	
	.header-item {
		padding: 1rem;
	}

	.main-kv {
		padding-top: 80px;
	}
	
	.report {
		padding: 0 0 5rem;
	}

	.rep_title {
		font-size: 28px;
		width: 50%;
		border-bottom: 4px solid;
		line-height: 40px;
	}
	
	.fb-page,
.fb-page span,
.facebook_wrap iframe{
  width: 100% !important;
  height: 500px !important;
}

	.facebook_wrap{
		margin: 0 auto;
		width: 90%;
	}
	
	.facebook iframe {
		width: 100%!important;
	}

	.instagram {
		width: 90%;
		margin: 0 auto;
	}
	
	.instagram a img {
		width: 240px;
		margin: 0 0 0 auto;
	}

	.sns_btn img {
		width: 200px;
		margin: 0 0 0 auto;
	}

	.line_btn {
		width: 72%;
		margin: 0 auto;
		padding: 0.5rem 2rem;
	}

	.line_btn img {
		width: 100%;
	}

	.pro-title {
		font-size: 26px;
		width: 50%;
		margin: 1rem auto 2rem;
		border-bottom: 4px solid;
		line-height: 40px;
	}

	.pro-inner {
		padding: 3rem 0 0;
	}
	
	.pro-inner p {
		width: 85%;
		font-size: 15px;
		margin: 0 auto 1rem;
	}

	.pro-title span {
		font-size: 11px;
		display: block;
		margin-left: 0;
		height: 25px;
	}

	.pro-box {
		font-size: 10px;
		width: 100%;
		margin: 0 auto;
		display: block;
	}

	.profile-img {
		float: initial;
		width: 100%;
		margin: 2rem 0;
	}

	.profile-text {
		float: initial;
		width: 90%;
		font-size: 16px;
		margin: 0 auto 2.5rem;
	}

	.report-box {
		justify-content: center;
		padding-bottom: 4rem;
		height: fit-content;
	}
	
	.report-box a {
		margin-bottom: 2rem;
	}

	.rep-btn {
		width: 60%!important;
		padding: 0.5rem 3rem 0.3rem;
		margin-right: 0;
	}

	.movie-title {
		font-size: 26px;
		width: 50%;
		border-bottom: 4px solid;
		line-height: 40px;
	}

	.movie-box {
		width: 85%;
		margin: 3rem auto;
	}

	.youtube_btn {
		width: 80%;
		padding: 1rem;
		text-align: center;
	}
	
	.youtube_btn img {
		width: 90%;
	}

	.sup-title {
		font-size: 26px;
		width: 70%;
		border-bottom: 4px solid;
		line-height: 40px;
	}

	.sup-text {
		width: 90%;
		margin: 0 auto;
		font-size: 16px;
		line-height: 2;
	}

	.sup-box {
		display: block;
		width: 80%;
		margin: 0 auto;
	}
	
	.sup-btn {
		margin: 0 auto;
		display: grid;
	}
	
	.sup-btn01 {
		width: 67%;
		text-align: center;
	}
	
	.sup-btn01 img {
		width: 80%;
	}

	#footer{
		margin: 3rem 0 1rem;
	}

	.footer-box {
		display: block;
		text-align: center;
	}
	
	.footer-box01 {
		display: block;
		width: 85%;
	}

	.f-inner h1 {
		font-size: 50px;
	}

	.f-inner .p01 {
		font-size: 15px;
	}

	.i_box {
		font-size: 18px;
		margin: 1rem auto;
		width: 75%;
	}

	.copyright {
		font-size: 12px;
	}
	
	.modalWrapper {
		width: 75%;
		padding: 2rem 2rem 4rem;
		line-height: 1.8;
		font-size: 15px;
		height : 60%; /*お好みの高さで固定*/
		overflow : auto; /*状況に応じて縦スクロールバーが出現*/
	}
	.modalWrapper01 {
		width: 75%;
		padding: 2rem 2rem 4rem;
		line-height: 2;
		height : 60%; /*お好みの高さで固定*/
		overflow : auto; /*状況に応じて縦スクロールバーが出現*/
	}

	.modalWrapper01 p {
		width: 90%;
		margin: 0 auto;
	}
	
	.modalWrapper02 {
		width: 75%;
		padding: 2rem 2rem 4rem;
		height : 60%; /*お好みの高さで固定*/
		overflow : auto; /*状況に応じて縦スクロールバーが出現*/
	}
	
	.modalContents p span {
		right: 2rem;
	}

.modalWrapper02 p {
	width: 90%;
    margin: 0 auto;
}

/***追従するトップへ戻るボタン***/
.page-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    color: #737373;
    padding: 10px;
	cursor: pointer;
  transition: .3s;
  
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}


	#footer .page-top img {
		width: 65px;
	}
}

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

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

@media screen and (max-width: 325px) {
	
}
	
/*** hypertext ***/
img {
    image-rendering: -webkit-optimize-contrast;
}
a:link {
  color: #fff;
  text-decoration: none;
}

a:hover,
a:active {
  text-decoration: none;
}

a:visited {
  color: #fff;
}

a img {
  border: none;
}

a:hover,
a:hover img,
input:hover {
  filter: alpha(opacity=70);
  -moz-opacity: .7;
  opacity: .7;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

figure {
  margin: 0;
}


/*** pc-only / sp-only ***/

@media screen and (min-width: 750px) {
	.sp-only {
		display: none !important;
	}
	.pc-only {
		display: block !important;
	}
}

@media screen and (max-width: 749px) {
	.pc-only {
		display: none !important;
	}
	.sp-only {
		display: block !important;
	}
}


/* Common
----------------------------------------------------------- */
.inner1400 {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0;
}
.inner1000 {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1000px;
}
.inner900 {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 940px;
  padding: 0 20px;
}

.flex {
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
}
img{
	width: 100%;
	height: auto;
}