@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #081640;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.header__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.header__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.header__logo:hover {
  opacity: 0.8;
}

.header__nav {
  display: flex;
}
.header__nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.header__nav a {
  color: #ddd;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}
.header__nav a:hover {
  color: #4D74FF;
}
.header__nav a:hover::after {
  width: 100%;
}
.header__nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #4D74FF;
  transition: width 0.3s ease;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: fixed;
  top: 3px;
  right: 8px;
  z-index: 1001;
  padding: 8px;
}
.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger::before {
  top: 10px;
}
.hamburger::after {
  top: 18px;
}
.hamburger span {
  position: absolute;
  top: 26px;
  left: 8px;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  display: block;
}
.hamburger.active::before {
  top: 18px;
  transform: rotate(45deg);
}
.hamburger.active::after {
  top: 18px;
  transform: rotate(-45deg);
}
.hamburger.active span {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #000102;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  padding: 122px 20px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu p {
  width: 80%;
  padding-bottom: 60px;
}
.mobile-menu p img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.mobile-menu ul {
  list-style: none;
}
.mobile-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  padding: 20px 0;
  display: block;
  transition: color 0.3s ease;
}
.mobile-menu a:hover {
  color: #3b82f6;
}

.mobile-menu__close {
  margin-top: 2rem;
  background: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  width: 88px;
  margin: 80px auto 0;
  display: block;
}
.mobile-menu__close img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  margin: auto;
}
.mobile-menu__close:hover {
  background: #ffffff;
  color: #0f172a;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 998;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  background: url(/assets/images/FVSection.png) no-repeat 50% 0/cover;
}
.hero .hero_wrap {
  background: url(/assets/images/mv_line.svg) repeat-x 50% 100%;
  position: relative;
}
.hero .hero_wrap_slide .slider {
  width: 100%;
  margin: 0 auto;
  /* ドット（未選択）を白に */
  /* ドット（選択中）を白に＆少し濃く */
}
.hero .hero_wrap_slide .slider div {
  width: 100%;
}
.hero .hero_wrap_slide .slider div img {
  width: 100%;
  height: auto;
  display: block;
}
.hero .hero_wrap_slide .slider .slick-dots {
  bottom: -40px;
  /* 下余白調整（お好みで） */
  padding: 0;
  margin: 0;
}
.hero .hero_wrap_slide .slider .slick-dots li {
  margin: 0 4px;
  /* 左右の余白を小さく */
}
.hero .hero_wrap_slide .slider .slick-dots li button:before {
  color: white !important;
  opacity: 0.5;
  font-size: 12px;
}
.hero .hero_wrap_slide .slider .slick-dots li.slick-active button:before {
  color: white !important;
  opacity: 1;
}
.hero .inner {
  width: 1200px;
  padding: 124px 44px 60px;
  margin: auto;
}
.hero .inner h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero .mark {
  position: absolute;
  top: 125px;
  right: 56px;
  width: 146px;
  height: 171px;
}

.section {
  padding: 0;
  max-width: 1080px;
  margin: 0 auto;
}
.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  padding-left: 14px;
  border-left: 6px solid #C6BA94;
  font-weight: 700;
  line-height: 100%;
}
.section h2 span {
  font-size: 16px;
  margin-left: 12px;
  font-weight: normal;
}

#message {
  background: url(/assets/images/message_bg.jpg) no-repeat 50% 0/cover;
  padding: 72px 0 60px;
}
#message .speaker-info {
  display: flex;
  align-items: start;
  gap: 40px;
}
#message .speaker-info img {
  width: 180px;
}
#message .speaker-info .info {
  padding-top: 8px;
}
#message .speaker-info .info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
#message .speaker-info .info p {
  margin: 16px;
}
#message .message-text {
  line-height: 1.8;
  opacity: 0.9;
  font-size: 1.1rem;
}

