@charset "UTF-8";
/* CSS Document */

:root {
  --primary-color: #FF8D45;
  --secondary-color: #00A0E9;
  --tertiary-color: #F877C2;
  --primary-bgColor: #FFFEF0;
  --secondary-bgColor: #F4FAFF;
  --border-color: #E5E5E5;
  --link-color: #1d3994;
  --btn-color: #FB847B;
  --bold: 600;
}

h1 {
  font-size: 24px;
  font-weight: var(--bold);
  margin: 20px 0;
}

.Cointainer-yellow {
  border: solid 1px var(--border-color);
  background-color: var(--primary-bgColor);
  border-radius: 5px;
  margin-bottom: 40px;
  padding: 60px;
}

.Cointainer-blue {
  border: solid 1px var(--border-color);
  background-color: var(--secondary-bgColor);
  border-radius: 5px;
  margin-bottom: 40px;
  padding: 60px;
}

.Heading-h2 {
  position: relative;
  font-size: 22px;
  line-height: 1.4;
  font-weight: var(--bold);
  text-align: center;
  margin-bottom: 50px;
}

.Heading-h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 70px;
  height: 3px;
}

.Cointainer-yellow .Heading-h2::after {
  background-color: var(--primary-color);
}

.Cointainer-blue .Heading-h2::after,
.Cointainer-blue .Heading-h4::after {
  background-color: var(--secondary-color);
}

.Caption {
  text-align: center;
  margin-bottom: 20px;
}

.Heading-h3 {
  font-size: 22px;
  border-bottom: solid 1px #000;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.Heading-h4 {
  position: relative;
  font-size: 16px;
  line-height: 1.4;
  font-weight: var(--bold);
  text-align: center;
  margin-bottom: 30px;
}

.Heading-h4::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 50px;
  height: 3px;
  background-color: #000;
}

.Heading-h4 small {
  display: block;
  font-size: 14px;
}

/* -----------start__阪急交通社のメールマガジン「阪急たびマガ」とは----------- */
.Point__group {
  display: flex;
  justify-content: space-between;
}

.Point__group-inner {
  background-color: #fff;
  border-radius: 5px;
  width: calc(90% / 3);
  padding: 20px 20px 10px;
}

.Point__group-inner strong {
  color: var(--primary-color);
}

.Subheading-point {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: var(--bold);
  text-align: center;
  margin-top: 10px;
}

.Subheading-point:after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
}

.point-01 {
  color: var(--primary-color);
}

.point-01:after {
  background-image: url(/attending/mail_club/images/icn__point-01.svg);
  width: 79px;
  height: 54px;
  margin-bottom: 20px;
}

.point-02 {
  color: var(--secondary-color);
}

.point-02:after {
  background-image: url(/attending/mail_club/images/icn__point-02.svg);
  width: 100px;
  height: 69px;
  margin-bottom: 20px;
}

.point-03 {
  color: var(--tertiary-color);
}

.point-03:after {
  background-image: url(/attending/mail_club/images/icn__point-03.svg);
  width: 90px;
  height: 68px;
  margin-bottom: 10px;
}

.Caption-point {
  line-height: 1.6;
}

.Point__dTxt {
  display: block;
  margin-bottom: 10px;
}

.Point__link-group {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.Point__link-text {
  position: relative;
  font-size: 14px;
  color: var(--link-color);
  font-weight: var(--bold);
  padding-right: 1.6rem;
}

.Point__link-text:after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  position: absolute;
  top: 50%;
  right: 0;
  border-top: 0.2rem solid var(--link-color);
  border-right: 0.2rem solid var(--link-color);
  transform: translateY(-50%) rotate(135deg);
}
/* -----------end__阪急交通社のメールマガジン「阪急たびマガ」とは----------- */

/* -----------start__新機能！インターネット会員限定メールマガジンカテゴリ設定----------- */
.Setting__group {
  border: solid 1px #333;
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 20px;
  padding: 30px 30px 30px 50px;
}

.Setting__caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.Setting__caption::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/attending/mail_club/images/il__setting.svg);
  width: 256px;
  height: 111px;
}

.Setting__dTxt {
  padding-left: 16px;
  text-indent: -16px;
}

.Setting__diff-outer {
  margin-top: 10px;
}

.Setting__diff-link {
  font-size: 18px;
  font-weight: var(--bold);
  color: var(--link-color);
}
/* -----------end__新機能！インターネット会員限定メールマガジンカテゴリ設定----------- */

/* -----------start__「阪急たびマガ」読者登録----------- */
.Register__group {
  border: solid 1px #333;
  background-color: #fff;
  margin-bottom: 30px;
  padding: 70px;
}

.Register__group-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}

.Register__group-inner.other {
  flex-wrap: wrap; 
  justify-content: space-between;
  align-items: baseline;
}

.Reguster__heading {
  width: 130px;
  white-space: nowrap;
  margin-right: 30px;
}

.Register__group-inner.other .Reguster__heading {
  width: 100%;
}

.Register__agree-txt {
  font-size: 13px;
  color: #f00;
}

.Reguster__dept-dTxt {
  font-size: 13px;
  margin-left: 30px;
}

.Register__agree-link {
  font-size: 14px;
  font-weight: var(--bold);
  color: var(--link-color);
}

