@charset "UTF-8";


@media screen and (max-width: 736px) {
}


/* --------------------------------------------------
		foundation
-------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	box-sizing: border-box;
}
html {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 62.5%;
	word-wrap: break-word;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	overflow-y: scroll;
	height: 100%;
}
body {
	position: relative;
	font-size: 1.7rem;
	line-height: 1.8;
	color: #001D4B;
	overflow: hidden;
	min-width: 1040px;
}
a {
	outline: none;
	color: #001D4B;
	text-decoration: underline;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
a:hover {
	text-decoration: none;
}
img {
	vertical-align: bottom;
	max-width: 100%;
}

@media screen and (max-width: 736px) {
body {
	font-size: 1.6rem;
	min-width: 0;
}
a:hover {
	text-decoration: underline;
}
img {
	max-width: none;
	width: 100%;
}
}


/* --------------------------------------------------
		layout
-------------------------------------------------- */
.l-main {
	position: relative;
	background-color: #FFF8DD;
	padding-top: 150px;
}
.l-header {
	position: fixed;
	z-index: 101;
	top: 0;
	left: 0;
	width: 100%;
	min-width: 1040px;
	height: 150px;
	background-color: #FFFFFF;
	transition: top .3s cubic-bezier(0.165,0.84,0.44,1);
}
.l-header.is-small {
	top: -70px;
}
.l-header-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	 justify-content: space-between;
	 padding: 13px 0 26px;
}
.l-header__logo {
	width: 133px;
}
.l-header__lead {
	color: #585858;
	font-size: 1.3rem;
}
.l-header-nav {
	padding: 22px 0;
}
.l-header-nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.l-header-nav__list li {
	width: 25%;
}
.l-header-nav__list li a {
	font-size: 1.8rem;
	font-weight: bold;
	text-decoration: none;
	transition: color .1s ease;
}
.l-header-nav__list li span {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 35px;
	margin-right: 15px;
	transition: transform .1s ease;
}
.l-header-nav__list li a:hover {
	color: #115ABF;
}
.l-header-nav__list li a:hover span {
	transform: rotate(10deg) scale(1.1);
}
.l-footer-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 15px 0;
}
.l-footer-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 1.3rem;
}
.l-footer-link li + li {
	margin-left: 40px;
}
.l-footer-link li a {
	padding-left: 25px;
	background-image: url(../img/icon_out_b.png);
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: left center;
	text-decoration: none;
}
.l-footer-link li a:hover {
	text-decoration: underline;
}
.l-footer-copyright {
	font-size: 1.1rem;
}

@media screen and (max-width: 736px) {
.l-main {
	padding-top: 50px;
}
.l-header {
	height: 50px;
	min-width: 0;
	transition: top 0s;
}
.l-header-box {
	 padding: 10px 0 9px;
}
.l-header__logo {
	margin-left: 5px;
}
.l-header__toggle {
	position: relative;
	margin-right: 5px;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
.l-header__toggle:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/icon_menu_close.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	opacity: 0;
}
.l-header.is-open .l-header__toggle:before {
	opacity: 1;
}
.l-header.is-open .l-header__toggle img {
	opacity: 0;
}
.l-header-nav {
	position: absolute;
	top: 50px;
	right: 0;
	height: calc(100vh - 50px);
	background-color: #FFFFFF;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transform: translateX(100%);
}
.l-header.is-setsp .l-header-nav {
	transition: transform .4s cubic-bezier(0.165,0.84,0.44,1);
}
.l-header.is-open .l-header-nav {
	transform: translateX(0);
}
.l-header-nav__list {
	display: block;
	padding: 50px 50px;
}
.l-header-nav__list li {
	width: 100%;
}
.l-header-nav__list li + li {
	margin-top: 40px;
}
.l-header-nav__list li a {
	font-size: 1.5rem;
}
.l-header-nav__list li span {
	margin-right: 10px;
}
.l-header-nav__list li a:hover {
	color: #001D4B;
}
.l-header-nav__list li a:hover span {
	transform: rotate(0deg) scale(1);
}
.l-footer-box {
	display: block;
	padding: 20px 0;
}
.l-footer-link {
	display: block;
	font-size: 1.4rem;
	margin-bottom: 15px;
}
.l-footer-link li + li {
	margin: 5px 0 0 0;
}
.l-footer-link li a:hover {
	text-decoration: none;
}
}


