/* ==============================
  base
============================== */
@import url("https://fonts.googleapis.com/css?family=EB+Garamond:400,400i");
@import url("https://fonts.googleapis.com/css2?family=Julee&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
body{
      font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

    margin: 0;
    scroll-behavior: smooth;
}
img{
    width: 100%;
    vertical-align: bottom;
}
p {
    margin: 0;
}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}:where([hidden]:not([hidden='until-found'])){display:none!important}:where(html){-webkit-text-size-adjust:none;tab-size:2}@media (prefers-reduced-motion:no-preference){:where(html:focus-within){scroll-behavior:smooth}}:where(body){line-height:1.5;font-family:system-ui,sans-serif;-webkit-font-smoothing:antialiased}:where(button){all:unset}:where(input,button,textarea,select){font:inherit;color:inherit}:where(textarea){resize:vertical;resize:block}:where(button,label,select,summary,[role='button'],[role='option']){cursor:pointer}:where(:disabled){cursor:not-allowed}:where(label:has(>input:disabled),label:has(+input:disabled)){cursor:not-allowed}:where(a){color:inherit;text-underline-offset:.2ex}:where(ul,ol){list-style:none}:where(img,svg,video,canvas,audio,iframe,embed,object){display:block}:where(img,picture,svg,video){max-inline-size:100%;block-size:auto}:where(p,h1,h2,h3,h4,h5,h6){overflow-wrap:break-word}:where(h1,h2,h3){line-height:calc(1em + 0.5rem);text-wrap:balance}:where(hr){border:none;border-block-start:1px solid;color:inherit;block-size:0;overflow:visible}:where(:focus-visible){outline:3px solid CanvasText;box-shadow:0 0 0 5px Canvas;outline-offset:1px}:where(:focus-visible,:target){scroll-margin-block:8vh}:where(.visually-hidden:not(:focus-within,:active)){clip-path:inset(50%)!important;height:1px!important;width:1px!important;overflow:hidden!important;position:absolute!important;white-space:nowrap!important;border:0!important}


#top {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  background-color: #fff;
  overflow: hidden;
}

/* ロゴ */
.top_logo img {
    width: 200px;
    margin: 1rem 0;
}

/* select_boxに背景画像を適用 */
.select_box {
  background: url('../img/top/top_img.jpg') center center / cover no-repeat;
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.select_box_ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    display: flex;
}

.select_box_ul li img {
    width: 220px;
    max-width: 80vw;
}
/* フッター情報 */
.top_info_dl {
  background-color: rgba(255,255,255,0.85);
  padding: 1rem 2rem;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.top_info_dt {
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.top_info_dd {
  font-size: 0.9rem;
  color: #333;
}

/*-- PC --*/
@media screen and (min-width: 769px) {

    #top {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  background-color: #fff;
  overflow: hidden;
}

/* ロゴ */
.top_logo img {
    width: 200px;
    margin: 1rem 0;
}

/* select_boxに背景画像を適用 */
.select_box {
  background: url('../img/top/top_img.jpg') center center / cover no-repeat;
  width: 100%;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

    .select_box_ul {
        list-style: none;
        display: flex;
        gap: 20rem;
        padding: 0;
        margin: 0;
        flex-direction: row;
    }
.select_box_ul li img {
    width: 240px;
    max-width: 80vw;
}

/* フッター情報 */
.top_info_dl {
  background-color: rgba(255,255,255,0.85);
  padding: 1rem 2rem;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.top_info_dt {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.top_info_dd {
  font-size: 0.9rem;
  color: #333;
}

}