@charset "UTF-8";

*,
*::before,
*::after {
	box-sizing: border-box;
}

::-moz-selection {
	background: rgba(238, 238, 238, 0.5);
	color: #111;
}

::selection {
	background: rgba(238, 238, 238, 0.5);
	color: #111;
}

html {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	
}

@media screen and (min-width:769px) {

	/* PC 769px以上 */
	html {
		font-size: 16px;
	}
}

@media screen and (max-width:768px) {

	/* タブレット 768px以下 */
	html {
		font-size: 2vw;
	}
}

@media screen and (max-width:480px) {

	/* スマートフォン 480px以下 */
	html {
		font-size: 14px;
	}
}

html,
body {
	margin: 0;
	padding: 0;
	 scroll-padding-top: 140px;
  scroll-behavior: smooth;
}

body {
	transition: background-color 0.5s ease, color 0.5s ease;
	font-family: "Raleway", "Gothic A1", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	color: #000;
	line-height: 1.7;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-wrap: break-word;
}
@media screen and (max-width:768px) {
	body{
		font-family: "Roboto", "Noto Sans JP", sans-serif;
	}
}

article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.45;
	font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
}

a,
a::after,
a::before {
	color: inherit;
	outline: none;
	text-decoration: none;
	position: relative;
	display: inline-block;
	transition: all .3s;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	-moz-transition: all .3s
}

ol,
ul,
li {
	list-style: none
}

img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: top;
}

video {
	max-width: 100%;
	height: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, sans-serif;
	font-size: inherit;
}

ul,
ol {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

th,
td {
	text-align: left;
	vertical-align: top;
}


blockquote,
q {
	quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
	content: "";
	content: none;
}

address {
	font-style: normal;
}

input,
textarea,
select {
	max-width: 100%;
}
 .js-anchor {
    --anchor-offset: 60px;
    position: relative;
  }
  .js-anchor::before {
    content: "";
    display: block;
    height: var(--anchor-offset);
    margin-top: calc(var(--anchor-offset) * -1);
    pointer-events: none;
    visibility: hidden;
  }
/*-----------------------
/*clearfix
---------------------------------*/
/* For modern browsers */
.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

/* For IE 6/7 only */
.cf {
	*zoom: 1;
}



/*-----------------------
component パーツ
-----------------------*/

/*ローディング*/
.c-loading {
	background: #fff;
	height: 100%;
	width: 100%;
	position: fixed;
	visibility: visible;
	opacity: 1;
	top: 0;
	left: 0;
	z-index: 2;
	transition: all 1s ease 0s;
}

[data-loading=true] .c-loading {
	visibility: hidden;
	opacity: 0;
}

.c-loading__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*モーダル*/
.c-modal {
	z-index: 100;
}

.c-modal__content {
	-webkit-transform: translate(-50%, -50%);
	background: #fff;
	left: 50%;
	opacity: 0;
	padding: 2em 2.4em;
	position: fixed;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all .3s ease 0s;
	visibility: hidden;
	z-index: 100;
}

.c-modal__close {
	background: #000;
	display: none;
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: all .3s ease 0s;
	width: 100%;
	z-index: 99;
}

.is-checked .c-modal__close {
	display: block;
	opacity: .4;
}

.is-checked .c-modal__content {
	opacity: 1;
	visibility: visible;
}

.c-modal__content--cover {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	transform: none;
}

.c-title {
	font-size: 50px;
	font-weight: 700;
	letter-spacing: .03em;
}

/*タブ*/
.c-tab__nav {
	border-bottom: 2px solid #e0e0e0;
	display: flex;
	justify-content: center;
}

.c-tab__item {
	background: #e0e0e0;
	display: block;
	margin-bottom: -2px;
	padding: .8em 1.6em;
}

.c-tab__item.is-checked {
	background: #757575;
	color: #fff;
}

.c-tab__content {
	display: none;
}

.c-tab__content.is-checked {
	display: block;
}

/*ナビ*/
.c-navigation {
	display: flex
}

.c-navigation a {
	display: block;
	text-decoration: none;
	transition: all .3s ease 0s
}

.c-navigation > li {
	margin-right: 1.2em;
	position: relative;
	text-align: center;
}

.c-navigation > li:last-child {
	margin-right: 0
}

.c-navigation > li > ul {
	display: block;
	left: 0;
	opacity: 0;
	position: absolute;
	text-align: left;
	top: calc(100% - .2em);
	transition: all .5s ease 0s;
	visibility: hidden;
	width: 200px;
	z-index: 31
}

/*テーブル*/
.c-table {
	background: #fff;
	border: 1px solid #bdbdbd;
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%
}

.c-table td,
.c-table th {
	border: 1px solid #bdbdbd;
	padding: .7rem
}

.c-table th {
	font-weight: 700
}

.c-table--fixed {
	table-layout: fixed
}

.c-table--striped tr:nth-of-type(even) {
	background: #e0e0e0
}

.c-table--horizon {
	border: none
}

.c-table--horizon tr {
	border-bottom: 1px solid #bdbdbd;
	border-top: 1px solid #bdbdbd
}

.c-table--horizon tr:first-of-type {
	border-top: none
}

.c-table--horizon tr:last-of-type {
	border-bottom: none
}

.c-table--horizon td,
.c-table--horizon th {
	border: none
}

.c-table-responsive {
	-webkit-overflow-scrolling: touch;
	display: block;
	overflow-x: auto;
	padding: .2em 0;
	width: 100%
}

.c-navigation > li:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible
}

