/* PC、スマホ共通スタイル */
.more-link {
    position: relative;
    display: inline-block;
    padding-left: 20px; /* アイコンのためのスペースを確保 */
    text-decoration: none;
    color: #000; /* リンクの色 */
}

.more-link::before {
    content: "\f105"; /* Font Awesomeのアイコンコード（例：右矢印） */
    font-family: "Font Awesome 6 Free"; /* Font Awesomeのフォントファミリー */
    font-weight: 900; /* Font Awesomeアイコンのスタイルを指定 */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); /* 縦方向の中央揃え */
    font-size: 16px; /* アイコンのサイズ */
    color: #000; /* アイコンの色 */
}
/*================
 PC用のスタイル
=================*/
@media screen and (min-width: 768px) {
    /* 横幅設定 */
    body {
        max-width: 1080px;
        min-width: 900px;
        margin: 0 auto 0 auto;
        background-color: #f8f3eb;
    }

    /* ヘッダー */
    header {
        display: flex;
        justify-content: space-between;
    }

    /* ナビゲーションのレイアウト */
    #nav-pc {
        font-size: 14px;
        padding-top: 15px;
        padding-right: 15px;
    }

    /* ナビゲーションのリンクの装飾設定 */
    #nav-pc > a {
        text-decoration: none;
        margin-left: 20px;
    }
    #nav-pc > a:link {
        color: #4E342E;
    }
    #nav-pc > a:visited {
        color: #4E342E;
    }
    #nav-pc > a:hover {
        color: #4E342E;
        text-decoration: underline;
    }
    #nav-pc > a:active {
        color: #4E342E;
    }

    /* スマホ用ナビを非表示 */
    #nav-sp,
    #menu-sp {
        display: none;
    }

    /* メインビジュアル*/
    #main-visual {
        position: relative;
        height: 700px;
    }
    #main-message {
        display: none;
        /*display: flex;*/
        position: absolute;
        /*background-color: #8B5E3C;*/
        background-color:#EFEFEF;
        /*color: #F7F2ED;*/
        color: #000;
        /*border-radius: 10px;*/
        /*height: 80%;*/
        height: 8rem;
        width: 100%;
        z-index: 11;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        opacity: 0.8;
        text-align:center;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;        
    }

    #main-message span {
        display: block;
        /*line-height: 5rem;*/
        /*font-size: 2em;*/
        font-size: 4em;
        text-align: center;        
        /*font-weight: bold;*/
    }

    #main-visual > img {
        width: 100%;
        height:700px;
        position: absolute;
        top: 0;
        z-index: 10;
        opacity: 0.8;
    }
    #claim {
        margin: 80px 0 10px 0;
    }
    
    #claim-message span {
        display: block;
        line-height: 5rem;
        font-size: 2em;
        text-align: center;
    }
    /*見出し*/
    h2 {
        margin: 40px 0 0 0;
    }

    h2::after {
        content: url("images/line.png");
        margin-left: 10px;
    }

    h3 {
        font-size: 27px;
    }

    /* 活動紹介 */
    #activity {
        background-color: #EFE5DC;
        margin: 80px 0 80px 0;
        padding: 10px 40px 10px 40px;
    }

    /* 外枠 */
    #activity > div {
        margin-top: 40px;
        display: flex;
    }

    /* 左のカラム */

    /* 右のカラム */

    /* 写真＋説明の枠 */

    #activity-top-img {
        justify-content: center; /* 横方向の中央寄せ */
        align-items: center; /* 縦方向の中央寄せ（オプション） */
    }

    #activity-top-img > div > img {
        /*width: 200px;*/
    }

    /* 写真*/

    /* 説明文の枠 */

    /* 説明文の英語 */

    /* 説明文の見出し */

    /* 説明文 */

    /* もっと見るボタン */
    #activity-more {
        /*margin: 0 auto -42px auto;*/
        justify-content: flex-end; /* コンテナ内の要素を右寄せ */
    }

    /* ABOUT US */
    #aboutus {
        margin: 80px auto 80px auto;
    }

    /* ３つの組織文化と写真を入れる枠 */
    #aboutus > div {
        display: flex;
    }

    /* 写真 */

    /* 3つの組織文化の表 */

    /* 番号 */

    /* 組織文化英語 */

    /* 組織文化日本語 */

    /* 説明文 */

    /* ビジョン */

    /* セクション内の外枠*/

    /*7つの行動指針の枠*/

    /*会社概要*/

    /* お問い合わせ */
    #contact {
        margin: 80px auto 80px auto;
    }

    /* 外枠 */

    /* 左列　見出し */
    /* 見出しのラベル */
    /* 必須 */
    /* テキストボックス */

    /* お問い合わせ内容のテキストエリア */

    /* 個人情報の取り扱い */

    .polaroid {
        max-width: 300px; /* ポラロイドの幅 */
        padding: 10px;
        background: white;
        box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
        margin: 20px;
        display: inline-block;
        text-align: center;
        font-family: 'Arial', sans-serif;
    }
    
    .polaroid img {
        width: 100%;
        height: auto;
        display: block;
    }    
    .caption {
        padding: 10px 0 5px 0;
        font-size: 14px;
        color: #555;
        word-wrap: break-word; /* テキストの改行を有効にする */
        white-space: normal; /* テキストを自動改行させる */        
    }
}

