html{
    font-size: 62.5%;
	scroll-behavior: smooth;
}


body{
	color: #fff;
	background-color: #0B0F14;
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 2;
	font-size: 1.5rem;
	font-family: "Shippori Mincho", serif;
	font-weight: 500;
	font-style: normal;
}



*{
	margin: 0;
	box-sizing: border-box;
}

a{
	text-decoration: none;
	color: #fff;
	transition: .3s;
}

ul,ol{
	list-style: none;
	padding: 0;
}
svg{
	padding: 0;
	margin: 0;
	vertical-align: bottom;
	min-height: 0%;
}
img{
  	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
	font-size: 0;
}

/*フェードイン*/
.flowup{
	opacity: 0;
	transform: translateY(10px);
	filter: blur(10px);
	transition: opacity 1.6s, transform 1.5s, filter .9s;
	transition-delay: 0.4s;
}
.flowup.inview{
	opacity: 1;
	transform: translateY(0);
	filter: blur(0px);
}

.flow_left{
	opacity: 0;
	transform: translateX(-80px);
	transition: opacity 1.6s, transform 1.5s;
	transition-delay: 0.4s;
}
.flow_left.inview{
	opacity: 0.7;
	transform: translateX(0);
}

.flow_right{
	opacity: 0;
	transform: translateX(80px);
	transition: opacity 1.6s, transform 1.5s;
	transition-delay: 0.4s;
}
.flow_right.inview{
	opacity: 0.7;
	transform: translateX(0);
}

.blurup{
	filter: blur(10px);
	opacity: 0;
	transition: all 2s ease;
}
.blurup.inview{
	filter: blur(0);
	opacity: 1;
}


.imgup {
	position: relative;
	overflow: hidden;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: .5s;
    transition-delay: clip-path 0.3s, scale 0s;
}



.imgup.inview {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.imgup img {
    transition: 1.6s cubic-bezier(0.6, 0, 0.07, 1);
    transform: translateX(-10%) scale(1.4);
}

.imgup.inview img {
    transform: translateX(0) scale(1);
}

.rotation {
    animation: rotateanim 75s linear infinite normal;
}



.op{
	position: relative;
	z-index: 5;
	opacity: 0;
	transition: all .2s;
	transition-delay: 200ms;
}

.op.inview{
	opacity: 1;
}

span.marker {
    background: linear-gradient(transparent 50%, rgb(235, 252, 4,0.6) 50%);
}


.br_650.marker{
	background: none;
}

.inner{
	width: 90%;
	max-width: 1580px;
	margin: 0 auto;
}


.flex_center{
	display: flex;
	justify-content: center;
}

.flex{
    display: flex;
}

.flex_end{
	display: flex;
	justify-content: flex-end;
}

.flex_start{
	display: flex;
	justify-content: flex-start;
}

.flex_bet{
	display: flex;
	justify-content: space-between;
}

.flex_ar{
	display: flex;
	justify-content: space-around;
}

span.zo{
	font-size: 1.2em;
	padding: 5px;
	font-weight: bold;
}

main{
	width: 100%;
}


.tate{
	-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}





.w100{
	width: 100%;
}

/*フィルター*/

.filter{
    position: relative;
}

filter::after{
    content: "";
    display: block;
    position: absolute;
    background-color: rgb(0, 0, 0,0.6);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.filter_w{
	position: relative;
}

.filter_w::after{
    content: "";
    display: block;
    position: absolute;
    background-color: rgb(255, 255, 255,0.4);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/*改行*/

.br_960{
}

.br_650{
}

.br_none650{
	display: block;
}

.br_none1200{
	display: block;
}

section{
	position: relative;
	padding: 200px 0;
}

@media (max-width: 1200px){
	.br_1200{
		display: block;
	}
	.br_none1200{
		display: inline;
	}
	section{
		padding: 100px 0;
	}
}

@media (max-width: 960px){
	.br_960{
		display: block;
	}	
}
@media (max-width: 650px){
	.br_650{
		display: block;
	}
	.br_650.marker{
		background: linear-gradient(transparent 75%, rgb(241, 156, 167,0.7) 75%);;
	}
	section{
        padding: 50px 0;
    }
	.container{
		padding: 0;
	}
	.br_none650{
		display: inline;
	}
	body{
		font-size: 1.4rem;
	}
}




/* 文字間 */

.space{
	letter-spacing: 0.05em;
}

.space2{
	letter-spacing: 0.1em;
}

/*  */
.txt_wrappper{
	background-color: #fef8e5;
}

/* 
.txt{
	font-size: 1.45rem;
	font-weight: 500;
	color: #333;
	line-height: 2.5;
} */


@media (max-width: 960px){
	.none_960{
		display: none;
	}
}

@media (max-width: 650px){
	.none_650{
		display: none;
	}
	
	
}


.reverse{
	flex-direction: row-reverse;
}





.center_l{
	display: flex;
	align-items: center;
}

body p{
	letter-spacing: 0.1em;
}

i{
	padding-right: 0.4em;
}



/* btn */


.m_btn {
	margin-top: 60px;
}

.m_btn a, .m_btn p{
	display: block;
	width: fit-content;
	position: relative;
	letter-spacing: 0.05em;
	padding-right: 22px;
	font-size: 1.6rem;
}


.m_btn a::before,.m_btn p::before{
	content: "";
	display: inline-block;
	position: absolute;
	aspect-ratio: 3 / 2;
	border: solid 1px #fff;
	border-radius: 50%;
	top: 50%;
	right: 10px;
	transform: translate(100%,-50%);
	width: 35px;
	transition: all .3s;
}

.m_btn a::after,.m_btn p::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 16px;
	top: 50%;
	right: 0px;
	transform: translate(100%,-50%);
}

.m_btn a:hover::before{
	background-color: #802828;
}





/* font-size (ratio 1.25, base 16px)*/


.king{
	font-size: 5.8rem;
}
.biggest{
	font-size: 4.6rem;
}
.big{
	font-size:  3.7rem;
}
.s_big{
	font-size: 3rem;
}
.f_txt{
	font-size: 2.4rem;
}
.s_f_txt{
	font-size: 1.9rem;
}




/* sub_ttl */

/* .sub_ttl .en{
	display: block;
	letter-spacing: 0.05em;
	line-height: 1.8;
}
.sub_ttl .ja{
	letter-spacing: 0.1em;
} */


/* header */


header{
	position: fixed;
	height: 90px;
	top: 0;
	width: 100%;
	z-index: 99;
	border-bottom: solid 1px #ccc;
	background-color: #0f2138;
	transition: transform 1s, opacity 2s, filter 1s;
}

.flowup2{
	transform: translateY(-99%);
	opacity: 0;
	filter: blur(10px);
}
.flowup2.inview{
	transform: translateY(0);
	opacity: 1;
	filter: blur(0);
}



.main_nav a{
	letter-spacing: 0.1em;
	display: block;
	overflow: hidden;
	position: relative;
	line-height: 1.6;
	cursor: pointer;
}

.main_nav a .h_txt{
	position: absolute;
	top: 0;
	left: 0;
	
}

.main_nav a .m_txt{
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(100%);
	
}

.main_nav a .o_txt{
	opacity: 0;
}

.main_nav a:hover .m_txt{
	transform: translateY(0);
	transition: all .3s;
}
.main_nav a:hover .h_txt{
	transform: translateY(-100%);
	transition: all .3s;
}

.main_nav li+li{
	margin-left: 30px;
}

.hd_inner{
	padding-left: 30px;
}

h1{
	letter-spacing: 0.05em;
	margin-right: 80px;
	line-height: 1.5;
}

h1 a:hover{
	opacity: 0.75;
}

h1 a .sm{
	font-size: 0.64em;
	display: block;
	margin-left: 3px;
}

header .btn{
	width: 150px;
}
header .btn a{
	background-color: #802828;
	display: block;
	height: 90px;
	text-align: center;
	line-height: 1.7;
	font-weight: 600;
}

header .btn{
	border-left: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
}

header .btn_box{
	margin-left: 30px;
}
header .btn .num{
	letter-spacing: 0.12em;
}

header .btn .in{
	padding-top: 18px;
}

header .btn a:hover{
	background-color: #661e1e;
}

.openList{
	position: relative;
	padding-left: 24px;
}

.openList::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/add.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

.openList.active::before{
	background: url(../img/remove.png);
	background-size: cover;
	background-position: center;
}

.openBox{
	position: absolute;
	display: block;
	background-color: #0f2138;
	bottom: -146px;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	padding: 15px 20px;
	transition: all.2s;
}


.openBox a{
	position: relative;
	display: block;
	padding: 8px;
	padding-left: 18px;
}

.openBox a::before{
	content: "";
	display: inline-block;
	position: absolute;
	height: 6px;
	width: 7px;
	background-color: #802828;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition: all .3s;
}

.openBox a:hover{
	opacity: 0.75;
}

.openBox a:hover::before{
	left: 3px;
}

.openBox{
	opacity: 0;
	transform: translate(-50%,-20%);
	pointer-events: none;
}

.openList.active .openBox{
	opacity: 1;
	pointer-events: all;
	transform: translate(-50%,0);
}






.mobile_fixed{
	display: none;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 10;
	background-color: #fff;
}

.mobile_fixed a{
	display: block;
	padding: 7px 0 5px;
	letter-spacing: 0.05em;
	font-size: 1.5rem;
	color: #fff;
}

.mobile_fixed a:hover{
	opacity: 0.75;
}

.mobile_fixed .item{
	/* width: calc(50% - 0.5px); */
	width: 100%;
	text-align: center;
	background-color: #802828;
}

.mobile_fixed .item+.item{
	background-color: #0f2138;
}







@media (max-width: 1400px){
	header .center{
		display: none;
	}
	header .right{
		display: none;
	}
}


@media (max-width: 650px){
	header{
		height: 60px;
	}
	h1.f_txt{
		font-size: 2rem;
	}
	.hd_inner{
		padding-left: 20px;
	}
	.mobile_fixed{
		display: block;
	}
}



/* fv */


.fv{
	position: relative;
	height: 100vh;
	overflow: hidden; 
}

.fv .fv_nami{
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 50%;
}

.fv .fv_ac{
	position: absolute;
	bottom: 10%;
	left: 42%;
	transform: translateX(-50%);
	opacity: 0.7;
	width: 460px;
}

.top_slider{
	position: relative;
	z-index: 5;
}

.top_slider .slider::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/rotaion_txt.png);
	background-size: cover;
	background-position: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	animation: rotateanim 130s linear infinite normal;
	z-index: 4;
}

