
/* -----------------------------------------------------
<目次>
1. パソコン画面
1-1. 全ページ共通の要素・クラスなど
1-2. 演出
1-3. layout，サイト全体のデザイン
1-4. HOMEページ

2. 携帯画面
2-1. 全ページ共通の要素・クラスなど
(2-2. 演出)
2-3. layout，サイト全体のデザイン
2-4. HOMEページ
------------------------------------------------------*/

/* -----------------------------------------------------
1. パソコン画面
------------------------------------------------------*/

/* -----------------------------------------------------
1-1.全ページ共通の要素・クラスなど
------------------------------------------------------*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color:#0B1941;
    letter-spacing: 0.1em;
	object-fit: cover;
}
html{
    min-height: 100%;
    position: relative;
}
body {
    font-family: "Noto Sans JP", sans-serif;
}

a{
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: #86B9C7;
}
/* a[target="_blank"]::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f08e";
    margin-left: 5px;
} */
h1 {
    font-size: 500%;
}
h2 {
    font-size: 250%;
}
.en h2 {
    font-size: 200%;
}
h3 {
    font-size: 175%;
    line-height: 2em;
}
.en h3 {
    font-size: 150%;
}
h4 {
    font-size: 120%;
    line-height: 2em;
}
p {
    font-size: 120%;
    letter-spacing: 0.03em;
    line-height: 1.9em;
}
img {
    width: 30vw;
    border-radius: 10px;
}

.section-container {
    width: 100%;
    padding: 0 15vw;
    margin: 5vw auto;
}
.section-container .line  {
    height: 2px;
    padding: 0 10vw;
    margin: 0vw auto;
    background-color: #23325A;
    justify-content: center;
}
.section-container .line-transparent  {
    height: 2px;
    padding: 0 10vw;
    margin: 0vw auto;
    background-color: transparent;
    justify-content: center;
}
.section-title {
    display: inline-block;
    margin-bottom: 1vw;
    color:#0C1A42;
}

.flex-container {
    display: flex;
    column-gap: 5%;
}

.block-container {
    display: block;
    column-gap: 5%;
}

.row-justify-end {
    display: flex;
    justify-content: flex-end;
}


/* 表 */
.table {
    display: table;
    width: 100%;
    text-align: center;
}
.row {
    display: table-row;
    /* border-bottom: 1px solid #23325A; */
}
.cell {
    display: table-cell;
    font-weight: bold;
    font-size: 125%;
    letter-spacing: 0.1em;
    width: 45vw;
    padding: 10px 5px;
    margin: 0;
    border: none;
    align-items: center;
    justify-content: center;
    text-align: left;
}
/* セルのタイトル */
.title-cell {
    font-size: 175%;
}

/* -----------------------------------------------------
1-2.演出
------------------------------------------------------*/
.blue{
    color: #3277AA;
}
/* スクロールするとふわっと表示される */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s; /*変化に1秒かける*/
}
/* スクロール促す */
.scrollDown{
    position: absolute;
    bottom: 80px;
    right: 50%;
    animation: scrollDown 1s ease-in-out infinite;
}
@keyframes scrollDown{
    0% {bottom: 2%}
    50% {bottom: 4%}
    100% {bottom: 2%}
}
.scrollDown span{
    color: #ffffcc;
    /* text-shadow: 0px 0px 5px #23325A; */
    position: absolute;
    left: -25px;
    bottom: 10px;
    font-size: 0.8em;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
}
.scrollDown::before{
    position: absolute;
    content: "";
    width: 1px;
    height: 20px;
    background-color: #ffffcc;
    bottom: 0;
    right: -6px;
    transform: skew(-30deg);
}
.scrollDown::after{
    position: absolute;
    content: "";
    width: 1px;
    height: 60px;
    background-color: #ffffcc;
    bottom: 0;
    right: 0;
}
/* グラーデーション付き背景色付きテキストボックス */
.color-gold {
    text-align: center;
    color: black;
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
}
.color-silver {
    text-align: center;
    color: black;
    background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
}

