@charset "UTF-8";
/* CSS Document */
html {
	visibility: hidden;
	opacity: 0;
	transition: 0.3s;
}
html.wf-active,
html.loading-delay {
	visibility: visible;
	opacity: 1;
}
* {
    word-break: break-all;
	}

body {
	font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
	font-size: 20px;
	font-style: normal;
	color: #000;
	line-height: 1.6;
	letter-spacing: 0.02em;
}
#wrapper {
	overflow: hidden;
}
a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
a img {
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
a:hover {
	color: #ff6800;
}
.inner {
	max-width: 1512px;
	margin-right: auto;
	margin-left: auto;
}
img {
	max-width: 100%;
	vertical-align: bottom;
}
/* font */
.zn_r {
	font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 400;
}
.zn_m {
	font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
}
.zn_b {
	font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
}

/* fade */
.fadeUpTrigger {
	opacity: 0;
}
/* fadeup */
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1.6s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
  from {
	opacity: 0;
	transform: translateY(180px);
  }
  to {
	opacity: 1;
	transform: translateY(0);
  }
}

/* zoomIn */
.zoomIn {
  animation-name: zoomInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes zoomInAnime {
  from {
  transform: scale(.3);
  opacity: 0;
  }
  to {
	transform: scale(1);
	opacity: 1;
  }
}
.zoomInTrigger {
	opacity: 0;
}

/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 500;
	width: 100%;
}
header .h_inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}
header.is-animation {
	background-position: top center;
	background-color: rgba(255, 255, 255, 0.95);
	transition: 1s;
	box-shadow: 0 2px 13px rgba(0, 0, 0, 0.2);
}
header.is-animation .h_inner {
	height: 90px;
}

header .h_inner .left .logoArea {
	background-color: #fff;
	padding: 46px 56px;
	border-bottom-right-radius: 16px;
}
header.is-animation .h_inner .left .logoArea {
	padding: 18px 56px;
	background-color: transparent;
}
header .h_inner .left .logoArea .logo a {
	display: inline-block;
	padding-left: 66px;
	position: relative;
}
header .h_inner .left .logoArea .logo a:before {
	content: url("../img/common/logo.svg");
	position: absolute;
	top: 0;
	left: 0;
	width: 58px;
	height: 54px;
}
header .h_inner .left .logoArea .logo a span {
	display: block;
	line-height: 1;
}
header .h_inner .left .logoArea .logo a .company {
	font-size: 26px;
}
header .h_inner .left .logoArea .logo a .sm {
	font-size: 16px;
	padding-bottom: 6px;
}
header .h_inner .left .logo a:hover {
	opacity: 0.7;
}
header .h_inner .right {
	height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-right: 40px;
}
header.is-animation .h_inner .right {
	height: 90px;
}
header .h_inner .right .global-nav {
	padding-top: 16px;
}
header.is-animation  .h_inner .right .global-nav {
	padding-top: 0;
}
header .h_inner .right .global-nav .global-nav_list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .h_inner .right .global-nav .global-nav_list li {
	margin: 0 16px;
}
header .h_inner .right .global-nav .global-nav_list li a {
	text-align: center;
	color: #000;
	font-size: 18px;
}
header .h_inner .right .global-nav .global-nav_list li a:hover {
	color: #ff6800;
	cursor: pointer;
}
header .h_inner .right .global-nav .global-nav_list li ul {
	display: block;
}
header .h_inner .right .global-nav .global-nav_list .has-child {
	position: relative;
}
header .h_inner .right .global-nav .global-nav_list .has-child ul {
  position: absolute;
  left: 50%;
	transform: translateX(-50%);
  top: 36px;
  z-index: 4;
  background:#fff;
  width: 180px;
  visibility: hidden;
  opacity: 0;
	transition: all .3s;
	padding: 10px;
	border-radius: 10px;
	border: 1px solid #edebf0;
	filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.3));
}
header .h_inner .right .global-nav .global-nav_list .has-child:hover > ul,
header .h_inner .right .global-nav .global-nav_list .has-child:active > ul {
  visibility: visible;
  opacity: 1;
}
header .h_inner .right .global-nav .global-nav_list .has-child ul li {
  color: #000;
  border-bottom: 1px dotted #666;
	margin: 0;
}
header .h_inner .right .global-nav .global-nav_list .has-child ul li:last-of-type {
  color: #000;
  border-bottom: 1px dotted transparent;
	margin: 0;
}
header .h_inner .right .global-nav .global-nav_list .has-child ul li a {
  color: #000;
	font-size: 15px;
	padding: 6px 0px;
	display: block;
}
header .h_inner .right .global-nav .global-nav_list .has-child ul li a:hover,
header .h_inner .right .global-nav .global-nav_list .has-child ul li a:active {
  color: #ff6800;
}