#overview {
  background: url(/assets/images/overview_bg.jpg) no-repeat 50% 100%/cover;
  padding: 80px 0 0;
}
#overview .overview_wrap {
  background: url(/assets/images/mv_line.svg) repeat-x 50% 100%;
  position: relative;
  padding-bottom: 100px;
}
#overview h2 {
  margin-bottom: 40px;
}
#overview .overview-content {
  padding-left: 20px;
  margin-bottom: 40px;
}
#overview .overview-content ul {
  list-style: none;
}
#overview .overview-content ul li {
  padding-left: 3em;
  text-indent: -3em;
  font-size: 15px;
}
#overview .overview-content ul li a {
  color: #64AEDC;
}
#overview .overview-content ul li a i img {
  vertical-align: -3px;
}
#overview .overview-content ul li a:hover {
  opacity: 0.6;
}
#overview .overview-schedule {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 8px 8px 40px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 12px;
  padding: 24px 52px;
  color: #000;
  line-height: 180%;
}
#overview .overview-schedule dd {
  margin-left: 16px;
}

#speakers {
  background: url(/assets/images/speakers_bg.jpg) no-repeat 0% 50%/cover;
  padding: 80px 0;
}
#speakers h2 {
  margin-bottom: 40px;
}
#speakers .speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
#speakers .speaker-card {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
}
#speakers .speaker-card .photo {
  width: 120px;
}
#speakers .speaker-card .photo img {
  width: 100%;
  height: auto;
}
#speakers .speaker-card .speaker-info {
  flex: 1;
  margin-bottom: 0;
  width: 316px;
}
#speakers .speaker-card .speaker-info .dis {
  font-size: 14px;
}
#speakers .speaker-card .speaker-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 700;
}
#speakers .speaker-card .speaker-info .bio {
  font-size: 14px;
  line-height: 1.6;
}

#program {
  background: url(/assets/images/program_bg.jpg) no-repeat 0% 50%/cover;
  padding: 80px 0;
}
#program h2 {
  margin-bottom: 40px;
}
#program .program-item {
  box-shadow: 8px 8px 40px 0px rgba(0, 0, 0, 0.2509803922);
  background: rgba(30, 30, 30, 0.6980392157);
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 40px;
}
#program .program-item:last-child {
  border-bottom: none;
}
#program .program-item h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}
#program .program-item h3 .time {
  font-size: 14px;
  font-weight: normal;
  margin-right: 8px;
}
#program .program-item .content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
#program .program-item .content p {
  opacity: 0.8;
  font-size: 1rem;
  line-height: 1.6;
}
#program .program-item .content .speaker-card {
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
}
#program .program-item .content .speaker-card .photo {
  width: 120px;
}
#program .program-item .content .speaker-card .photo img {
  width: 100%;
  height: auto;
}
#program .program-item .content .paformer {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}
#program .program-item .content .paformer .base .speaker-info {
  flex: 1;
  margin-bottom: 0;
  width: 316px;
}
#program .program-item .content .paformer .base .speaker-info .dis {
  font-size: 14px;
}
#program .program-item .content .paformer .base .speaker-info .bio {
  font-size: 14px;
  line-height: 1.6;
}
#program .column {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  height: 100%;
  gap: 40px;
}
#program .column .blk {
  width: calc(50% - 20px);
}
#program .column .blk a {
  display: block;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
}
#program .column .blk a:hover {
  opacity: 0.6;
}
#program .column .blk a img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
  margin-bottom: 16px;
}

#company {
  background: url(/assets/images/company01.jpg) no-repeat 50% 0/cover;
  padding: 80px 0;
}
#company h2 {
  margin-bottom: 40px;
}
#company img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
#company p {
  margin-bottom: 16px;
  line-height: 200%;
}
#company p span {
  font-size: 14px;
  opacity: 0.7;
}
#company .base {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
#company .base .blk {
  width: 33%;
  border-radius: 8px;
  margin-bottom: 40px;
}
#company .base .blk a {
  box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.2509803922);
  background: rgba(20, 18, 40, 0.7);
  padding: 24px 24px 0;
  transition: background 0.3s ease;
  display: block;
  color: #fff;
  text-decoration: none;
}
#company .base .blk a .t1 {
  margin-top: 16px;
}
#company .base .blk a .t1 span {
  color: #6a80bd;
  font-size: 12px;
  margin-right: 8px;
}
#company .base .blk a .t2 {
  font-size: 13px;
  margin-top: 8px;
  font-weight: bold;
}
#company .base .blk a .more {
  margin-top: 24px;
  border-top: 1px solid #262b48;
  text-align: center;
  padding: 8px 0 12px;
  font-size: 14px;
  color: #9ba0ae;
}
#company .base .blk a:hover {
  opacity: 0.6;
}

