@charset "utf-8";

/** resets for pc */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-family: ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, sans-serif;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: subpixel-antialiased;
  color: #333;
}
ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  color: #0064c8;
}
a:hover {
  text-decoration: underline;
  color: #0057af;
}
a:active {
  text-decoration: underline;
  color: #004c98;
}
a:focus {
  outline: none;
}
button {
  appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin: 0;
  border: none;
  box-shadow: none;
  cursor: pointer;
  user-select: none;
}
button:focus {
  outline: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
p {
  margin: 0 0 1em;
  padding: 0;
}
p:last-child {
  margin-bottom: 0;
}
ul + p,
ol + p {
  margin-top: 1em;
}
img {
  vertical-align: top; /*画像下の隙間除去*/
}

/** spacing **/
.mb-80 {
  margin-bottom: 80px;
}
.mb-60 {
  margin-bottom: 60px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-8 {
  margin-bottom: 8px;
}

/** Wrapper */
.Wrapper {
  position: relative;
  min-width: 990px;
}

/** Masthead */
.Masthead--full {
  width: 100%;
  margin: 0 auto 10px;
  background: #fff;
}
.Masthead--990 {
  width: 990px;
  margin: 0 auto 10px;
  background: #fff;
}

/** SettingH1 */
.SettingH1 {
  margin-bottom: 60px;
  padding: 68px 0 20px;
  border-bottom: 1px solid #c3c3c3;
  text-align: left;
}
.SettingH1__title {
  display: block;
  width: 990px;
  margin: 0 auto;
  font-size: 32px;
  font-weight: normal;
  color: #333;
}

/** PromoH1 */
.PromoH1 {
  background: #e76262 url(../img/h1pattern.png) repeat center center;
  background-size: 145px 132px;
  padding: 24px 0;
  font-size: 32px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

/** Tab */
.Tab {
  display: block;
  background: #f7f7f7;
  margin-bottom: 40px;
}
.Tab__list {
  width: 990px;
  margin: 0 auto;
  color: #333;
}
.Tab__item,
.Tab__item--current {
  display: inline-block;
}
.Tab__item--current {
  border-bottom: 4px solid #888;
  font-weight: bold;
}
.Tab__item:hover,
.Tab__item--current:hover {
  background: rgba(0, 0, 0, 0.04);
}
.Tab__item-link,
.Tab__item-link:hover,
.Tab__item-link:active {
  display: inline-block;
  padding: 14px 0;
  color: #333;
}
.Tab__item--current .Tab__item-link {
  padding-bottom: 10px;
}
.Tab__item-text {
  display: inline-block;
  padding: 0 16px;
}
.Tab__item:not(:last-child) .Tab__item-text,
.Tab__item--current:not(:last-child) .Tab__item-text {
  border-right: 1px solid #c3c3c3;
}

/** Contents */
.Contents {
  width: 990px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 24px;
}
.Contents a:visited {
  color: #6f4fd2;
}

/** Navigation */
.Navigation {
  display: block;
  margin-bottom: 40px;
  text-align: left;
}
.Navigation__item {
  display: inline-block;
  margin-bottom: 1em;
}
.Navigation__item:not(:last-child) {
  margin-right: 12px;
  padding-right: 12px;
  border-right: 1px solid #c3c3c3;
}
.Navigation__item-link {
  text-decoration: none;
}

/** PromoH2Section */
.PromoH2Section {
  display: block;
  margin-bottom: 80px;
  text-align: left;
}

/** PromoH2 */
.PromoH2 {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 4px solid #e55151;
  font-size: 22px;
  line-height: 28px;
  font-weight: bold;
  color: #333;
}

/** PromoH3Section */
.PromoH3Section {
  display: block;
  margin-bottom: 60px;
  text-align: left;
}

/** PromoH3 */
.PromoH3 {
  margin-bottom: 20px;
  padding: 9px 0 10px 16px;
  border-left: 6px solid #e55151;
  font-size: 18px;
  line-height: 23px;
  font-weight: bold;
  color: #333;
}
.PromoH3__lead {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 18px;
  font-weight: normal;
}

/** PromoH4Section */
.PromoH4Section {
  display: block;
  margin-bottom: 40px;
  text-align: left;
}

/** PromoH4 */
.PromoH4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

/** Message */
.Message--information,
.Message--warning {
  margin-top: 40px;
  padding: 24px;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
}
.Message--information {
  background: #e5f1fe;
}
.Message--warning {
  background: #fff5e0;
}
.Message--information__title,
.Message--warning__title {
  margin-bottom: 12px;
  padding-left: 32px;
  line-height: 24px;
  font-weight: bold;
}
.Message--information__title {
  background: url(../img/info.svg) no-repeat 0 0;
  background-size: 24px 24px;
}
.Message--warning__title {
  background: url(../img/warning.svg) no-repeat 0 -1px;
  background-size: 24px 24px;
}
.Message__body {
  line-height: 20px;
}

/** Notice */
.Notice {
  display: inline-block;
  background: #f5f5f5;
  padding: 24px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 18px;
  color: #333;
  text-align: left;
}
.Notice__title {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

/** Supplement */
.Supplement {
  font-size: 12px;
  line-height: 18px;
}

/** Button */
.Button--primary,
.Button--primary-xlg,
.Button--primary-lg,
.Button--primary-sm,
.Button--secondary,
.Button--secondary-xlg,
.Button--secondary-lg,
.Button--secondary-sm,
.Button--default,
.Button--default-xlg,
.Button--default-lg,
.Button--default-sm,
.Button--disable,
.Button--disable-xlg,
.Button--disable-lg,
.Button--disable-sm {
  display: inline-block;
  min-height: 76px;
  margin: 8px 0;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 24px;
  font-weight: bold;
  white-space: nowrap;
}
.Button--primary,
.Button--primary-xlg,
.Button--primary-lg,
.Button--primary-sm {
  background: #0064c8;
  color: #fff;
}
.Button--primary:hover,
.Button--primary-xlg:hover,
.Button--primary-lg:hover,
.Button--primary-sm:hover {
  background: #0057af;
  color: #e0e0e0;
}
.Button--primary:active,
.Button--primary-xlg:active,
.Button--primary-lg:active,
.Button--primary-sm:active {
  background: #004c98;
  color: #c2c2c2;
}
.Button--secondary,
.Button--secondary-xlg,
.Button--secondary-lg,
.Button--secondary-sm {
  background: #fff;
  border: 1px solid #0064c8;
  color: #0064c8;
}
.Button--secondary:hover,
.Button--secondary-xlg:hover,
.Button--secondary-lg:hover,
.Button--secondary-sm:hover {
  background: #e0edf9;
}
.Button--secondary:active,
.Button--secondary-xlg:active,
.Button--secondary-lg:active,
.Button--secondary-sm:active {
  background: #c2daf2;
}
.Button--default,
.Button--default-xlg,
.Button--default-lg,
.Button--default-sm {
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #333;
  font-weight: normal;
}
.Button--default:active,
.Button--default-xlg:active,
.Button--default-lg:active,
.Button--default-sm:active {
  background: #ebebeb;
  border: 1px solid #e0e0e0;
  color: #333;
  font-weight: normal;
}
.Button--disable,
.Button--disable-xlg,
.Button--disable-lg,
.Button--disable-sm {
  background: #e6e6e6;
  color: #828282;
  cursor: default;
}
.Button__text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.Button--primary-xlg,
.Button--secondary-xlg,
.Button--default-xlg,
.Button--disable-xlg {
  min-height: 76px;
  padding: 0 24px;
  font-size: 24px;
}
.Button--primary-lg,
.Button--secondary-lg,
.Button--default-lg,
.Button--disable-lg {
  min-height: 44px;
  padding: 0 16px;
  font-size: 16px;
}
.Button--primary-sm,
.Button--secondary-sm,
.Button--default-sm,
.Button--disable-sm {
  min-height: 36px;
  padding: 0 12px;
  font-size: 12px;
}

/** UnorderedList */
.UnorderedList,
.UnorderedList--small,
.UnorderedList--xsmall {
  margin: 0 0 0 20px;
}
.UnorderedList {
  font-size: 16px;
  line-height: 24px;
}
.UnorderedList--small {
  font-size: 14px;
  line-height: 20px;
}
.UnorderedList--xsmall {
  font-size: 12px;
  line-height: 18px;
}
.UnorderedList__item {
  list-style-type: disc;
}
.UnorderedList__item:not(:last-child) {
  margin-bottom: 0.5em;
}

/** OrderedList */
.OrderedList,
.OrderedList--small,
.OrderedList--xsmall {
  margin-left: 32px;
}
.OrderedList {
  font-size: 16px;
  line-height: 24px;
}
.OrderedList--small {
  font-size: 14px;
  line-height: 20px;
}
.OrderedList--xsmall {
  font-size: 12px;
  line-height: 18px;
}
.OrderedList__item {
  list-style-type: decimal;
}
.OrderedList__item:not(:last-child) {
  margin-bottom: 0.5em;
}

/** BracketedOrderedList */
.BracketedOrderedList,
.BracketedOrderedList--small,
.BracketedOrderedList--xsmall {
  margin-left: 32px;
  counter-reset: cnt;
}
.BracketedOrderedList {
  font-size: 16px;
  line-height: 24px;
}
.BracketedOrderedList--small {
  font-size: 14px;
  line-height: 20px;
}
.BracketedOrderedList--xsmall {
  font-size: 12px;
  line-height: 18px;
}
.BracketedOrderedList__item {
  list-style-type: none;
  counter-increment: cnt;
}
.BracketedOrderedList__item::before {
  content: "（" counter(cnt) "）";
  width: 40px;
  margin-left: -40px;
}
.BracketedOrderedList__item:not(:last-child) {
  margin-bottom: 0.5em;
}

/** UnorderedList・OrderedList・BracketedOrderedList共通 */
.UnorderedList__item > [class^="UnorderedList"],
.UnorderedList__item > [class^="OrderedList"],
.UnorderedList__item > [class^="BracketedOrderedList"],
.OrderedList__item > [class^="UnorderedList"],
.OrderedList__item > [class^="OrderedList"],
.OrderedList__item > [class^="BracketedOrderedList"],
.BracketedOrderedList__item > [class^="UnorderedList"],
.BracketedOrderedList__item > [class^="OrderedList"],
.BracketedOrderedList__item > [class^="BracketedOrderedList"] {
  margin-top: 0.5em;
}

/** DefinitionList */
.DefinitionList {
  font-size: 16px;
  line-height: 24px;
}
.DefinitionList--small {
  font-size: 14px;
  line-height: 20px;
}
.DefinitionList--xsmall {
  font-size: 12px;
  line-height: 18px;
}
.DefinitionList__title,
.DefinitionList--small__title,
.DefinitionList--xsmall__title {
  font-weight: bold;
}
.DefinitionList__title {
  margin-bottom: 12px;
}
.DefinitionList--small__title {
  margin-bottom: 8px;
}
.DefinitionList--xsmall__title {
  margin-bottom: 6px;
}
.DefinitionList__description {
  margin-bottom: 24px;
}
.DefinitionList__description:last-child {
  margin-bottom: 0;
}

/** BottomNav */
.BottomNav {
  display: block;
  padding: 40px 0;
  background: #f5f5f5;
  text-align: center;
}
.BottomNav__title {
  display: block;
  font-weight: bold;
}
.BottomNav__list {
  width: 990px;
  margin: 1em auto 0;
  color: #333;
  text-align: left;
}
.BottomNav__item--title,
.BottomNav__item {
  display: inline-block;
  margin-right: 20px;
}
.BottomNav__item:last-child {
  margin-right: 0;
}
.BottomNav__item--title {
  font-weight: bold;
}

/** FooterPc */
.FooterPc {
  display: block;
  padding: 20px 0;
  font-size: 14px;
  text-align: center;
}
.FooterPc__link-item {
  display: inline;
}
.FooterPc__link-item:not(:last-child)::after {
  content: " - ";
}
.FooterPc__copyright {
  font-style: normal;
}

/** BackTop **/
.BackTop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border: 0px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url(../img/pagetop.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 36px 36px;
  z-index: 9999;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 200%;
}
.BackTop:active {
  background-color: rgba(0, 0, 0, 0.5);
}
.BackTop:active {
  background-color: rgba(0, 0, 0, 0.4);
}

/* Setting専用スタイル */
body.Setting {
  height: 100%;
}

.Setting .Wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  height: 100%;
  z-index: 0;
}

.Setting .ColumnBottom {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -webkit-flex: 1;
  -moz-flex: 1;
  flex: 1;
}

.Setting .Contents {
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  -webkit-flex: 1;
  -moz-flex: 1;
  flex: 1;
  align-items: center;
}

.Setting .Contents--body {
  max-width: 700px;
  margin: 0 auto;
}

.Setting .Message--warning__title {
  margin-bottom: 36px;
  padding-left: 44px;
  background-size: 32px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: bold;
  white-space: nowrap;
}

.Setting .Message__body div {
  margin: 0 0 1.5em;
}

.Setting .Message__button {
  text-align: center;
  margin-top: 36px;
}

.Setting .Message__button--column {
  display: inline-flex;
  flex-direction: column;
}

.Setting .Button--primary,
.Setting .Button--secondary,
.Setting .Button--default,
.Setting .Button--disable {
  min-height: 44px;
  line-height: 44px;
  font-size: 16px;
}
