@charset "utf-8";
/*
Theme Name: Theme HAKUTAI
Author:
Version: 1.0.0
*/

/*
---------------------------------------------------------------------------
Reset
---------------------------------------------------------------------------
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}

ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1em;
	vertical-align: baseline;
	background: transparent;
}

del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

input,
select {
	vertical-align: middle;
}

img.alignleft {
	text-align: left;
}

img.aligncenter {
	display: block;
	margin: 1px auto;
}

img.alignright {
	display: block;
	margin: 1px 0 1px auto;
}

/*
---------------------------------------------------------------------------
Font
---------------------------------------------------------------------------
*/
html,
body,
input,
textarea {
	color: #111;
	font-size: 16px;
	font-family: "FOT-筑紫ゴシック Pr5 R", TsukuGoPr5-R, sans-serif;
	line-height: 1.6;
}

a {
	color: #111;
	text-decoration: none;
	transition: .5s all;
}

a:hover {
	opacity: .5;
}

/*
---------------------------------------------------------------------------
Header
---------------------------------------------------------------------------
*/
.global_nav {
	margin: 32px 0 100px;
	font-family: "FOT-筑紫ゴシック Pro B";
	font-size: 16px;
}

.global_nav a {
	color: #717071;
}

.global_nav .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.global_nav .logo  {
	height: 85px;
}

.global_nav .logo img {
	max-height: 100%;
}

.global_nav .menu {
	display: flex;
	justify-content: end;
}

.global_nav .menu li {
	margin-right: 40px;
}

.global_nav .menu li:last-child {
	margin-right: 0;
}

#nav-toggle {
  position: fixed;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 26px;
  padding: 20px 18px;
  cursor: pointer;
  z-index: 11111;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.home #nav-toggle {
	opacity: 0;
}

.home #nav-toggle.go {
	opacity: 1;
}

#nav-toggle div {
  position: relative;
}

#nav-toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #1b2b35;
  left: 0;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

#nav-toggle.change span {
  background: #fff;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 11px;
}

#nav-toggle span:nth-child(3) {
  top: 22px;
}

.open #nav-toggle {
  /* right: 150px; */
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.open #nav-toggle span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}

.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}

.open #nav-toggle span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

/*
---------------------------------------------------------------------------
Footer
---------------------------------------------------------------------------
*/
footer {
	padding: 80px 0;
}
.copy {
	text-align: center;
	font-size: 14px;
}

.copy p {
	margin-bottom: 0;
}

/*
---------------------------------------------------------------------------
Common
---------------------------------------------------------------------------
*/
html {
  scroll-behavior: smooth;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

.main__contents {
	padding: 240px 0;
}

main p {
	margin-bottom: 1.5em;
}

.inner {
	width: 96%;
	max-width: 1600px;
	margin: 0 auto;
	position: relative;
}

.inner--narrow {
	max-width: 960px;
}

.main__tip {
	position: absolute;
	z-index: -1;
}

.main__contents__title {
	position: relative;
	margin-bottom: 80px;
}

.main__contents__title img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 80px 0;
}

.main__contents__title::after {
	position: absolute;
	content: "";
	width: 166px;
	height: 1px;
	background-color: #111;
	left: 50%;
	transform: translateX(-50%);
}

.text--center {
	text-align: center;
}

.pc_none {
	display: none;
}

.tab_none {
	display: none;
}

.sp_none {
	display: block;
}

@media screen and (max-width: 901px) {
	.tab_none {
		display: block;
	}
}

@media screen and (max-width: 541px) {
	.pc_none {
		display: block;
	}

	.sp_none {
		display: none;
	}
}

.slide-up {
	opacity: 0;
	transform: translate(0, 200px);
	-webkit-transform: translate(0, 200px);
	transition: 2s;
}

.go {
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
}

.fade-in {
	display: none;
}

.layer__00 {
	z-index: 999;
}

.layer__01 {
	z-index: 100;
}

.layer__02 {
	z-index: 50;
}

.layer__03 {
	z-index: 1;
}

.cf::after {
	display: block;
	content: "";
	clear: both;
}

.office__map {
  position: relative;
  padding-bottom: 50%;
  height: 0;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}

.office__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

@media screen and (max-width: 541px) {
	.office__map {
		padding-bottom: 100%;
	}
}

