@charset "UTF-8";

/*----------------------------------------------------------------
  Common Styles
  ----------------------------------------------------------------*/

.db-pc {
	display: none;
}

.xscroll-table {
	overflow-x: scroll;
}

.xscroll-table th,
.xscroll-table td {
	border: 4px solid #fff;
}

.marker-asterisk li {
	font-size: 1.5rem;
}

/*----------------------------------------------------------------
  Site Header
  ----------------------------------------------------------------*/

.site-header {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 10px;
	background-color: #fff;
}

.header-logo {
	width: 60px;
}

.site-header .sp-nav{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: auto;
	margin-right: 30px;
}

.site-header .sp-nav .tel::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: transparent url(../img/icon_phone_16x16.png) 0 0 no-repeat;
    margin-right: 5px;
}

.site-header .sp-nav .tel a{
	font-weight: bold;
	color: #000;
	text-decoration: none;
	font-size: 1.8rem;
	margin-right: 10px;
}

.site-header .sp-nav .mail a{
	width: 30px;
	height: 30px;
	padding: 3px 5px;
	background: #fc8351;
	display: block;
	border-radius: 5px;
}
.site-header .sp-nav .mail a img{
	width: 30px;
}

.header-nav-global-btn {
	position: relative;
	display: flex;
	align-items: center;
	width: 25px;
	height: 25px;
}

.header-nav-global-btn::before,
.header-nav-global-btn::after,
.header-nav-global-btn span {
	height: 1px;
	background-color: #000;
}

.header-nav-global-btn span {
	width: 100%;
	opacity: 1;
	transition: opacity 0.5s 0.5s;
}

.header-nav-global-check:checked ~ .header-nav-global-btn span {
	opacity: 0;
}

.header-nav-global-btn::before,
.header-nav-global-btn::after {
	content: '';
	position: absolute;
	left: 0;
	transform-origin: left center;
	transform: rotate(0deg);
	transition: width 0.5s 0.5s, transform 0.5s 0.5s;
}

.header-nav-global-btn::before {
	top: 0;
	width: 100%;
}

.header-nav-global-check:checked ~ .header-nav-global-btn::before {
	transform: rotate(45deg);
	width: 141%;
}

.header-nav-global-btn::after {
	bottom: 0;
	width: 50%;
}

.header-nav-global-check:checked ~ .header-nav-global-btn::after {
	width: 141%;
	transform: rotate(-45deg);
}

.header-nav-global {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 10;
	width: 0;
	height: calc(100vh - 67px);
	border-top: 1px solid #000;
	overflow: hidden;
	transition: width 0.5s;
	background-color: #fff;
}

.header-nav-global-check:checked ~ .header-nav-global {
	width: 100%;
}

.header-nav-global a {
	display: block;
	width: 100%;
	padding: 15px 30px;
	background: transparent url(../img/icon_caret_r_10x11.png) center right 20px no-repeat;
	border-bottom: 1px solid #000;
	text-decoration: none;
	word-break: keep-all;
	font-weight: bold;
	color: #000;
}

.header-nav-tel .ankr {
	font-size: 2.2rem !important;
	margin-left: 1vw;
	text-decoration: none;
	font-weight: bold;
	color: #fc8351;
	/*font-size: 1.14vw;*/
	background: #fff !important;
	border: none !important;
	padding: 15px 0px 10px 25px;
}

.header-nav-tel span {
	padding: 0 0 10px 30px;
}

/*----------------------------------------------------------------
  Front Page -> Jumbotron
  ----------------------------------------------------------------*/

.jumbotron {
	overflow: hidden;
	padding-bottom: 50px;
	background:
		radial-gradient(
			closest-side,
			rgba(247, 236, 225, 0.36) 0px,
			rgba(247, 236, 225, 0.36) 87.5px,
			#fff 100%
		) right -30px bottom -45px / 175px 175px no-repeat,
		#fff url(../img/bg_top_jumbotron.png) center / contain repeat;
}