/* -----------------------------------------------------
1-3.layout，サイト全体のデザイン
------------------------------------------------------*/

.white-box {
    width: 100vw;
    height: 5vw;
    background-color: #ffffff;
}
.border{
    font-weight: bold;
}

header{
    position: fixed;/*上に固定*/
    width: 100%;
    height: 80px;
    background-color: #ddf0f5d9;
    color: rgb(221, 240, 245);
    align-items: center;
    z-index:10000;
}
header h3{
    font-size: 175%;
    font-weight: bold;
    list-style: none;
}
.header-container {
    height: 100%;
    margin: 0 10vw;/*画面の両端を横幅の10%ずつ空ける*/
    display: flex;
    align-items: center;/*上下を真ん中に揃える*/
    justify-content: space-between;/*要素同士の感覚空ける*/
}
#header-logo {
    height: 70px;
}
#header-logo img{
    /* padding: 10px 0; */
    margin-top: 10px;
    width: auto;
    height: 60px;
}

.box-right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-menu-nav {
    margin: 0 auto;
}

.header-menu-lists {/*.header-menu-navのulタグ*/
    width: 50vw;
    font-size: 110%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
}
.menu-list{
    position: relative;
    list-style: none;
}

.header-menu-nav li { /*メニューバーliとドロップダウンメニューli*/
    padding: 0 0.7vw;
    margin: 0;
    line-height: 2em;
}
/* ドロップダウンメニュー */
.menu-list-dropdown ul{
    display: block;
}
.menu-list-dropdown li{
    list-style: none;
}


/* メニューバーホバー時 */
.menu-list:hover .menu-list-dropdown {
    display: block;/*Gナビメニューにホバーしたら表示*/
    visibility: visible;/*Gナビメニューにホバーしたら表示*/
    opacity: 1;/*不透明度1*/
}
/* ドロップダウンメニュー */
.menu-list-dropdown {
    display: block;
    font-size: 80%;
    background-color: #ddf0f5d9;
    visibility: hidden;/*デフォルトでは非表示の状態にしておく*/
    opacity: 0;/*不透明度0*/
    transition: all .3s;/*表示の変化を0.3秒に指定*/
    width: 15vw;
    margin-top: 19px;
    padding: 0px 10px 15px 10px;
    text-align: center;
    align-items: center;
    position: absolute;
    /* top: 4vw; */
  left: 50%; /* ←ここ！ */
  transform: translateX(-50%); /* ←ここ！ */
}
.en .wide-menu .menu-list-dropdown, .ja .wide-menu .menu-list-dropdown{
    width: 25vw;
}

/* 言語変換 */
.header-language a{
    font-size: 90%;
    padding: 15px 3px;
}
.header-language {
    display: flex;
    text-align: baseline;
    align-items: center;
}


/* ハンバーガーボタンのスタイリング */
.header-hamburger{
    width: 50px;
    height: 100px;
    position: relative;
    appearance: none;
    border: 0;
    padding: 0;
    margin: 0 0 0 auto;
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;

    /* position: fixed;
    margin: 0vw 0vw 0vw 75vw;
    display: flex;
    justify-content: flex-end;
    align-items: center; */
}

  /* メニューボタンのスタイリング */
  .header-hamburger span,
  .header-hamburger span::after,
  .header-hamburger span::before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #23325A;
    transition: all 0.5s;
  }
  .header-hamburger span::before {
    top: -15px;
  }
  .header-hamburger span::after {
    bottom: -15px;
  }
  .header-hamburger.open span {
    background-color: transparent;
  }
  .header-hamburger.open span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .header-hamburger.open span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
  
  /* メニューのスタイリング */
  .header-hamburger-nav {
    position: fixed;
    width: 25vw;
    top: 80px;
    right: -25vw;
    background-color: #ddf0f5d9;
    transition: all 0.5s;
    text-align: center;
    justify-content:space-around;
  }
  .header-hamburger-list {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    list-style: none;
    justify-content: center;
    margin-bottom: 20px;
  }
  .header-hamburger-item a {
    display: block;
    font-size: 100%;
    color: #23325A;
    text-decoration: none;
    padding: 0.5vw 1vw;
    margin: 0.5vw;
    text-transform: uppercase;
  }
  .header-hamburger-item a:hover {
    color: #86B9C7;
  }
  .header-hamburger-nav.open {
    right: 0;
  }