/*dlリスト*/

.c-list dt,
.c-list dd {
	padding: 1em 0;
	border-bottom: 1px solid #baaca6;
}

.c-list dt {
	width: 200px;
	padding-right: 1em;
}

.c-list dd {
	width: calc(100% - 200px);
	padding-right: 1em;
	padding-left: 1em;
}

/*ラジオボタン*/
.c-radio,
[type=radio] {
	display: none
}

.c-radio + span,
[type=radio] + span {
	cursor: pointer;
	display: inline-block;
	margin: 0;
	padding: 0 1em 0 1.4em;
	position: relative
}

.c-radio + span::before,
[type=radio] + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid #bdbdbd;
	border-radius: 50%;
	content: "";
	display: block;
	height: 1em;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1em
}

.c-radio + span::after,
[type=radio] + span::after {
	-webkit-transform: translateY(-50%);
	background: #616161;
	border: 1px solid #9e9e9e;
	border-radius: 50%;
	box-shadow: 0 0 0 .1em #fff inset;
	content: "";
	display: block;
	height: 1em;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all .3s ease 0s;
	width: 1em
}

.c-radio:checked + span::before,
:checked[type=radio] + span::before {
	border: 1px solid #9e9e9e
}

.c-radio:checked + span::after,
:checked[type=radio] + span::after {
	opacity: 1
}

/*チェックボックス*/
.c-checkbox,
[type=checkbox] {
	display: none
}

.c-checkbox + span,
[type=checkbox] + span {
	cursor: pointer;
	display: inline-block;
	margin: 0;
	padding: 0 1em 0 1.4em;
	position: relative
}

.c-checkbox + span::before,
[type=checkbox] + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid #bdbdbd;
	border-radius: 2px;
	content: "";
	display: block;
	height: 1em;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1em
}

.c-checkbox + span::after,
[type=checkbox] + span::after {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	border-bottom: 3px solid #616161;
	border-left: 3px solid #616161;
	content: "";
	display: block;
	height: .6em;
	left: 0;
	margin-top: -.2em;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all .3s ease 0s;
	width: 1em
}

.c-checkbox:checked + span::before,
:checked[type=checkbox] + span::before {
	border: 1px solid #9e9e9e
}

.c-checkbox:checked + span::after,
:checked[type=checkbox] + span::after {
	opacity: 1
}

/*セレクトボックス*/
.c-select,
select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url(./img/arrow-bottom-w.png);
	background-position: center right .2em;
	background-repeat: no-repeat;
	background-size: 16px auto;
	border: 1px solid #bdbdbd;
	border-radius: 0;
	color: inherit;
	cursor: pointer;
	font-family: inherit;
	font-size: 1em;
	padding: .4em 2.4em .4em .8em;
	width: auto
}

