@charset "UTF-8";
/* CSS Document */
/*============================
 フォント
英語
font-family: futura-pt,sans-serif;
font-weight: 600;
font-style: italic;

日本語
font-family: noto-sans-cjk-jp, sans-serif;
font-weight: 500;
font-style: normal;

font-family: noto-sans-cjk-jp,sans-serif;
font-weight: 700;
font-style: normal;

============================*/

/*============================
 共通
============================*/
body{
	padding-top: 80px;
}

:root {
	--black-color-primary: #1C1C1C;
	--white-color-primary: #FFFFFF;
	--red-color-primary: #8A0000;
	--gray-color-primary: #F4F4F4;
	--font-en: futura-pt,sans-serif;
	--sm-inner-width: 84%;
	--md-inner-width: 728px;
	--lg-inner-width: 960px;
	--xl-inner-width: 1280px;
}

.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}

.container{
	padding: 60px 0;
}
@media (min-width: 1280px){
	.container{
		padding: 120px 0;
	}
}

.inner{
	width: var( --sm-inner-width );
	margin: 0 auto;
}
@media (min-width: 1280px) {
	.inner{
		width: var( --xl-inner-width );
	}
}

.main_heading{
	text-align: center;
}

.main_heading_item{
	display: inline-block;
	position: relative;
	text-align: center;
}

.main_heading_item::before,
.main_heading_item::after{
	content: '';
	position: absolute;
    top: -2px;
	width: 4px;
	height: 44px;
	border-radius: 2px;
	background: var( --red-color-primary );
}
@media (min-width: 1280px){
	.main_heading_item::before,
	.main_heading_item::after{
		content: '';
	    top: -6px;
		width: 8px;
		height: 60px;
		border-radius: 4px;
	}
}

.main_heading_item::before{
	left: -26px;
}
@media (min-width: 1280px){
	.main_heading_item::before{
		left: -40px;
	}
}

.main_heading_item::after{
	right: -26px;
}
@media (min-width: 1280px){
	.main_heading_item::after{
		right: -40px;
	}
}

.main_heading_jp{
	position: relative;
	display: block;
	font-size: 30px;
}
@media (min-width: 1280px) {
	.main_heading_jp{
		font-size: 48px;
		padding-bottom: 16px;
	}
}

.main_heading_en{
	display: block;
	font-size: 16px;
	font-family: var( --font-en );
	font-weight: 600;
	font-style: italic;
	line-height: 1em;
}
@media (min-width: 1280px){
	.main_heading_en{
		font-size: 24px;
	}
}

.bottom_fix_button{
	position: fixed;
	z-index: 99;
	right: 4%;
	bottom: -70px;
	transition: bottom 0.5s ease;
}
@media (min-width: 1280px){
	.bottom_fix_button{
		right: 20px;
		bottom: -90px;
	}
}

.bottom_fix_button a{
	display: inline-block;
	width: auto;
	height: 50px;
	padding: 0 20px;
	border: solid 2px var( --white-color-primary );
	border-radius: 25px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	background-color: var( --red-color-primary );	
	color: var( --white-color-primary );
	font-size: 12px;
	font-weight: 700;
	line-height: 46px;
	text-align: center;
}
@media (min-width: 1280px){
	.bottom_fix_button a{
		height: 80px;
		padding: 0 40px;
		border: solid 4px var( --white-color-primary );
		border-radius: 40px;
		font-size: 16px;
		line-height: 68px;
	}
}

.bottom_fix_button a img{
	width: 16px;
	margin-right: 10px;
	margin-bottom: 4px;
}
@media (min-width: 1280px){
	.bottom_fix_button a img{
		width: 28px;
		margin-right: 20px;
	}
}

.bottom_button_hide{
	bottom: -70px;
}

.bottom_button_visible{
	bottom: 20px;
}

.readmore_button{
	text-align: center;
}

.readmore_button_link{
	display: inline-block;
	width: 100%;
	height: 64px;
	border-radius: 6px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	background-color: var( --red-color-primary );
	color: var( --white-color-primary );
	font-size: 18px;
	font-weight: 700;
	line-height: 64px;
}
@media (min-width: 1280px){
	.readmore_button_link{
		height: 80px;
		font-size: 20px;
		line-height: 80px;
	}
}

.cta_button{
	text-align: center;
}

