@charset "utf-8";

/* ページ内リンクの移動を滑らかに */
html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--hd-hight);
}

:root {
	--main-color: #00a040;
	--sub-color: #fff;

	--font-jp: 'Noto Sans JP';
	--font-en: 'Montserrat';
	--grade: linear-gradient(94deg, #eee7c8 -0.28%, #f3eeda 99.28%);
	--mixin: color-mix(in srgb, #00add9 100%, white);

	--main-txt: 1.6rem;
	--font-24: 2.4rem;
	--wid-1024: 1024px;
  --wid-328: 328px;
  --hd-hight: 80px; 

	--c1: #00add9;
	--c2: #00a040;
	--gradeC: linear-gradient(135deg, var(--c1), var(--c2));

	--d1: rgba(0, 173, 217, 0.25);
	--d2: rgba(0, 160, 64, 0.25);
	--gradeD: linear-gradient(135deg, var(--d1), var(--d2));

	--e1: rgba(0, 204, 255, 0.5);
	--e2: rgba(0, 160,  64, 0.5);
	--gradeE: linear-gradient(135deg, var(--e1), var(--e2));
}

@media screen and (max-width: 767px) {
  :root {
    --main-txt: 1.4rem;
		--font-24: 2rem;
    --wid-1024: 90%;
  }
}


body {
	font-size: var(--main-txt);
	line-height: 1.8;
	font-family:var(--font-jp);
	letter-spacing: 0;
	font-weight: 400;
}


a{
	transition: all .3s;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
}
.text-wrap {
	display: inline-block;
}
img {
	max-width: 100%;
	height: auto;
}

.pc_block {
	display: block;
}

.sp_block {
	display: none;
}

:target::before{
	content: '';
	margin-top: -60px;
	height: 60px;
	display: block;
	visibility: hidden;
}
/* ==========================
インデント
============================= */
.indent {
	text-indent: -1em;
	padding-left: 1em;
}
.indent_span{
	display: block;
	text-indent: -1em;
	padding-left: 1em;
}


/* アニメーション
======================================================= */
/* 初期は非表示 */
.fade [data-fade-title],
.fade [data-fade-rest] {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity .5s ease, transform .5s ease;
	will-change: opacity, transform;
}

/* 表示状態 */
.fade [data-fade-title].is-visible,
.fade [data-fade-rest].is-visible {
	opacity: 1;
	transform: none;
}

/* モーション軽減 */
@media (prefers-reduced-motion: reduce) {
	.fade [data-fade-title],
	.fade [data-fade-rest] {
		transition: none;
		transform: none;
	}
}
@media screen and (max-width: 1279px) {
/* 推奨動作環境1280pxに固定 */
	body {
		width: 1280px;
	}
}


@media screen and (max-width: 767px) {
/* スマホ閲覧時、横幅可変 */
	body {
		width: 100%;
		font-size: 1.4rem;
	}
	.pc_block {
		display: none;
	}
	.sp_block {
		display: block;
	}
}

main{
	margin-top: -1rem;
}


/* ==========================
header
============================= */
#toggleBtn  , #drawer {
	display: none;
}
#header {
	position: fixed;
	top: 0;
	z-index: 9999;
	width: 100%;
	z-index: 1000;
	@media screen and (max-width: 1280px){
		width: 1280px;
	}
}

.hd_bg{
	background: #fff;
	position: absolute;
	width: 100%;
	transition: background 0.3s ease;
	transition: all .5s;
	@media screen and (min-width: 768px),print{
		clip-path: polygon(0 0,0% 100%,120% 0);
		height: 130px;
	}
}

.hd_inner {
	display: flex;
	gap: 3rem;
	padding: 1rem 0 .5rem 6rem;
	position: relative;
}
.hd_l{
	display: flex;
	flex-direction: column;
	text-align: right;

	span{
		color: var(--main-color);
		font-size: 2.4rem;
		font-weight: 700;
	}
}

