@charset "utf-8";

:root {
	--main-color: #007a88;
	--sub-color: #fff500;

	--fontG: 'Noto Sans JP','sans-serif';
	--fontM: 'Noto Serif JP','serif';

	--fs-16: 1.6rem;
	--main-txt: 2rem;
	--fs-24: 2.4rem;
	--fs-32: 3.2rem;
	--fs-48: 4.8rem;

	--space-01: 3rem;
}

@media screen and (max-width: 767px) {
  :root {

		--fs-16: 1.4rem;
    --main-txt: 1.4rem;
		--fs-24: 1.8rem;
		--fs-32: 2.4rem;
		--fs-48: 2.8rem;

    --wid-1024: 90%;

		--space-01: 3rem;
  }
}

/* ページ内リンクの移動を滑らかに */
html {
	scroll-behavior: smooth;
}

.pc_block {
	display: block;
}
.sp_block {
	display: none;
}

body {
	font-size: var(--main-txt);
	line-height: 1.8;
	font-family: var(--fontG);
	letter-spacing: 0;
	font-weight: 400;
}
.bold{
	font-weight: 600;
}

.indent{
	text-indent: -1em;
	padding-left: 1em;
}
.span_indent{
	display: block;
	text-indent: -1em;
	padding-left: 1em;
}

a:hover{
	opacity: .7;
}

@media screen and (max-width: 1279px) {
	body {
		width: 1280px;
	}
}
@media screen and (max-width: 767px) {
	html {
		scroll-behavior: smooth;
		scroll-padding-top: 60px;
	}
	body {
		width: 100%;
	}
	.pc_block {
		display: none;
	}
	.sp_block {
		display: block;
	}
	main{
		margin-top: 60px;
	}
}

