﻿@charset "UTF-8";


.flex{
display:flex;
gap:2em;
}

.flex .pic{
width:130%;
}

.flex .pic img{
width:100%;
}


@media (max-width: 600px) {
.flex{
display:block;
}
.flex .pic{
width:auto;
}

}

.link{
}

ul.link li {
    position: relative;
    list-style: none; /* デフォルトの点を消す */
    padding-left: 15px; /* 三角の分だけ余白を作る */
	margin:0 0 0 1em;
}

ul.link li a {
    color:#333;
	
}


ul.link li::before {
    content: '';
    position: absolute;
    top: 11px;
    left: 0;
    display: inline-block;
    border-style: solid;
    border-width: 6px 0 6px 9px;
    border-color: transparent transparent transparent #066FC7;
}

ul.link li::after {
    content: "\f08e";                /* 外部リンクアイコン */
    font-family: "Font Awesome 6 Free"; /* 重要 */
    font-weight: 900;                /* solid を使う場合 */
    font-size: 0.85em;
    margin-left: 4px;
    color: #333;
}

#login .login-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
	padding: 2em 0 0 0;
}


#login .login-buttons a {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 20px;
    border-radius: 6px;

    text-decoration: none;
    font-weight: 600;
    font-size: 17px;

    transition: 0.3s;
}


#login .login-btn {
    background: #003366;
    color: #fff;
}

#login .login-btn:hover {
    background: #b2b2b2;
}


#login .pdf-btn {
    background: #fff;
    color: #003366;
    border: 2px solid #003366;
}

#login .pdf-btn:hover {
    background: #003366;
    color: #fff;
}


#login .login-buttons i {
    font-size: 20px;
}


@media (max-width: 600px) {
#login .login-title {
        font-size: 24px;
    }

#login .login-buttons a {
        font-size: 15px;
        padding: 12px 16px;
    }
}


#flow{
}

#flow .flow-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#flow .flow-step {
    position: relative;
    padding: 25px 20px 20px 65px;
    background: #ffffff;
    border-left: 5px solid #003366;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

#flow .step-number {
    position: absolute;
    top: 20px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: #003366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 50%;
    font-weight: 700;
}

#flow .step-title {
    margin: 0 0 10px;
    color: #003366;
    font-size: 20px;
    font-weight: 600;
}

#flow .flow-step p {
    line-height: 1.7;
    margin-bottom: 10px;
}




@media (max-width: 600px) {
#flow .flow-step {
        padding: 20px 15px 15px 55px;
    }

#flow .step-number {
        width: 32px;
        height: 32px;
        font-size: 16px;
        left: 10px;
    }

#flow .step-title {
        font-size: 18px;
    }
}

#days{
}

#days figure.pic img {
    width: 100%;
    margin: 0 auto;
}


@media (min-width: 641px) {
#days .u-sp {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .u-pc {
    display: none !important;
  }
}



/* Contact (page bottom) */
.contactBlock {
  margin-top: 56px;
  padding: 28px 16px;
  background: #f6f8fb;
}

.contactBlock__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contactBlock__title {
  margin: 0 0 10px;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0f2f4a;
}

.contactBlock__lead {
  margin: 0 0 16px;
  color: #2a3b47;
  font-size: 14px;
  line-height: 1.8;
}

.contactCard {
  background: #fff;
  border: 1px solid #e5ecf3;
  border-radius: 14px;
  padding: 16px 16px;
}

.contactCard__name {
  font-weight: 700;
  color: #0f2f4a;
  font-size: 15px;
  margin-bottom: 12px;
}

.contactCard__list {
  margin: 0;
}

.contactCard__row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid #edf2f7;
}

.contactCard__row:first-child {
  border-top: none;
  padding-top: 0;
}

.contactCard__row dt {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #5a6b77;
  letter-spacing: 0.03em;
}

.contactCard__row dd {
  margin: 0;
  color: #24323c;
  font-size: 14px;
  line-height: 1.7;
}

.contactCard__mail {
  color: #0f5fa6;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 95, 166, 0.35);
  padding-bottom: 1px;
}

.contactCard__mail:hover,
.contactCard__mail:focus-visible {
  border-bottom-color: rgba(15, 95, 166, 0.75);
}

.contactCard__note {
  color: #5a6b77;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 520px) {
  .contactBlock {
    margin-top: 44px;
    padding: 24px 12px;
  }

  .contactCard {
    padding: 14px 12px;
  }

  .contactCard__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contactCard__row dt {
    font-size: 11px;
  }
}


#important{
}

#important ul{
padding:0 1em 1em 1.5em;
}

#important ul li{
padding:0.5em 0;
}


/* =========================
   gap 非対応環境（古いEdge/IEモード等）フォールバック
   - gapが効かなくても必ず間隔が出る
========================= */

/* login-buttons：縦並びの間隔 */
#login .login-buttons{
  display: flex;
  flex-direction: column;
  gap: 15px; /* 対応ブラウザ用 */
}

/* gapが死んでも必ず空く */
#login .login-buttons > * + *{
  margin-top: 15px;
}

/* flow-steps：縦並びの間隔 */
#flow .flow-steps{
  display: flex;
  flex-direction: column;
  gap: 30px; /* 対応ブラウザ用 */
}

/* gapが死んでも必ず空く */
#flow .flow-steps > * + *{
  margin-top: 30px;
}

/* 念のため：flow-step内のh3直後などが詰まる環境用 */
#flow .flow-step .step-title{
  margin: 0 0 10px;
}

/* mobileでも同じ動作（gapが効くならmarginは上書きされないが、
   二重が嫌なら下の@supportsでmarginを0にする） */
@supports (gap: 1px){
  #login .login-buttons > * + *{ margin-top: 0; }
  #flow .flow-steps > * + *{ margin-top: 0; }
}



