@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap");
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/*共通の処理*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .tb-pc {
    display: none !important;
  }
  .tb {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tb-sp {
    display: none !important;
  }
  .tb {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .tb {
    display: block !important;
  }
}
@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
}

/*body設定*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #000;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 1.7;
  font-size: 1.6rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  /*任意でフォントサイズを指定*/
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 500;
  }
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.5rem;
  }
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 5mm;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: 0.2s;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
a:not([class]) {
  color: #77b627;
}

a:not([class]):hover {
  color: #51880c;
}

a:not([class]):active {
  color: #51880c;
}

/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*clearfix*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*禁則処理の追加*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/** Selection */
::-moz-selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}
::-moz-selection,
::selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
a {
  transition: 0.5s;
}

/*マージン*/
.mlr-05 {
  margin-right: -0.5em;
  margin-left: -0.5em;
}

.mlr-03 {
  margin-right: -0.3em;
  margin-left: -0.3em;
}

.mlr-01 {
  margin-right: -0.1em;
  margin-left: -0.1em;
}

.mb00 {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 599px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
}

.mb05 {
  margin-bottom: 5px !important;
}
@media screen and (max-width: 599px) {
  .mb05 {
    margin-bottom: 5px !important;
  }
}

.mb10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 599px) {
  .mb10 {
    margin-bottom: 5px !important;
  }
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 10px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 599px) {
  .mb20 {
    margin-bottom: 10px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mb30 {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 15px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mb40 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 20px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 25px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 1024px) {
  .mb70 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 30px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 30px !important;
  }
}

@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1140px;
    -webkit-print-color-adjust: exact;
  }
  /*　------- ↓その他参考例　---------
  .header {
      position: relative !important; //ヘッダー固定fixedを解除
  }
  .header .header-inner {
      width: 100% !important; //サイト幅を解除
  }
  .page-title {
      margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
      width: 100% !important; //サイト幅を解除
  }
  .breadcrumbs-list {
      width: 100% !important; //サイト幅を解除
  }
  .global-nav {
      width: 100%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
@page {
  size: A4;
  margin: 12.7mm 9.7mm;
}
.header-wrapper {
  width: 100%;
  height: 60px;
  background-repeat: no-repeat;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 1024px) {
  .header-wrapper {
    height: 40px;
  }
}
.header-wrapper.ft {
  background-image: url(../img/logo_ft.svg);
  background-size: 200px auto;
  background-position: 20px 15px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper.ft {
    background-size: 140px auto;
    background-position: 10px 10px;
  }
}
.header-wrapper.nt {
  background-image: url(../img/logo_nt.svg);
  background-size: 200px auto;
  background-position: 20px 15px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper.nt {
    background-size: 140px auto;
    background-position: 10px 10px;
  }
}
.header-wrapper.vw {
  background-image: url(../img/logo_vw.svg);
  background-size: 330px auto;
  background-position: 15px 15px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper.vw {
    background-size: 220px auto;
    background-position: 10px 10px;
  }
}
.header-wrapper.none {
  display: none;
}

.main-wrapper {
  width: 100%;
  position: relative;
}
.main-wrapper img {
  margin: 0 auto;
  width: auto;
  max-width: 100%;
  display: block;
}

.present-wrapper {
  padding: 80px 50px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .present-wrapper {
    padding: 30px 20px 0;
  }
}
@media screen and (max-width: 599px) {
  .present-wrapper {
    padding: 20px 4px 0;
  }
}
.present-wrapper__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .present-wrapper__inner {
    margin-bottom: 10px;
  }
}
.present-wrapper__inner__title {
  margin-bottom: 20px;
  padding-left: 0.06em;
  font-size: 32px;
  line-height: 1.7;
  color: #111;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .present-wrapper__inner__title {
    margin-bottom: 15px;
    padding-left: 0.06em;
    font-size: 28px;
  }
}
@media screen and (max-width: 599px) {
  .present-wrapper__inner__title {
    margin-bottom: 5px;
    font-size: 5.5vw;
    line-height: 1.5;
  }
}
.present-wrapper__inner__sub {
  margin: 0 auto 40px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .present-wrapper__inner__sub {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .present-wrapper__inner__sub {
    margin-bottom: 15px;
  }
}
.present-wrapper__inner__sub__text {
  font-size: 20px;
  line-height: 1.01;
  color: #111;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: 400;
  display: inline-block;
  position: relative;
}
.present-wrapper__inner__sub__text::before {
  content: "";
  top: 12px;
  left: -115px;
  width: 100px;
  height: 1px;
  background-color: #999;
  position: absolute;
}
.present-wrapper__inner__sub__text::after {
  content: "";
  top: 12px;
  right: -115px;
  width: 100px;
  height: 1px;
  background-color: #999;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .present-wrapper__inner__sub__text {
    font-size: 18px;
  }
  .present-wrapper__inner__sub__text::before {
    top: 10px;
    left: -100px;
    width: 90px;
    height: 1px;
  }
  .present-wrapper__inner__sub__text::after {
    top: 10px;
    right: -100px;
    width: 90px;
    height: 1px;
  }
}
@media screen and (max-width: 599px) {
  .present-wrapper__inner__sub__text {
    font-size: 4vw;
  }
  .present-wrapper__inner__sub__text::before {
    top: 7px;
    left: -50px;
    width: 40px;
  }
  .present-wrapper__inner__sub__text::after {
    top: 7px;
    right: -50px;
    width: 40px;
  }
}
.present-wrapper__inner__photos__item {
  width: calc(50% - 5px);
  float: right;
}
@media screen and (max-width: 599px) {
  .present-wrapper__inner__photos__item {
    width: calc(50% - 2px);
  }
}
.present-wrapper__inner__photos__item:first-child {
  float: left;
}

#ui-datepicker-div {
  display: none;
}

select {
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  appearance: none; /* 標準のスタイルを無効にする */
}

