@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,700|Roboto:400i,500i,700,700i&display=swap');

html {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 94%;
    letter-spacing: 0.05em;
    height: 100%;
}

body {
    -webkit-text-size-adjust: 100%;
	min-width: 320px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
	color: #373737;
}

#contentsTop, #contents {
    flex: 1;
}

img {
	width: 100%;
	height: auto;
}

/* リンク */

a:link, a:hover, a:active, a:visited { color: #373737; text-decoration: none; }

/* 非表示 */

.pc-cont { display: none!important; }

/* トップへ戻るボタン */

a#page-top {
    margin: -30px auto -5px auto;
    display: block;
    width: 74px;
	height: 40px;
    overflow: hidden;
}

/* header
--------------------------------------------------------------------------------------------------------------- */

header {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
}

header h1 {
    width: 130px;
    margin-left: 3%;
    margin-right: auto;
}

header h1 a {
    display: block;
}

header h1 img.l-max { display: none; }

#sp-menuBtn {
	width: 70px;
	height: 70px;
	background: url(../img/icon_sp-menu.svg) no-repeat;
    z-index: 10000;
}

.open #sp-menuBtn {
	background: url(../img/icon_sp-menu_close.svg) no-repeat;
}

.open #g-navi {
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
}

#g-navi {
    position: fixed;
    display: flex;
	justify-content: center;
	align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
	background-color: #00326e;
    z-index: 1000;
}

header ul li {
    padding: 20px 0;
    font-size: 1.08em;
    letter-spacing: 0.15em;
}

header ul li a {
    display: block;
    text-align: center;
    color: #FFF!important;
}

header ul li a span {
    display: block;
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: 0.7rem;
    opacity: 0.7;
}

/* footer
--------------------------------------------------------------------------------------------------------------- */

/* お問い合わせ */

footer #contact {
    padding: 60px 7%;
    font-weight: bold;
    text-align: center;
    color: #00326e;
}

footer #contact .tit {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 2em;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

footer #contact p {
    line-height: 1.4em;
    margin-bottom: 20px;
}

footer #contact a {
    display: inline-block;
    width: 100%;
    margin: 5px 0;
    padding: 13px 0;
    color: #00326e;
    border: solid 1px #00326e;
}

footer #contact a.tel { background: url("../img/icon_contact_tel.svg") no-repeat center left 25px; }
footer #contact a.mail { background: url("../img/icon_contact_mail.svg") no-repeat center left 25px; }

/* ロゴ・コピーライト */

footer #company {
    padding: 45px 7% 50px 7%;
    text-align: center;
    background-color: #00326e;
}

footer #company div {
    width: 200px;
    margin: 0 auto;
}

footer small {
    margin-left: auto;
    font-size: 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.1em;
    color: #FFF;
}

/* TOP
--------------------------------------------------------------------------------------------------------------- */

#contentsTop #heroimage {
    width: 100%;
    height: 220px;
    background: url("../img/top/img_heroimage_bg.jpg") no-repeat center bottom;
    background-size: cover;
    display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

#contentsTop #heroimage p.text01 {
    padding: 0 10%;
    position: absolute;
    width: 100%;
    height: 0px;
    top: 150px;

		opacity: 0;

		animation-name: heroTxt01;
		animation-duration: 30s;
		/* animation-delay: 2s; */
		animation-iteration-count: infinite;
}

#contentsTop #heroimage p.text02 {
    padding: 0 10%;
    width: 100%;
    height: 45px;
    top: 170px;


		opacity: 0;

		animation-name: heroTxt02;
		animation-duration: 30s;
		/* animation-delay: 2s; */
		animation-iteration-count: infinite;
}

#contentsTop #heroimage p.text03 {
    padding: 0 10%;
    position: absolute;
    width: 100%;
    height: 45px;
    top: 155px;

		opacity: 0;

		animation-name: heroTxt03;
		animation-duration: 30s;
		/* animation-delay: 2s; */
		animation-iteration-count: infinite;
}