.cta_button_link{
	display: inline-block;
	width: 100%;
	padding: 20px 0;
	border-radius: 6px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	background-color: var( --red-color-primary );
	color: var( --white-color-primary );
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4em;
	transition: opacity 0.5s;
}
@media (min-width: 1280px){
	.cta_button_link{
		display: inline-block;
		width: 760px;
		height: 100px;
		padding: 0;
		border-radius: 12px;
		font-size: 24px;
		line-height: 100px;
	}
}

.cta_button_link:hover{
	color: var( --white-color-primary );
	opacity: 0.7;
}

@media (min-width: 1280px){
	.cta_button_link br{
		display: none;
	}
}



/*============================
 HEADER
============================*/
header{
	width: 100%;
	position: fixed;
	z-index: 99;
	top: 0;
	height: 80px;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	transition: background-color 0.5s, box-shadow 0.5s, transform 0.5s;
}

.header_inner{
	display: flex;
	position: relative;
	align-items: center;
	width: 100%;
	padding: 0 6%;
	background-color: var( --red-color-primary );
}
@media (min-width: 1280px){
	.header_inner{
		justify-content: space-between;
		padding: 0 0 0 80px;
	}
}

.header_logo{
	margin: 0 auto;
}
@media (min-width: 1280px){
	.header_logo{
		margin: 0;
	}
}

.header_logo a h1:hover{
	opacity: 0.5;
}

/* ヘッダーを非表示にする */
.header_hide{
	transform: translateY(calc( -100% - +6px ));
}

/* ヘッダーメニュー */
.header_menu{
	position: absolute;
	top: -14px;
	left: 0;
	z-index: -1;
	width: 100%;
	height: auto;
	transition: top 0.7s ease , background-color 1.2s;
}
@media (min-width: 1280px){
	.header_menu{
		position: static;
		top: auto;
		left: auto;
		z-index: 0;
		width: auto;
	}
}

.header_menu_inner{
	position: absolute;
	flex-direction: column;
	width: 100%;
	height: auto;
	background-color: var( --white-color-primary );
}
@media (min-width: 1280px){
	.header_menu_inner{
		position: static;
		flex-direction: row;
		align-items: center;column-gap: 40px;
		width: auto;
		height: 80px;
		background-color: transparent;
	}
}

.header_menu_item{
	width: 100%;
}
@media (min-width: 1280px){
	.header_menu_item{
		width: auto;
	}
}

@media (min-width: 1280px){
	.header_menu_item:last-of-type{
		display: block;width: 260px;
		height: 100%;
		background-color: var(--white-color-primary);
	}
}

.header_menu_link{
	display: inline-block;
	width: 100%;
	height: 60px;
	border-bottom: solid 1px #E0E0E0;
	color: var( --black-color-primary );
	font-size: 14px;
	font-weight: 700;
	line-height: 60px;
	text-align: center;
	transition: opacity 0.5s;
}
@media (min-width: 1280px){
	.header_menu_link{
		height: auto;
		border-bottom: none;
		color: var(--white-color-primary);
		font-size: 14px;
		line-height: 1em;
	}
}

@media (min-width: 1280px){
	.header_menu_item:last-of-type .header_menu_link{
		position: relative;
		color: var( --red-color-primary );
		font-size: 12px;
		line-height: 110px;
	}
}

@media (min-width: 1280px){
	.header_menu_item:last-of-type .header_menu_link::before{
		content: "Contact";
		position: absolute;
		top: -24px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		font-size: 32px;
		font-family: var( --font-en );
		font-style: italic;
	}
}

.header_menu_link:hover{
	color: var(--white-color-primary);
	opacity: 0.7;
}

/* ヘッダーメニュー閉じている時 */
.header_menu{
	top: -100vh;
}
@media (min-width: 1280px){
	.header_menu{
		top: auto;
	}
}

.header_menu_accordion,
.header_menu_link,
.header_menu_accordion_link{
	pointer-events: none;
}
@media (min-width: 1280px){
	.header_menu_accordion,
	.header_menu_link,
	.header_menu_accordion_link{
		pointer-events: auto;
	}
}

/* ヘッダーメニュー開いている時 */
.menu_open .header_menu{
	top: 80px;
	background-color: rgba(0,0,0,0.1);
}

.menu_open .header_menu_accordion,
.menu_open .header_menu_link,
.menu_open .header_menu_accordion_link{
	pointer-events: auto;
}

