@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url("../fontawesome/css/all.min.css");
/* 基本 =====================================*/
html {
    font-size: 62.5%;
}
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    line-height: 1.6;
    font-family: 'Noto Sans', sans-serif;
    text-align: center;
    -webkit-text-size-adjust: 100%;
    min-height: 100vh;
}
p {
    margin: 0 0 30px;
}
a {
    text-decoration: underline;
    color: var(--primary);
}
p a:hover, li a:hover {
    color: var(--primary);
}
strong {
    font-weight: bold;
    color: var(--primary);
}
h1 {
    font-size: 3.2rem;
}
h2 {
    font-size: 2.4rem;
}
h3 {
    font-size: 2.0rem;
}
h4 {
    font-size: 1.8rem;
}
h5 {
    font-size: 1.6rem;
}
hr {
    margin: 30px 0;
    border: 0;
    border-top: 1px dotted var(--gray);
}
img {
    max-width: 100%;
}
a img:hover {
    opacity: .8;
    transition: all 0.5s;
}
ul li {
    list-style-type: disc;
}
ol li {
    list-style: decimal;
}
header, main, section, footer {
    margin: 0;
    width: 100%;
    text-align: center;
}
/* ヘッダー部、ナビゲーション =====================================*/
.header {
    height: 120px;
    width: 100%;
    padding: 10px 30px 0;
    background: var(--dark);
    color: #fff;
    position: sticky;
    top: -10px;
    z-index: 10;
}
.header-inner {
    height: 110px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
}
.site-logo img {
    height: 110px;
}
.global-nav ul {
    display: flex;
    flex-flow: row nowrap;
    line-height: 2.5;
}
.global-nav li {
    list-style-type: none;
    padding: 0 12px;
    color: rgba(255 255 255 / .3);
}
.global-nav li a {
    color: #fff;
    display: block;
    position: relative;
    text-decoration: none;
}
.global-nav li a.selected {
    color: var(--secondary);
}
.global-nav li a::after {
    background-color: #fff;
    content: "";
    height: 4px;
    bottom: -2px;
    left: -10px;
    position: absolute;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: all .5s;
    width: calc(100% + 20px);
}
.global-nav li a.selected::after {
    background-color: var(--secondary);
}
.global-nav li a:hover::after, .global-nav li a.selected::after {
    transform: scale(1, 1);
}
.mobile-menu {
    display: none;
}
@media screen and (max-width: 960px) {
    .header {
        height: 80px;
        padding: 10px 15px 0;
        top: -15px;
    }
    .header-inner {
        height: 64px;
    }
    .site-logo img {
        height: 50px;
    }
    .global-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 30rem;
        z-index: 2;
    }
    .global-nav ul {
        margin: 0;
        padding: 72px 0 0;
        background: var(--primary);
        flex-direction: column;
    }
    .global-nav li {
        padding: 10px 15px;
        border-top: 1px solid #fff;
        background: transparent;
        color: rgb(255 255 255 / 0.2);
    }
    .global-nav li a, .global-nav li a.selected {
        display: block;
        padding: 10px 15px;
        margin: -10px -15px -11px;
        border-bottom: 1px solid #fff;
        background: transparent;
        color: #fff;
    }
    .global-nav li a::after {
        background: none;
    }
    .global-nav li a.selected::after {
        background: none;
    }
    .global-nav li a:hover {
        color: var(--dark);
        transition: all 0.5s;
        text-decoration: none;
        background: var(--secondary);
    }
    .global-nav li a.selected {
        color: var(--dark);
        transition: all 0.5s;
        text-decoration: none;
        border-bottom: 1px solid #fff;
        background: var(--secondary);
    }
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0px;
        right: 0px;
        width: 64px;
        height: 64px;
        background: var(--primary);
        opacity: .8;
        z-index: 10;
    }
    .mobile-menu:hover {
        opacity: 1;
        transition: all 0.5s;
    }
    .mobile-menu span {
        display: inline-block;
        -webkit-transition: all .4s;
        transition: all .4s;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 50%;
        height: 3px;
        background-color: #fff;
    }
    .mobile-menu span:nth-of-type(1) {
        top: 21px;
    }
    .mobile-menu span:nth-of-type(2) {
        top: 30px;
    }
    .mobile-menu span:nth-of-type(3) {
        top: 39px;
    }
    .mobile-menu.active span:nth-of-type(1) {
        -webkit-transform: translateY(9px) rotate(-45deg);
        -ms-transform: translateY(9px) rotate(-45deg);
        transform: translateY(9px) rotate(-45deg);
    }
    .mobile-menu.active span:nth-of-type(2) {
        opacity: 0;
    }
    .mobile-menu.active span:nth-of-type(3) {
        -webkit-transform: translateY(-9px) rotate(45deg);
        -ms-transform: translateY(-9px) rotate(45deg);
        transform: translateY(-9px) rotate(45deg);
    }
    .toggle-trigger::after, .toggle-trigger.selected::after {
        content: "";
        margin: 0;
    }
}
/* メイン部 =====================================*/
.main {
    background: #fff;
}
.section {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-bottom: 30px;
}
.wrap {
    max-width: 960px; /* 共通のコンテンツ幅 */
    margin: 50px auto;
    padding: 0 30px;
    text-align: left;
}
.col-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: no-wrap;
    gap: 30px;
}
.col30 {
    width: 30%;
}
.col40 {
    width: 40%;
}
.col50 {
    width: 50%;
}
.col60 {
    width: 60%;
}
.col70 {
    width: 70%;
}
@media screen and (max-width: 960px) {
    .wrap {
        padding: 0 calc(100vw * 30 / 960);
    }
    .col-wrap {
        display: block;
    }
    .col30, .col40, .col50, .col60, .col70 {
        width: 100%;
    }
}
/* フッター部 =====================================*/
.footer {
    background: var(--dark);
    border-top: 5px solid var(--secondary);
}
.footer-inner {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 30px;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
}
.footer-inner a {
    color: #fff;
}
.footer-inner a:hover {
    color: var(--secondary);
    transition: all 0.5s;
}
.footer-inner p {
    font-size: 1.2rem;
    margin: 0;
}
.footer-nav ul {
    margin: 0 0 30px;
    padding: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 15px;
}
.footer-nav li {
    color: var(--gray);
    line-height: 1;
    list-style-type: none;
}
.footer-nav li a {
    color: #fff;
    text-decoration: none;
}
.footer-logo {
    width: 32px;
    margin: 10px auto;
    fill: #fff;
}
@media screen and (max-width: 960px) {
    .footer-inner {
        padding: 0 0 30px;
    }
    .footer-nav ul {
        width: 100%;
        margin: 0 0 30px;
        padding: 0;
        display: flex;
        flex-flow: column nowrap;
        justify-content: center;
        gap: 0;
    }
    .footer-nav li {
        border-bottom: 1px solid #fff;
        line-height: 3;
        background: var(--dark);
    }
    .footer-nav li a {
        display: block;
        border: none;
        text-decoration: none;
    }
    .footer-nav li a:hover {
        color: var(--dark);
        background: var(--secondary);
    }
}
/* トップに戻るボタン */
.floating-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
}
.scroll-top {
    border: none;
    border-radius: 50%;
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    opacity: .8;
    color: #fff;
    font-size: 3.6rem;
    text-align: center;
    padding: 0;
}
.scroll-top:focus {
    outline: 0;
}
.scroll-top:hover {
    opacity: 1;
    transition: all 0.5s;
}
.scroll-top-icon::after {
    font: var(--fa-font-solid);
    content: "\f077";
}
/* メイン部共通 =====================================*/
/*見出し類*/
.page-title-wrap {
    padding: 30px 10px;
    background: var(--dark);
    color: #fff;
}
.page-title {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}
.section-heading {
    font-size: 2.4rem;
    padding-top: 4rem;
    background: url("../../img/trace-star.svg") center top / 3rem no-repeat;
    text-align: center;
}
.section-subheading {
    font-size: 1.8rem;
    text-align: center;
}
.section-heading + .section-subheading {
    margin-top: -.5em;
}
.category-heading {
    padding-left: 1em;
    border-left: 5px solid var(--primary);
}
@media screen and (max-width: 960px) {
    .page-title {
        font-size: 2.8rem;
    }
}
/* メイン部固有 =====================================*/
/* オープニング画面 */
.opening-wrap {
    position: relative;
    margin: 0;
    padding: 0 0 120px;
    min-height: calc(100vh - 120px);
    width: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}