/* fixBtn */
.fixBtn {
  position: fixed;
  z-index: 50;
  transition: all 0.3s;
  display: block;
  text-align: center;
	top: 216px;
  right: 0;
}
.fixBtn li:first-of-type {
	margin-bottom: 16px;
}
.fixBtn li {
	width: 62px;
	height: 200px;
  display: block;
	border-top-left-radius: 16px;
	border-bottom-left-radius: 16px;
}
.fixBtn li a {
	width: 100%;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	background-color: #ff6800;
	border-top-left-radius: 16px;
	border-bottom-left-radius: 16px;
	border-top: 1px solid #ff6800;
	border-left: 1px solid #ff6800;
	border-bottom: 1px solid #ff6800;
}
.fixBtn li a span {
	display: block;
	padding-right: 10px;
	font-size: 20px;
	line-height: 1.2;
	text-align: center;
	color: #fff;
}
.fixBtn li a:hover {
  background-color: #fff;
}
.fixBtn li a:hover span {
	color: #ff6800;
}

/* btn */
.btn_move {
	width: 200px;
	position: relative;
	overflow: hidden;
	display: block;
	padding: 18px 0;
	font-size: 16px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	transition: ease .3s;
	background-color: #fff;
	border: 1px solid #ff6800;
	text-align: center;
	line-height: 1;
	letter-spacing: 0;
}
.btn_move span {
  position: relative;
	color: #000;
}
.btn_move:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease-in-out;
  background: #ff6800;
}
.btn_move:hover:before {
	width: 100%;
	height: 100%;
	color: #000;
}