.jumbotron-image {
	height: calc(50vh - 67px);
}

.jumbotron-image img {
	width: auto;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.jumbotron-image p {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 10px;
	transform: translateY(calc(-50% - 30px));
	max-width: calc(100% - 20px);
	padding: 5px 15px 15px;
	background-color: #fff;
	font-size: 2.2rem;
	color: #000;
	border-radius: 16px;
}

.jumbotron-image p > span {
	font-size: 2rem;
}

.jumbotron-image ruby {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	vertical-align: bottom;
	width: 180px;
	margin-right: 10px;
	font-weight: bold;
	font-size: 2.4rem;
}

.jumbotron-image ruby rt {
	order: 0;
	font-size: 1.2rem;
	width: 100%;
	padding: 0 12px 3px;
}

.jumbotron-image ruby::before,
.jumbotron-image ruby::after {
	content: '';
	width: 12px;
	height: 35px;
	border-top: 2px solid #000;
	border-bottom: 2px solid #000;
}

.jumbotron-image ruby::before {
	order: 1;
	border-left: 3px solid #000;
}

.jumbotron-image ruby span {
	order: 2;
}

.jumbotron-image ruby::after {
	order: 3;
	border-right: 3px solid #000;
}

.jumbotron-link {
	position: relative;
	z-index: 3;
	margin: -30px 10px 0;
	/*padding: 15px;*/
	padding: 26px;
	border-radius: 10px;
	background-color: #fff;
}

.jumbotron-link::before,
.jumbotron-link::after {
	content: '';
	position: absolute;
	z-index: 1;
	width: 138px;
	height: 37px;
}

.jumbotron-link::before {
	top: -35px;
	right: 10px;
	background: transparent url(../img/bg_build_1.png) center right / contain no-repeat;
}

.jumbotron-link::after {
	left: 0;
	bottom: -50px;
	background: transparent url(../img/bg_build_2.png) center left / contain no-repeat;
}

.jumbotron-link a,
.jumbotron-link figure {
	margin-bottom: 15px;
}

.jumbotron-link figure {
	text-align: center;
}

.jumbotron-link p:not(:last-of-type) {
	margin-bottom: 25px;
}

/*----------------------------------------------------------------
  Front Page -> News
  ----------------------------------------------------------------*/

.top-news {
	padding: 30px 10px;
	background-color: #f7ece1;
	color: #000;
}

.top-news h2 {
	margin-bottom: 20px;
}

.top-news h2::before {
	content: attr(data-text);
	display: block;
	letter-spacing: 0.05rem;
	font-weight: 400;
	font-size: 3.6rem;
	color: #fc8351;
}

.top-news dl {
	display: flex;
	flex-wrap: wrap;
	padding-top: 20px;
	/*border-top: 4px solid #fff;*/
	font-size: 1.4rem;
}

.top-news .dl_news {
	display: flex;
	flex-wrap: wrap;
	padding-top: 20px;
	border-top: 4px solid #fff;
	font-size: 1.4rem;
	height: 278px;
	overflow: auto;
	overflow-x: hidden;
}

.dl_news li {
	list-style: none;
}

.top-news dt {
	width: 110px;
	padding: 0px 0 15px;
	border-bottom: 1px solid #ccc;
}

.top-news dd {
	width: calc(100% - 110px);
	padding: 0 0 15px;
	border-bottom: 1px solid #ccc;
}

.top-news dt:nth-of-type(n+2),
.top-news dd:nth-of-type(n+2) {
	margin-top: 20px;
}

.top-news dl a {
	color: inherit;
}

/*----------------------------------------------------------------
  Template
  ----------------------------------------------------------------*/

.page-header {
	position: relative;
	width: 100%;
	height: 120px;
	overflow: hidden;
}

.page-header img {
	object-fit: cover;
	max-width: none;
	height: 100%;
}

.page-header span {
	font-family: "M PLUS Rounded 1c";
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
	display: block;
	max-width: calc(100% - 20px);
	padding: 10px 4.4vw;
	word-break: keep-all;
	background-color: rgba(255, 255, 255, 0.9);
	font-size: 4.6vw;
	border-radius: 16px;
}

.page-header::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 0%;
	width: 100%;
	height: 100%;
	background: transparent url(../img/bg_build_1.png) bottom right 10px / auto 37px no-repeat;
}

