:root{
    --baseBlack:#414a52;
    --baseGreen:#668B6d;
    --baseOrange: #b74129;
    --baseYellow: #ffcc00;
    --baseWhite: #ededed;
    --subColor:#798a99;
    --fontNotoSerifJa:"Noto Serif JP";
    --fontsJa: "Noto Sans JP";
    --fontsEn: "Noto Sans";
}
html{
    font-size: 100%;
    scroll-behavior: smooth;
}
.wrap{
    width: 96%;
    max-width: 1200px;
    margin: 0 auto;
}
a{
    color: var(--baseBlack);
}
.main_border{
    border-bottom: 1px solid var(--baseOrange);
}
.note-item-link{
    color: var(--baseOrange);
    text-decoration: underline;
}
.remarks-color{
    color: var(--baseOrange);
}
.page-title{
    font-size: 1.4rem;
    padding-left: 1rem;
    border-left: 10px solid var(--baseOrange);
    line-height: 2;
    margin: 3rem 0;
}
.section-title{
    padding-bottom: 2rem;
}
.section-title h2{
    font-size: 1.4rem;
    border-bottom: 1px solid var(--baseOrange);
    padding-bottom: 0.5rem;
    padding-left: 1rem;
}
.section-title h2:before{
    position: relative;
    top: 26px;
    left: -16px;
    content: "";
    display: block;
    border-left: 8px solid var(--baseOrange);
    height: 24px;
}
.section-title p{
    font-size: 0.85rem;
    line-height: 2;
    padding-left: 2rem;
}
.blinking{
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
.font-weight{
    font-weight: bold;
}
.fontcolor-g{
    color: var(--baseGreen);
}
.fontcolor-o{
    color: var(--baseOrange);
}
.fontcolor-y{
    color: var(--baseYellow);
}
/******************************/
/************************ mb **/
/******************************/
@media (max-width:1300px){

.notice{
    position: relative;
    top: 40px;
    left: -60%;
}
.notice p{
    color: var(--baseOrange);
    font-size: 3vw;
}

/** main **
******************************/
main{
    margin-top: 105px;
}

.page_title h2{
    display: flex;
    margin-bottom: 1rem;
}
.page_title_en,
.page_title_ja{
    display: block;
}
.page_title_en{
    font-size: 1.4rem
}
.page_title_en:after{
    content: "|";
    padding: 0 1rem;
}
.page_title_ja{
    font-size: 1rem;
    padding-top: 6px;
}
.page_title_note{
    line-height: 1.4;
    letter-spacing: 2px;
    font-size: 0.85rem;
}
/* hamburger */
#hamburger{
    position: fixed;
    top: 16px;
    right: 25px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 9999;
}
.inner_line{
    position: absolute;
    width: 40px;
    height: 1px;
    background: var(--baseBlack);
    transition: 0.5s;
}
.inner_text{
    position: absolute;
    color: var(--baseBlack);
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.5s;
}
#line1{
    top: 0;
}
#line2{
    top: 13.5px;
}
#line3{
    bottom: 0;
}
.line_1{
    transform: rotate(45deg);
    margin-top: 19.5px;
}
.line_2{
    opacity: 0;
}
.line_3{
    transform: rotate(-45deg);
    margin-bottom: 19.5px;
}
/* ボタン */
.btn a{
    display: inline-block;
    font-size: 0.75rem;
    border: 1px solid;
    padding: 1rem 3rem;
    border-color: var(--baseGreen);
    color: var(--baseGreen);
}
.btn a:after{
    position: relative;
    display: block;
    content: "";
    top: -5px;
    left: 70px;
    width: 24px;
    height: 1px;
    background: var(--baseGreen);
    transition: 0.5s;
}
.btn a:hover:after{
    transform: translateX(30px);
}

