@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;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

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

	リセット : 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: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  color: #333;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 1.5;
  font-size: 1.6rem;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  /*任意でフォントサイズを指定*/
}
@media screen and (max-width: 599px) {
  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 {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

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

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

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

a:not([class]):visited {
  color: #333;
}

/*すべての要素の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 {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -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;
}

/*iOSでのsubmit, buttonのデザインをリセットするCSS*/
button,
input[type=submit],
input[type=button],
input[type=search] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}
button::focus,
input[type=submit]::focus,
input[type=button]::focus,
input[type=search]::focus {
  outline-offset: -2px;
}

/* Form */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

button,
input[type=submit],
input[type=button],
input[type=radio],
input[type=checkbox],
label,
select {
  cursor: pointer;
}

/** Form Select IE 11 */
select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

/** Selection */
::-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;
  }
}
/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

/*位置*/
.txt-right {
  text-align: right;
}

.txt-left {
  text-align: left;
}

.txt-center {
  text-align: center;
}

/*フォント*/
.fzl {
  font-size: 2.1rem;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .fzl {
    font-size: 1.8rem;
  }
}

.f-red {
  color: #D80000 !important;
}

.f-color {
  color: #26b6dd !important;
}

/*マージン*/
.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: 10px !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 15px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

@media print {
  .tb-sp,
  .tb834-sp,
  .sp {
    display: none !important;
  }
  body {
    width: 1000px;
    -webkit-print-color-adjust: exact;
  }
  .side {
    position: absolute !important;
  }
  /*　------- ↓その他参考例　---------
  .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%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
/*ヘッダー*/
.footer {
  text-align: center;
  background-color: #FFFFFF;
}
.footer__contact {
  border-top: 1px solid #040000;
  padding: 20px 30px;
}
@media screen and (max-width: 599px) {
  .footer__contact {
    padding: 20px 20px;
  }
}
@media screen and (max-width: 320px) {
  .footer__contact {
    padding: 20px 16px;
  }
}
.footer__contact__ttl {
  color: #040000;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .footer__contact__ttl {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 320px) {
  .footer__contact__ttl {
    font-size: 1.8rem;
  }
}
.footer__contact__tel-list {
  display: inline-block;
  max-width: 430px;
}
@media screen and (max-width: 599px) {
  .footer__contact__tel-list {
    max-width: 286px;
  }
}
.footer__contact__tel-list > li {
  margin-bottom: 8px;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .footer__contact__tel-list > li {
    margin-bottom: 12px;
  }
}
.footer__contact__tel-list > li:last-child {
  margin-bottom: 0;
}
.footer__contact__tel-list__dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.footer__contact__tel-list__dl dt {
  text-align: center;
  margin-right: 8px;
}
@media screen and (max-width: 599px) {
  .footer__contact__tel-list__dl dt {
    margin-right: 5px;
  }
}
.footer__contact__tel-list__dl dt span {
  display: inline-block;
  width: 110px;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.25;
  vertical-align: top;
  background-color: #040000;
  padding: 3px 0;
  border-radius: 28px;
}
@media screen and (max-width: 599px) {
  .footer__contact__tel-list__dl dt span {
    width: 90px;
    font-size: 1.1rem;
    padding: 1px 0 3px;
  }
}
.footer__contact__tel-list__dl dd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__contact__tel-list__dl--tel dd {
  color: #040000;
  font-weight: bold;
  line-height: 1;
}
.footer__contact__tel-list__dl--tel dd .footer__contact__tel-list__dl--tel__link {
  color: #040000;
  font-size: 2.8rem;
  font-family: "Oswald", sans-serif;
  vertical-align: text-bottom;
  margin-right: 7px;
}
@media screen and (max-width: 599px) {
  .footer__contact__tel-list__dl--tel dd .footer__contact__tel-list__dl--tel__link {
    font-size: 2.1rem;
  }
}
.footer__contact__tel-list__dl--tel dd .footer__contact__tel-list__dl--tel__kako {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 3px;
}
@media screen and (max-width: 599px) {
  .footer__contact__tel-list__dl--tel dd .footer__contact__tel-list__dl--tel__kako {
    font-size: 1.1rem;
    margin-top: 5px;
  }
}
.footer__contact__tel-list__dl--time dd {
  color: #040000;
  font-weight: bold;
  line-height: 1;
}
.footer__contact__tel-list__dl--time dd .footer__contact__tel-list__dl--time__hours {
  display: inline-block;
  font-size: 2.1rem;
  font-weight: bold;
  vertical-align: top;
  margin-right: 7px;
}
@media screen and (max-width: 599px) {
  .footer__contact__tel-list__dl--time dd .footer__contact__tel-list__dl--time__hours {
    font-size: 1.7rem;
  }
}
.footer__contact__tel-list__dl--time dd .footer__contact__tel-list__dl--time__kako {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 3px;
}
@media screen and (max-width: 599px) {
  .footer__contact__tel-list__dl--time dd .footer__contact__tel-list__dl--time__kako {
    font-size: 1.1rem;
    margin-top: 5px;
  }
}
.footer__stop {
  border-top: 1px solid #040000;
  padding: 20px 30px;
}
@media screen and (max-width: 599px) {
  .footer__stop {
    padding: 10px 20px;
  }
}
.footer__stop img {
  max-width: 60%;
}
@media screen and (max-width: 599px) {
  .footer__stop img {
    width: 100%;
    max-width: 272px;
  }
}
.footer__copy {
  color: #FFF;
  font-size: 1.2rem;
  line-height: 1;
  background-color: #114c29;
  padding: 20px 30px;
}
@media screen and (max-width: 599px) {
  .footer__copy {
    font-size: 1.1rem;
    padding: 20px 20px;
  }
}
.footer__food {
  border-bottom: #000000 dotted 1px;
  padding: 30px;
}
@media screen and (max-width: 599px) {
  .footer__food {
    padding: 20px;
  }
}
.footer__food img {
  max-width: 100%;
}
@media screen and (max-width: 599px) {
  .footer__food img {
    width: 100%;
    max-width: 600px;
  }
}

/*ボタン*/
.btn-top {
  display: block;
  position: relative;
  width: 100%;
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  background-color: #D80000;
  padding: 20px 20px 20px 70px;
  border-radius: 5px;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .btn-top {
    font-size: 2rem;
    padding: 20px 20px 20px 55px;
  }
}
@media screen and (max-width: 320px) {
  .btn-top {
    font-size: 1.8rem;
    padding: 15px 10px 15px 45px;
  }
}
.btn-top::before {
  position: absolute;
  content: "";
  top: 0;
  left: 14px;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  border-style: solid;
  border-width: 2px;
  border-color: #FFF;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .btn-top::before {
    width: 20px;
    height: 20px;
    border-style: solid;
    border-width: 2px;
    border-color: #FFF;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 320px) {
  .btn-top::before {
    width: 16px;
    height: 16px;
    border-style: solid;
    border-width: 2px;
    border-color: #FFF;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.btn-top:hover {
  background-color: #ffab00;
}

.btn-submit {
  display: block;
  position: relative;
  width: 100%;
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background-color: #D80000;
  padding: 30px 20px 30px 70px;
  border-radius: 5px;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .btn-submit {
    font-size: 2rem;
    padding: 22px 20px 22px 55px;
  }
}
@media screen and (max-width: 320px) {
  .btn-submit {
    font-size: 1.8rem;
    padding: 20px 10px 20px 45px;
  }
}
.btn-submit::before {
  position: absolute;
  content: "";
  top: 0;
  left: 14px;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  border-style: solid;
  border-width: 2px;
  border-color: #FFF;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .btn-submit::before {
    width: 20px;
    height: 20px;
    border-style: solid;
    border-width: 2px;
    border-color: #FFF;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 320px) {
  .btn-submit::before {
    width: 16px;
    height: 16px;
    border-style: solid;
    border-width: 2px;
    border-color: #FFF;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.btn-submit:hover {
  background-color: #ffab00;
}

.btn-receipt {
  display: block;
  position: relative;
  width: 100%;
  color: #ec7972;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  background-color: #FFFFFF;
  border: #ec7972 solid 3px;
  padding: 20px 20px 20px 40px;
  border-radius: 5px;
  box-sizing: border-box;
  transition: 0.5s;
}
@media print, screen and (min-width: 600px) {
  .btn-receipt {
    max-width: 370px;
  }
}
@media screen and (max-width: 599px) {
  .btn-receipt {
    font-size: 1.8rem;
    border: #ec7972 solid 2px;
    padding: 18px 20px 18px 40px;
  }
}
@media screen and (max-width: 320px) {
  .btn-receipt {
    font-size: 1.6rem;
  }
}
.btn-receipt::before {
  position: absolute;
  content: "";
  top: 0;
  left: 14px;
  bottom: 0;
  margin: auto;
  transition: 0.5s;
  width: 22px;
  height: 22px;
  border-style: solid;
  border-width: 2px;
  border-color: #ec7972;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .btn-receipt::before {
    width: 18px;
    height: 18px;
    border-style: solid;
    border-width: 2px;
    border-color: #ec7972;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 320px) {
  .btn-receipt::before {
    width: 16px;
    height: 16px;
    border-style: solid;
    border-width: 2px;
    border-color: #ec7972;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.btn-receipt:hover {
  color: #FFFFFF;
  background-color: #ec7972;
}
.btn-receipt:hover::before {
  border-color: #FFFFFF;
}

.btn-add {
  display: block;
  position: relative;
  width: 100%;
  max-width: 200px;
  color: #333;
  font-size: 1.4rem;
  line-height: 14px;
  text-decoration: none;
  background-color: #eeeeee;
  border: #cecece solid 2px;
  padding: 13px 5px;
  margin-left: 1em;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .btn-add {
    width: 60%;
    font-size: 1.2rem;
    line-height: 12px;
    padding: 8px 0;
  }
}
@media screen and (max-width: 320px) {
  .btn-add {
    width: 45%;
    font-size: 1rem;
    line-height: 10px;
  }
}
.btn-add:hover {
  background-color: #dddddd;
}

.btn-apply {
  display: block;
  position: relative;
  width: 100%;
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background-color: #D80000;
  padding: 30px 30px 30px 60px;
  border-radius: 5px;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .btn-apply {
    font-size: 2rem;
    padding: 22px 20px 22px 35px;
  }
}
.btn-apply::before {
  position: absolute;
  content: "";
  top: 0;
  left: 14px;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  border-style: solid;
  border-width: 2px;
  border-color: #FFF;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .btn-apply::before {
    width: 20px;
    height: 20px;
    border-style: solid;
    border-width: 2px;
    border-color: #FFF;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 320px) {
  .btn-apply::before {
    width: 16px;
    height: 16px;
    border-style: solid;
    border-width: 2px;
    border-color: #FFF;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.btn-apply:hover {
  background-color: #ffab00;
}

.btn-edit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background-color: #bbbbbb;
  padding: 30px 30px 30px 60px;
  border-radius: 5px;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .btn-edit {
    font-size: 1.8rem;
    padding: 17px 20px 17px 35px;
  }
}
.btn-edit::before {
  position: absolute;
  content: "";
  top: 0;
  left: 14px;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  border-style: solid;
  border-width: 2px;
  border-color: #FFF;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .btn-edit::before {
    width: 16px;
    height: 16px;
    border-style: solid;
    border-width: 2px;
    border-color: #FFF;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.btn-edit:hover {
  background-color: #ffab00;
}

.btn-home {
  display: block;
  position: relative;
  width: 100%;
  color: #D80000;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background-color: #fff1f1;
  border: #D80000 solid 3px;
  padding: 30px 40px 30px 50px;
  border-radius: 5px;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .btn-home {
    font-size: 2rem;
    border: #D80000 solid 2px;
    padding: 22px 35px 22px 40px;
  }
}
@media screen and (max-width: 320px) {
  .btn-home {
    font-size: 1.8rem;
    padding: 20px 25px 20px 30px;
  }
}
.btn-home::before {
  position: absolute;
  content: "";
  top: 0;
  left: 14px;
  bottom: 0;
  margin: auto;
  transition: 0.5s;
  width: 30px;
  height: 30px;
  border-style: solid;
  border-width: 2px;
  border-color: #D80000;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .btn-home::before {
    width: 20px;
    height: 20px;
    border-style: solid;
    border-width: 2px;
    border-color: #D80000;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 320px) {
  .btn-home::before {
    width: 16px;
    height: 16px;
    border-style: solid;
    border-width: 2px;
    border-color: #D80000;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
.btn-home:hover {
  color: #FFFFFF;
  background-color: #D80000;
}
.btn-home:hover::before {
  border-color: #FFFFFF;
}

.btn-yubin {
  display: block;
  position: relative;
  width: 100%;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  background-color: #222222;
  padding: 15px 20px 15px 45px;
  border-radius: 5px;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .btn-yubin {
    font-size: 1.6rem;
    text-align: left;
  }
}
@media screen and (max-width: 320px) {
  .btn-yubin {
    font-size: 1.5rem;
    padding: 12px 10px 12px 40px;
  }
}
.btn-yubin::before {
  position: absolute;
  content: "";
  top: 0;
  left: 14px;
  bottom: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  border-style: solid;
  border-width: 2px;
  border-color: #FFF;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .btn-yubin::before {
    width: 12px;
    height: 12px;
    border-style: solid;
    border-width: 1px;
    border-color: #FFF;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 320px) {
  .btn-yubin::before {
    left: 13px;
  }
}
.btn-yubin:hover {
  background-color: #ecb000;
}

.btn-papper {
  display: inline-block;
  position: relative;
  color: #c10e23;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  background-color: #FFFFFF;
  border: #c10e23 solid 2px;
  padding: 15px 20px 15px 45px;
  border-radius: 5px;
}
@media screen and (max-width: 599px) {
  .btn-papper {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 320px) {
  .btn-papper {
    font-size: 1.5rem;
    padding: 12px 15px 12px 40px;
  }
}
.btn-papper::before {
  position: absolute;
  content: "";
  top: 0;
  left: 14px;
  bottom: 0;
  margin: auto;
  transition: 0.5s;
  width: 14px;
  height: 14px;
  border-style: solid;
  border-width: 2px;
  border-color: #c10e23;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
  .btn-papper::before {
    width: 12px;
    height: 12px;
    border-style: solid;
    border-width: 2px;
    border-color: #c10e23;
    border-left: none;
    border-bottom: none;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 320px) {
  .btn-papper::before {
    left: 13px;
  }
}
.btn-papper:hover {
  color: #FFFFFF;
  background-color: #c10e23;
}
.btn-papper:hover::before {
  border-color: #FFFFFF;
}

.cvArea {
  position: relative;
  background-color: #FFFFFF;
  padding: 45px 30px 40px;
}
@media screen and (max-width: 599px) {
  .cvArea {
    padding: 35px 20px 30px;
  }
}
.cvArea::before {
  position: absolute;
  content: "";
  top: 0;
  left: calc((99.9% - 54px) / 2);
  border-width: 22px 27px 0 27px;
  border-style: solid;
}
@media screen and (max-width: 599px) {
  .cvArea::before {
    left: calc((99.9% - 46px) / 2);
    border-width: 18px 23px 0 23px;
  }
}
.cvArea__inr {
  margin-left: auto;
  margin-right: auto;
}
.cvArea__point {
  margin-bottom: 30px;
}
.cvArea__point__inr {
  max-width: 1000px;
  text-align: center;
  background-color: #F7F7F7;
  border: #EEEEEE solid 10px;
  padding: 30px 20px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .cvArea__point__inr {
    border: #EEEEEE solid 8px;
    padding: 20px 15px;
  }
}
.cvArea__point__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .cvArea__point__ttl {
    font-size: 1.6rem;
  }
}
.cvArea__point__text a {
  text-decoration: underline;
}
.cvArea__point__text a:hover {
  text-decoration: none;
}
.cvArea__caution {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .cvArea__caution {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
}
.cvArea__caution__note {
  color: #D80000;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .cvArea__caution__note {
    font-size: 1.7rem;
    margin-bottom: 3px;
  }
}
.cvArea__caution__ank {
  position: relative;
  display: inline-block;
  color: #333;
  text-decoration: underline;
  padding-right: 21px;
}
.cvArea__caution__ank::before {
  position: absolute;
  content: "";
  top: 5px;
  right: 0;
  width: 16px;
  height: 16px;
  background-color: #000;
  border-radius: 50%;
}
.cvArea__caution__ank::after {
  position: absolute;
  content: "";
  top: 11px;
  right: 5px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-width: 1px;
  border-color: #FFF;
  border-left: none;
  border-bottom: none;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cvArea__caution__ank:hover {
  text-decoration: none;
}
.cvArea__2col-btn {
  width: 100%;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.cvArea__2col-btn--edit {
  margin-right: 4%;
}
@media screen and (max-width: 599px) {
  .cvArea__2col-btn--edit {
    width: 70%;
    margin: 20px auto 0;
  }
}
.cvArea--top::before {
  border-color: #7cb52b transparent transparent transparent;
}
.cvArea--top .cvArea__inr {
  max-width: 470px;
}
.cvArea--top .cvArea__inr--hd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  max-width: 860px;
}
@media screen and (max-width: 599px) {
  .cvArea--top .cvArea__inr--hd {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 470px;
  }
}
.cvArea--form::before {
  border-color: #7cb52b transparent transparent transparent;
}
.cvArea--form .cvArea__inr {
  max-width: 470px;
}
.cvArea--form .cvArea__inr--conf {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  max-width: 860px;
}
@media screen and (max-width: 599px) {
  .cvArea--form .cvArea__inr--conf {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 470px;
  }
}

.hl01 {
  position: relative;
  color: #671a31;
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .hl01 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 320px) {
  .hl01 {
    font-size: 2.6rem;
  }
}
.hl01::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #671a31;
  margin: auto;
}
@media screen and (max-width: 599px) {
  .hl01::before {
    height: 2px;
  }
}
.hl01__inr {
  position: relative;
  display: inline-block;
  background-color: #FFFFFF;
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 599px) {
  .hl01__inr {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 320px) {
  .hl01__inr {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.hl01--cpform {
  color: #FFFFFF;
}
.hl01--cpform::before {
  background-color: #FFFFFF;
}
.hl01--cpform .hl01__inr {
  background-color: #7cb52b;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 599px) {
  .hl01--cpform .hl01__inr {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.hl02 {
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  background-color: #e3007f;
  padding: 10px 5px;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .hl02 {
    font-size: 1.8rem;
    padding: 8px 5px;
    margin-bottom: 20px;
  }
}
.hl02__sub {
  display: block;
  font-size: 1.3rem;
  margin-top: 2px;
}
@media screen and (max-width: 599px) {
  .hl02__sub {
    font-size: 1.1rem;
  }
}

.contents-wrap {
  position: relative;
}
.contents-wrap::before {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/common/bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.contents-wrap__inr {
  position: relative;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.side {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  width: calc((100% - 640px) / 2);
  height: 100%;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .side {
    padding: 0;
  }
}
@media screen and (max-width: 599px) {
  .side {
    display: none !important;
  }
}
.side--left {
  left: 0;
}
.side--right {
  right: 0;
}

@media screen and (max-width: 1024px) {
  .side-left-box {
    display: none !important;
  }
}
.side-left-box__img img {
  width: 100%;
  max-width: 226px;
}

@media screen and (max-width: 1024px) {
  .side-right-box {
    display: none !important;
  }
}
.side-right-box__img img {
  width: 100%;
  max-width: 251px;
}

.detailArea {
  padding: 0 24px 40px;
}
@media screen and (max-width: 599px) {
  .detailArea {
    background-color: #fbf8e7;
    padding: 30px 20px 30px;
  }
}
.detailArea__caution {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 599px) {
  .detailArea__caution {
    margin-top: 30px;
  }
}
.detailArea__caution__text {
  display: inline-block;
  color: #D80000;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  background-color: #ffffff;
  border: #D80000 solid 2px;
  padding: 8px 24px;
  border-radius: 40px;
}
@media screen and (max-width: 599px) {
  .detailArea__caution__text {
    font-size: 1.3rem;
  }
}

.detailArea-box {
  background-color: #ffffff;
}
.detailArea-box__ttl {
  color: #ffffff;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  background-color: #e3007f;
  padding: 8px 30px;
}
@media screen and (max-width: 599px) {
  .detailArea-box__ttl {
    font-size: 2rem;
  }
}
.detailArea-box__ttl__sub {
  font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
  .detailArea-box__ttl__sub {
    display: block;
    font-size: 1.2rem;
    margin-top: 3px;
  }
}
.detailArea-box__inr {
  line-height: 1.4;
  padding: 25px 30px;
}
@media screen and (max-width: 599px) {
  .detailArea-box__inr {
    padding: 20px 20px;
  }
}
.detailArea-box__inr__name {
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .detailArea-box__inr__name {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 320px) {
  .detailArea-box__inr__name {
    font-size: 2.3rem;
  }
}
.detailArea-box__inr__name__sub {
  font-size: 1.9rem;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .detailArea-box__inr__name__sub {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 320px) {
  .detailArea-box__inr__name__sub {
    font-size: 1.3rem;
  }
}
.detailArea-box__inr__name02 {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  border: #333333 solid 1px;
  padding: 5px 8px;
}
@media screen and (max-width: 599px) {
  .detailArea-box__inr__name02 {
    font-size: 1.4rem;
  }
}
.detailArea-box__inr__name-list > li {
  position: relative;
  padding-left: 23px;
  margin-bottom: 5px;
}
@media screen and (max-width: 599px) {
  .detailArea-box__inr__name-list > li {
    padding-left: 21px;
  }
}
.detailArea-box__inr__name-list > li::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #26b6dd;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .detailArea-box__inr__name-list > li::before {
    top: 9px;
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 320px) {
  .detailArea-box__inr__name-list > li::before {
    top: 6px;
  }
}
.detailArea-box__inr__name-list > li:last-child {
  margin-bottom: 0 !important;
}
.detailArea-box__inr__sche {
  font-size: 2.2rem;
  font-weight: 800;
}
@media screen and (max-width: 599px) {
  .detailArea-box__inr__sche {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 320px) {
  .detailArea-box__inr__sche {
    font-size: 1.6rem;
  }
}
.detailArea-box__inr__sche__num {
  display: inline-block;
  font-size: 3.4rem;
  font-family: "Open Sans", sans-serif;
  line-height: 0.8;
  padding-left: 0.1em;
  padding-right: 0.1em;
}
@media screen and (max-width: 599px) {
  .detailArea-box__inr__sche__num {
    font-size: 3rem;
  }
}
@media screen and (max-width: 320px) {
  .detailArea-box__inr__sche__num {
    font-size: 2.8rem;
  }
}
.detailArea-box__inr__sche-dule {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.detailArea-box__inr__sche-dule__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  border: #333333 solid 1px;
  padding: 5px 8px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .detailArea-box__inr__sche-dule__ttl {
    width: 100%;
    font-size: 1.8rem;
  }
}
.detailArea-box__inr__sche-dule__body {
  width: 100%;
  text-align: center;
}
.detailArea-box__inr__text {
  font-size: 2.4rem;
  font-weight: 800;
}
@media screen and (max-width: 599px) {
  .detailArea-box__inr__text {
    font-size: 2rem;
  }
}
.detailArea-box__inr__text__sub {
  display: inline-block;
  font-size: 1.7rem;
}
@media screen and (max-width: 599px) {
  .detailArea-box__inr__text__sub {
    font-size: 1.4rem;
  }
}
.detailArea-box__inr__notes > li {
  font-size: 1.1rem;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 4px;
}
@media screen and (max-width: 599px) {
  .detailArea-box__inr__notes > li {
    font-size: 1rem;
    margin-bottom: 3px;
  }
}
.detailArea-box__inr__notes > li:last-child {
  margin-bottom: 0;
}
.detailArea-box__inr__notes--ib {
  font-size: 0;
  margin-right: -0.5em;
}
.detailArea-box__inr__notes--ib > li {
  display: inline-block;
  margin-right: 0.5em;
}
.detailArea-box__inr__product-img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.detailArea-box__inr__product-img img {
  max-width: 100%;
}
.detailArea-box__inr__notes02 {
  font-size: 1.1rem;
  text-align: justify;
}
@media screen and (max-width: 599px) {
  .detailArea-box__inr__notes02 {
    font-size: 1rem;
  }
}

.privacyArea {
  color: #FFF;
  background-color: #7cb52b;
  padding: 0 30px 30px;
}
@media screen and (max-width: 599px) {
  .privacyArea {
    padding: 0 20px 25px;
  }
}
.privacyArea__ttl {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  padding: 26px 0 15px 20px;
}
@media screen and (max-width: 599px) {
  .privacyArea__ttl {
    font-size: 1.7rem;
  }
}
.privacyArea__ttl::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 3px;
  height: 46px;
  background-color: #ffffff;
}
.privacyArea__text {
  text-align: justify;
}
.privacyArea__text a {
  color: #FFF !important;
  text-decoration: underline;
}
.privacyArea__text a:hover {
  text-decoration: none;
}

.yubinArea {
  border-top: 1px solid #CCCCCC;
  padding: 40px 30px;
}
@media screen and (max-width: 599px) {
  .yubinArea {
    padding: 30px 20px;
  }
}
.yubinArea__inr {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 599px) {
  .yubinArea__inr {
    width: 80%;
  }
}

body.body-modal {
  position: fixed;
  width: 100%;
}

.modal-box {
  position: fixed;
  top: 50%;
  right: 0;
  left: 0;
  width: 80%;
  max-width: 700px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(0%, -50%);
  background-color: #ffffff;
  padding: 45px 30px 40px;
  margin: auto;
  box-sizing: border-box;
  z-index: 101;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  .modal-box {
    width: calc(100% - 40px);
    padding: 35px 20px 30px;
  }
}
@media screen and (max-width: 320px) {
  .modal-box {
    padding: 35px 10px 30px;
  }
}
.modal-box__text {
  color: #4096d3;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  .modal-box__text {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 320px) {
  .modal-box__text {
    font-size: 1.6rem;
  }
}
.modal-box__inr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.modal-box__inr > li {
  width: calc((99.9% - 10px) / 2);
}
.modal-box__inr > li:nth-child(1) {
  margin-right: 10px;
}
.modal-box #modal-box__yes {
  display: none;
}
.modal-box__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 240px;
  color: #ffffff;
  font-size: 3.3rem;
  font-weight: bold;
  line-height: 1;
  background-color: #048cd5;
  border-radius: 3px;
  padding: 15px 5px 19px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
  .modal-box__btn {
    font-size: 2.6rem;
  }
}
.modal-box__btn:hover {
  background-color: #18a5f1;
}
.modal-box__note {
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: center;
  margin-top: 0.5em;
}
@media screen and (max-width: 599px) {
  .modal-box__note {
    font-size: 1.3rem;
  }
}
.modal-box.modal-off {
  display: none;
}
.modal-box.modal-off + #modal-overlay {
  display: none;
}

#modal-overlay {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: auto;
  background-image: url(../img/top/end_bg_dot.png);
  background-repeat: repeat;
  background-size: 2px auto;
  background-position: left top;
  z-index: 100;
}

#end {
  height: 100%;
  overflow: hidden;
}
#end .endArea {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/top/end_bg_dot.png);
  background-repeat: repeat;
  background-size: 2px auto;
  background-position: left top;
}
#end .endArea__box {
  position: absolute;
  top: 50%;
  left: calc((100% - 500px) / 2);
  width: 500px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(0%, -50%);
  background-image: url(../img/top/end_bg_line.jpg);
  background-repeat: repeat;
  background-size: 5px auto;
  background-position: left top;
  border: #444444 solid 6px;
  padding: 26px 20px 30px;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  #end .endArea__box {
    left: 20px;
    width: calc(100% - 40px);
    padding: 21px 10px 25px;
  }
}
#end .endArea__box::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: #ffffff solid 4px;
  pointer-events: none;
}
#end .endArea__box__text01 {
  color: #444444;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-shadow: 2px 1px white;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  #end .endArea__box__text01 {
    font-size: 1.8rem;
  }
}
#end .endArea__box__text01__txt {
  display: inline-block;
  font-size: 3.6rem;
}
@media screen and (max-width: 599px) {
  #end .endArea__box__text01__txt {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 320px) {
  #end .endArea__box__text01__txt {
    font-size: 2.4rem;
  }
}
#end .endArea__box__text01__num {
  display: inline-block;
  font-size: 4.6rem;
  font-family: "Open Sans", sans-serif;
  line-height: 0.8;
  padding-left: 0.1em;
  padding-right: 0.1em;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
@media screen and (max-width: 599px) {
  #end .endArea__box__text01__num {
    font-size: 3rem;
  }
}
@media screen and (max-width: 320px) {
  #end .endArea__box__text01__num {
    font-size: 2.6rem;
  }
}
#end .endArea__box__text02 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  margin-top: 3px;
}
@media screen and (max-width: 599px) {
  #end .endArea__box__text02 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 320px) {
  #end .endArea__box__text02 {
    font-size: 1.8rem;
  }
}