.fadein {
  transition: 1s;
  opacity: 0;
  transform: translatey(50px);
}

.fadein.animated {
  opacity: 1;
  transform: translatey(0px);
}

.cop_page {
  background: #04122f url(/assets/images/cop/bg.jpg) repeat-x 50% 0;
}
.cop_page .inner {
  width: 1000px;
  margin: auto;
}
.cop_page .inner .cont .eyec {
  margin: 100px 0 0;
}
.cop_page .inner .cont .intro {
  font-weight: bold;
  padding: 40px 0 64px;
  font-size: 18px;
  line-height: 230%;
}
.cop_page .inner .cont .cont_in {
  position: relative;
  height: 4280px;
}
.cop_page .inner .cont .cont_in span {
  background-color: #04122f;
}
.cop_page .inner .cont .cont_in div {
  position: absolute;
}
.cop_page .inner .cont .cont_in .pic1 {
  position: absolute;
  top: 0;
  left: 0;
}
.cop_page .inner .cont .cont_in .pic2 {
  position: absolute;
  top: 515px;
  right: 0;
}
.cop_page .inner .cont .cont_in .pic3 {
  position: absolute;
  top: 785px;
  left: 172px;
}
.cop_page .inner .cont .cont_in .pic4 {
  position: absolute;
  top: 1226px;
  right: 84px;
}
.cop_page .inner .cont .cont_in .pic5 {
  position: absolute;
  top: 1415px;
  left: 84px;
}
.cop_page .inner .cont .cont_in .pic6 {
  position: absolute;
  top: 1720px;
  right: 0;
  width: 60%;
}
.cop_page .inner .cont .cont_in .pic7 {
  position: absolute;
  top: 2200px;
  left: 84px;
}
.cop_page .inner .cont .cont_in .pic8 {
  position: absolute;
  top: 2540px;
  right: 0px;
}
.cop_page .inner .cont .cont_in .pic9 {
  position: absolute;
  top: 2966px;
  right: 115px;
}
.cop_page .inner .cont .cont_in .pic10 {
  position: absolute;
  top: 3528px;
  left: 0;
}
.cop_page .inner .cont .cont_in .txt1_n {
  position: absolute;
  top: 170px;
  right: 0px;
  font-weight: bold;
  font-size: 18px;
}
.cop_page .inner .cont .cont_in .txt2_n {
  position: absolute;
  top: 630px;
  left: 0px;
  font-weight: bold;
  font-size: 18px;
}
.cop_page .inner .cont .cont_in .txt6_n {
  position: absolute;
  top: 1920px;
  left: 80px;
  font-weight: bold;
  font-size: 18px;
}
.cop_page .inner .cont .cont_in .txt8_n {
  position: absolute;
  top: 2700px;
  left: 80px;
  font-weight: bold;
  font-size: 18px;
}
.cop_page .inner .cont .cont_in .txt4_m {
  position: absolute;
  top: 1286px;
  left: 80px;
  font-weight: bold;
  font-size: 18px;
}
.cop_page .inner .cont .cont_in .txt6_m {
  position: absolute;
  top: 1920px;
  left: 80px;
  font-weight: bold;
  font-size: 18px;
}
.cop_page .inner .cont .cont_in .txt8_m {
  position: absolute;
  top: 2700px;
  left: 80px;
  font-weight: bold;
  font-size: 18px;
}
.cop_page .inner .cont .cont_in .txt1_i {
  position: absolute;
  top: 170px;
  right: 0px;
  font-weight: bold;
  font-size: 18px;
}
.cop_page .inner .cont .cont_in .txt3_i {
  position: absolute;
  top: 1050px;
  left: 80px;
  font-weight: bold;
  font-size: 18px;
}
.cop_page .inner .cont .cont_in .txt5_i {
  position: absolute;
  top: 1580px;
  right: 100px;
  font-weight: bold;
  font-size: 18px;
}
.cop_page .inner .cont .cont_in .txt8_i {
  position: absolute;
  top: 2700px;
  left: 80px;
  font-weight: bold;
  font-size: 18px;
}
.cop_page .inner .cont .btn {
  padding: 40px 0 200px;
}
.cop_page .inner .cont .btn a {
  display: block;
  width: 360px;
  margin: 0 auto;
  background: #fff;
  color: #000;
  text-align: center;
  border-radius: 100px;
  padding: 16px;
  font-weight: bold;
  text-decoration: none;
}
.cop_page .inner .cont .btn a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .cop_page .inner {
    width: auto;
    margin: auto;
  }
  .cop_page .inner img {
    width: 100%;
    height: auto;
  }
  .cop_page .inner .kv {
    padding: 30px 0 0 16px;
  }
  .cop_page .inner .cont .eyec {
    margin: 24px 0 0;
  }
  .cop_page .inner .cont .intro {
    font-weight: bold;
    padding: 24px 24px 64px;
    font-size: 14px;
    line-height: 230%;
  }
  .cop_page .inner .cont .cont_in {
    position: relative;
    height: 1960px;
  }
  .cop_page .inner .cont .cont_in div {
    position: absolute;
  }
  .cop_page .inner .cont .cont_in .pic1 {
    position: absolute;
    top: 0;
    left: 0;
  }
  .cop_page .inner .cont .cont_in .pic2 {
    position: absolute;
    top: 277px;
    right: 0;
    width: 70%;
  }
  .cop_page .inner .cont .cont_in .pic3 {
    position: absolute;
    top: 445px;
    left: 24px;
    width: 50%;
  }
  .cop_page .inner .cont .cont_in .pic4 {
    position: absolute;
    top: 606px;
    right: 0;
    width: 45%;
  }
  .cop_page .inner .cont .cont_in .pic5 {
    position: absolute;
    top: 700px;
    left: 16px;
    width: 60%;
  }
  .cop_page .inner .cont .cont_in .pic6 {
    position: absolute;
    top: 840px;
    right: 16px;
    width: 80%;
  }
  .cop_page .inner .cont .cont_in .pic7 {
    position: absolute;
    top: 1080px;
    left: 0;
    width: 60%;
  }
  .cop_page .inner .cont .cont_in .pic8 {
    position: absolute;
    top: 1200px;
    right: 0px;
    width: 80%;
  }
  .cop_page .inner .cont .cont_in .pic9 {
    position: absolute;
    top: 1470px;
    right: 115px;
  }
  .cop_page .inner .cont .cont_in .pic10 {
    position: absolute;
    top: 1700px;
    left: 0;
  }
  .cop_page .inner .cont .cont_in .txt1_n {
    position: absolute;
    top: 170px;
    right: 0px;
    font-weight: bold;
    font-size: 14px;
  }
  .cop_page .inner .cont .cont_in .txt2_n {
    position: absolute;
    top: 380px;
    left: 16px;
    font-weight: bold;
    font-size: 14px;
  }
  .cop_page .inner .cont .cont_in .txt6_n {
    position: absolute;
    top: 980px;
    left: 16px;
    font-weight: bold;
    font-size: 14px;
  }
  .cop_page .inner .cont .cont_in .txt8_n {
    position: absolute;
    top: 1360px;
    left: 16px;
    font-weight: bold;
    font-size: 14px;
  }
  .cop_page .inner .cont .cont_in .txt1_i {
    position: absolute;
    top: 170px;
    right: 16px;
    font-weight: bold;
    font-size: 14px;
  }
  .cop_page .inner .cont .cont_in .txt3_i {
    position: absolute;
    top: 530px;
    right: 16px;
    left: inherit;
    font-weight: bold;
    font-size: 14px;
  }
  .cop_page .inner .cont .cont_in .txt5_i {
    position: absolute;
    top: 760px;
    right: 16px;
    font-weight: bold;
    font-size: 14px;
    z-index: 1;
  }
  .cop_page .inner .cont .cont_in .txt8_i {
    position: absolute;
    top: 1360px;
    left: 16px;
    font-weight: bold;
    font-size: 14px;
  }
  .cop_page .inner .cont .cont_in .txt4_m {
    position: absolute;
    top: 606px;
    left: 16px;
    font-weight: bold;
    font-size: 14px;
  }
  .cop_page .inner .cont .cont_in .txt6_m {
    position: absolute;
    top: 980px;
    left: 16px;
    font-weight: bold;
    font-size: 14px;
  }
  .cop_page .inner .cont .cont_in .txt8_m {
    position: absolute;
    top: 1360px;
    left: 16px;
    font-weight: bold;
    font-size: 14px;
  }
  .cop_page .inner .cont .btn {
    padding: 40px 0 80px;
  }
  .cop_page .inner .cont .btn a {
    display: block;
    width: 90%;
    margin: 0 auto;
    background: #fff;
    color: #000;
    text-align: center;
    border-radius: 100px;
    padding: 16px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
  }
  .cop_page .inner .cont .btn a:hover {
    opacity: 0.6;
  }
}

