@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@500;700&display=swap');
@import url('animation.css');

:root {
	--main-color: #333333;
	--cp-color-r: #ED1C2B;
	--cp-color-g: #B89C43;
	
	--ft-size-s: 1.4rem;
	--ft-size-m: 1.6rem;
	--ft-size-l: 1.8rem;
	--ft-size-xl25: 2.5rem;
	--ft-size-xl30: 3.0rem;

	/* フォントサイズとセット */
	--ft-lh-s: 1.71;
	--ft-lh-m: 1.75;
	--ft-lh-l: 1.56;
	--ft-lh-xl25: 1.44;
	--ft-lh-xl30: 1.5;

	--space-xs: 4.0rem;
	--space-s: 6.0rem;
	--space-m: 8.0rem;
	--space-l: 10.0rem;
	--space-xl: 12.0rem;
}

/* Default Style */
body {
	background: #fff url("../images/bg_body.webp") repeat;
	line-height: 1;
	font-family: "Zen Kaku Gothic New", sans-serif; /*全体の書体を指定する*/
	font-style: normal;
	font-weight: 500;
	font-size: 1.6rem; /*全体のフォントサイズは16pxとする*/
	color:#333333;
}

/* Default Link Style */
a {
	text-decoration: none;
	color: inherit;
	transition: 0.2s;
}

a:hover {
	opacity: .8;
}

.roboto-mid {
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.roboto-bld {
  font-family: "Roboto", "Zen Kaku Gothic New", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

/* common */
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

#wrapper {
	width: 100%; /*全ての要素を包括する<div id"wrap">の幅を画面幅に設定する*/
	margin: 0 auto;
}

/* header ---------------------------------------- */
/* ヘッダー */
header {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 30px;
	transform: none;
	transition: all;
	transition-delay: 0s;
	transition-duration: .5s;
	transform-origin: center top;
	z-index: 100;
}

/*
header.close {
	opacity: 0;
	transform: perspective(300px) rotateX(-90deg);
}
*/

.header-inner {
	position:relative;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	width: 100%;
	height: 70px;
	margin: 0 auto;
	padding: 10px calc(35px - 1em) 10px 35px;
	background-color: #FFFFFF;
	border-radius: 16px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* サイトタイトル */
.site-title {
	display: flex;
	width: 134px;
}

.site-title h1 {
	display: flex;
}

.site-title h1 a {
	display: flex;
	align-items: center;
}

/* ヘッダーナビ */
#head-nav {
	position: relative;
	height: 100%;
	margin: 0 0 0 auto;
}

#header-nav {
	display: flex;
	height: 100%;
}

.menu {
	display: flex;
	justify-content: center;
}

.menu a:hover {
	color: var(--cp-color-r);
}

.menu > li {
	position: relative;
	height: 100%;
}

.menu > li > a,
.menu > li > span {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0.2rem 1em;
	text-decoration: none;
	line-height: 1.0;
	font-size: 1.4rem;
	color: var(--main-color);
}

.menu > li#nav01 > a::after,
.menu > li#nav03 > span::after {
	content: "";
	width: 8px;
	height: 4px;
	margin-left: 0.6rem;
	background: url("../images/icon_arrow_bb.svg") 50% 50% no-repeat;
	flex-shrink: 0;
}

/* -------------------------
   20260328 採用情報非表示
------------------------- */
.menu > li#nav05 {
	display: none;
}
/* ---------------------- */

.menu > li#sp-nav-logo {
	display: none;
}

.menu > li#sp-nav-foot {
	display: none;
}

#nav-btn {
	display: none;
	position: absolute;
	top: 50%;
	right: 15px;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 14px 11px;
	background-color: var(--cp-color-r);
	border-radius: 8px;
	border: 0;
	cursor: pointer;
	transform: translateY(-50%);
	z-index: 10;
}

#nav-btn button {
  position: relative;
	display: block;
  width: 18px;
  height: 12px;
  margin: 0 auto;
	padding: 0;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
	background-color: #FFFFFF;
  opacity: 1;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

#nav-btn span:nth-child(even) {
  left: 50%;
  border-radius: 0 1px 1px 0;
}

#nav-btn span:nth-child(odd) {
  left: 0;
  border-radius: 1px 0 0 1px;
}

#nav-btn span:nth-child(1), #nav-btn span:nth-child(2) {
  top: 0;
}