/* バナー */
.banner-area a{
    display: flex;
    justify-content: center;
    width: 90%;
    height: 100px;
    align-items: center;
    margin: 30px auto;
    border: 3px solid var(--baseOrange);
}
.banner-img{
    width: 300px;
    padding: 0.5rem;
}
.banner-img img{
    width: 100%;
    height: auto;
}
.banner-caption{
    width: 300px;
    padding: 0.5rem 1rem;
    line-height: 1.2;
    letter-spacing: 2px;
    color: var(--baseBlack);
}
.banner-caption h2{
    font-size: 1.0rem;
}
.banner-caption p{
    font-size: 0.75rem;
}
.banner-btn{
    width: 16px;
    height: 100%;
    background: var(--baseOrange);
}
.banner-area:hover a{
    border: 3px solid var(--baseGreen);
    transition: 0.4s;
}
.banner-area:hover .banner-btn{
    background: var(--baseGreen);
    transition: 0.5s;
}

/** header **
******************************/
header{
    position: fixed;
    width: 100%;
    height: 90px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}
.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
}
/* logo */
.logo-area{
    width: 160px;
    padding-top: 1.6rem;
}
.logo-area img{
    display: block;
    width: 60%;
    margin: 0 auto;
}
/* nav-area */
.nav-area{
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--baseWhite);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    scrollbar-width: none;
}
.nav-inner{
    display: flex;
    flex-direction: column;
}
.g-nav,
.u-nav{
    width: 90%;
    margin: 60px auto 0;
    font-size: 0.85rem;
}
nav{
    order: 1;
}
.u-nav{
    order: 2;
}
.g-nav-item,
.u-nav-item{
    line-height: 3;
    border-bottom: 1px solid var(--baseBlack);
}
.g-nav-item a,
.u-nav-item a{
    display: block;
    color: var(--baseBlack);
    padding: 0.5rem;
}
.u-nav-item:last-child{
    display: flex;
    justify-content: center;
    border-bottom: none;
}
.u-nav-item:last-child a{
    display: block;
    width: 26px;
    margin: 0.5rem 0.5rem 2rem;
}
.u-nav-item:last-child a img{
    display: block;
    width: 100%;
    height: auto;
}

/* top-contact */
.top-contact{
    position: fixed;
    top: 0;
    right: 100px;
    display: flex;
    width: 100px;
    height: 60px;
    flex-direction: column;
    background: var(--baseOrange);
    padding-top: 1rem;
}
.top-contact img{
    display: block;
    width: 20px;
    height: auto;
    margin: 0 auto;
}
.top-contact span{
    display: block;
    text-align: center;
    color: var(--baseWhite);
}
.top-contact:hover{
    background: var(--baseGreen);
    transition: 0.5s;
}
/*****/
.active{
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
}


/** footer **
******************************/
footer{
    background: var(--baseWhite);
    padding: 60px 0;
}
/*****/
#information-area{
    background: var(--baseOrange);
    padding: 60px 0;
}
.information-inner{
    display: flex;
    flex-direction: column;
    width: 90%;
}
.information-title{
    width: 100%;
    color: var(--baseWhite);
    line-height: 3;
    letter-spacing: 2px;
}
.information-title h2{
    font-size: 0.875rem;
    text-align: right;
}
.information-title h2:after{
    position: relative;
    content: "";
    display: block;
    right: 50%;
    width: 150%;
    height: 1px;
    background: var(--baseWhite);
}
.information-title p{
    font-size: 0.75rem;
    text-align: right;
}
/* form-note */
.form-note{
    font-size: 0.75rem;
}
.form-note p{
    text-align: left;
    line-height: 1.4;
    letter-spacing: 2px;
    padding-bottom: 1rem;
}
/* form */
.form-area{
    width: 100%;
}
.form-item{
    display: flex;
    margin: 0.5rem 0;
}
.form-item label{
    display: block;
    color: var(--baseWhite);
    width: 100px;
    letter-spacing: 1px;
}
textarea,
input[type="text"]{
    width: calc(100% - 100px);
    border: none;
    padding: 0.5rem;
}
textarea{
    height: 100px;
}
input[type="submit"]{
    display: block;
    margin-left: auto;
    width: calc(100% - 100px + 2px);
    padding: 0.5rem 0;
    border: none;
    font-size: 1rem;
    transition: 0.5s;
}
input[type="submit"]:hover{
    background: var(--baseGreen);
    color: var(--baseOrange);
}
/*****/
.footer-inner{
    display: flex;
    flex-direction: column;
    width: 90%;
    padding-top: 60px;
}
.footer-logo{
    width: 200px;
}
.footer-logo img{
    width: 60%;
}
.footer-nav{
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 0.75rem;
}
.footer-nav ul{
    padding: 0.5rem 1rem;
}
.footer-nav li{
    margin: 0.25rem;
}
.footer-nav a{
    display: block;
    padding: 0.5rem 1rem;
    color: var(--baseBlack);
}
.footer-nav-left{
    display: flex;
    flex-wrap: wrap;
}
.footer-nav-right{
    display: flex;
    flex-direction: column;
    margin-top: 60px;
}
/* copyright */
.copyright{
    padding-top: 60px;
}
.copyright small{
    display: block;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--baseBlack);
}
}