.company_low {
  background: url(/assets/images/company01.jpg) no-repeat 50% 0/cover;
  padding-bottom: 200px;
}
.company_low h1 {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  padding: 200px 0 100px;
  text-align: center;
  border-bottom: 1px solid #262b48;
  margin-bottom: 40px;
}
.company_low .inner {
  width: 1100px;
  margin: auto;
}
.company_low .inner .base .blk {
  display: flex;
  gap: 32px;
  padding: 40px 0;
}
.company_low .inner .base .blk .thum {
  width: 50%;
}
.company_low .inner .base .blk .thum img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.company_low .inner .base .blk .info .t1 {
  margin-top: 16px;
  margin-bottom: 16px;
}
.company_low .inner .base .blk .info .t1 span {
  color: #6a80bd;
  font-size: 12px;
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  #company {
    background: url(/assets/images/company01.jpg) no-repeat 50% 0/cover;
    padding: 80px 0;
  }
  #company h2 {
    margin-bottom: 40px;
  }
  #company img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  #company p {
    font-size: 15px;
  }
  #company .base {
    display: block;
    gap: 24px;
  }
  #company .base .blk {
    width: 100%;
    margin-bottom: 24px;
  }
  #company .base .blk a {
    box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.2509803922);
    background: rgba(20, 18, 40, 0.7);
    padding: 24px 24px 0;
    transition: background 0.3s ease;
    display: block;
    color: #fff;
    text-decoration: none;
  }
  #company .base .blk a .t1 {
    margin-top: 16px;
  }
  #company .base .blk a .t1 span {
    color: #6a80bd;
    font-size: 12px;
    margin-right: 8px;
  }
  #company .base .blk a .t2 {
    font-size: 13px;
    margin-top: 8px;
    font-weight: bold;
  }
  #company .base .blk a .more {
    margin-top: 24px;
    border-top: 1px solid #262b48;
    text-align: center;
    padding: 8px 0 12px;
    font-size: 14px;
    color: #9ba0ae;
  }
  #company .base .blk a:hover {
    opacity: 0.6;
  }
  .company_low {
    background: url(/assets/images/company01.jpg) no-repeat 50% 0/cover;
    padding-bottom: 80px;
  }
  .company_low h1 {
    font-size: 22px;
    padding: 100px 0 56px;
    margin-bottom: 0;
  }
  .company_low .inner {
    width: auto;
    margin: auto;
  }
  .company_low .inner .base .blk {
    display: block;
    gap: 0;
    padding: 40px 24px 24px;
  }
  .company_low .inner .base .blk .thum {
    width: 100%;
  }
  .company_low .inner .base .blk .info .t1 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .company_low .inner .base .blk .info .t1 span {
    color: #6a80bd;
    font-size: 12px;
    margin-right: 8px;
  }
}
#album {
  background: url(/assets/images/FVSection.jpg) no-repeat 100% 100%/cover;
  padding: 80px 0;
  text-align: center;
}
#album h2 {
  margin-bottom: 40px;
  text-align: left;
}
#album span.w {
  margin-top: 16px;
  display: block;
  font-weight: bold;
  background: #000;
  font-size: 20px;
  width: 300px;
  color: #C6BA94;
  padding: 12px;
  text-align: center;
  border: 2px solid #C6BA94;
  margin: 24px auto;
}
#album span.w .ww {
  font-size: 15px;
  display: block;
  color: #fff;
}
#album .btn_al a {
  text-align: center;
  display: block;
  background: #C6BA94;
  text-align: center;
  color: #192338;
  padding: 18px 24px;
  width: 300px;
  margin: 24px auto;
  border-radius: 100px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
  font-weight: bold;
}
#album .btn_al a:hover {
  background: #fff;
  color: #192338;
}
#album .faq {
  background: url(/assets/images/salon.jpg) no-repeat 50% 50%/cover;
  border: 1px solid #C6BA94;
  padding: 52px 40px 58px 40px;
  text-align: center;
  margin-top: 64px;
}
#album .faq p {
  font-weight: bold;
  font-size: 22px;
}
#album .faq .btnarea {
  margin-top: 32px;
  display: flex;
  gap: 32px;
  justify-content: center;
}
#album .faq .btnarea a {
  display: inline-block;
  background-image: radial-gradient(circle at 100% 0%, rgb(94, 138, 243) 15%, rgb(243, 61, 223));
  color: #fff;
  width: 360px;
  padding: 16px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.3s ease;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 140%;
}
#album .faq .btnarea a:hover {
  background: #C6BA94;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #album .faq .btnarea {
    margin-top: 32px;
    display: block;
  }
  #album .faq .btnarea a {
    width: 90%;
  }
}