#nav-btn span:nth-child(3), #nav-btn span:nth-child(4) {
  top: 5px;
}

#nav-btn span:nth-child(5), #nav-btn span:nth-child(6) {
  top: 10px;
}

header.open #nav-btn {
	z-index: 500;
}

header.open #nav-btn span {
	background-color: #FFFFFF;
}

header.open #nav-btn span:nth-child(1),header.open #nav-btn span:nth-child(6) {
  transform: rotate(45deg);
}

header.open #nav-btn span:nth-child(2),header.open #nav-btn span:nth-child(5) {
  transform: rotate(-45deg);
}

header.open #nav-btn span:nth-child(1) {
  left: 2px;
  top: 3px;
}

header.open #nav-btn span:nth-child(2) {
  left: calc(50% - 2px);
  top: 3px;
}

header.open #nav-btn span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

header.open #nav-btn span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

header.open #nav-btn span:nth-child(5) {
  left: 2px;
  top: 8px;
}

header.open #nav-btn span:nth-child(6) {
  left: calc(50% - 2px);
  top: 8px;
}

/* footer ---------------------------------------- */
footer {
	width: 100%;
	padding: 0 20px;
	background-color: #FFFFFF;
	color: var(--main-color);
}

.footer-inner {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	padding: 60px 0 40px;
	border-top: 1px solid #FFFFFF;
}

.footer-inner dl {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 1.4rem;
}

.footer-inner dl dt {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	justify-content: center;
	width: 100%;
	font-size: 3.0rem;
	gap: 1.0rem 2.0rem;
}

.footer-inner dl dt strong {
	font-weight: 700;
}

.footer-inner dl dd {
	line-height: 2.0;
}

/* フッターナビ */

/* -------------------------
   20260328 採用情報表示時用
.menu-footer-nav > ul {
	display: grid;
	grid-template-areas:
	"fnav01 fnav03 fnav04 fnav05"
	"fnav02 fnav03 fnav04 fnav06"
	"fnav02 fnav03 fnav04 fnav07";
	grid-template-columns: repeat(4, max-content);
	grid-template-rows: max-content max-content 1fr;
	grid-column-gap: 6.8rem;
	grid-row-gap: 1.2rem;
	justify-content: center;
}
------------------------- */

/* -------------------------
   20260328 採用情報非表示
------------------------- */
.menu-footer-nav > ul {
	display: grid;
	grid-template-areas:
	"fnav01 fnav03 fnav04 fnav05"
	"fnav02 fnav03 fnav04 fnav07"
	"fnav02 fnav03 fnav04 fnav07";
	grid-template-columns: repeat(4, max-content);
	grid-template-rows: max-content max-content 1fr;
	grid-column-gap: 6.8rem;
	grid-row-gap: 1.2rem;
	justify-content: center;
}
/* ---------------------- */


.menu-footer-nav > ul > li#fnav01 { grid-area: fnav01; }
.menu-footer-nav > ul > li#fnav02 { grid-area: fnav02; }
.menu-footer-nav > ul > li#fnav03 { grid-area: fnav03; }
.menu-footer-nav > ul > li#fnav04 { grid-area: fnav04; }
.menu-footer-nav > ul > li#fnav05 { grid-area: fnav05; }
.menu-footer-nav > ul > li#fnav06 { display: none; grid-area: fnav06; }
.menu-footer-nav > ul > li#fnav07 { grid-area: fnav07; }

.menu-footer-nav > ul > li {
	line-height: 1.75;
}

.menu-footer-nav > ul > li > a {
	font-weight: 700;
}

.menu-footer-nav ul > li > ul {
	margin-top: 0.7rem;
}

.menu-footer-nav ul > li > ul > li {
	line-height: 2.15;
}

.menu-footer-nav ul > li > ul > li a {
	font-size: 1.3rem;
}

.menu-footer-nav a:hover {
	color: var(--cp-color-r);
}

.sns-links {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 8.0rem 0;
	gap: 5.4rem;
}

.copy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100%,392px);
	margin: 2.1rem auto 0;
	gap: 1.4rem;
}

.copy .pp {
	line-height: 2.15;
	font-size: 1.3rem;
}

.copy .cp {
	line-height: 2.0;
	font-size: 1.2rem;
}

