/*
Theme Name: proporse Child
Theme URI:
Description: BlankSlate child theme for Project Name
Author: Your Name
Author URI:
Template: blankslate
Version: 1.0.0
Text Domain: projectname-child
*/

/* ****************************
		WEBフォント
***************************** */
.en-bask {
	font-family: "berthold-baskerville-pro", "Baskervville", "Libre Baskerville", serif;
}
.en-coch {
	font-family: "cochin-lt-pro", "Cormorant Garamond", "Libre Caslon Text", serif;
}
.ryumin {
	font-family: "Ryumin Regular KL", serif;
}
.noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.outfit {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

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

html {
	font-size: 62.5%;
	height: 100%;
}

body {
	margin: 0;
	min-height: 100%;
	font-size: 1.6rem;
	line-height: 2.6rem;
	color: #222;
	background: #fff;
	font-family: sans-serif;
}
body.page-slug-intro {
  background-color: #f8f2eb;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	margin-bottom: 1rem;
	text-indent: 0;
	line-break: strict;
}
.site-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
	display: inline;
}

.screen-reader-text:focus {
	position: absolute;
	width: auto;
	height: auto;
	margin: 0;
	padding: 1em;
	overflow: visible;
	clip: auto;
	white-space: normal;
	z-index: 100000;
	background: #fff;
}

/* ****************************
		リンク / メイン設定
***************************** */
a {
	color: #675c48;
	text-decoration: none;
}

a:hover,
a:active {
	opacity: .6;
}

main {
	width: 100%;
	background: #fff;
}

main > section,
main > article,
.breadcrumb {
	width: 100%;
	max-width: 1200px;
	padding: 10px 30px;
	margin: 0 auto;
}

/* ****************************
		ヘッダー
***************************** */
header.head {
	width: 100%;
	height: 100px;
	text-align: center;
	position: sticky;
	top: 0;
	z-index: 10;
	padding: 10px 0;
	background-color: #fff;
	font-family: "Noto Sans JP", sans-serif;
}
body.page-slug-intro header.head {
  background-color: #f8f2eb;
}
header.head .header-wrap {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: start;
	padding: 10px 40px;
}

header.head h1 img {
	display: block;
	width: 140px;
}

header.head .audioWrapper {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

header.head .audioWrapper h1 {
	margin: 0;
	padding: 0;
}

header.head nav.menu ol {
	display: grid;
	grid-auto-flow: row;
	align-content: start;
	justify-items: start;
	margin-top: 80px;
}

header.head nav.menu ol.submenu {
	margin-top: 40px;
}

header.head nav.menu ol.submenu li:before {
	content: ">";
	position: relative;
    top: 0;
    left: -16px;
}
header.head nav.menu ol li a {
	display: block;
	color: #fff;
}

header.head nav.menu ol li a:hover,
header.head nav.menu ol li a:active {
	color: #b0c4de;
}

header.head nav.menu ol li a span {
	display: block;
	color: pink;
	font-family: "Outfit", sans-serif;
}
/* ****************************
	ハンバーガーメニュー
***************************** */
.menu-wrapper {
	position: relative;
	top: 0;
	right: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	flex-direction: column;
}

.nav-menu {
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16pt;
	text-align: center;
	margin-top: -10px;
	line-height: 3.5rem;
}

.menu-icon {
	width: 75px;
	height: 75px;
	padding: 0;
	margin: 0 auto;
	position: relative;
	top: 0;
	right: 0;
	cursor: pointer;
	z-index: 5;
	display: inline-block;
	transition: right 0.4s ease;
	border-radius: 5px 0 0 5px;
}

#menu-toggle:checked ~ .menu-icon {
	right: 0;
}

.menu-icon span {
	display: block;
	height: 3px;
	margin: 9px 0;
	background: #675c48;
	border-radius: 2px;
	transition: 0.4s;
}

/* ハンバーガーがXに変形 */
#menu-toggle:checked ~ .menu-icon span:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

#menu-toggle:checked ~ .menu-icon span:nth-child(2) {
	opacity: 0;
}

#menu-toggle:checked ~ .menu-icon span:nth-child(3) {
	transform: translateY(-17px) rotate(-45deg);
}

#menu-toggle:checked ~ .menu-icon span {
	background-color: #fff;
}

/* オーバーレイ背景 */
.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	pointer-events: none;
	transition: 0.4s;
	z-index: 1;
}

#menu-toggle:checked ~ .overlay {
	opacity: 1;
	pointer-events: auto;
}

/* メニュー本体（右から出す） */
.menu {
	position: fixed;
	top: 0;
	right: -360px;
	width: 360px;
	height: 100%;
	background: #191970;
	color: #fff;
	transition: right 0.4s ease;
	z-index: 2;
}

#menu-toggle:checked ~ .menu {
	right: 0;
}

.menu li {
	margin: 10px 30px;
	text-align: left;
}

.menu ol.submenu li {
	padding: 2px 20px;
	display: grid;
    grid-auto-flow: column;
}
.menu a {
	color: #fff;
	font-size: 1.8rem;
	transition: color 0.3s;
}
.menu a {
	background: none;
}
.menu .contact a {
	border: 1px #fff solid;
	padding: 6px 20px;
	margin: 10px 30px;
	display: block;
}

/* ****************************
		フッター
***************************** */
footer {
	position: relative;
	width: 100%;
	height: 200px;
	padding: 20px 0 0;
	color: #eee;
	background: #444;
}

footer div.foot {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: 50px;
	align-items: center;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

footer div.copy {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
}

footer h2 {
	font-family: "Dela Gothic One", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 6rem;
	line-height: 6rem;
	color: #b6000d;
	opacity: 0.2;
}

footer nav ol {
	display: flex;
	flex-wrap: nowrap;
	margin-bottom: 10px;
}

footer nav ol li a {
	margin: 0 16px;
	padding: 8px 20px;
	border: 1px solid #444;
	border-radius: 50px;
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-style: normal;
}

footer nav ol li a:hover,
footer nav ol li a:active {
	border: 1px solid #fdd;
	border-radius: 50px;
}

/* ****************************
		SP
***************************** */
@media screen and (max-width: 767px) {
	footer nav ol {
		flex-wrap: wrap;
	}

	footer nav ol li {
		margin: 8px 0;
	}

	footer nav ol li a {
		border: 1px solid #fdd;
		border-radius: 50px;
	}
}
