@charset "UTF-8";

/* =========================================================
  reset　Base
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.6;
}

.fontGothic {
  font-family: "Noto Sans JP", sans-serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.contInner {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

/* =========================================================
  Header
========================================================= */
.header {
  width: 100%;
}

.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1118px;
  width: 95%;
  margin: 0 auto;
  padding: 24px 0 0;
}

.headerLogo {
  display: block;
  flex-shrink: 0;
  width: 97px;
}

.headerLogo img {
  display: block;
  width: 100%;
  height: auto;
}

.gateList {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gateList li {
  width: auto;
}

.gateBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 190px;
  min-height: 44px;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.gateBtnEntry {
  background: #ea604b;
  color: #fff;
}

.gateBtnLogin {
  background: #1a2e63;
  color: #fff;
}

.gateBtn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .gateList {
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .gateList li {
    width: calc((100% - 10px) / 2);
  }

  .gateBtn {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 9px 10px;
    font-size: 13px;
  }
}

@media screen and (max-width: 375px) {
  .gateBtn {
    font-size: 12px;
  }
}

/* =========================================================
  area01
========================================================= */
.area01 {
  background: url("../images/bg.png") center center / cover repeat-x fixed;
}

.mainVisualWrap {
  position: relative;
  max-width: 1118px;
  width: 100%;
  margin: 0 auto;
  padding-top: 40px;
}

.mainVisual {
  display: block;
  width: 100%;
  height: auto;
}

.mainLead {
  position: absolute;
  top: 59%;
  left: 50%;
  width: 50%;
  margin: 0;
  color: #1a2e63;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: center;
  transform: translate(-50%, -50%);
}

.textLink {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: opacity 0.45s ease;
}

.textLink:hover {
  opacity: 0.7;
}

@media screen and (min-width: 769px) and (max-width: 900px) {
  .mainLead {
    top: 63%;
    width: 54%;
    font-size: 16px;
    line-height: 1.6;
  }
}

@media screen and (max-width: 768px) {
  .area01 {
    background-attachment: scroll;
  }

  .headerInner {
    width: 90%;
    padding-top: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .headerLogo {
    width: 84px;
  }

  .mainVisualWrap {
    padding-top: 28px;
  }

  .mainLead {
    top: 53%;
    width: 60%;
    font-size: clamp(13px, 2.4vw, 18px);
    line-height: 1.65;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 480px) {
  .headerInner {
    padding-top: 20px;
    gap: 20px;
  }

  .headerLogo {
    width: 76px;
  }

  .mainLead {
    top: 56%;
    width: 60%;
    font-size: clamp(10px, 3.35vw, 13px);
    line-height: 1.6;
  }
}

/* =========================================================
  area02
========================================================= */
.area02 {
  background: #1a2e63;
  padding-top: 100px;
}

.area02 .contInner {
  background: #fff;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.area02 .contTitle {
  margin: 0;
  padding: clamp(30px, 5vw, 60px) 0 clamp(20px, 3.3vw, 40px);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

.feat {
  width: 80%;
  margin: 0 auto;
}

.featItem {
  display: flex;
  align-items: center;
  gap: 8%;
  padding-bottom: 30px;
  text-align: left;
}

/* PC 2つ目：テキスト → 画像 */
.featItem.rev {
  flex-direction: row-reverse;
}

.featPic {
  width: 42%;
  text-align: center;
}

.featPic img {
  display: block;
  width: 60%;
  height: auto;
  margin: 0 auto;
}

.featText {
  width: 50%;
}

.featText h3 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.featText p {
  margin: 0;
  font-size: 17px;
}

.jmicLink {
  width: 80%;
  margin: 0 auto;
  padding: 0 0 60px;
  text-align: center;
}

.jmicLink a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 420px;
  max-width: 100%;
  min-height: 72px;
  padding: 14px 56px 14px 32px;
  background: #1a2e63;
  color: #fff;
  border: 2px solid #1a2e63;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.jmicLink a:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.jmicLinkText {
  display: inline-block;
}

.jmicLinkArrow {
  position: absolute;
  top: 50%;
  right: 28px;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .area02 {
    padding-top: 50px;
  }

  .area02 .contTitle {
    font-size: 24px;
  }

  .feat {
    width: 80%;
  }

  .featItem,
  .featItem.rev {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
  }

  .featPic,
  .featText {
    width: 100%;
  }

  .featPic img {
    width: 43%;
  }

  .featText h3 {
    font-size: 20px;
  }

  .featText p {
    font-size: 16px;
  }

  .jmicLink {
    width: 80%;
    padding-bottom: 50px;
    text-align: center;
  }

  .jmicLink a {
    width: 100%;
    min-height: 60px;
    padding: 12px 44px 12px 18px;
    font-size: 15px;
  }

  .jmicLinkArrow {
    right: 20px;
    font-size: 16px;
  }
}

/* =========================================================
  area03
========================================================= */
.area03 {
  background: #1a2e63;
  padding-top: 100px;
}

.area03 .contInner {
  background: #fff;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.area03 .contTitle {
  margin: 0;
  padding: clamp(30px, 5vw, 60px) 0 clamp(20px, 3.3vw, 40px);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
  width: 90%;
  margin: 0 auto;
  padding-bottom: 60px;
}

.flowItem {
  text-align: center;
}

.flowImg {
  display: block;
  width: 80%;
  max-width: 240px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto 18px;
}

.flowImgSmall {
  width: 55%;
  max-width: 180px;
  padding: 40px 0 20px;
}

.flowItem p {
  margin: 0;
  font-size: 16px;
  text-align: left;
}

.flowNote {
  margin-top: 16px !important;
  color: #a87d49;
}

.flowLinks {
  margin-top: 16px !important;
}

.flow a {
  color: #0080ff;
}

.fw600 {
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .area03 {
    padding-top: 50px;
  }

  .area03 .contTitle {
    font-size: 24px;
  }

  .flow {
    grid-template-columns: 1fr;
    gap: 36px;
    width: 80%;
    padding-bottom: 50px;
  }

  .flowImg {
    width: 70%;
    max-width: 220px;
    margin-bottom: 14px;
  }

  .flowImgSmall {
    width: 55%;
    max-width: 160px;
    padding: 20px 0 10px;
  }
}


/* =========================================================
  area04
========================================================= */
.area04 {
  background: #1a2e63;
  padding: clamp(50px, 8vw, 100px) 0 0;
}

.area04 .contTitle {
  margin: 0;
  padding: 0 0 clamp(20px, 3.3vw, 40px);
  color: #a87d49;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.06em;
  text-align: center;
}

/* event list */
.evtList {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.evtItem {
  margin: 0;
  padding: 0 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.evtItem + .evtItem {
  padding-top: 40px;
}

.evtItem:last-child {
  border-bottom: none;
}

.evtCard {
  display: block;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.45s ease;
}

.evtCard:hover {
  opacity: 0.75;
}

.evtHead {
  margin-bottom: 12px;
}

.evtDay {
  margin: 0 0 6px;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

.evtTitle {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.evtImg {
  width: 100%;
}

.evtImg img {
  display: block;
  width: 100%;
  height: auto;
}

/* apply links */
.evtApply {
  max-width: 800px;
  width: 90%;
  margin: 56px auto 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.evtApplyTitle {
  margin: 0 0 28px;
  color: #a87d49;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
}

.evtLinks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.evtLinkRow {
  display: flex;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

.evtLinkRowSingle {
  justify-content: center;
}

.evtTextLink {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 240px;
  min-height: 54px;
  padding: 10px 40px 10px 22px;
  background: rgba(255, 255, 255, 0.95);
  color: #1a2e63;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.01em;
  text-align: center;
  text-decoration: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    background 0.45s ease;
}

.evtTextLinkReg {
  background: #ea604b;
  color: #fff;
}

.evtTextLink:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.evtText {
  display: inline-block;
}

.evtArrow {
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-block;
  line-height: 1;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .area04 .contTitle {
    font-size: 24px;
  }

  .evtItem {
    padding-bottom: 24px;
  }

  .evtItem + .evtItem {
    padding-top: 24px;
  }

  .evtDay {
    font-size: 14px;
  }

  .evtTitle {
    font-size: 16px;
  }

  .evtApply {
    margin-top: 36px;
    padding-top: 32px;
  }

  .evtApplyTitle {
    margin-bottom: 22px;
    font-size: 22px;
  }

  .evtLinks {
    gap: 14px;
  }

  .evtLinkRow {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .evtTextLink {
    width: 240px;
    min-height: 50px;
    padding: 9px 38px 9px 18px;
    font-size: 13px;
    line-height: 1.35;
  }

  .evtArrow {
    right: 16px;
  }
}


/* area05 不要 */



/* =========================================================
  area06
========================================================= */
.area06 {
  background: #1a2e63;
  padding: clamp(50px, 8vw, 100px) 0;
}

.area06 .contTitle {
  margin: 0;
  padding: 0 0 clamp(20px, 3.3vw, 40px);
  color: #a87d49;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.06em;
  text-align: center;
}

.repList {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.repItem {
  margin: 0;
}

.repItem a {
  display: block;
  transition: opacity 0.45s ease;
}

.repItem a:hover {
  opacity: 0.7;
}

.repItem img {
  display: block;
  width: 100%;
  height: auto;
}

/* pagination */
.repPager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
}

.repPagerNum,
.repPagerPrev,
.repPagerNext {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 42px;
  height: 42px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition:
    background 0.45s ease,
    color 0.45s ease,
    opacity 0.45s ease;
}

.repPagerNum:hover,
.repPagerNext:hover,
.repPagerPrev:hover {
  background: rgba(255, 255, 255, 0.15);
}

.repPagerNum.isCurrent {
  background: #fff;
  color: #1a2e63;
  pointer-events: none;
}

.repPagerPrev.isDisabled {
  opacity: 0.3;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .area06 .contTitle {
    font-size: 20px;
  }

  .repList {
    gap: 20px;
  }

  .repPager {
    gap: 8px;
    margin-top: 32px;
  }

  .repPagerNum,
  .repPagerPrev,
  .repPagerNext {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}


/* =========================================================
  Footer
========================================================= */
.footer {
  background: #1a2e63;
  color: #fff;
  padding: 70px 0 40px;
}

.footerCols {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

.footerCol {
  flex: 1;
}

.footerHead {
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 600;
}

.footerOffice,
.footerMail,
.footerTel {
  margin-bottom: 6px;
  font-size: 16px;
}

.footerMail a {
  color: #fff;
  text-decoration: none;
}

.footerInfo {
  margin: 36px 0 0;
}

.footerInfo dt {
  margin-bottom: 12px;
  font-size: 16px;
}

.footerInfo dd {
  margin: 0 0 6px;
  font-size: 16px;
}

.footerLinks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 60px;
  padding-top: 30px;
  text-align: center;
}

.footerLinks p {
  margin: 0;
}

.footerLinks a,
.footerLinks button {
  color: #fff;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 50px 0 30px;
  }

  .footerCols {
    flex-direction: column;
    gap: 50px;
  }

  .footerHead {
    font-size: 16px;
  }

  .footerOffice,
  .footerMail,
  .footerTel,
  .footerInfo dt,
  .footerInfo dd {
    font-size: 14px;
  }

  .footerInfo {
    margin-top: 24px;
  }

  .footerLinks {
    gap: 12px;
    margin-top: 40px;
    padding-top: 24px;
  }
}

/* =========================================================
  Member_Fixed
========================================================= */
.fixedMember {
  position: fixed;
  top: 120px;
  right: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 146px;
  height: 92px;
  padding: 14px 28px 14px 18px;
  background: #ea604b;
  color: #fff;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.fixedMember:hover {
  opacity: 0.85;
  transform: translateY(-3px);
}

.fixedMemberArrow {
  position: absolute;
  top: 50%;
  right: 14px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .fixedMember {
    display: none;
  }
}