.breadcrumbs {
	padding: 7px 10px;
}

.breadcrumbs ul {
	display: flex;
	flex-wrap: wrap;
}

.breadcrumbs li {
	margin-right: 15px;
}

.breadcrumbs li:nth-of-type(n+2)::before {
	content: '>';
	margin-right: 15px;
}

.breadcrumbs a {
	color: #fc8351;
}

.content-header {
	margin-bottom: 20px;
	padding: 0 0 25px 7px;
	background: transparent url(../img/bg_content_header.png) bottom left no-repeat;
	font-size: 1.8rem;
}

.content-header span {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	min-height: 60px;
	padding: 5px 10px;
	background-color: #fffaf5;
}

.content-header[id] {
	margin-top: -67px;
	padding-top: 67px;
}

.content-subheader {
	margin: 0 0 20px;
	font-size: 1.8rem;
}

.anchor-nav {
	margin: 30px 10px 35px;
}

.anchor-nav a {
	display: block;
	margin-bottom: 15px;
}

.template {
	padding: 30px 10px 70px;
	background: transparent url(../img/bg_build_2.png) bottom left 10px / auto 37px no-repeat;
}

.flow-list {
	counter-reset: fl;
	margin: 0 0 50px;
}

.flow-list > li {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 2px solid #dedede;
	counter-increment: fl;
}

.flow-list > li::before {
	content: counter(fl);
	background-color: #fc8351;
	width: 30px;
	padding: 5px;
	border-radius: 50%;
	line-height: 1;
	text-align: center;
	font-weight: bold;
	font-size: 2rem;
	color: #fff;
}

.flow-list dl {
	width: calc(100% - 40px);
}

.flow-list dt {
	margin-bottom: 15px;
	font-weight: bold;
	font-size: 2.4rem;
	color: #fc8351;
}

.flow-list dd {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
}

/*----------------------------------------------------------------
  About
  ----------------------------------------------------------------*/

.about p {
	margin-bottom: 0px;
	line-height: 1.9;
}

.about figure {
	margin-top: 50px;
	padding: 16px;
	border-radius: 16px;
	background-color: #fcf8f4;
	text-align: center;
}
.about .owner {
	margin-top: 0px;
	padding: 16px;
	text-align: right;
}
/*----------------------------------------------------------------
  Owner
  ----------------------------------------------------------------*/

.content-header-about {
	margin-bottom: 40px;
	padding: 5% 2.5% 2.5%;
	background:
		url(../img/bg_content_header_about_1.png) top 67px center / 100% auto no-repeat,
		transparent url(../img/bg_content_header_about_2.png) bottom center / 100% auto no-repeat;
	text-align: center;
	font-weight: bold;
	font-size: 2rem;
	color: #222;
}

.content-header-about[id] {
	margin-top: -67px;
	padding-top: calc(5% + 67px);
}

.owner-img {
	text-align: center;
	margin: 0 auto 75px;
}

.owner-1 li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
	font-size: 1.8rem;
	font-weight: bold;
}

.owner-1 span {
	position: relative;
	width: 16px;
	height: 16px;
	margin: 4px 20px 0 0;
	border: 1px solid #838383;
}

.owner-1 span::before {
	content: "";
	position: absolute;
	left: 37.5%;
	top: -37.5%;
	display: block;
	width: 12px;
	height: 16px;
	border-right: 4px solid #fc8351;
	border-bottom: 4px solid #fc8351;
	transform: rotate(45deg);
}