/* ページトップへ
#pageTop {
	position: fixed;
	right: 20px;
	bottom: -80px;
	line-height:0;
	z-index:8;
}


#pageTop a {
	display:block;
	width: 34px;
	height: 34px;
	padding: 0 0 2px;
	border: 1px solid #ffffff;
	border-radius: 4px;
	background-color: #15588e;
	text-align: center;
	line-height: 33px;
	font-size: 25px;
	color: #ffffff;
}
*/

/* content ---------------------------------------- */
.container {
	padding-top: 130px;
	line-height: 1.75;
	font-size: 1.6rem;
}

.contents {
}

.contents main {
}

h1 {
	line-height: 1.45;
	font-weight: 700;
	font-size: 4.0rem;
}

h2 {
	line-height: 1.5;
	font-weight: 700;
	font-size: 3.0rem;
}

h3 {
	line-height: 1.44;
	font-weight: 700;
	font-size: 2.5rem;
}

.width-base {
}

.width-base > * {
	width: min(calc(100% - 60px),800px);
	margin: 0 auto;
}

.anchor {
	display: block;
	transform: translate(0, -105px);
}

.disp-none {
	display: none;
}

.mv-area .wp-block-image {
	text-align: center;
}

/* ================================================ */
@media (min-width: 841px) {

.menu > li > ul {
	visibility: hidden;
  opacity: 0;
 	position: absolute;
	left: 0;
	top: calc(100% - 1.0rem);
	min-width: 192px;
	background-color: #FFFFFF;
	border-radius: 8px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	transition: 0s;
}

.menu > li:hover > ul {
  visibility: visible;
  opacity: 1;
}

.menu > li > ul > li > a {
  visibility: hidden;
	height: 0;
	padding: 0 2.5rem;
	line-height: 1.72;
	font-size: 1.4rem;
  opacity: 0;
  transition: .5s;
}

.menu > li:hover > ul > li > a {
  visibility: visible;
	display: block;
	height: auto;
	padding: 0.8rem 2.5rem;
	white-space: nowrap;
  opacity: 1;
}

.menu > li:hover > ul > li:first-of-type {
	padding-top: 1.2rem;
}

.menu > li:hover > ul > li:last-of-type {
	padding-bottom: 1.2rem;
}

}

/* ================================================ */
@media (max-width: 840px) {

:root {
	--ft-size-s: 1.4rem;
	--ft-size-m: 1.6rem;
	--ft-size-l: 1.8rem;
	--ft-size-xl25: 2.2rem;
	--ft-size-xl30: 2.6rem;

	/* フォントサイズとセット */
	--ft-lh-s: 1.71;
	--ft-lh-m: 1.75;
	--ft-lh-l: 1.56;
	--ft-lh-xl25: 1.5;
	--ft-lh-xl30: 1.54;

	--space-xs: 4.0rem;
	--space-s: 6.0rem;
	--space-m: 8.0rem;
	--space-l: 10.0rem;
	--space-xl: 12.0rem;

	--width-mb: 440px;
}

/* header ---------------------------------------- */
.header-inner {
}

/* サイトタイトル */
.site-title {
	width: calc(100% - 150px);
	max-width: 134px;
	min-width: auto;
	z-index: 10;
}

header.open .site-title {
	z-index: 0;
}

/* ヘッダーナビ */
#nav-btn {
	display:block;
}

#header-nav {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	z-index: 1;
	background-color: rgba(51, 51, 51, 0.6);
	transition: 0.5s;
}

header.open .header-inner {
}

header.open #header-nav {
	height: 100%;
	opacity: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.menu {
	width: 100%;
	height: 0;
	padding: 5.2rem 6.5rem 4.0rem 6.5rem;
	transition: 0.5s;
	transition-delay: 0.1s;
}

.menu > li {
	display: none;
}

.menu > li > ul {
	display: none;
}

header.open .menu {
	display: block;
	height: auto;
	background-color: #FFFFFF;
}

header.open .menu > li {
	display: block;
	height: auto;
	border-bottom: 1px dashed var(--main-color);
}

header.open .menu > li#sp-nav-logo {
	display: block;
	height: auto;
	margin-bottom: 3.0rem;
	border-bottom: none;
}

.menu > li:not(#sp-nav-logo) > a,
.menu > li:not(#sp-nav-logo) > span {
	justify-content: space-between;
	height: auto;
	padding: 3.0rem 0;
	font-weight: 700;
	font-size: 1.6rem;
}

header.open .menu > li#sp-nav-logo > a {
	display: inline;
	padding: 0;
}

header.open .menu > li > ul {
	display: block;
	padding: 0 1.5em 3.0rem;
}