.top_slider .slider{
	position: relative;
	width: 56%;
	z-index: 2;
	margin: 0 -5vw 0 auto;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	margin-top: 120px;
}
.top_slider .slider li{
	width: 100%;
	background-size: cover;
	margin: 0;
}


.top_slider .slider li.top01{
	background-image: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url(../img/top01.jpg);
	background-position: center;
}
.top_slider .slider li.top02{
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)),url(../img/top02.jpg);
	background-position: center;
}
.top_slider .slider li.top03{
	background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,0)),url(../img/top03.jpg);
	background-position: bottom;
}




@keyframes rotateanim{
	0%{
		transform:translate(-50%,-50%) rotate(0deg);
	}
	100%{
		transform:translate(-50%,-50%) rotate(360deg);
	}
}


.catch{
	position: absolute;
	top: 50%;
	left: 60px;
	transform: translateY(-50%);
	z-index: 2;
}

.catch h2{
	line-height: 1.8;
	margin-bottom: 45px;
	font-size: min(3.2vw,5.8rem);
}

.catch h2 span{
	display: block;
	animation: blur-animation 2s alternate;
	filter: blur(12px);
	animation-fill-mode: forwards;
	animation-delay: 200ms;
}
.catch h2 span+span{
	animation-delay: 500ms;
}


@keyframes blur-animation {
	0% {
	  filter: blur(12px); /* ぼかしなし */
	}
	100% {
	  filter: blur(0px); /* ぼかしなし */
	}
  }


.catch p{
	padding-left: 10px;
	color: #ccc;
}


.container_04{
	position: absolute;
	left: 0;
	bottom: -250px;
}
  
  .scrollbar-text_04 {
	display: inline-block;
	position: absolute;
	bottom: 0;
	padding: 10px 10px 110px;
	color: #fff;
	font-size: 1.3rem;
	font-family: serif;
	line-height: 1;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	writing-mode: vertical-lr;
	left: 50%;
	transform: translateX(-50%);
  }
  
  .scrollbar_04 {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 30px;
  }
  
  .scrollbar_04::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1px;
	height: 70px;
	background: #fff;
  }
  
  .scrollbar_04::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: -4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #fff;
	animation: circlemove 3s ease-in-out infinite,
	  cirlemovehide 3s ease-out infinite;
  }
  
  @keyframes circlemove {
	0% {
	  bottom: 65px;
	}
	100% {
	  bottom: 0px;
	}
  }
  
  @keyframes cirlemovehide {
	0% {
	  opacity: 0;
	}
	50% {
	  opacity: 1;
	}
	80% {
	  opacity: 0.9;
	}
	100% {
	  opacity: 0;
	}
  }


@media (max-width: 1200px){
	.fv{
		height: 90vh;
	}
	.top_slider .slider{
		width: 60%;
	}
	.catch{
		top: auto;
		bottom: 50px;
		left: 40px;
	}
	.catch h2{
		font-size: min(4.4vw,3.8rem);
		margin-bottom: 30px;
	}
	.container_04{
		bottom: -80px;
		left: auto;
		right: -120px;
	}
	.fv .fv_nami{
		width: 100%;
	}
}

@media (max-width: 650px){
	.catch h2{
		font-size: 2.4rem;
		margin-bottom: 15px;
	}
	.catch p{
		font-size: 1.2rem;
		padding-left: 5px;
	}
	.top_slider .slider{
		width: 70%;
		margin-top: 80px;
	}
	.catch{
		left: 20px;
		bottom: 50px;
		transform: translateY(0);
	}
	.fv{
		max-height: 580px;
		height: 80vh;
	}
}




/* news */


.news{
	position: relative;
	overflow: hidden;
	padding-bottom: 0;
}

.news .ac_img{
	position: absolute;
	bottom: 0px;
	left: -10px;
	width: 200px;
}

.news .ac_img02{
	position: absolute;
	top: 100px;
	right: -10px;
	width: 200px;
}

.t_ttl span{
	display: block;
}
.t_ttl{
	letter-spacing: 0.3em;
}

.t_ttl .en{
	background-color: #0f2138;
	color: #fff;
	letter-spacing: 0.05em;
	height: fit-content;
}

.news_list{
	font-size: 1.7rem;
	margin-top: 20px;
}

.news_list a{
	position: relative;
	display: block;
	padding: 32px 0;
	border-bottom: solid 1px #777;
	padding-left: 15px;
}

.news_list li:first-child a{
	border-top: solid 1px #777;
}

.news .left{
	width: 340px;
}

.news_wrapper{
	width: calc(100% - 340px);
}

.news_list .up_ymd{
	margin-right: 40px;
	letter-spacing: 0.1em;
}

.news_list .title{
	letter-spacing: 0.05em;
}



.news_list a::before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 0;
	padding: 0;
	background-color: #0f2138;
	transform: translateY(-50%);
	transition: all .3s ease-in-out;
	z-index: -1;
}

.news_list a:hover::before{
	height: 100%;
}

@media (max-width: 1200px){
	.news{
		padding-bottom: 80px;
	}
	.news .inner{
		flex-direction: column;
	}
	.news .left{
		width: 100%;
	}
	.news .news_wrapper{
		width: 100%;
	}
	.t_ttl{
		writing-mode: unset;
		width: fit-content;
		margin: 0 auto 30px;
	}
	.t_ttl .en{
		width: fit-content;
		margin: 0 auto;
	}
	.news .m_btn{
		margin: 50px auto 0;
		width: fit-content;
	}
	.news .ac_img{
		bottom: 0px;
		left: 0;
	}
	.news .ac_img02{
		right: 0;
	}
	.news_list{
		margin-top: 0;
	}
}

@media (max-width: 650px){
	.t_ttl .s_big{
		font-size: 2.3rem;
	}
	.news_list li a{
		padding: 20px 5px;
	}
	.news_list{
		font-size: 1.4rem;
	}
	.news_list .up_ymd{
		margin-right: 20px;
		letter-spacing: 0.03em;
	}
	.news .m_btn{
		margin-top: 30px;
	}
	.m_btn a,.m_btn p{
		font-size: 1.4rem;
	}
	.news .ac_img{
		width: 120px;
	}
	.news .ac_img02{
		width: 120px;
		top: 40px;
	}
	.news{
		padding: 70px 0 30px;
	}
	.t_ttl{
		margin-bottom: 20px;
	}
}



/* imgarea */

.img_area{
	position: relative;
	width: 65%;
	margin-bottom: 120px;
	z-index: 1;
}

.img_area .img01{
	width: 70%;
}

.img_area .img02{
	width: 25%;
	margin-left: -3%;
	margin-top: 180px;
}

.img_area .img01 img{
	width: 100%;
	aspect-ratio: 2.5 / 1;
	object-fit: cover;
}
.img_area .img02 img{
	width: 100%;
	aspect-ratio: 1.2 / 1;
	object-fit: cover;
}



