/*
Theme name: Artemisra
Theme URI: http://artemisra.com
Author: Daisuke Kaweano
Auther URI:
Description:
Version: 1.0
*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: white;
    background-color: #B8C6BF;
}

@media screen and (max-width: 750px) {
    li {
        font-size: 12px;
    }
}
.content {
    max-width: 1080px;
    width: 100%;
    padding: 0 80px;
    margin: 0 auto;
    overflow: visible;
}
h2{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}
.link-box{
    display: flex;
    align-items: center;       /* 垂直中央揃え */
    text-decoration: none;     /* 下線を消す */
    color: white;
    padding: 12px 0px;
    transition: background-color 0.2s;
    width: fit-content;      
}
.icon{
    max-height: 120px;       /* 高さの上限を指定（固定はしない） */
    width: auto;             /* アスペクト比を維持して横幅自動調整 */
    max-width: 100%;         /* 画面からはみ出さないように */
    margin-right: 12px;
    flex-shrink: 0;          /* 無理に縮まないように */
}
.insta{
    padding: 0px 8px;
}

.hero-container {
    /* position: relative; */
    width: 100%;
    padding: 100px 0px;
    /* height: 2420px; */
    height: max-content;
    /* ここに画像URLを挿入 */
    background-size: cover;
    background-position: center;
}

.header {
    top: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
}

.site-name {
    font-size: 24px;
    font-weight: bold;
}

.c-header {
    position: fixed;
    z-index: 5;
    align-items: center;
    background-color: #47524C;
    /* カスタマイズしてください */
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    /* カスタマイズしてください */
    width: 100%;
    font-weight: 900;
}

.c-header__logo {
    color: white;
    /* カスタマイズしてください */
    min-width: 80px;
    /* カスタマイズしてください */
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

.hero-text {
    /* position: absolute; */
    height: 640px;
    top: 150px;
    left: 20px;
    z-index: 5;
}

.hero-text h1 {
    font-size: 64px;
    margin-bottom: 10px;
    padding: 100px 0;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    line-height: 0.75;
    /* 行間：やや詰める */
    letter-spacing: -2px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.hero-text blockquote {
    font-size: 20px;
    padding: 80px 0;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 750px) {
    .hero-text h1 {
        font-size: 40px;
    }

    .hero-text blockquote {
        font-size: 12px;
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.6);
    }

    .content {
        padding: 0 16px;
    }
}