/* 共通リンク
======================================================= */
.common_link{
	background: var(--sub-color);
	max-width: 370px;
	width: 100%;
	margin: auto;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border: 1px solid #000;
	border-radius: 50px;
	gap: 1rem;
	transition: .5s background;

	&::after {
		content: "";
		position: absolute;
		display: flex;
		right: 30px;
		width: 15px;
		height: 15px;
		border-top: 4px solid #000;
		border-right: 4px solid #000;
		transform: rotate(45deg);
		z-index: 1;
	}
	&:hover {
		opacity: 1;
		transition: .5s background;
		background: color-mix(in srgb, #fffa85 25%, white);
	}
}

.under_link{
	text-decoration: underline;
	text-underline-offset: 0.2em;

	&:hover {
		text-decoration: none;
	}
}

@media screen and (max-width: 767px){
	.common_link{
		width: 240px;
		height: 45px;
		&::after {
			right: 5%;
			width: 8px;
			height: 8px;
			border-top: 2px solid #000;
			border-right: 2px solid #000;
		}
	}
}

.y_maker{
	background: yellow;
}

/* headers
======================================================= */
header{
	width: 100%;
	height: 100px;
	background: #fff;
}
.hd_inner{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10rem;
	height: 100%;
}
.hd_r{
	display: flex;
	gap: 3rem;
	text-align: center;
	line-height: 1.3;

	li {
		line-height: 1.3;
		font-size: var(--fs-16);
	}

	.en_tt{
		color: #007a88;
	}
}
.hd_cont{
	font-size: var(--fs-16);
	color: var(--main-color);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;

	.hd_link{
		width: 230px;
		margin: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		border: 1px solid var(--main-color);
		border-radius: 50px;
		gap: 1rem;
		color: var(--main-color);

		&::after {
			content: "";
			position: absolute;
			display: flex;
			right: 10px;
			width: 8px;
			height: 8px;
			border-top: 2px solid var(--main-color);
			border-right: 2px solid var(--main-color);
			transform: rotate(45deg);
			z-index: 1;
		}
	}

	p {
		display: flex;
		align-items: center;
		gap: 1rem;
		&::before,
		&::after{
			content: "";
			height: 20px;
			width: 2px;
			display: flex;
			background: var(--main-color);
		}
		&::before{
			transform: rotate(-20deg);
		}
		&::after{
			transform: rotate(20deg);
		}
	}
}

.sp_nav--btn,.drawer-nav{
	display: none;
}
@media screen and (max-width: 767px){

	header{
		height: 60px;
		position: fixed;
		z-index: 9999;
		top: 0;

		h1 img{
			padding-inline: 10%;
		}
	}

	.hd_r,.hd_cont{
		display: none;
	}

	/* ------------------
	ハンバーガーメニュー
	------------------ */
	#toggleBtn, #drawer {
		display: block;
	}
	#toggleBtn:hover {
		opacity: 1;
	}
	#drawer:hover {
		opacity: 1;
	}
	.sp_nav--btn{
		position: absolute;
		width: 60px;
		height: 60px;
		background: var(--main-color);
		border: none;
		right: 0;
		top: 0;
		transition: all 0.5s;
	}
	.sp_nav--btn span {
		position: absolute;
		display: block;
		height: 2px;
		background: #fff;
		margin: auto;
	}

	.sp_nav--btn[aria-pressed="false"] span {width: 35px;transition: all 0.5s;}
	.sp_nav--btn[aria-pressed="false"] span:nth-child(1) {top: 40px;left: 0;right: 0;}
	.sp_nav--btn[aria-pressed="false"] span:nth-child(2) {top: 50%;left: 0;right: 0; transform: translateY(-50%);}
	.sp_nav--btn[aria-pressed="false"] span:nth-child(3) {bottom: 40px;left: 0;right: 0;margin: auto;}

	.sp_nav--btn[aria-pressed="true"] {right: 240px;}
	.sp_nav--btn[aria-pressed="true"] span {width: 30px;transition: all 0.5s;}
	.sp_nav--btn[aria-pressed="true"] span:nth-child(1) {top: 48%;transform: translateY(-1.5px) rotate(45deg);background: #fff;left: 15px;}
	.sp_nav--btn[aria-pressed="true"] span:nth-child(2) {display: none;}
	.sp_nav--btn[aria-pressed="true"] span:nth-child(3) {bottom: 53%;transform: translateY(1.5px) rotate(-45deg);background: #fff;left: 15px;}

	.drawer-nav {
		position: fixed;
		height: 100vh;
		width: 240px;
		top: 0;
		right: 0;
		color: #000;
		display: flex;
		z-index: 99;
		overflow: scroll;
		transition: all 0.5s;
		background: var(--main-color);;
	}
	.drawer-nav[aria-hidden="true"] {
		visibility: hidden;
		pointer-events: none;
		transform: translateX(100%);
		overflow-y: scroll;
	}
	.drawer-nav[aria-hidden="false"] {
		visibility: visible;
		transform: translateX(0);
	}
	.drawer-menu {
		width: 100%;
		padding-bottom: 100px;
	}
	.drawer_list--item {
		border-bottom: 1px solid #fff;
		background: var(--main-color);
		position: relative;
		z-index: 3;
	}
	.drawer_list--item.third {
		margin: 0;
	}
	.drawer-dropdown-menu-item {
		border-bottom: 1px solid #fff;
		position: relative;
		z-index: 2;
	}
	.drawer-menu-item, .drawer-dropdown-menu-item {
		color: #fff;
		padding: 10px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		height: 100%;
	}
	.drawer-dropdown-menu-item {
		width: auto;
	}
	.drawer-menu-item[aria-expanded="false"]::after {
		content: "";
		display: inline-block;
		width: 0;
		height: 0;
		border-left: 7px solid #fff;
		border-top: 4px solid transparent;
		border-bottom: 4px solid transparent;
	}
	.drawer-menu-item[aria-expanded="true"]::after {
		content: "";
		display: inline-block;
		width: 0;
		height: 0;
		border-left: 4px solid transparent;
		border-right: 4px solid transparent;
		border-top: 7px solid #fff;
	}
	.drawer-menu-item[aria-expanded="false"] + .drawer-dropdown-menu {
		overflow: hidden;
		max-height: 0;
		transition: max-height ease-in;
	}
	.drawer-menu-item[aria-expanded="true"] + .drawer-dropdown-menu {
		max-height: 9999px;
		transition: max-height ease-in;
	}
	.drawer-dropdown-menu {
		background: #666;
		width: 100%;
		margin: 0 0 0 auto;
	}
	.cp_cont {
		display: flex;
		z-index: 5;
		height: 70px;
		justify-content: space-between;
		align-items: center;
		position: absolute;
		max-width: 25%;
		width: 100%;
		right: 0;
	}
	.cp_cont *,
	.cp_cont *:before,
	.cp_cont *:after {
		padding: 0;
		margin: 0;
	}
	.cp_logo {
		max-height: 50px;
		display: flex;
		align-items: center;
	}
	.cp_logo a,
	.cp_logo img {
		max-height: 50px;
		width: auto;
		display: flex;
		align-items: center;
	}
	.cp_offcm01 {
		position: absolute;
		top: 0px;
		right: 0px;
		display: inline-block;
		z-index: 99999;
	}

	.cp_offcm01 .cp_menu {
		position: fixed;
		top: 0;
		right: -100vw;
		width: 300px;
		height: 100%;
		cursor: pointer;
		-webkit-transition: 0.4s transform;
		transition: 0.4s transform;
		background-color: #000;
		opacity: 1;
		z-index: 99999;
	}
	.cp_offcm01 .cp_menu ul.ff_ul {
		position: relative;
		margin-top: 35px;
		padding: 0;
		padding-bottom: 200px;
	}
	.cp_offcm01 .cp_menu ul.ff_ul::after {
		content: '';
		position: absolute;
		background: url("../img/eco_mark_sp.svg")no-repeat center;
		background-size: cover;
		width: 100px;
		height: 100px;
		right: 0;
		left: 0;
		margin: auto;
		bottom: 4.5em;
	}
	.cp_lang a {
		background: #fff;
		color: #000;
		font-weight: bold;
		font-size: 1.4rem;
		padding: 3px 10px;
		margin: 0 15px 60px;
		display: inline-block;
	}
	.cp_offcm01 .cp_menu li.pshm_title {
		padding: 35px 20px 13px;
		color: #fff;
		height: 33px;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li a {
		display: block;
		padding: 12px 20px;
		text-decoration: none;
		color: #fff;
		border-bottom: 1px solid #ccc;
		font-weight: bold;
		font-size: 1.5rem;
	}
	
	.cp_offcm01 .cp_menu ul.ff_ul li ul.sf_ul li a {
		color: #000;
		border-bottom: 1px dashed #ccc;
		background: #fff;
	}
	
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li .ac_radio {
		display: none;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul {
		overflow: hidden;
		max-height: 0;
		transition: max-height 0s ease-in;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li .ac_radio:checked + ul.sf_ul {
		max-height: 9999px;
		transition: max-height 1s ease-in;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li a {
		padding: 5px 15px 5px 45px;
		text-decoration: none;
		color: #ffffff;
		border-bottom: 1px dashed #e6e6e6;
		background: #686c77;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_li ul.sf_ul li.sf_li:last-child a {
		border-bottom: none;
	}
	.cp_offcm01 #cp_toggle01 {
		position: absolute;
		display: none;
		opacity: 0;
	}
	.cp_offcm01 #cp_toggle01:checked ~ .cp_menu {
		-webkit-transform: translateX(-100vw);
		transform: translateX(-100vw);
		overflow-y: auto;
		-webkit-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
		-moz-box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
		box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
	}

	.cp_offcm01 #cp_toggle01 ~ label {
		position: relative;
		z-index: 999999;
		display: block;
		height: 70px;
		width: 70px;
		cursor: pointer;
		-webkit-transition: 0.4s transform;
		transition: 0.4s transform;
		text-align: center;
		color: #fff;
		margin: 0 auto;
		background: #000;
	}
	.cp_offcm01 #cp_toggle01 ~ label::before, .cp_offcm01 #cp_toggle01:checked ~ label::before {
		content: "MENU";
		vertical-align: middle;
		display: inline-block;
		color: #fff;
		bottom: 40px;
		left: 0;
		position: absolute;
		width: 100%;
		text-align: center;
		font-size: 1.1rem;
		font-weight: bold;
	}
	.cp_offcm01 #cp_toggle01:checked ~ label::before {
		content: "CLOSE";
	}
	.cp_offcm01,
	.cp_offcm01 span {
		display: inline-block;
		transition: all 0.4s;
		box-sizing: border-box;
	}
	.cp_offcm01 {
		position: fixed;
		right: 0px;
		top: 0px;
		width: 70px;
		height: 70px;
		padding: 0;
		background-color: #ffffff;
	}
	.cp_offcm01 span {
		position: absolute;
		right: auto;
		left: 23px;
		width: 24px;
		border-radius: 1px;
		height: 2px;
		background-color: #ffffff;
	}
	.cp_offcm01 span:nth-of-type(1) {
		top: 34px;
	}
	.cp_offcm01 span:nth-of-type(2) {
		top: 42px;
	}
	.cp_offcm01 span:nth-of-type(3) {
		top: 50px;
	}
	.cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(1) {
		-webkit-transform: translateY(20px) rotate(-45deg);
		transform: translateY(20px) rotate(-45deg);
		background-color: #fff;
		top: 23px;
	}
	.cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(2) {
		opacity: 0;
		background-color: #000;
	}
	.cp_offcm01 #cp_toggle01:checked ~ label span:nth-of-type(3) {
		-webkit-transform: translateY(-20px) rotate(45deg);
		transform: translateY(-20px) rotate(45deg);
		background-color: #fff;
		top: 63px;
	}
	
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_switch .ff_name {
		display: block;
		padding: 12px 20px;
		text-decoration: none;
		color: #000;
		border-bottom: 1px solid #ccc;
		font-weight: bold;
		font-size: 1.5rem;
		position: relative;
	}
	.cp_offcm01 .cp_menu ul.ff_ul li.ff_switch .ff_name::after {
		content: '';
		position: absolute;
		display: block;
		width: 10px;
		height: 10px;
		border-bottom: 2px solid #fff;
		border-right: 2px solid #fff;
		top: calc(50% - 5px);
		right: 25px;
		transform: rotate(45deg);
		transition: .3s;
	}
}