.owner-1 div {
	width: calc(100% - 36px);
}

.owner-2 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 75px;
}

.owner-2 li {
	width: calc(100% / 3 - 10px);
	margin-bottom: 15px;
	text-align: center;
	font-weight: bold;
}

.owner-2 li:last-of-type {
	margin: 0 auto;
}

.owner-2 img {
	width: 100%;
	margin-bottom: 15px;
	padding: 3px;
	border: 2px solid #fdccb9;
	border-radius: 50%;
}

.owner-3 {
	margin: 0 auto 50px;
}

.owner-3 figure {
	margin-bottom: 20px;
}

.owner-3 figure img {
	margin-bottom: 15px;
}

.owner-3 h3 {
	margin: 0 0 10px;
	font-size: 1.6rem;
	font-weight: normal;
}

.owner-3 dl {
	margin-bottom: 15px;
}

.owner-3 dt {
	margin-bottom: 4px;
	padding: 6px;
	background-color: #ffe3d8;
	text-align: center;
	color: #222222;
	font-weight: 600;
}

.owner-3 dd {
	margin-bottom: 10px;
	padding: 5px;
	background-color: #f0f0f0;
	text-align: center;
	font-size: 1.8rem;
	color: #ff8351;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.owner-3 dd span {
	color: #222;
}

.owner-4 {
	margin: 0 0 20px;
}

.owner-4 dt {
	margin-bottom: 5px;
	padding: 6px;
	background-color: #ffcdb9;
	text-align: center;
	color: #222;
	font-weight: 600;
}

.owner-4 dd {
	margin-bottom: 10px;
	padding: 15px 30px;
	background-color: #f0f0f0;
	line-height: 1.6;
	color: #222;
}

.owner-4 dd:last-of-type {
	line-height: 1.35;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
}

.owner-4 dd p {
	margin-top: 25px;
}

.table-owner {
	margin: 0 0 50px;
}

.table-owner table {
	width: calc(300% - 268px);
}

.table-owner th,
.table-owner td {
	padding: 4px 10px;
	vertical-align: top;
}

.table-owner tbody tr:nth-of-type(n+3) th,
.table-owner td {
	background-color: #ffe3d8;
}

.table-owner td[colspan],
.table-owner tbody th,
.table-owner tfoot th {
	background-color: #f0f0f0;
}

.table-owner thead th:not(:empty),
.table-owner tbody th {
	background-color: #ffcdb9;
	color: #222;
}

.table-owner tfoot td {
	padding: 4px 28px;
}

.table-owner ul {
	margin: 5px 0 0 20px;
}

.table-owner td ul {
	margin-top: 10px;
}

.merit-list {
	margin-bottom: 50px;
}

.merit-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	padding: 10px 10px 20px;
	border-radius: 8px;
	background-color: #fcf8f4;
}

.merit-icon {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	margin: 5px;
	background-color: #fc8351;
	border-radius: 50%;
	box-shadow: 0 0 0 2px #fcf8f4, 0 0 0 5px #fdccb9;
	color: #fff;
	font-weight: bold;
	padding-top: calc(40px * .5);
}

.merit-icon::before {
	content: "";
	position: absolute;
	top: calc(-15px * .75);
	left: calc(66px * .75);
	background: url(../img/ico_fingertip_01.svg) no-repeat center / cover;
	width: calc(69px * .75);
	height: calc(54px * .75);
}

.merit-icon span:nth-of-type(1) {
	font-size: calc(1.4rem * .875);
	font-size: 1.4rem;
}

.merit-icon span:nth-of-type(2) {
	line-height: 1;
	font-size: calc(2.4rem * .875);
	font-size: 2.4rem;
}

.merit-list dl {
	width: calc(100% - 110px);
	margin: 10px 0 0 20px;
}

