@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Zen+Kaku+Gothic+Antique:wght@400;500;700&family=Zen+Old+Mincho:wght@400;500;600;700&display=swap');
/* CSS Document */
html{
}
p span,
h1 span,
h2 span,
h3 span,
h4 span {
  display: inline-block;
}
body{
	font-family: "Zen Old Mincho", "Zen Kaku Gothic Antique", "EB Garamond",  sans-serif;
	background-color: #fff;
	color: #1A1A1A;
}

body .bg_img_wrap {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.on .bg_img_wrap .bg_img{
	display: none;
}
body .bg_img_wrap2 {
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}
body.on .bg_img_wrap2 > img{
	display: none;
}

a{
	display: inline-block;
	transition: ease 0.3s;
}
a:hover{
	opacity: 0.5;
}
a p,a,a i{
	color: #000000;
}
.font-medium{font-weight: 500;}
.font-semibold{font-weight: 600;}
.font-black{font-weight: 900;}

.pd_wrap{
	padding: 150px 80px 0;
}
.pd_wrap_all{
	padding: 150px 80px 150px;
}
.pd_wrap_side{
	padding-left: 80px;
	padding-right: 80px;
}

.cate_wrap > .cate{
	padding-top: 150px;
}

/* ANIME */
.sc-anime.topin.on{
	opacity:0;
	transform: translateY(-50px);
}
.sc-anime.topin.on.active{
	animation-name: topin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.bottomin.on{
	opacity:0;
	transform: translateY(50px);
}
.sc-anime.bottomin.on.active{
	animation-name: bottomin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.leftin.on{
	opacity:0;
	transform: translateX(-50px);
}
.sc-anime.leftin.on.active{
	animation-name: leftin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.rightin.on{
	opacity:0;
	transform: translateX(50px);
}
.sc-anime.rightin.on.active{
	animation-name: rightin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.fadein.on{
	opacity:0;
}
.sc-anime.fadein.on.active{
	animation-name: fadein;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.blurin.on{
	opacity:0;
	-ms-filter: blur(6px);
	filter: blur(6px);
}
.sc-anime.blurin.on.active{
	animation-name: blurin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.sc-anime.blurin2.on{
	opacity:0;
	transform: translateY(50px);
	-ms-filter: blur(6px);
	filter: blur(6px);
}
.sc-anime.blurin2.on.active{
	animation-name: blurin2;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}

@keyframes topin {
	0% {
		opacity:0;
		transform: translateY(-50px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
	}
}
@keyframes bottomin {
	0% {
		opacity:0;
		transform: translateY(50px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
	}
}
@keyframes leftin {
	0% {
		opacity:0;
		transform: translateX(-50px);
	}
	100% {
		opacity:1;
		transform: translateX(0px);
	}
}
@keyframes rightin {
	0% {
		opacity:0;
		transform: translateX(50px);
	}
	100% {
		opacity:1;
		transform: translateX(0px);
	}
}
@keyframes upin {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes fadein {
	0% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}
@keyframes fadeout {
	0% {
		opacity:1;
	}
	100% {
		opacity:0;
	}
}
@keyframes blurin {
	0% {
		opacity: 0;
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
	100% {
		opacity:1;
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
}
@keyframes blurin2 {
	0% {
		opacity: 0;
		transform: translateY(50px);
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
	100% {
		opacity:1;
		transform: translateY(0px);
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
}

/* color */
.txt-color-normal{color: #000000;}
.txt-white{color: #ffffff;}
.txt-red{color: red;}
.txt-color1{color: #FFE93C}
.txt-color2{color: #F1F1E9}
.txt-color3{color: #021745}
.txt-color4{color: #EBF5E5}
.bg-white{background-color: #ffffff;}
.bg-black{background-color: black}
.bg-color1{background-color: #FFE93C}
.bg-color2{background-color: #F1F1E9}
.bg-color3{background-color: #021745}
.bg-color4{background-color: #EBF5E5}
.border-color1{border-color: #FFE93C}
.border-color2{border-color: #F1F1E9}
.border-color3{border-color: #021745}
.border-color4{border-color: #EBF5E5}

.hvr-txt-color-normal:hover{color: #000000;}
.hvr-txt-white:hover{color: #ffffff;}
.hvr-txt-red:hover{color: red;}
.hvr-txt-color1:hover{color: #FFE93C}
.hvr-txt-color2:hover{color: #F1F1E9}
.hvr-txt-color3:hover{color: #021745}
.hvr-txt-color4:hover{color: #EBF5E5} 
.hvr-bg-white:hover{background-color: #ffffff;}
.hvr-bg-black:hover{background-color: black}
.hvr-bg-color1:hover{background-color: #FFE93C}
.hvr-bg-color2:hover{background-color: #F1F1E9}
.hvr-bg-color3:hover{background-color: #021745}
.hvr-bg-color4:hover{background-color: #EBF5E5}
.hvr-border-color1:hover{border-color: #FFE93C}
.hvr-border-color2:hover{border-color: #F1F1E9}
.hvr-border-color3:hover{border-color: #021745}
.hvr-border-color4:hover{border-color: #EBF5E5}

/* ---------- header ---------- */
.header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}
.header::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: rgba(255,255,255,0.9);
	opacity: 0;
	transition: ease 0.4s;
}
.header.on::after{
	opacity: 1;
}
.header.onbg::after{
	opacity: 1!important;
}
.header > div{
	position: relative;
	z-index: 3;
}
.header .logo{
	padding-left: 40px;
}
.header .logo img{

	max-height: 80px;
}
.header .head_nav,.header .head_nav > .ul{
    gap: 40px;
}
.header .head_nav > .ul{
	transition: ease 0.3s;
}
.header.active .head_nav > .ul{
	opacity: 0;
	pointer-events: none;
}
.header .head_nav .ul .li .menu_sub_wrap{
	position: relative;
	cursor: pointer;
}
.header .head_nav .ul .li p,.header .head_nav i{
	color: #fff;
}
.header .head_nav .ul .li p{
	font-size: 24px;
}
.header .head_nav .ul .li img{
	width: 20px;
	margin-right: 10px;
}
.header .head_nav .ul .li .menu_sub_wrap p{
	transition: ease 0.3s;
}
.header .head_nav .ul .li .menu_sub_wrap:hover > p{
	opacity: 0.5;
}
.header .head_nav .ul .li .menu_sub_wrap i{
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
}
.header .head_nav .ul .li .menu_sub_wrap .menu_sub{
	display: none;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding: 20px;
	background-color: rgba(255,255,255,0.9);
}
.header .head_nav .ul .li:hover .menu_sub_wrap .menu_sub{
	display: block;
	animation-name: fadein;
	animation-duration: 0.6s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.header .head_nav .ul .li .menu_sub_wrap .menu_sub > .li:not(:last-of-type){
	margin-bottom: 15px;
}
.header .head_nav .ul .li .menu_sub_wrap .menu_sub p{
	font-size: 16px;
	white-space: nowrap;
}

.header .head_nav .menu-bt{
	cursor: pointer;
	aspect-ratio: 1 / 1;
	width: 120px;
	background-color: none;
	border: 1px solid #fff;
}
.header .head_nav .menu-bt .line{
	position: relative;
	width: 36px;
	height: 26px;
}
.header .head_nav .menu-bt .line div{
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 0;
	transition: ease 0.3s;
}
.header .head_nav .menu-bt .line div:nth-of-type(1){
	width: 100%;
	top: 0;
}
.header .head_nav .menu-bt .line div:nth-of-type(2){
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
}
.header .head_nav .menu-bt .line div:nth-of-type(3){
	width: 80%;
	bottom: 0;
}
.header .head_nav .menu-bt.active .line div:nth-of-type(1){
	width: 100%;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
.header .head_nav .menu-bt.active .line div:nth-of-type(2){
	width: 100%;
	top: 50%;
	transform: translateY(-50%) translateX(50%);
	opacity: 0;
}
.header .head_nav .menu-bt.active .line div:nth-of-type(3){
	width: 100%;
	bottom: 50%;
	transform: translateY(50%) rotate(-45deg);
}
.header.on::after {
	opacity: 1;
	background-color: rgba(36, 38, 35, 0.9); 
}
.menu-wrap{
	display: none;
	position: fixed;
	z-index: 98;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.menu-wrap::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0.9;
	width: 100%;
	height: 100%;
	background: rgb(237,237,237);
	background: linear-gradient(45deg, rgba(237,237,237,1) 0%, rgba(255,255,255,1) 100%);
}
.menu-wrap > div{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	overflow: auto;
}
.menu-wrap .ul{
	gap: 50px 20px;
	justify-content: center;
	align-items: flex-start;
	max-width: 1280px;
}
.menu-wrap .ul .li{
	width: calc(100% / 3 - 40px / 3);
}
.menu-wrap .ul .li{
	opacity: 0;
	transform: translateY(10px);
	text-align: center;
}
.menu-wrap.active .ul .li{
	animation-name: bottomin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}
.menu-wrap .ul .li:nth-of-type(1){
}
.menu-wrap .ul .li:nth-of-type(2){
	animation-delay: 0.1s;
}
.menu-wrap .ul .li:nth-of-type(3){
	animation-delay: 0.2s;
}
.menu-wrap .ul .li:nth-of-type(4){
	animation-delay: 0.3s;
}
.menu-wrap .ul .li:nth-of-type(5){
	animation-delay: 0.4s;
}
.menu-wrap .ul .li:nth-of-type(6){
	animation-delay: 0.5s;
}
.menu-wrap .ul .li:nth-of-type(7){
	animation-delay: 0.6s;
}
.menu-wrap .ul .li:nth-of-type(8){
	animation-delay: 0.7s;
}
.menu-wrap .ul .li:nth-of-type(9){
	animation-delay: 0.8s;
}
.menu-wrap .ul .li:nth-of-type(10){
	animation-delay: 0.9s;
}
.menu-wrap .ul .li:nth-of-type(11){
	animation-delay: 1.0s;
}
.menu-wrap .ul .li:nth-of-type(12){
	animation-delay: 1.1s;
}
.menu-wrap .ul .li a{
	text-align: left;
}
.menu-wrap .ul .li a p{
	color: #1a1a1a;
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
	flex-direction: row;
}
.menu-wrap .ul .li a .font-eb{
	font-family: "Cormorant Infant", "Shippori Mincho", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
	font-size: 30px;
	margin-bottom: 10px;
}
.menu-wrap .ul .li a .font-antique{
	font-size: 16px;
	opacity: 0.7;
}
/* ---------- pagetitle ---------- */
.pagetitle{
	position: relative;
	height: 600px;
	z-index: 1;
  overflow: hidden;
}
.pagetitle::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #704214;
	opacity: 0.4;
	z-index: 2;
}
.pagetitle .titlebox{
	position: absolute;
	top:45%;
	left:10%;
	z-index: 10;
	width: 60%;
  
}
.pagetitle p,.pagetitle h1{
	color: #fff;
}
/* ---------- main ---------- */
.link_wrap2{
	gap: 30px;
	
}
.link_wrap2 a{
	position: relative;
}
.link_wrap2 a p{
	position: relative;
	z-index: 2;
	display: inline-block;
	padding-bottom: 3px;
	border-bottom: #1a1a1a solid 1px;
}

.section{
	padding-top: 150px;
	padding-bottom: 150px;
}
.title-style{
    text-align: center;
}
/* ---------- font ---------- */
.en_title{
	font-family: "EB Garamond",  sans-serif;
	font-size: 44px;
	font-weight: 400;
	letter-spacing: 0.1em;
}
.en_title2{
	font-family: "EB Garamond",  sans-serif;
	font-size: 60px;
	font-weight: 400;
	letter-spacing: 0.1em;
}
.en_title3{
	font-family: "EB Garamond",  sans-serif;
	font-size: 50px;
	font-weight: 400;
	letter-spacing: 0.1em;
}
.default_title{ 
	font-size: 34px;
	letter-spacing: 0.05em;
}
.default_title2{
	font-size: 24px;
	letter-spacing: 0.05em; 
}
.default_title3{
	font-size: 18px;
}

.default_txt{
	font-size: 18px;
	line-height: 2.5;
	letter-spacing: 0.05em;
}
.default_txt2{
	font-size: 20px;
}
.default_txt3{
	font-size: 16px;
}

.txt-color1{color: #1A1A1A}
.txt-color2{color: #757575}
.txt-color3{color: #333333}
.txt-color4{color: #999999}

.font-eb{
	font-family: "EB Garamond",  sans-serif;
	letter-spacing: 0.15em;
}
.font-antique{
	font-family: "Zen Kaku Gothic Antique",  sans-serif;
}
.font-noto{
	 font-family: "Noto Sans JP",  sans-serif;
}
.font-old{
	font-family: "Zen Old Mincho",  sans-serif;
}
/* ---------- more ---------- */
.item-slider.swiper-container{
    overflow: hidden;
}
.item-slider.swiper-container .swiper-wrapper .swiper-slide{
	position: relative;
	opacity: 1;
}
body:not(.on) .item-slider.swiper-container .swiper-wrapper{
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
	flex-direction: row;
}
body:not(.on) .item-slider.swiper-container .swiper-wrapper .swiper-slide{
	width: 300px;
}

.more_wrap{
	display: flex;
    justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
/* 黒 */
.more {
    justify-content: center;
    margin-top: 80px;
	width: auto;
	min-width: 165px;
}
.more a{
	width: auto;
	padding: 5px 20px;
	border: 1px solid #1a1a1a;
	color: #1a1a1a;
	text-align: center;
	box-sizing: border-box;
	white-space: nowrap;
}
.more-arrow::after {
	content: ""; 
    display: inline-block;
    width: 22px;
    height: 22px; 
    background-image: url("https://shizuoka-union.co.jp/system_panel/uploads/images/arrow.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    margin-left: 20px;
    transition: transform 0.4s ease-out;
}
.more-arrow:hover::after {
    transform: translateX(4px);
}

/* 白 */
.more.more-w a{
	border: 1px solid #fff;
	color: #fff;
}
.more-w .more-arrow::after {
    background-image: url("https://shizuoka-union.co.jp/system_panel/uploads/images/arrow-w.png"); 
}



/* 矢印のみ */
.more-arrow-w::after {
    content: ""; 
    display: inline-block;
    width: 22px;
    height: 22px; 
    background-image: url("https://shizuoka-union.co.jp/system_panel/uploads/images/arrow-w.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    margin-left: 20px;
    transition: transform 0.4s ease-out;
}
.more2:hover .more-arrow-w::after {
    transform: translateX(4px);
}
.section2 .linkbox:hover .more-arrow-w::after {
    transform: translateX(4px);
}
/* ---------- footerlink ---------- */


.footerlink .txtbox{
	flex-direction: column;
}
.footerlink .more-arrow-w{
	position: absolute;
	top: 50%;
	right: -30%;
}
.more2{
	width: 50%;
	position: relative;
	overflow: hidden;
	padding-top: 150px;
	padding-bottom: 150px;
}
.more2:hover{
	opacity: 1;
}
body.on .more2::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: #592E08;
	opacity: 0.4;
	transition: ease 0.3s;
}
body.on .more2:hover::after{
	opacity: 0.1;
}
body.on .more2 p{
	color: #fff;
}
.more2 > div{
	position: relative;
	z-index: 2;
}
.more2 .more > div{
	display: inline-block;
	border: 1px solid #fff;
	padding: 8px 20px;
	min-width: 240px;
}
.more2 .more-arrow-w {
  position: absolute;
  top: 50%;
  right: 20px; 
  transform: translateY(-50%);
  z-index: 2;
}
.footerlink .more2 .txt_wrap {
	position: relative;
	width: 100%;
}
/* ---------- footer ---------- */

.footer{
	background-color: #242623;
	padding: 60px 5%;
	flex-direction: column;
	color: #fff;
	gap: 60px;
}
.footer .topbox{
	width: 100%;
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}
.footer .leftbox {
	flex: 0 0 50%;
	width: 50%;
    flex: 1;
    min-width: 300px;
}
.footer .rightbox {
	width: 50%;
    flex: 0 0 50%;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.footer .link-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 120px;
	display: grid;
	grid-template-rows: repeat(4, auto); 
	grid-auto-flow: column;
	column-gap: 40px;
	row-gap: 10px;
}
.footer .logo{
	max-width: 300px;
}
.footer .bottombox {
	width: 100%;
    border-top: 1px solid #4D4D4D;
    padding-top: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer .link-box2 .more img{
	width: 20px;
	margin-right: 10px;
}
.footer .more_wrap{
	flex-direction: column;
}
.footer .more {
    justify-content: center;
    margin-top: 0px;
}


.swiper-button{
	width: 80px;
	height: 80px;
	cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.swiper-button img {
    width: 36px;     
    height: auto;
}
.swiper-button.swiper-button-prev {
	top: 50%;
    left: 5%;
    transform: translateY(-50%) translateX(-50%);
}
.swiper-button.swiper-button-next {
	top: 50%;
    right: 5%;
    transform: translateY(-50%) translateX(50%);
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}

/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.pd_wrap{
		padding: 150px 60px 0;
	}
	.pd_wrap_all{
		padding: 150px 60px 150px;
	}
	.pd_wrap_side{
		padding-left: 60px;
		padding-right: 60px;
	}
/* ---------- pagetitle ---------- */
.pagetitle{
	height: 500px;
}
/* ---------- main ---------- */
	

		.link_wrap a p{
		font-size: 20px;
	}
/* ---------- header ---------- */
	.header .head_nav > .ul{
		display: none;
	}
	.menu-wrap > div .ul > div a p.font-antique{
		font-size: 14px;
	}
	.menu-wrap > div .ul > div a p.font-eb{
		font-size: 18px;
	}
/* ---------- footer ---------- */
}
/* ---------- font ---------- */
	.en_title{
		font-size: 34px;
	}
	.en_title2{
		font-size: 50px;
	}
	.en_title3{
		font-size: 40px;
	}
	.default_title{ 
		font-size: 26px;
	}
	.default_title2{
		font-size: 22px;
	}
	.default_title3{
		font-size: 18px;
	}

	.default_txt{
		font-size: 16px;
	}
	.default_txt2{
		font-size: 18px;
	}
	.default_txt3{
		font-size: 16px;
	}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
/* ---------- pagetitle ---------- */
	.pagetitle{
		height: 450px;
	}
/* ---------- main ---------- */
	
	.section{
		padding-top: 100px;
		padding-bottom: 100px;
	}
	.more2{
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.link_wrap a p{
		font-size: 16px;
	}

/* ---------- header ---------- */

/* ---------- footer ---------- */

	.footer .leftbox {
		flex: 0 0 30%;
		width: 33%;
		min-width: 200px;
	}
	.footer .rightbox {
		width: 60%;
		flex: 0 0 60%;
		display: flex;
		justify-content: space-between;
		gap: 40px;
		flex-wrap: wrap;
	}
	.footer .logo{
		max-width: 200px;
	}
	.footer .link-box2 .more img{
		width: 15px;
		margin-right: 10px;
	}

/* ---------- font ---------- */
	.en_title{
		font-size: 28px;
	}
	.en_title2{
		font-size: 40px;
	}
	.en_title3{
		font-size: 26px;
	}
	.default_title{ 
		font-size: 26px;
	}
	.default_title2{
		font-size: 22px;
	}
	.default_title3{
		font-size: 18px;
	}

	.default_txt{
		font-size: 16px;
	}
	.default_txt2{
		font-size: 18px;
	}
	.default_txt3{
		font-size: 16px;
	}

}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
/* ---------- pagetitle ---------- */
	.pagetitle{
		height: 350px;
	}
	.pd_wrap{
		padding: 100px 50px 0;
	}
	.pd_wrap_all{
		padding: 100px 50px 100px;
	}
	.pd_wrap_side{
		padding-left: 50px;
		padding-right: 50px;
	}
	.cate_wrap > .cate{
		padding-top: 100px;
	}
/* ---------- main ---------- */
	.link_wrap{
		 gap: 30px;
	}
	.link_wrap a p{
		font-size: 12px;
	}
/* ---------- header ---------- */
	.header .logo img{
		height: 70px;
	}
	.header .head_nav .menu-bt{
		width: 90px;
	}
	.menu-wrap .ul .li a .font-eb{
		font-size: 26px;
		margin-bottom: 0px;
	}
	.menu-wrap .ul .li a .font-antique{
		font-size: 12px;
	}
/* ---------- footer ---------- */
	.footer .topbox{
		flex-direction: column;
		align-items: center;
    	text-align: center;
	}
	.footer .leftbox {
		justify-content: center;
		align-items: center;
		text-align: left;
		width: 100%;
	  }
	.footer .rightbox {
		width: 100%;
		justify-content: space-between;
		align-items: flex-start;
		flex-wrap: wrap;
		gap: 30px;
	  }
	.footer .link-box {
		width: 50%;
		justify-content: flex-start;
		margin: 0 auto;
		text-align: left;
	  }

	  .footer .link-box2 {
		width: 50%;
		display: flex;
		justify-content: flex-end;
	  }

	  .footer .more_wrap {
		flex-direction: column;
		gap: 10px;
		align-items: center;
	  }
	.footerlink h2{
		font-size: 12px;
	}
	.footerlink p{
		font-size: 14px;
	}
	.footerlink .more-arrow-w{
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
		z-index: 2;
	}
/* ---------- font ---------- */
	.en_title{
		font-size: 28px;
	}
	.en_title2{
		font-size: 34px;
	}
	.en_title3{
		font-size: 26px;
	}
	.default_title{ 
		font-size: 26px;
	}
	.default_title2{
		font-size: 22px;
	}
	.default_title3{
		font-size: 16px;
	}

	.default_txt{
		font-size: 14px;
	}
	.default_txt2{
		font-size: 16px;
	}
/* ---------- more ---------- */
	.more_wrap{
		display: flex;
		justify-content: center;
		gap: 20px;
		flex-wrap: wrap;
	}
	/* 黒 */
	.more {
		justify-content: center;
		margin-top: 50px;
	}
	.more a{
		width: 100%;
		padding: 5px 10px;
		border: 1px solid #1a1a1a;
		color: #1a1a1a;
		text-align: center;
		box-sizing: border-box;
	}
	.more-arrow::after {
		content: ""; 
		display: inline-block;
		width: 18px;
		height: 18px; 
		background-image: url("https://shizuoka-union.co.jp/system_panel/uploads/images/arrow.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		vertical-align: middle;
		margin-left: 10px;
		transition: transform 0.4s ease-out;
	}

	/* 矢印のみ */
	.more-arrow-w::after {
		content: ""; 
		display: inline-block;
		width: 18px;
		height: 18px; 
		background-image: url("https://shizuoka-union.co.jp/system_panel/uploads/images/arrow-w.png");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		vertical-align: middle;
		margin-left: 10px;
		transition: transform 0.4s ease-out;
	}
}
/* ---------- スマートフォン ---------- */
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.pd_wrap{
		padding: 80px 20px 0;
	}
	.pd_wrap_all{
		padding: 80px 20px 80px;
	}
	.pd_wrap_side{
		padding-left: 20px;
		padding-right: 20px;
	}
	.cate_wrap > .cate{
		padding-top: 80px;
	}
	.more {
		margin-top: 30px;
	}
	.more_wrap {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	  }

	.more.mg-0 {
	  margin-top: 0;
	}

/* ---------- pagetitle ---------- */
    .pagetitle {
        height: 250px;
    }
/* ---------- main ---------- */
	.link_wrap{
		 gap: 20px;
	}
/* ---------- header ---------- */
	.header {
	  width: 100%;
	  max-width: 100%;
	  overflow-x: hidden;
	}
	.header .logo{
		padding-left: 20px;
	}
	.header .logo img{
      	width: auto;
		height: 40px;
	}
	.header .head_nav .menu-bt{
		width: 60px;
	}
	.menu-wrap .ul .li{
		width: calc(100% / 3 - 40px);
	}
	.header .head_nav, .header .head_nav > .ul{
		gap: 30px;
	}
	.header .head_nav .menu-bt .line{
		width: 26px;
		height: 20px;
	}
	.header .head_nav .menu-bt p{
		font-size: 12px;
	}
	.menu-wrap .ul{
		gap: 40px 20px;
		padding-top: 50px;
	}
	.menu-wrap .ul .li{
		width: calc(100% / 2 - 20px);
	}
	.menu-wrap .ul .li a .font-eb{
		font-size: 18px;
		margin-bottom: 0px;
	}
	.menu-wrap .ul .li a .font-antique{
		font-size: 12px;
	}

/* ---------- footer ---------- */
/* ---------- font ---------- */
	.en_title{
		font-size: 22px;
	}
	.en_title2{
		font-size: 28px;
	}
	.en_title3{
		font-size: 16px;
	}
	.default_title{ 
		font-size: 14px;
	}
	.default_title2{
		font-size: 18px;
	}
	.default_title3{
		font-size: 16px;
	}

	.default_txt{
		font-size: 14px;
	}
	.default_txt2{
		font-size: 14px;
	}
	.default_txt3{
		font-size: 12px;
	}
/* ---------- footer ---------- */
	.footer .topbox {
		flex-direction: column;
		align-items: center;
		text-align: center;
	  }

	  .footer .leftbox {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	  }

	  .footer .rightbox {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
	  }

	  .footer .link-box,
	  .footer .link-box2 {
		width: 100%;
		display: flex;
		flex-direction: column;

	  }
	.footer .link-box {
		display: grid;
		grid-template-columns: repeat(2, 1fr); 
		grid-template-rows: repeat(4, auto); 
		gap: 10px 20px;
		justify-content: center;
		text-align: center;
		width: 100%;
	  }
	  .footer .more_wrap {
		align-items: center;
	  }
	  .more2 {
        padding-top: 30px;
        padding-bottom: 30px;
    　}
	.more p{
      font-size:12px;
	}
  .link_wrap2 a p{
     font-size:14px;
    {
  }
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}
