@charset "UTF-8";

/* 基本フォントの設定（pタグ本文のみzenkakuゴシック体を使用 */
/* フォントサイズの相対指定 */
html{
    font-size: clamp(14px, 1vw+1rem, 20px);
}
h1{
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-shadow: -1px -1px 1px #000000, 1px 1px #ffffff;
}
h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  text-shadow: -1px -1px 1px #000000, 1px 1px #ffffff;
}
h3 {
  font-size: clamp(1.3rem, 3vw, 3.5rem);
  text-shadow: -1px -1px 1px #000000, 1px 1px #ffffff;
}

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}
dt{
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: bold;
}
dd{
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}
a {
  font-size: clamp(1.3rem, 3vw, 3.5rem);
  text-decoration: none;
}
li {
  font-size: clamp(1.3rem, 3vw, 3.5rem);
  text-decoration: none;
  list-style: none;
}
small {
  font-size: clamp(0.875rem, 1vw, 1.125rem);
}
button{
    font-size: clamp(.8rem, 1vw, 2rem);
}
/* 基本フォントの設定 */

#bodyforFont{
    max-width: 100vw;
    font-family:'Caveat','Hina Mincho',sans-serif;
    font-weight: 400;
    font-style: normal;
    color:var(--text-color)
}
/* 白くしたいとこ */
.white{
  color: var(--white);
}
/* 初期定義 */
:root
{
    /* 基本カラー */
    --main-color: #DD5C4F;
    --sub-color1: #4A5D73;
    --sub-color2:#FFD7D3;
    --base-color:#F5F3F0;
    --text-color:#072f5d;
    --black:#333333;
    --white:#fff;
    /* グラデーション */
        /* and more ボタン用 */
    --gradient1: linear-gradient(180deg, #fff 0%, #ffb17b 100%);
        /* and more ボタン押下用 */
    --gradient2: linear-gradient(180deg, #fad06d 50%, #FFb17b 100%);
        /* タグ付箋風 */
    --gradient3: linear-gradient(90deg, #fad06d 50%, #fff 100%);
    /* エフェクト */
        /* 左後方への影 */
    --effect1:-0.1rem 0 o.1rem rgba(0, 0, 0, 0.10);
        /* 膨らみ用インナー */
    --effect2:0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.25),
    -0.1rem -0.1rem 0.4rem rgba(0, 0, 0, 0.25);
        /*凹み用インナー*/
    --effect3:-0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.25),
    4px -8px 8px rgba(0, 0, 0, 0.25);
}

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

/* 帯セクションページタイトル */
.belt-section-title{
    width: 100%;
    height: auto;
    margin: 2rem auto 0 auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background-color: var(--base-color);
}

/* ヘッダー */
/* PC */
@media screen and (min-width: 678px) {

    main{
        margin-top: 7rem;
    }
    #header{
        position: fixed;
        top: 0;
        left: 0;
        background-color:var(--white)opacity(0.8);
        width: 100svw;
        height: 8svh;
        margin-top: 1rem;
        padding: 1rem;
    }
    /* ロゴとナビの箱 */
    .header-box{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    /* ロゴ */
    #header-logo>a>img{
        max-width: 8vw;
        aspect-ratio: 4/3;
        height: auto;
    }
    /* ロゴをクリックするとトップに行くためのリンク */
    .header-logo a{
        text-decoration: none;
    }
    /* PC表示の間開閉ボタンを隠しておく */
    .g-navbtn{
        position: fixed;
        top: 10px;
        right: 10px;
        display: none;
    }
    /* グローバルナビゲーション */
    .header-nav{
        width: 100vw;
        height: fit-content;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }
    /* ナビのリスト横並びにするためのフレックス設定 */
    .header-nav>ul{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
        list-style: none;
    }
    /* ナビのリストの調整 */
    .header-nav>ul>li {
    width: auto;
    line-height: auto;
    text-align: center;
    list-style: none;
    padding: 0.5rem;
    margin: 0 0.5rem;
    }
    .header-nav>ul>li:hover{
        color: var(--main-color);
    }
    /* 最後の要素以外のマージンライトを開ける */
    .header-nav ul li:not(:last-child) {
    margin-right: .5rem;
    }
}

/* sp状態 */
@media screen and (max-width: 677px) {
    main{margin-top: 0;}
    /* 全体の背景を白に */
    *{
        background-color: var(--white-color);;
    }
    /* logoサイズ */
    #header-logo>a>img{
        margin: 2rem 1rem;
        width: auto;
        height:3rem;
    }
    /* ナブメニューを上に隠しておく */
    .header-nav{
        display: none;
    }
    /*　is-nav-openクラスをjsで付与するとナブメニューが出てくる */
    .is-nav-open {
        display: block;
        background-color: var(--white);
        position: fixed;
        width: 100vw;
        height: 100vh;
        left: 0;
        top: 0;
    }
    /* ナブメニュー開閉ボタンを右上に固定して大きさなどを調整 */
    .g-navbtn {
    position: fixed;
    top: 2rem;
    right: 3rem;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    z-index: 3;
    }
    /* ナブメニューをページいっぱいに広げて固定 */
    #nav-menu{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: var(--white);
    text-align: center;
    z-index: 2;
    }
    /* G-navmenuを縦並びに配置 */
    .header-nav ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-grow: 1;
    flex-basis: 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0;
    align-items: center;
    }
    /* リストの感覚調整 */
    .header-nav>ul>li {
        width: auto;
        line-height: 2rem;
        text-align: center;
        list-style: none;
        padding: 1rem;
        margin-top: 3rem;
        }
    /* リスト配置の調整 */
    .header-nav>ul>li>a {
        text-decoration: none;
        line-height: 2rem;
        margin-top: 2rem;
        position: relative;
        }
    /* これのつけ外しで表示非表示を制御 */
    .hidden-block{
        display: none;
    }
/* header ここまで */
/* セクションタイトルのマージン設定 */
    .belt-section-title{
        margin: 0;
    }
}
/* footer */
/* footer 「Contact」*/
#footer-title{
    font-size: 2rem;
}
/* footer全体 */
.footer {
    width: 100%;
    height: fit-content;
    margin: 2rem auto 0 auto;
    border-top: 1px none;
    text-align: center;
}
/* footerカード部分 */
#footercard{
    width: 70%;
    padding: 1rem;
    margin: 0 auto;
    display: block;
    justify-content: center;
    align-items: center;
    background-color: var(--text-color);
    border:.3rem solid var(--sub-color2);
}
/* footerカード内のテキスト */
#footercard *{
    color: var(--white);
    text-align: center;
}
/* footer-card内のアドレスとメールアイコンを横並び */
#footer-address{
    display: flex;
    justify-content: center;
    align-items: center;
}
/* メールアイコン */
#footer-address img{
    width: 1rem;
    height: 1rem;
    margin-right: .5rem;
    text-decoration: none;
    color: var(--white);
}
/* フッターカード下のコピーライト */
#footer-copyright {
    width: 50%;
    font-size: .8rem;
    color: var(--text-color);
    margin: 1rem auto 0 auto;
}
/* フッターここまで */