.c-select::-ms-expand,
select::-ms-expand {
	display: none
}

.c-select:focus,
select:focus {
	border: 1px solid #9e9e9e;
	box-shadow: none;
	outline: 0
}

.c-select[multiple],
select[multiple] {
	background-image: none;
	height: 100px;
	padding: 0
}

.c-select[multiple] option,
select[multiple] option {
	padding: .4em 1.2em .4em .4em
}

/*アコーディオン*/
.c-accordion__title {
	cursor: pointer;
	padding: .4em .8em
}

.c-accordion__content {
	display: none;
	padding: .4em .8em
}

.c-accordion__title--arrow {
	padding-right: 2.4em;
	position: relative
}

.c-accordion__title--arrow::after {
	-webkit-transform: translateY(-50%);
	background: transparent url(./img/arrow-bottom-w.png) no-repeat top center/cover;
	content: "";
	height: .8em;
	position: absolute;
	right: .4em;
	top: 50%;
	transform: translateY(-50%);
	transition: all .5s ease 0s;
	width: .8em
}

.is-checked .c-accordion__title--arrow::after {
	-webkit-transform: translateY(-50%) rotateX(180deg);
	transform: translateY(-50%) rotateX(180deg)
}

.c-floating {
	bottom: 1em;
	opacity: 0;
	position: fixed;
	right: 1em;
	transition: all .3s ease 0s;
	visibility: hidden;
}

[data-scroll=true] .c-floating {
	opacity: 1;
	visibility: visible;
}

.c-icon,
.c-icon-arrow-bottom,
.c-icon-arrow-left,
.c-icon-arrow-right,
.c-icon-arrow-top,
.c-icon-check,
.c-icon-circle,
.c-icon-cross,
.c-icon-glass,
.c-icon-hamburger,
.c-icon-rhombus,
.c-icon-square,
.c-icon-triangle {
	display: inline-block;
	font-size: 50px;
	height: 50px;
	overflow: hidden;
	position: relative;
	width: 50px;
}

.c-icon-arrow-top > span {
	-webkit-transform: rotate(-45deg);
	border-right: 0.16em solid #757575;
	border-top: 0.16em solid #757575;
	display: block;
	height: 56%;
	left: 50%;
	margin: -14% 0 0 -28%;
	position: absolute;
	top: 50%;
	transform: rotate(-45deg);
	width: 56%;
}

/*-----------------------
layout レイアウト
-----------------------*/
.l-inner {
	margin: 0 13%;
}

.l-window-full {
	margin: 0 calc(50% - 50vw);
	overflow: hidden;
	width: 100vw;
}

.l-window-right {
	margin: 0 calc(50% - 50vw);
	overflow: hidden;
	padding: 0 0 0 calc(50vw - 50%);
	width: 100vw;
	display: block;
}

.l-window-left {
	margin: 0 calc(50% - 50vw);
	overflow: hidden;
	padding: 0 calc(50vw - 50%) 0 0;
	width: 100vw;
	display: block;
}

.l-row {
	display: flex;
	flex-wrap: wrap;
}

.l-row--middle {
	align-items: center;
}

.l-row--baseline {
	align-items: baseline;
}

.l-row--end {
	align-items: flex-end;
}

.l-row--center {
	justify-content: center;
}

.l-row--between {
	justify-content: space-between;
}

.l-row--reverse {
	flex-direction: row-reverse;
}

.l-row__col {
	align-items: stretch;
	display: flex;
	flex-direction: column;
	padding: 0;
}

.l-row--padding {
	width: calc(100% + 16px);
}

.l-row__col01 {
	width: 8.33333%
}

.l-row__col02 {
	width: 16.66667%
}

.l-row__col03 {
	width: 25%
}

.l-row__col04 {
	width: 33.33333%
}

.l-row__col05 {
	width: 41.66667%
}

.l-row__col06 {
	width: 50%
}

.l-row__col07 {
	width: 58.33333%
}

.l-row__col08 {
	width: 66.66667%
}

.l-row__col09 {
	width: 75%
}

