/*--------------------------

    main-color:#449EB4;

   common
   header
   footer

---------------------------*/

/*
* {
  outline: 1px solid red !important;
}


* * {
  outline: 1px solid blue !important;
}

* * * {
  outline: 1px solid green !important;
}
*/
/*--------------------------

   common

---------------------------*/

html {
    font-size: 62.5%;
    scroll-behavior: smooth;

}


.container {
    margin-left: 48px;
    margin-right: 48px;
    min-width: 300px;
}

h2 {
    font-size: 1.8rem;
    margin-top: 25px;
    margin-bottom: 25px;
    letter-spacing: 10px;
    text-align: center;
    align-items: center;
    padding-left: 5px;
}

img {
    max-width: 100%;
    /* 親要素より大きくならない */
    height: auto;
    /* 縦横比を保つ */
}

h3 {
    display: inline-block;
    position: relative;
    color: #333;
    font-size: 1.8rem;
    text-align: center;
}

h3::after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #ffb770;
}

.coming-soon-message {
    padding: 40px 20px;
    text-align: center;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 0.1em;
    /* 必要なら枠線や背景をつける */
    /* border: 1px dashed #ccc; */
}


/*--------------------------

   header

---------------------------*/

#information .container {
    margin: 0;
}

#information h1 img {
    width: 15%;
}

#information h1 {
    text-align: center;
    padding: 30px;
    background: #ffbc73;
    margin: 0;
}

#navigation {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
}

#navigation .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 100%;
    margin: auto;
    padding-top: 10px;
}

#navigation ul {
    display: flex;
    justify-content: space-around;
    width: 500px;
    list-style: none;
    padding: 20px;
    font-size: 1.2rem;
}

#navigation ul a {
    color: rgb(75, 75, 75);
    text-decoration: none;
}

#navigation ul li {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 500;
    color: rgb(75, 75, 75);
}

#navigation li img {
    width: 20px;
    text-align: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    #information h1 img {
        width: 35%;
    }
}

@media screen and (max-width: 768px) {

    #information h1 img {
        width: 50%;
    }

    #information h1 {
        text-align: center;
        padding: 15px;
        margin: 0;
    }

    #navigation .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
        margin: auto;
    }

    #navigation nav {
        width: 100%;
    }

    #navigation ul {
        width: 100%;
        padding: 0;
        font-size: 1rem;
    }
}

/*--------------------------

   footer

---------------------------*/

footer {
    width: 100%;
    background: #ffbc73;
    height: 250px;
    margin-top: 50px;
}

footer .footer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin: auto;
}

footer .buttons {
    width: 100%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

footer .items img {
    width: 20px;
    margin: 20px;
}


footer .item {
    width: 100% !important;
    /* 商品カードの150px設定を無視させる */
    max-width: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    /* 検証画面で見えていた 13.8px の制限を解除 */
    margin: 10px auto !important;
    background-color: #f56500;
    border-radius: 100vh;
    color: #fff;
}

footer .item a {
    display: block !important;
    /* インライン要素からブロック要素にしてパディングを効かせる */
    width: 100% !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 100vh;
}

footer .item a:hover {
    color: #fff !important;
    background: #f56500 !important;
}

footer p {
    color: white;
    font-size: 1rem;
}