/* --------------------------------------------------
		component
-------------------------------------------------- */
.c-button--a {
	display: block;
	text-align: center;
	color: #FFFFFF;
	font-weight: bold;
	background-color: #115ABF;
	border-radius: 30px 30px;
	text-decoration: none !important;
	padding: 10px 0;
	background-image: url(../img/icon_arrow_w.png);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: calc(100% - 15px) 50%;
	transition: transform .1s ease;
}
.c-button--a.out {
	background-image: url(../img/icon_out_w.png);
}
.c-button--a:hover {
	transform: scale(1.04);
}
.c-button--b {
	display: block;
	text-align: center;
	color: #115ABF;
	font-weight: bold;
	background-color: #FFFFFF;
	border-radius: 30px 30px;
	text-decoration: none !important;
	padding: 9px 0;
	background-image: url(../img/icon_arrow_b.png);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: calc(100% - 15px) 50%;
	transition: transform .1s ease;
	border: 1px solid #115ABF;
}
.c-button--b.out {
	background-image: url(../img/icon_out_b.png);
}
.c-button--b:hover {
	transform: scale(1.04);
}
.c-lead--a {
	text-align: center;
	margin-bottom: 60px;
	font-size: 2.0rem;
	font-weight: bold;
}
.c-lead--a .icon {
	display: inline-block;
	width: 40px;
	margin-bottom: 15px;
}

@media screen and (max-width: 736px) {
.c-button--a {
	padding: 11px 0;
}
.c-button--a:hover {
	transform: scale(1);
}
.c-button--b {
	padding: 10px 0;
}
.c-button--b:hover {
	transform: scale(1);
}
.c-lead--a {
	margin-bottom: 30px;
	font-size: 1.6rem;
}
.c-lead--a .icon {
	width: 30px;
}
}


/* --------------------------------------------------
		project
-------------------------------------------------- */
.p-visual {
	height: 290px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.p-visual__title {
	width: 479px;
	margin: 0 auto;
	padding-top: 100px;
}
.p-pagetop {
	position: fixed;
	z-index: 100;
	bottom: 35px;
	right: 35px;
	display: none;
}
.p-pagetop a {
	display: block;
	width: 70px;
	height: 70px;
	background-color: #FFFFFF;
	border-radius: 50% 50%;
	text-align: center;
	transition: transform .1s ease;
}
.p-pagetop a:hover {
	transform: scale(1.1);
}
.p-pagetop a img {
	width: 46px;
	padding-top: 12px;
}
.p-relative {
	background-color: #FFEA9A;
	padding: 50px 0;
}
.p-relative__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -30px -15px 0;
}
.p-relative__list li {
	margin-top: 30px;
	padding: 0 15px;
}
.p-relative__list.list-a {
	margin-bottom: 30px;
}
.p-relative__list.list-a li {
	width: 343px;
}
.p-relative__list.list-b li {
	width: 257px;
}
.p-relative__list li > * {
	position: relative;
	/* border-radius: 10px 10px; */
	overflow: hidden;
	display: block;
}
.p-relative__list li a {
	display: block;
	transition: transform .1s ease;
}
.p-relative__list li a:hover {
	transform: scale(1.05);
}
.p-relative__list li img {
	border-radius: 10px 10px;
}

@media screen and (max-width: 736px) {
.p-visual {
	height: 150px;
}
.p-visual__title {
	width: 278px;
	padding-top: 50px;
}
.p-pagetop {
	right: 20px;
}
.p-pagetop a {
	width: 60px;
	height: 60px;
}
.p-pagetop a:hover {
	transform: scale(1);
}
.p-pagetop a img {
	width: 40px;
	padding-top: 10px;
}
.p-relative {
	padding: 30px 0;
}
.p-relative__list {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	margin: -10px -1.408450704225352% 0;
}
.p-relative__list li {
	margin-top: 10px;
	padding: 0 1.36986301369863%;
}
.p-relative__list.list-a li {
	width: 50%;
}
.p-relative__list.list-b li {
	width: 50%;
}
.p-relative__list li > * {
	border-radius: 5px 5px;
}
.p-relative__list li a:hover {
	transform: scale(1);
}
}


/* --------------------------------------------------
		utility
-------------------------------------------------- */
.u-pc {
	display: block;
}
.u-sp {
	display: none;
}
.u-cfx:after {
	content: "";
	display: table;
	clear: both;
}
.u-bold {
	font-weight: bold;
}
.u-center {
	text-align: center;
}
.u-cts {
	position: relative;
}
.u-cts__inner {
	position: relative;
	max-width: 1040px;
	padding: 0 20px;
	margin: 0 auto;
}
.u-cts__inner.type--b {
	max-width: 1180px;
	padding: 0 0;
}
.u-cts__inner.type--c {
	max-width: none;
	padding: 0 0;
}
.u-ancher {
	padding-top: 80px;
	margin-top: -80px;
}

@media screen and (max-width: 736px) {
.u-pc {
	display: none;
}
.u-sp {
	display: block;
}
.u-cts__inner {
	max-width: none;
	padding: 0 2.666666666666667%;
}
.u-cts__inner.type--b {
	max-width: none;
}
.u-ancher {
	padding-top: 50px;
	margin-top: -50px;
}
}


/* --------------------------------------------------
		※※※※※
-------------------------------------------------- */

@media screen and (max-width: 736px) {
}