footer{
    position: absolute;
    font-size: 100%;
    letter-spacing: 0.1em;
/*  height: 150px; */
    width: 100%;
    padding: 0 0 20px 0;
    background-color: #DDF0F5;
}
.privacyPolicy footer{
    bottom: 0;
}
.footer-sns, .copyright, .footer-privacyPolicy{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0 0 0;
    flex-wrap: wrap;
}
.footer-sns-logo {
    height: 50px;
    widows: 100%;
    padding: 0 10px;
}
.sns-logo-font {
    font-size: 50px;
}
.footer-flex-container{
    display: flex;
    justify-content: center;
    column-gap: 5px;
}
/* .footer-cf-supporters */
.footer-cf-title {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 15px 0 0 0;
}
.footer-cf-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
    column-gap: 1em;
    margin: 1em 0 0 0;
    padding: 0;
}
.footer-cf-logo {
    display: block;
    padding: 5px;
    background-color: rgba(255,255,255,1);
    border-radius: 3px;
}
.cf-logo-30vw {
    width: 40vw;
}
.cf-logo-20vw {
    width: 30vw;
}
.footer-cf-name {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1em;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0 1em;
    padding: 1px;
}
.footer-cf-name p {
    font-size: 100%;
    min-width: 17em;
    margin: 0 1em;
    background-color: rgba(255,255,255,1);
}
/* .footer-privacyPolicy{
    margin: 0;
    padding: 0;
} */
.privacyPolicy a:hover{
    color: #86B9C7;
}

.detail-container{
    display: flex;
    text-align: center;
    justify-content: center;
    gap: 1%;
}
.title-container{
    display: flex;
    align-items: center;
}
.title-container p{
    padding-top: 2%;
    padding-bottom: 1%;
}
.sns-share-area {
    margin: 2em 0;
}
.sns-share-table {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 2em 0;
}
.sns-share-button {
    margin: 0 auto;
/*
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
*/
}