.hd_r{
	display: flex;
	align-items: center;
	gap: 3rem;
	font-weight: bold;

	.hd_tt{
		position: relative;
		cursor: auto;
		span{
			font-size: 2.6rem;
			font-weight: 700;
			color: var(--main-color);
		}
	}
	a:hover{
		color: var(--main-color);
	}
	a.hd_tt{
		cursor: pointer;
	}
}
/* ドロップダウン全体 */
.dropdown {
  position: relative;

	&:hover{
		.hd_tt{
			color: var(--main-color);
			transition: all .3s;
			cursor: pointer;
		}

		.dropdown-menu{
			height: auto;
		}
	}
}

.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  right: -30px;
  margin: auto;
  background: #fff;
  border: 1px solid var(--c2);
  min-width: 220px;
	height: 0;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.dropdown-menu li {
  border-bottom: 1px solid var(--c2);
	transition: 0.1s all;
	&:nth-last-of-type(1){
		border-bottom: 0;
	}
}

.dropdown-menu li a {
  display: block;
  padding: 10px;
  text-decoration: none;
  transition: 0.1s all;
}

.dropdown-menu li a:hover {
  background: var(--gradeC);
  color: #fff;
	transition: 0.1s all;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
	transition: 0.1s all;
}

.h_enrty{
	background: url(../img/entry.svg) no-repeat center/contain;
	width: 107px;
	height: 107px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: fixed;
	right: 53px;
	bottom: 110px;
	z-index: 40;
  
	span{
		display: flex;
		flex-direction: column;
		align-items: center;
		font-weight: 700;
		letter-spacing: 0;
	}

	span::before{
		content: "";
		background: url(../img/entry_aicon.svg) no-repeat center/contain;
		width: 32px;
		height: 49px;
	}
}

@media screen and (orientation: portrait) and (min-width: 768px),
       screen and (orientation: landscape) and (max-width: 1160px),
       screen and (max-width: 767px){
	#header{
		height: 120px;
		width: 100%;

		.hd_bg{
			height: 90px;
			clip-path: polygon(0 0,0% 100%,310% 0);
		}
	}
	.hd_inner {
		height: 60px;
		padding: 1rem 0;
		padding-left: 1rem;
	}
	.hd_l{
		span{
			font-size: 1.6rem;
		}
		img{
			width: 200px;
		}
	}
	.h_enrty{
		width: 75px;
		height: 75px;
		top: auto;
		right: 2rem;
		bottom: 9rem;
		position: fixed;
		z-index: 99;
	}
	.hd_r{
		display: none;
	}
/* ------------------
	ハンバーガーメニュー
	------------------ */
	#toggleBtn, #drawer {
		display: block;
	}
	#toggleBtn:hover {
		opacity: 1;
	}
	#drawer:hover {
		opacity: 1;
	}
	.sp_nav--btn{
		position: absolute;
		width: 60px;
		height: 60px;
		background: #fff;
		border: none;
		right: 0;
		top: 0;
		transition: all 0.5s;
	}
	.sp_nav--btn span {
		position: absolute;
		display: block;
		height: 2px;
		background: var(--main-color);
		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: var(--main-color);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: var(--main-color);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-menu-item[href="/"] {
    font-size: 1.2rem;
    &::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-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;
	}
}
@media screen and (orientation: portrait) and (min-width: 768px) {
  .drawer-nav {width: 480px;}
  .sp_nav--btn[aria-pressed="true"] {right: 480px;}
}