.cntArea {
  background-color: #FFFFFF;
  padding: 50px 30px 40px;
}
@media screen and (max-width: 599px) {
  .cntArea {
    padding: 40px 20px 30px;
  }
}
.cntArea__list {
  margin-left: -30px;
  margin-right: -30px;
}
@media screen and (max-width: 599px) {
  .cntArea__list {
    margin-left: -20px;
    margin-right: -20px;
  }
}
.cntArea__list > li {
  border-top: #040000 dotted 1px;
}
.cntArea__list > li:last-child .cntArea-box {
  padding-bottom: 0 !important;
}

.cntArea-box {
  display: block;
  padding: 30px;
}
@media screen and (max-width: 599px) {
  .cntArea-box {
    padding: 25px 20px;
  }
}
.cntArea-box__body__tit {
  border-top: 1px solid #ddd;
  padding-top: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .cntArea-box__body__tit {
    padding-top: 25px;
  }
}
.cntArea-box__body__dl dt {
  position: relative;
  font-weight: bold;
}
.cntArea-box__body__dl dt::before {
  content: "●";
  color: #26b6dd;
}
.cntArea-box__body__dl dd {
  margin-bottom: 8px;
  margin-left: 1em;
}
.cntArea-box__body__list > li {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 5px;
}
.cntArea-box__body__list > li::before {
  content: "●";
  color: #26b6dd;
}
.cntArea-box__body__list > li:last-child {
  margin-bottom: 0 !important;
}
.cntArea-box__body__num-list > li {
  text-indent: -1.5em;
  padding-left: 1.5em;
  margin-bottom: 5px;
}
.cntArea-box__body__num-list > li:last-child {
  margin-bottom: 0 !important;
}
.cntArea-box__body__receipt {
  text-align: center;
}
.cntArea-box__body__waku {
  display: inline-block;
  line-height: 1.5;
  border: #D80000 solid 2px;
  padding: 5px 10px;
}
.cntArea-box__body__lapseWaku {
  border: #888888 solid 1px;
  padding: 20px;
}
.cntArea-box__body__lapseWaku > li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 5px;
}
.cntArea-box__body__lapseWaku > li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 2px;
  background-color: #26b6dd;
  top: 12px;
  left: 0;
}
@media screen and (max-width: 599px) {
  .cntArea-box__body__lapseWaku > li::before {
    top: 11px;
  }
}
.cntArea-box__body__lapseWaku > li:last-child {
  margin-bottom: 0 !important;
}
.cntArea-box__body__papper {
  text-align: center;
  margin-top: 20px;
}
.cntArea-box__body strong:not([class]) {
  font-size: 1.7rem;
}
@media screen and (max-width: 599px) {
  .cntArea-box__body strong:not([class]) {
    font-size: 1.6rem;
  }
}