#contentsTop #heroimage p.text04 {
    padding: 0 10%;
    position: absolute;
    width: 100%;
    height: 0px;
    top: 132px;

		opacity: 0;

		animation-name: heroTxt04;
		animation-duration: 30s;
		/* animation-delay: 2s; */
		animation-iteration-count: infinite;
}



@keyframes heroTxt01 {
	0% {
    opacity: 0;
	} 10% {
		opacity: 0;
	} 13% {
		opacity: 0;
		transform: scale(.9);
	} 19% {
		opacity: 1;
		transform: scale(1);
	} 25% {
    opacity: 1;
  } 28% {
    opacity: 0;
	} 100% {
		opacity: 0;
	}
}
@keyframes heroTxt02 {
	0% {
    opacity: 0;
  } 30% {
    opacity: 0;
		transform: scale(.9);
	} 36% {
		opacity: 1;
		transform: scale(1);
	} 42% {
		opacity: 1;
	} 45% {
		opacity: 0;
	} 100% {
		opacity: 0;
	}
}

@keyframes heroTxt03 {
	0% {
    opacity: 0;
  } 48% {
    opacity: 0;
		transform: scale(.9);
	} 54% {
		opacity: 1;
		transform: scale(1);
	} 60% {
		opacity: 1;
	} 63% {
		opacity: 0;
	} 100% {
		opacity: 0;
	}
}

@keyframes heroTxt04 {
	0% {
    opacity: 0;
  } 66% {
    opacity: 0;
		transform: scale(.9);
	} 75% {
		opacity: 1;
		transform: scale(1);
	} 85% {
    opacity: 1;
  } 92% {
    opacity: 0;
	} 100% {
		opacity: 0;
	}
}


/* 共通 見出し */

#contentsTop h2 {
    padding: 60px 0 30px 0;
    text-align: center;
    font-weight: bold;
    color: #00326e;
}

#contentsTop h2 span {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 1.8em;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

#contentsTop h2 span img {
    width: 24px;
    margin-left: 6px;
}

/* TOP - INFORMATION
--------------------------------------------------------------------------------------------------------------- */

#contentsTop #info {
    padding: 0 7%;
}

#contentsTop #info ul li {
    margin-bottom: 30px;
}

#contentsTop #info ul li div {
    position: relative;
    width: 100%;
    padding-top: 93.75%;
}

#contentsTop #info ul li img {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#contentsTop #info ul li p.date {
    text-align: center;
    font-weight: bold;
    color: #00326e;
    padding: 30px 0 25px 0;
}

#contentsTop #info ul li p.tex {
    text-align: justify;
    line-height: 1.8em;
}

/* TOP - ITEMS
--------------------------------------------------------------------------------------------------------------- */

#contentsTop #items {
    margin-top: 60px;
    padding: 0 7% 60px 7%;
    background: url("../img/top/logo_bg.svg") no-repeat top right #f2f5f8;
}

#contentsTop #items ul a {
    display: block;
}

#contentsTop #items ul li p {
    text-align: center;
    font-weight: bold;
    color: #00326e;
    padding: 30px 0 25px 0;
}

#contentsTop #items h3 {
    max-width: 940px;
    margin: 40px auto 0 auto;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #00326e;
}

#contentsTop #items h3::before,
#contentsTop #items h3::after {
    border-top: 1px solid #00326e;
    content: "";
    flex-grow: 1;
}

#contentsTop #items h3::before {
    margin-right: 1rem;
}

#contentsTop #items h3::after {
    margin-left: 1rem;
}

#contentsTop #items ul.catalog {
    margin-top: 60px;
}

#contentsTop #items ul.catalog li {
    margin-bottom: 10px;
}