.opening-logo {
    width: 420px;
    max-width: 50%;
    position: absolute;
    top: 40%;
    transform: translate(0, -40%);
    opacity: .3;
}
.opening-title-logotype {
    width: 300px;
    max-width: 60%;
    margin: 0 auto;
}
.opening-title-tagline {
    margin: 0 30px;
    font-size: 2rem;
}
.opening-scrolldown {
    width: 100%;
    position: absolute;
    bottom: 30px;
    line-height: 1;
    letter-spacing: .2em;
    z-index: 1;
}
.opening-scrolldown a {
    color: #fff;
    opacity: .7;
    text-decoration: none;
}
.opening-scrolldown a:hover {
    opacity: 1;
    transition: all 0.5s;
}
.opening-scrolldown-btn::after {
    font: var(--fa-font-solid);
    font-size: 3rem;
    line-height: 1.2em;
    content: "\f107";
    display: block;
}
@media screen and (max-width: 960px) {
    .opening-wrap {
        height: calc(100vh - 90px);
    }
}
/* フォトリスト（単行均等割）*/
.photo-list {
    margin: 50px;
    padding: 0;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: nowrap;
    gap: 30px;
}
.photo-list li {
    list-style-type: none;
    flex-grow: 1;
}
.photo-list li img.square-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
/* 下部グラデーションイメージ写真*/
.photo-bottom-grad {
    width: 100%;
    position: relative;
}
.photo-bottom-grad img {
    width: 100%;
    aspect-ratio: 5 / 1;
    object-fit: cover;
    display: block;
}
.photo-bottom-grad::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to top, rgba(255 255 255 / 0) 0, #fff);
}
@media screen and (max-width: 960px) {
    .photo-list {
        margin: 50px 0;
        gap: 10px;
    }
}
/* メンバーリスト */
.member-list {
    margin: 30px 0;
    padding: 0;
}
.member-list li {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: no-wrap;
    gap: 30px;
    margin-bottom: 50px;
}
.member-prof {
    width: 30%;
    z-index: 1;
}
.member-prof-img {
    width: 80%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-top: 5px;
    border: 5px solid var(--primary);
    border-radius: 50%;
}
.member-prof-name {
    margin: .5em 0 .2em;
}
.member-prof-title {
    font-size: 1.4rem;
    margin-bottom: 0;
}
.member-text {
    width: 70%;
    padding: 30px;
    background-origin: content-box;
    background: url("../../img/trace-mark-wh.svg") no-repeat;
    background-size: 180px;
    background-position: right 10px bottom 0px;
    background-color: var(--smoke);
}
.member-text p {
    margin-bottom: 0;
}
@media screen and (max-width: 960px) {
    .member-list li {
        flex-direction: column;
        gap: 0;
    }
    .member-prof {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        z-index: 1;
    }
    .member-prof-img {
        width: 240px;
        min-width: 160px;
        margin-right: 10px;
    }
    .member-prof-title {
        margin-bottom: 10px;
    }
    .member-text {
        width: 100%;
        margin-top: -30px;
        padding: 50px calc(100vw * 30 / 960) calc(100vw * 30 / 960);
    }
}
/* カードメニュー（2xn行 safari対策済*/
.card-menu {
    margin: 30px 0 -20px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
.card-menu li {
    width: calc((100% - 80px * 1) / 2);
    max-width: 260px;
    position: relative;
    text-align: center;
    margin: 0 80px 30px 0;
    list-style-type: none;
}
.card-menu li:nth-of-type(2n) {
    margin-right: 0;
}
.card-menu li a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.card-menu li:hover {
    opacity: .8;
    transition: all 0.5s;
}
.card-menu .card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
    box-shadow: 1px 1px 5px var(--gray);
}
.card-menu .card-text {
    display: block;
    padding: 1em .5em;
}
.card-menu .card-text h3 {
    margin: 0 0 .25em;
    font-size: 1.6rem;
    line-height: 1.2;
    color: var(--primary);
}
.card-menu .card-text p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.25;
}
@media screen and (max-width: 760px) {
    .card-menu li {
        width: calc((100% - 20px * 1) / 2);
        margin: 0 20px 20px 0;
    }
    .card-menu li:nth-of-type(2n) {
        margin-right: 0;
    }
    .card-menu-text h3 {
        font-size: 1.4rem;
    }
}
/* ニュース */
.news-list {
    padding: 0;
    border-top: 1px dotted var(--gray);
}
.news-list li {
    display: flex;
    flex-flow: row wrap;
    border-bottom: 1px dotted var(--gray);
    padding: .8em 1em;
}
/*.news-list li:nth-child(2n+1) {
    background: var(--smoke);
}*/
.news-list p {
    margin: 0;
}
.news-list .news-date {
    width: 160px;
    font-family: 'Noto Sans Mono', Monospace;
    color: var(--primary);
}
.news-list .news-text {
    width: calc(100% - 160px);
}
.news-control {
    text-align: center;
}
.news-control, .show-less {
    display: none;
}
.btn-border {
    border-radius: 0;
    border: 1px solid #dcdcdc;
    background: #fff;
    min-width: 240px;
    padding: 1em 4em;
    margin-top: 15px;
    letter-spacing: .1em;
    position: relative;
}
.btn-border:hover {
    background: var(--smoke);
    transition: all 0.5s;
}
.show-more::before {
    font: var(--fa-font-solid);
    content: '\f078';
    margin-right: 1em;
    top: 50%;
    transform: translateY(-50%);
}
.show-less::before {
    font: var(--fa-font-solid);
    content: '\f077';
    margin-right: 1em;
    top: 50%;
    transform: translateY(-50%);
}
@media screen and (max-width: 760px) {
    .news-list li {
        display: block;
    }
    .news-list .news-date {
        width: auto;
    }
    .news-list .news-text {
        width: auto;
    }
}
/* Publication リスト */
.pub-list {
    margin-bottom: 30px;
}
.pub-list li {
    margin-bottom: .5em;
}
/* コンタクトフォーム */
.form-wrap input, .form-wrap textarea {
    width: 100%;
    font-size: 2rem;
    padding: .5em;
    margin-bottom: 1em;
    border: 1px solid var(--gray);
    border-radius: .5em;
}
.form-wrap label {
    display: block;
    margin-bottom: .5em;
    font-weight: bold;
    color: var(--primary);
}
.required::before {
    content: "*";
    color: red;
    padding-right: .5em;
}
.required::after {
    content: "required";
    color: red;
    padding-left: 1em;
    font-weight: normal;
    font-style: italic;
    font-size: .9em;
}
.form-wrap input[type="text"] {
    max-width: 610px;
}
.form-wrap p + p {
    margin-top: -20px;
}
.form-btn-area {
    display: flex;
    justify-content: center;
}
.form-btn-area input, .form-btn {
    width: 260px;
    margin: 30px 10px;
    padding: 1em;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: #fff;
    background: var(--dark);
    border-radius: 2em;
    text-decoration: none;
}
.form-btn-area input:hover {
    background: var(--primary);
    transition: all 0.5s;
}
.form-btn a {
    color: #fff;
    text-decoration: none;
}
.formTable {
    width: inherit;
    min-width: 400px;
    max-width: 100%;
    text-align: left;
    margin: 0 auto 50px;
    border-collapse: collapse;
}
.formTable th, .formTable td {
    padding: .5em 1em;
    border: 1px solid var(--gray);
}
.formTable th {
    font-weight: bold;
}
.thankyou-logo {
    max-width: 260px;
    margin-bottom: 30px;
}
/* 汎用リンクボタン */
.link-btn {
    display: block;
    margin: 30px auto 50px;
    width: 100%;
    max-width: 500px;
}
.link-btn + .link-btn {
    margin-top: -35px;
}
.link-btn i {
    margin-right: .5em;
}
.link-btn a {
    display: block;
    border-radius: .5em;
    color: #fff;
    background: var(--dark);
    padding: 10px;
    letter-spacing: .1em;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
}
.link-btn a:hover {
    opacity: .6;
    transition: all .5s;
}
/* 記号付きリスト */
.arrow-list {
    position: relative;
}
.arrow-list li {
    list-style-type: none;
    lin-height: 1.6;
}
.arrow-list li::before {
    position: absolute;
    color: var(--primary);
    font: var(--fa-font-solid);
    content: "\f0da";
    left: 1.5em;
    margin-top: .4em
}
/* その他汎用クラス =====================================*/
.blue {
    color: var(--primary);
}
.lightblue {
    color: var(--secondary);
}
.darkred {
    color: var(--accent);
}
.red {
    color: red;
}
.bg-smoke {
    background-color: var(--smoke);
}
.bg-gray {
    background-color: var(--gray);
}
.bg-dark {
    background-color: var(--dark);
    color: #fff;
}
.small {
    font-size: 80%;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}
.center {
    text-align: center;
}
.bordered {
    border: 1px solid var(--gray);
}
.rounded {
    border-radius: 1em;
}
.with-padding {
    padding: 1em;
}
.star::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 18px;
    background-image: url("../../img/trace-star.svg");
    background-size: contain;
    margin: 0 0 0 0.25em;
}
.nowrap {
    white-space: nowrap;
}
.no-display {
    display: none;
}
.no-display-on-mobile, .display-on-pc {
    display: block;
}
.no-display-on-pc, .display-on-mobile {
    display: none;
}
@media screen and (max-width: 960px) {
    .no-display-on-mobile, .display-on-pc {
        display: none;
    }
    .no-display-on-pc, .display-on-mobile {
        display: block;
    }
}
/* 印刷用設定 */
@media print {
    .site-nav, .opening-scrolldown .floating-button, .footer {
        display: none;
    }
}