@charset "UTF-8";

@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap);

/** ----------------------------------------------------------------------------

	Tag Reset

-------------------------------------------------------------------------------- **/

article,
aside,
div,
figure,
footer,
form,
header,
section {
	display: block;
	margin: 0;
	padding: 0;
}

img {
	border: 0;
}

html {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
}

body {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;

	background-color: #ffffff;
	color: #231815;

	line-height: 1.5;
	-webkit-text-size-adjust: 100%;

	font-size: 10pt;
	font-weight: normal;
	font-family: 'Noto Sans JP', 'Noto Sans', 'Yu Gothic Medium', Meiryo, sans-serif;
}

button {
	border: none;
}

body,
button,
input,
select,
textarea {
	font-family: 'Noto Sans JP', 'Noto Sans', 'Yu Gothic Medium', Meiryo, sans-serif;
}

/** ----------------------------------------------------------------------------

	サイト共通ナビ

-------------------------------------------------------------------------------- **/

/* MENU ------------------------------------------------ */

.menu ul li a span {
	background: linear-gradient(transparent 90%, #9ccf96 0%);
}

/** ----------------------------------------------------------------------------

	main                   -> Single Lane;

-------------------------------------------------------------------------------- **/
html {
	box-sizing: border-box;
	font-size: 14px;
}
body {
	font-family: 'Noto Sans JP', 'Noto Sans', 'Yu Gothic Medium', Meiryo, sans-serif;
	color: #000;
}
main {
	overflow: hidden;
}

/**  モーダル  **/
.modal.is-active {
	flex-direction: column;
}
.modal-card .modal-card-head {
	background-color: #fff;
}
.modal-card .modal-card-head .columns .column a {
	color: #000;
}
.modal-card .modal-card-body .columns .column a {
	color: #000;
}
.modal-card .wrapper {
	display: flex;
	align-items: center;
}

/**
 * bulma拡張
 */
.columns {
	flex-wrap: nowrap;
}
@media screen and (max-width: 769px) {
	.columns {
		flex-wrap: wrap;
	}
}

.input,
.button {
	height: auto;
	padding: 1rem;
}
.select {
	height: auto;
}
.select select {
	height: auto;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
.select.disabled select {
	appearance: none;
	-webkit-appearance: none;
}
.select.disabled::after {
	display: none;
}
div.select {
	display: block;
}
div.select select {
	display: block;
	width: 100%;
}
.button {
	min-width: 200px;
	text-align: center;
}
.modal-card .button {
	min-width: 0;
}
.select::after {
	position: absolute;
	top: 50%;
	right: 1.125em;
	z-index: 1;
	display: block;
	width: 0.5em;
	height: 0.5em;
	margin-top: -0.75em;
	font-size: 10px;
	pointer-events: none;
	content: '▼';
	border: 0;
	transform: none;
}
input::-webkit-input-placeholder {
	color: #bcbcbc;
}
input:-moz-placeholder {
	color: #bcbcbc;
}
input::-moz-placeholder {
	color: #bcbcbc;
}

select {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
}

.title,
.subtitle,
table.table,
.select select,
.label,
.input,
.textarea,
.table th,
table th,
.table thead td,
.table thead th,
.content,
.button {
	color: #000;
}

/****************************
common.css
****************************/
html {
	scroll-padding-top: 45px;
}
main {
	padding-top: 45px;
}

header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 45px;
	background-color: #fff;
	z-index: 1000;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
}

header .header-l {
	display: flex;
	flex-basis: 25%;
	padding: 0 16px;
}

header .header-l .logo a {
	display: block;
	height: 27px;
}

header .header-l .logo img {
	max-height: 100%;
}

header .header-c {
	display: flex;
	flex-basis: 50%;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
	color: #030303;
}
header .header-r {
	display: flex;
	flex-basis: 25%;
	justify-content: end;
	padding: 0 16px;
}

header .header-r a {
	font-weight: 700;
	color: #030303;
}

.header-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #fff;
}

.header-title .main-title {
	display: flex;
	justify-content: center;
	font-weight: 700;
	font-size: 36px;
	margin: 35px 0 0 0;
	padding: 0 0 10px 0;
	border-bottom: 2px solid #d9d9d9;
	width: 800px;
}

.header-title .sub-title {
	display: flex;
	justify-content: center;
	padding: 20px;
	width: 800px;
}

.an-footer {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	height: 140px;
	width: 100%;
	background: #424242;
	color: #fff;
	font-size: 11px;
	font-weight: 500;
}

.an-footer .footer-label {
	margin-bottom: 5px;
}

.an-footer .footer-logo {
	flex-grow: 1;
	flex-direction: column;
	display: flex;
	justify-content: center;
}

.an-footer .footer-copyright {
	padding: 10px 0 20px;
}

/* sp only */
@media only screen and (max-width: 767px) {
	header {
		padding: 0 10px;
	}

	header .header-l {
		display: flex;
	}
	header .header-c {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	header .header-r {
		display: flex;
	}
	header .header-r a {
		display: none;
	}

	header .header-l .logo img {
		height: 30px;
		padding-top: 6px;
		margin-right: 10px;
	}

	header .header-l {
		flex-basis: auto;
	}

	header .header-c .header-nav__menu-item span {
		font-size: 15px;
		line-height: 20px;
	}

	.header-title {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		top: 80px;
	}

	.header-title .main-title {
		font-size: 22px;
		line-height: 34px;
		width: 320px;
	}

	.header-title .sub-title {
		width: auto;
	}
}

.notice {
	color: #f00;
}

.block-1 {
	margin: 40px 0;
}

.block-2 {
	margin: 10px 0;
}

.ac-title2-h1 {
	font-size: 32px;
	font-weight: 700;
}

.ac-title2-h2 {
	font-size: 24px;
	font-weight: 700;
}

.ac-title2-h3 {
	font-size: 16px;
	font-weight: 700;
}

.title-description {
	font-size: 16px;
}

/**
  Anatomy Component
 */
.ac-checkbox-input {
	vertical-align: middle;
	align-content: center;
	display: none;
}
.ac-checkbox-parts {
	align-content: center;
	vertical-align: middle;
	display: inline-block;
	padding-left: 3rem;
	position: relative;
}
.ac-checkbox-parts::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -1rem;
	left: 0;
	width: 2rem;
	height: 2rem;
	border: 1px solid #dbdbdb;
	border-radius: 4px;
}
.ac-checkbox-input:checked + .ac-checkbox-parts::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -10px;
	left: 0.6rem;
	width: 0.8rem;
	height: 1.4rem;
	transform: rotate(40deg);
	border-bottom: 3px solid #0ea3aa;
	border-right: 3px solid #0ea3aa;
}
.ac-green-btn {
	background-color: #0ea3aa;
	border-color: transparent;
	color: #fff;
}
.ac-green-btn:hover {
	color: #fff;
	opacity: 0.7;
}
.ac-green-btn.is-focused {
	color: #fff;
}
.ac-red-btn {
	background-color: #f00;
	border-color: transparent;
	color: #fff;
}
.ac-red-btn:hover,
.ac-red-btn.is-focused {
	color: #fff;
}

.btn.back {
	display: block;
	width: 280px;
	padding: 8px;
	margin: 3rem auto 3rem auto;
	text-align: center;
	font-size: 14px;
	color: #000;
	background-color: #e3e3e3;
	border-radius: 3px;
	cursor: pointer;
}