#contentsTop #items ul.catalog a {
    width: 100%;
    height: 80px;
    padding: 10px 0 10px 45px;
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    color: #00326e;
    border: solid 1px #00326e;
    background: url("../img/icon_catalog.svg") no-repeat center left 20px #FFF;
}

#contentsTop #items ul.catalog img {
    max-width: 160px;
    margin-right: 5px;
}

#contentsTop #items ul.catalog a::after {
    content: "商品カタログ";
    font-weight: bold;
    padding-right: 25px;
    background: url("../img/icon_link_out.svg") no-repeat center right;
}

/* TOP - WORKS・RECRUIT
--------------------------------------------------------------------------------------------------------------- */

#contentsTop #works,
#contentsTop #recruit {
    height: 320px;
    padding: 0 7%;
    display: flex;
	justify-content: center;
	align-items: center;
}

#contentsTop #works { background: url("../img/img_h-bg_works.jpg") no-repeat center; background-size: cover; }
#contentsTop #recruit { background: url("../img/img_h-bg_recruit.jpg") no-repeat center; background-size: cover; }

#contentsTop #works .wrapper,
#contentsTop #recruit .wrapper {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    width: 100%;
    height: 260px;
    padding-left: 7%;
    border: solid 1px #FFF;
}

#contentsTop #works .wrapper::after,
#contentsTop #recruit .wrapper::after {
    content: "";
    width: 38px;
    height: 35px;
    margin: -3em 0 0 auto;
    background: url("../img/icon_link_arrow.svg") no-repeat;
}

#contentsTop #works h2,
#contentsTop #recruit h2 {
    width: 100%;
    color: #FFF;
    font-size: 1.1em;
    letter-spacing: 0.15em;
    text-align: left;
}

#contentsTop #works h2 span,
#contentsTop #recruit h2 span {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: 2.5rem;
    letter-spacing: 0.1rem;
    line-height: 0.7;
    margin: 0 0 10px 0;
}

#contentsTop #works p,
#contentsTop #recruit p {
    line-height: 1.4em;
    letter-spacing: 0.1em;
    color: #FFF;
    margin-top: 20px;
}

/* TOP - BUSINESS PARTNER
--------------------------------------------------------------------------------------------------------------- */

#contentsTop #partner {
    padding: 0 7% 60px 7%;
    background-color: #00326e;
}

#contentsTop #partner h2 {
   color: #FFF;
}

#contentsTop #partner ul li img {
    max-width: 186px;
}

#contentsTop #partner li {
    background-color: #FFF;
    margin-bottom: 10px;
}

#contentsTop #partner li a {
    height: 80px;
    display: flex;
	justify-content: center;
	align-items: center;
}

/* 下層
--------------------------------------------------------------------------------------------------------------- */

/* 共通 ページタイトル */

#contents #pageTitle {
    width: 100%;
    height: 160px;
    display: flex;
	justify-content: center;
	align-items: center;
}

#contents #pageTitle h2 {
    text-align: center;
    color: #FFF;
    font-size: 0.85em;
    letter-spacing: 0.2em;
}

#contents #pageTitle h2 span {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 2rem;
    letter-spacing: 0.1rem;
    margin-bottom: 6px;
}

/* 下層 - COMPANY
--------------------------------------------------------------------------------------------------------------- */

#contents.company #pageTitle {
    background: url("../img/img_h-bg_company.jpg") no-repeat center;
    background-size: cover;
}

#contents.company section {
    margin-top: 50px;
}

#contents.company section:first-of-type {
    background: url("../img/company/img_bg_h.svg") no-repeat left top;
    background-size: 80% auto;
}

#contents.company section:last-of-type {
    padding-bottom: 50px;
    background-color: #00326e;
    color: #FFF;
}

#contents.company .wrapper {
    padding: 50px 7% 0 7%;
}

#contents.company h3 {
		display: inline-block;
    font-size: 1.05em;
    font-weight: bold;
    color: #0046a0;
    margin-left: -50px;
}

