html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
figcaption,
blockquote,
pre {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ol {
  list-style: none;
}

img,
picture,
svg,
canvas,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
  border-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

[hidden] {
  display: none !important;
}



@media (max-width: 767px){
  html, body{
    overflow-x: hidden;
  }

  body{
    overflow-wrap: break-word;
    word-break: normal;
    line-break: strict;
  }
}

@media (max-width: 767px){
  .pill,
  .btn-primary,
  .footer-cta,
  .footer-logos,
  p,
  li,
  td,
  th,
  h1,
  h2,
  h3{
    overflow-wrap: break-word;
    word-break: normal;
    line-break: strict;
  }
}


@media (min-width: 1024px){
.pc-none{display: none !important;}
}









:root{
  --bg: #ffffff;
  --text: #111;
  --muted: #666;
  --line: #e8e8e8;
  --pill: #3e66b6;
  --pillText: #fff;
  --beige: #d9caa4;
  --beige2:#c9b88d;
  --max: 980px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
}

img{ max-width:100%; height:auto; display:block; }
/*
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}
*/

.container{
  max-width: 1040px;
  margin: 0 auto;
  padding: 1em 18px 0;
}








.site-header{
  padding: 14px 0;
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand{
  flex: 0 0 auto;
}

.brand-logo{
  display: block;
  width: auto;
}

.brand-logo-pc{
  height: 25px;
}

.brand-logo-sp{
  display: none;
}

.pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 25px;
  border-radius: 999px;
  background: var(--pill);
  color: var(--pillText);
  text-decoration: none;
  font-size: 100%;
  font-weight: bold;
  white-space: nowrap;
}

/* smartphone */
@media (max-width: 767px){
  .header-inner{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }

  .brand-logo-pc{
    display: none;
  }

  .brand-logo-sp{
    display: block;
    width: 56px;
    height: auto;
  }

  .pill{
    margin-left: auto;
    font-size: 10px;
    padding: 10px 14px;
    white-space: nowrap;
  }
}






.hero{
  padding: 8px 0 14px;
}

.hero-top{
  text-align:center;
  margin:4em 0;
}

.kicker{
  margin: 0 0 6px;
  /*color: var(--muted);*/
  font-size: 3em;
}

.hero-title{
  margin: 0;
  font-size: 3em;
  line-height: 1.35;
  letter-spacing: 0.02em;
}





















.hero-cover{
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-top: 18px;
  min-height: 620px;
  padding: 48px 24px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-cover::before,
.hero-cover::after{
  content: none !important;
}

.hero-cover-bg{
  position: absolute;
  inset: 0;
  background-image: url("assets/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 35%;
  opacity: 1;
  filter: none;
  z-index: 0;
}

.cover{
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.cover-main{
  display: block;
  width: min(500px, 100%);
  height: auto;
  margin: 0 auto;
}

@media (min-width: 1024px){
  .hero-cover{
    min-height: 760px;
    padding: 56px 32px 56px;
  }

  .cover-main{
    width: min(800px, 100%);
  }

  .hero-cover-bg{
    background-position: 50% 30%;
  }
}


@media (max-width: 767px){
  .hero-cover{
    margin-top: 0;
    padding-top: 0;
  }
}



















.hero-tagline{
  text-align:center;
  margin: 2em 0 0.5em;
  font-size: 2em;
  letter-spacing: 0.02em;
}

.hero-tagline2{
  text-align:center;
  margin: 0px 0 2em;
  font-size: 1.5em;
  letter-spacing: 0.02em;
}


.hero-lead{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items:start;
}

.lead-text{
  margin: 0;
  font-size: 120%;
  line-height: 1.9;
  color: #222;
}

@media (max-width: 767px){
  .lead-text{
  font-size: 100%;}

}



.lead-aside{
  display:flex;
  justify-content:center;
}





.mini-cover{
  margin: 0;
  width: min(300px, 100%);
  text-align:center;
}

.mini-cover figcaption{
  margin-top: 8px;
  font-size: 11px;
  color: var(--muted);
}

.thumb-grid{
  margin: 16px 0 0;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.thumb{
  background: #d8d8d8;
  border-radius: 6px;
  aspect-ratio: 1 / 1;
}

.feature-banner{
  padding: 18px 0 8px;
}

.banner-card{
  /*border-top: 1px solid var(--line);*/
  padding-top: 16px;
}

.banner-img{
  width: 100%;
 /* border-radius: 6px;*/
}

.speakers{
  padding: 18px 0 40px;
}

.speakers-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 26px;
}



/*
.person{
  display:grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items:start;
}

.avatar{
  width: 92px;
  height: 92px;
  border-radius: 999px;
  overflow:hidden;
  background:#eee;
}

.avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
}

.person-name{
  margin: 0;
  font-size: 14px;
}

.person-meta{
  margin: 4px 0 8px;
  font-size: 11px;
  color: var(--muted);
}

.person-text{
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
  color: #222;
}
*/




```css
:root{
  --line: #e8e8e8;
  --beige: #d9caa4;
  --beige2: #c9b88d;
}

.info-grid{
  margin:3em 0 5em;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.info{
  padding: 18px 0px 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--beige), var(--beige2));
  line-height: 1;
  font-weight:bold;
  white-space: nowrap;
}

.info-title{
  margin-top: 14px;
  text-align: center;
    font-weight:bold;
	font-size:120%;

}

.info-rule{
  margin: 14px 0 14px;
  height: 2px;
  background: var(--beige2);
  opacity: 0.9;
  width: 100%;
}

.info-text{
  align-self: stretch;
  line-height: 1.7;
}


.feature-intro{
  padding: 28px 0 18px;
}



.feature-intro-text{
  font-size: 1.5em;
  line-height: 1.9;
  color: #222;
}


@media (max-width: 767px){
.feature-intro-text{
  font-size: 1em;
}
}


.doctor-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px 40px;
}

.doctor{
  text-align: center;
}

.doctor-avatar{
  width: 80%;
  overflow: hidden;
  background: #ddd;
  margin: 2em auto 14px;
}

.doctor-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-name{
  margin: 0;
  font-size:1.5em;
  font-weight: 600;
}

.doctor-affil{
  margin: 6px 0 0;
  font-size: 1em;
  color: #777;
}

.doctor-text{
  margin: 12px auto 0;
  max-width: 520px;
  font-size: 120%;
  line-height: 1.9;
  text-align: left;
}

@media (max-width: 767px){
  .doctor-text{
  font-size: 100%;}

}


@media (min-width: 600px){
  .doctor-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .doctor-text{
    max-width: none;
  }
}

@media (min-width: 1024px){
  .doctor-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
















@media (min-width: 600px){
  .info-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px){
  .info-grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}
```




/*
.topics{
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.topic-pills{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  justify-items:center;
}
.topic{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--beige), var(--beige2));
  color: #222;
  font-size: 12px;
  white-space: nowrap;
}
*/



/*****************/


.footer-area{
  padding: 34px 0 40px;
  border-top: 1px solid #e8e8e8;
}

.footer-area-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-cta{
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
  box-sizing: border-box;
}

.btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(720px, 100%);
  min-height: 56px;
  padding: 18px 32px;
  border-radius: 999px;
  background: #3e66b6;
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: center;
  box-sizing: border-box;
}

/* tablet */
@media (max-width: 1024px){
  .btn-primary{
    font-size: 1.2em;
    padding: 16px 24px;
  }
}

/* smartphone */
@media (max-width: 767px){
  .footer-cta{
    padding: 24px 16px;
  }
.footer-note{
font-size:90%;
}
  .btn-primary{
    width: 100%;
    font-size: 1em;
    line-height: 1.5;
    padding: 14px 20px;
    border-radius: 28px;
  }
}




.footer-note{
  margin: 18px 0 14px;
  padding:2em 0 0 0;
  line-height: 1.8;
  text-align: center;
  border-top:#777 solid 1px;
  display:block;
  width:100%;
}








.footer-logos{
  margin-top: 6px;
  padding: 2em 0 5em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
}

.footer-logos img{
  display: block;
  width: auto;
}

.footer-logo-main{
  height: 30px;
}

.footer-logo-anniv{
  height: 30px;
}

@media (max-width: 767px){
  .footer-logos{
    flex-direction: column;
    gap: 16px;
    padding: 2em 0 3em 0;
  }

  .footer-logo-main{
    height: 24px;
  }

  .footer-logo-anniv{
    height: 28px;
  }
}














.copyright{
  margin: 12px 0 0;
  font-size: 11px;
  text-align: center;
  padding:2em 0 5em 0;
}


/****************/







.social{
  margin: 6px 0 18px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.soc{
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  padding: 0;
  margin:0 10px 10px;
  flex: 0 0 auto;
}

.soc img{
  display: block;
  width: 70px;
  height: auto;
}

@media (max-width: 1024px){
  .social{
    max-width: 420px;
    margin: 6px auto 18px;
  }

  .soc{
    width: calc((100% - 14px * 3) / 4);
  }
}

@media (max-width: 767px){
  .social{
    max-width: 320px;
    margin: 6px auto 18px;
  }

  .soc{
    width: calc((100% - 14px * 3) / 4);
  }

  .soc img{
    width: 60px;
  }
}








.site-footer{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align:center;
}



@media (min-width: 768px){
  /*.hero-title{ font-size: 22px; }*/

  .hero-lead{
    grid-template-columns: 1fr 320px;
    gap: 22px;
  }
  .lead-aside{ justify-content:flex-end; }

  .thumb-grid{
    grid-template-columns: repeat(4, 1fr);
  }

  .speakers-grid{
    grid-template-columns: 1fr 1fr;
    gap: 30px 36px;
  }

  .topic-pills{
    grid-template-columns: repeat(4, auto);
    justify-content:center;
  }
}

