@charset "UTF-8";

/* CSS Information
---------------------------------------------------------------
File name:common.css
Summary:reset styles
Created:2022-04-10
--------------------------------------------------------------- */

/* Link */
/* ------------------------------------------------------------ */

a:link,
a:visited {
    color: #a50900;
    text-decoration: none;
}

a:hover,
a:active {
    color: #a50900;
    text-decoration: underline;
}

a, img {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.alpha:hover {
    filter: alpha(opacity=70);
    opacity: 0.7;
}

/* Font */
/* ------------------------------------------------------------ */

em {
    font-style: normal;
}

sup {
    font-size: 66%;
    vertical-align: top;
}

sub {
    font-size: 66%;
    vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */

.indent {
    text-indent: -1em;
    margin-left: 1em;
}

/* Clear */
/* ------------------------------------------------------------ */

.clfx:after {
    content: '';
    height: 0;
    clear: both;
    display: block;
    visibility: hidden;
}

/* HR */
/* ------------------------------------------------------------ */

hr {
    height: 1px;
    margin: 30px 0;
    padding: 0;
    display: block;
    border: 0;
    border-top: 1px #e6e6e6 solid;
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */

.pc_mode {
    display: none !important;
}

.sp_mode {
    display: inline !important;
}

/* Header */
/* ------------------------------------------------------------ */

header section#mainvisual {
    margin: 30px auto;
}

header section#mainvisual .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header section#mainvisual .inner h1 {
    text-align: center;
    display: block;
}

header section#mainvisual .inner h1 img:nth-of-type(1) {
    width: 39px;
}

header section#mainvisual .inner h1 img:nth-of-type(2) {
    width: 172px;
    margin-top: 10px;
    display: block;
}

header section#mainvisual .inner h2 {
    margin-top: 30px;
    padding: 0 4vw;
    text-align: center;
    line-height: 1.5;
    color: #B41D23;
}

header section#mainvisual figure {
    margin-top: 30px;
    width: 100%;
}

header section#mainvisual figcaption {
    margin-top: 15px;
    padding: 0 4vw;
    text-align: left;
    line-height: 1.5;
}

/* Global menu */
/* ------------------------------------------------------------ */

#nav_toggle {
    position: fixed;
    top: 30px;
    right: 4vw;
    height: 30px;
    cursor: pointer;
}

#nav_toggle > div {
    position: relative;
    width: 30px;
}

#nav_toggle span {
    width: 100%;
    height: 2px;
    left: 0;
    display: block;
    background: #B41D23;
    position: absolute;
    -webkit-transition: top .2s ease, -webkit-transform .3s ease-in-out;
    transition: top .2s ease, -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out, top .2s ease;
    transition: transform .3s ease-in-out, top .2s ease, -webkit-transform .3s ease-in-out;
}

#nav_toggle span:nth-child(1) {
    top: 0;
}

#nav_toggle span:nth-child(2) {
    top: 11px;
}

#nav_toggle span:nth-child(3) {
    top: 22px;
}

.open #nav_toggle span {
    background: #fff;
}

.open #nav_toggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.open #nav_toggle span:nth-child(2) {
    top: 11px;
    width: 0;
    left: 50%;
}

.open #nav_toggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav_toggle {
    z-index: 1000;
}

#gloval_nav {
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
	text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
	visibility: hidden;
    opacity: 0;
	z-index: 9;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

#gloval_nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    -webkit-transition: color .6s ease;
    transition: color .6s ease;
}

#gloval_nav a:hover {
    color: #666;
}

#gloval_nav dl {
    list-style: none;
}

#gloval_nav dl dt {
    width: 39px;
    margin: 0 auto 30px;
    filter: brightness(0) invert(1);
}

#gloval_nav dl dd {
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.03em;
    display: block;
}

#gloval_nav dl dd span {
    font-size: 18px;
    position: relative;
    display: block;
    margin: 10px 0 0;
    padding: 10px 0 0;
}

#gloval_nav dl dd span::before {
    content: "";
    background: #fff;
    height: 1px;
    width: 100px;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

#gloval_nav dl dd:hover span::before {
    background: #666;
}

#gloval_nav dl dd {
    margin: 20px 0 0;
    opacity: 0;
	transform: translateX(200px);
	transition: transform 0.3s ease, opacity 0.1s ease;
}