#contents.company section:last-of-type h3 {
    color: #FFF;
}

#contents.company h3::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 2px;
    margin-right: 10px;
    background-color: #0046a0;
}
#contents.company h3::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 2px;
    margin-left: 10px;
    background-color: #0046a0;
}

#contents.company section:last-of-type h3::before,
#contents.company section:last-of-type h3::after {
    background-color: #FFF;
}

#contents.company p {
    padding-top: 20px;
    line-height: 2em;
    text-align: justify;
}

#contents.company p br { display: none; }

#contents.company table {
    margin-top: 30px;
    border-top: solid 1px rgba(235,235,235,0.2);
}

#contents.company table th {
    display: block;
    width: 100%;
    padding: 20px 0 0 0;
}

#contents.company table td {
    display: block;
    width: 100%;
    padding: 10px 0 20px 0;
    border-bottom: solid 1px rgba(235,235,235,0.2);
}

/* 下層 - ITEMS
--------------------------------------------------------------------------------------------------------------- */

#contents.items #pageTitle {
    background: url("../img/img_h-bg_items.jpg") no-repeat center;
    background-size: cover;
}

#contents.items section {
    padding: 60px 7% 0 7%;
}

#contents.items h3 {
    padding-bottom: 10px;
    border-bottom: solid 1px #ccc;
}

#contents.items h3 img {
    max-width: 186px;
}

#contents.items .wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
}

#contents.items .wrapper div {
    width: 49%;
}

#contents.items .wrapper div a {
    display: block;
    letter-spacing: 0;
    line-height: 0;
    font-size: 0;
}

#contents.items section:last-of-type .wrapper div:last-of-type {
    display: flex;
    flex-direction: column;
}

#contents.items section:last-of-type div:last-of-type a:last-of-type {
    margin-top: auto;
}

#contents.items ul {
    width: 100%;
    margin: 25px 0 0 20px;
}

#contents.items ul li {
    list-style-type: disc;
    line-height: 2em;
}

/* 外部リンク */

#contents.items .link {
    display: block;
    padding: 15px 40px;
    background: url("../img/icon_link_out-w.svg") no-repeat center right 15px #0046a0;
    color: #FFF;
    text-align: center;
    line-height: 1.4em;
}

/* 下部リード文 */

#contents.items .info {
    padding: 60px 7% 0 7%;
    font-size: 1.1em;
    font-weight: bold;
    text-align: justify;
    line-height: 1.6em;
}

#contents.items .info br { display: none; }

#contents.items .info::after {
    content: "";
    display: block;
    width: 76px;
    height: 32px;
    margin: 40px auto 0 auto;
    background: url("../img/items/icon_arrow.svg") no-repeat;
}

/* 下層 - WORKS
--------------------------------------------------------------------------------------------------------------- */

#contents.works #pageTitle {
    background: url("../img/img_h-bg_works.jpg") no-repeat center;
    background-size: cover;
}

#contents.works .wrapper {
    padding: 0 7%;
}

#contents.works section {
    margin-top: 40px;
}

#contents.works h3 {
    padding: 10px 20px;
    background-color: #00326e;
    color: #FFF;
    font-weight: bold;
}

#contents.works ul {
    padding: 20px;
    line-height: 2em;
}

#contents.works section p {
    text-align: right;
}

/* 下層 - RECRUIT
--------------------------------------------------------------------------------------------------------------- */

#contents.recruit #pageTitle {
    background: url("../img/img_h-bg_recruit.jpg") no-repeat center;
    background-size: cover;
}

#contents.recruit #message {
    padding: 60px 7% 240px 7%;
    background: url("../img/recruit/img_bg_message.jpg") no-repeat center bottom;
    background-size: cover;
}

#contents.recruit #message h3 {
    text-align: center;
}

#contents.recruit #message h3 img {
    max-width: 120px;
}

