@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho&display=swap');
/* CSS Document */
html{
}
body{
	font-family: "Noto Sans", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	background-color: #F9F5F4;
	color: #3B3630;
}

h1,h2,h3,h4,h5,h6,p,li,a{
	font-size: clamp(14px, 1.1vw, 16px);
	font-weight: normal; 
	margin: 0;
	line-height: 1.6;
}
:root {
    --header-height: 100px;
}

body {
    padding-top: var(--header-height);
}
/* ---------- common ---------- */
.mg_b1{
	margin-bottom: 60px;
}
.mg_b2{
	margin-bottom: 40px;
}
.mg_t1{
	margin-top: 40px;
}
.col_60{
	flex-direction: column;
	gap: 60px;
}
.col_40{
	flex-direction: column;
	gap: 40px;
}
.fix_bt{
	position: fixed;
	z-index: 99;
	width: 45%;
	max-width: 280px;
	right: 1%;
	bottom: 20px;
}
.titlebox1{
	flex-direction: column;
	gap: 10px;
}
.titlebox1 img{
	width: clamp(24px, 3vw, 40px); 
}
.titlebox1 p{
	line-height: 1;
}
.titlebox2{
	gap: 15px;
}
.titlebox2 img{
	width: clamp(24px, 3vw, 40px); 
}
.titlebox3{
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
}
.star_icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.star_icon::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    background-image: url("https://briller-wanwan55.com/system_panel/uploads/images/star.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.message_wrap .box_wrap{
	gap: 80px;
}
.message_wrap .box_wrap .imgbox{
	flex-direction: column;
	gap: 20px;
	width: calc(30% - 40px);
}
.message_wrap .box_wrap .imgbox > img{
	border-radius: 50%;
}
.message_wrap .box_wrap .imgbox .namebox{
	flex-direction: column;
	gap: 3px;
}
.message_wrap .box_wrap .imgbox .namebox img{
	width: 110px;
}
.message_wrap .box_wrap .txtbox{
	width: calc(70% - 40px);
	align-items: flex-start;
}
.message_wrap .box_wrap .txtbox .topbox{
	flex-direction: column;
	gap: 5px;
	align-items: flex-start;
}

.info_wrap{
	background-color: #F5E7EF;
	border-top: #C3A879 1px solid;
}
.info_wrap .box_wrap{
	gap: 60px;
	align-items: flex-start;
}
.info_wrap .imgbox{
	width: calc(50% - 30px);
	flex-direction: column;
	gap: 20px;
}
.info_wrap .imgbox img{
	border-radius: 10px;
}
.info_wrap .imgbox .bottom{
	gap: 20px;
	width: 100%;
}
.info_wrap .imgbox .bottom img{
	width: calc((100% - 20px) / 2);
}
.info_wrap .txtbox{
	width: calc(50% - 30px);
	align-items: flex-start;
	flex-direction: column;
}
.info_wrap .txtbox .boxitem{
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}
.info_wrap .txtbox .logo{
	width: min(100%, 300px);
}
/* ---------- topmessage_e ---------- */

.topmessage_e .career_wrap {
	width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: clamp(32px, 5vw, 56px) clamp(28px, 6vw, 70px);
    background: #FFFFFF;
    border-radius: 10px;
}

.topmessage_e .career_wrap .career_item + .career_item {
    margin-top: 34px;
}

.topmessage_e .career_wrap .career_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid #C3A879;
    cursor: pointer;
}

.topmessage_e .career_wrap .career_left {
    display: flex;
    align-items: center;
}

.topmessage_e .career_wrap .career_left p {
    font-weight: 500;
}

.topmessage_e .career_wrap .career_icon {
    position: relative;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.topmessage_e .career_wrap .career_icon::before,
.topmessage_e .career_wrap .career_icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1px;
    background: #C3A879;
    transform: translate(-50%, -50%);
    transition: 0.2s ease;
}

.topmessage_e .career_wrap .career_icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.topmessage_e .career_wrap .career_item.active .career_icon::after {
    opacity: 0;
}

.topmessage_e .career_wrap .career_body {
    display: none;
    padding-top: 20px;
    overflow: hidden;
}
body.gjs-dashed .topmessage_e .career_wrap .career_body {display: block;}
.topmessage_e .career_wrap .career_body p {
    margin: 0;
}
/* ---------- more ---------- */
.more_wrap{
	gap: 10px;
}
.more > a{
	min-width: 200px;
	gap: 20px;
	border-radius: 200px;
	padding: 10px 30px;
	background-color: #E0B2D2;
	border: none;
}
.more a > div p{
	color: #fff;
}

