@charset "UTF-8";
/*
Creation Date:	2020.04.15
Last Updated:	2020.05.26
*/


/* set
------------------------------------------------------------ */
* {
	margin: 0;
	padding: 0;
	font-style: normal;
	font-weight: normal;
	box-sizing: border-box;
}
html {
	overflow-y: scroll;
}
body {
	-webkit-text-size-adjust: 100%;
	color: #782A25;
	font-size: 18px;
	line-height: 1.5;
}
ul,ol {
	list-style: none;
}
img {
	vertical-align: middle;
	max-width: 100%;
	height: auto;
	border: 0;
}
a {
	color: #782A25;
	text-decoration: none;
}
.smp {
	display: none;
}
.pc {
	display: block;
}

/* font
------------------------------------------------------------ */
body {
	font-family: 'TsukuBRdGothic-Regular', fot-tsukubrdgothic-std, sans-serif;
	font-weight: 700;
}
nav {
	font-family: dnp-shuei-mgothic-std, sans-serif;
	font-weight: 600;
}
main h3 {
	font-family: a-otf-futo-go-b101-pr6n, sans-serif;
	font-weight: 500;
}
footer p {
	font-family: 'Helvetica',sans-serif;
}

/* header
------------------------------------------------------------ */
header section {
	font-size: 15px;
	padding: 40px 0;
	display: flex;
	justify-content: space-between;
}
header h1 {
	margin-bottom: 10px;
}
header nav {
	display: flex;
	flex-direction: column-reverse;
	justify-content: space-between;
	align-items: flex-end;
}
nav ol {
	display: flex;
}
nav ol li {
	margin: 0 15px;
	padding-bottom: 5px;
	position: relative;
}
nav ol li a {
	padding: 0 5px;
}
nav ol li a:after {
	content: "";
	background: #ED6C00;
	width: 100%;
	height: 2px;
	display: block;
	position: absolute;
	bottom: 0;
	transform: scale(0,1);
	transform-origin: center top;
	transition: transform .3s;
}
nav ol li a:hover:after {
	transform: scale(1,1);
}
nav ul {
	display: flex;
}
nav ul li {
	margin-left: 10px;
	transition: all .3s ease 0s;
}
nav ul li:hover {
	transform: translateY(.1em);
}

/* Triple Menu */
.triple {
	display: none;
	width: 46px;
	height: 25px;
	text-align: center;
	cursor: pointer;
	position: fixed;
	top: 45px;
	right: 60px;
	z-index: 20;
}
.triple .bar {
	background: #000;
	width: 100%;
	height: 1px;
	margin: 0 auto 9px;
	display: block;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.triple .bar:last-child {
	margin-bottom: 0;
}
.tripleOpen .triple .bar {
	background: #000;
}
.tripleOpen .triple .bar.top {
	-webkit-transform: translateY(9px) rotate(-45deg);
	-ms-transform: translateY(9px) rotate(-45deg);
	transform: translateY(9px) rotate(-45deg);
}
.tripleOpen .triple .bar.middle {
	opacity: 0;
}
.tripleOpen .triple .bar.bottom {
	-webkit-transform: translateY(-11px) rotate(45deg);
	-ms-transform: translateY(-11px) rotate(45deg);
	transform: translateY(-11px) rotate(45deg);
}
.nav {
	background: rgba(255, 255, 255, 0.9);
	width: 0;
	height: 100%;
	padding-top: 100px;
	position: fixed;
	top: 0;
	right: 0;
	overflow: hidden;
	z-index: 3;
	-webkit-transition: all 600ms ease-out;
	-o-transition: all 600ms ease-out;
	transition: all 600ms ease-out;
}
.tripleOpen .nav {
	width: 400px;
}
.nav li {
	white-space: nowrap;
	margin: 0 0 30px 90px;
}

/* footer
------------------------------------------------------------ */
footer {
	background: #F7F2F2;
	font-size: 15px;
	text-align: center;
	padding: 30px 5%;
}
footer nav ol {
	justify-content: center;
}
footer p {
	font-size: 10px;
	margin-top: 30px;
}

/* #pagetop */
#pagetop {
	display: none;
	text-align: center;
	position: fixed;
	right: 0;
	bottom: 0;
}
#pagetop a {
	background: rgba(237,108,0,1);
	font-size: 12px;
	color: #FFF;
	width: 60px;
	height: 60px;
	padding-top: 20px;
	display: block;
}
#pagetop a:before {
	content: "";
	width: 15px;
	height: 15px;
	margin: 0 auto;
	display: block;
	border-top: solid 2px #FFF;
	border-right: solid 2px #FFF;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* main
------------------------------------------------------------ */
/* common */
main {
	width: 100%;
	display: block;
}
article {
	background: #F7F2F2;
	width: 100%;
}
section {
	width: 1000px;
	max-width: 90%;
	margin: 0 auto;
	padding: 50px 0;
	position: relative;
}
main h1 {
	text-align: center;
}
main h2 {
	font-size: 30px;
	letter-spacing: .16rem;
	text-align: center;
	margin-bottom: 40px;
}
main h2 em {
	font-size: 20px;
	letter-spacing: normal;
	display: block;
}
main h3 {
	color: #ED6C00;
	font-size: 28px;
	letter-spacing: .16rem;
	margin-bottom: 10px;
}

