@charset "UTF-8";

html {
    font-size: 100%;
}

body {
    background-color: #f0f0f0;
    color: #000;
    font-size: 0.875rem;
}

a {
    color: #000;
    font-size: 0.875rem;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

li {
    list-style: none;
}

.logo {
    width: 100px;
    line-height: 1px;
    margin-right: 60px;
}

.logo a {
    display: block;
}



/*
横幅を設定するための共通クラス
*/
.wrapper {
    width: 100%;
    max-width: 1032px;
    padding: 0 16px;
    margin: 0 auto;
}
/*===============================
 link-btn-small
 ================================*/
.link-btn-small-area{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}
a.link-btn-small{
    text-decoration: none;
    color: #333;
    font-size: 0.8rem;
    font-weight: bold;
    background: transparent;
    
    text-align: center;
    
    border: 2px solid #333;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 10px 50px;
    overflow: hidden;
    transition: .3s;
}
a.link-btn-small:before{
    content: "";
    width: 120%;
    height: 200%;
    position: absolute;
    top: -50%;
    right: 0;
    z-index: -1;
    background: #333;
    border-radius: 0 100% 100% 0;
    transform: translateX(-100%);
    transition: transform ease .3s;
}
a.link-btn-small:hover{
    color: #fff;
}
a.link-btn-small:hover:before{
    transform: translateX(10%);
}


/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 10;
    background-color: #f0f0f0;
}

#header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .inner ul {
    display: flex;
    align-items: center;
}

#header .inner li {
    margin-right: 30px;
}

#header .inner li:last-child {
    margin-right: 0;
}


/*===========================================
main-title
 =============================================*/
.page-title {
    font-weight: normal;
    line-height: 1;
    margin-bottom: 10px;
    background-color: #121212;
    color: #fff;
    height: 220px;
}

/*
疑似要素を使って下線を引く
*/
.page-title::after {
    content: "";
    width: 40px;
    height: 1px;
    background-color: #fff;
    display: block;
    margin: 0 auto;
}


.page-title .en {
    display: block;
    font-size: 2.25rem;
    letter-spacing: 0.3em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.page-title .ja {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 36px;
}
.pt{
    padding-top: 100px;
    text-align: center;
}

/*===========================================
breadcrumb
 =============================================*/
.breadcrumb{
    margin-left: 100px;
 }
.breadcrumb span{
    margin: 0 5px;
}


/*===========================================
content
 =============================================*/
 .container{
    height: 100vh;
    
 }
 .container p{
    font-size: 3rem;
    text-align: center;
    margin: 25% 0;
    align-items: center;
 }
/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
    background-color: #f0f0f0;
    padding-bottom: 20px;
}

#footer .flex {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    margin: 0 auto;
}

#footer .flex .logo {
    margin-right: 0;
}

#footer .copyright {
    font-size: 0.625rem;
    text-align: center;
}