.more2 a{
	position: relative;
	padding: 25px 90px 25px 30px;
	background-color: #E0B2D2;
	max-width: 800px;
	border-radius: 6px;
	border: none;
}
.more2 a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 30px;
    width: 42px;
    height: 42px;
    border: 1px solid #fff;
    border-radius: 50%;
    background-image: url("https://briller-wanwan55.com/system_panel/uploads/images/arrow2.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 7px auto;
    transform: translateY(-50%);
    transition: ease 0.3s;
}

.more2 a:hover::after{
	transform:translate(3px,-50%);
}
.more2 a p{
	color: #fff;
}
.more3 > a{
	background-color: inherit;
	border: #fff 1px solid;;
}
.more_line {
    width: min(100%, 280px);
    margin-inline: auto;
}
.more_line a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 130px;
    padding: 24px 60px 24px 60px;
    border-left: 1px solid #EFE6DD;
    border-right: 1px solid #EFE6DD;
    text-decoration: none;
}
.more_line a > div {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
}
.more_line img {
    width: 28px;
    height: auto;
}
.more_line p {
    color: #3B3630;
    letter-spacing: 0.12em;
    line-height: 1.6;
}
.more_line a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 20px;
    height: 20px;
    border: 1px solid #C3A879;
    border-radius: 50%;
    background-image: url("https://briller-wanwan55.com/system_panel/uploads/images/arrow1.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 7px auto;
    transform: translateX(-50%);
    transition: ease 0.3s;
}
.more_line a:hover::after {
    left: calc(50% + 5px);
}
/* ---------- header ---------- */
.header {
    height: var(--header-height);
    justify-content: center;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0; 
    width: 100%;
    z-index: 999;
    background-color: #fff;
    gap: 20px;
}
.header .leftbox {
    position: absolute;
    left: 50%;
    top: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    margin-left: 0;
    width: max-content;
    max-width: calc(100% - 200px);
    box-sizing: border-box;
    overflow: hidden;
}
.header .leftbox.flex {
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: max-content !important;
    max-width: calc(100% - 200px);
    gap: 80px;
    align-items: center;
    justify-content: center;
    padding: 10px 0 !important;
    margin-left: 0 !important;
    box-sizing: border-box;
    overflow: hidden;
}
.header .leftbox .txt{
	flex-direction: column;
	gap: 5px;
	align-items: flex-start;
}
.header .logo {
    height: clamp(40px, 8vw, 70px);
    flex-shrink: 1;
}
.header .logo a {
    display: block;
    height: 100%;
}
.header .logo img {
    height: 100%;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}
.header .rightbox {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    gap: 20px;
    align-items: stretch;
}
.header .rightbox .head_menu .ul {
	align-items: stretch;
	height: 100%;
	padding: 10px 0;
}

.header .rightbox .head_menu .ul .li{
	padding: 0 30px;
	border-left: 1px solid #CECECE;
	min-width: 200px;
}
.header .rightbox .head_menu .ul .li a{
	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: column;
	gap: 5px;
}
.header .rightbox .head_menu .ul .li p{
	text-align: center;
}
.header .rightbox .head_menu .ul .li img{
	width: 20px;
	height: 20px;
}
.header .menu-bt {
    display: block;
    position: relative;
    width: 100px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
	background-color: #C3A879;
}
.header .menu-bt .line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 20px;
    transform: translate(-50%, -50%);
}

