@charset "utf-8";
/* CSS Document */

/*******************************
loader
*******************************/
#loadingWrap {
    width: 100%;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%); /* Safari用 */
    transform: translate(-50%, -50%);
}

#loader,
#loader:before,
#loader:after {
    border-radius: 50%;
}

#loader {
    color: #b09540;
    font-size: 11px;
    overflow: hidden;
    margin: 55px auto;
    position: relative;
    width: 10em;
    height: 10em;
    box-shadow: inset 0 0 0 0.55rem;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}

#loader:before,
#loader:after {
    position: absolute;
    content: '';
}

#loader:before {
    width: 5.5em;
    height: 10.5em;
    background: #fff;
    border-radius: 10.2em 0 0 10.2em;
    top: -0.1em;
    left: -0.1em;
    -webkit-transform-origin: 5.1em 5.1em;
    transform-origin: 5.1em 5.1em;
    -webkit-animation: load2 2s infinite ease 1.5s;
    animation: load2 2s infinite ease 1.5s;
}

#loader:after {
    width: 5.5em;
    height: 10.5em;
    background: #fff;
    border-radius: 0 10.2em 10.2em 0;
    top: -0.1em;
    left: 4.9em;
    -webkit-transform-origin: 0.1em 5.1em;
    transform-origin: 0.1em 5.1em;
    -webkit-animation: load2 2s infinite ease;
    animation: load2 2s infinite ease;
}

@-webkit-keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    }
    @keyframes load2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#loader img {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    z-index: 2;
}

/*******************************
fonts
*******************************/
@font-face {
font-family: "gothic01";
	src: url(/common/fonts/NotoSansCJKjp-Regular.eot) format("eot"), url(/common/fonts/NotoSansCJKjp-Regular.woff) format("woff");
}

@font-face {
font-family: "gothic02";
	src: url(/common/fonts/NotoSansCJKjp-Bold.eot) format("eot"), url(/common/fonts/NotoSansCJKjp-Bold.woff) format("woff");
}

/*******************************
Reset
*******************************/
html,body,div,p,ul,ol,li,dl,dt,dd,pre,h1,h2,h3,h4,h5,h6,table,th,td,form,fieldset,input,textarea,select,img {
    margin:0;
    padding:0;
}

body {
    color:#333;
    text-align:left;
	font-family: "gothic01","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
    line-height:180%;
	overflow-x: hidden;
}

input,
textarea{
	font-family: "gothic01","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
	font-size:12px;
	color:#333;
}

a {
    color:#333;
	text-decoration:none;
    outline:none;
}

img {
    border:0;
	vertical-align:bottom;
}

h1, h2, h3, h4, h5, h6 {
    line-height:120%;
    font-weight:normal;
}

p {
	color:#333;
	font-size:100%;
}

td, th {
    text-align:left;
    vertical-align:top;
}

ul,ol,li {
    list-style-type:none;
}

/*******************************
contents
*******************************/
body, html {
	height: 100%;
}

.sp {
	display: none;
}

/*******************************
header
*******************************/
header {
    padding-left: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header a {
    display: block;
    font-size: 1rem;
}

header h1 {
    width: 140px;
}

header h1 img {
    width: 100%;
    height: auto;
}

header nav {
    display: flex;
    justify-content: space-between;
}

header nav ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header nav ul li {
    margin: 0 3rem 0 0;
}

header nav ul li a {
    padding: 1.8rem 0;
    white-space: nowrap;
    transition: all 0.5s ease 0s;
}

header nav ul li.active a {
    color: #b09540;
}

header nav ul #navContact {
    display: none;
}

header nav #headerContact {
    border: 2px solid #333;
    box-sizing: border-box;
    width: 220px;
    position: relative;
    transition: all 0.5s ease 0s;
    z-index: 5;
    overflow: hidden;
}

header nav #headerContact:hover {
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
}

header nav #headerContact a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

header nav #headerContact a:hover {
    opacity: 1.0!important;
}

header nav #headerContact a .line {
    height: 2px;
    background: #333;
    width: 3rem;
    position: absolute;
    top: 50%;
    animation-name: animLine01;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes animLine01 {
    from {
        opacity: 0.4;
        transform: translateX(150%);
    }
    to {
        opacity: 1;
        transform: translateX(300%);
    }
}

