/*--------------------------------------------------------------
# header
--------------------------------------------------------------*/

.fixed-header {
    position: fixed;
    width: 100%;
    z-index: 998;
    /* padding: 30px 2.5% 40px; */
    padding: 30px 2.5%;
    width: 100%;
    /* background: linear-gradient(to bottom, #ffffffd7, #ffffffb2 20%, #ffffff00); */
    background: #fff;
}

.fixed-header .logo {
    width: 253px;
}

.fixed-header a {
    color: #3B4043;
    position: relative;
    transition: color .5s ease;
}

@media (any-hover: hover) {
    .fixed-header a:hover {
        opacity: 1;
        color: #D9A8B2;
    }
}

.fixed-header nav ul {
    font-size: 18px;
    gap: 2em;
}

.wrapper {
    width: min(72.92vw, 1400px);
    position: relative;
    margin: 0 auto;
    padding: 200px 0;
}

/*--------------------------------------------------------------
# main-visual
--------------------------------------------------------------*/
.main-visual-section .bg-area {
    background: url(../img/ABOUT/main-visual-about.png) center no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.main-visual-section .wrapper {
    height: 460px;
    position: relative;
}

h2.page-title {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 150px;
    letter-spacing: 10px;
    color: #fff;
    transform: translateY(62px);
    font-family: "FuturaCyrillicBook", sans-serif;
}

/*--------------------------------------------------------------
# TOP
--------------------------------------------------------------*/
.page-top-section {
    overflow: hidden;
}

.page-top-section .wrapper {
    padding: 0;
    position: relative;
}

.page-top-content {
    padding: 265px 0;
    width: 50%;
}

h3 {
    font-size: min(2.6vw, 32px);
    font-family: "FOT-TsukuMinPro-D", sans-serif;
    font-weight: 300;
    font-style: normal;
    text-align: left;
    margin-bottom: 30px;
}

h3::after {
    content: "";
    height: 1px;
    width: 2.5em;
    background-color: #D9A8B2;
    display: block;
    margin-top: 26px;
}

.page-top-content p {
    line-height: 2.3;
    text-align: justify;
}

.about .page-top-img {
    width: 60%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(22%, -50%);
}


/*--------------------------------------------------------------
# Profile
--------------------------------------------------------------*/
.profile-section {
    background-color: #FFF6F8;
}

.profile-section .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-section img {
    width: 43%;
}

.profile-content {
    width: 50%;
}

.profile-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.profile-content p:last-child {
    margin-bottom: 0;
}

p.profile-name {
    font-size: min(2.34vw, 22px);
    margin-bottom: 30px;
    line-height: 1.2;
}

.profile-name span {
    font-size: min(3.26vw, 36px);
    display: block;
}

/*--------------------------------------------------------------
# Access
--------------------------------------------------------------*/
.access-section .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.access-section h3 {
    margin-bottom: 50px;
}

.access-content {
    width: 43%;
}

table {
    width: 100%;
}

table tr td {
    padding: 1em;
    padding-left: 2em;
    border-bottom: 1px solid #C2C2C2;
    border-right: none;
    border-left: none;
    background: #fff;
    font-family: "zen-kaku-gothic-new", sans-serif;
    font-weight: 500;
    font-style: normal;
}



table tr td:first-child {
    color: #fff;
    text-align: center;
    background: #DEC8BF;
    border-bottom: solid 1px #fff;
    padding-left: 1em;
    text-wrap: nowrap;
}

.access-section table tr:first-child td:nth-child(2) {
    border-top: 1px solid #C2C2C2;
}

.map {
    width: 43%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.media-section {
    background: #FFF6F8;
    padding: 0;
}

h3.title-center {
    text-align: center;
    margin-bottom: 50px;
}

h3.title-center::after {
    display: none;
}

.pink-title {
    display: block;
    margin-bottom: 1em;
}

.pink-title::before {
    display: none;
}

.about .media-section .media-content-wrap {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4%;
}

.media-section .media-content-wrap .media-content {
    width: 22%;
    margin-bottom: 50px;
    background-color: #fff;
}

.media-content-wrap li a {
    color: #333333;
}

.media-content-wrap .media-title {
    display: inline-block;
}

.media-content-area {
    padding: 3em 1em;
}

.media-content-area p.date {
    margin: 0;
    margin-bottom: 1.8em;
}

.media-content-area p.media-title {
    color: #202020;
}

.media-section .btn-area {
    text-align: center;
}

.media-section .more-btn {
    margin-top: 30px;
}

.contact-content {
    padding: 75px 0;
}

@media screen and (max-width:1440px) {
    .page-top-content {
        padding: 200px 0;
    }
}



@media screen and (max-width:1024px) {
    .fixed-header .logo {
        width: 200px;
    }

    .fixed-header nav ul {
        gap: 1em;
    }

    .page-title {
        font-size: 100px;
        transform: translateY(41px);
    }

    .wrapper {
        width: 80%;
    }

}