.formArea {
  background-color: #7cb52b;
  padding: 40px 30px 40px;
}
@media screen and (max-width: 599px) {
  .formArea {
    padding: 24px 20px 30px;
  }
}
.formArea__intro {
  color: #FFF;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px) {
  .formArea__intro {
    font-size: 1.3rem;
  }
}
.formArea__intro__must {
  display: inline-block;
  color: #FFFFFF;
  font-size: 1.3rem;
  line-height: 1;
  background-color: #ff0000;
  padding: 3px 7px 4px;
}
@media screen and (max-width: 599px) {
  .formArea__intro__must {
    font-size: 1.1rem;
    padding: 3px 7px 4px;
  }
}
.formArea__form {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.formArea__form__tbl {
  width: 100%;
  border-top: #cccccc solid 1px;
  border-collapse: collapse;
  border-spacing: 0;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.formArea__form__tbl th, .formArea__form__tbl td {
  font-size: 1.5rem;
  border-bottom: #cccccc solid 1px;
  box-sizing: border-box;
  word-break: break-all;
  background-clip: padding-box;
}
.formArea__form__tbl th {
  position: relative;
  display: block;
  width: 100%;
  color: #000000;
  font-size: 1.8rem;
  line-height: 1.1;
  text-align: left;
  vertical-align: middle;
  background-color: #FFF3D0;
  padding: 15px 30px;
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl th {
    font-size: 1.6rem;
    padding: 12px 20px;
  }
}
.formArea__form__tbl th.must {
  position: relative;
  padding-right: 75px;
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl th.must {
    padding-right: 60px;
  }
}
.formArea__form__tbl th.must::before {
  position: absolute;
  content: "必須";
  top: 15px;
  right: 30px;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1;
  background-color: #ff0000;
  padding: 3px 7px 4px;
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl th.must::before {
    font-size: 1.1rem;
    top: 12px;
    right: 20px;
  }
}
.formArea__form__tbl td {
  display: block;
  width: 100%;
  background-color: #ffffff;
  padding: 15px 30px;
  box-sizing: border-box;
  /*placeholderの色変更*/
  /* Google Chrome, Safari, Opera 15+, Android, iOS */
  /* Firefox 18- */
  /* Firefox 19+ */
  /* IE 10+ */
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl td {
    padding: 12px 20px;
  }
}
.formArea__form__tbl td :placeholder-shown {
  color: #CCCCCC;
}
.formArea__form__tbl td ::-webkit-input-placeholder {
  color: #CCCCCC;
}
.formArea__form__tbl td :-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.formArea__form__tbl td ::-moz-placeholder {
  color: #CCCCCC;
  opacity: 1;
}
.formArea__form__tbl td :-ms-input-placeholder {
  color: #CCCCCC;
}
.formArea__form__tbl td ::-ms-expand {
  display: none;
}
.formArea__form__tbl td input[type=text],
.formArea__form__tbl td input[type=tel],
.formArea__form__tbl td input[type=email] {
  margin: 0;
  padding: 0 0 0 10px;
  width: 100%;
  max-width: 400px;
  height: 44px;
  background-color: #fff;
  border: #999 solid 1px;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  /*display:block;*/
  position: relative;
}
.formArea__form__tbl td select {
  margin: 0;
  padding: 0 44px 0 10px;
  width: 100%;
  max-width: 400px;
  height: 44px;
  background-color: #fff;
  border: #999 solid 1px;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../img/form/select-arrow.png");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 10px auto;
  box-sizing: border-box;
  /*display:block;*/
  position: relative;
}
.formArea__form__tbl td textarea {
  padding: 10px;
  width: 100%;
  height: 150px;
  background-color: #fff;
  border: #999 solid 1px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  display: block;
  position: relative;
}
.formArea__form__tbl td input[type=radio],
.formArea__form__tbl td input[type=checkbox] {
  display: none;
}
.formArea__form__tbl td input[type=radio] + label {
  display: block;
  padding: 0 0 0 20px;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.formArea__form__tbl td input[type=radio] + label::before {
  content: "";
  top: 10px;
  left: 0;
  margin-top: -6px;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  background-color: #fff;
  border-radius: 50%;
  box-sizing: border-box;
  position: absolute;
}
.formArea__form__tbl td input[type=radio] + label::after {
  content: "";
  top: 10px;
  left: 4px;
  margin-top: -2px;
  width: 7px;
  height: 7px;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-sizing: border-box;
  position: absolute;
}
.formArea__form__tbl td input[type=checkbox] + label {
  display: block;
  padding: 0 0 0 20px;
  cursor: pointer;
  z-index: 1;
  position: relative;
}
.formArea__form__tbl td input[type=checkbox] + label::before {
  content: "";
  top: 50%;
  left: 0;
  margin-top: -6px;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  background-color: #fff;
  box-sizing: border-box;
  position: absolute;
}
.formArea__form__tbl td input[type=checkbox] + label::after {
  content: "";
  top: 50%;
  left: 4px;
  margin-top: -2px;
  width: 7px;
  height: 7px;
  background-color: #FFFFFF;
  box-sizing: border-box;
  position: absolute;
}
.formArea__form__tbl td input[type=radio]:checked + label::before,
.formArea__form__tbl td input[type=checkbox]:checked + label::before {
  border: 1px solid #0075ff;
}
.formArea__form__tbl td input[type=radio]:checked + label::after,
.formArea__form__tbl td input[type=checkbox]:checked + label::after {
  background-color: #0075ff;
}
.formArea__form__tbl td .receipt-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl td .receipt-box {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.formArea__form__tbl td .receipt-box__btn {
  width: calc(99.9% - 120px - 20px);
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl td .receipt-box__btn {
    width: 100%;
  }
}
.formArea__form__tbl td .receipt-box__pic {
  width: 120px;
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl td .receipt-box__pic {
    margin: 10px auto 0;
  }
}
.formArea__form__tbl td .receipt-box__pic--conf {
  display: block;
  width: 180px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl td .receipt-box__pic--conf {
    width: 120px;
  }
}
@media print, screen and (min-width: 600px) {
  .formArea__form__tbl td .buy-month-box {
    display: inline-block;
    margin-right: 1em;
  }
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl td .buy-month-box {
    display: block;
    margin-bottom: 8px;
  }
  .formArea__form__tbl td .buy-month-box:last-child {
    margin-bottom: 0 !important;
  }
}
.formArea__form__tbl td .chain-tenpo-box__inr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 8px;
}
.formArea__form__tbl td .chain-tenpo-box__inr:last-child {
  margin-bottom: 0 !important;
}
.formArea__form__tbl td .chain-tenpo-box__inr dt {
  width: 80px;
}
.formArea__form__tbl td .chain-tenpo-box__inr dd {
  width: calc(99.9% - 80px - 10px);
}
.formArea__form__tbl td .waku {
  display: inline-block;
  font-weight: bold;
  line-height: 1.5;
  border: #D80000 solid 2px;
  padding: 5px 10px;
}
.formArea__form__tbl td .namae-furigana-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl td .namae-furigana-box {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.formArea__form__tbl td .namae-furigana-box__inr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media print, screen and (min-width: 600px) {
  .formArea__form__tbl td .namae-furigana-box__inr {
    width: 49.95%;
    margin-right: 1em;
  }
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl td .namae-furigana-box__inr {
    width: 100%;
    margin-bottom: 8px;
  }
  .formArea__form__tbl td .namae-furigana-box__inr:last-child {
    margin-bottom: 0 !important;
  }
}
.formArea__form__tbl td .namae-furigana-box__inr__tit {
  display: inline-block;
  width: 1.5em;
}
.formArea__form__tbl td .namae-furigana-box__inr__tit--furigana {
  width: 2.5em;
}
.formArea__form__tbl td .seibetsu-list {
  margin: -10px -15px;
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl td .seibetsu-list {
    margin: 0 0 -10px -10px;
  }
}
.formArea__form__tbl td .seibetsu-list > li {
  display: inline-block;
  padding: 10px 15px;
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl td .seibetsu-list > li {
    display: block;
    float: left;
    width: 50%;
    padding: 0 0 10px 10px;
    box-sizing: border-box;
  }
}
.formArea__form__tbl td .add-box__inr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
}
.formArea__form__tbl td .add-box__inr:last-child {
  margin-bottom: 0 !important;
}
.formArea__form__tbl td .add-box__inr__tit {
  width: 90px;
}
.formArea__form__tbl td .add-box__inr__input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(99.9% - 90px - 1em);
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl td .add-box__inr__input {
    width: calc(99.9% - 90px - 0.5em);
  }
}
.formArea__form__tbl td .w-tel {
  width: 25% !important;
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl td .w-tel {
    width: 30% !important;
  }
}
.formArea__form__tbl td .w01 {
  width: 130px !important;
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl td .w01 {
    width: 50% !important;
  }
}
.formArea__form__tbl td .w02 {
  width: 250px !important;
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl td .w02 {
    width: 100% !important;
  }
}
.formArea__form__tbl td .w03 {
  width: 400px !important;
}
@media screen and (max-width: 599px) {
  .formArea__form__tbl td .w03 {
    width: calc(100% - 1.8em) !important;
  }
}

/*エラー*/
.errorAlert {
  color: #D80000;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;
  background-color: #FFE6E6;
  border: 2px solid #D80000;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.errorMes {
  color: #D80000;
  line-height: 1.35;
  margin: 5px 0 0;
  clear: both;
}

.errorBox {
  border: #D80000 solid 1px !important;
}

/*確認*/
.confMes {
  color: #114c29;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;
  background-color: #FFF;
  border: 2px solid #CCCCCC;
  padding: 15px 20px;
  margin-bottom: 20px;
}

/*完了*/
.thanksMes {
  text-align: center;
  background-color: #FFF;
  padding: 60px 30px 70px;
}
@media screen and (max-width: 320px) {
  .thanksMes {
    padding: 40px 20px 45px;
  }
}
.thanksMes__text {
  font-size: 2.3rem;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  .thanksMes__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 320px) {
  .thanksMes__text {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=style.css.map */