.header .menu-bt .line > div {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: ease 0.3s;
}
.header .menu-bt .line > div:nth-of-type(1) {
    top: 0;
}
.header .menu-bt .line > div:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.header .menu-bt .line > div:nth-of-type(3) {
    bottom: 0;
}
.header .menu-bt.active .line > div:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.header .menu-bt.active .line > div:nth-of-type(2) {
    top: 50%;
    opacity: 0;
    transform: translateY(-50%) translateX(50%);
}
.header .menu-bt.active .line > div:nth-of-type(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.menu-wrap.burgermenu_c .ul .li a p.en {
    font-size: 14px;
    color: #DEAECA;
    font-family: "EB Garamond", sans-serif;
}
.menu-wrap.burgermenu_c .menu-side .tel {
    font-weight: 600;
    font-size: clamp(22px, 2vw, 25px);
    font-family: "EB Garamond", sans-serif;
}
.menu-wrap.burgermenu_c .menu-side .cta {
    background: #DEAECA;
}
.menu-wrap.burgermenu_c .menu-side .sns i{
    color: #DEAECA;
}
/* ---------- pagetitle ---------- */

.pagetitle {
    height: clamp(260px, 42vw, 550px);
    box-sizing: border-box;
    padding-top: 40px;
}
.pagetitle .imgbox {
    position: relative;
    width: 75%;
    height: 100%;
    margin-left: auto;
    overflow: visible; 
	border-radius: 10px;
}
.pagetitle .imgbox::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 10px;
    background: #F9F5F4;
    background: linear-gradient(90deg,rgba(249, 245, 244, 0.7) 0%, rgba(249, 245, 244, 0) 35%, rgba(249, 245, 244, 0) 100%);
    pointer-events: none;
}
.pagetitle .imgbox .txtbox {
    position: absolute;
    top: 50%;
    left: clamp(-300px, -15vw, -90px);
    z-index: 2;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    transform: translateY(-50%);
}

.pagetitle .imgbox .txtbox .en {
    font-family: "EB Garamond", sans-serif;
    font-size: clamp(36px, 7vw, 80px);
    line-height: 1;
    letter-spacing: 0.12em;
}
.pagetitle .imgbox .txtbox .jp {
    font-family: "Zen Old Mincho", sans-serif;
    font-size: clamp(30px, 7vw, 80px);
    line-height: 1;
    letter-spacing: 0.12em;
}
.pagetitle .imgbox .txtbox img {
    width: clamp(28px, 4vw, 50px);
    margin-left: clamp(-20px, -1.5vw, -8px);
}
.pagetitle.pagetitle2 {
    padding-top: 30px !important;
}
/* ---------- footer ---------- */
.footer{
	background-color: #FCFAFB;
	padding-top: 80px;
	padding-bottom: 80px;
	border-top: #C3A879 1px solid;
}
.footer .logo{
	width: clamp(110px, 14vw, 180px);
}
.footer .boxitem{
	position: relative;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    width: calc(100% / 3);
}
.footer > .boxitem:not(:last-of-type) {
    padding-right: 60px;
}
.footer > .boxitem:not(:first-of-type) {
    padding-left: 60px;
}
.footer > .boxitem:not(:last-of-type)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: clamp(120px, 14vw, 250px);
    background-color: #C3A879;
}
.footer .boxitem .items{
	flex-direction: column;
	gap: 15px;
	align-items: flex-start;
}
.footer .boxitem .items .snsitem a{
	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;
	gap: 10px;
}
.footer .boxitem .items .snsitem a img{
	width: 24px;
}

/* ---------- font ---------- */
.en_title{
	font-family: "EB Garamond",  sans-serif;
	font-size: clamp(32px, 5vw, 60px);
	letter-spacing: 0.15em;
    font-weight: 500;
}
.en_title2{
	font-family: "EB Garamond",  sans-serif;
	font-size: clamp(30px, 4vw, 50px);
	letter-spacing: 0.15em;
    font-weight: 500;
}
.default_title{ 
	font-size: clamp(22px, 2.8vw, 36px);
	letter-spacing: 0.05em;
}
.default_title2{
	font-size: clamp(19px, 2vw, 28px);
	letter-spacing: 0.05em;
}
.default_title3{
	font-size: clamp(18px, 1.7vw, 22px);
	letter-spacing: 0.05em;
}
.default_txt {
	font-size: clamp(16px, 1.4vw, 20px);
	letter-spacing: 0.05em;
}
.default_txt2 {
	font-size: clamp(15px, 1.25vw, 18px);
	letter-spacing: 0.05em;
}
.default_txt3{
	font-size: 16px;
	letter-spacing: 0.05em;
}


.font-serif{
	font-family: "Zen Old Mincho",  serif;
}
.font-eb{
	font-family: "EB Garamond",  sans-serif;
}