/* -----------------------------------------------------
1-4. HOMEページ 
------------------------------------------------------*/
.home-first{ /* 画像の切り替わり */
    width: 100vw;
    height: 100vh;
    /* 文字 */
    align-items: flex-end;
    font-weight: bold;
    /* 背景 */
    background-image: url(/img/memories/memory-2023/day3-goal-1.webp);
    background-position: center center;
    background-size: cover;
}
.home-first .text{
    margin: 10vw;
    /*背景色にグラデーションを指定*/
    background: linear-gradient(125deg, #f96161, #fff4cc);
    /* background: linear-gradient(125deg, #ba373c, #e15f4c, #ed7f24); */
    -webkit-background-clip: text; /* テキストで切り抜く */
    -webkit-text-fill-color: transparent; /* 切り抜いた部分は背景を表示 */

    filter:drop-shadow(0px 0px 2px #010100);
}
.home-first h4 {
    line-height: 1.7em;
}

.home-about img {
    margin-top: 1em;
    width: 25vw;
    height: 23vw;
}
.home-about h4 {
    margin-bottom: 1em;

}
.home-news iframe{
    padding-left: 3vw;
}
.home-contact p{
    letter-spacing: 0.1em;
    line-height: 2em;
}

.detail {
    background-color: #4D88B2;
    border-radius: 5px;
    color: #F7F5ED;
    display: inline-block;
    margin: 10px 0;
    padding: 8px 15px 8px 20px; /*上右下左*/
}

/* .detail a:hover {
    background-color: #86B9C7;
    border-radius: 5px;
    color: #F7F5ED;
    margin: 10px 0;
    padding: 5px 10px;
} */


@media (min-width: 1200px) {
    .sp {/* パソコン画面のみの表示 */
        display: none;
    }
}
/* -----------------------------------------------------
2. 携帯画面用
2-1. 全ページ共通の要素・クラスなど
2-2. 演出
2-3. layout，サイト全体のデザイン
2-4．HOMEページ
------------------------------------------------------*/
@media (max-width: 1200px) {
    .pc{
        display: none;
    }
    /* ABOUT */
    .home-about .flex-container{
        flex-direction: column; /*クラス内の並びを縦方向に*/
        row-gap: 5px; /*要素の行方向の感覚*/
    }
    .home-about img {
        margin-top: 1em;
        width: 100%;
        height: 20vw;
    }
    .header-language {
        padding-right: 5px;
    }

}
@media (max-width: 768px) {

/* -----------------------------------------------------
2-1. 全ページ共通の要素・クラスなど
------------------------------------------------------*/
    h1 {
        font-size: 300%;
    }
    h2 {
        font-size: 150%;
    }
    h3 {
        font-size: 110%;
    }
    h4 {
        font-size: 90%;
    }
    p {
        font-size: 90%;
    }

    img {
        width: 100%;
    }

    .section-container {
        padding: 0 5vw;
    }
    .section-container .line  {
        margin-top: 15vw;
        width: 100%;
    }

    .flex-container{
        display: flex;
        column-gap: 0;
        justify-content: center;

        flex-direction: column; /*クラス内の並びを縦方向に*/
        row-gap: 5px; /*要素の行方向の感覚*/
    }


    .cell {
        font-size: 95%;
        padding: 5px;
    }
    /* セルのタイトル */
    .title-cell {
        font-size: 100%;
    }

    .detail-container{
        flex-direction: column; /*クラス内の並びを縦方向に*/
        row-gap: 0;
        justify-content: center;
        margin-bottom: 5%;
    }
    .detail-container .detail{
        margin: 5px;
    }


/* -----------------------------------------------------
2-2. 演出
------------------------------------------------------*/
    /* スライダー */
    .slide-box {
        height: 85%;
    }
    .slide-title {
        font-size: 90%;
    }
    .slide-text {
        font-size: 75%;
    }

/* -----------------------------------------------------
2-3. layout，サイト全体のデザイン
------------------------------------------------------*/
   
    .white-box {
        height: 80px;
    }
    .header-container {
        height: 100%;
        margin: 0 15px;/*画面の両端を横幅の10%ずつ空ける*/
        display: flex;
        align-items: center;/*上下を真ん中に揃える*/
        justify-content: space-between;/*要素同士の感覚空ける*/
    }

    .header-hamburger-nav {
      width: 125px;
      right: -125px;
    }

/* -----------------------------------------------------
2-4. HOMEページ
------------------------------------------------------*/
    .home-first{ /* 画像の切り替わり */
        width: 100vw;
        height: 100vh;
        background-image: url(/img/memories/memory-2023/day3-goal-1.webp);
        background-position: center center;
        background-size: cover;

        display: flex;
        align-items: flex-end;
        overflow: hidden;
    }

    .home-first .text{
        filter:drop-shadow(0px 0px 3px #010100);
    }
    
    .home-first h4{
        font-size: 125%;

    }

    .home-news {
        object-fit: cover;
    }
    .home-news iframe{
        margin-left: 0vw;
    }

    .home-sponsor{
        object-fit: cover;
        justify-content: center;
    }

    .detail {
        background-color: #4D88B2;
        border-radius: 5px;
        color: #F7F5ED;
        display: inline-block;
        margin: 10px 0;
        padding: 5px 10px;
    }

}