/* ==========================
footer
============================= */
.ft_inner{
	background: #f6f6f6;
	display: flex;
	justify-content: space-between;
	padding: 6rem 12.8rem 9rem 12.8rem;
	position: relative;

	address{
		padding-top: 6rem;
	}
}
.ft_logo_box p:has(a[href="/"]) {
  margin-top: 1.5em;
  a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  a::before {
    content: url(../img/arrow.svg);
  }
}
.ft_nav{
	display: flex;
	margin-top: 3rem;
	ul{
		padding: 0 6rem 0 3rem;
		display: flex;
		flex-direction: column;
		gap: .5rem;
		a{
			position: relative;
			display: flex;
			gap: 1rem;
			&:hover{
				color: var(--mixin);
				transition: all .3s;
				font-weight: 500;
			}
			
			&::before{
				content: url(../img/arrow.svg);
			}
		}
	}
	.ft_sec{
		position: relative;
		left: 20px;
		a{
			color: var(--main-color);
		}
	}
	.ft_thir{
		position: relative;
		left: 50px;
		a{
			color: var(--main-color);
		}
	}
	.ft_col:nth-child(1){
		position: relative;
		top: -3rem;
	}
}

.ft_link{
	position: absolute;
	display: flex;
	gap: 2.5rem;
	align-items: center;
	bottom: 4rem;

	a{
		background: #fff;
		height: 60px;
		padding: 0 2rem;
		border-radius: 1rem;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 2rem;
	}
}
.copyright{
	background: #232323;
	color: var(--sub-color);
	font-size: 1.6rem;
	text-align: center;
	letter-spacing: 0;
	font-weight: 500;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.ft_inner{
		padding: 30px 5%;
		flex-wrap: wrap;
		justify-content: start;
		gap: 2rem;

		address{
			padding-top: 2rem;
		}

	}

	.ft_nav{
		margin: auto;
		margin-top: 0;
		max-width: 267px;
		width: 100%;
		ul{
			padding: 0;
			width: 267px;
		}
	}

	.ft_right{
		display: none;
	}

	.ft_link{
		flex-direction: column;
		position: static;
		width: 100%;

		a{
			width: 100%;
			height: auto;
			gap: 1rem;
			padding: 1rem 5%;
			text-align: center;
			line-height: 1.3;

			&:nth-child(2){
				font-size: 1rem;
			}
		}
	}
	.copyright{
		line-height: 1.4;
		padding: 2rem 5%;
	}
}

/* ==========================
共通のメニュー
============================= */
#menu_link{
	width: var(--wid-1024);
	margin: auto;
	margin-bottom: 6rem;
	display: flex;
	gap: 2rem;
	@media screen and (min-width: 768px),print{
		height: 234px;
	}

	a{
		border: 2px solid var(--main-color);
		max-width: 328px;
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		position: relative;
		&:hover{
			opacity: 1;

			&::after{
				transition: all .3s;
				bottom: calc(50% - 0px);
				right: calc(50% - 0px);
			}

			.text{
				transition: all .5s;
				background: none;
			}
		}

		&::after{
			transition: all .3s;
			content: "";
			background: url(../img/menubg.svg) no-repeat center / cover;
			width: 326px;
			height: 232px;
			position: absolute;
			bottom: calc(50% - 10px);
			right: calc(50% - 10px);
			transform: translate(50%, 50%);
			z-index: -1;
		}
	}

	.text{
		transition: all .5s;
		padding: 2rem 2.5rem;
		font-size: 2.4rem;
		font-weight: 700;
		color: var(--main-color);
		background: #fff;
		line-height: 1.6;
		display: flex;
		justify-content: space-between;
		align-items: center;
		letter-spacing: 0;
		height: 116px;

		&::after{
			content: "";
			background: url(../img/g_arrow.svg) center/contain no-repeat;
			width: 60px;
			height: 35px;
		}
	}
}

@media screen and (max-width: 767px) {
	#menu_link{
		flex-wrap: wrap;
		height: auto;
		justify-content: center;
		margin-bottom: 4rem;
		a{
			width: calc(50% - 1rem);
			&::after{
				width: 100%;
				height: 100%;
			}
			.text{
				font-size: 1.6rem;
				padding: 1rem 5%;
				flex-direction: column;
				line-height: 1.6;
				justify-content: center;
				height: 90px;
				&::after{
					width: 35px;
				}
			}
		}
	}
}
@media screen and (max-width: 374px){
	#menu_link{
		a{
			width: calc(50% - 1rem);

			&::after{
				width: 100%;
				height: 100%;
			}
		}
		.text{
			font-size: 2rem;
			padding: 1rem 5%;
		}
	}
}