.merit-list dt {
	margin: 0 6px 15px 0;
	border-bottom: 2px solid #fc8351;
	font-weight: bold;
	font-size: 2.2rem;
	color: #fc8351;
	font-feature-settings: "palt";
}

.merit-list dd {
	font-size: 1.8rem;
	font-weight: 600;
	font-feature-settings: "palt";
}

.owner .faq-text {
	margin-bottom: 30px;
}

.owner .faq-text + a {
	max-width: 350px;
	margin: 0 auto;
}

/*----------------------------------------------------------------
  Lease
  ----------------------------------------------------------------*/

.lease-1 {
	margin: 0 0 60px;
}

/*----------------------------------------------------------------
  Tenant
  ----------------------------------------------------------------*/

.tenant-2 li figure {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	width: 100%;
	margin-top: 15px;
}

.tenant-2 li p {
	margin-top: 15px;
}

.tenant-2 li figure img {
	margin-right: 10px;
}

.tenant-2 li:nth-of-type(2) figure:nth-of-type(1) figcaption {
	width: calc(100% - 77px);
}

.tenant-2 li:nth-of-type(2) figure:nth-of-type(2) figcaption {
	width: calc(100% - 100px);
}

.tenant-2 li:nth-of-type(2) figure:nth-of-type(2) ul {
	margin: 0;
	padding-left: 20px;
	list-style-type: disc;
}

.tenant-2 li:nth-of-type(4) figure:nth-of-type(1) figcaption {
	width: calc(100% - 86px);
}

.tenant-3 {
	margin: 0 0 15px;
}

.tenant-4 {
	margin: 0 0 25px;
}

/*----------------------------------------------------------------
  FAQ
  ----------------------------------------------------------------*/

.faq-text dt,
.faq-text dd {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.faq-text dt {
	margin-bottom: 15px;
}

.faq-text dd {
	flex-wrap: wrap;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 2px solid #dedede;
}

.faq-text dt::before,
.faq-text dd::before {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	font-size: 2rem;
	font-weight: 700;
}

.faq-text dt::before {
	content: "Q";
	background-color: #fc8351;
	color: #fff;
}

.faq-text dd::before {
	content: "A";
	background-color: #e3e3e3;
	color: #fc8351;
}

.faq-text dt div,
.faq-text dd div:nth-of-type(1) {
	width: calc(100% - 60px);
	padding-top: 8px;
}

.faq-text dd div:nth-of-type(1) ul {
	margin: 0 0 25px;
	padding-left: 25px;
}

.faq-text dt div {
	font-size: 1.8rem;
	font-weight: bold;
	color: #fc8351;
}

.faq-text dd div:nth-of-type(2) {
	width: 100%;
	margin-top: 25px;
}

.table-docs table {
	width: calc((800% - 800px) / 3);
	border-collapse: collapse;
	table-layout: fixed;
}

.table-docs tr th:first-of-type {
	width: 160px;
}

.table-docs thead th {
	font-size: 1.4rem;
}

.table-docs thead tr:nth-of-type(2) th {
	width: calc((100% - 160px) / 3);
}

.table-docs thead th span {
	font-size: 1.2rem;
}

.table-docs thead tr:nth-of-type(1) th:not(:empty) {
	padding: 6px;
}

.table-docs thead tr:nth-of-type(2) th {
	padding: 10px 0;
	vertical-align: top;
}

.table-docs thead tr:nth-of-type(1) th:nth-of-type(2),
.table-docs thead tr:nth-of-type(2) th {
	background-color: #ffcdb9;
}

.table-docs thead tr:nth-of-type(1) th:nth-of-type(3),
.table-docs thead tr:nth-of-type(2) th:nth-of-type(n+7) {
	background-color: #f7ece1;
}

.table-docs tbody td {
	padding: 8px;
	background-color: #fee3d8;
	text-align: center;
	font-size: 2.4rem;
}

.table-docs tbody th,
.table-docs tbody td:nth-of-type(n+7) {
	background-color: #f0f0f0;
}

.table-docs tbody tr:last-of-type th {
	padding: 8px 4px;
	vertical-align: top;
}

.table-docs tbody tr:last-of-type td {
	padding: 10px;
	text-align: left;
	font-size: 1.6rem;
}

.table-docs tbody tr:last-of-type td ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding-left: 25px;
}