.l-row__col10 {
	width: 83.33333%
}

.l-row__col11 {
	width: 91.66667%
}

.l-row__col12 {
	width: 100%
}

.l-row--padding .l-row__col03 {
	width: calc(25% - 16px);
	margin-right: 16px;
}

.l-row--padding .l-row__col04 {
	width: calc(33.333% - 16px);
	margin-right: 16px;
}

.l-row--padding .l-row__col06 {
	width: calc(50% - 16px);
	margin-right: 16px;
}

/*section*/
.l-section {
	width: 100%;
	padding: 8rem 0 0;
}


/*-----------------------
Utility
-----------------------*/
.sp {
	display: none;
}

.u-bold {
	font-weight: bold;
}

.u-bold.u-extra {
	text-shadow: 2px 2px 0 #000, -2px -2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, 0px 2px 0 #000, 0 -2px 0 #000, 0px 0 0 #000, 2px 0 0 #000;
}

.u-text-left {
	text-align: left
}

.u-text-center {
	text-align: center
}

.u-text-right {
	text-align: right
}

.u-txt-wh {
	color: #fff;
}

.u-japanease {
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	overflow: hidden;
	writing-mode: vertical-rl
}

.mgb1x {
	margin-bottom: 1em;
}

.mgb2x {
	margin-bottom: 2em;
}

.mgb3x {
	margin-bottom: 3em;
}

.mgb4x {
	margin-bottom: 4em;
}

.mgb5x {
	margin-bottom: 5em;
}

.mgb6x {
	margin-bottom: 6em;
}

.mgb8x {
	margin-bottom: 8em;
}

.mgt2x {
	margin-top: 2em;
}

.pdr1x {
	padding-right: 1em;
}

.pdl1x {
	padding-left: 1em;
}

.u-hover:hover {
	opacity: .8;
	transition: all .5s ease 0s
}

.u-hover-scale-wrap {
	width: auto;
	overflow: hidden;
}

.u-hover-scale {
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1);
	transition: all .5s ease 0s
}

.u-hover-scale:hover {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1)
}

.u-hover-up {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	transition: all .5s ease 0s
}

.u-hover-up:hover {
	-webkit-transform: translate(0, -.3em);
	transform: translate(0, -.3em)
}

.u-hover-down {
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	transition: all .5s ease 0s
}

.u-hover-down:hover {
	-webkit-transform: translate(0, .3em);
	transform: translate(0, .3em)
}

.u-fadein {
	opacity: 0;
	transition: all 1.8s ease 0s;
}

.u-fadein.is-anim {
	opacity: 1
}

.u-fadein-up {
	-webkit-transform: translate(0, 3.8rem);
	opacity: 0;
	transform: translate(0, 3.8rem);
	transition: all 1.6s ease 0s;
}

.u-fadein-up.is-anim {
	-webkit-transform: translate(0, 0);
	opacity: 1;
	transform: translate(0, 0);
}

.u-fadein-up.delay.is-anim {
	transition: all 1.6s ease 2s;
}

.u-remarks {
	position: relative;
	color: #DD3641;
	font-size: 90%;
	padding-left: 17px;
	line-height: 1.4;
}

.u-remarks:before {
	position: absolute;
	content: '※';
	left: 0;
}

.wrapper {
	position: relative;
}

@-webkit-keyframes zoomUp {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}
}

@keyframes zoomUp {

	/* 1.15倍させる指定 */
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}
}

swiper-container {
	position: relative;
}