/* ==========================
共通リンクテンプレ
============================= */
#common_link{
	background: #eaf1f6;
	padding: 8rem 0 6.5rem;
	display: flex;
	gap: 2rem;
	justify-content: center;
}
@media screen and (max-width: 767px) {
	#common_link{
		padding: 5rem 5%;
		flex-wrap: wrap;
		.common_link{
			max-width: calc(50% - 1rem);
			width: 190px;
			height: auto;
			padding: 2rem 3%;
			height: 60px;
			padding-right: 3rem;
			line-height: 1.2;

			&::before{
				right: 1.3rem;
			}
		}
	}
}

.common_link{
	max-width: 328px;
	width: 100%;
	height: 68px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: var(--main-color);
	position: relative;
	transition: .2s all;

		&:hover{
			opacity: 1;
			transition: .2s all;
			background: color-mix(in srgb, var(--tri-color) 100%, white);
		}

	&::before{
		content: "";
		position: absolute;
		right: 26px;
		background: url(../img/arrow.svg) no-repeat center/contain;
		width: 7px;
		height: 15px;
		transition: .2s all;
	}

	&:hover::before{
		transition: .2s all;
		filter: brightness(0) invert(1);
	}
}

/* ==========================
pagevisual
============================= */
.pagevisual{
	background: var(--gradeC);
	position: relative;
	@media screen and (min-width: 768px),print{
		height: 655px;
	}
	&::after{
		content: "";
		position: absolute;
		transition: all .5s;
		background: #fff;
		z-index: 1;
		width: 100%;
		height: 120px;
		clip-path: polygon(0 100%, 0 0, 120% 100%);
		transform: scaleX(-1);
		bottom: -1px;
		right: 0;
	}
}
.page_inner{
	width: var(--wid-1024);
	height: 100%;
	margin: auto;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	align-items: center;

	.page_inner--hg {
    width: 100%;
    max-width: calc(100% - 2rem - 540px);
		display: flex;
		flex-direction: column;
		gap: 2rem;
		color: #fff;
	}
}

.anker_link {
  width: 100%;
  ul {
    display: flex;
    flex-wrap: wrap;
    max-width: 540px;
    width: 100%;
    /* flex-direction: column; */
    gap: 2rem;
  }
  li {
    width: calc(50% - 2rem);
    height: 74px;
    font-size: 1.6rem;
    font-weight: 700;
    /* width: 370px;
    height: 100px;
    font-size: 2.4rem; */
  }
  a {
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid #fff;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    transition: .3s all;
    &::before {
      content: "";
      position: absolute;
      z-index: -1;
      /* top: .9rem; */
      top: .7rem;
      right: -1rem;
      /* width: 370px;
      height: 100px; */
      width: 100%;
      height: 74px;
      background: rgb(255, 255, 255, .3);
      clip-path: polygon(100% 100%, 0 100%, 0 89.39%, 97.3% 89.39%, 97.3% 0, 100% 0 );
      transition: .3s all;
    }
    &::after {
      content: "";
      background: url(../img/anker_arrow.svg) no-repeat center/contain;
      position: absolute;
      /* right: 2rem;
      width: 35px;
      height: 50px; */
      width: 25px;
      height: 36px;
      right: 1.5rem;
    }
    &:hover {
      transition: .3s all;
      background: var(--gradeC);
    }
    &:hover::before {
      background: rgb(255, 255, 255, 0);
      transition: .3s all;
      top: 0;
      right: 0;
    }
  }
  @media screen and (max-width: 767px) {
    ul {
      gap: 2rem 1rem;
    }
    li {
      width: calc(50% - 1rem)!important;
      height: 70px!important;
      line-height: 1.4;
      font-size: 1.5rem!important;
    }
    a {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: .5rem;
      &::before {
        width: 100%;
        height: 100%;
        top: 1rem;
      }
      &::after {
        width: 15px;
        height: 20px;
        right: 0;
        position: relative;
      }
    }
  }
}