/* footer
======================================================= */
.footer{
	background: #000;
	padding-block: var(--space-01);
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 3rem;
	justify-content: center;
}
.ft_inner{
	width: 90%;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.ft_flex{
	display: flex;
	justify-content: center;
	gap: 1rem;

	p.ft_tt{
		display: flex;
		align-items: center;
		gap: 1rem;
	}

	p.ft_tt::after{
		content: "";
		background: #fff;
		width: 40px;
		height: 1px;
	}
}
.ft_flex:has(address){
	gap: 6rem;
}
.ft_telbox{
	display: flex;
	justify-content: center;
	gap: 2rem;

	a {
		color: #fff;
	}
}

.copyright{
	color: #fff;
	font-size: 1.6rem;
	text-align: center;
	letter-spacing: 0;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width: 767px){

	.ft_inner{
		gap: 1rem;
	}
	.ft_flex {
		p.ft_tt::after {
			width: 20px;
		}
	}
	.ft_flex:has(address){
		gap: 1rem;
		flex-direction: column;
		text-align: center;
		p.ft_tt::after{
			width: 0;
		}
		p.ft_tt{
			justify-content: center;
		}
		
	}

	.ft_flex{
		gap: 1rem;
	}

	.ft_telbox{
		flex-direction: column;
		gap: 1rem;
	}
}


/* モーダル
======================================================= */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}