.swiper-slide {
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
	/* ８秒かけて拡大させる */
	-webkit-animation: zoomUp 8s linear 0s;
	animation: zoomUp 8s linear 0s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.mv .swiper-img {
	background-size: cover;
	background-position: center center;
	/* 背景画像は中央を軸に表示させる */
	height: 100vh;
	/* 600pxの高さで表示させる */
}

.mv {
	position: sticky;
	top: 0;
	height: 100vh;
	background-size: cover;

}

.mv:after {
	content: '';
	background: #fff;
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	filter: opacity(0);
	transition: .3s ease;
}

.is-out .mv:after {
	filter: opacity(1);
	transition: .6s ease;
	z-index: 1
}

.sitelogo {
	font-weight: 700;
	margin-bottom: 2em;
	line-height: 1;
	font-size: 30px
}


nav a {
	font-weight: 700;
	line-height: 1;
	padding: 0.5em 0
}

.copy {
	font-size: 60px;
	font-weight: 900;
	line-height: 1.2;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
	z-index: 2
}

.ttl {
	font-family: 'Raleway', sans-serif;
}

.sec-concept {
	width: 100%;
	color: #fff;
	font-size: 30px;
	display: flex;
	justify-content: flex-end;
	padding: 40vh 50px 10vh;
	box-sizing: border-box;
	transition: 2s ease;
	position: relative;
}

/*
.is-out .sec-concept {
	color: #000
}
*/

.conceptwrap {
	width: 50%;

}

.ttl1 {
	font-size: 90px;
	font-weight: 700;
	margin-bottom: .5em;
	position: relative
}

.ttl1:before {
	content: '';
	width: 100px;
	height: 4px;
	background: #000;
	position: absolute;
	bottom: 0;
	left: 0;
}

.sec-brand .ttl1:before,
.sec-concept .ttl1:before {
	background: #fff;
}

.ttl2 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: .5em;
	line-height: 1.6;
	position: relative
}

.ttl3 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	padding-left: 1.5em;
	position: relative;
	margin-bottom: 2em
}

.ttl3:before {
	content: '';
	width: 1em;
	height: 2px;
	background: #fff;
	position: absolute;
	top: .7em;
	left: 0
}

.ttl3._bk:before {
	background: #000;
}

.concepttxt {
	font-size: 20px;
	font-weight: 700
}

.sec-service {
	padding: 80px 0 35vh;
	position: relative;
	z-index: 2;
	opacity: 0
}
.is-out .sec-service{
	opacity: 1
}
.sec-brand {
	padding: 40vh 5% 80px;
	position: relative;
	z-index: 2;
}

.sec-recruit {
	padding: 35vh 0 120px;
	position: relative
}

.cushion {
	height: 50px
}

.l-header {
	position: fixed;
	top: 90px;
	left: 55px;
	z-index: 20
}
.drawer {
    display: none;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 60px;
    cursor: pointer;
    position: absolute;
    z-index: 30;
    top: 0;
	left: 15px;
	flex-direction: column
}
.drawer span {
    width: 100%;
    height: 2px;
    background: #000;
    display: block;
    margin: 3px 0;
    transition: .3s all;
}
.is-open .drawer span:first-child{
	transform: rotate(35deg);
    top: 4px;
    position: relative;
}
.is-open .drawer span:nth-child(2){
	display: none
}
.is-open .drawer span:last-child{
	transform: rotate(-35deg);
    top: -4px;
    position: relative;
}
.inner {
	padding-left: 300px
}

.js-in {
	opacity: 0;
	/* 初期状態は透明 */
	transform: translateY(100px);
	/* 50px下にずらしておく */
	transition: all 0.6s ease;
	/* フォールバック用 */
}

.txt {
	font-size: 16px;
}

.txt_l {
	font-size: 17.5px;
}

.service_read .txtarea {
	width: 47%;
}

.sec-service .img {
	width: 53%;
}

.sec-service .txtarea .txt_l {
	margin-right: 15%
}

.service_read {
	margin-bottom: 160px
}

.bg-gy {
	margin-right: 10%;
	position: relative;
	padding: 100px 0
}

.bg-gy:before {
	content: '';
	background: #eee;
	width: calc(80% + 150px);
	height: 100%;
	position: absolute;
	top: 0;
	left: -200%;
	z-index: -1;
	transition: .8s all
}

.bg-in .bg-gy:before {
	left: -300px;

}

.servicebox {
	margin-bottom: 40px
}

.servicebox:nth-of-type(even) {
	left: 10%;
	position: relative
}

.servicebox .ttl2 {
	padding: 0 0 14px 34px;
	border-bottom: 1px solid #707070;
	margin-bottom: 24px
}

.servicebox .ttl2 span {
	position: absolute;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	padding-bottom: 4px;
	top: 4px;
	left: 0
}