::-ms-expand { /* select要素のデザインを無効にする（IE用） */
  display: none;
}

input::-moz-placeholder {
  color: #aaa;
}

input::placeholder {
  color: #aaa;
}

/* IE */
input:-ms-input-placeholder {
  color: #999;
}

/* Edge */
input::-ms-input-placeholder {
  color: #999;
}

.input-text {
  padding-left: 25px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  color: #111;
  background-color: #fff;
  border: none;
  border-radius: 0;
}
@media screen and (max-width: 599px) {
  .input-text {
    padding-left: 15px;
    height: 46px;
  }
}

.select {
  padding-left: 25px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  color: #111;
  background-color: #fff;
  background-image: url(../img/arrow_select.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 100% 50%;
  border: none;
  border-radius: 0;
}
@media screen and (max-width: 599px) {
  .select {
    padding-left: 15px;
    height: 46px;
  }
}

.input-hidden {
  display: none;
}

.input-radio {
  padding-left: 10px;
  width: 100%;
  height: 60px;
  font-size: 16px;
  color: #111;
  line-height: 58px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-family: 400;
  text-align: center;
  background-color: #fff;
  border-radius: 0;
  display: block;
  position: relative;
  cursor: pointer;
  transition: 0.5s;
}
.input-radio::before {
  content: "";
  top: calc(50% - 12px);
  left: 18px;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  position: absolute;
}
.input-radio::after {
  content: "";
  top: calc(50% - 5px);
  left: 25px;
  width: 10px;
  height: 10px;
  background-color: #111;
  border-radius: 50%;
  position: absolute;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .input-radio {
    padding-left: 15px;
    height: 46px;
    line-height: 44px;
  }
  .input-radio::before {
    top: calc(50% - 9px);
    left: 12px;
    width: 18px;
    height: 18px;
  }
  .input-radio::after {
    top: calc(50% - 3px);
    left: 18px;
    width: 6px;
    height: 6px;
  }
}
@media screen and (min-width: 1025px) {
  .input-radio:hover {
    color: #fff;
    background-color: #111;
  }
}

input[type=radio].input-hidden:checked + .input-radio {
  color: #fff;
  background-color: #e60012;
}
input[type=radio].input-hidden:checked + .input-radio::after {
  opacity: 1;
}

.input-radio02 {
  padding: 10px 10px 10px 40px;
  width: 100%;
  height: 60px;
  line-height: 1.3;
  font-size: 14px;
  color: #111;
  font-family: "Noto Sans JP", sans-serif !important;
  font-family: 400;
  background-color: #fff;
  border-radius: 0;
  display: block;
  position: relative;
  cursor: pointer;
  transition: 0.5s;
  display: flex;
  align-items: center;
}
.input-radio02::before {
  content: "";
  top: calc(50% - 10px);
  left: 12px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  position: absolute;
}
.input-radio02::after {
  content: "";
  top: calc(50% - 5px);
  left: 17px;
  width: 10px;
  height: 10px;
  background-color: #111;
  border-radius: 50%;
  position: absolute;
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  .input-radio02:hover {
    color: #fff;
    background-color: #abc;
  }
}

input[type=radio].input-hidden:checked + .input-radio02 {
  color: #fff;
  background-color: #abc;
}
input[type=radio].input-hidden:checked + .input-radio02::after {
  opacity: 1;
}

.addres-btn {
  margin-left: 10px;
  width: 200px;
  height: 60px;
  font-size: 16px;
  line-height: 58px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  background-color: #e60012;
  display: block;
  cursor: pointer;
  transition: 0.5s;
  float: left;
}
@media screen and (max-width: 599px) {
  .addres-btn {
    margin-left: 0;
    width: calc(60% - 5px);
    height: 46px;
    line-height: 44px;
    float: right;
  }
}
@media screen and (min-width: 1025px) {
  .addres-btn:hover {
    background-color: #111;
  }
}

.other-btn {
  margin: 40px auto 0;
  max-width: 100%;
  width: 100%;
  height: 60px;
  font-size: 16px;
  line-height: 58px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  background-color: #111;
  display: block;
  cursor: pointer;
  transition: 0.5s;
  border: none;
  border-radius: 0;
}
@media screen and (max-width: 599px) {
  .other-btn {
    margin: 20px auto 0;
    width: 100%;
    height: 46px;
    line-height: 44px;
  }
}
@media screen and (min-width: 1025px) {
  .other-btn:hover {
    background-color: #111;
  }
}

label.close {
  width: 320px;
  background-color: #abc;
}
@media screen and (max-width: 599px) {
  label.close {
    width: 280px;
  }
}

.form-acc-wrapper {
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .form-acc-wrapper {
    margin-bottom: 30px;
  }
}
.form-acc-wrapper__inner {
  margin-top: 30px;
}
@media screen and (max-width: 599px) {
  .form-acc-wrapper__inner {
    margin-top: 15px;
  }
}

.agree-btn {
  margin: 0 auto 0;
  max-width: 100%;
  width: 360px;
  height: 70px;
  font-size: 16px;
  line-height: 68px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  background-color: #abc;
  display: block;
  cursor: pointer;
  transition: 0.5s;
  border: none;
  border-radius: 0;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .agree-btn:hover {
    background-color: #111;
  }
}
.agree-btn::before {
  content: "";
  top: calc(50% - 10px);
  left: 25px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  position: absolute;
}
.agree-btn::after {
  content: "";
  top: calc(50% - 4px);
  left: 31px;
  width: 8px;
  height: 8px;
  background-color: #111;
  position: absolute;
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 599px) {
  .agree-btn {
    width: 100%;
    height: 60px;
    line-height: 58px;
  }
  .agree-btn::before {
    top: calc(50% - 8px);
    left: 20px;
    width: 16px;
    height: 16px;
  }
  .agree-btn::after {
    top: calc(50% - 3px);
    left: 25px;
    width: 6px;
    height: 6px;
  }
}
@media screen and (min-width: 1025px) {
  .agree-btn:hover {
    background-color: #111;
  }
}

input[type=checkbox].input-hidden:checked + .agree-btn {
  background-color: #111;
}
input[type=checkbox].input-hidden:checked + .agree-btn::after {
  opacity: 1;
}

.ui-datepicker-trigger {
  margin-left: 10px;
  padding: 0 !important;
  width: 60px;
  height: 60px;
  float: left;
  border: none;
  border-radius: 0;
}
@media screen and (max-width: 599px) {
  .ui-datepicker-trigger {
    margin-left: 0;
    width: 46px;
    height: 46px;
    float: right;
  }
}

.dp-form-item__form__btn-calendar {
  width: 100%;
  height: 100%;
  background-color: #e60012;
  background-image: url(../img/icon_calendar.svg);
  background-repeat: no-repeat;
  background-position: 50% 48%;
  background-size: 50% auto;
  display: block;
  cursor: pointer;
  transition: 0.5s;
}
@media screen and (min-width: 1025px) {
  .dp-form-item__form__btn-calendar:hover {
    background-color: #111;
  }
}

.input-radio-products {
  padding: 30px;
  width: 100%;
  height: auto;
  font-size: 18px;
  line-height: 1.01;
  color: #111;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  text-align: center;
  background-color: #fff;
  border-radius: 0;
  display: block;
  position: relative;
  cursor: pointer;
  transition: 0.5s;
}
@media screen and (max-width: 950px) {
  .input-radio-products {
    padding: 15px 15px 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 599px) {
  .input-radio-products {
    padding: 10px 15px 20px;
    font-size: 14px;
  }
}
.input-radio-products::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 5px solid #abc;
  position: absolute;
  opacity: 0;
  transition: 0.5s;
}
.input-radio-products__circle {
  margin: 0 auto 10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: block;
  position: relative;
}
.input-radio-products__circle::before {
  content: "";
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background-color: #111;
  border-radius: 50%;
  position: absolute;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .input-radio-products__circle {
    margin: 0 auto 5px;
    width: 16px;
    height: 16px;
  }
  .input-radio-products__circle::before {
    top: calc(50% - 4px);
    left: calc(50% - 4px);
    width: 8px;
    height: 8px;
  }
}
@media screen and (min-width: 1025px) {
  .input-radio-products:hover::before {
    opacity: 1;
  }
}

input[type=radio].input-hidden:checked + .input-radio-products::before {
  opacity: 1;
}
input[type=radio].input-hidden:checked + .input-radio-products .input-radio-products__circle::before {
  opacity: 1;
}

.contents-wrapper {
  padding: 90px 50px 150px;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper {
    padding: 50px 20px 100px;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrapper {
    padding: 30px 0 40px;
  }
}
.contents-wrapper__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}
.contents-wrapper__inner__title {
  margin-bottom: 30px;
  padding-left: 0.06em;
  font-size: 40px;
  line-height: 1.4;
  color: #e60012;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper__inner__title {
    margin-bottom: 20px;
    padding-left: 0.05em;
    font-size: 32px;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__title {
    margin-bottom: 10px;
    font-size: 5.8vw;
  }
}
.contents-wrapper__inner__box {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 60px;
  background-color: #f3f3f3;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper__inner__box {
    margin-top: 40px;
    margin-bottom: 50px;
    padding: 50px;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
  }
}
.contents-wrapper__inner__box__title {
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.3;
  color: #111;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
}
.contents-wrapper__inner__box__title::before {
  content: "";
  top: 9px;
  left: 0;
  width: 22px;
  height: 4px;
  background-color: #e60012;
  position: absolute;
}
.contents-wrapper__inner__box__title::after {
  content: "";
  top: 9px;
  left: 0;
  width: 8px;
  height: 4px;
  background-color: #111;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper__inner__box__title {
    margin-bottom: 15px;
  }
  .contents-wrapper__inner__box__title::before {
    top: 8px;
  }
  .contents-wrapper__inner__box__title::after {
    top: 8px;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__title {
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 45px;
    font-size: 16px;
  }
  .contents-wrapper__inner__box__title::before {
    top: 8px;
    width: 15px;
    height: 3px;
  }
  .contents-wrapper__inner__box__title::after {
    top: 8px;
    width: 6px;
    height: 3px;
  }
}
.contents-wrapper__inner__box__title .must {
  margin-left: 10px;
  padding-left: 0.3em;
  width: 50px;
  height: 20px;
  font-size: 13px;
  line-height: 19px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-align: center;
  background-color: #e60012;
  vertical-align: 10%;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__title .must {
    margin-left: 0;
    top: 0;
    right: 0;
    width: 40px;
    height: 18px;
    font-size: 12px;
    line-height: 17px;
    position: absolute;
  }
}
.contents-wrapper__inner__box__free {
  margin-left: 30px;
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__free {
    margin-left: 0;
  }
}
.contents-wrapper__inner__box__products {
  margin-top: -5px;
  display: flex;
  justify-content: flex-start;
  align-content: stretch;
  flex-wrap: wrap;
}
.contents-wrapper__inner__box__products__item {
  margin-top: 5px;
  margin-left: 5px;
  width: calc((100% - 10px) / 3);
}
.contents-wrapper__inner__box__products__item:nth-child(3n-2) {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__products__item {
    width: calc((100% - 5px) / 2);
  }
  .contents-wrapper__inner__box__products__item:nth-child(3n-2) {
    margin-left: 5px;
  }
  .contents-wrapper__inner__box__products__item:nth-child(2n-1) {
    margin-left: 0;
  }
}
.contents-wrapper__inner__box__products__item__img {
  margin-bottom: 10px;
  width: 100%;
  height: 160px;
}
@media screen and (max-width: 950px) {
  .contents-wrapper__inner__box__products__item__img {
    height: 15vw;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__products__item__img {
    margin-bottom: 5px;
    height: 20vw;
  }
}
.contents-wrapper__inner__box__products__item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contents-wrapper__inner__box__item {
  padding: 40px 0;
  border-bottom: 1px dotted #bbb;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper__inner__box__item {
    padding: 30px 0;
  }
}
.contents-wrapper__inner__box__item:first-child {
  padding-top: 0;
}
.contents-wrapper__inner__box__item:last-child {
  border-bottom: none;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper__inner__box__item:last-child {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__item {
    padding: 25px 0;
  }
  .contents-wrapper__inner__box__item:first-child {
    padding-top: 5px;
  }
}
.contents-wrapper__inner__box__item__title {
  padding-left: 30px;
  width: 250px;
  height: 60px;
  font-size: 18px;
  line-height: 59px;
  color: #111;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  float: left;
  position: relative;
}
.contents-wrapper__inner__box__item__title::before {
  content: "";
  top: 27px;
  left: 0;
  width: 22px;
  height: 4px;
  background-color: #e60012;
  position: absolute;
}
.contents-wrapper__inner__box__item__title::after {
  content: "";
  top: 27px;
  left: 0;
  width: 8px;
  height: 4px;
  background-color: #111;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper__inner__box__item__title {
    margin-bottom: 15px;
    width: 100%;
    float: none;
    height: auto;
    line-height: 1.01;
  }
  .contents-wrapper__inner__box__item__title::before {
    top: 8px;
  }
  .contents-wrapper__inner__box__item__title::after {
    top: 8px;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__item__title {
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 16px;
  }
  .contents-wrapper__inner__box__item__title::before {
    top: 7px;
    width: 15px;
    height: 3px;
  }
  .contents-wrapper__inner__box__item__title::after {
    top: 7px;
    width: 6px;
    height: 3px;
  }
}
.contents-wrapper__inner__box__item__title .small-text {
  display: block;
  font-size: 1.3rem;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper__inner__box__item__title .small-text {
    display: inline;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__item__title .small-text {
    margin-top: 7px;
    display: block;
  }
}
.contents-wrapper__inner__box__item__title .must {
  top: 19px;
  right: 0;
  padding-left: 0.3em;
  width: 50px;
  height: 20px;
  font-size: 13px;
  line-height: 19px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-align: center;
  background-color: #e60012;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper__inner__box__item__title .must {
    margin-left: 10px;
    top: auto;
    right: auto;
    position: relative;
    display: inline-block;
    vertical-align: 10%;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__item__title .must {
    margin-left: 0;
    top: 0;
    right: 0;
    width: 40px;
    height: 18px;
    font-size: 12px;
    line-height: 17px;
    position: absolute;
  }
}
.contents-wrapper__inner__box__item__inner {
  width: calc(100% - 280px);
  float: right;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper__inner__box__item__inner {
    padding-left: 30px;
    width: 100%;
    float: none;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__item__inner {
    padding-left: 0;
  }
}
.contents-wrapper__inner__box__item__inner__type {
  width: 100%;
  max-width: 490px;
}
.contents-wrapper__inner__box__item__inner__type__item {
  width: calc(50% - 5px);
  float: right;
}
.contents-wrapper__inner__box__item__inner__type__item:first-child {
  float: left;
}
.contents-wrapper__inner__box__item__inner__year {
  width: 140px;
  float: left;
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__item__inner__year {
    width: 30%;
  }
}
.contents-wrapper__inner__box__item__inner__day {
  margin-left: 10px;
  width: 120px;
  float: left;
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__item__inner__day {
    margin-left: 5px;
    width: calc((70% - 46px - 15px) / 2);
  }
}
.contents-wrapper__inner__box__item__inner__time {
  width: 260px;
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__item__inner__time {
    width: 100%;
  }
}
.contents-wrapper__inner__box__item__inner__post {
  width: 140px;
  float: left;
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__item__inner__post {
    width: 40%;
  }
}
.contents-wrapper__inner__box__item__inner__caution {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 1em;
  font-size: 14px;
  line-height: 1.4;
  color: #111;
  text-indent: -1em;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__item__inner__caution {
    margin-top: 6px;
    font-size: 12px;
  }
}
.contents-wrapper__inner__box__item__inner .mt10 {
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__item__inner .mt10 {
    margin-top: 5px;
  }
}
.contents-wrapper__inner__box__privacy {
  padding: 40px;
  width: 100%;
  height: 250px;
  font-size: 14px;
  line-height: 1.8;
  color: #111;
  text-align: justify;
  background-color: #fff;
  border: 5px solid #ddd;
  overflow-y: scroll;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper__inner__box__privacy {
    padding: 30px;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__privacy {
    padding: 15px;
    height: 180px;
    font-size: 13px;
    border: 3px solid #ddd;
  }
}
.contents-wrapper__inner__box__text-center {
  margin: 40px 0;
  font-size: 16px;
  line-height: 1.5;
  color: #111;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__box__text-center {
    margin: 15px 0;
    font-size: 14px;
  }
}
.contents-wrapper__inner__btn-wrapper {
  display: block;
  position: relative;
}
.contents-wrapper__inner__btn-wrapper__btn {
  margin: 0 auto 0;
  max-width: calc(100% - 40px);
  width: 360px;
  height: 70px;
  font-size: 16px;
  line-height: 68px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700;
  text-align: center;
  background-color: #e60012;
  display: block;
  cursor: pointer;
  transition: 0.5s;
  border: none;
  border-radius: 0;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .contents-wrapper__inner__btn-wrapper__btn:hover {
    background-color: #111;
  }
}
.contents-wrapper__inner__btn-wrapper__btn::before {
  content: "";
  top: calc(50% - 5px);
  right: 30px;
  border-width: 6px 0 6px 9px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  position: absolute;
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__btn-wrapper__btn {
    width: 100%;
    height: 60px;
    line-height: 58px;
  }
  .contents-wrapper__inner__btn-wrapper__btn::before {
    top: calc(50% - 4px);
    right: 20px;
    border-width: 4px 0 4px 7px;
  }
}
@media screen and (min-width: 1025px) {
  .contents-wrapper__inner__btn-wrapper__btn:hover {
    background-color: #111;
  }
}
.contents-wrapper__inner__btn-wrapper__modify {
  top: 0;
  left: 0;
  max-width: calc(100% - 40px);
  width: 240px;
  height: 70px;
  font-size: 16px;
  line-height: 68px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700;
  text-align: center;
  background-color: #abc;
  display: block;
  cursor: pointer;
  transition: 0.5s;
  border: none;
  border-radius: 0;
  position: absolute;
  box-sizing: border-box;
}
@media screen and (min-width: 1025px) {
  .contents-wrapper__inner__btn-wrapper__modify:hover {
    background-color: #111;
  }
}
.contents-wrapper__inner__btn-wrapper__modify::before {
  content: "";
  top: calc(50% - 5px);
  left: 30px;
  border-width: 6px 9px 6px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper__inner__btn-wrapper__modify {
    padding-left: 20px;
    width: 170px;
  }
}
@media screen and (max-width: 599px) {
  .contents-wrapper__inner__btn-wrapper__modify {
    margin: 10px auto 0;
    padding-left: 0;
    top: auto;
    left: auto;
    width: 100%;
    height: 60px;
    line-height: 58px;
    position: relative;
  }
  .contents-wrapper__inner__btn-wrapper__modify::before {
    top: calc(50% - 4px);
    left: 20px;
    border-width: 4px 7px 4px 0;
  }
}
@media screen and (min-width: 1025px) {
  .contents-wrapper__inner__btn-wrapper__modify:hover {
    background-color: #111;
  }
}

.present-list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .present-list {
    margin-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .present-list {
    margin-top: 20px;
  }
}
.present-list li {
  width: calc((99.9% - 40px) / 3);
  margin-left: 20px;
  margin-bottom: 20px;
  background-color: #fff;
}
.present-list li:nth-child(3n+1) {
  margin-left: 0;
}
@media screen and (max-width: 599px) {
  .present-list li {
    width: calc((99.9% - 10px) / 2);
    margin-left: 10px;
  }
  .present-list li:nth-child(3n+1) {
    margin-left: 10px;
  }
  .present-list li:nth-child(2n+1) {
    margin-left: 0;
  }
}

.accc .contents-wrapper__inner__box__item:first-child {
  padding-top: 40px;
}
@media screen and (max-width: 1024px) {
  .accc .contents-wrapper__inner__box__item:first-child {
    padding-top: 30px;
  }
}
@media screen and (max-width: 599px) {
  .accc .contents-wrapper__inner__box__item:first-child {
    padding-top: 5px;
  }
}

.errors-message {
  margin-bottom: 30px;
  padding: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #e60012;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  text-align: center;
  background-color: #fff;
  border: 2px solid #e60012;
}
@media screen and (max-width: 599px) {
  .errors-message {
    margin: 0 20px 15px;
    padding: 15px;
    font-size: 14px;
    text-align: justify;
  }
}

.errors-text {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #e60012;
}
@media screen and (max-width: 599px) {
  .errors-text {
    margin-top: 5px;
    font-size: 14px;
  }
}

.errors-box {
  border: 1px solid #e60012 !important;
}
.errors-box.present-list {
  border: none !important;
}
.errors-box.present-list li {
  border: 1px solid #e60012 !important;
}

.confirm-text {
  padding-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .confirm-text {
    padding-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .confirm-text {
    padding-left: 20px;
    font-size: 14px;
  }
}

.confirm-other-title {
  margin: 40px 0 0;
  width: 100%;
  height: 60px;
  font-size: 16px;
  line-height: 58px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  text-align: center;
  background-color: #111;
}

.complete-text {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .complete-text {
    font-size: 14px;
  }
}

.copyright {
  width: 100%;
  height: 50px;
  font-size: 14px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  background-color: #111;
}
@media screen and (max-width: 599px) {
  .copyright {
    height: 40px;
    font-size: 12px;
    line-height: 40px;
  }
}

.wysiwyg {
  /*デフォルトの処理*/
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  /*各テンプレートを囲むbox【必須】*/
  /*本文テキスト*/
  /*写真の処理*/
  /*テーブル*/
  /*youtube*/
  /*以下テンプレート外*/
}
@media screen and (max-width: 599px) {
  .wysiwyg {
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.8;
  }
}
.wysiwyg a {
  color: #e60012;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .wysiwyg a:hover {
    color: #e60012;
    text-decoration: none;
  }
}
.wysiwyg img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
}
.wysiwyg .box {
  margin-top: 20px;
  margin-bottom: 30px;
  *zoom: 1;
}
.wysiwyg .box:after {
  content: "";
  display: table;
  clear: both;
}
@media screen and (max-width: 599px) {
  .wysiwyg .box {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
.wysiwyg .text {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  font-size: 16px;
  line-height: 2em;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .wysiwyg .text {
    font-size: 15px;
    line-height: 1.8em;
  }
}
.wysiwyg .text--mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", serif;
  font-weight: 300;
}
.wysiwyg .photo-3 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wysiwyg .photo-3::after {
  content: none;
}
.wysiwyg .photo-3 li {
  width: calc((100% - 40px) / 3);
  list-style-type: none;
}
@media screen and (max-width: 599px) {
  .wysiwyg .photo-3 li {
    display: block;
    margin-top: 10px;
    width: 100%;
  }
  .wysiwyg .photo-3 li:first-child {
    margin-top: 0;
  }
}
.wysiwyg .photo-2 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wysiwyg .photo-2::after {
  content: none;
}
.wysiwyg .photo-2 li {
  width: calc(50% - 10px);
  list-style-type: none;
}
@media screen and (max-width: 599px) {
  .wysiwyg .photo-2 li {
    width: calc((100% - 5px) / 2);
  }
}
.wysiwyg .photo-1 {
  width: 100%;
  text-align: center;
}
.wysiwyg .table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
.wysiwyg .table thead th {
  padding: 15px 10px;
  font-size: 15px;
  line-height: 1.3em;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background-color: #e60012;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table thead th {
    padding: 7px 5px 5px;
    font-size: 12px;
  }
}
.wysiwyg .table th {
  padding: 15px 10px;
  font-size: 15px;
  line-height: 1.3em;
  color: #111;
  text-align: center;
  vertical-align: middle;
  background-color: #f3f3f3;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table th {
    padding: 7px 5px 5px;
    font-size: 12px;
  }
}
.wysiwyg .table td {
  padding: 15px;
  font-size: 15px;
  line-height: 1.3em;
  color: #111;
  text-align: justify;
  vertical-align: middle;
  border: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table td {
    padding: 7px 5px 5px;
    font-size: 12px;
  }
}
.wysiwyg .youtube-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  position: relative;
}
.wysiwyg .youtube-wrapper::before {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}
.wysiwyg .youtube-wrapper iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}
.wysiwyg .left {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.wysiwyg .center {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.wysiwyg .right {
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
.wysiwyg h1 {
  font-size: 240%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
.wysiwyg h2 {
  font-size: 180%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  border-bottom: none;
}
.wysiwyg h3 {
  font-size: 140%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
  color: #111;
}
.wysiwyg h4 {
  font-size: 120%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  color: #111;
}
.wysiwyg h5 {
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg h6 {
  font-size: 82%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg ul {
  padding-left: 1em;
}
.wysiwyg ul li {
  list-style-type: disc;
}
.wysiwyg ol {
  padding-left: 1em;
}
.wysiwyg ol li {
  list-style-type: decimal;
}
.wysiwyg blockquote {
  padding-left: 1em;
}
.wysiwyg table {
  font-size: 100%;
  border-collapse: collapse;
}
.wysiwyg hr {
  display: block;
}
.wysiwyg em {
  font-style: italic !important;
}
.wysiwyg strong {
  font-weight: bold !important;
}
.wysiwyg em strong, .wysiwyg strong em {
  font-style: italic !important;
  font-weight: bold !important;
}/*# sourceMappingURL=style.css.map */