.modal-content {
  background: #fff;
  overflow-y: auto;
  padding: 50px;
  max-width: 1024px;
  width: 90%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  transform: translate(-50%, -50%);
  animation: show 0.6s linear 0s;
  filter: drop-shadow(0px 2px 6px #777);

	p {
		font-size: var(--fs-16);
	}

	h3 {
		font-weight: bold;
		font-size: var(--font-24);
		padding-bottom: 2rem;
	}
}
.modal-top {
  position: absolute;
  right: 15px;
  top: 15px;
}
.modal-close {
  color: #aaa;
  text-decoration: none;
  font-size: 4rem;
  line-height: 1;
  padding: 0 8px;
}
.modal-close:hover, .modal-close:focus {
  text-decoration: none;
  cursor: pointer;
}


@keyframes show{
  from{
      opacity: 0;
  }
  to{
      opacity: 1;
  }
}

@media screen and (max-width: 767px){
	.modal-content {
		top: 0;
		transform: translate(-50%, 0%);
		padding: 3rem 5%;
	}
	.modal-close{
		font-size: 2rem;
	}
}

/* mv
======================================================= */
.mv {
	position: relative;
	overflow: hidden;
}
.mv_top{
	background: var(--sub-color);
	padding: 1.5rem 5%;
	text-align: center;
	font-size: var(--fs-24);
}
.mv_bot {
	background: #057887 url(../img/mv_bg.png) bottom no-repeat;
	height: 560px;
	position: relative;

	.common_link{
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
}
.mv_bot--text{
	width: 100%;
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	display: flex;
	align-items: self-start;
	justify-content: center;
	gap: 2rem;
	z-index: 2;

	figure {
		position: relative;
		top: 6rem;
	}
}
.mv_bot--tt{
	display: flex;
	flex-direction: column;
	gap: 2rem;

	.mk01{
		position: relative;
		&::after{
			content: "";
			background: url(../img/mv_m01.png) no-repeat center/contain;
			display: flex;
			width: 414px;
			height: 86px;
			position: absolute;
			right: -1rem;
			top: -1.5rem;
		}
	}
	.mk02{
		position: relative;
		&::after{
			content: "";
			background: url(../img/mv_m02.png) no-repeat center/contain;
			display: flex;
			width: 332px;
			height: 28px;
			position: absolute;
			right: -2rem;
			bottom: -3rem;
		}
	}
}
.mv_txt{
	font-size: 6rem;
	color: #fff;
	line-height: 1.3;
}
.mv_sub--txt{
	font-size: 3rem;
	color: #fff;
	line-height: 2.2;
}


@media screen and (min-width: 768px), print {
	.mv_load{
		position: absolute;
		bottom: 0;
		height: 48px;
		width: calc(50% - 40rem);
		background: #ccc;
	}
}
@media screen and (max-width: 767px){

	.mv_bot{
		height: auto;
		padding-bottom: 10rem;

		.common_link{
			width: 240px;
			bottom: -6rem;
		}
	}
	.mv_bot--text{
		position: static;
		transform: translate(0);
		width: 90%;
		margin: auto;
		padding: 2rem 0;
		figure {
			position: absolute;
			width: 50px;
			height: 230px;
			bottom: 0;
			top: auto;
			left: 0;
		}
	}

	.mv_bot--tt{

		.mk01{
			&::after{
				width: 250px;
				height: 60px;
			}
		}
		.mk02{
			&::after{
				width: 196px;
				height: 28px;
			}
		}
	}

	.mv_txt{
		font-size: 3rem;
	}
	.mv_sub--txt{
		font-size: 1.6rem;
		padding-left: 6rem;
	}

	.mv_load{
		position: absolute;
		bottom: 0;
		height: 25px;
		&::after{
			content: "";
			position: absolute;
			width: 0;
			height: 0;
			border-bottom: 25px solid #ccc;
			border-right: 50px solid transparent;
		}
	}
}

/* 黒レイアウト
======================================================= */
.black_conte{
	background: #000;
	padding-block: var(--space-01);
	color: #fff;

	.common_title{
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 2rem;
		position: relative;
		font-size: var(--fs-24);
		white-space: nowrap;
		&::before,
		&::after{
			content: "";
			background: #fff;
			display: flex;
			width: 100%;
			height: 1px;
		}
	}
}

/* ページトップ
======================================================= */
#backtop {
  position: fixed;
  display: block;
  width: 50px;
  height: 50px;
  right: 3%;
  bottom: 50px;
  border-radius: 50%;
  background: #000;
	border: 3px solid #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: -10;
}
#backtop::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(-25%) rotate(-45deg);
  top: 50%;
  left: 0;
  right: 0;
  margin-inline: auto;
}
#backtop.active {
  opacity: 0.6;
  visibility: visible;
  z-index: 50;
}