/* greeting */

.greeting {
	overflow: hidden;
	position: relative;
	padding-bottom: 300px;
}

.greeting .ab_bg{
	position: absolute;
	top: 0;
	right: 0;
	width: 30%;
	opacity: 0.6;
}

.greeting .left{
	margin-top: 40px;
}

.greeting .left .tate{
	height: 370px;
	line-height: 2.3;
}

.greeting .left .tate p{
	letter-spacing: 0.2em;
	font-size: 1.6rem;
}

.greeting .txt_box{
	max-width: 720px;
	margin: 0 10vw 0 auto;
}

.greeting .txt_box .left span{
	display: block;
	padding: 0 15px;
}

.greeting .world{
	position: absolute;
	top: 66%;
	left: 5vw;
	transform: translateY(-50%);
	z-index: -1;
	max-width: 900px;
	opacity: 0.15;
}
.greeting .cir_img{
	position: absolute;
	top: 470px;
	right: -260px;
	width: 30%;
	max-width: 500px;
}

.greeting .cir_img img{
	width: 100%;
}

.greeting .tira{
	position: absolute;
	bottom: 8%;
	left: 0;
	max-width: 600px;
}

.greeting .tira img{
	width: 100%;
}

.greeting .ac_txt{
	font-size: min(5.3vw,9rem);
	position: absolute;
	top: 40%;
	left: 0;
	color: #fff;
	opacity: 0.3;
	line-height: 1;
	z-index: 2;
}

.greeting .wa_img{
	position: absolute;
	width: 180px;
	top: 220px;
	left: 58%;
	transform: translateX(-50%);
	opacity: 0.7;
	z-index: 0;
}


@media (max-width: 1200px){
	.img_area{
		width: 80%;
		margin-bottom: 40px;
	}
	.greeting .ac_txt{
		font-size: 5.4rem;
		top: 30%;
	}
	.img_area .img02{
		margin-top: 140px;
	}
	.greeting .txt_box{
		margin: 0 auto;
		flex-direction: column-reverse;
	}
	.greeting .tira{
		width: 40%;
		bottom: 0;
	}
	.greeting .cir_img{
		right: -15vw;
	}
	.img_area .img01 img{
		min-height: 210px;
	}
	.img_area .img02 img{
		min-height: 180px;
	}
	.greeting{
		padding-bottom: 100px;
	}
	.greeting .left{
		margin-top: 0;
	}

	.greeting .left .tate{
		margin: 0 auto;
		height: 340px;
	}
	.greeting .wa_img{
		top: 150px;
		left: auto;
		right: 0;
		width: 120px;
	}
}

@media (max-width: 650px){
	.img_area{
		width: 110%;
		margin-bottom: 30px;
	}
	.img_area .img01 img{
		min-height: 180px;
	}
	.img_area .img02 img{
		min-height: 100px;
	}
	.greeting .ac_txt{
		font-size: 3.2rem;
		top: 25%;
	}
	.greeting .left .tate{
		writing-mode: unset;
		height: auto;
	}
	.greeting .left .tate p{
		font-size: 1.4rem;
		letter-spacing: 0.1em;
	}
	.greeting .txt_box .left span{
		padding: 0;
		margin: 15px 0;
	}
	.greeting .cir_img{
		right: -30px;
		top: 280px;
	}
	.greeting{
		padding-bottom: 50px;
	}
	.greeting .wa_img{
		width: 80px;
		top: 30px;
	}
}



/* safe */


.safe{
	padding: 0;
	padding-bottom: 200px;
}

.c_ttl{
	text-align: center;
	letter-spacing: 0.05em;
	margin-bottom: 60px;
}

.c_ttl .en{
	display: block;
	letter-spacing: 0.03em;
	color: #fff;
	background-color: #0f2138;
	width: fit-content;
	margin: 0 auto;
}

.safe .item .img{
	width: 46%;
}

.safe .item .txt_box{
	width: 46%;
}

.safe .ac span{
	line-height: 1;
}
.safe .ac{
	position: relative;
	text-align: center;
	width: fit-content;
	margin-bottom: 40px;
}

.safe .ac::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #802828;
	width: 20%;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
}

.safe .reverse .ac::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #802828;
	width: 20%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.safe h4{
	letter-spacing: 0.05em;
	margin-bottom: 10px;
	font-family: "Yuji Syuku", serif;
	font-weight: bold;
	font-style: normal;
	color: #802828;
}

.safe .left{
	position: sticky;
	width: 18%;
	top: 180px;
	height: fit-content;
}

.safe .left .re_box{
	position: relative;
}

.safe .right{
	width: 82%;
}

.safe .right .img img{
	width: 100%;
	height: 360px;
	object-fit: cover;
}

.safe .txt_box{
	text-align: right;
	padding-bottom: 30px;
}

.safe .reverse .txt_box{
	text-align: left;
}

.safe .txt_box .in{
	position: relative;
}

.safe .item+.item{
	margin-top: 100px;
}

.safe .ac{
	margin: 0 0 0 auto;
	margin-bottom: 15px;
	font-family: "Yuji Syuku", serif;
	font-weight: 400;
	font-style: normal;
}
.safe .reverse .ac{
	margin-left: 0;
	margin-bottom: 15px;
}

.safe .right .img{
	position: relative;
}

.safe .ac_img{
	position: absolute;
	width: 150px;
	bottom: -200px;
	transform: translateX(-70%);
	left: 0;
	opacity: 0.7;
}
.safe .hisi_img{
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 160px;
	opacity: 0.6;
}

.safe .t_ttl{
	background-color: #0B0F14;
}


@media (max-width: 1200px){
	.safe .inner{
		flex-direction: column;
	}
	.safe .right{
		width: 100%;
	}
	.safe .item .img{
		width: 40%;
	}
	.safe .item .txt_box{
		width: 56%;
	}
	.safe .ac{
		margin-bottom: 30px;
	}
	.safe .reverse .ac{
		margin-bottom: 30px;
	}
	.safe .left{
		width: 100%;
		position: static;
	}
	.safe .right .img img{
		height: 240px;
	}
	.safe .ac_img{
		top: 0;
		left: 0;
		width: 80px;
		transform: translateX(0);
	}
	.safe .hisi_img{
		width: 100px;
		top: 0;
	}
	.safe{
		padding-bottom: 100px;
	}
}

@media (max-width: 650px){
	.safe .wrap{
		flex-direction: column;
	}
	.safe .item .img{
		width: 100%;
	}
	.safe .right .img img{
		height: 190px;
	}
	.safe .item .txt_box{
		width: 100%;
		padding: 0;
	}
	.safe .txt_box{
		text-align: left;
	}
	.safe .ac{
		margin-left: 0;
		margin-bottom: 20px;
	}
	.safe .ac::before{
		right: auto;
		left: 0;
	}
	.safe h4{
		font-size: 1.9rem;
	}
	.safe .item+.item{
		margin-top: 50px;
	}
	.safe .ac_img{
		width: 60px;
		left: -20px;
	}
	.safe{
		padding-bottom: 50px;
	}
	.safe .hisi_img{
		top: 10px;
	}
	.c_ttl{
		margin-bottom: 30px;
	}
}





/* service */



.service .left{
	width: 18%;
}

.service .right{
	width: 82%;
}

.service .item{
	width: 50%;
}

.service .item a{
	position: relative;
	display: block;
	padding: 60px 40px;
	width: 100%;
	height: 100%;
	border-top: solid 1px #777;
	border-bottom: solid 1px #777;
	background-color: #0B0F14;
}
.service .item+.item a{
	border-left: solid 1px #777;
}

.service .item a:hover .m_btn p::before{
	background-color: #802828;
}

.service h4{
	margin-bottom: 15px;
}

.service .img{
	position: absolute;
	top: 60px;
	right: 40px;
	width: 30%;
	transition: all .3s;
}

.service .img img{
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.service .ac{
	margin-bottom: 100px;
	width: fit-content;
	text-align: center;
}

.service .ac .num{
	display: block;
	line-height: 1;
}

.service .t_ttl{
	background-color: #0B0F14;
}

.service .bg_img{
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	top: 0;
	left: 0;
	filter: blur(10px) brightness(0.4);
	z-index: 1;
}

.service .item h4,.service .item p{
	position: relative;
	z-index: 2;
}

.service .item a:hover .bg_img{
	opacity: 1;
	filter: blur(2px) brightness(0.4);
}

.service .item a:hover .img{
	filter: blur(10px);
	opacity: 0;
}

.service{
	padding-top: 250px;
	padding-bottom: 100px;
	position: relative;
	overflow: hidden;
	background-color: #0B0F14;
}

.service .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0.6;
}