/* footer */
footer {
	position: relative;
padding-top: 12vw;
margin-bottom: 50px;
}
footer:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-image: url("../img/common/f_txt_bg.svg");
	background-repeat: repeat-x;
	background-position: top center;
	aspect-ratio: 1507/74;
}
footer .f_Area {
	padding-left: 56px;
	padding-right: 56px;
	max-width: 100%;
	margin: 0 auto;
}
footer .f_Area .f_link {
	padding-top: 30px;
	padding-left: 106px;
}
footer .f_Area .f_link a {
	color: #ff6800;
	text-decoration: underline;
	font-size: 16px;
	font-weight: 700;
}
footer .f_Area .f_link a span {
	font-size: 20px;
}
footer .f_Area .f_link a:hover {
	color: #000;
}
footer .f_Area .f_inner {
	background-color: #ff6800;
	border-radius: 12rem;
	padding: 66px 90px 66px 106px;
}
footer .f_Area .f_inner .item {
	max-width: 2000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer .f_Area .f_inner .item .left {
	width: 356px;
}
footer .f_Area .f_inner .item .left .f_logo {
	background-color: #fff;
	padding: 26px;
	border-radius: 6rem;
}
footer .f_Area .f_inner .item .left .f_logo a {
	display: block;
}
footer .f_Area .f_inner .item .left .f_logo a .company {
	position: relative;
	font-size: 20px;
	line-height: 1.4;
	padding-left: 56px;
	display: block;
}
footer .f_Area .f_inner .item .left .f_logo a .company:before {
	content: url("../img/common/logo.svg");
	position: absolute;
	top: 0;
	left: 0;
	width: 49px;
	height: 45px;
}
footer .f_Area .f_inner .item .left .f_logo a .sm {
	display: block;
	font-size: 13px;
}
footer .f_Area .f_inner .item .right .f_nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
footer .f_Area .f_inner .item .right .f_nav li {
	margin: 0 16px;
	text-align: center;
}
footer .f_Area .f_inner .item .right .f_nav li a {
	color: #fff;
}
footer .f_Area .f_inner .item .right .f_nav li a:hover {
	color: #000;
}
footer .copy {
	position: fixed;
	top: 298px;
	left: 38px;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	font-size: 11px;
}
@media screen and (max-width: 1900px) {
/* footer */
	footer .f_Area .f_inner {
		background-color: #ff6800;
		border-radius: 12rem;
		padding: 66px 40px 66px 50px;
	}
	footer .f_Area .f_link {
    padding-left: 50px;
	}
	footer .f_Area .f_inner .item .right .f_nav li {
		margin: 0 10px;
	}
}
@media screen and (max-width: 1700px) {
	/* footer */
	footer .f_Area .f_inner .item .right .f_nav li a {
	font-size: 16px;
	}
}
@media screen and (max-width: 1600px) {
/* header */
	header .h_inner .right {
		height: 80px;
	}
	header .h_inner .right .global-nav {
		padding-top: 10px;
	}
	.fixBtn {
		top: 186px;
	}

/* footer */
	footer .copy {
		top: 284px;
		left: 28px;
	}
}

@media screen and (max-width: 1500px) {
/* header */
.fixBtn {
    top: 156px;
	}
/* footer */
	footer .f_Area .f_inner {
		background-color: #ff6800;
		border-radius: 12rem;
		padding: 66px 20px 66px 34px;
	}
	footer .f_Area .f_link {
    padding-left: 34px;
}
	footer .f_Area .f_inner .item .right .f_nav li {
		margin: 0 6px;
	}
	footer .f_Area .f_inner .item .right .f_nav li a {
		font-size: 15px;
	}
	footer .copy {
    top: 254px;
	}
}

@media screen and (max-width: 1450px) {
	body {
	font-size: 16px;
	}
}

@media screen and (max-width: 1400px) {
/* header */
	header .h_inner .left .logoArea {
		padding: 36px 20px 36px 10px;
	}
	header.is-animation .h_inner .left .logoArea {
		padding: 18px 20px 18px 10px;
	}
	header .h_inner .left .logoArea .logo a .company {
		font-size: 20px;
	}
	header .h_inner .right {
		padding-right: 14px;
	}
	header .h_inner .right .global-nav .global-nav_list li {
		margin: 0 10px;
	}
	header .h_inner .right .global-nav .global-nav_list li a {
		font-size: 15px;
	}
	.fixBtn {
    top: 126px;
	}

/* footer */
	footer .f_Area {
		padding-left: 50px;
		padding-right: 50px;
	}
	footer .f_Area .f_inner {
		padding: 66px 10px 56px 24px;
	}
	footer .f_Area .f_link {
    padding-left: 24px;
	}
	footer .f_Area .f_inner .item .left {
		width: 300px;
	}
	footer .f_Area .f_inner .item .left .f_logo {
		padding: 20px;
	}
	footer .f_Area .f_inner .item .left .f_logo a .company {
		font-size: 16px;
	}
	footer .f_Area .f_inner .item .right {
		width: calc(100% - 300px);
	}
	footer .f_Area .f_inner .item .right .f_nav li {
		margin: 0 0 10px;
		width: calc(25%);
	}
	footer .f_Area .f_inner .item .right .f_nav li a {
		font-size: 13px;
	}
	footer .copy {
		top: 224px;
	}
}

@media screen and (max-width: 1200px) {
/* header */
	.fixBtn {
    top: 96px;
	}

/* footer */
	footer .f_Area .f_inner {
		border-radius: 8rem;
		padding: 66px 20px 56px 20px;
	}
	footer .f_Area .f_link {
    padding-left: 20px;
	}
	footer .f_Area .f_inner .item .right .f_nav li {
		width: calc(50%);
	}
	footer .f_Area .f_inner .item .right .f_nav li a {
		font-size: 14px;
	}
	footer .copy {
		top: 194px;
	}
}

@media screen and (max-width: 1000px) {
	body {
		font-size: 14px;
	}
	/* 共通 */
	.inner {
		width: 100%;
		max-width: 100%;
	}
	/*header*/
	header {
		position: fixed;
	background-color: rgba(255, 255, 255, 0.9);
		box-shadow: 0 2px 13px rgb(0 0 0 / 20%);
	}
	header .h_inner {
		width: 100%;
		height: 70px;
		padding: 0 16px 0;
		align-items: center;
	}
	header .h_inner.is-animation {
		box-shadow: 0 0 0 rgb(0 0 0 / 0%);
		background-color: rgba(0, 0, 0, 0);
	}
	header.is-animation .h_inner {
		height: 70px;
	}
	header .h_inner .left .logoArea {
    padding: 0;
		background-color: transparent;
	}
	header.is-animation .h_inner .left .logoArea {
		padding: 0;
		background-color: transparent;
	}
	header .h_inner .left .logoArea .logo a .company {
		font-size: 16px;
	}
	header .h_inner .left .logoArea .logo a .sm {
		font-size: 14px;
	}
	header .h_inner .left .logoArea .logo a:before {
		width: 38px;
		height: 34px;
	}
	header .h_inner .left .logoArea .logo a {
		display: inline-block;
		padding-left: 44px;
		position: relative;
	}
	.global-nav {
		position: fixed;
		right: -320px;
		top: 0;
		width: 300px;
		height: 100vh;
		padding-top: 40px;
		background-color: rgba(255, 255, 255, 0.95);
		transition: all .6s;
		z-index: 9999;
		overflow-y: auto;
	}
	header .h_inner .right {
    height: inherit;
		padding-right: 0;
	}
	header .h_inner .right .global-nav {
    padding-top: 0;
	}
	header .h_inner .right .global-nav .global-nav_list {
		display: block;
		padding: 40px 20px;
	}
	header .h_inner .right .global-nav .global-nav_list li {
		border-bottom: 1px dotted #666;
		margin: 0;
	}
	header .h_inner .right .global-nav .global-nav_list li a {
		padding: 16px 0 16px 40px;
		display: block;
		text-align: left;
		color: #000;
		font-size: 1rem;
	}
	header .h_inner .right .global-nav .global-nav_list li a:hover {
		color: #000;
	}
	header .h_inner .right .global-nav .global-nav_list .has-child {
		border-top: none;
	}
	header .h_inner .right .global-nav .global-nav_list .has-child ul li {
		border-top: 1px dotted #666;
		border-bottom: none;
	}
	header .h_inner .right .global-nav .global-nav_list li a {
		font-size: 1rem;
		display: block;
		padding: 20px 0;
		text-align: left;
	}
	header .h_inner .right .global-nav .global-nav_list .has-child ul {
		position: relative;
		left: 0;
		transform: translateX(0);
		top: 0;
		width: 100%;
		visibility: visible;
		opacity: 1;
		/* display: none; */
		border-radius: 0;
		border: none;
		filter: none;
		z-index: inherit;
		background: transparent;
		padding: 0;
		border-bottom: none;
		margin: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height .3s ease-in-out;
	}
	header .h_inner .right .global-nav .global-nav_list .has-child.active > ul {
		max-height: 260px;
		transition: max-height .3s ease-in-out;
	}
	header .h_inner .right .global-nav .global-nav_list .has-child ul li a {
		font-size: 0.9rem;
		padding: 16px 16px 16px 36px;
		text-align: left;
		position: relative;
	}
	header .h_inner .right .global-nav .global-nav_list .has-child ul li a:before {
		content: "-";
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
	}
	header .h_inner .right .global-nav .global-nav_list .has-child:before {
		content: "";
		position: absolute;
		right:20px;
		top: 25px;
		width: 6px;
		height: 6px;
		border-top: 2px solid #666;
		border-right: 2px solid #666;
		transform: rotate(135deg);
	}
header .h_inner .right .global-nav .global-nav_list .has-child.active:before {
		transform: rotate(-45deg);
	}

/* hamburgeメニュー */
	.hamburger {
		position: absolute;
		right: 16px;
		top: 18px;
		width: 32px;
		height: 30px;
		cursor: pointer;
		z-index: 9999;
	}
	.hamburger_line {
		position: absolute;
		right: 0;
		height: 2px;
		background-color: #000;
		transition: all .6s;
	}
	.hamburger_line1 {
		top: 6px;
		width: 30px;
	}
	.hamburger_line2 {
		top: 14px;
		width: 30px;
	}
	.hamburger_line3 {
		top: 22px;
		width: 30px;
	}
	.nav-open .global-nav {
		right: 0;
	}
	.nav-open .hamburger_line1 {
		transform: rotate(45deg);
		top: 16px;
		width: 32px;
	}
	.nav-open .hamburger_line2 {
		width: 0;
		left: 50%;
	}
	.nav-open .hamburger_line3 {
		transform: rotate(-45deg);
		top: 16px;
		width: 32px;
	}

/* footer */
	footer {
		padding-bottom: 70px;
	}
	footer .f_Area {
		padding-left: 6vw;
		padding-right: 6vw;
	}
	footer .f_Area .f_inner {
		border-radius: 2rem;
		padding: 42px 20px 30px 20px;
	}
	footer .f_Area .f_link {
    padding-top: 16px;
	}
	footer .f_Area .f_link a {
		font-size: 13px;
	}
	footer .f_Area .f_link a span {
    font-size: 16px;
	}
	footer .f_Area .f_inner .item {
		width: 100%;
		display: block;
	}
	footer .f_Area .f_inner .item .right {
		width: 100%;
	}
	footer .f_Area .f_inner .item .left {
		width: 100%;
		padding-bottom: 36px;
	}
	footer .f_Area .f_inner .item .left .f_logo {
		width: 300px;
		margin: 0 auto;
	}
	footer .copy {
		position: absolute;
		top: auto;
		bottom: 36px;
		left: 50%;
		width: 100%;
		height: inherit;
    text-align: center;
		transform: translateX(-50%);
		-ms-writing-mode: horizontal-tb;
		-webkit-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
	}
	footer .f_subNav {
    height: 70px;
    background-color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
		box-shadow: 0 2px 13px rgb(0 0 0 / 20%);
  }
  footer .f_subNav .f_inner {
    width: 100%;
    height: 70px;
		display: flex;
		justify-content: space-between;
		align-items: center;
  }
  footer .f_subNav .f_inner li {
		width: calc(50%);
    height: 70px;
	}
  footer .f_subNav .f_inner li:first-of-type {
		position: relative;
	}
  footer .f_subNav .f_inner li:first-of-type::before{
		content: "";
		position: absolute;
		right: -1px;
		top: 0;
		width: 1px;
		height: 100%;
		background-color: #ff6800;
		z-index: 2;
	}
  footer .f_subNav .f_inner li a {
		display: block;
    height: 70px;
		text-align: center;
		font-weight: 700;
		color: #ff6800;
		font-size: 13px;
		line-height: 1.2;
		position: relative;
		background-color: #fff;
  }
  footer .f_subNav .f_inner li:first-of-type a {
		padding-top: 50px;
  }
  footer .f_subNav .f_inner li:nth-of-type(2) a {
		padding-top: 50px;
  }
	footer .f_subNav .f_inner li a:before {
		content: "";
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
		width: 100%;
	}
	footer .f_subNav .f_inner li:first-of-type a:before {
		background-image: url("../img/common/f_nav01.svg");
		height: 26px;
		top: 12px;
		}
	footer .f_subNav .f_inner li:nth-of-type(2) a:before {
		background-image: url("../img/common/f_nav02.svg");
		height: 30px;
		top: 12px;
	}
}

@media screen and (max-width: 600px) {
/* header */
	header .h_inner .left .logoArea .logo a .company {
	font-size: 14px;
	}
	header .h_inner .left .logoArea .logo a .sm {
	font-size: 13px;
	padding-bottom: 5px;
}

/* footer */
	footer .f_Area .f_inner {
		border-radius: 1rem;
		padding-left: 16px;
		padding-right: 16px;
	}
	footer .f_Area .f_link {
    text-align: center;
		padding-left: 0;
	}
	footer .f_Area .f_link a {
    font-size: 12px;
	}
	footer .f_Area .f_inner .item .left .f_logo {
		width: 100%;
		padding: 12px;
	}
	footer .f_Area .f_inner .item .left .f_logo a .company {
		font-size: 14px;
		padding-left: 44px;
	}
	footer .f_Area .f_inner .item .left .f_logo a .c_width {
		max-width: 230px;
		margin: 0 auto;
		display: flex;
		justify-content: center;
	}
	footer .f_Area .f_inner .item .left .f_logo a .company:before {
		width: 39px;
		height: 35px;
	}
	footer .f_Area .f_inner .item .right .f_nav {
		display: block;
	}
	footer .f_Area .f_inner .item .right .f_nav li {
		width: 100%;
		padding-bottom: 10px;
		border-bottom: 1px dotted #fff;
	}
	footer .f_Area .f_inner .item .right .f_nav li a {
		display: block;
	}
}

@media screen and (max-width: 340px) {
/* header */
	header .h_inner .left .logoArea .logo a .company {
		letter-spacing: -0.02em;
		}
	.global-nav {
		right: -300px;
		width: 280px;
	}

/* footer */
footer .f_Area .f_inner .item .left .f_logo a .company {
		letter-spacing: -0.02em;
	}
}