.servicebox .ttl2 span:before {
	content: '';
	width: calc(100% - 2px);
	height: 2px;
	background: #000;
	position: absolute;
	bottom: 0;
	left: 1px
}

.servicebox .txtarea {
	width: 34%
}

.servicebox .img {
	width: 42%
}

.readbox {
	width: min(650px, 100%);
	margin-bottom: 80px
}

.servicebox .txt {
	margin-right: 10%
}
.brandlist {
	column-gap: 36px;
	margin-bottom: 250px
}

.brandlist li {
	width: calc(100% / 3 - 24px);
}

.brandlist .img {
	margin-bottom: 24px
}

.brandlist .ttl {
	font-weight: 600;
	align-items: flex-end;
	font-size: 15px;
	line-height: 1;
	margin-bottom: 38px;
	gap:10px
}

.brandlist .ttl .logo {
	max-width: 250px;
}

.brandlist .txt {
	width: min(390px, 100%);
}

.shopinginfobox {
	margin-bottom: 40px
}

.shopinginfobox._realshop {
	align-items: flex-end;
}

._DEVICE {
	padding-bottom: 80px;
	margin-bottom: 80px;
	border-bottom: 1px solid #707070
}

.shopinginfobox .imgarea {
	width:70%;
	display: flex;
	background: #fff;
	min-height: 450px;
}

.shopinginfobox .imgarea .img {
	background-size: cover;
	width: 62%;
}

.shopinginfobox .shopinfo {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000;
	flex-direction: column;
	padding: 0 30px;
	width: 38%;
}

.shopinginfobox .shopinfo .logo {
	width: 230px
}

.shopinginfobox .txtarea {
	width:30%
}

.shopinginfobox .txtarea .shoplist,
.shopinginfobox .txtarea .snslist,
.addrwrap {
	padding-left: 10%
}

.shopinginfobox .txtarea li {
	margin-bottom: 20px
}

.btn1 {
	border-bottom: 1px solid #fff;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	padding: 1em 2em 1em 1.5em;
	width: min(370px, 100%);
	position: relative
}

.btn1._bk {
	border-bottom: 1px solid #000;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
}

.btn1:before,
.btn1:after {
	content: '';
	width: 1px;
	height: 1em;
	background: #fff;
	position: absolute;
}

.btn1._bk:before,
.btn1._bk:after {
	background: #000;
}

.btn1:before {
	top: 0;
	left: 0;
}

.btn1:after {
	bottom: 0;
	left: 0;
}

.btn1 i {
	margin-right: 5px
}

.ico-link {
	position: absolute;
	top: calc(50% - 5px);
	right: 20px
}

.ico-link:after,
.ico-link:before {
	content: '';
	width: 14px;
	height: 14px;
	background: #fff;
	border: 2px solid #2C2C2C;
	position: absolute;
}

.ico-link:before {
	z-index: 1;
	top: 0;
	right: 0
}

.ico-link:after {
	top: -4px;
	right: -4px
}

.btn1 .line {
	position: absolute;
	width: 1.3em;
	height: 1px;
	background: #fff;
	top: 50%;
	left: -.6em;
	transition: .3s all;
}

.btn1._bk .line {
	background: #000;
}

.btn1:hover {
	background: #000
}

.btn1._bk:hover {
	background: #bdbdbd
}

.btn1:hover .line {
	transform: rotate(90deg)
}

.snslist li a {
	padding-left: 30px;
	position: relative;
	text-decoration: underline;
}

.snslist li a:before {
	content: '';
	background: url(../images/ico-ig_wh.svg)no-repeat;
	width: 20px;
	height: 20px;
	background-size: cover;
	position: absolute;
	top: 3px;
	left: 0;
}

.snslist li a:hover {
	background: #000;
}

.addrwrap {
	font-family: "Gothic A1", sans-serif;
}

.addrwrap .ttl {
	font-weight: 700;
	margin-bottom: 1.6em
}

.sec-recruit .txtarea {
	width: 40%;
	margin-right: 10%
}

