/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 27 2025 | 06:39:48 */
/* ==========================
   ボタン
========================== */
.wp-block-button {
  display: block;       /* ブロック要素化 */
  text-align: center;   /* 中身を中央揃え */
}

.wp-block-button__link {
  display: inline-block;
  width: 35%;   /* PC時の幅 */
  text-align: center;
}



/* Common Button Styles */
.button-actions {
    display: flex;
    align-items: center;
    gap: 15px;
	margin-top: 30px;
}

.btn-outline {
    display: inline-flex;      
    justify-content: center;   
    align-items: center; 
    border: 2px solid black;
    background-color: transparent;
	width: 125px;
	height: 40px;
    padding: 0 23px 2px 23px;
    border-radius: 0;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    color: black;
    font-size: 15px;
    line-height: 22.5px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: #fff462;
}

.arrow-icon {
    width: 26px;
    height: 20px;
}

/* スマホ用 */
@media screen and (max-width: 768px) {
  .wp-block-button__link {
    width: 80%;   /* スマホ時の幅 */
    font-size: 14px;
  }
}

/* ==========================
   その他スタイル
========================== */
.narrow-spacing {
  letter-spacing: -2px !important; /* 上書き用 */
}

.wp-block-group .divider {
  max-width: none;
}

.divider {
  width: 100vw;          /* ビューポート幅いっぱい */
  height: 60px;
  background: #0065B2;
  margin: 0 auto;        /* 中央寄せ */
}