/*
---------------------------------------------------------------------------
Top
---------------------------------------------------------------------------
*/
.hero {
	width: 100%;
	height: 100vh;
	background-image: url(img/hero_bg.png);
	background-size: cover;
	margin-bottom: 100px;
}

.hero .inner {
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.hero__tip {
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}

.hero__contents {
	position: relative;
	width: 90%;
	max-width: 700px;
	height: 80%;
	max-height: 700px;
	z-index: 2;
}

.hero__contents img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.hero__logo {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.news {
	padding-top: 80px;
}

.news__title {
	font-family: "FOT-筑紫ゴシック Pro B";
	font-size: 28px;
	padding-bottom: 12px;
	border-bottom: 1px solid #111;
	margin-bottom: 32px;
}

.news__title::after {
	width: 0;
	height: 0;
}

.news__list__item {
	margin-bottom: 24px;
}

.news__list__item a {
	display: flex;
}

.news__list__item__date {
	margin-right: 2em;
}

.news__more {
	text-align: right;
	margin-top: 1em;
}

.concept__tip {
	right: 0;
	bottom: 0;
}

.concept__text {
	font-size: 20px;
	line-height: 2.4;
}

.concept__text p:last-child {
	margin-bottom: 0;
}

.contents__tip {
	left: 0;
	top: -320px;
}

.contents__text {
	font-size: 20px;
	line-height: 2.4;
}

.contents__text p:last-child {
	margin-bottom: 0;
}

.contents__list {
	display: flex;
	justify-content: space-between;
	margin: 120px 0;
}

.contents__list__item {
	width: 23%;
	border: 1px solid #111;
	padding: 24px;
	box-sizing: border-box;
}

.contents__list__item h3 {
	color: #c69c6d;
	font-family: "FOT-筑紫ゴシック Pro B";
	font-size: 22px;
	text-align: center;
	padding: 48px 0 32px;
	position: relative;
	margin-bottom: 32px;
}

.contents__list__item:last-child h3 {
	padding: 30px 0 15px;
}

.contents__list__item h3::after {
	position: absolute;
	content: "";
	width: 120px;
	height: 1px;
	background-color: #111;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}

.contents__list__item ul {
	margin-bottom: 48px;
}

.contents__list__item li {
	margin-bottom: 1em;
}

.contents__list__item li::before {
	content: "・";
}

.contents__list__item li:last-child {
	margin-bottom: 0;
}

.goals__item {
	position: relative;
	margin-bottom: 240px;
}

.goals__item:last-child {
	margin-bottom: 0;
}

.goals__tip__01 {
	right: 10%;
	top: -320px;
	z-index: -1;
}

.goals__tip__02 {
	top: -320px;
}

.goals__tip__03 {
	top: -320px;
	right: 0;
}

.goals__item__title h3 {
	text-align: center;
	position: relative;
	margin-bottom: 64px;
}

.goals__text {
	margin-bottom: 64px;
}

.goals__img {
	display: flex;
	justify-content: space-between;
}

.goals__img img {
	display: block;
	width: 48%;
}

.member {
	padding-bottom: 0;
}

.member__tip {
	left: 10%;
	top: -300px;
}

.member__list {
	display: flex;
	justify-content: space-between;
}

.member__list__item {
	width: 31%;
	background-image: url(img/member_item_bg.png);
	background-size: cover;
	background-position: top center;
	padding: 24px;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.member__list__item h3 {
	font-family: "FOT-筑紫ゴシック Pro B";
	font-size: 22px;
	text-align: center;
	padding: 48px 0 32px;
	position: relative;
	margin-bottom: 32px;
}

.member__list__item h3::after {
	position: absolute;
	content: "";
	width: 120px;
	height: 1px;
	background-color: #111;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
}

.member__list__item p {
	margin-bottom: 48px;
}

.office {
	padding-bottom: 120px;
}

.office__data {
	width: 90%;
	max-width: 360px;
	margin: 0 auto 48px;
}

.office__data h3 {
	font-family: "FOT-筑紫ゴシック Pro B";
	font-size: 22px;
	position: relative;
	margin-bottom: 32px;
}

.office__data address {
	font-size: 20px;
	font-style: normal;
}

/*
---------------------------------------------------------------------------
Single,Page
---------------------------------------------------------------------------
*/
.post__title {
	font-family: "FOT-筑紫ゴシック Pro B";
	font-size: 28px;
	padding-bottom: 12px;
	border-bottom: 1px solid #111;
	margin-bottom: 32px;
}

.post__contents p {
	line-height: 1.6;
	margin-bottom: 1em;
}

/*
---------------------------------------------------------------------------
Inquiry
---------------------------------------------------------------------------
*/
.inquiry {
	padding-top: 0;
}
.inquiry__text {
	margin-bottom: 64px;
}

.inquiry__form {
	background: #eee;
	padding: 32px;
}

.inquiry__form__item {
	width: 46%;
	margin-bottom: 32px;
}

.inquiry__form__item.full_width {
	width: 100%;
}

.inquiry__form__item__title {
	font-family: "FOT-筑紫ゴシック Pro B";
	margin-bottom: 4px;
}

.inquiry__form__item input,
.inquiry__form__item textarea {
	width: 100%;
	padding: 8px;
	font-size: 16px;
	border: none;
	box-sizing: border-box;
}

.inquiry__form__item input:focus-visible,
.inquiry__form__item textarea:focus-visible {
	outline-color: #111;
}

.inquiry__form__button {
	margin: 32px 0;
}

.inquiry__form__button input {
	font-family: "FOT-筑紫ゴシック Pro B";
	display: inline-block;
	min-width: 200px;
	padding: 8px 40px;
	color: #fff;
	background: #111;
	border: 4px solid #111;
	border-radius: 4px;
	box-sizing: border-box;
	text-decoration: none;
	cursor: pointer;
	transition: .3s;
}

.inquiry__form__button input:hover {
	color: #111;
	background: #fff;
	transition: .3s;
}

.inquiry__form__button input.button--back {
	color: #111;
	background: #fff;
}

.inquiry__form__button input.button--back:hover {
	color: #fff;
	background: #111;
}

.inquiry__form p {
	margin-bottom: 0;
}



@media screen and (max-width: 1201px) {
	.contents__list__item {
		width: 48%;
	}

}

@media screen and (max-width: 1001px) {
	.global_nav {
		position: fixed;
		width: 100%;
		max-width: 600px;
		height: 100%;
		left: 100%;
		top: 0;
		margin: 0;
		background-color: rgba(255, 255, 255, 0.9);
		transition: 0.5s;
	}

	.open .global_nav {
		left: 0;
		z-index: 1000;
	}

	.global_nav .inner {
		justify-content: flex-start;
		flex-direction: column;
		align-items: center;
		margin-top: 64px;
	}

	.global_nav .menu {
		justify-content: flex-start;
		flex-direction: column;
		align-items: center;
		margin-top: 48px;
	}

	.global_nav .menu li {
		margin-right: 0;
		margin-bottom: 24px;
	}
}

@media screen and (max-width: 541px) {
	.main__contents {
		padding: 120px 0;
	}

	.main__tip {
		width: 65%;
	}

	.news__list__item a {
		display: block;
	}

	.news__list__item__date {
		margin-right: 0;
	}

	.concept__tip {
		right: 0;
		top: -60px;
	}

	.concept__text {
		font-size: 18px;
	}

	.contents__tip {
		width: 80%;
		top: -120px;
		left: 0;
	}

	.contents__text {
		font-size: 18px;
	}

	.contents__list {
		flex-wrap: wrap;
		justify-content: center;
		margin: 64px 0;
	}

	.contents__list__item {
		width: 70%;
		margin-bottom: 16px;
	}

	.goals__tip__01 {
		width: 65%;
		right: 0;
		top: -100px;
	}

	.goals__tip__02 {
		width: 80%;
		top: -100px;
		left: 0;
	}

	.goals__tip__03 {
		width: 80%;
		top: -100px;
		right: 0;
	}

	.goals__item__title h3 {
		height: 60px;
	}

	.goals__item__title h3 img {
		object-fit: contain;
		width: 100%;
		height: 100%;
	}

	.goals__img {
		flex-direction: column;
	}

	.goals__img img {
		width: 100%;
		margin-bottom: 16px;
	}

	.member__tip {
		width: 70%;
		top: -100px;
	}

	.member__list {
		flex-wrap: wrap;
		justify-content: center;
	}

	.member__list__item {
		width: 90%;
		margin-bottom: 24px;
	}







	.inquiry__form__item {
		width: 100%;
	}

	inquiry__form__button input {
		min-width: 240px;
	}


}