.table-docs tbody tr:last-of-type td ul li {
	margin-right: 25px;
}

.faq-text dd a {
	color: #fc8351;
}

.faq dl:not(:last-of-type) {
	margin-bottom: 70px;
}

/*----------------------------------------------------------------
  Company
  ----------------------------------------------------------------*/

.company h2 {
	margin-bottom: 30px;
	text-align: center;
}

.company h2 img {
	height: 76px;
}

.company dl {
	margin-bottom: 30px;
	border-top: 2px solid #dedede;
}

.company dt {
	padding: 10px 0 0 10px;
	font-weight: bold;
}

.company dd {
	padding: 0 0 10px 10px;
	border-bottom: 2px solid #dedede;
}

.company figure iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: none;
}

/*----------------------------------------------------------------
  Privacy
  ----------------------------------------------------------------*/

.privacy h2 {
	margin-bottom: 20px;
	font-size: 1.6rem;
}

.privacy p {
	margin: 0 0 25px 20px;
}

.privacy p:first-of-type {
	margin: 0 0 50px;
	font-size: 1.8rem;
}

.privacy p:last-of-type {
	margin-bottom: 0;
}

.privacy ul {
	margin: 0 0 25px 20px;
	padding: 0 0 0 20px;
}

/*----------------------------------------------------------------
  Download
  ----------------------------------------------------------------*/

.download ol:not(:last-of-type) {
	margin-bottom: 60px;
}

.download li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: -67px;
	padding: 87px 0 20px;
	border-bottom: 2px solid #dedede;
}

.download li a {
	width: calc(50% - 10px);
	padding: 10px 10px 10px 35px;
	border: 2px solid #fc8351;
	border-radius: 16px;
	text-align: center;
	text-decoration: none;
	font-size: 1.8rem;
	font-weight: bold;
	transition: background-color 0.3s;
}

.download li .ank {
	width: calc(50% - 10px);
	margin: 20px 0;
	padding: 10px 20px 10px 50px;
	border-radius: 16px;
	text-align: center;
	text-decoration: none;
	font-size: 1.8rem;
	font-weight: bold;
	transition: background-color 0.3s;
	border: 2px solid #b5b5b6;
}

.download li .ank2 {
	width: 100%;
	margin: 0;
	padding: 10px 20px 10px 50px;
	border-radius: 16px;
	text-align: center;
	text-decoration: none;
	font-size: 1.8rem;
	font-weight: bold;
	transition: background-color 0.3s;
	border: 2px solid #fc8351;
}

.download li a:nth-of-type(1),
.download li a:nth-of-type(2):hover,
.download li a:nth-of-type(2):active {
	background: #fff url(../img/icon_pdf_orange.png) center left 18px no-repeat;
	color: #000;
}

.download li a:nth-of-type(1):hover,
.download li a:nth-of-type(1):active,
.download li a:nth-of-type(2) {
	background: #fc8351 url(../img/icon_pdf_white.png) center left 18px no-repeat;
	color: #fff;
}

.download li a:nth-of-type(3){
	background: #b5b5b6 url(../img/icon_xl_white.png) center left 18px no-repeat;
	color: #fff;
	border: 2px solid #b5b5b6;
}

.download li a:nth-of-type(3):hover,
.download li a:nth-of-type(3):active{
	background: #fff url(../img/icon_xl_orange.png) center left 18px no-repeat;
	color: #000;
	border: 2px solid #fc8351;
}
.download .doc{
	background: #b5b5b6 url(../img/icon_doc_white.png) center left 18px no-repeat !important;
	color: #fff;
	border: 2px solid #b5b5b6;
}

