@charset "UTF-8";
/* CSS Document */

html {
	font-size: 62.5%;
}

.only-pc, .no-sp
	{ display: block !important; }
.only-sp, .no-pc
	{ display: none !important; }
img.only-sp, img.no-pc
	{ display: none !important; }

@media screen and (max-width: 799px) {
	.only-pc, .no-sp
	{ display: none !important; }
	.only-sp, .no-pc
	{ display: block !important; }
	img.only-sp, img.no-pc
	{ display: inline-block !important; }
}

body {
	position: relative;
	width: 100%;
	height: 100%;
	word-wrap: break-word;
  	overflow-wrap: break-word;
	color: #212121;
	font-weight: 400;
	font-family:  "Zen Old Mincho", "Hiragino Mincho ProN",
  "Yu Mincho",
  "YuMincho",
  "MS PMincho",
  serif;
	font-size: 1.5rem;
	text-align: justify;
	line-height: 2;
    letter-spacing: 0.02em;
}
img {
	display: block;
	width: 100%;
}

/* ==========================================================
 汎用パーツ
========================================================== */
li {
  list-style: none;
}
.bg-01 {
	background: url(../img/img_bg.svg) no-repeat center center;
}
.bg-02 {
	background: url(../img/img_bg_03.svg) no-repeat center center;
}
.wrap {
	display: grid;
	grid-auto-flow: row;
	grid-template-columns: 1fr 400px 
}
/*  font
---------------------------------------------------------- */
h2 , h3  {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

/*  section
---------------------------------------------------------- */
.sec-01 {
	padding: 110px 0 160px;
}
.sec-02 {
	max-width: 800px;
	margin: 0 auto;
}
/*  ttl
---------------------------------------------------------- */
.ttl-01 {
	position: relative;
	font-size: 24px;
	letter-spacing: 0.1em;
	margin-bottom: 60px;
}
.ttl-01::before {
	content: '';
	display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	background: #e50012;
	border-radius: 50%;
	top: -30px;
}
.ttl-en {
	font-size: 11px;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ";
	letter-spacing: 0.3em;
	font-weight: 400;
}
.ttl-sub {
	font-size: 12px;
}
.ttl-ja {
	margin-left: -3px;
}
/*  txt
---------------------------------------------------------- */
.txt-01 {
	margin-bottom: 40px;
}
/*  btn
---------------------------------------------------------- */
.btn-01 {
	border: #fff solid 1px;
	width: 200px;
	padding: 10px;
	font-size: 12px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 3px;
	transition: all 0.2s;
}
.btn-01:hover {
	opacity: 0.7;
}

/* ==========================================================
 header / footer
========================================================== */
/* header
---------------------------------------------------------- */
header {
	max-width: 1000px;
	margin: 0 auto;
}
header .logo {
	width: 280px;
	height: auto;
	padding-top: 40px;
}
header .kv-img {
	border-radius: 0 0 20px 20px;
}
header .wrap {
	margin-top: -80px;
	align-items: flex-end;
	grid-template-columns: 1fr 50%;
	text-align: left;
}
.kv-txt {
	margin-left: 100px;
}
.kv-txt h2 {
	font-size: 80px;
	line-height: 1.4;
	letter-spacing: 0.01em;
	margin-bottom: 30px;
}
.kv-txt .ttl-sub {
	font-weight: 700;
	letter-spacing: 0.4em;
}
/* footer
---------------------------------------------------------- */
footer {
	padding: 20px 0 30px;
	text-align: center;
}
footer .logo {
	display: block;
	width: 220px;
	margin: 0 auto 50px;
}
footer .copy {
	font-size: 10px;
	letter-spacing: 0.1em;
}


/* philosophy
---------------------------------------------------------- */
.philosophy {
	padding-top: 240px;
}
.philosophy h3 {
	font-size: 40px;
	letter-spacing: 0.01em;
	margin-bottom: 50px;
}
.philosophy .wrap {
	gap: 100px;
	align-items: flex-end;
}
.philosophy .wrap img {
	border-radius: 5px;
}

/* brand
---------------------------------------------------------- */
.brand {
	background: url(../img/img_bg_02.jpg) no-repeat center center;
	color: #fff;
}
.brand .wrap {
	align-items: center;
}
.brand .logo {
	width: 340px;
	height: 340px;
	border-radius: 5px;
	background: #fff;
	padding: 80px 100px;
}
.brand .txt-box {
	font-size: 14px;
}
.brand .txt-box h3 {
	margin-bottom: 20px;
}
.brand .txt-box .ttl-01::before {
	display: none;
}
.brand .txt-box .btn-01 {
	margin-top: 40px;
}

/* outline
---------------------------------------------------------- */
dl {
	display: flex;
	flex-wrap: wrap;
}
dt ,dd {
	padding: 15px 30px;
	border: solid #e0e0e0 0.5px;
}
dt {
	width: 160px;
	background: #f5f5f5;
}
dd {
	width: calc(100% - 160px);
	min-width: 640px;
	background: #fff;
}

/* ==========================================================
 メディアクエリ
========================================================== */
@media screen and (max-width: 800px) {
/* ==========================================================
 汎用パーツ
========================================================== */
.wrap {
	grid-template-columns: auto;
}
.sec-01 {
	padding: 80px 50px;
}
.ttl-01 {
	font-size: 24px;
	margin-bottom: 50px;
}
.ttl-en {
	font-size: 9px;
}
.ttl-sub {
	font-size: 10px;
}
.bg-01 , .bg-02 {
	background: unset;
}
.btn-01 {
	width: 275px;
	padding: 15px;
	margin-top: 30px;
	margin: 0 auto;
}
/* ==========================================================
 header / footer
========================================================== */
/* header
---------------------------------------------------------- */
header .logo {
	padding: 25px 0;
	width: 240px;
	margin: 0 auto;
}
header .wrap {
	grid-template-columns: auto;
	margin-top: 0;
	margin-left: 50px;
	justify-content: flex-end;
}
header .kv-img {
	grid-row: 1;
	border-radius: 0 0 0 20px;
	margin-bottom: 20px;
	max-width: 500px;
}
.kv-txt {
	margin-left: 0;
	width: fit-content;
}
.kv-txt h2 {
	font-size: 32px;
	margin-bottom: 10px;
}
.kv-txt .ttl-sub {
	padding-right: 15px;
	padding-left: 3px;
}

/* footer
---------------------------------------------------------- */
footer .logo {
	width: 180px;
	margin-bottom: 30px;
}
footer .copy {
	font-size: 8px;
}

/* philosophy
---------------------------------------------------------- */
.philosophy {
	padding: 150px 0 0;
}
.philosophy .wrap .txt-box , 
.philosophy .ttl-01 {
	margin: 0 50px;
}
.philosophy .ttl-01 {
	margin-bottom: 50px;
}
.philosophy .txt-box {
	grid-row: 1;
}
.philosophy h3 {
	font-size: 28px;
}
.philosophy .wrap img {
	border-radius: 0;
}

/* brand
---------------------------------------------------------- */
.brand .logo {
	width: 275px;
	height: 275px;
	padding: 45px 65px;
	margin: 0 auto 20px;
}
.brand .txt-box h3 {
	text-align: center;
	margin-bottom: 30px;
}

/* outline
---------------------------------------------------------- */
dt , dd {
	width: 100%;
	min-width: auto;
	min-width: auto;
	padding: 10px 30px 10px 25px;
}
}