.service .red_bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	max-width: 500px;
}

.service .red_bg img{
	height: 200px;
	width: 100%;
	object-fit: cover;
}

.service .ac_ill{
	position: absolute;
	top: 50px;
	right: -5vw;
	width: 40%;
	max-width: 600px;
	transform: scale(1,-1) rotate(-10deg);
}

@media (max-width: 1200px){
	.service{
		padding-top: 100px;
		padding-bottom: 0;
	}
	.service .ac_ill{
		top: 0;
	}
	.service .inner{
		flex-direction: column;
	}
	.service .right{
		width: 100%;
	}
	.service .ac .num{
		font-size: 4.4rem;
	}
	.service .item a{
		padding: 45px 20px;
	}
	.service .ac{
		margin-bottom: 50px;
	}
	.service .m_btn{
		margin-top: 30px;
	}
	.service .left{
		width: 100%;
	}
	.service .img{
		top: 45px;
		right: 20px;
		width: 40%;
	}
}


@media (max-width: 650px){
	.service{
		padding-top: 50px;
	}
	.service .right .flex_bet{
		flex-direction: column;
	}
	.service .item{
		width: 100%;
	}
	.service .item+.item a{
		border-left: 0px;
	}
	.service .item a{
		border-top: 0px;
		padding: 25px 10px;
	}
	.service .item:first-child a{
		border-top: solid 1px #777;
		
	}
	.service .img{
		top: 25px;
		right: 10px;
	}
	.service .ac .num{
		font-size: 3.2rem;
	}
	.service .ac{
		text-align: left;
		padding-top: 10px;
	}
	.service .img{
		width: 150px;
	}
	.service .item h4{
		font-size: 1.9rem;
	}
	.service .m_btn{
		margin-top: 20px;
	}
	
}



/* achieves */


.achieve{
	position: relative;
	padding: 100px 0;
	overflow: hidden;
}

.achieve .inner{
	position: relative;
	overflow: hidden;
	background-color: rgba(15, 33, 56, 0.8);
	padding: 60px 0;
}

.achieve .left{
	width: 48%;
}
.achieve .right{
	width: 48%;
}

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

.achieve .c_ttl{
	margin-bottom: 30px;
}

.achieve .m_btn{
	margin: 60px auto 0;
	width: fit-content;
}

.achieve .nami_img{
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 600px;
	width: 32%;
}

.achieve .nami_img02{
	position: absolute;
	top: 0;
	left: 0;
	max-width: 380px;
	width: 23%;
}

@media (max-width: 1200px){
	.achieve p.center{
		font-size: 1.5rem;
	}
	.achieve .m_btn{
		margin-top: 50px;
	}
	.achieve .inner{
		padding: 45px 0;
	}
}

@media (max-width: 650px){
	.achieve .c_ttl .s_big{
		font-size: 2.3rem;
	}
	.achieve .c_ttl{
		margin-bottom: 20px;
	}
	.achieve .m_btn{
		margin-top: 25px;
	}
	.achieve p.center{
		margin-bottom: 25px;
		font-size: 1.4rem;
	}
	.achieve .inner{
		padding: 30px 0;
	}
	.achieve{
		padding: 70px 0;
	}

}



/* contents */


.contents .left{
	width: 18%;
}

.contents .t_ttl{
	background-color: #0B0F14;
	padding: 10px 0;
}

.contents .right{
	width: 82%;
}

.contents .right .item{
	width: 30%;
}


.contents .item a{
	position: relative;
	display: block;
	height: 300px;
	width: 100%;
}

.contents .item a img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	transition: all .4s;
	object-position: 70%;
}

.contents .item a::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgb(0, 0, 0,0.7);
	width: 100%;
	height: 100%;
	z-index: 2;
	transition: all .4s ease;
}

.contents .item a::after{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: solid 3px #802828;
	z-index: 3;
	transition: all .4s ease;
}

.contents p.ttl{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	white-space: nowrap;
	z-index: 3;
	transition: all .3s;
}

.contents .item a:hover::after{
	transform: scale(1.2);
	opacity: 0;
}


.contents .item a:hover p.ttl{
	letter-spacing: 0.15em;
}

.contents .item a .ac_txt{
	position: absolute;
	top: 15px;
	left: 20px;
	color: #fff;
	z-index: 3;
}
.contents .item a .btn_txt{
	position: absolute;
	bottom: 15px;
	right: 20px;
	color: #fff;
	z-index: 3;
}

.contents {
	position: relative;
	overflow: hidden;
}

.contents .menu_bg{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60%;
	transform: translate(-50%,50%) rotate(180deg);
	z-index: -1;
	opacity: 0.5;
}

.contents .btm_box{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.contents .ac_img{
	position: absolute;
	width: 30%;
	min-width: 300px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}



@media (max-width: 1200px){
	.contents .inner{
		flex-direction: column;
	}
	.contents .right{
		width: 100%;
	}
	.contents .right .item{
		width: 31%;
	}
	.contents .item a{
		height: 240px;
	}
	.contents p.ttl{
		font-size: 2rem;
	}
	.contents{
		padding-top: 0;
	}
	.contents .left{
		width: 100%;
	}
}

@media (max-width: 650px){
	.contents .item_list{
		flex-direction: column;
		width: 75%;
		margin: 0 auto;
	}
	.contents .right .item{
		width: 100%;
	}
	.contents .right .item+.item{
		margin-top: 20px;
	}
	.contents .item a{
		height: 150px;
	}
	.contents p.ttl{
		font-size: 1.7rem;
	}
	.contents .item a .ac_txt{
		top: 10px;
		left: 10px;
		font-size: 1.2rem;
	}
	.contents .item a .btn_txt{
		bottom: 10px;
		right: 10px;
		font-size: 1.2rem;
	}
	.contents .ac_img{
		bottom: -30px;
	}
}




/* footer */

.foo_inner{
	position: relative;
	max-width: 1080px;
	width: 90%;
	margin: 0 auto;
	z-index: 1;
}

.foo_top{
	position: relative;
	padding: 120px 0;
	background: url(../img/top03.jpg);
	background-size: cover;
	background-position: top;
	background-attachment: fixed;
}
::-webkit-full-page-media, :future, :root .foo_top{
	background-attachment: scroll;
  }

.foo_top::before{
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgb(0, 0, 0,0.7);
	top: 0;
	left: 0;
	z-index: 0;
}

footer .btn_area{
	margin-top: 30px;
}

footer .btn_area .btn{
	width: 48%;
}


footer .btn_area .btn a{
	display: block;
	border: solid 1px #fff;
	text-align: center;
	padding: 14px 0;
	letter-spacing: 0.1em;
	font-size: 1.6rem;
}

footer .btn_area .btn a:hover{
	background-color: #802828;
}

footer .left{
	margin-top: 50px;
}

footer .btm_box{
	position: relative;
	padding: 120px 0;
	z-index: 1;
	overflow: hidden;
	background: url(../img/foo_bg.png);
	background-size: cover;
	background-position: center;
}




footer .btm_box .in{
	max-width: 1080px;
	margin: 0 auto;
	width: 90%;
}

.foo_logo{
	margin-bottom: 15px;
}

.foo_logo a{
	display: block;
	line-height: 1.6;
}

.foo_logo a .sm{
	font-size: 0.64em;
	display: block;
	margin-left: 3px;
}

.foo_logo a:hover{
	opacity: 0.75;
}

.copy{
	font-size: 1.3rem;
	margin-top: 30px;
}

.copy p{
	letter-spacing: 0.2em;
}


@media (max-width: 1200px){
	footer .flex_bet.reverse{
		flex-direction: column;
	}
	footer .left{
		margin-top: 0;
	}
	.foo_top{
		padding-top: 80px;
	}
	footer .btm_box .in{
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.copy{
		margin-top: 30px;
	}
	.foo_logo{
		margin-bottom: 5px;
	}
	footer .btm_box{
		padding: 80px 0;
	}
}

@media (max-width: 650px){
	footer .btn_area{
		flex-direction: column;
		margin-top: 20px;
	}
	footer .btn_area .btn{
		width: 100%;
	}
	footer .btn_area .btn+.btn{
		margin-top: 20px;
	}
	.foo_top{
		padding-top: 60px;
		padding-bottom: 100px;
	}
	footer .btm_box{
		padding-top: 50px;
		padding-bottom: 90px;
		font-size: 1.2rem;
	}
	.copy{
		font-size: 1.1rem;
		margin-top: 20px;
	}
	.foo_logo.f_txt{
		font-size: 2rem;
	}
	footer .btn_area .btn a{
		font-size: 1.5rem;
	}
}




/* page top */

.page_top.is_animation{
	opacity: 1;
	pointer-events: all;
}

.page_top{
	opacity: 0;
    pointer-events: none;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 3%;
    bottom: 5%;
    border-radius: 50%;
    opacity: 0;
    transition: 1s;
    background: #fff;
    z-index: 49;
}


.page_top a {
    display: block;
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    border-radius: 50%;
	border: solid 1px #777;
	background-color: #802828;
}

.page_top a i {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    font-weight: 900;
    font-size: 10px;
    color: #fff;
	padding: 0;
}

.page_top.is_animation:hover {
    transform: translateY(-5px);
}

@media (max-width: 650px) {
    .page_top {
        width: 45px;
        height: 45px;
		bottom: 50px;
    }
}




/* 下層トップ */

.kasou_top{
	padding-top: 140px;
}

.kasou_top .inner{
	border-bottom: solid 1px #777;
	max-width: 1400px;
}

.kasou_top .ac_txt{
	position: relative;
	color: #ccc;
	padding-left: 35px;
	margin-top: 10px;
}

.kasou_top .ac_txt::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #ccc;
	height: 1px;
	width: 15px;
	left: 10px;
	top: 50%;
}


.kasou_top ol{
	padding-bottom: 10px;
	flex-wrap: wrap;
}

.kasou_top .left{
	width: 30%;
	padding-bottom: 60px;
}

.kasou_top .right{
	width: 64%;
}

.kasou_top .right img{
	aspect-ratio: 5 / 2.8;
	width: 100%;
	object-fit: cover;
}

.kasou_top a{
	display: block;
	position: relative;
	padding-right: 20px;
}

.kasou_top a::before{
	content: ">";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 0;
	font-size: 1.6rem;
	transform: translateY(-50%);
}

.kasou_top a:hover{
	opacity: 0.75;
}

.kasou_top ol li+li{
	margin-left: 3px;
}

.kasou_top h2{
	font-weight: 500;
}

.kasou section{
	padding: 120px 0;
}

.k_txt{
	position: relative;
	background-color: #0f2138;
	width: fit-content;
	margin-left: 3px;
	padding-left: 13px;
}

.k_txt::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #fff;
	height: 1px;
	width: 8px;
	top: 50%;
	left: 0;
}


@media (max-width: 1200px){
	.kasou_top .flex_bet{
		flex-direction: column;
	}
	.kasou_top .left{
		width: 100%;
	}
	.kasou_top .right{
		width: 100%;
		margin-bottom: 15px;
	}
	.kasou_top .left{
		padding-bottom: 30px;
	}
	.kasou_top{
		padding-top: 150px;
	}
}

@media (max-width: 650px){
	.kasou h2{
		font-size: 3rem;
	}
	.kasou_top .ac_txt{
		font-size: 1.4rem;
		padding-left: 20px;
		margin-top: 5px;
	}
	.kasou_top .ac_txt::before{
		width: 10px;
		left: 0;
	}
	.kasou_top{
		padding-top: 100px;
	}
	.kasou_top .left{
		padding-bottom: 20px;
	}
	.kasou_top ol{
		padding-bottom: 5px;
	}
	.kasou section{
		padding: 50px 0;
	}

}



/* 下層事業内容 */



.ser_top{
	position: relative;
	overflow: hidden;
}

.ser_top .inner{
	max-width: 1400px;
	background-color: rgb(15, 33, 56,0.9);
	padding: 40px 60px;
	width: 94%;
}

.ser_top h3{
	letter-spacing: 0.03em;
}

.ser_top .btm_box .item{
	width: 48%;
}

.ser_top .btm_box{
	margin-top: 50px;
}

.ser_top h4{
	position: relative;
	border-bottom: solid 1px #ccc;
	margin-bottom: 20px;
	padding-bottom: 3px;
	padding-left: 26px;
}

.ser_top h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/ttl_arrow.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 36px;
	top: 50%;
	left: -8px;
	transform: translateY(-50%);
}

.ser_top ul li{
	width: 31%;
}

.ser_top ul li .img{
	display: block;
	text-align: center;
	margin-bottom: 10px;
}

.ser_top ul li .img img{
	width: 65%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.ser_top ul li .txt{
	display: block;
	text-align: center;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
}

.ser_top ul li.ch{
	margin-right: 3.5%;
}

.ser_top h5{
	position: relative;
	margin-bottom: 15px;
	border-left: solid 2px #fff;
	line-height: 1.3;
	padding-left: 10px;
}

.ser_top h5.ch{
	margin-top: 15px;
}


.ser_top .item+.item .box{
	width: 31%;
}

.ser_top .item+.item .img{
	text-align: center;
}

.ser_top .item+.item .img img{
	width: 70%;
}

.ser_top .item+.item p{
	font-size: 1.8rem;
	text-align: center;
}

.ser_top .top_box{
	position: relative;
}

.ser_top .top_box .ac_img{
	position: absolute;
	top: 0;
	right: 0;
	width: 180px;
	filter: brightness(0.7);
}

.ser_top .top_box .ac_img.tp02{
	top: 80px;
	right: 200px;
	width: 130px;
}

.ser_top .bg_img{
	position: absolute;
	top: 0;
	right: 0;
	width: 30%;
	z-index: -1;
}

.ser_top .tira_img{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30%;
	z-index: -1;
	min-width: 200px;
}

.ser_top .k_txt{
	margin-bottom: 20px;
}


.trade{
	position: relative;
	background: url(../img/deepsea.jpg);
	background-size: cover;
	background-position: bottom;
	text-align: center;
}

.trade::before{
	content: "";
	display: inline-block;
	position: absolute;
	height: 300px;
	width: 100%;
	background: linear-gradient(0deg,rgba(11, 15, 20, 0) 0%, rgba(11, 15, 20, 1) 100%);
	top: 0;
	left: 0;
	z-index: 0;
}
.trade::after{
	content: "";
	display: inline-block;
	position: absolute;
	height: 100px;
	width: 100%;
	background: linear-gradient(180deg,rgba(11, 15, 20, 0) 0%, rgba(11, 15, 20, 1) 100%);
	bottom: 0;
	left: 0;
	z-index: 0;
}

.trade .item_list{
	flex-wrap: wrap;
	gap: 50px;
	margin-top: 40px;
}

.trade .inner{
	position: relative;
	z-index: 1;
	width: 80%;
}

.trade .img{
	width: calc((100% - 100px) / 3);
}


.trade .inner{
	max-width: 1080px;
}

.trade .k_txt{
	margin: 0 auto 20px;
}

.trade .txt_box{
	margin-bottom: 30px;
}


section.other{
	position: relative;
	padding: 80px 0 130px;
	overflow: hidden;
}

.other .ac_img{
	position: absolute;
	top: 0;
	right: 0;
	width: 20%;
}

.other .ac_img.tp02{
	top: auto;
	right: auto;
	bottom: 40px;
	left: 0;
}

.other .right{
	width: 46%;
}
.other .left{
	width: 50%;
	padding-top: 50px;
}

.other .inner{
	position: relative;
	max-width: 1200px;
}


.other .nami{
	position: absolute;
	bottom: -70px;
	right: 0;
	width: 60%;
	z-index: 10;
}

.other .k_txt{
	margin-bottom: 20px;
}



/* slider */
.swiper {
	padding: 0 5.5%;
  }
  .swiper-cards .swiper-slide {
	overflow: hidden;
  }
  .swiper-cards .swiper-slide:nth-child(2n+1) {
	opacity: 0;
  }
  .swiper-slide-active {
	opacity: 1 !important;
  }
  .swiper-3d .swiper-slide-shadow {
	background: rgba(0, 0, 0, .25);
  }
  .swiper-slide {
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
	min-height: 0%;
	border-radius: 20px;
  }
  .swiper-slide::before {
	content: '';
	display: block;
	padding-top: 79%;
  }
  .swiper-slide img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
  }


@media (max-width: 1200px){
	.ser_top .flex_bet{
		flex-direction: column;
	}
	.ser_top .btm_box .item{
		width: 100%;
	}
	.ser_top ul.flex_bet{
		flex-direction: row;
	}
	.ser_top .btm_box .item+.item{
		margin-top: 30px;
	}
	.ser_top .txt_box p{
		display: inline;
	}
	.ser_top .inner{
		padding: 40px;
	}
	.ser_top .btm_box{
		margin-top: 30px;
	}
	.ser_top .top_box .ac_img{
		width: 100px;
		top: -20px;
		right: -40px;
	}
	.ser_top .top_box .ac_img.tp02{
		width: 100px;
		top: 20px;
		right: 50px;
	}
	.other .left{
		padding-top: 0;
	}
	section.other{
		padding-top: 40px;
	}
	.other .nami{
		bottom: -30px;
		min-width: 300px;
	}
	.trade .img{
		width: calc((100% - 50px) / 3);
	}
	.trade .item_list{
		gap: 25px;
	}
}


@media (max-width: 650px){
	.ser_top h3{
		font-size: 2.2rem;
		margin-bottom: 10px;
	}
	.ser_top h4{
		font-size: 1.8rem;
		padding-left: 17px;
	}
	.ser_top .inner{
		padding: 30px 20px;
	}
	.ser_top ul li{
		width: 46%;
	}
	.ser_top ul.flex_bet{
		flex-wrap: wrap;
	}
	.ser_top ul li:nth-child(3){
		margin-top: 20px;
	}
	.ser_top h5{
		margin-bottom: 25px;
	}
	.ser_top h4::before{
		width: 28px;
	}
	.ser_top .item+.item .box{
		width: 50%;
	}
	.ser_top ul li .img img{
		width: 75%;
	}
	.ser_top .item+.item p{
		font-size: 1.5rem;
	}
	.trade h3{
		font-size: 2.4rem;
		margin-bottom: 10px;
	}
	.trade .img{
		width: calc((100% - 15px) / 2);
	}
	.trade .item_list{
		gap: 15px;
		margin-top: 25px;
	}
	.trade .inner{
		width: 90%;
	}
	.trade .txt_box{
		font-size: 1.4rem;
	}
	.other h3{
		font-size: 2.4rem;
	}
	.other .flex_bet{
		flex-direction: column;
	}
	.other .left{
		width: 100%;
		margin-bottom: 30px;
	}
	section.other{
		padding-top: 0;
		padding-bottom: 70px;
	}
	.other .right{
		width: 100%;
	}
	.ser_top .top_box .ac_img.tp02{
		display: none;
	}
	.ser_top .top_box .ac_img{
		right: auto;
		left: -20px;
		top: -50px;
	}
	.ser_top ul li .txt{
		font-size: 1.5rem;
	}
	.ser_top h5{
		font-size: 1.6rem;
	}
	.ser_top ul.flex{
		justify-content: space-between;
	}
}



/* 買取実績 */


.p_achieve h3{
	text-align: center;
}

.p_achieve .inner{
	max-width: 1200px;
}

.gallery_container .item{
	width: calc((100% - 100px) / 3);
}

.gallery_container .item img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
}

.gallery_container .gap_area{
	gap: 50px;
	flex-wrap: wrap;
}

.gallery_container .wrapper+.wrapper{
	margin-top: 80px;
}

.p_achieve h3{
	margin-bottom: 30px;
}

.p_achieve{
	padding-top: 100px;
}

@media (max-width: 1200px){
	.gallery_container .item{
		width: calc((100% - 60px) / 3);
	}
	.gallery_container .gap_area{
		gap: 30px;
		flex-wrap: wrap;
	}
}

@media (max-width: 650px){
	.gallery_container .item{
		width: 48%;
	}
	.gallery_container .gap_area{
		flex-wrap: wrap;
		gap: 4%;
	}
	.gallery_container .item:nth-child(n+3){
		margin-top: 10px;
	}
	.p_achieve h3{
		font-size: 2.4rem;
		margin-bottom: 20px;
	}
	.gallery_container .wrapper+.wrapper{
		margin-top: 40px;
	}
}

/* 買取の流れ */

.p_flow{
	position: relative;
	overflow: hidden;
}

.p_flow .inner{
	position: relative;
}

.p_flow .inner::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #ccc;
	top: -40px;
	left: 175px;
	width: 5px;
	height: 100%;
	z-index: -1;
}

.p_flow .ac_img{
	position: absolute;
	top: 30px;
	right: -5vw;
	width: 20%;
}

.p_flow .ac_img02{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30%;
	min-width: 300px;
	z-index: -1;
}

.p_flow .ac_img03{
	position: absolute;
	top: 400px;
	left: 0;
	width: 20%;
}

.p_flow .left{
	text-align: center;
	width: 90px;
}

.p_flow .left p{
	background-color: #802828;
	padding: 10px;
	padding-bottom: 20px;
}

.p_flow .num{
	display: block;
	font-size: 1.4em;
	line-height: 0.8;
}

.p_flow .right{
	width: calc(100% - 90px);
}

.p_flow .bg{
	padding-left: 20px;
	padding-right: 10px;
	background-color: #0f2138;
	height: 100%;
}

.p_flow .inner{
	max-width: 1200px;
}

.p_flow .item_list .img{
	position: relative;
	width: 350px;
	height: 100%;
}
.p_flow .txt_area{
	width: calc(95% - 350px);
}

.p_flow .item_list .img::before{
	content: "";
	display: inline-block;
	position: absolute;
	bottom: -80px;
	left: 178px;
	transform: translateX(-50%);
	background-color: #f5f5f5;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
	width: 50px;
}

.p_flow .item_list .img::after{
	content: "";
	display: inline-block;
	position: absolute;
	background: url(../img/arrow_down.png);
	background-size: cover;
	background-position: center;
	aspect-ratio: 1 / 1;
	width: 40px;
	left: 177px;
	bottom: -76px;
	transform: translateX(-50%);
}

.p_flow .item:last-child .img::before{
	display: none;
}

.p_flow .item:last-child .img::after{
	display: none;
}

.p_flow .item+.item{
	margin-top: 130px;
}

.p_flow .btm_box{
	margin-top: 20px;
}

.p_flow .m_btn{
	margin-top: 10px;
}

.p_flow .m_btn+.m_btn{
	margin-left: 50px;
}

.attention_box{
	color: #000;
}

.attention_box .k_txt{
	color: #fff;
	margin: 0 auto 30px;
}

.attention_box li{
	width: calc((100% - 70px) / 3);
	background-color: #0f2138;
	padding: 25px 0;
}

.attention_box li .txt{
	display: block;
	text-align: center;
	font-size: 2rem;
	color: #fff;
	letter-spacing: 0.05em;
	margin-top: 10px;
}


.attention_box{
	position: relative;
	background-color: #f5f5f5;
	padding: 40px;
	margin-top: 100px;
	padding-top: 30px;
}

.attention_box h3{
	text-align: center;
}

.attention_box .center{
	text-align: center;
	margin-bottom: 20px;
}

.attention_box .img{
	display: block;
	width: 75%;
	margin: 0 auto;
}

.attention_box .kumo_img{
	position: absolute;
	top: -20px;
	right: -30px;
	width: 190px;
}

.p_flow .item_list .img img{
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

@media (max-width: 1200px){
	.p_flow .item_list .img{
		width: 240px;
	}
	.p_flow .txt_area{
		width: calc(96% - 240px);
	}
	.p_flow .bg h3{
		font-size: 2rem;
	}
	.p_flow .left p{
		font-size: 1.6rem;
		padding: 8px 8px 14px;
		letter-spacing: 0.05em;
	}
	.p_flow .left{
		width: 80px;
	}
	.p_flow .btm_box p{
		display: inline;
	}
	.p_flow .inner::before{
		left: 120px;
	}
	.p_flow .item_list .img::before{
		left: 124px;
	}
	.p_flow .item_list .img::after{
		left: 124px;
	}
	.attention_box .kumo_img{
		width: 150px;
	}
	.attention_box li{
		width: 48%;
	}
	.attention_box ul{
		flex-wrap: wrap;
	}
	.attention_box li:last-child{
		margin-top: 30px;
	}
	.attention_box .img{
		width: 70%;
	}
	.p_flow .item+.item{
		margin-top: 100px;
	}
}


@media (max-width: 650px){
	.p_flow .item{
		flex-direction: column;
	}
	.p_flow .item_list .img{
		width: 100%;
		margin-bottom: 25px;
	}
	.p_flow .txt_area{
		width: 100%;
	}
	.p_flow .btn_area{
		flex-direction: column;
	}
	.p_flow .m_btn+.m_btn{
		margin-left: 0;
	}
	.p_flow .left{
		width: auto;
	}
	.p_flow .left p{
		font-size: 1.3rem;
	}
	.p_flow .right{
		width: calc(100% - 67px);
	}
	.p_flow .left p{
		padding-left: 12px;
		padding-right: 12px;
	}
	.p_flow .item_list .img img{
		height: 200px;
	}
	.p_flow .inner::before{
		opacity: 0.4;
		left: 0;
	}
	.p_flow .item_list{
		width: 92%;
		margin:  0 0 0 auto;
	}
	.p_flow .item_list .img::before{
		width: 42px;
		left: -8%;
	}
	.p_flow .item_list .img::after{
		width: 32px;
		left: -8%;
	}
	.p_flow .num{
		line-height: 0.6;
	}
	.p_flow .bg h3{
		font-size: 1.8rem;
	}
	.p_flow .item+.item{
		margin-top: 50px;
	}
	.attention_box h3{
		font-size: 2.4rem;
	}
	.attention_box .center{
		font-size: 1.5rem;
	}
	.attention_box li .txt{
		font-size: 1.5rem;
		margin-top: 5px;
	}
	.attention_box{
		padding: 30px 20px;
		margin-top: 50px;
	}
	.attention_box li:last-child{
		margin-top: 15px;
	}
	.attention_box li{
		padding: 18px 0;
	}
	.attention_box .kumo_img{
		width: 120px;
	}
}




/* 会社概要 */


.policy{
	overflow: hidden;
}

.policy .k_txt{
	margin-bottom: 30px;
}

.policy .in{
	max-width: 1080px;
	margin: 0 auto;
}

.policy .left{
	width: 50%;
	padding-bottom: 80px;
	justify-content: center;
}

.policy .right{
	width: 50%;
}

.policy .right .img{
	text-align: right;
}

.policy .right .img img{
	width: 100%;
	object-fit: cover;
	aspect-ratio: 3 / 2;
	max-width: 500px;
	margin: 0 0 0 auto;
}

.policy{
	position: relative;
}



.policy .ac_img{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 18%;
	transform: scale(-1,-1);
}


.p_greeting{
	position: relative;
	background: url(../img/daihyou.jpg);
	background-size: cover;
	background-position: center;
	padding: 130px 0;
	background-attachment: fixed;
}

::-webkit-full-page-media, :future, :root .p_greeting{
	background-attachment: scroll;
  }

.p_greeting::before{
	content: "";
	display: inline-block;
	position: absolute;
	background: linear-gradient(270deg,rgba(11, 15, 20, 0) 0%, rgba(11, 15, 20, 0.9) 100%);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.p_greeting .inner{
	position: relative;
	z-index: 1;
}

.p_greeting h3{
	margin-bottom: 20px;
	border-bottom: solid 1px #ccc;
	padding-bottom: 5px;
}

.p_greeting .txt_box{
	max-width: 540px;
}

.p_greeting .txt_box p+p{
	margin-top: 15px;
}

.overview{
	position: relative;
	overflow: hidden;
	background: url(../img/blue_bg.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
::-webkit-full-page-media, :future, :root .overview{
	background-attachment: scroll;
  }

.overview::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: rgb(11, 15, 20,0.7);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.overview .ac_img{
	position: absolute;
	top: 080px;
	right: 0;
	width: 23%;
}


.overview .ac_img02{
	position: absolute;
	bottom: 80px;
	left: 0;
	width: 27%;
}


.overview .inner{
	position: relative;
	z-index: 1;
}

.overview table{
	width: 100%;
	max-width: 800px;
}

.overview table th,.overview table td{
	padding: 26px 0;
	border-top: solid 1px #777;
	letter-spacing: 0.05em;
	padding-left: 10px;
}

.overview table tr:last-child th,.overview table tr:last-child td{
	border-bottom: solid 1px #777;
}

.overview table th{
	width: 25%;
}

.overview table td{
	width: 75%;
}

.overview .left{
	width: 140px;
}

.overview .right{
	width: calc(82% - 140px);
}

.overview .img{
	margin-top: 40px;
	width: 100px;
}

.access{
	margin-top: 100px;
}

.access .left{
	width: 140px;
}

.access .right{
	width: calc(82% - 140px);
}

.access .map iframe{
	width: 100%;
	height: 400px;
	max-width: 800px;
}



@media (max-width: 1200px){
	.overview .right {
		width: calc(90% - 140px);
	}
	.overview table th, .overview table td{
		padding: 17px 0;
		padding-left: 5px;
	}
	.access .map iframe{
		height: 300px;
	}
	.policy .inner{
		width: 75%;
	}
	.policy .left{
		padding-bottom: 0;
	}
	.policy .right .img{
		height: 100%;
	}
	.policy .right .img img{
		aspect-ratio: auto;
		height: 100%;
	}
}


@media (max-width: 650px){
	.overview .flex_bet{
		flex-direction: column;
	}
	.overview .left{
		width: 100%;
	}
	.overview .right{
		width: 100%;
	}
	.overview h3{
		font-size: 2.4rem;
	}
	.overview .img{
		margin: -30px 0 10px auto;
	}
	.p_greeting h3{
		font-size: 2.4rem;
	}
	.access{
		margin-top: 50px;
	}
	.policy h3{
		font-size: 2.4rem;
	}
	.policy .flex_bet{
		flex-direction: column;
	}
	.policy .left{
		width: 100%;
		text-align: center;
		justify-content: center;
	}
	.policy .s_f_txt{
		font-size: 1.6rem;
	}
	.policy .right{
		width: 100%;
		margin-top: 30px;
	}
	.policy .k_txt{
		margin: 0 auto 20px;
	}
	.policy .right .img img{
		height: 150px;
	}
}




/* お問い合わせ */


section.faq {
	position: relative;
	overflow: hidden;
}

.faq .ac_img{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 20%;
}


.faq .ac_img02{
	position: absolute;
	top: 0;
	right: 0;
	width: 20%;
}

.faq .k_txt{
	margin: 0 auto 30px;
}

.faq h3{
	text-align: center;
}

.faq_accordion li{
	position: relative;
	
}

.faq_accordion li::before{
	content: "";
	position: absolute;
	display: inline-block;
	background-color: #777;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 1px;
}

.faq_accordion{
	margin: 0 auto;
	max-width: 1080px;
}
.faq_accordion li+li{
	margin-top: 20px;
}
.faq_accordion li h4{
    position: relative;
    cursor: pointer;
	font-size: 1.7rem;
    padding: 25px 20px;
	padding-right: 50px;
    transition: all .3s ease;
	border: solid 1px #777;
	background-color: #0f2138;
	border-bottom: 0px;
	display: flex;
}
.faq_accordion li h4 span.en{
	display: inline-block;
	font-size: 1.2em;
	line-height: 1.5;
	margin-right: 0.5em;
	color: #fff;
}
.faq_accordion li h4::before,
.faq_accordion li h4::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #fff;
}
.faq_accordion li h4::before{
    top: 48%;
    right: 20px;
    transform: rotate(0deg);
}
.faq_accordion li h4::after{    
    top: 48%;
    right: 20px;
    transform: rotate(90deg);
}
.faq_accordion li h4.close::before{
	transform: rotate(45deg);
}
.faq_accordion li h4.close::after{
	transform: rotate(-45deg);
}

.faq_accordion li .text{
	position: relative;
    display: none;
	border: solid 1px #777;
	border-top: 0px;
    padding: 30px 20px;
	background-color: #0f2138;
}
.faq_accordion li .text::before{
	content: '';
	width: calc(100% - 40px);
	height: 1px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: #777;
	pointer-events: none;
	z-index: 1;
}
.faq_accordion li .text .flex{
	display: flex;
	justify-content: space-between;
}
.faq_accordion li .text .flex span.en{
	display: inline-block;
	color: #fff;
	font-size: 1.8em;
	margin-right: 0.5em;
	line-height: 1;
}
.faq_accordion li .text .flex .info{
	width: 100%;
}
.faq_accordion li .text .flex .info p{
	margin-bottom: 5px;
}
.faq_accordion li .text .flex .info p:last-child{
	margin-bottom: 0 !important;
}

.custom-shape-divider-top-1754549315 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
	z-index: 1;
}

.custom-shape-divider-top-1754549315 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 85px;
}

.custom-shape-divider-top-1754549315 .shape-fill {
    fill: #0B0F14;
}



.co_top{
	position: relative;
	padding-top: 0;
	background-color: #f5f5f5;
	color: #000;
	overflow: hidden;
}

.co_top .ac_img{
	position: absolute;
	top: -100px;
	right: -7vw;
	width: 30%;
	z-index: 0;
}

.co_top .k_txt{
	color: #fff;
	margin: 0 auto 30px;
}

.co_top .box_list{
	margin-top: 50px;
}

.co_top .inner{
	max-width: 1080px;
}

.co_top .center{
	text-align: center;
}

.co_top .k_box{
	width: 48%;
	border: solid 1px #0f2138;
	background-color: #ddd;
}

.co_top .k_box h4{
	position: relative;
	letter-spacing: 0.04em;
	text-align: center;
	margin-bottom: 14px;
	padding-bottom: 2px;
}

.co_top .k_box h4::before{
	content: "";
	display: inline-block;
	position: absolute;
	height: 1px;
	width: 80px;
	background-color: #802828;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: all .3s;
}

.co_top .k_box .mini{
	font-size: 0.65em;
}

.co_top .k_box.tp02{
	text-align: center;
}

.co_top .k_box.tp02{
	margin: 0 auto;
}

.co_top .k_box a{
	display: block;
	height: 100%;
	width: 100%;
	padding: 25px;
	padding-top: 20px;
	color: #0f2138;
}

.co_top .k_box p.ch{
	text-align: center;
	text-decoration: underline;
}

.co_top p.s_big{
	line-height: 1;
	margin-bottom: 15px;
}

.co_top h3{
	color: #000;
	margin-bottom: 10px;
}

.co_top .k_box a:hover{
	background-color: #802828;
	color: #fff;
}

.co_top .k_box a:hover h4::before{
	background-color: #fff;
}

.co_top .ac_img02{
	position: absolute;
	left: 0;
	top: 600px;
	width: 190px;
}

.co_top .ac_img03{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 20%;
}


input[type="text"]{
	height: 45px;
	padding: 10px;
	background: #ddd;
	width: 100% !important;
}

input[type="email"]{
	height: 45px;
	padding: 10px;
	background: #ddd;
}


input{
	appearance: auto;
}


input[type="checkbox"] + label{
	cursor: pointer;
}

input[type="checkbox"].toggle{
	display: none;
}

.toggle:checked + .Label::before{
	transform: rotate(-45deg);
	text-decoration: transparent;
}

.toggle:checked + .Label + .co_open{
	height: auto;
	transition: all .5s;
}

td .box.mini{
	width: 85%;
	max-width: 300px;
	height: 40px;
}

textarea{
	padding: 10px;
	font-size: 1.6rem;
	background: #ddd;
	width: 100% !important;
	height: 120px !important;
}

.contact_table{
	width: 100%;
}

.contact_table th span,.form_attention span{
	padding: 2px 0;
	margin-right: 10px;
	font-size: 1.4rem;
}


.contact_table th span.ac,.form_attention span.ac{
	background-color: #802828;
	padding: 4px 8px 3px;
	color: #fff;
}

.contact_table th span.ac.nini{
	border: solid 1px #fff;
	color: #fff;
	background-color: #0B0F14;
}

.contact_table th{
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 20px 0;
	display: table-cell;
	vertical-align: middle;
	width: 30%;
	border-bottom: solid 1px #ccc;
}

.contact_table td{
	padding: 20px 0;
	width: 70%;
	border-bottom: solid 1px #ccc;
}


button[type="submit"]{
	font-size: 1.8rem;
	padding: 6px 0;
}

.form_btn button{
	cursor: pointer;
	display: block;
	margin: 0 auto 5px;
	padding: 10px 0 7px;
	letter-spacing: 0.05em;
	text-align: center;
	width: 230px;
	transition: all 0.5s;
	background: #802828;
	border: solid 2px #802828;
	color: #fff;
	font-size: 1.5rem;
	margin-top: 40px;
	font-weight: bold;
}

.form_btn button:hover{
	opacity: 0.7;
}

.form_attention{
	margin-top: 50px;
	font-size: 1.4rem;
}


.form_attention p+p{
	margin-top: 10px;
}

.form_attention p a:hover{
	opacity: 0.75;
}


.postal_btn{
	background-color: #802828;
	color: #fff;
	font-weight: 600;
	height: 40px;
	margin-left: 10px;
	padding: 0 30px;
	transition: all .3s;
	text-align: center;
}

.postal_btn:hover{
	opacity: 0.7;
}

.contact_table .flex{
	margin-bottom: 10px;
}

.contact_table .mark{
	line-height: 40px;
	padding: 0 5px;
	padding-right: 10px;
}




.form_accordion{
	text-align: left;
	margin-top: 40px;
}


.toggle:checked + .Label::before{
	transform: rotate(-45deg);
	text-decoration: transparent;
}

.toggle:checked + .Label + .co_open{
	height: auto;
	transition: all .5s;
}

.form_accordion p{
	font-size: 1.4rem;
	text-align: left;
	letter-spacing: 2px;
	padding: 1% 0;
	padding-left: 1%;
	line-height: 200%;
}

.form_accordion h4{
	margin-top: 20px;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	position: relative;
	padding-left: 26px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom: solid 1px #777;
}

.form_accordion h4::before{
	content: "";
	position: absolute;
	display: inline-block;
	width: 16px;
	height: 16px;
	background: url(../img/check.jpg);
	background-size: cover;
	background-position: center;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.form_attention p+p{
	margin-top: 10px;
}

input[type="checkbox"] + label{
	cursor: pointer;
}

.Label{
	font-size: 1.6rem;
	letter-spacing: 2px;
	padding: 0.8% 1%;
	display: block;
	color: #000;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
	background-color: #ddd;
	border-radius: 30px;
}

.Label::before{
	content: "";
	width: 12px;
	height: 12px;
	border-top: 2.5px solid #000;
	border-right: 2.5px solid #000;
	position: absolute;
	-webkit-transform: rotate(45deg);
	transform: rotate(135deg);
	text-decoration: transparent;
	top: calc(50% - 6px);
	right: 20px;
	margin-bottom: 1em;
}

.Label, .co_open{
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.5s;
}

input[type="checkbox"].toggle{
	display: none;
}

.co_open{
	height: 0;
	overflow: hidden;
}

.mail_sec{
	margin-top: 100px;
}

.mail_sec h3{
	position: relative;
	text-align: center;
	padding-bottom: 3px;
	margin-bottom: 30px;
}

.mail_sec h3::before{
	content: "";
	display: inline-block;
	position: absolute;
	background-color: #802828;
	height: 1px;
	width: 160px;
	left: 50%;bottom: 0;
	transform: translateX(-50%);
}




@media (max-width: 1200px){
	.custom-shape-divider-top-1754549315 svg{
		height: 50px;
	}
	.co_top p.s_big{
		font-size: 2.6rem;
	}
	.co_top .k_box h4{
		font-size: 2rem;
	}
	.co_top .ac_img02{
		width: 150px;
	}
	section.faq{
		padding-top: 80px;
	}
	td .box.mini{
		width: 260px !important;
	}
}

@media (max-width: 740px){
	.faq h3{
		font-size: 2.4rem;
	}
	.faq_accordion li h4{
		padding: 15px;
		padding-right: 50px;
		font-size: 1.45rem;
	}
	.faq_accordion li .text{
		padding: 20px 20px;
	}
	.faq_accordion li .text .flex span.en{
		font-size: 1.4em;
	}
	section.faq{
		padding-top: 50px;
	}
	.custom-shape-divider-top-1754549315 svg{
		height: 25px;
	}
	.co_top h3{
		font-size: 2.4rem;
	}
	.co_top .k_txt{
		margin-bottom: 20px;
	}
	.co_top .box_list{
		flex-direction: column;
		margin-top: 30px;
	}
	.co_top .k_box{
		width: 100%;
	}
	.co_top .k_box + .k_box{
		margin-top: 20px;
	}
	.co_top .ac_img02{
		width: 100px;
		top: 670px;
	}
	.contact_table th,.contact_table td{
		display: block;
	}
	.contact_table th{
		width: 100%;
		border-bottom: 0px;
		padding-bottom: 0;
	}
	.contact_table td{
		width: 100%;
	}
	.Label{
		font-size: 1.4rem;
	}
	.form_accordion{
		margin-top: 20px;
	}
	.k_contact span.br_none1200{
		display: block;
	}

	.postal_btn{
		display: block;
		margin-left: 0;
		margin-top: 10px;
		width: 100%;
	}
	td .box.mini{
		display: block;
		width: calc(100% - 32px) !important;
		max-width: none;
	}
	.contact_table .flex{
		flex-wrap: wrap;
	}
}




/*thanksページ*/



.kasou.thanks .kasou_top{
	margin-bottom: 0;
}

.thanks_ttl{
	text-align: center;
	line-height: 1.7;
	margin-bottom: 30px;
}

.thanks_ttl .ja{
	font-size: 3.4rem;
	display: block;
	margin-top: 10px;
}

.thanks_ttl .en{
	display: inline-block;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 1.5px;
	color: #802828;
	line-height: 1;
}

.thanks_txt p{
	text-align: center;
}

.thanks_attention{
	font-size: 1.6rem;
	margin-top: 40px;
}

.sbtn{
    margin-top: 40px;
}

.sbtn a {
    font-size: 1.6rem;
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border: solid 2px #802828;
    color: #802828;
    letter-spacing: 2px;
    padding: 15px 0;
    text-align: center;
}

.sbtn a:hover{
    background-color: #802828;
	color: #fff;
}

@media (max-width: 650px){
	.thanks_txt p{
		text-align: left;
	}
	.thanks_attention{
		font-size: 1.4rem;
	}
	.thanks_ttl .ja{
		font-size: 2.6rem;
		margin-top: 5px;
	}
}