.Form__checkbox-label {
  display: flex;
  align-items: center;
}

.Form__checkbox-mark {
  color: #f00;
  margin-right: 5px;
}

.Form__checkbox-txt {
  font-size: 13px;
  line-height: 1.4;
}

.Register__group .Common__btn-link {
  width: 100%;
}

.Register__dTxt {
  padding-left: 16px;
  text-indent: -16px;
}

.Register__txt,
.Register__dTxt {
  line-height: 1.8;
}

.Register-link {
  font-size: 16px;
  font-weight: var(--bold);
  color: var(--link-color);
}
/* -----------end__「阪急たびマガ」読者登録----------- */

/* -----------start__登録情報の変更・配信停止----------- */
.Change__dTxt {
  font-size: 14px;
  margin-bottom: 5px;
}

.Change-outer {
  margin-bottom: 10px;
}

.Change-link {
  font-size: 14px;
  font-weight: var(--bold);
  color: var(--link-color);
}

.Change__txt {
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
}

.Change__group {
  display: flex;
  justify-content: space-between;
}

.Change__group-inner {
  border: solid 1px #333;
  background-color: #fff;
  width: 443px;
  margin-bottom: 30px;
  padding: 25px 15px;
}

.Subheading-change {
  font-size: 14px;
  margin-bottom: 5px;
}

.Change__group .Form__input-text {
  border: solid 1px #E3E3E3;
  margin-bottom: 10px;
}

.Change__group .Common-button {
  width: 100%;
}

.Change__group .Common__btn-link {
  width: 100%;
}
/* -----------end__登録情報の変更・配信停止----------- */

/* -----------start__メールマガジンバックナンバー／よくある質問----------- */
.Other__group {
  display: flex;
  justify-content: space-between;
}

.Other__group-inner {
  width: calc(96% / 2);
  border-radius: 0;
}

.Other__group-inner .Heading-h2 {
  margin-bottom: 20px;
}

.Other__group-inner .Heading-h2::after {
  bottom: -10px;
}

.Other__txt {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}
/* -----------end__メールマガジンバックナンバー／よくある質問----------- */

/* -----------start__まだまだあります！阪急交通社のメールマガジン----------- */
.Magazine__group {
  display: flex;
  justify-content: space-between;
}

.Magazine__group-inner {
  border: solid 1px #333;
  background-color: #fff;
  border-radius: 10px;
  width: 433px;
  margin-bottom: 30px;
  padding: 35px 30px;
}

.Magazine__banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.Magazine__banner img {
	width: 136px;
	height: 102px;
	image-rendering: -webkit-optimize-contrast;
}

.magazine__name {
  font-size: 16px;
  font-weight: var(--bold);
}

.Magazine__caption {
  font-size: 14px;
  line-height: 1.8;
  margin: 10px 0 20px;
}
/* -----------end__まだまだあります！阪急交通社のメールマガジン----------- */

/* -----------start__ボタン----------- */
.Common-button__group {
  display: flex;
  justify-content: center;
}

.Common-button__group-2col {
  display: flex;
  justify-content: space-between;
}

.Common-button {
  width: 378px;
}

.Common__btn-link {
  position: relative;
  display: block;
  border: solid 1px var(--border-color);
  background-color: var(--btn-color);
  border-radius: 5px;
  color: #fff;
  font-weight: var(--bold);
  text-align: center;
  padding: 10px 0;
}

.Common__btn-link::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(-45deg);
}

.Common__btn-link:hover{
	color: #fff;
    transition: all 0.3s;
    opacity: 0.5;
}

a:hover{
	text-decoration:underline;
}

.Common__btn-link:hover{
	text-decoration:none;
}

/* -----------end__ボタン----------- */

/* -----------start__フォーム----------- */
.Form__input-text {
  position: relative;
  border: solid 1px #333;
  width: 100%;
}

.Form__select-text {
  position: relative;
  border: solid 1px #333;
}

.Form__select-text::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-80%) rotate(45deg);
}

#Mailmagazine__form input[type="text"] {
  width: 100%;
  font-size: 16px;
  padding: 10px 15px;
}

#Mailmagazine__form select {
  width: 140px;
  font-size: 16px;
  padding: 10px 15px;
}

.Form__checkbox-outer {
  margin-bottom: 30px;
}

.Search__checkbox-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 40px;
  margin-bottom: 10px;
  padding: 8px 10px;
  border: 1px solid #c3c3c3;
  border-radius: 4px;
}

.Search__checkbox-btn {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  vertical-align: -5px;
  border-radius: 4px;
  border: 2px solid #888;
  background-color: white;
}

#Mailmagazine__form input[type="checkbox"] {
  display: none;
}

.Form__checkbox-btn {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  border: 1px solid #333;
  background-color: white;
}

#Mailmagazine__form input[type="checkbox"]:checked + .Form__checkbox-label .Form__checkbox-btn {
  border: none;
  background-color: var(--primary-color);
}

#Mailmagazine__form input[type="checkbox"]:checked + .Form__checkbox-label .Form__checkbox-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 14px;
  height: 8px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: translate(-50%, -70%) rotate(-45deg);
}
/* -----------end__フォーム----------- */