header nav #headerContact a .circle {
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background: #dad3be;
    background: -webkit-linear-gradient(right, #6fc5ff, #f24662 50%, #b09540);
    background: -o-linear-gradient(right, #6fc5ff, #f24662 50%, #b09540);
    background: linear-gradient(to left, #6fc5ff, #f24662 50%, #b09540);
    position: absolute;
    left: 46%;
    bottom: -35%;
    z-index: -1;
    transform: scale(0);
    transition: transform 1s;
    opacity: .2;
}

.menuTrigger {
    display: none;
}

/*******************************
footer
*******************************/
footer {
    margin-top: 4rem;
}

footer a {
    display: block;
}

footer #link {
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

footer #link ul:first-child {
    margin-bottom: 1rem;
}

footer #link ul {
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
    white-space: nowrap;
}

footer #link ul li a {
    padding: 0 1rem;
    border-left: 1px solid #ccc;
}

footer #link #footerLogo {
    width: 15%;
}

footer #link #footerLogo img {
    width: 100%;
}

footer #copyright {
    text-align: center;
    background: #f4f4f4;
    padding: 1.5rem 0 11rem;
    margin-top: 1.5rem;
}

/*******************************
underlayer
*******************************/
#breadcrumbList {
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;
    font-size: 0.9rem;
    background: rgba(176,149,64,0.1);
    background: -webkit-linear-gradient(right, #f1f9ff, #feedf0 50%, #f7f5ec);
    background: -o-linear-gradient(right, #f1f9ff, #feedf0 50%, #f7f5ec);
    background: linear-gradient(to left, #f1f9ff, #feedf0 50%, #f7f5ec);
    padding: 0.5rem;
    margin-top: 2rem;
}

#breadcrumbList li {
    display: inline-block;
}

#breadcrumbList li:not(:last-child) a {
    margin-right: 0.5em;
}

#breadcrumbList li:not(:last-child)::after {
    content: "＞";
    color: #ccc;
    margin-right: 0.5em;
}

#breadcrumbList li:last-child a {
    pointer-events:none;
}

#contents {
    width: 1000px;
    max-width: 90%;
    margin: 2rem auto 0;
    min-height: 40vh;
}

#contents h1 {
    font-family: "gothic02";
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
}

#contents h1 span:nth-child(odd) {
    color: #b09540;
}

#contents h1 span:nth-child(even) {
    color: #333;
}

#contents a {
    border-bottom: 1px solid #b09540;
}

#contents #item {
    display: flex;
    flex-wrap: wrap;
}

#contents #item li {
    width: 48%;
    margin-bottom: 2.5rem;
    border: 2px solid #b09540;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease 0s;
}

#contents #item li:hover {
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
}

#contents #item li:nth-child(odd) {
    margin-right: 4%;
}

#contents #item li a {
    display: block;
    padding: 2rem 1rem;
    border: none;
}

#contents #item li a:hover {
    opacity: 1.0!important;
}

#contents #item li a .circle {
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background: #dad3be;
    background: -webkit-linear-gradient(right, #6fc5ff, #f24662 50%, #b09540);
    background: -o-linear-gradient(right, #6fc5ff, #f24662 50%, #b09540);
    background: linear-gradient(to left, #6fc5ff, #f24662 50%, #b09540);
    position: absolute;
    left: 46%;
    bottom: -35%;
    z-index: -1;
    transform: scale(0);
    transition: transform 1s;
    opacity: .1;
}

#contents #item li.off {
    border: 2px solid #ccc;
}

#contents #item li.off:hover {
    box-shadow: none;
}

#contents #item li.off a {
    pointer-events:none;
}

#contents #item li.off a .circle,
#contents #item li.off a dl dd .detail {
    display: none;
}

#contents #item li a dl {
    margin-bottom: 1rem;
}

#contents #item li a dl dt {
    font-family: "gothic02";
    color: #b09540;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

#contents #item li a dl dd .detail {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #b09540;
    padding: 0.4rem 0;
    color: #fff;
    width: 8rem;
    text-align: center;
}

#contents #item li a dl dd .detail div {
    position: relative;
    text-align: left;
}

#contents #item li a dl dd .detail .line {
    height: 2px;
    background: #fff;
    width: 2rem;
    position: absolute;
    top: 0.7rem;
    right: 0;
    animation-name: animLineItem01;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes animLineItem01 {
    from {
        opacity: 0.4;
        transform: translateX(0);
    }
    to {
        opacity: 1;
        transform: translateX(100%);
    }
}