.faq_kv {
  background: url(/assets/images/faq/faq_ttl_bg.jpg) no-repeat 50% 0%/cover;
  padding: 180px 0 80px;
}
.faq_kv h1 {
  width: 500px;
  margin: auto;
}
.faq_kv h1 img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .faq_kv {
    padding: 100px 0 60px;
  }
  .faq_kv h1 {
    width: 70%;
    margin: auto;
  }
}

#faq {
  background: url(/assets/images/faq_bg.jpg) repeat-y 50% 0%/100%;
  padding: 80px 0;
  /* 閉じているとき ▼, 開いているとき ▲ */
}
#faq .base {
  display: flex;
  gap: 32px;
  background: #fff;
  padding: 32px;
  margin-bottom: 24px;
}
#faq .base .doctor {
  width: 18%;
  color: #000;
  text-align: center;
}
#faq .base .doctor .ph {
  margin-bottom: 8px;
}
#faq .base .doctor .ph img {
  width: 100%;
  height: auto;
}
#faq .base .doctor .name_s {
  font-size: 13px;
}
#faq .base .doctor .name_l {
  font-size: 16px;
  font-weight: bold;
}
#faq .base .fa {
  width: 80%;
}
@media screen and (max-width: 768px) {
  #faq .base {
    display: block;
    padding: 32px 16px;
  }
  #faq .base .doctor {
    width: 100%;
  }
  #faq .base .doctor .ph {
    width: 50%;
    margin: auto;
  }
  #faq .base .doctor .ph img {
    width: 100%;
    height: auto;
  }
  #faq .base .fa {
    width: 100%;
  }
}
#faq .accordion {
  overflow: hidden;
}
#faq .acc-header {
  width: 100%;
  padding: 1rem;
  background: #edf2f4;
  color: #081640;
  border: 0;
  text-align: left;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  border-radius: 8px;
}
#faq .acc-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
  font-size: 13px;
}
#faq .acc-header[aria-expanded=false] .acc-icon::before {
  content: "▼";
}
#faq .acc-header[aria-expanded=true] .acc-icon::before {
  content: "▲";
}
#faq .acc-panel-wrapper {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
#faq .acc-panel {
  padding: 0 16px 16px 16px;
  border-radius: 8px 8px 0 0;
  color: #fff;
  line-height: 1.6;
  border-radius: 0 0 8px 8px;
  font-weight: bold;
  background: #edf2f4;
}
#faq .acc-panel p {
  background: #081640;
  padding: 24px;
  border-radius: 4px;
}
#faq .acc-header[aria-expanded=true] {
  border-radius: 8px 8px 0 0;
}
#faq .btnarea {
  background: #081640;
  color: #fff;
  text-align: center;
  padding: 16px;
}
#faq .btnarea .in {
  border: 1px solid #C9BD98;
  padding: 32px;
}
#faq .btnarea p {
  padding-bottom: 16px;
  font-weight: bold;
  font-size: 20px;
}
#faq .btnarea a {
  background-image: linear-gradient(112deg, rgb(32, 156, 255) 0%, rgb(104, 224, 207) 100%);
  display: block;
  padding: 16px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 100px;
  text-decoration: none;
  margin-top: 8px;
  width: 300px;
  margin: 8px auto 0;
}
#faq .btnarea a:hover {
  opacity: 0.6;
}