/* ハンバーガーボタン */
.hamburger_button{
	display: inline-block;
	position: relative;
	width: 28px;
	height: 20px;
	padding: 0;
	border-radius: 27.5px;
	border: none;
	background-color: transparent;
}
@media (min-width: 1280px){
	.hamburger_button{
		display: none;
	}
}

.hamburger_button:focus{
	outline: none;
}

.hamburger_button_line{
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var( --white-color-primary );
	transition: top 0.5s, bottom 0.5s, transform 0.5s;
}

.hamburger_button_line:nth-of-type(1){
	top: 0;
}

.hamburger_button_line:nth-of-type(2){
	bottom: 0;
}

.hamburger_button_svg{
	display: inline-block;
	position: absolute;
	left: 0;
	top: 9px;
	width: 100%;
	transition: opacity 0.5s;
}

/* ハンバーガーボタン開いている時 */
.menu_open .hamburger_button_line:first-child{
	top: 10px;
	transform: rotate(45deg);
}

.menu_open .hamburger_button_line:last-child{
	bottom: 8px;
	transform: rotate(-45deg);
}

.menu_open .hamburger_button_svg{
	opacity: 0;
}

/*============================
 PRESENT
============================*/
.present_container{
	padding-top: 60px;
	background-color: var( --gray-color-primary );
}
@media (min-width: 1280px){
	.present_container{
		padding-top: 120px;
	}
}

.present_top{
	margin-bottom: 110px;
	text-align: center;
}
@media (min-width: 1280px){
	.present_top{
		margin-bottom: 85px;;
	}
}

.present_top h2{
	margin-bottom: 20px;
	font-weight: 400;
}
@media (min-width: 1280px){
	.present_top h2{
		margin-bottom: 28px;
		font-size: 24px;
		
	}
}

.present_top source,
.present_top img{
	width: 166px;
	margin-bottom: 20px;
}
@media (min-width: 1280px){
	.present_top source,
	.present_top img{
		width: 330px;
		margin-bottom: 28px;
	}
}

.present_top p{
	font-size: 18px;
	margin-bottom: 0;
}
@media (min-width: 1280px){
	.present_top p{
		font-size: 24px;
	}
}

@media (min-width: 1280px){
	.present_top p br{
		display: none;
	}
}

@media (min-width: 1280px){
	.present_main{
		display: flex;
		justify-content: space-between;
		width: 960px;
		margin: 0 auto;
	}
}

.present_main p{
	position: relative;
	z-index: 1;
	margin-bottom: 100px;
	font-size: 18px;
	text-align: center;
}
@media (min-width: 1280px){
	.present_main p{
		margin-bottom: 80px;
		font-size: 24px;
	}
}

.present_main p span{
	font-weight: 700;
}

.present_main p::after{
	content: "";
	display: inline-block;
	position: absolute;
	z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	width: 210px;
	height: 190px;
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}

.present_main p:nth-of-type(1)::after{
	background-image:  url("../img/common/present_number-01.svg");
}

.present_main p:nth-of-type(2)::after{
	background-image:  url("../img/common/present_number-02.svg");
}

.present_main p:nth-of-type(3)::after{
	background-image:  url("../img/common/present_number-03.svg");
}

.present_bottom{
	margin-bottom: 40px;
}
@media (min-width: 1280px){
	.present_bottom{
		margin-bottom: 80px;
	}
}

.present_bottom p{
	text-align: center;
}
@media (min-width: 1280px){
	.present_bottom p{
		font-size: 24px;
	}
}

/*============================
 FOOTER
============================*/
footer{
	background-color: var( --red-color-primary );
	text-align: center;
}

@media (min-width: 1280px){
	.footer_container{
		padding: 80px 0;
	}
}

.footer_inner img{
	width: 230px;
}

.footer_menu{
	margin-top: 30px;
}

.footer_menu_inner{
	flex-direction: column;
}
@media (min-width: 1280px){
	.footer_menu_inner{
		flex-direction: row;
		justify-content: center;
		column-gap: 20px;
	}
}

.footer_menu_item{
	margin-bottom: 16px;
}

.footer_menu_item:last-child{
	margin-bottom: 0;
}

.footer_copyright{
	padding: 10px 0 12px;
	background-color: var( --white-color-primary );
	font-size: 12px;
}
.footer_menu_link{
	color: var( --white-color-primary );
	font-weight: 700;
	transition: opacity 0.5s;
}

.footer_menu_link:hover{
	color: var( --white-color-primary );
	opacity: 0.7;
}