/*====================
 スマートフォン用のスタイル
=====================*/
@media screen and (max-width: 767px) {
    /* ヘッダー */
    header {
        height: 48px;
    }
    /* メインビジュアル */
    #main-visual {
        position: relative;
        /*height: 200px;*/
        width: 100%;
        overflow: hidden;
    }
    #main-message {
        display: none;
        /*display: flex;*/
        position: absolute;
        /*background-color: #8B5E3C;*/
        background-color:#EFEFEF;
        /*color: #F7F2ED;*/
        color: #000;
        /*border-radius: 10px;*/
        /*height: 80%;*/
        height: 3rem;
        width: 100%;
        z-index: 11;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        opacity: 0.8;
        text-align:center;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;        
    }

    #main-visual > img {
        width: 100%;
        height: 200px
        object-fit: contain; 
        /*border-radius: 476px 0 0 0;*/
/*
        z-index: 10;
        position: absolute;
        top: 0;
        left: 0;
*/
    }
    #main-message span {
        display: block;
        /*line-height: 5rem;*/
        /*font-size: 2em;*/
        font-size: 1.2em;
        text-align: center; 
        letter-spacing: 0.3rem;
        /*font-weight: bold;*/
    }
    #claim {
        margin: 20px 0 10px 0;
    }
    
    #claim-message span {
        display: block;
        line-height: 3rem;
        font-size: 1.2em;
        text-align: center;
    }
    /*見出し*/
    h2::after {
        /*content: url("images/line.png");*/
        margin-left: 10px;
    }

    h3 {
        font-size: 24px;
        margin: 10px 0 0 0;
    }

    /* ミッション */

    /* 活動紹介 */
    #activity {
        background-color: #EFE5DC;
        padding-top: 10px;
    }

    #activity h2,
    #activity h3 {
        margin-left: 20px;
    }
    /* 外枠 */
    /* 左右のカラム　スマホでは縦並び */

    /* 写真＋説明の枠 */

    /* 説明文の枠 */

    /* 写真*/
    /* もっと見るボタン */
    #activity-more {
        /*margin: 0 auto -42px auto;*/
        text-align: right; /* コンテナ内の要素を右寄せ */
    }
    /*
    #activity-more > img {
        margin: 0 0 -42px 20px;
    }
    */
    #activity-top-img > div{
        display: none;
        text-align: center;
    }
    #activity-top-img div img{
        width: 100%;
    }    
    #activity-top-img div:first-child{
        display: block;
    }
    .polaroid {
        width: 80%; /*ポラロイドの幅 */
        padding: 10px;
        background: white;
        box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
        margin: 20px;
        display: inline-block;
        text-align: center;
        font-family: 'Arial', sans-serif;
    }
    
    .polaroid img {
        width: 100%;
        height: auto;
        display: block;
    }    
    .caption {
        padding: 10px 0 5px 0;
        font-size: 14px;
        color: #555;
        word-wrap: break-word; /* テキストの改行を有効にする */
        white-space: normal; /* テキストを自動改行させる */        
        text-align: left;
    }

    /* ビジョン */

    /*会社概要*/

    /* お問い合わせ */
    #contact {
        /*margin: 80px 20px 80px 20px;*/
    }

    #contact > h3 {
        margin-bottom: 20px;
    }
}