/* 私たちのこと
======================================================= */
.about_us--title{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;

	p {
		font-size: var(--fs-32);
		line-height: 1.5;
	}
}
.about_us--tt{
	text-align: center;
	line-height: 3;
}
.about_us{
	display: flex;
	flex-direction: column;
	gap: 3rem;
	.company_logo{
		text-align: center;
	}
}

@media screen and (max-width: 767px) {
	.about_us{
		padding: 3rem 5% 0;
	}
	.about_us--tt{
		line-height: 2.5;
	}

	.about_us--title{
		img {
			width: 180px;
		}
	}
}

/* 実績
======================================================= */
.achie_inner{
	display: flex;
	flex-direction: column;
	gap: 6rem;
}
.achie_box{
	display: flex;
	gap: 2rem;
	justify-content: center;
	padding-top: 4rem;
	line-height: 1.2;

	.achie_box--t{
		width: 260px;
		height: 260px;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 1rem;
		position: relative;

		&:nth-of-type(1){
			background: #007a88;
		}
		&:nth-of-type(2){
			background: #0f7575;
		}
		&:nth-of-type(3){
			background: #147568;
			.num {
				margin-bottom: 3rem;
			}
		}
		&:nth-of-type(4){
			background: #1a7556;
			.num {
				margin-bottom: 3rem;
			}
		}

		.num {
			font-size: var(--fs-48);
			border-bottom: 1px solid #fff;
			margin-bottom: 1rem;

			span {
				font-size: var(--fs-24);
			}
		}

		.po_text{
			position: absolute;
			width: 100%;
			bottom: calc(50% - 7rem);
			left: 50%;
			transform: translate(-50%, 50%);
			font-size: var(--fs-16);
		}
	}
}
.kome{
	display: inline-block;
	text-align: right;
	span {
		font-size: var(--fs-16);
	}
}
.achie_tt {
	max-width: 400px;
	width: 100%;
	margin: auto;
	font-size: var(--fs-16);
}
.achie_list{
	li {
		text-indent: -2em;
		padding-left: 2em;
	}
}
@media screen and (max-width: 767px){
	.achie_inner{
		gap: 3rem;
	}
	.achie_box{
		flex-wrap: wrap;
		padding-top: 2rem;
		gap: 1rem;

		.achie_box--t{
			width: calc(50% - 2rem);
			height: 160px;

			.po_text{
				bottom: calc(50% - 4.5rem);
			}
		}
	}
	.achie_tt{
		width: 90%;
		margin: auto;
	}
}

/* メディア
======================================================= */
.media{
	h3 {
		font-size: var(--fs-24);
		text-align: center;
	}
}
.med_inner{
	max-width: 810px;
	width: 90%;
	margin: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 4rem;
	padding-top: 4rem;
}
.mad_logo{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
}
@media screen and (max-width: 767px) {
	.mad_logo{
		p {
			width: calc(50% - 1rem);
		}
	}
}

.sp_fix--link {
	display: none;
}
@media screen and (max-width: 767px) {
	.sp_fix--link {
		display: flex;
		position: fixed;
		bottom: 0;
		z-index: 9;
		max-width: 100%;
		width: 100%;
		height: 60px;
		border-radius: 0;
	}
	#backtop {
		bottom: 60px;
	}
}



/* 印刷用設定
======================================================= */
@media print {
	body {
		width:1280px;
		zoom: 0.68;
	}
}
@page {
	size: A4;
	margin: 5px;
}