@charset "UTF-8";

/*******************************
fonts
*******************************/
@font-face {
font-family: "gothic01";
    src: url(/common/fonts/Yugothm.eot) format("eot"), url(/common/fonts/Yugothm.woff) format("woff");
}

@font-face {
font-family: "gothic02";
    src: url(/common/fonts/Yugothicbold.eot) format("eot"), url(/common/fonts/Yugothicbold.woff) format("woff");
}

@font-face {
font-family: "mincho01";
    src: url(/common/fonts/ShipporiMincho-TTF-Regular.eot) format("eot"), url(/common/fonts/ShipporiMincho-TTF-Regular.woff) format("woff");
}

@font-face {
font-family: "sansserif01";
    src: url(/common/fonts/Yellowtail-Regular.eot) format("eot"), url(/common/fonts/Yellowtail-Regular.woff) format("woff");
}

@font-face {
font-family: "sansserif02";
    src: url(/common/fonts/Yellowtail-Regular.eot) format("eot"), url(/common/fonts/Yellowtail-Regular.woff) format("woff");
}

body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    color: #333;
    word-break: break-all;
    line-height: 1.6;
    position: relative;
}

/*******************************
common
*******************************/
.sp {
    display: none;
}

img {
    vertical-align: top;
}

a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.6;
}

/*******************************
loading
*******************************/
#loading {
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,1.0);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20000;
}

#loading div {
	position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

#loading img {
	width: 200px;
	height: auto;
}

#loading div {
    overflow: hidden;
    position: relative;
}

#loading div:before {
    animation: img-wrap 2s cubic-bezier(.2, 0, .2, 0.5) infinite;
    background: #fff;
    bottom: 0;
    content: '';
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}

#loading02 {
	width: 100%;
	height: 100%;
    background: #073a71;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
    animation: img-bg 3s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes img-bg {
    80% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

/*******************************
header
*******************************/
#contents {
    overflow: hidden;
    background: #fff;
}

header {
    position: fixed;
    width: 100%;
    background: #fff;
    transition: all .2s ease-out;
    z-index: 101;
}

#header {
    width: 86%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 7%;
    position: relative;
}

header h1 {
    width: 9%;
}

header h1 a {
    display: block;
}

header h1 img {
    width: 100%;
    height: auto;
}

#header>p {
    font-size: 11px;
    position: absolute;
    top: 7px;
    right: 7%;
}

header nav {
    width: 85%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header nav ul {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
}

header nav ul li {
    height: 100%;
    display: table;
}

header nav ul li:not(:last-child) {
    margin-right: 3%;
}

header nav ul li a {
    font-size: 0.9rem;
    position: relative;
    display: block;
    white-space: nowrap;
}

header nav ul li a::after {
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #073a71;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .2s;
}

header nav ul li a:hover::after {
    transform: scale(1, 1);
}

.menu-trigger {
    display: none;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255,255,255,.95);
    width: 100%;
    z-index: 50;
}


/*******************************
#breadcrumbLis
*******************************/
#breadcrumbList {
}

#breadcrumbList ul {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 1em 0;
}

#breadcrumbList ul li {
    font-size: 0.875rem;
    padding: 0.25em 0;
}

#breadcrumbList ul li a::after {
    content: "＞";
    color: #999;
    margin: 0 0.5em;
}

/*******************************
overview
*******************************/
#overview {
    margin: 0 auto;
    padding: 4.5rem 0 5rem;
    background: #073a71;
}

#overview section {
    width: 1024px;
    color: #fff;
    margin: 0 auto;
}

#overview h2 {
    text-align: center;
    font-family: "gothic02";
    font-size: 2.4rem;
    letter-spacing: 0.25rem;
    margin: 0 0 1.5rem;
}

#overview h2 span {
    display: block;
    font-family: "sansserif01";
    font-size: 60%;
    margin-top: -0.6rem;
}

#overview .inner {
    display: flex;
    justify-content: space-between;
}

#overview .inner section {
    width: 48%;
    margin: 0;
}

#overview .inner section h3 {
    font-size: 1.08em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5em;
}

#overview .overviewBox01 iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/*******************************
form
*******************************/
#form {
    padding: 4rem 0 3.5rem;
    background: #fff;
}

#form h2 {
    text-align: center;
    font-family: "gothic02";
    font-size: 2.4rem;
    letter-spacing: 0.25rem;
    margin: 0 0 1.5rem;
    color: #073a71;
}

#form h2 span {
    display: block;
    font-family: "sansserif01";
    font-size: 60%;
    margin-top: -0.6rem;
}

#form .formBox01 {
    margin: 0 auto;
    width: 1024px;
}

#form .formBox01 table {
    width: 100%;
    border-collapse: collapse;
}

#form .formBox01 table th,
#form .formBox01 table td {
    border-top: 1px solid #fff;
    padding: 1.8rem 2.4rem;
    font-size: 1.08rem;
    text-align: left;
    vertical-align: middle;
}

#form .formBox01 table tr:nth-child(odd) th {
    width: 24%;
    background: #073a71;
    color: #fff;
}

#form .formBox01 table tr:nth-child(even) th {
    width: 24%;
    background: #0e2d59;
    color: #fff;
}

#form .formBox01 table tr:nth-child(odd) td {
    width: 80%;
    background: #f3f3f3;
}

#form .formBox01 table tr:nth-child(even) td {
    width: 80%;
    background: #f8f8f8;
}

#form .formBox01 table td input,
#form .formBox01 table td textarea {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    width: 96%;
    font-family: "gothic01", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 1rem;
    padding: 0.8rem;
    border: 1px solid #a9a9a9;
    background: #fff;
}

#form .formBox01 table td input:focus,
#form .formBox01 table td textarea:focus {
    border: 1px solid #073a71;
}

#form .formBox01 table td textarea {
    height: 10em;
}

#form .formBox01 .btnConfirm01 {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: none;
    margin: 3rem auto 0;
    background: #a69463;
    width: 22rem;
    color: #fff;
    font-family: "gothic01", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.4rem;
    padding: 1.3rem 0;
    display: block;
    line-height: 1;
    cursor: pointer;
    position: relative;
    z-index: 2;
    overflow: hidden;
    -webkit-transition: all .2s;
    transition: all .2s;
}

#form .formBox01 .btnConfirm01:hover {
    background-color: #a66563;
}

/*******************************
contact
*******************************/
#contact {
    position: fixed;
    top: 30%;
    right: 3.6%;
    width: 1.5rem;
    text-align: center;
    z-index: 100;
}

#contact a {
    padding: 3rem 1rem;
    background: #073a71;
    color: #fff;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: block;
    letter-spacing: 0.2rem;
    height: 12rem;
    width: 100%;
    text-align: center;
    position: relative;
    overflow:hidden;
}

#contact a strong {
    position: absolute;
    top: 5rem;
    left: 25%;
    z-index: 2;
}

#contact .effect{
    width: 100%;
    height: 100%;
    top: -100%;
    background: #000;
    position: absolute;
    transition: all .5s ease;
    z-index: 1;
    left: 0;
}

#contact:hover .effect{
    top:0;
}

/*******************************
footer
*******************************/
#toTop {
    display: none;
}

footer {
    padding: 0 0 3rem;
    margin: 3rem auto;
    background: #fff;
    text-align: center;
    font-size: 0.85rem;
}