.sec-recruit .img {
	width: 50%;
	background: url(../images/recruitimg.jpg)no-repeat center center;
	background-size: cover;

}

.sec-news {
	padding: 60px 0 120px;
	position: relative;
	z-index: 2;
	background: #fff
}

.newslist {
	width: min(1200px, 100%);
	margin: 0 auto 60px 0;
}

.newslist li a {
	padding: 20px 55px 20px 0;
	align-items: center;
	border-bottom: 1px solid #bdbdbd;
}

.newslist li a:after {
	content: '';
	background: url(../images/ico-arrow-r.svg)no-repeat;
	width: 22px;
	height: 10px;
	background-size: cover;
	position: absolute;
	top: calc(50% - 5px);
	right: 0;
}

.newslist li a:hover {
	background: #e0e0e0;
	text-decoration: underline
}

.newslist .img {
	width: 264px;
	margin-right: 40px;
	display: block
}

.newslist .txtarea {
	width: calc(100% - 305px);
}

.newslist .datearea {
	font-size: 12px
}

.newslist .ttl {
	font-size: 20px;
}

.p-footer {}

.p-footer .inner {}

.footernav {
	border-top: 1px solid #bdbdbd;
	padding: 135px 0;
}

.footernav a {
	padding: 1em 1em 0 1em;
	position: relative;
	font-weight: 700
}

.footernav a:before {
	content: '';
	width: calc(100% - 2em);
	height: 2px;
	background: #000;
	position: absolute;
	bottom: 0;
	left: 1em
}

.footerlogo {
	margin-bottom: 60px;
	font-weight: 700
}

.footerlogo .sub {
	font-size: 12px;
	margin-bottom: .85em
}

.footerlogo .sitelogo {
	font-size: 30px;
	margin-right: .3em
}

.footerbottom {
	padding-right: 5%;
	margin-bottom: 90px;
	align-items: flex-end
}

.footerbottom .info {
	width: 70%;
	column-gap: 60px
}

.branch {
	width: min(328px, 100%);
}

.branch .ttl3 {
	font-size: 16px;
	margin-bottom: .5em
}

.footerbottom .linkarea {
	width: 30%
}

.snsicon {
	justify-content: flex-end;
	padding: 20px 0;
	column-gap: 10px
}

.copyright {
	font-size: 10px;
	text-align: right
}

.sp {
	display: none
}


@media (max-width: 1224px) {
	.shopinginfobox .imgarea{
		flex-direction: column;
		width: 60%;
		    min-height: auto;
	}
	.shopinginfobox .txtarea {
    width: 40%;
}
	.shopinginfobox .imgarea .img {
		height: 300px;
		width: 100%
	}
	.shopinginfobox .shopinfo{
		width: 100%
	}
	.sec-concept {
		width: 100%;
		color: #000000;
		font-size: 30px;
		display: flex;
		justify-content: flex-end;
		padding: 5vh 3%;
		box-sizing: border-box;
		transition: 2s ease;
		position: relative;
	}
	.bg-gy{
padding-right: 0;}
	.servicebox .img,.servicebox .txtarea{
		width: 50%
	}
	.bg-gy:before{
		    width: calc(100% + 250px);
	}
}
@media (max-width: 1124px) {

	.shopinginfobox .imgarea,
	.shopinginfobox .txtarea {
		width: 100%
	}

	.shopinginfobox .imgarea {
		display: block;
		min-height: auto;
		margin-bottom: 30px
	}

	¥
	.shopinginfobox .shopinfo .logo {
		width: 170px;
	}

	.shopinginfobox .shopinfo {
		padding: 30px
	}

	shopinginfobox .txtarea {
		margin: 20px auto;
	}
	.mv:after{
		    filter: opacity(1);
	}
	
}