@media screen and (max-width: 767px){
	.pagevisual{
		padding: 5rem 0 8rem;
		margin-top: 6rem;
		&::after{
			clip-path: polygon(0 100%, 0 63%, 100% 100%);
		}
	}
	.page_inner{
		flex-direction: column;
		justify-content: center;
		gap: 3rem;

		.page_inner--hg {
      max-width: initial;
			gap: 2rem;
		}

		ul{
			flex-wrap: wrap;
			flex-direction: row;
		}

		ul li{
			max-width: calc(50% - 1rem);
			width: 190px;
			margin: auto;
			font-size: 1.8rem;
			height: 60px;

			a{
				padding: 0 5%;
			}

			a::before{
				width: 100%;
				height: 100%;
				right: -0.7rem;
				top: .7rem;
			}
			a::after{
				width: 23px;
			}
		}
	}
}

/*============================= 
パンくず
============================= */

.page-pankuzu {
	display: flex;
	align-items: center;
	li{
		display: flex;
		font-size: 1.3rem;

		&::after{
			content: "＞";
			background-size: contain;
			margin: 0px 3px 0 8px;
		}
	}
	a{
		text-decoration: underline;
		text-underline-offset: 0.2em;
		color: #fff;
		&:hover{
			text-decoration: none;
		}
	}
}
.page-pankuzu .under_contents::after {
	content: none;
}

@media screen and (max-width: 767px){
	.page-pankuzu {
		height: auto;
		font-size: 1.4rem;
		flex-wrap: wrap;
	}
}

/* ==========================
共通タイトル
============================= */
.common_title{
	display: flex;
	justify-content: center;
	font-weight: bold;
	flex-direction: column;
	gap: 1rem;
	line-height: 1.2;
}
.common_title .jp_title{
	letter-spacing: 0px;
	font-size: 2.4rem;
	color: #000;
}

.common_title .en_title{
	font-size: 6.4rem;
	font-weight: 400;
	color: var(--main-color);
	font-family: var(--font-en);
	line-height: 1;
}
.common_title.cl_f .jp_title{
	color: var(--sub-color);
}
.common_title.cl_f .en_title{
	color: var(--sub-color);
}
@media screen and (max-width: 767px){
	.common_title .en_title{
		font-size: 4.8rem;
	}
	.common_title .jp_title{
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 350px){
	.common_title .en_title{
		font-size: 3.2rem;
	}
	.common_title .jp_title{
		font-size: 1.6rem;
	}
}


/*back_top*/
#page_top {
	width: 56px;
	height: 56px;
	position: fixed;
	bottom: -20rem;
	opacity: 1;
	right: 7.5rem;
	z-index: 40;
	background: url("../img/page_top.svg") no-repeat center;
	-webkit-background-size: contain;
	background-size: contain;
	border-radius: 50%;
	box-shadow: 5px 5px 10px #0000001A;
	transition: .5s;
	border: 1px solid #fff;
}
#page_top.active {
	bottom: 4rem;
}
#page_top a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


@media screen and (max-width: 767px){
	#page_top.active {
		right: 3rem;
		bottom: 2rem;
	}
}



/* 印刷用設定 */
@media print {
	body {
		width:1280px;
		zoom: 0.68;
		-webkit-print-color-adjust: exact;
	}

	#header{
		position: absolute;
	}
	#page_top{
		display: none;
	}

	.hd_l img{
		width: 120px;
	}
	
}
@page {
	size: A4;
	margin: 5px;
}