/* ---------- default ---------- */
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: #3B3630;
}
.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;
}
.pd_wrap_l{
	padding: 0px 0px 0 80px;
}
.pd_wrap_r{
	padding: 0px 80px 0 0px;
}
.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: #DEAECA}
.txt-color2{color: #A07AA8}
.txt-color3{color: #DE8A94}
.txt-color4{color: #C3A879}
.txt-color5{color: #C3A879}
.txt-color6{color: #DE8A94}
.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}

/* ---------- 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;
	}
	.pd_wrap_l{
		padding: 0px 0px 0 60px;
	}
	.pd_wrap_r{
		padding: 0px 60px 0 0px;
	}
/* ---------- common ---------- */

/* ---------- header ---------- */
	.header .rightbox .head_menu .ul {
		display: none;
	}
/* ---------- footer ---------- */
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
/* ---------- common ---------- */
	.message_wrap .box_wrap {
		flex-direction: column;
		gap: 50px;
	}
	.message_wrap .box_wrap .imgbox {
		width: 50%;
	}
	.message_wrap .box_wrap .txtbox {
		width: 70%;
	}
	.info_wrap .box_wrap {
		flex-direction: column;
		align-items: center;
	}
	.info_wrap .imgbox {
		width: 80%;
	}
	.info_wrap .txtbox {
		width: 80%;
	}
/* ---------- header ---------- */
/* ---------- footer ---------- */
	.footer {
		flex-direction: column;
		gap: 30px;
	}
	.footer .boxitem {
		position: relative;
		flex-direction: column;
		gap: 30px;
		align-items: flex-start;
		width: 100%;
	}
	.footer > .boxitem:not(:last-of-type) {
		padding-right: 0px;
	}
	.footer > .boxitem:not(:first-of-type) {
		padding-left: 0px;
	}
	.footer > .boxitem:not(:last-of-type)::after {
		content: none;
	}

}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.pd_wrap{
		padding: 100px 50px 0;
	}
	.pd_wrap_all{
		padding: 100px 50px 100px;
	}
	.pd_wrap_side{
		padding-left: 50px;
		padding-right: 50px;
	}
	.pd_wrap_l{
		padding: 0px 0px 0 50px;
	}
	.pd_wrap_r{
		padding: 0px 50px 0 0px;
	}
	.cate_wrap > .cate{
		padding-top: 100px;
	}
/* ---------- common ---------- */
	.col_60{
		gap: 40px;
	}
	.col_40{
		gap: 30px;
	}

	.message_wrap .box_wrap .txtbox {
		width: 100%;
	}
/* ---------- header ---------- */
    :root {
        --header-height: 80px;
    }
	.header .leftbox .txt {
		display: none;
	}
	.header .menu-bt {
		width: 80px;
	}
	.header .leftbox {
		gap: 20px;
		left: 50%;
	}
  .header .leftbox.flex {
    gap: 30px;
}
/* ---------- footer ---------- */
}
/* ---------- スマートフォン ---------- */
/* ---------- 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;
	}
	.pd_wrap_l{
		padding: 0px 0px 0 20px;
	}
	.pd_wrap_r{
		padding: 0px 20px 0 0px;
	}
	.cate_wrap > .cate{
		padding-top: 80px;
	}
/* ---------- common ---------- */
	.more2 a {
		padding: 20px 80px 20px 25px;
	}
	.more2 a::after {
		right: 20px;
		width: 32px;
		height: 32px;
	}
	.br_sp span{
		display: inline-block;
	}
	.message_wrap .box_wrap .imgbox {
		width: 70%;
	}
	.more{
		margin: 0 auto;
	}
	.topmessage_e .career_wrap .career_head {
		padding-bottom: 8px;
	}
	.info_wrap .imgbox {
		width: 100%;
	}
	.info_wrap .txtbox {
		width: 100%;
	}
	.info_wrap .box_wrap {
		gap: 40px;
	}
	.info_wrap .imgbox img {
		border-radius: 5px;
	}
/* ---------- header ---------- */
    :root {
        --header-height: 60px;
    }
	.header .menu-bt {
		width: 60px;
	}
	.header {
		padding: 0 0 0 20px;
	}
	.pagetitle .imgbox::before {
		background: linear-gradient(90deg,rgba(249, 245, 244, 0.7) 0%, rgba(249, 245, 244, 0.6) 35%, rgba(249, 245, 244, 0.2) 100%);
	}

/* ---------- footer ---------- */
	.footer .boxitem .items .snsitem a img {
		width: 18px;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}
