@charset "UTF-8";

/**
 * Tigers-net
 *
 * @copyright      Copyright (C) iTEC Hankyu Hanshin Co., Ltd.
 * @since          2025/03/27
 * @version        1.00
 */

 .yearBox {
  display: flex;
  /* Flexboxを利用して要素を配置 */
  flex-direction: column;
  /* 縦方向に要素を並べる */
  align-items: flex-start;
  /* 左揃え */
  background: #fff;
  /* 背景色を白に設定 */
  border: 1px solid #ccc;
  /* 薄いグレーのボーダーを追加 */
  margin: 60px auto 20px;
  /* 上下のマージンを設定し、中央揃え */
  padding: 0 20px 20px 20px;
  /* 内側のパディングを設定 */
}

p.title {
  margin: -26px 0 0 0;
  /* タイトルの上マージンを調整 */
  text-align: center;
  /* タイトルを中央揃え */
}

.yearContent {
  display: flex;
  /* Flexboxを利用して横並びにする */
  width: 100%;
  /* 幅を100%に設定 */
  align-items: center;
  /* 縦方向に中央揃え */
}

.yearTxt {
  flex: 7;
  /* 7の比率でスペースを占有 */
  padding-right: 20px;
  /* 右側にスペースを追加 */
}

.yearBtnBox {
  flex: 3;
  /* 3の比率でスペースを占有 */
  display: flex;
  /* Flexboxを利用してボタンを中央に配置 */
  flex-direction: column;
  /* 縦方向に要素を並べる */
  align-items: center;
  /* 縦方向に中央揃え */
}

#yearwrPriceRight {
  margin: 0 0 20px 0;
  font-size: 300%;
  font-weight: bold;
  color: #3078c2;
}

#yearwrPriceRightUnit {
  margin: 0 10px;
  font-weight: bold;
}

.yearCheck {
  background: #FFFBD9;
  /* 背景色を薄い黄色に設定 */
  padding: 15px;
  /* 内側のパディングを設定 */
  border: 1px solid #8C8C8C;
  /* ボタンのボーダーを設定 */
  width: 80%
}

.lightBlueBox {
  background-color: #e0f7fa;
  /* ライトブルーの背景 */
  padding: 10px;
  /* 内側のパディングを設定 */
  border-radius: 5px;
  /* 角を丸くする */
  margin-top: 10px;
  /* 上マージンを設定 */
}

.radioInline {
  width: calc(100% - 50px) !important;
}