.download .doc:hover,
.download .doc:active{
	background: #fff url(../img/icon_doc_orange.png) center left 18px no-repeat !important;
	color: #000;
	border: 2px solid #fc8351;
}
.download-title {
	display: flex;
	margin-right: auto;
	width: 100%;
	margin-bottom: 20px;
	font-size: 1.8rem;
	font-weight: bold;
}

.download-title span:nth-of-type(1) {
	width: 45px;
	color: #fc8351;
}

.download-title span:nth-of-type(2) {
	width: calc(100% - 45px);
}

.download #dl_1_3{
	flex-wrap: wrap;
}
.download .accordion-wrap{
	width: 100%;
	padding-top: 20px;
}
.download .ac_btn{
	color: #fff;
	font-size: 1.8rem;
    font-weight: bold;
	display: inline-block;
	background: #fc8351;
	padding: 10px 40px 10px 20px;
	border-radius: 16px;
	margin-bottom: 20px;
	position: relative;
	transition: background-color 0.3s;
    border: 2px solid #fc8351;
}
.download .ac_btn:hover{
	color: #000;
	background: #fff;
}

.download .ac_btn::after{
	content: "▼";
	position: absolute;
	font-size: 1.6rem;
	right: 15px;
	top: 12px;
}

.download .ac_btn.active::after{
	content: "▲";
}

.download .ac_detail{
	padding: 20px;
	background-color: #fcf8f4;
	border-radius: 16px;
}

.download .ac_detail dl:nth-child(1){
	padding-bottom: 20px;
}
.download .ac_detail dt{
	font-size: 1.6rem;
	font-weight: bold;
	color: #fc8351;
	padding-bottom: 5px;
	margin-bottom: 10px;
	border-bottom: solid 2px #fc8351;
}


/*----------------------------------------------------------------
  Contact Form
  ----------------------------------------------------------------*/

.contact-1 {
	display: flex;
	flex-wrap: wrap;
	/*align-items: flex-end;*/
	align-items: center;
	margin-bottom: 40px;
	padding: 10px 15px;
	border-radius: 16px;
	background-color: #fcf8f4;
}

.contact-1 img {
	width: 40px;
}

.contact-1 p:nth-of-type(1) {
	margin: 0 0 0 30px;
	font-size: 4.4rem;
	font-weight: 700;
	color: #fc8351;
}

.contact-1 p:nth-of-type(2) {
	width: 100%;
	/*margin: 10px 0 10px 70px;*/
	margin: 5px 0 10px 70px;
	font-weight: 700;
	font-size: 2rem;
	color: #fc8351;
}

.contact-1 p:nth-of-type(3) {
	width: 100%;
}

.contact-2 {
	margin: 0 0 30px;
}

.form-table dt {
	margin-bottom: 5px;
	font-size: 1.8rem;
	font-weight: 700;
}

.form-table dt div {
	display: flex;
	align-items: center;
}

.form-table dd {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin: 0 0 15px;
	padding: 0 0 15px;
	border-bottom: 2px solid #707070;
}

.form-table dd input[type=text],
.form-table dd input[type=email],
.form-table dd textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #b1b1b1;
	border-radius: 4px;
	font-family: inherit;
}

.form-table dd p {
	margin-top: 10px;
	color: #5f5f5f;
}

.form-table dd .form-errortext,
.form-agreement .form-errortext {
	font-weight: 700;
	color: #f00;
}

.form-table label {
	margin: 12px 45px 0 0;
}

.form-table textarea {
	width: 100%;
	min-height: 180px;
	resize: vertical;
}

.form-table input[type=radio],
.form-agreement input[type=checkbox] {
	width: 0;
	height: 0;
}