@media (max-width: 820px) {
	.sp_nav {
    background: #fff;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
    padding: 35px 5%;
}
.is-open .sp_nav {
    opacity: 1;
    transition: 0.3s all;
    visibility: inherit;
}
	.sec-service{
		opacity: 1;
		overflow: hidden
	}
	nav a{
		padding: 1em
	}
	body {
		line-height: 1.6
	}
	
	.sp,.footerbottom {
		display: block;
	}

	.pc,
	.newslist li a:after{
		display: none;
	}
	.drawer{
		display: flex
	}
	.inner {
		padding-left: 0
	}

	.conceptwrap,
	.service_read .txtarea,
	.service_read .img,
	.servicebox .txtarea,
	.servicebox .img,
	.brandlist li,
	.sec-recruit .txtarea,
	.sec-recruit .img,
	.footerbottom .linkarea{
		width: 100%;
	}

	.sp_reverse {
		flex-direction: column-reverse
	}

	.sp_padding {
		padding-right: 15px;
		padding-left: 15px;
	}

	.sec-service .txtarea .txt_l,
	.bg-gy {
		margin-right: 0;
	}

	.l-header {
	        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        height: 60px;
        display: flex;
        align-items: center;
		justify-content: center;
		color: #000
	}
	.l-header .sitelogo{
		margin-bottom: 0;
		font-size: 22px;
	}
	.wrapper{
		margin-top: 60px
	}
	.copy {
		width: 95%
	}
	.mv,.mv .swiper-img{
height: calc(100vh - 60px);
	}
	.mv {
		position: inherit;
	}

	.ttl1 {
		font-size: 60px;
		text-align: center;
	}

	.ttl1:before {
		display: none
	}

	.shopinfomation .ttl1 {
		font-size: 40px;
		margin-bottom: 1em
	}

	.ttl2 {
		font-size: 22px;
	}

	.concepttxt,
	.txt_l {
		font-size: 16px;
		font-weight: 400;
	}
	.ttl3{
		font-size: 16px;
	}

	.sec-brand,
	.bg-gy,
	.sec-recruit{
		padding-top: 60px;
	}

	.bg-gy,.sec-brand {
		padding-bottom: 1px
	}

	.sec-service {
		padding-bottom: 0;
	}

	.sec-service .img,
	.brandlist li,
	.sec-recruit .mgb4x,
	.branch,
	.footerlogo{
		margin-bottom: 30px
	}

	.service_read,
	.servicebox {
		margin-bottom: 60px
	}

	.brandlist {
		margin-bottom: 90px
	}

	.brandlist .ttl {
		margin-bottom: 16px
	}

	.bg-gy:before {
		width: calc(100% + 150px);
	}

	.bg-in .bg-gy:before {
		left: -20%;
	}

	.servicebox:nth-of-type(even) {
		left: auto;
	}

	.cushion {
		height: 0
	}

	.brandlist .ttl .logo {
		max-width: 120px;
		margin-right: 14px
	}

	.servicebox .ttl2 span {
		font-size: 16px;
	}

	.brandlist .ttl {
		font-size: 12px
	}

	.shopinginfobox .txtarea .shoplist,
	.shopinginfobox .txtarea .snslist,
	.addrwrap {
		padding-left: 0;
	}
	.sec-recruit .img{
		height: 300px;
		margin-bottom: 30px
	}
	.newslist li a {
    padding: 20px 0;
    display: block;
		border-bottom: none
}
	.newslist .img {
    margin: 0 auto 20px;
		width: 100%;
}
	.newslist .img img {
    aspect-ratio: 2 / 1;
    object-fit: cover;
    display: block;
    width: 100%;
}
	.newslist .ttl,
	.branch .ttl3{
    font-size: 14px;
    font-weight: 700;
}
	.newslist .datearea {
    margin-bottom: 1em;
}
		.sec-news .btn{
		   text-align: center;
	}
	.sec-news .btn1{
		    width: min(250px, 100%);
	}
	.footernav {
    border-top: 1px solid #bdbdbd;
    padding: 65px 0;
}
	.snsicon {
    justify-content: flex-start;
		margin-top: 60px
}
	.js-anchor{
		    --anchor-offset: 0;
	}

}
.newslist .datearea{
    display: flex;
    gap: 11px;
    margin-bottom: 1em;
}
.post-categories {
    display: flex;
    gap: 4px;
	font-size: 12px
}
.post-categories li{
	border: 1px solid #7c7c7c;
	line-height: 1;
	padding: 5px 8px;
	border-radius: 4px
}