#contents.recruit #message p {
    margin-top: 25px;
    font-size: 1.1em;
    font-style: italic;
    line-height: 2.2em;
    color: #00326e;
    text-align: justify;
}

#contents.recruit #message p br { display: none; }

/* 募集内容 */

#contents.recruit #info {
    padding-bottom: 50px;
    background-color: #00326e;
    color: #FFF;
}

#contents.recruit #info .wrapper {
   padding: 50px 7% 0 7%;
}

#contents.recruit #info h3 {
		display: inline-block;
    font-size: 1.05em;
    font-weight: bold;
    margin-left: -50px;
}

#contents.recruit #info h3::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 2px;
    margin-right: 10px;
    background-color: #FFF;
}
#contents.recruit #info h3::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 2px;
    margin-left: 10px;
    background-color: #FFF;
}

#contents.recruit #info table {
    margin-top: 30px;
    border-top: solid 1px rgba(235,235,235,0.2);
    line-height: 1.4em;
}

#contents.recruit #info table th {
    display: block;
    width: 100%;
    padding: 20px 0 0 0;
}

#contents.recruit #info table td {
    display: block;
    width: 100%;
    padding: 10px 0 20px 0;
    border-bottom: solid 1px rgba(235,235,235,0.2);
}

/* 下層 - CONTACT
--------------------------------------------------------------------------------------------------------------- */

#contents.contact #pageTitle h2 {
    color: #373737!important;
}

#contents.contact h3 {
    padding: 0 0 20px 0;
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
}

#contents.contact p.lead {
    text-align: center;
    padding-bottom: 60px;
    line-height: 1.4em;
}

#contents.contact .wrapper {
    padding: 0 7%;
}

#contents.contact table {
    margin-bottom: 30px;
}

#contents.contact table th {
    display: block;
    width: 100%;
    font-weight: bold;
}

#contents.contact table th span {
    display: inline-block;
    font-size: 0.7em;
    font-weight: normal;
    color: #FFF;
    padding: 4px 6px;
    margin-right: 10px;
    vertical-align: middle;
    background-color: #0046a0;
}

#contents.contact table td {
    display: block;
    width: 100%;
    margin: 15px 0;
}

input[type=text],
input[type=email] {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 1rem;
	color: #333;
    border: none;
    background-color: #efefef;
    padding: 6px 10px;
    margin: 0px;
    width: 100%;
    height: 40px;
    overflow: hidden;
}

textarea {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 1rem;
	color: #333;
    border: none;
	border-radius: 1px;
    background-color: #efefef;
    padding: 6px 10px;
    margin: 0px;
    width: 100%;
	line-height: 1.6em;
}

input::placeholder, textarea::placeholder {
  color: #8F8F8F;
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    vertical-align: top;
    margin: 0 0.5em 0 0;
    padding: 0;
}

form .btnArea {
	padding: 10px 0 60px 0;
	text-align: center;
}

button {
	display: block;
    font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
	font-style: normal;
    font-size: 1rem;
	cursor: pointer;
	outline: none;
	appearance: none;
	border: none;
	border-radius: 30px;
	width: 100%;
	height: 45px;
	margin: 10px 0;
	padding: 0;
	color: #FFF;
	background-color: #00326e;
}

button:hover { opacity: 0.5; }

/* 個人情報保護について */

#contents.contact #policy {
    background-color: #efefef;
    margin-bottom: 50px;
}

#contents.contact #policy .scroll {
    height: 230px;
    padding: 5px 10px;
    overflow-x: hidden;
    overflow-y: scroll;
}

#contents.contact #policy h4 {
    font-weight: bold;
    margin-top: 20px;
    font-size: 0.9em;
}

#contents.contact #policy p {
    text-align: justify;
    line-height: 1.6em;
    padding-top: 5px;
    font-size: 0.9em;
}

#contents.contact #policy a {
    text-decoration: underline;
}

#contents.contact .consent {
    text-align: center;
}
