﻿@charset "utf-8";

/*〓〓 ◇追加 〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            font-size: 18px;
            font-weight: bold;
            text-transform: uppercase;
            color: #fff;
            background: linear-gradient(135deg, #ff416c, #ff4b2b);
            border: none;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
            box-shadow: 0px 4px 15px rgba(255, 75, 43, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            background: linear-gradient(135deg, #ff4b2b, #ff416c);
            transform: translateY(-3px);
            box-shadow: 0px 6px 20px rgba(255, 75, 43, 0.5);
        }

        .cta-button:active {
            transform: translateY(1px);
            box-shadow: 0px 2px 10px rgba(255, 75, 43, 0.2);
        }

  /* 250604 button */
  .buttons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px; /* ボタン間の余白 */
    margin: 20px 0;
  }

  /* first button */
  .primary-cta {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    padding: 18px 0;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.3);
    text-align: center;
  }

  .primary-cta:hover {
    background: linear-gradient(135deg, #ff4b2b, #ff416c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 75, 43, 0.5);
  }

  .primary-cta:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(255, 75, 43, 0.2);
  }

  /* other button */
  .secondary-cta {
    display: inline-block;
    width: 100%;
    max-width: 360px;
    padding: 14px 0;
    font-size: 16px;
    font-weight: bold;
    color: #ff4b2b;
    background: #fff;
    border: 2px solid #ff4b2b;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    text-align: center;
  }

  .secondary-cta:hover {
    background: #ff4b2b;
    color: #fff;
    transform: translateY(-2px);
  }

  .secondary-cta:active {
    transform: translateY(1px);
  }

  /* Image Link */
  .image-link img {
    width: 98%;
    max-width: 400px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
  }

  .image-link img:hover {
    transform: scale(1.02);
  }

/* <div class="text-center">中央寄せしたいテキスト</div> */
.text-center {
    text-align: center;
}

/* <div class="center-block">中央に寄せたいブロック要素</div> */
.center-block {
    margin: 0 auto;
    display: block;
    width: fit-content; /* 幅が必要な場合 */
}
body {
	font-size: 16px;
}

table{
	width:100%;
	font-size:15px;
	margin:10px 0;
	border-collapse: collapse;
	border-spacing:0px;
}
th{
	background-color:#EBEBEB;
	padding:5px;
}
td{
	background-color:#FFFFFF;
	padding:5px;
}
table,td,th{
	border:solid 1px #CCC;
	word-wrap : break-word;
	overflow-wrap : break-word;
	text-align:left;
}