/* .digest */
.digest {
	width: 850px;
	max-width: 100%;
	margin: 40px auto;
	display: flex;
	justify-content: space-between;
}
.digest div {
	width: 34%;
}
.digest figcaption {
	width: 62%;
}

/* .link */
.link {
	width: 900px;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.link ul {
	width: 48%;
}
.link ul li {
	padding: 0 0 20px 40px;
	position: relative;
}
.link ul li:before {
	content: "";
	background: url(img/check.png) no-repeat;
	background-size: 30px;
	width: 30px;
	height: 30px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}

/* .contact */
.contact {
	text-align: center;
}
.contact p {
	font-size: 21px;
	margin: 20px auto 10px;
}
.contact ul {
	display: flex;
	justify-content: center;
}
.contact ul li {
	margin-left: 10px;
	transition: all .3s ease 0s;
}
.contact ul li:hover {
	transform: translateY(.1em);
}

/* #sec_02 */
#sec_02 h2 {
	padding-left: 65px;
}
#sec_02 h2:after {
	content: "";
	background: url(img/illust_01.png) no-repeat;
	background-size: 110px auto;
	vertical-align: middle;
	width: 110px;
	height: 104px;
	margin-left: 20px;
	display: inline-block;
}

/* #sec_04 */
#sec_04 {
	text-align: center;
	margin-top: 40px;
}

/* #sec_05 */
#sec_05 .digest {
	width: 580px;
}
#sec_05 .digest div {
	width: 10%;
}
#sec_05 .digest figcaption {
	width: 90%;
}

/* #access */
#access {
	text-align: center;
}
#access iframe {
	max-width: 100%;
	margin-bottom: 20px;
}
#access h3 {
	width: 450px;
	height: 50px;
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
}
#access ul {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
#access #bnr {
	padding: 5px 10px;
	display: inline-block;
	border: solid 1px #999;
	position: absolute;
	bottom: 50px;
	right: 0px;
}





@media screen and (max-width: 1024px) {
/* iPad横以下 */

/* header
------------------------------------------------------------ */
/* Triple Menu */
.triple {
	background: rgba(237,108,0,1);
	width: 60px;
	height: 60px;
	padding: 20px 15px 15px;
	top: 0;
	right: 0;
}
.triple .bar,
.tripleOpen .triple .bar {
	background: #FFF;
}
.tripleOpen .nav {
	width: 300px;
	padding: 100px 5% 0;
}
.nav li {
	margin-left: 0;
}

/* main
------------------------------------------------------------ */
#access #bnr {
	margin-top: 20px;
	position: static;
}
}


@media screen and (max-width: 768px) {
/* iPad縦以下 */

/* set
------------------------------------------------------------ */
body {
	font-size: 16px;
}

/* header
------------------------------------------------------------ */
nav ol li {
	margin: 0 10px;
}

/* main
------------------------------------------------------------ */
/* common */
main h2 {
	font-size: 28px;
}
main h2 em {
	font-size: 18px;
}
main h3 {
	font-size: 24px;
	letter-spacing: normal;
}
}


@media screen and (max-width: 740px) {
/* iPhone以下 */

/* set
------------------------------------------------------------ */
body {
	font-size: 14px;
}
.smp {
	display: block;
}
.pc {
	display: none;
}

/* header
------------------------------------------------------------ */
header section {
	padding: 10px 0;
	align-items: flex-start;
}
header nav ol {
	display: none;
}
/* Triple Menu */
.tripleOpen .nav {
	width: 60%;
}

/* footer
------------------------------------------------------------ */
footer {
	font-size: 13px;
	padding: 20px 5%;
}
footer nav ol {
	flex-wrap: wrap;
	justify-content: flex-start;
}
footer p {
	margin-top: 10px;
}

/* main
------------------------------------------------------------ */
/* common */
section {
	padding: 30px 0;
}
main h2 {
	font-size: 23px;
	letter-spacing: normal;
	margin-bottom: 20px;
}
main h2 em {
	font-size: 13px;
}
main h3 {
	font-size: 19px;
}
/* .digest */
.digest {
	display: block;
}
.digest div {
	text-align: center;
	width: 100%;
	margin-bottom: 10px;
}
.digest figcaption {
	width: 100%;
}
.digest h3 {
	text-align: center;
}
/* .link */
.link {
	display: block;
}
.link ul {
	width: 100%;
}
.link ul li {
	padding: 0 0 20px 30px;
}
.link ul li:before {
	background-size: 25px;
	width: 25px;
	height: 25px;
}
/* .contact */
.contact p {
	font-size: 17px;
}
.contact ul {
	display: block;
}
.contact ul li {
	margin: 0 auto 20px;
}
/* #sec_02 */
#sec_02 h2 {
	padding-left: 0;
}
#sec_02 h2:after {
	margin: 20px auto;
	display: block;
}
/* #sec_05 */
#sec_05 .digest {
	display: flex;
}
#sec_05 .digest div {
	text-align: left;
	width: 8%;
}
#sec_05 .digest figcaption {
	width: 90%;
}
#sec_05 .digest h3 {
	text-align: left;
}

/* #access */
#access {
	text-align: center;
}
#access iframe {
	max-width: 100%;
	margin-bottom: 20px;
}
#access h3 {
	width: auto;
	height: auto;
	display: block;
}
}