.footer {
  background: #000102;
  padding-top: 80px;
  padding-right: 120px;
  padding-bottom: 72px;
  padding-left: 120px;
  display: flex;
  gap: 40px;
}
.footer .contact-info {
  display: flex;
  gap: 80px;
}
.footer .contact-info h3 {
  font-size: 32px;
  font-weight: 700;
}
.footer .contact-info h3 span {
  font-size: 16px;
  margin-left: 16px;
}
.footer .contact-info .info .foot_logo {
  width: 127px;
  margin-bottom: 8px;
}
.footer .contact-info p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero .subtitle {
    font-size: 1.2rem;
  }
  .hero .date {
    font-size: 1.4rem;
  }
  .section {
    padding: 0 20px;
  }
  .section h2 {
    font-size: 1.7rem;
  }
  .section h2 span {
    font-size: 14px;
  }
  .speakers-grid {
    grid-template-columns: 1fr;
  }
  .speaker-card,
  .speaker-info {
    flex-direction: column;
  }
  .speaker-card img,
  .speaker-info img {
    margin: 0 auto 1rem;
  }
  .program-item {
    flex-direction: column;
  }
  .program-item .time {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .overview-grid {
    grid-template-columns: 1fr;
  }
  .smart-choice {
    top: 0.5rem;
    right: 4rem;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .header__nav {
    display: flex;
  }
  .hamburger {
    display: none;
  }
}
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .hero {
    background: url(/assets/images/FVSection.png) no-repeat 50% 0/cover;
  }
  .hero .hero_wrap {
    background: none;
  }
  .hero .inner {
    width: 100%;
    padding: 46px 0 0 0;
    margin: auto;
  }
  .hero .inner h1 {
    margin-bottom: 0;
  }
  .hero .inner img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  #message {
    padding: 60px 0;
  }
  #message .speaker-info {
    display: block;
  }
  #message .speaker-info img {
    width: 180px;
    margin: 0 auto;
    display: block;
  }
  #message .speaker-info .info {
    padding-top: 0;
  }
  #message .speaker-info .info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  #message .speaker-info .info p {
    margin: 0 0 16px;
  }
  #message .message-text {
    font-size: 16px;
  }
  #message .message-text p {
    margin: 0;
  }
  #overview {
    background: url(/assets/images/overview_bg_sp.jpg) no-repeat 50% 100%/cover;
    padding: 80px 0 0;
  }
  #overview .overview_wrap {
    background: url(/assets/images/mv_line.svg) repeat-x 50% 100%;
    position: relative;
    padding-bottom: 100px;
  }
  #overview h2 {
    margin-bottom: 40px;
  }
  #overview .overview-content {
    padding-left: 20px;
    margin-bottom: 40px;
  }
  #overview .overview-content ul {
    list-style: none;
  }
  #overview .overview-content ul li {
    padding-left: 3em;
    text-indent: -3em;
  }
  #overview .overview-content ul li a {
    color: #64AEDC;
  }
  #overview .overview-schedule {
    padding: 20px 16px;
  }
  #overview .overview-schedule dd {
    margin-left: 16px;
  }
  #speakers {
    background: url(/assets/images/speakers_bg.jpg) no-repeat 0% 50%/cover;
    padding: 80px 0;
  }
  #speakers h2 {
    margin-bottom: 40px;
  }
  #speakers .speakers-grid {
    display: block;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  #speakers .speaker-card {
    display: flex;
    margin-bottom: 40px;
    flex-direction: row;
  }
  #speakers .speaker-card .photo {
    width: 32%;
  }
  #speakers .speaker-card .photo img {
    width: 100%;
    height: auto;
  }
  #speakers .speaker-card .speaker-info {
    flex: 1;
    margin-bottom: 0;
    width: 50%;
  }
  #speakers .speaker-card .speaker-info .dis {
    font-size: 14px;
  }
  #speakers .speaker-card .speaker-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
  }
  #speakers .speaker-card .speaker-info .bio {
    font-size: 12px;
    line-height: 1.6;
  }
  #program {
    background: url(/assets/images/program_bg.jpg) no-repeat 0% 50%/cover;
    padding: 60px 0;
  }
  #program h2 {
    margin-bottom: 40px;
  }
  #program .program-item {
    box-shadow: 8px 8px 40px 0px rgba(0, 0, 0, 0.2509803922);
    background: rgba(30, 30, 30, 0.6980392157);
    padding: 24px 12px;
    border-radius: 8px;
    margin-bottom: 40px;
  }
  #program .program-item:last-child {
    border-bottom: none;
  }
  #program .program-item h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
  }
  #program .program-item h3 .time {
    font-size: 14px;
    font-weight: normal;
    margin-right: 8px;
    display: block;
  }
  #program .program-item .content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  #program .program-item .content p {
    opacity: 0.8;
    font-size: 14px;
    line-height: 1.6;
  }
  #program .program-item .content .speaker-card {
    display: flex;
    margin-bottom: 40px;
    flex-direction: row;
  }
  #program .program-item .content .speaker-card .photo {
    width: 32%;
  }
  #program .program-item .content .speaker-card .photo img {
    width: 100%;
    height: auto;
  }
  #program .program-item .content .speaker-card .speaker-info {
    flex: 1;
    margin-bottom: 0;
    width: 50%;
  }
  #program .program-item .content .speaker-card .speaker-info .dis {
    font-size: 14px;
  }
  #program .program-item .content .speaker-card .speaker-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
  }
  #program .program-item .content .speaker-card .speaker-info .bio {
    font-size: 12px;
    line-height: 1.6;
  }
  #program .program-item .content .paformer {
    display: block;
    gap: 40px;
    margin-top: 20px;
  }
  #program .program-item .content .paformer .base .speaker-info {
    flex: 1;
    margin-bottom: 0;
    width: 316px;
  }
  #program .program-item .content .paformer .base .speaker-info .dis {
    font-size: 14px;
  }
  #program .program-item .content .paformer .base .speaker-info .bio {
    font-size: 12px;
  }
  #program .column {
    display: block;
  }
  #program .column .blk {
    width: calc(100% - 0px);
    margin-bottom: 32px;
  }
  .footer {
    background: #000102;
    padding: 60px 20px 72px;
    display: block;
  }
  .footer .contact-info {
    display: block;
  }
  .footer .contact-info h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .footer .contact-info h3 span {
    font-size: 16px;
    margin-left: 16px;
  }
  .footer .contact-info .info .foot_logo {
    width: 127px;
    margin-bottom: 8px;
  }
  .footer .contact-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-size: 1.1rem;
  }
  .header__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */