@charset "UTF-8";
/* CSS Document */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}
_::-webkit-full-page-media, _:future, :root body {}
body, div {
    margin: 0;
    padding: 0;
    border: 0;
    transition: width 1s ease-in-out 0.01s;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
p, ul, li, span, th, td {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    letter-spacing: 1px;
    border: 0;
    text-decoration: none;
    list-style: none;
    margin: 0;
    padding: 0;
    color:#14001A;
    cursor: default;
}
a {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    letter-spacing: 1px;
    border: 0;
    text-decoration: none;
    list-style: none;
    margin: 0;
    padding: 0;
    color:#14001A;
}
::before, ::after {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    color: #000;
}
h1, h2, h3, h4, h5 {
    font-size: 20px;
    margin: 0;
    color: #000;
    cursor: default;
}
figure{
	margin:0;
}

/*header*/
.header_wrap{
	width:100%;
	position:fixed;
	top:0;
	z-index:100;
	background-color:#EAC1C8;
}
.header_wrap.change_color{
	background: rgba(21,48,74,0.4);
}
.header_inner_pc{
	width:100%;
	display:flex;
	justify-content:space-between;
	height:90px;
	opacity:1;
	transition: all .5s ease;
}
.logo_box{
display: flex;
}
.header_logo{
	height:80px;
	margin-top:10px;
    margin-left: 30px;
	object-fit:contain;
	vertical-align:top;
}
.header_logotext{
	height:40px;
	margin-top:35px;
    margin-left: 0px;
	object-fit:contain;
	vertical-align:top;
}
.header_logo_title{
	height:45px;
	margin-top:25px;
	margin-left:20px;
	object-fit:contain;
	vertical-align:top;
}
.header_list{
	width:calc(100% - 300px);
	display:flex;
	justify-content:right;
}
.header_list li a{
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
	font-size:14px;
}
.header_li{
	margin:0 20px;
	padding-top:33px;
}
.header_pc_nav{
	font-weight:bold;
	font-size:16px;
	transition:.3s;
	color:#fff;
	text-align:center;
	position:relative;
	cursor: pointer!important;
}
.header_pc_nav:before{
	content:'';
	display:block;
	position:absolute;
	width:0;
	height:3px;
	bottom:-5px;
	left:0;
	border-bottom:1px solid #fff;
	transition:.3s;
}
_::-webkit-full-page-media, _:future, :root .header_pc_nav:before{
	bottom:-25px;
}
.header_pc_nav span{
	display:block;
	font-size:10px;
	color:#fff;
	cursor: pointer!important;
}
.header_pc_nav:hover:before{
	transition:.3s;
	width:100%;
	cursor: pointer!important;
}

.header_contact{
	position:relative;
	font-size:14px;
	font-weight:600;
	color:#fff;
	height:25px;
	margin-top:25px;
	margin-right:35px;
	margin-left:10px;
	line-height:25px;
	padding:5px 40px 5px 60px;
	border-radius:30px;
	border:1px solid #fff;
	background-color:#FF9B9D;
}
.mailicon{
	position:absolute;
	top:50%;
	left:30px;
	transform:translatey(-50%);
	display:inline-block;
	height:20px;
	object-fit:cover;
}

/*hamburger　ハンバーガーメニュー*/
.header_inner_sp{
	display:none;
	height:0;
	opacity:0;
	transition: all .5s ease;
}
@media(max-width:1300px){
	.header_inner_pc{
		height:0;
		opacity:0;
	}
	.header_inner_sp{
		display:flex;
		opacity:1;
		height:90px;
	}
	.hamburger{
		display: block;
		height: 60px;
		margin-top:15px;
		margin-left: auto;
		position: relative;
		z-index: 10;
		width: 60px;
		border: none;
		background-color: transparent;
	}
	.hamburger.-active .hamburger__line{
		background-color: transparent;
	}
	.hamburger.-active .hamburger__line::before{
		top: 0;
		transform: rotate(45deg);
	}
	.hamburger.-active .hamburger__line::after{
		top: 0;
		transform: rotate(-45deg);
	}
	.hamburger.-active .hamburger__text::before{
	  content: '閉じる';
      font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
	}
	.hamburger__line {
		display: block;
		height: 2px;
		position: absolute;
		top: 23px;
		left: 50%;
		transform: translateX(-50%);
		width: 24px;
		background-color: #fff;
		transition: 0.4s;
	}
	.hamburger__line:before,
	.hamburger__line:after {
		content: "";
		display: block;
		height: 100%;
		position: absolute;
		width: 100%;
		background-color: #fff;
		transition: inherit;
	}
	.hamburger__line:before {
		top: -6px;
	}
	.hamburger__line:after {
		top: 6px;
	}
	.hamburger__text {
		position: absolute;
		bottom: 8px;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
	}
	.hamburger__text::before {
		content: "メニュー";
		text-align: center;
		color: #fff;
		font-size: 10px;
		font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
	}
	.header__nav-area {
		position: fixed;
		top: 0;
		left: -100%;
		z-index: 9;
		height: 100vh;
		width: 100vw;
		visibility: hidden;
		padding-top: 90px;
		background-color: #00267F;
		transition: 0.4s;
	}
	.header__nav-area.-active {
		left: 0;
	  visibility: visible;
	}
	.global-navigation {
		padding-top: 10px;
	}
	.global-navigation__list > li {
		padding-bottom: 20px;
		border-bottom: 2px solid #e7e9ee;
	}
	.global-navigation__list > li + li {
	  margin-top: 20px;
	}
	.global-navigation__link {
	  display: flex;
		align-items: center;
		justify-content: space-between;
		color: #172e59;
		font-weight: 900;
		transition: color 0.4s;
		font-size: 0.875rem;
	}
	.global-navigation__link.-accordion {
		position: relative;
		background: none;
		border: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		width: 100%;
		padding: 0;
	}
	.global-navigation__link.-accordion::after {
		content: '';
		display: block;
		height: 12px;
		position: absolute;
		top: 50%;
		right: 5px;
		width: 2px;
		background-color: #ed3242;
		transform: translateY(-50%);
		transition: transform 0.4s;
	}
	.global-navigation__link.-accordion::before {
		content: '';
		display: block;
		height: 2px;
		position: absolute;
		top: 50%;
		right: 0;
		width: 12px;
		background-color: #ed3242;
		transform: translateY(-50%);

	}
	.global-navigation__link.-active::after {
	  transform: translateY(-50%) rotate(-90deg);
	}
	.accordion {
		height: 0;
		overflow: hidden;
		visibility: hidden;
		transition: 0.4s;
	}
	.accordion.-active {
		height: auto;
		padding-top: 30px;
		visibility: visible;
	}
	.header_logo{
		width:auto;
		position:relative;
		z-index:10;
		height:80px;
		margin-left:10px;
		margin-top:10px;
	}
	.header_logotext{
		position:relative;
		z-index:10;
		height:40px;
		margin-left:0;
		margin-top:35px;
	}
	.header_list{
		flex-wrap:wrap;
		width:100%;
	}
	.header_li{
		display:flex;
		width:100%;
		text-align:left;
		margin:0;
		padding:0 15px;
	}
	.header_sp_nav{
		color:#fff;
		font-size:26px;
		font-weight:bold;
		padding:10px 30px 10px 15px;
		border-bottom:1px solid #fff;
		transition:.3s;
	}
	.header_sp_nav span{
		color:#fff;
		font-size:14px;
		margin-left:30px;
	}
	.header_sp_nav:hover{
		transition:.3s;
		padding-right:60px;
	}
}


/*TOP*/
.top_kv_wrap{
	position:relative;
	width:100%;
	height:calc(100vh - 90px);
	margin-top:90px;
	overflow:hidden;
}
.top_desire_box{
	width:900px;
	position:absolute;
	top:100px;
	left:7%;
}
.top_desire_hl{
	position:relative;
	font-size:110px;
	font-weight:bold;
	color:#D04337;
}
.top_desire_hl span{
	position:absolute;
	bottom:30px;
	right:0;
	display:block;
	font-size:20px;
	font-weight:600;
	letter-spacing:0;
	color:#D04337;
}
.topkv_logo{
	position:absolute;
	bottom:20px;
	right:5%;
	width:45%;
	object-fit:cover;
}


.swiper{
	top:60%;
	transform:translatey(-50%);
	z-index:-1;
	transform:skewY(-15deg);
}
.swiper-wrapper {
  transition-timing-function: linear!important;
}
/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}









.scroll {
	position: absolute;
	bottom:65px;
	right: 3.5%;
	writing-mode: vertical-rl;
}
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: -65px;
  content: "";
  height: 50px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.type--C {
  --line_color: #EAC1C8;
  --back_color: #EAC1C8;
}
.button {
	display:block;
  position: relative;
  z-index: 0;
  width: 240px;
  height: 56px;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: var(--line_color);
  letter-spacing: 2px;
  transition: all 0.3s ease;
}
.button__text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
	font-size:14px;
	font-weight:400;
	color:#14001A;
}
.button::before,
.button::after,
.button__text::before,
.button__text::after {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background: var(--line_color);
  transition: all 0.5s ease;
}
.button::before {
  top: 0;
  left: 54px;
  width: calc(100% - 56px * 2 - 16px);
}
.button::after {
  top: 0;
  right: 54px;
  width: 8px;
}
.button__text::before {
  bottom: 0;
  right: 54px;
  width: calc(100% - 56px * 2 - 16px);
}
.button__text::after {
  bottom: 0;
  left: 54px;
  width: 8px;
}
.button__line {
  position: absolute;
  top: 0;
  width: 56px;
  height: 100%;
  overflow: hidden;
}
.button__line::before {
  content: "";
  position: absolute;
  top: 0;
  width: 150%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 300px;
  border: solid 3px var(--line_color);
}
.button__line:nth-child(1),
.button__line:nth-child(1)::before {
  left: 0;
}
.button__line:nth-child(2),
.button__line:nth-child(2)::before {
  right: 0;
}
.button:hover {
  letter-spacing: 6px;
}
.button:hover::before,
.button:hover .button__text::before {
  width: 8px;
}
.button:hover::after,
.button:hover .button__text::after {
  width: calc(100% - 56px * 2 - 16px);
}
.button__drow1,
.button__drow2 {
  position: absolute;
  z-index: -1;
  border-radius: 16px;
  transform-origin: 16px 16px;
}
.button__drow1 {
  top: -16px;
  left: 40px;
  width: 32px;
  height: 0;
  transform: rotate(30deg);
}
.button__drow2 {
  top: 44px;
  left: 77px;
  width: 32px;
  height: 0;
  transform: rotate(-127deg);
}
.button__drow1::before,
.button__drow1::after,
.button__drow2::before,
.button__drow2::after {
  content: "";
  position: absolute;
}
.button__drow1::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-60deg);
}
.button__drow1::after {
  top: -10px;
  left: 45px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(69deg);
}
.button__drow2::before {
  bottom: 0;
  left: 0;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-146deg);
}
.button__drow2::after {
  bottom: 26px;
  left: -40px;
  width: 0;
  height: 32px;
  border-radius: 16px;
  transform-origin: 16px 16px;
  transform: rotate(-262deg);
}
.button__drow1,
.button__drow1::before,
.button__drow1::after,
.button__drow2,
.button__drow2::before,
.button__drow2::after {
  background: var(--back_color);
}
.button:hover .button__drow1 {
  animation: drow1 ease-in 0.06s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow1::before {
  animation: drow2 linear 0.08s 0.06s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow1::after {
  animation: drow3 linear 0.03s 0.14s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow2 {
  animation: drow4 linear 0.06s 0.2s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow2::before {
  animation: drow3 linear 0.03s 0.26s;
  animation-fill-mode: forwards;
}
.button:hover .button__drow2::after {
  animation: drow5 linear 0.06s 0.32s;
  animation-fill-mode: forwards;
}
@keyframes drow1 {
  0% {
    height: 0;
  }
  100% {
    height: 100px;
  }
}
@keyframes drow2 {
  0% {
    width: 0;
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  11% {
    opacity: 1;
  }
  100% {
    width: 120px;
  }
}
@keyframes drow3 {
  0% {
    width: 0;
  }
  100% {
    width: 80px;
  }
}
@keyframes drow4 {
  0% {
    height: 0;
  }
  100% {
    height: 120px;
  }
}
@keyframes drow5 {
  0% {
    width: 0;
  }
  100% {
    width: 124px;
  }
}
.top_news_btn{
	display:block;
	width:298px;
	text-align:center;
	color:#fff;
	border:1px solid #fff;
	padding:20px 0px;
	border-radius:5px;
	transition:.3s;
}
.top_news_btn:hover{
	color:#000;
	background-color:#fff;
	border-color:#000;
}

/*TOP Column*/
.top_column_wrap{
	margin:100px 0;
}

/*TOP About*/
.top_about_wrap{
	width:100%;
	padding:100px 0;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	border-bottom:1px solid #EAC1C8;
}
.top_about_leftinner{
	width:45%;
	padding-right:5%;
}
.top_about_kv{
	width:100%;
	object-fit:cover;
	vertical-align:top;
}
.top_about_rightinner{
	width:45%;
	padding-left:5%;
}
.top_about_rightinner h1{
	display:flex;
	align-items:center;
	justify-content:left;
	font-size:24px;
	color:#96705C;
	margin-bottom:10px;
}
.top_about_rightinner h1:before{
	border-top: 1px solid #96705C;
	content: "";
	width: 3em;
	margin-right:1em;
}
.top_about_rightinner h2{
	font-size:48px;
	color:#96705C;
	letter-spacing:1px;
	line-height:1.4;
	margin-bottom:40px;
}
.top_about_rightinner p{
	font-size:14px;
	line-height:2;
	font-weight:500;
	color:#96705C;
	margin-bottom:60px;
}
.top_about_btn{
	margin-bottom:60px;
}

/*TOP Business*/
.top_business_wrap{
	width:100%;
	padding:160px 0 160px;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.top_business_leftinner{
	width:45%;
	padding-left:5%;
}
.top_business_leftinner h1{
	display:flex;
	align-items:center;
	justify-content:left;
	font-size:24px;
	color:#96705C;
	margin-bottom:10px;
}
.top_business_leftinner h1:before{
	border-top: 1px solid #96705C;
	content: "";
	width: 3em;
	margin-right:1em;
}
.top_business_leftinner h2{
	font-size:48px;
	color:#96705C;
	letter-spacing:1px;
	line-height:1.4;
	margin-bottom:40px;
}
.top_business_leftinner p{
	font-size:14px;
	line-height:2;
	font-weight:500;
	color:#96705C;
	margin-bottom:60px;
}
.top_business_kv{
	width:100%;
	object-fit:cover;
	vertical-align:top;
}
.top_business_rightinner{
	width:45%;
	padding-left:5%;
}
.top_business_btn{
	padding:0 20px;
}
.section_imgbox img{
	width:100%;
	object-fit:cover;
	vertical-align:top;
}

.top_newswrap{
	position:relative;
	width:90%;
	padding:120px 5% 100px;
	background-color:#EAC1C8;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.top_news_inner{
	width:calc(100% - 300px);
}
.topnews_hl{
	display:flex;
	font-size:42px;
	color:#fff;
	height:50px;
	line-height:50px;
	font-weight:600;
	margin-bottom:80px;
}
.topnews_hl span{
	display:inline-block;
	height:50px;
	line-height:50px;
	font-size:20px;
	color:#fff;
	margin-left:20px;
}
.top_news_li{
	width:80%;
	background-color:#fff;
	padding:20px 5%;
	margin-bottom:10px;
	border-radius:5px;
}
.top_news_li a{
	display:flex;
	width:100%;
	flex-wrap:wrap;
	justify-content:left;
	color:#fff;
	font-size:16px;
}
.day{
	margin-right: 30px;
    padding: 0px 0;
    letter-spacing: 0px;
    font-size: 14px;
    line-height: 35px;
    height: 35px;
    width: 90px;
	color:#96705C;
}
.newslist_title{
	padding:0px 15px;
	line-height: 35px;
    height: 35px;
	width:calc(100% - 150px);
	color:#96705C;
	position:relative;
}
.newslist_title::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #96705C;
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s; 
}
.newslist_title:hover::after {
	transform: scale(1, 1);
}
.top_news_logo{
	width:300px;
	object-fit:cover;
	position:absolute;
	bottom:0;
	right:5%;
}

/*TOP Column*/
.top_column_wrap{
	width:100%;
	margin:100px 0;
}
.top_column_list{
	width:90%;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.top_column_li{
	position:relative;
	width:30%;
	height:540px;
	background-color:#EAC1C8;
	z-index:5;
}
.top_column_li a{
	width:90%;
	height:400px;
	padding:70px 5%;
	display:block;
	overflow:hidden;
}
.top_column_subtitle{
	pointer-events: none;
	width:100%;
	font-size:10px;
	margin-bottom:5px;
	color:#fff;
	position:relative;
	z-index:11;
}
.top_column_list_title{
	pointer-events: none;
	width:100%;
	font-size:24px;
	font-weight:bold;
	color:#fff;
	position:relative;
	z-index:11;
}
.top_column_list_textarea{
	cursor:pointer;
	font-size:12px;
	color:#fff;
	position:absolute;
	display:block;
	width:90%;
	padding:140px 5% 0;
	height:400px;
	top:0;
	left:0;
	z-index:10;
	opacity:0;
}
.top_column_thumbnail{
	width:60%;
	height:40%;
	margin:0 auto;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	z-index:1;
	transition:.3s;
	filter: brightness(1);
}
.attachment-post-thumbnail{
	width:100%;
	height:200px;
	object-fit:cover;
	vertical-align:top;
	transition:.3s;
}
.g_filter{
	display:block;
	width:100%;
	height:540px;
	position:absolute;
	z-index:2;
	filter: brightness(1);
	top:0;
	left:0;
}
.top_read_textarea{
	pointer-events: none;
	position:absolute;
	bottom:100px;
	left:5%;
	color:#fff;
	font-size:12px;
	z-index:10;
}
.top_column_li{
	width:30%;
	transition:.5s;
}
.top_column_list:has(.top_column_li:hover) .top_column_li{
	width:24%;
	transition:.5s;
}
.top_column_list:has(.top_column_li:hover) .top_column_li:hover{
	width:50%;
	transition:.5s;
	
}
.top_column_list:has(.top_column_li:hover) .top_column_thumbnail{
	width:100%;
	height:540px;
	transition:.5s;
	filter: brightness(1);
}
.top_column_list:has(.top_column_li:hover) .attachment-post-thumbnail{
	width:100%;
	height:540px;
	transition:.5s;
	filter: brightness(0.6);
}
.top_column_list:has(.top_column_li:hover) .top_column_list_textarea:hover{
	opacity:1;
}










/*page about*/
.page_wrap{
	width:100%;
	padding-top:90px;
    position: relative;
}
.side_text_about{
    position: fixed;
    bottom:45%;
    left: 0;
    transform: translateY(50%);
    height: 100%;
    text-align: center;
    font-size: 40px;
    color: rgba(150,112,92,0.4);
    font-weight: bold;
    writing-mode: vertical-rl;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;
    visibility: visible;
}
.side_text_about.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.page_top_inner{
	width:80%;
	margin:100px auto 60px;
    padding: 0 2.5%;
	border-bottom:3px solid #EAC1C8;
}
.page_top_hl{
	display:flex;
	align-items:center;
	justify-content:left;
	font-size:24px;
	color:#96705C;
	margin-bottom:10px;
}
.page_top_hl:before{
	border-top: 1px solid #96705C;
	content: "";
	width: 3em;
	margin-right:1em;
}
.page_top_subhl{
	font-size:48px;
	color:#96705C;
	letter-spacing:1px;
	line-height:1.2;
	margin-bottom:15px
}
.page_about_wrap{
    width: 80%;
    padding: 0 10% 100px;
}
.page_about_t{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.page_about_leftbox{
    width: 50%;
    padding-right: 10%;
}
.page_t_text{
    color: #96705C;
    font-size: 18px;
    line-height: 2;
    margin: 60px auto 120px;
}
.page_about_rightbox{
    width: 40%;
}
.page_about_rightbox img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.page_about_links{
    display: flex;
    justify-content: left;
    width: 600px;
    position: relative;
    padding: 10px 5px;
    border-bottom: 1px solid #96705C;
    margin-bottom: 100px;
    transition: .3s;
}
.page_about_links::after{
    content: "";
    display: block;
    width: 15px;
    border-bottom: 1px solid #96705C;
    height: 1px;
    position: absolute;
    bottom: 3px;
    right: 0;
    transform: skewY(30deg);
}
.l_text1{
    width: 350px;
    color: #96705C;
    font-size: 20px;
    font-weight: bold;
}
.l_text2{
    display: block;
    width: 100px;
    line-height: 30px;
    text-align: center;
    color: #96705C;
}
.l_text3{
    display: block;
    width: 150px;
    text-align: center;
    color: #96705C;
    font-size: 20px;
    font-weight: bold;
}
.page_about_links span{
    pointer-events: none;
}
.page_about_links:hover{
    width: 650px;
}
.bef_business::before{
    content: "BUSINESS";
    position: absolute;
    bottom: -30px;
    left: 5px;
    height: 30px;
    font-size: 24px;
    font-weight: bold;
    color: rgba(234,193,200,.5);
    letter-spacing: 0;
    pointer-events: none;
    transition: .3s;
}
.bef_works::before{
    content: "ACHIEVEMENTS";
    position: absolute;
    bottom: -30px;
    left: 5px;
    height: 30px;
    font-size: 24px;
    font-weight: bold;
    color: rgba(234,193,200,.5);
    letter-spacing: 0;
    pointer-events: none;
    transition: .3s;
}
.page_about_links:hover.bef_business::before{
    color: #FF9B9D;
}
.page_about_links:hover.bef_works::before{
    color: #FF9B9D;
}

/*outline*/
.page_outline_wrap{
    width: 100%;
    margin: 120px auto;
}
.page_s_inner{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.position_s{
    overflow: visible;
    position: sticky;
    top: 120px;
    height: 100%;
}
.page_s_inner h2{
    display: block;
    width: 300px;
    color: #000000;
    font-size: 42px;
    font-weight: bold;
    line-height: 1;
    padding-top: 20px;
}
.page_s_inner h2 span{
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
}
.padding_outline{
    padding-left: 40px;
}
.outline_dl{
    width: calc(100% - 300px);
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.outline_dl dt{
    width: 20%;
    padding: 20px 0 20px 2%;
    border-bottom: 1px solid #ccc;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
}
.outline_dl dd{
    width: 70%;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    font-size: 16px;
    color: #1D1D1D;
    margin: 0;
}


/*history*/
.page_history_wrap{
    width: 100%;
    margin: 120px auto;
}
.history_list{
    width: calc(100% - 300px);
    margin: 0;
    padding: 20px 0 0;
    display: flex;
    flex-wrap: wrap;
}
.year{
    width: 200px;
    text-align: center;
    margin-right: 30px;
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 60px;
    position: relative;
}
.color_pink{
    font-size: 50px;
    color: #FF9B9D;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1;
}
.year::before{
    content: "";
    position: absolute;
    width: 1px;
    height: 45px;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 2px solid #EAC1C8;
}
.story_text{
    width: calc(100% - 230px);
    font-size: 18px;
    height: 50px;
    line-height: 50px;
}
.month{
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0;
    display: inline-block;
    padding-right: 2px;
}


.page_business_wrap{
    width: 80%;
    margin: 0 auto;
}
.page_flow_hl{
    width: 100%;
    text-align: center;
}
.page_flow_hl span{
    color: #96705C;
    font-size: 24px;
    display: inline-block;
    margin: 0 auto;
}













.footer_wrap{
	width:90%;
	padding:60px 5% 20px;
	background-color:#EAC1C8;
}
.footer_inner{
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.footer_textarea{
	width:50%;
}
.footer_logo{
	width:180px;
	object-fit:cover;
}
.footer_company_name{
	font-size:20px;
	font-weight:bold;
	color:#fff;
	margin-bottom:10px;
}
.footer_address{
	font-size:14px;
	color:#fff;
}
.copy_text{
	width:100%;
	text-align:center;
	padding:5px 0;
	color:#fff;
	font-size:12px;
}
.footer_navlist{
	width:50%;
	padding-top:60px;
}
.footer_list{
	display:flex;
	flex-wrap:wrap;
	justify-content:left;
}
.footer_li{
	margin:0 25px 30px 0px;
}
.footer_nav{
	color:#fff;
	font-size:14px;
	font-weight:bold;
	padding:0 5px;
	position:relative;
	transition:.3s;
}
.footer_nav:before{
	content:'';
	display:block;
	position:absolute;
	width:0;
	height:3px;
	bottom:-5px;
	left:0;
	border-bottom:1px solid #fff;
	transition:.3s;
}
_::-webkit-full-page-media, _:future, :root .footer_nav:before{
	bottom:-25px;
}
.footer_nav:hover:before{
	transition:.3s;
	width:100%;
	cursor: pointer!important;
}

.footer_sns{
	display:flex;
	flex-wrap:wrap;
	justify-content:left;
	padding:0 5px;
}
.footer_sns p{
	font-size:14px;
	font-weight:bold;
	color:#fff;
	margin-right:30px;
	line-height:30px;
	height:30px;
	margin-bottom:30px;
}
.footer_sns a{
	display:block;
	margin-right:20px;
}
.footer_sns img{
	width:30px;
	object-fit:cover;
}
.footer_points{
	padding:0 5px;
	display:flex;
	flex-wrap:wrap;
	justify-content:left;
}
.footer_points a{
	color:#fff;
	font-size:14px;
	font-weight:bold;
	margin-right:30px;
	border-bottom:1px solid #fff;
}