.form-table .form-required {
	margin-left: 15px;
	padding: 1px 7px;
	border-radius: 9px;
	background-color: #fc8351;
	font-size: 1.2rem;
	color: #fff;
}

.form-table label .radiobox {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 15px;
	padding: 2px;
	border: 1px solid #000;
	border-radius: 50%;
	vertical-align: middle;
}

.form-table label .radiobox::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #fff;
	vertical-align: middle;
	transition: background-color 0.2s;
}

input[type=radio]:checked + label .radiobox::before {
	background-color: #fc8351;
}

.form-agreement {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #f0f0f0;
	min-height: 50px;
	padding: 10px;
	margin-bottom: 30px;
	font-size: 1.8rem;
}

.form-agreement a {
	color: #fc8351;
}

.form-agreement .checkbox {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 15px;
	border: 1px solid #000;
	border-radius: 2px;
	vertical-align: middle;
	background-color: #fff;
}

.form-agreement .checkbox::before {
	content: "";
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	opacity: 0;
	border: 2px solid #fc8351;
	transform: translateY(0%) rotate(0deg);
	transition: opacity 0.2s, width 0.2s, transform 0.2s;
}

#b1:checked ~ label[for=b1] .checkbox::before {
	opacity: 1;
	width: 50%;
	height: 120%;
	border-left-color: transparent;
	border-top-color: transparent;
	transform: translateY(-20%) rotate(45deg);
}

.form-validate-untouch ~ .form-errortext,
.form-validate:valid ~ .form-errortext,
.form-validate-check:valid ~ .form-errortext,
.form-validate-class:valid ~ .form-errortext,
.form-validate-checkclass:valid ~ .form-errortext {
	display: none;
}

.form-btn input[type=submit],
.form-btn input[type=button] {
	width: 100%;
}

.form-btn input[type=button] {
	margin-bottom: 20px;
}

/*----------------------------------------------------------------
  Sitemap
  ----------------------------------------------------------------*/

.sitemap nav a {
	display: block;
	margin: 0 0 15px;
	padding-left: 15px;
	background: transparent url(../img/icon_caret_r_gray_9x10.png) left top 2px no-repeat;
	color: #000;
}

.sitemap nav hr {
	width: 100%;
	height: 2px;
	margin: 30px 0;
	border: none;
	background-color: #898989;
}

/*----------------------------------------------------------------
  Site Footer
  ----------------------------------------------------------------*/

.site-footer-about {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 15px;
	background-color: #f7ece1;
}

.site-footer-about a {
	width: 280px;
	margin: 0 auto;
}

.site-footer-about a:nth-of-type(n+2) {
	margin-top: 10px;
}

@media screen and (min-width: 600px) {
	.site-footer-about a:nth-of-type(2) {
		margin-top: 0;
	}
}

.site-footer-link {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 20px 10px;
	background-color: #fc8351;
}

.site-footer-link a {
	padding-right: 30px;
	font-size: 1.4rem;
	background: transparent url(../img/icon_caret_r_white_12x14.png) right center no-repeat;
	color: #fff;
}

.site-footer-global {
	position: sticky;
	top: 0;
	left: 0;
	z-index: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 30px 10px 15px;
	background-color: #ededed;
}

.site-footer-global nav {
	width: calc(50% - 10px);
	margin: 0 0 15px;
}

.site-footer-global nav a {
	display: inline-block;
	margin-bottom: 5px;
	padding-left: 15px;
	background: transparent url(../img/icon_caret_r_gray_9x10.png) center left no-repeat;
	font-size: 1.3rem;
	color: #000;
}

.site-footer-global address {
	width: 100%;
	text-align: center;
	font-style: normal;
	font-size: 1.2rem;
	color: #222;
}

.goto-top {
	position: fixed;
	bottom: 10px;
	right: 10px;
}

.goto-top-btn {
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	border-radius: 3px;
	background: #fc8351 url(../img/arrow_t_white_16x30.png) center no-repeat;
}