/******************************/
/************************ pc **/
/******************************/
@media (min-width:1300px){
body{
    color: var(--baseBlack);
    min-width: 1300px;
}
.notice p{
    color: var(--baseOrange);
    font-size: 1vw;

}
.mb-br{
    display: none;
}

.page_title h2{
    display: flex;
    margin-bottom: 1rem;
}
.page_title_en,
.page_title_ja{
    display: block;
}
.page_title_en{
    font-size: 1.4rem
}
.page_title_en:after{
    content: "|";
    padding: 0 1rem;
}
.page_title_ja{
    font-size: 1rem;
    padding-top: 6px;
}
.page_title_note{
    line-height: 1.4;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.wrap{
    width: 96%;
    max-width: 1200px;
    margin: 0 auto;
}
/* ボタン */
.btn a{
    display: inline-block;
    font-size: 0.75rem;
    border: 1px solid;
    padding: 1rem 3rem;
    border-color: var(--baseGreen);
    color: var(--baseGreen);
}
.btn a:after{
    position: relative;
    display: block;
    content: "";
    top: -5px;
    left: 70px;
    width: 24px;
    height: 1px;
    background: var(--baseGreen);
    transition: 0.5s;
}
.btn a:hover:after{
    transform: translateX(30px);
}
/* バナー */
.banner-area a{
    display: flex;
    justify-content: center;
    width: 600px;
    height: 100px;
    align-items: center;
    margin: 60px auto;
    border: 3px solid var(--baseOrange);
}
.banner-img{
    width: 300px;
    padding: 0.5rem;
}
.banner-img img{
    width: 100%;
    height: auto;
}
.banner-caption{
    width: 300px;
    padding: 0.5rem 1rem;
    line-height: 1.2;
    letter-spacing: 2px;
    color: var(--baseBlack);
}
.banner-caption h2{
    font-size: 1.0rem;
}
.banner-caption p{
    font-size: 0.75rem;
}
.banner-btn{
    width: 16px;
    height: 100%;
    background: var(--baseOrange);
}
.banner-area:hover a{
    border: 3px solid var(--baseGreen);
    transition: 0.4s;
}
.banner-area:hover .banner-btn{
    background: var(--baseGreen);
    transition: 0.5s;
}

#hamburger{
    display: none;
}

/** header **
******************************/
header{
    position: fixed;
    width: 100%;
    height: 105px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background: var(--baseWhite);
}
.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 105px;
}
/* logo */
.logo-area{
    width: 200px;
}
.logo-area img{
    display: block;
    width: 60%;
    margin: 0 auto;
}
/* nav-area */
.nav-area{
    margin-left: auto;
    margin-right: 1.5rem;
    letter-spacing: 2px;
}
.nav-area a{
    color: var(--baseBlack);
    font-size: 0.75rem;
    line-height: 2.4;
}
.u-nav{
    display: flex;
    justify-content: flex-end;
}