#gloval_nav dl dd:nth-of-type(1) {
    -webkit-transition-delay: .10s;
    transition-delay: .10s;
}

#gloval_nav dl dd:nth-of-type(2) {
    -webkit-transition-delay: .20s;
    transition-delay: .20s;
}

#gloval_nav dl dd:nth-of-type(3) {
    -webkit-transition-delay: .30s;
    transition-delay: .30s;
}

#gloval_nav dl dd:nth-of-type(4) {
    -webkit-transition-delay: .40s;
    transition-delay: .40s;
}

#gloval_nav dl dd:nth-of-type(5) {
    -webkit-transition-delay: .10s;
    transition-delay: .50s;
}

#gloval_nav dl dd:nth-of-type(6) {
    -webkit-transition-delay: .60s;
    transition-delay: .60s;
}

#gloval_nav dl dd:nth-of-type(7) {
    -webkit-transition-delay: 0.70s;
    transition-delay: 0.70s;
}

.open {
    /*overflow: hidden;*/
}

.open #gloval_nav {
    visibility: visible;
    opacity: 1;
}

.open #gloval_nav dd {
    opacity: 1;
	transform: translateX(0);
	transition: transform 0.5s ease, opacity 0.9s ease;
}

/* Contents */
/* ------------------------------------------------------------ */

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 0 95px;
}

main section {
    margin: auto;
}

main section .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main section figure {
    width: 100%;
}

main section figcaption {
    margin: -30px auto 15px;
    padding: 4vw;
    width: 60%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main section figcaption h2 {
    text-align: center;
    color: #A27F00;
}

main section figcaption span {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

main section figcaption p {
    line-height: 1.5;
    margin-top: 10px;
	text-align: center;
}

p.comment {
    line-height: 1.5;
}

main section#menu h2 {
    text-align: center;
}

main section#menu h2 img {
    width: 182px;
    display: block;
}

main section#menu h2 span {
    color: #A27F00;
    font-size: 24px;
    font-weight: bold;
    display: block;
}

main section#menu h3 {
    text-align: center;
    color: #A27F00;
    font-size: 20px;
    margin: 30px auto 5px;
}

main section#menu .dllist {
    width: 100%;
}

main section#menu .dllist dl {
	width: 100%;
    display: flex;
	justify-content: flex-start;
	align-items: stretch;
}

main section#menu .dllist dl dt {
	text-align: left;
    width: 100%;
	margin-top: 12px;
	display: block;
}

main section#menu .dllist dl dd {
    text-align: right;
    white-space: nowrap;
	margin: 10px 0 0 10px;
	display: block;
    flex-shrink: 0;
}

main section#menu .dllist dl dd:nth-of-type(2) {
	width: 5em;
}

main section#menu aside {
	margin-top: 15px;
    text-align: right;
}

/* Footer */
/* ------------------------------------------------------------ */
/* 
footer {
    text-align: center;
    margin: 30px auto;
	padding-bottom: 100px;
}

footer .inner {
    padding: 0 4vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer figure:nth-of-type(1) {
    width: 100%;
	margin: 10px auto 0;
}

footer figure:nth-of-type(2) {
    width: 60%;
    margin: 30px auto 0;
}

footer p.comment {
    margin-top: 30px;
    text-align: left;
}

footer p.tel {
    margin-top: 30px;
    color: #B41D23;
    font-size: 24px;
	margin-bottom: 30px;
}

footer p.tel span:nth-of-type(1) {
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
}

footer p.tel span:nth-of-type(2) {
    display: block;
    font-size: 15px;
    margin: 10px auto 0;
    border-bottom: 1px solid;
    width: 80px;
    font-weight: 500;
}

footer p.tel a[href^="tel:"] {
	pointer-events: auto;
	text-decoration: none;
}

footer address {
    margin-top: 20px;
    font-style: normal;
    line-height: 1.5;
}

footer iframe {
	margin: 30px 0;
}
*/
footer#FixedMenu {
    background-color: #d8dadc;
    width: 100%;
    height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
	position: fixed;
	bottom: 0;
}

footer#FixedMenu ul{
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer#FixedMenu ul li {
    width: 100%;
    margin: 0 25px;
	text-align: center;
}

footer#FixedMenu img {
    width: 60px;
    height: auto;
}

footer#FixedMenu p {
	margin-top: 5px;
    text-align: center;
}