.menu > li:not(#sp-nav-logo) > a:has(+ ul),
.menu > li:not(#sp-nav-logo) > span:has(+ ul) {
	padding-bottom: 2.0rem;
}

.menu > li > ul > li > a {
	display: block;
	line-height: 2.15;
	font-size: 1.3rem;
}

header.open .menu > li#sp-nav-foot {
	display: block;
	width: 100%;
	margin-top: 4.2rem;
	border-bottom: 0;
	text-align: center;
}

header.open .menu > li#sp-nav-foot .sns-links {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 5.0rem 0;
	padding: 0;
	gap: 5.4rem;
}

header.open .menu > li#sp-nav-foot p.copy {
	display: block;
	line-height: 2.0;
	text-align: center;
	font-size: 1.2rem;
}

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

/* フッターナビ */

/* -------------------------
   20260328 採用情報表示時用
.menu-footer-nav > ul {
	display: grid;
	grid-template-areas:
	"fnav01 fnav02"
	"fnav03 fnav04"
	"fnav05 fnav06"
	"fnav07 fnav07";
	grid-template-columns: repeat(2, max-content);
	grid-template-rows: max-content max-content max-content 1fr;
	grid-column-gap: 6.8rem;
	grid-row-gap: 1.2rem;
	justify-content: center;
}
------------------------- */

/* -------------------------
   20260328 採用情報非表示
------------------------- */
.menu-footer-nav > ul {
	display: grid;
	grid-template-areas:
	"fnav01 fnav02"
	"fnav03 fnav04"
	"fnav05 fnav07";
	grid-template-columns: repeat(2, max-content);
	grid-template-rows: max-content max-content 1fr;
	grid-column-gap: 6.8rem;
	grid-row-gap: 1.2rem;
	justify-content: center;
}
/* ---------------------- */

.menu-footer-nav ul > li > ul {
	display: none;
}

/* content ---------------------------------------- */
.container {
	line-height: 1.73;
	font-size: 1.5rem;
}

h1 {
	line-height: 1.5;
	font-size: 3.6rem;
}

h2 {
	line-height: 1.54;
	font-size: 2.6rem;
}

h3 {
	line-height: 1.5;
	font-size: 2.2rem;
}

/* wp-block-column 1column */
.wp-block-columns {
	flex-wrap: wrap !important;
}

.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
	flex-basis:100% !important;
}

}

/* ================================================ */
@media (max-width: 480px) {

:root {

	--ft-size-s: 1.2rem;
	--ft-size-m: 1.4rem;
	--ft-size-l: 1.6rem;
	--ft-size-xl25: 2.0rem;
	--ft-size-xl30: 2.4rem;

	/* フォントサイズとセット */
	--ft-lh-s: 1.71;
	--ft-lh-m: 1.71;
	--ft-lh-l: 1.66;
	--ft-lh-xl25: 1.5;
	--ft-lh-xl30: 1.5;

	--space-s: 4.2rem;
	--space-m: 5.6rem;
	--space-l: 7.0rem;
	--space-xl: 8.4rem;
}

/* header ---------------------------------------- */
header {
	padding: 20px;
}

.header-inner {
	padding: 10px 24px;
}

#nav-btn {
	right: 0;
}

.menu {
	padding: 4.2rem 4.4rem 3.0rem 4.4rem;
}

/* footer ---------------------------------------- */
.footer-inner {
	padding: 50px 0;
}

.footer-inner dl {
	gap: 0;
}

.footer-inner dl dt {
	flex-flow: column nowrap;
	margin-bottom: 1.0rem;
	font-size: 2.0rem;
}

.footer-inner dl dd {
	line-height: 1.7;
}

/* フッターナビ */
.menu-footer-nav > ul {
	grid-column-gap: 4.0rem;
}

.menu-footer-nav > ul > li > a {
	font-size: 1.4rem;
}

.sns-links {
	margin: 3.0rem 0 5.0rem;
}

/* content ---------------------------------------- */
.container {
	padding-top: 110px;
	line-height: 1.71;
	font-size: 1.4rem;
}

h1 {
	line-height: 1.43;
	font-size: 2.8rem;
}

h2 {
	line-height: 1.5;
	font-size: 2.4rem;
}

h3 {
	line-height: 1.5;
	font-size: 2.0rem;
}

.width-base > * {
	width: min(calc(100% - 40px),800px);
}

}