.u-nav li:not(:last-child):after{
    content: "|";
    color: var(--baseBlack);
    font-size: 0.75rem;
}
.u-nav a{
    padding: 0 0.5rem;
    margin: 0 0.5rem;
}
.u-nav-item:last-child{
    display: flex;
    padding-top: 9px;
    margin: 0 0.5rem;
}
.u-nav-item:last-child a{
    width: 12px;
    padding: 0 4px;
    margin: 0;
}
.u-nav-item:last-child img{
    width: 100%;
    height: auto;
}



.g-nav{
    display: flex;
}
.g-nav li{
    padding: 0 0.5rem;
}
.g-nav a{
    display: block;
    padding: 0 0.5rem;
}
.g-nav-item a:after{
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #B74129;
    transition: 0.5s;
    margin-top: 2px;
}
.g-nav-item a:hover:after{
    width: 100%;
}


/* top-contact */

.top-contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 105px;
    background: var(--baseOrange);
    padding: 0 3.5rem;
}
.top-contact img{
    display: block;
    width: 1.5rem;
    padding-top: 32px;
}
.top-contact span{
    display: block;
    color: var(--baseWhite);
    letter-spacing: 2px;
    padding: 4px 0;
    font-size: 12px;
}
.top-contact:hover{
    background: var(--baseGreen);
    transition: 0.5s;
}
/** main **
******************************/
main{
    margin-top: 105px;
}
/** footer **
******************************/
footer{
    background: var(--baseWhite);
    padding: 60px 0;
}
/*****/
#information-area{
    background: var(--baseOrange);
    padding: 60px 0;
}
.information-inner{
    display: flex;
    justify-content: space-between;
}
.information-title{
    width: 40%;
    color: var(--baseWhite);
    line-height: 3;
    letter-spacing: 2px;
}
.information-title h2{
    font-size: 0.875rem;
    text-align: right;
}
.information-title h2:after{
    position: relative;
    content: "";
    display: block;
    right: 50%;
    width: 150%;
    height: 1px;
    background: var(--baseWhite);
}
.information-title p{
    font-size: 0.75rem;
    text-align: right;
}
/* form-note */
.form-note{
    font-size: 0.75rem;
}
.form-note p{
    text-align: left;
    line-height: 1.4;
    letter-spacing: 2px;
    padding-bottom: 1rem;
}
/* form */
.form-area{
    width: 56%;
}
.form-item{
    display: flex;
    margin: 0.5rem 0;
}
.form-item label{
    display: block;
    color: var(--baseWhite);
    width: 100px;
    letter-spacing: 1px;
}
textarea,
input[type="text"]{
    width: calc(100% - 100px);
    border: none;
    padding: 0.5rem;
}
textarea{
    height: 100px;
}
input[type="submit"]{
    display: block;
    margin-left: auto;
    width: calc(100% - 100px + 2px);
    padding: 0.5rem 0;
    border: none;
    font-size: 1rem;
    transition: 0.5s;
}
input[type="submit"]:hover{
    background: var(--baseGreen);
    color: var(--baseOrange);
}
/*****/
.footer-inner{
    display: flex;
    justify-content: space-between;
    padding-top: 60px;
}
.footer-logo{
    width: 200px;
}
.footer-logo img{
    width: 60%;
}
.footer-nav{
    display: flex;
    width: calc(100% - 200px);
    justify-content: flex-end;
    font-size: 0.75rem;
}
.footer-nav ul{
    padding: 0.5rem 1rem;
}
.footer-nav li{
    margin: 0.25rem 1rem;
}
.footer-nav a{
    display: block;
    padding: 0.5rem 1rem;
    color: var(--baseBlack);
}
.footer-nav-left{
    display: flex;
    padding: 0 2rem;
}
.footer-nav-right{
    border-left: 1px solid var(--baseBlack);
}
/* copyright */
.copyright{
    padding-top: 60px;
}
.copyright small{
    display: block;
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--baseBlack);
}
}
