@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

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

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ",
    "Meiryo", sans-serif;
}

html h1,
html h2,
html h3,
html h4,
html h5,
html h6,
html p,
html span,
html em,
html small,
html input,
html textarea,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body p,
body span,
body em,
body small,
body input,
body textarea {
  color: #4d4d4d;
}

html p,
html span,
html em,
html input,
html textarea,
body p,
body span,
body em,
body input,
body textarea {
  font-size: 14px;
  font-size: 1.4rem;
}

@media only screen and (max-width: 767px) {
  body {
    padding-bottom: 80px;
  }
}

body#base {
  background-color: #f4f2e9;
  width: 100%;
  overflow-x: hidden;
}

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

input[type="text"],
input[type="email"],
input[type="number"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-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 {
  display: none;
}
button::focus,
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.row {
  overflow: hidden;
  *zoom: 1;
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.p-0 {
  padding: 0px !important;
}

.p-5 {
  padding: 5px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-25 {
  padding: 25px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-35 {
  padding: 35px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-45 {
  padding: 45px !important;
}

.p-50 {
  padding: 50px !important;
}

.p-55 {
  padding: 55px !important;
}

.p-60 {
  padding: 60px !important;
}

.p-65 {
  padding: 65px !important;
}

.p-70 {
  padding: 70px !important;
}

.p-75 {
  padding: 75px !important;
}

.p-80 {
  padding: 80px !important;
}

.p-85 {
  padding: 85px !important;
}

.p-90 {
  padding: 90px !important;
}

.p-95 {
  padding: 95px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pl-85 {
  padding-left: 85px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.pl-95 {
  padding-left: 95px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pr-85 {
  padding-right: 85px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pr-95 {
  padding-right: 95px !important;
}

@media only screen and (max-width: 767px) {
  .sp-plr-0 {
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-5 {
    padding-right: 5px !important;
    padding-left: 5px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-10 {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-15 {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-20 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-25 {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-30 {
    padding-right: 30px !important;
    padding-left: 30px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-35 {
    padding-right: 35px !important;
    padding-left: 35px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-40 {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-45 {
    padding-right: 45px !important;
    padding-left: 45px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-50 {
    padding-right: 50px !important;
    padding-left: 50px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-55 {
    padding-right: 55px !important;
    padding-left: 55px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-60 {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-65 {
    padding-right: 65px !important;
    padding-left: 65px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-70 {
    padding-right: 70px !important;
    padding-left: 70px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-75 {
    padding-right: 75px !important;
    padding-left: 75px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-80 {
    padding-right: 80px !important;
    padding-left: 80px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-85 {
    padding-right: 85px !important;
    padding-left: 85px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-90 {
    padding-right: 90px !important;
    padding-left: 90px !important;
  }
}

@media only screen and (max-width: 767px) {
  .sp-plr-95 {
    padding-right: 95px !important;
    padding-left: 95px !important;
  }
}

.col-1 {
  margin-top: 20px;
  width: 8.33333%;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .col-1 {
    width: 100% !important;
    padding: 0 !important;
  }
}

.col-2 {
  margin-top: 20px;
  width: 16.66667%;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .col-2 {
    width: 100% !important;
    padding: 0 !important;
  }
}

.col-3 {
  margin-top: 20px;
  width: 25%;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .col-3 {
    width: 100% !important;
    padding: 0 !important;
  }
}

.col-4 {
  margin-top: 20px;
  width: 33.33333%;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .col-4 {
    width: 100% !important;
    padding: 0 !important;
  }
}

.col-5 {
  margin-top: 20px;
  width: 41.66667%;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .col-5 {
    width: 100% !important;
    padding: 0 !important;
  }
}

.col-6 {
  margin-top: 20px;
  width: 50%;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .col-6 {
    width: 100% !important;
    padding: 0 !important;
  }
}

.col-7 {
  margin-top: 20px;
  width: 58.33333%;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .col-7 {
    width: 100% !important;
    padding: 0 !important;
  }
}

.col-8 {
  margin-top: 20px;
  width: 66.66667%;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .col-8 {
    width: 100% !important;
    padding: 0 !important;
  }
}

.col-9 {
  margin-top: 20px;
  width: 75%;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .col-9 {
    width: 100% !important;
    padding: 0 !important;
  }
}

.col-10 {
  margin-top: 20px;
  width: 83.33333%;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .col-10 {
    width: 100% !important;
    padding: 0 !important;
  }
}

.col-11 {
  margin-top: 20px;
  width: 91.66667%;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .col-11 {
    width: 100% !important;
    padding: 0 !important;
  }
}

.col-12 {
  margin-top: 20px;
  width: 100%;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  .col-12 {
    width: 100% !important;
    padding: 0 !important;
  }
}

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
main {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  main {
    padding: 0 0px;
  }
}

.inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

/**
 レイアウトセッティング
 **/
.mt-0 {
  margin-top: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-65 {
  margin-top: 65px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-75 {
  margin-top: 75px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mt-90 {
  margin-top: 90px !important;
}

.mt-95 {
  margin-top: 95px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-55 {
  margin-bottom: 55px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-65 {
  margin-bottom: 65px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-75 {
  margin-bottom: 75px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-95 {
  margin-bottom: 95px !important;
}

.p-0 {
  padding: 0px !important;
}

.p-5 {
  padding: 5px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

.p-25 {
  padding: 25px !important;
}

.p-30 {
  padding: 30px !important;
}

.p-35 {
  padding: 35px !important;
}

.p-40 {
  padding: 40px !important;
}

.p-45 {
  padding: 45px !important;
}

.p-50 {
  padding: 50px !important;
}

.p-55 {
  padding: 55px !important;
}

.p-60 {
  padding: 60px !important;
}

.p-65 {
  padding: 65px !important;
}

.p-70 {
  padding: 70px !important;
}

.p-75 {
  padding: 75px !important;
}

.p-80 {
  padding: 80px !important;
}

.p-85 {
  padding: 85px !important;
}

.p-90 {
  padding: 90px !important;
}

.p-95 {
  padding: 95px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-25 {
  padding-top: 25px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-45 {
  padding-top: 45px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-55 {
  padding-top: 55px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pt-65 {
  padding-top: 65px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-75 {
  padding-top: 75px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pt-90 {
  padding-top: 90px !important;
}

.pt-95 {
  padding-top: 95px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-55 {
  padding-bottom: 55px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pb-65 {
  padding-bottom: 65px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pb-75 {
  padding-bottom: 75px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pb-90 {
  padding-bottom: 90px !important;
}

.pb-95 {
  padding-bottom: 95px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pl-65 {
  padding-left: 65px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.pl-75 {
  padding-left: 75px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pl-85 {
  padding-left: 85px !important;
}

.pl-90 {
  padding-left: 90px !important;
}

.pl-95 {
  padding-left: 95px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pr-65 {
  padding-right: 65px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pr-75 {
  padding-right: 75px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pr-85 {
  padding-right: 85px !important;
}

.pr-90 {
  padding-right: 90px !important;
}

.pr-95 {
  padding-right: 95px !important;
}

.col-1 {
  margin-top: 20px;
  width: 8.33333%;
  padding: 0 10px;
}

.col-2 {
  margin-top: 20px;
  width: 16.66667%;
  padding: 0 10px;
}

.col-3 {
  margin-top: 20px;
  width: 25%;
  padding: 0 10px;
}

.col-4 {
  margin-top: 20px;
  width: 33.33333%;
  padding: 0 10px;
}

.col-5 {
  margin-top: 20px;
  width: 41.66667%;
  padding: 0 10px;
}

.col-6 {
  margin-top: 20px;
  width: 50%;
  padding: 0 10px;
}

.col-7 {
  margin-top: 20px;
  width: 58.33333%;
  padding: 0 10px;
}

.col-8 {
  margin-top: 20px;
  width: 66.66667%;
  padding: 0 10px;
}

.col-9 {
  margin-top: 20px;
  width: 75%;
  padding: 0 10px;
}

.col-10 {
  margin-top: 20px;
  width: 83.33333%;
  padding: 0 10px;
}

.col-11 {
  margin-top: 20px;
  width: 91.66667%;
  padding: 0 10px;
}

.col-12 {
  margin-top: 20px;
  width: 100%;
  padding: 0 10px;
}

.footer .sp {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}
.footer .sp nav {
  background: #fff;
  border-radius: 32px 32px 0 0;
  padding: 0 25px;
  padding-bottom: 18px;
  padding-top: 12px;
  position: relative;
}
.footer .sp nav > div {
  position: absolute;
  left: 0;
  right: 0;
  width: 72px;
  height: 72px;
  border-radius: 72px;
  top: -15px;
  margin: auto;
  background: #fff;
}
.footer .sp nav > div a {
  display: block;
  width: 60px;
  height: 60px;
  background: #C70246;
  border-radius: 60px;
  text-align: center;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.footer .sp nav > div a em {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 100%;
}
.footer .sp nav > div a img {
  width: 20px;
}
.footer .sp nav > div a span {
  font-size: 10px;
  font-size: 1rem;
  display: block;
  margin-top: 5px;
  color: #fff;
}
.footer .sp nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer .sp nav ul li {
  width: 40px;
  text-align: center;
}
.footer .sp nav ul li a {
  display: block;
}
.footer .sp nav ul li a img {
  height: 22px;
}
.footer .sp nav ul li a span {
  font-size: 10px;
  font-size: 1rem;
  display: block;
  margin-top: 5px;
}
.footer .sp nav ul li a .type02 {
  display: none;
}
.footer .sp nav ul li a.on .type01 {
  display: none;
}
.footer .sp nav ul li a.on .type02 {
  display: block;
  margin: auto;
}

.sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  left: 100%;
  transition: all 0.5s;
}
.sp-menu.on {
  left: 0;
}
.sp-menu__overlay {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sp-menu__inner {
  position: absolute;
  right: 0;
  top: 0;
  width: 256px;
  height: 100%;
  background: #C70246;
}
.sp-menu__inner > div {
  overflow: auto;
}
.sp-menu__inner > div .header__calendar {
  margin: auto;
  width: 220px;
  margin-top: 20px;
}
.sp-menu__profile {
  margin-top: 20px;
  /*border-top: 1px solid #ed859f;*/
  border-bottom: 1px solid #ff4978;
}
.sp-menu__profile a {
  padding-top: 16px;
  padding-bottom: 16px;
  display: block;
}
.sp-menu__profile a figure {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
.sp-menu__profile a figure > div {
  width: 50px;
  height: 50px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50px;
  overflow: hidden;
}
.sp-menu__profile a figure figcaption {
  padding-right: 30px;
  width: calc(100% - 50px);
  padding-left: 14px;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.sp-menu ul li {
  border-bottom: 1px solid #ff4978;
}
.sp-menu ul li a {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.18em;
  color: #fff;
  padding: 15px;
}

.header {
  padding: 20px 0;
}
.header__inner {
  max-width: 100%;
  margin: auto;
  padding: 0 30px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header__inner {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 390px) {
  .header__inner {
    padding: 0;
  }
}
.header__brand a {
  display: block;
}
.header__brand a img {
  height: 36px;
}
@media only screen and (max-width: 767px) {
  .header__brand a img {
    height: 28px;
  }
}
.header__calendar {
  position: relative;
}
.header__calendar input[type="text"] {
  width: 300px;
  padding-right: 30px;
  font-size: 1.3rem;
  padding: 9px 16px 7px;
}
@media only screen and (max-width: 767px) {
  .header__calendar input[type="text"] {
    width: 220px;
    border-radius: 26px !important;
  }
}
@media only screen and (max-width: 390px) {
  .header__calendar input[type="text"] {
    width: 190px;
    border-radius: 20px !important;
  }
}
.header__calendar a {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  height: 17px;
}
@media only screen and (max-width: 767px) {
  .header__calendar a {
    right: 15px;
  }
}
.header__calendar a img {
  width: 18px;
}

.add-button {
  font-size: 0;
}
.add-button button {
  display: block;
  width: 80%;
  margin: auto;
  background: #fff;
  border-radius: 28px;
  border: 2px solid #d9d9d9;
  padding: 8px 0;
}
@media only screen and (max-width: 767px) {
  .add-button button {
    width: 90%;
  }
}
.add-button span,
.add-button em {
  display: inline-block;
  vertical-align: middle;
}
.add-button span {
  width: 10px;
  height: 10px;
  position: relative;
}
.add-button span:after,
.add-button span:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #C70246;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.add-button span:after {
  transform: rotate(90deg);
}
.add-button em {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  position: relative;
  top: 1px;
  margin-left: 8px;
}

.add-row-btn {
  margin-top: 25px;
}
.add-row-btn a {
  display: block;
  width: 34px;
  height: 34px;
  margin: auto;
  border-radius: 34px;
  background: #C70246;
  position: relative;
}
.add-row-btn a span:before,
.add-row-btn a span:after {
  content: "";
  width: 12px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.add-row-btn a span:after {
  transform: rotate(90deg);
}

.avatars {
  overflow: auto;
}
.avatars ul {
  font-size: 0;
  white-space: nowrap;
}
.avatars ul li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.avatars ul li a {
  display: block;
}
.avatars ul li a.all {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  color: #fff;
  line-height: 40px;
  background: #C70246;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.12em;
  margin: auto;
}
.avatars ul li a img {
  width: 40px;
  height: 40px;
  border-radius: 40px;
}
@media screen and (max-width: 440px) {
  .avatars ul li.all-li {
    background-color: #f7f5f500;
    position: relative;
    padding-top: 18%;
  }
  .avatars ul li a.all {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    line-height: 60px;
  }
  .avatars ul li a img {
    width: 100%;
    height: 100%;
  }
}

.btn {
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  padding: 12px 25px;
  background: #C70246;
  border-radius: 28px;
}
@media only screen and (max-width: 767px) {
  .btn {
    padding: 10px 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.btn-block {
  width: 100%;
  display: block;
}

form .btn {
  width: 100%;
}

.calendar-month {
  background: #fff;
  margin-top: 1px;
}
.calendar-month table {
  width: 100%;
  font-size: 14px;
  font-size: 1.4rem;
}
.calendar-month table tbody tr .cellSunday {
  color: #C70246;
}
.calendar-month table tbody tr .cellSaturday {
  color: #3d87c9;
}
.calendar-month table tbody tr td,
.calendar-month table tbody tr th {
  padding: 15px;
  font-weight: bold;
  text-align: center;
}

.create-modal {
  position: fixed;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1030;
  transition: bottom 0.3s;
  bottom: -100%;
}
.create-modal.open {
  bottom: 0;
}
.create-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.create-modal__inner {
  width: 85%;
  margin: auto;
  background: #fff;
  height: calc(100% - 80px);
  margin-top: 80px;
  position: relative;
  z-index: 2;
}
.create-modal__header {
  background: #4d4d4d;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  padding: 10px 15px;
}
.create-modal__body {
  padding: 20px;
}
.create-modal__body .input-group.single {
  padding: 0;
}

.date-move {
  background: #fff;
  padding: 10px 0;
}
.date-move ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0;
}
.date-move ul li span,
.date-move ul li em {
  display: inline-block;
  vertical-align: middle;
}
.date-move ul li span {
  font-size: 10px;
  font-size: 1rem;
  padding: 2px 5px;
  border: 1px solid;
  border-radius: 4px;
}
.date-move ul li em {
  font-size: 15px;
  font-size: 1.5rem;
  margin-left: 5px;
}
.date-move__prev {
  position: relative;
  width: 10px;
  height: 18px;
  display: block;
}
.date-move__prev:before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-left: 2px solid;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 25px;
}
.date-move__next {
  position: relative;
  width: 10px;
  height: 18px;
  display: block;
}
.date-move__next:before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-left: 2px solid;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 25px;
}

h6 {
  font-size: 24px;
  font-size: 2.4rem;
}
@media only screen and (max-width: 767px) {
  h6 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

hr {
  margin: 20px 0;
  padding: 0;
  width: 100%;
  background: #e1dcc4;
  height: 2px;
  box-shadow: none;
  border: none;
}

.input-group {
  padding-top: 15px;
}
.input-group select {
  width: 100%;
}
.input-group select.half {
  width: 48%;
}
.input-group > small {
  display: block;
  font-size: 10px;
  font-size: 1rem;
}
.input-group__label {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  padding-top: 12px;
  margin-top: 12px;
  color: #666;
  border-top: 1px dashed #e5e5e5;
}
@media only screen and (max-width: 767px) {
  .input-group__label {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.input-group__label:first-child {
  border-top: none;
}
.input-group__label small {
  display: inline-block;
  font-size: 10px;
  font-size: 1rem;
  margin-left: 10px;
  color: #808080;
}
.input-group__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}
.input-group__row.justify-content-left {
  justify-content: left;
}
.input-group__row > a {
  font-size: 11px;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: #C70246;
  display: block;
  width: 35px;
}
.input-group__row > a.disabled {
  pointer-events: none;
  opacity: 0;
}
.input-group__row > span {
  width: 18px;
  text-align: center;
  display: block;
}
.input-group__quantity {
  width: 42px;
}
.input-group__price {
  width: calc(100% - 215px);
  text-align: right;
}
.input-group__zipcode01 {
  width: 60px;
  margin-right: 10px;
  margin-left: 10px;
}
.input-group__zipcode02 {
  width: 100px;
  margin-left: 10px;
}
.input-group__radios {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 65px;
}
.input-group__radios--input > span {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: #d9d9d9;
  color: #fff;
  font-size: 11px;
  font-size: 1.1rem;
  display: block;
  line-height: 30px;
  text-align: center;
}
.input-group__radios--input > span sub {
  font-size: smaller;
}
.input-group__radios--input > input {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  width: 0;
  height: 0;
}
.input-group__radios--input > input:checked + span {
  background: #3d87c9;
}
.input-group__delete a {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: #C70246;
  font-size: 11px;
  font-size: 1.1rem;
  display: block;
  line-height: 30px;
  text-align: center;
  position: relative;
}
.input-group__delete a img {
  width: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.input-group.single {
  padding: 0 20px;
}
.input-group.single .input-text {
  margin-top: 10px;
  width: 100%;
}
.input-group.file {
  position: relative;
}
.input-group.file span {
  cursor: pointer;
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: #f5f5f5;
  font-size: 13px;
  font-size: 1.3rem;
  padding: 10px 0;
}
.input-group.file input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  background-color: #fff;
  outline: none;
}
@media only screen and (max-width: 767px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"] {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
input[type="text"].input-text,
input[type="email"].input-text,
input[type="password"].input-text,
input[type="number"].input-text {
  border: 1px solid #dadbdb;
  border-radius: 24px;
}
@media only screen and (max-width: 767px) {
  input[type="text"].input-text,
  input[type="email"].input-text,
  input[type="password"].input-text,
  input[type="number"].input-text {
    border-radius: 9.5px;
  }
}

.list__header {
  background: #4d4d4d;
  font-size: 16px;
  font-size: 1.6rem;
  color: #fff;
  padding: 10px 15px;
}

.list__body {
  background: #fff;
}
.list__body ul li {
  padding: 10px 15px;
  border-bottom: 2px solid #e5e5e5;
}
@media only screen and (max-width: 767px) {
  .list__body ul li {
    border-bottom: 1px solid #e5e5e5;
  }
}
.list__body ul li > div:nth-child(1) {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
}
.list__body ul li > div:nth-child(1) > div:nth-child(1) {
  width: calc(100% - 40px);
}
.list__body ul li > div:nth-child(1) > div:nth-child(1) > small {
  font-size: 10px;
  font-size: 1rem;
  color: #808080;
  letter-spacing: 0.1em;
}
.list__body ul li > div:nth-child(1) > div:nth-child(1) p {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin-top: 10px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .list__body ul li > div:nth-child(1) > div:nth-child(1) p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.list__body ul li > div:nth-child(1) > div:nth-child(1) p small {
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .list__body ul li > div:nth-child(1) > div:nth-child(1) p small {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.list__body ul li > div:nth-child(1) > div:nth-child(2) {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.list__body ul li > div:nth-child(2) {
  font-size: 10px;
  font-size: 1rem;
  color: #808080;
  white-space: nowrap;
  margin-top: 10px;
}
.list__body ul li > div:nth-child(2) em {
  font-size: 10px;
  font-size: 1rem;
  color: #C70246;
}

.login-whole {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 305px;
  padding: 0;
}
.login-whole__box {
  width: 100%;
}
.login-whole__brand img {
  display: block;
  width: 158px;
  margin: auto;
}
.login-whole .input-group label img,
.login-whole .input-group label span {
  display: inline-block;
  vertical-align: middle;
}
.login-whole .input-group label img {
  height: 15px;
  margin-right: 5px;
}
.login-whole .input-group label span {
  font-size: 14px;
  font-size: 1.4rem;
  color: #717071;
}
.login-whole .input-group input {
  display: block;
  width: 100%;
  border-radius: 8px;
  margin-top: 10px;
}
.login-whole .forgot-password {
  text-align: right;
  padding-top: 15px;
}
.login-whole .forgot-password a {
  color: #717071;
  text-decoration: underline;
  font-size: 12px;
  font-size: 1.2rem;
}
.login-whole button.btn {
  width: 240px;
  margin: auto;
}

.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 110%;
  z-index: 100;
  display: none;
}
.modal__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.modal__box {
  z-index: 2;
  padding: 50px 40px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 767px) {
  .modal__box {
    width: 80%;
    padding: 25px 20px;
  }
}
.modal__box p {
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .modal__box p {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.modal__box > div {
  text-align: center;
  margin-top: 20px;
}
.modal__box > div a {
  display: inline-block;
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  background: #C70246;
  padding: 10px 25px;
  border-radius: 26px;
}
@media only screen and (max-width: 767px) {
  .modal__box > div a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.search-button {
  font-size: 0;
}
.search-button button {
  display: block;
  width: 80%;
  margin: auto;
  background: #fff;
  border-radius: 28px;
  padding: 8px 0;
}
@media only screen and (max-width: 767px) {
  .search-button button {
    width: 90%;
  }
}
.search-button img,
.search-button em {
  display: inline-block;
  vertical-align: middle;
}
.search-button img {
  width: 12px;
  height: 12px;
}
.search-button em {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  position: relative;
  top: 1px;
  margin-left: 8px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border: 1px solid #dadbdb;
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  select {
    border-radius: 9.5px;
    font-size: 11px;
    font-size: 1.1rem;
  }
}
select option {
  letter-spacing: 0.1em;
  background-color: #fff;
  outline: none;
}

.tabs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.tabs ul li {
  width: 33.33333%;
  position: relative;
}
.tabs ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #fff;
}
.tabs ul li:first-child:before {
  content: none;
}
.tabs ul li a {
  display: block;
  text-align: center;
  padding: 16px 0;
}
.tabs ul li a.active {
  background: #C70246;
}
.tabs ul li a.active span {
  color: #fff;
}
.tabs ul li a img,
.tabs ul li a span {
  display: inline-block;
  vertical-align: middle;
}
.tabs ul li a img {
  height: 14px;
}
.tabs ul li a span {
  margin-left: 5px;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #4d4d4d;
}

.title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  letter-spacing: 0.075em;
}
.title-bold {
  font-weight: bold;
}
.title img {
  width: auto;
  height: 28px;
}
@media only screen and (max-width: 767px) {
  .title img {
    height: 16px;
  }
}
.title span {
  width: calc(100% - 40px);
  padding-left: 10px;
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  .title span {
    font-size: 14px;
    font-size: 1.4rem;
    width: calc(100% - 20px);
    padding-left: 5px;
    padding-right: 120px;
  }
}
.title a {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  padding-right: 15px;
  background-image: url(../images/icon/ico_arrow.svg);
  background-size: 11px auto;
  background-repeat: no-repeat;
  background-position: center right;
}
.title a.pre {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  padding-right: 15px;
  background-image: url(../images/icon/ico_arrow_left.svg);
  background-size: 11px auto;
  background-repeat: no-repeat;
  background-position: center left;
}
.title--type02 span {
  padding-left: 0;
  width: 100%;
  padding-right: 130px;
}
.title--type02 span em {
  font-size: 18px;
  font-size: 1.8rem;
  color: #C70246;
}
@media only screen and (max-width: 767px) {
  .title--type02 span em {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.title--type02 a {
  padding-left: 15px;
  padding-right: 0;
  background-image: url(../images/icon/ico_pinkplus.svg);
  background-position: center left;
}

.white-box {
  border-radius: 18px;
  background-color: #fff;
}
.white-box.radius-none {
  border-radius: 0;
}
.white-box__whole {
  background-color: #efeeee;
  border-radius: 18px;
  overflow: hidden;
}
.white-box--half {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.white-box--half > div {
  width: 50%;
  position: relative;
}
.white-box--half > div:nth-child(1):before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: #f2f2f2;
  display: block;
}
.white-box--type01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 25px 18px 20px;
  align-items: flex-end;
}
.white-box--type01 > span {
  color: #717071;
  font-size: 15px;
  font-size: 1.5rem;
  padding-bottom: 6px;
}
@media only screen and (max-width: 767px) {
  .white-box--type01 > span {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.white-box--type01 > em {
  font-size: 32px;
  font-size: 3.2rem;
}
@media only screen and (max-width: 767px) {
  .white-box--type01 > em {
    font-size: 30px;
    font-size: 3rem;
  }
}
.white-box--type01 > em > small {
  font-size: 14px;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .white-box--type01 > em > small {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.white-box--type02 {
  padding: 25px 18px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.white-box--type02 > span {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  color: #717071;
}
@media only screen and (max-width: 767px) {
  .white-box--type02 > span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.white-box--type02 > span > small {
  display: block;
  font-size: 13px;
  font-size: 1.3rem;
  color: #919191;
  margin-top: 6px;
  margin-bottom: 6px;
}
@media only screen and (max-width: 767px) {
  .white-box--type02 > span > small {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.white-box--type02 > em {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  color: #C70246;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .white-box--type02 > em {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.white-box--type02 > em > small {
  margin-top: 6px;
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  color: #919191;
  margin-bottom: 6px;
}
@media only screen and (max-width: 767px) {
  .white-box--type02 > em > small {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.white-box--type03 > a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  align-items: center;
}
.white-box--type03 > a:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../images/icon/ico_linkbox.svg);
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}
.white-box--type03 > a > span:nth-child(1) {
  width: 120px;
  padding: 14px 20px;
  position: relative;
}
.white-box--type03 > a > span:nth-child(1):before {
  content: "";
  width: 2px;
  height: 100%;
  background: #efeeee;
  position: absolute;
  top: 0;
  right: 0;
}
.white-box--type03 > a > span:nth-child(1) small,
.white-box--type03 > a > span:nth-child(1) b,
.white-box--type03 > a > span:nth-child(1) em {
  display: block;
}
.white-box--type03 > a > span:nth-child(1) small {
  font-size: 13px;
  font-size: 1.3rem;
  color: #717071;
}
@media only screen and (max-width: 767px) {
  .white-box--type03 > a > span:nth-child(1) small {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.white-box--type03 > a > span:nth-child(1) b {
  font-weight: bold;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0em;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .white-box--type03 > a > span:nth-child(1) b {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.white-box--type03 > a > span:nth-child(1) em {
  border: 2px solid #C70246;
  color: #C70246;
  text-align: center;
  padding: 3px;
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 5px;
}
@media only screen and (max-width: 767px) {
  .white-box--type03 > a > span:nth-child(1) em {
    border: 1px solid #C70246;
    font-size: 10px;
    font-size: 1rem;
  }
}
.white-box--type03 > a > span:nth-child(2) {
  width: calc(100% - 120px);
  font-size: 18px;
  font-size: 1.8rem;
  padding: 18px;
}
@media only screen and (max-width: 767px) {
  .white-box--type03 > a > span:nth-child(2) {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.white-box--type03 > a > span:nth-child(2) small {
  font-size: 12px;
  font-size: 1.2rem;
  margin-left: 5px;
}
@media only screen and (max-width: 767px) {
  .white-box--type03 > a > span:nth-child(2) small {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.white-box--type03 > a > span:nth-child(2) em {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 4px;
}
@media only screen and (max-width: 767px) {
  .white-box--type03 > a > span:nth-child(2) em {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.white-box--type03 > a > span:nth-child(2) span {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 8px;
  color: red;
}
@media only screen and (max-width: 767px) {
  .white-box--type03 > a > span:nth-child(2) span {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
.white-box--type04 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 32px;
}
.white-box--type04 > a {
  display: block;
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 10px 0;
  width: 33.33333%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .white-box--type04 > a {
    font-size: 13px;
    font-size: 1.3rem;
    padding: 8px 0;
  }
}
.white-box--type04 > a:nth-child(1):before,
.white-box--type04 > a:nth-child(2):before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: #efeeee;
}
.white-box--type04__active {
  background: #C70246;
  color: #fff;
}
.white-box--links {
  padding: 0 25px;
  padding-bottom: 28px;
}
@media only screen and (max-width: 767px) {
  .white-box--links {
    padding: 0 15px;
  }
}
.white-box--links h3 {
  padding-top: 28px;
  padding-left: 20px;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.16em;
  color: #4d4d4d;
  padding-bottom: 5px;
  border-bottom: 1px solid #C70246;
}
.white-box--links h3:before {
  height: 4px;
  width: 10px;
  position: absolute;
  content: "";
  left: 0;
  bottom: 11px;
  background: #C70246;
}
.white-box--links ul li {
  border-bottom: 1px solid #e5e5e5;
}
.white-box--links ul li a {
  display: block;
  color: #4d4d4d;
  padding: 10px 0;
}

.list__body.list02 ul li.label {
  background: #d9d9d9;
  border-bottom: none;
  padding: 8px 15px;
}

.list__body.list02 ul li > div:nth-child(1) > div:nth-child(1) p {
  margin-top: 0;
}
.list__body.list02 ul li > div:nth-child(1) > div:nth-child(1) p span {
  display: inline-block;
  vertical-align: middle;
}
.list__body.list02 ul li > div:nth-child(1) > div:nth-child(1) p .edit {
  color: #C70246;
  margin: 0 12px 0 5px;
}
@media only screen and (max-width: 767px) {
  .list__body.list02 ul li > div:nth-child(1) > div:nth-child(1) p .edit {
    margin: 0 5px 5px 0;
  }
}
.list__body.list02 ul li > div:nth-child(1) > div:nth-child(1) p .txt {
  line-height: 1.3em;
}
.list__body.list02 ul li > div:nth-child(1) > div:nth-child(1) p .txt strong {
  color: #C70246;
}

.list__body.arrow ul li {
  position: relative;
}
.list__body.arrow ul li .ico {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-77%);
  height: 33px;
}
.list__body.arrow ul li .ico span {
  position: absolute;
  right: 0;
}
.list__body.arrow ul li .ico span:first-child {
  border: 5px solid transparent;
  border-bottom: 7px solid #4d4d4d;
  top: 0;
}
.list__body.arrow ul li .ico span:last-child {
  border: 5px solid transparent;
  border-top: 7px solid #4d4d4d;
  bottom: 0;
}

.create-modal__inner {
  max-width: 1140px;
  overflow-y: scroll;
}

.input-group.unit .txt {
  padding-left: 10px;
}
@media only screen and (max-width: 767px) {
  .input-group.unit .txt {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.input-group.unit .input-text {
  width: 96%;
}
@media only screen and (max-width: 767px) {
  .input-group.unit .input-text {
    width: 87%;
  }
}

.input-group.item01 {
  display: none;
}

.input-group.item02 {
  display: none;
}

.input-group.col02 .input-group__label {
  display: block;
}

.input-group.col02 .input-text {
  width: 49%;
}
@media only screen and (max-width: 767px) {
  .input-group.col02 .input-text {
    width: 48%;
  }
}
.input-group.col02 .input-text.mr {
  margin-right: 1.5%;
}

.input-group.col02 select {
  width: 49%;
}
@media only screen and (max-width: 767px) {
  .input-group.col02 select {
    width: 48%;
  }
}

.input-group.col02 .btn {
  width: 130px;
  padding: 9px 0;
  margin-left: 5px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .input-group.col02 .btn {
    font-size: 13px;
    font-size: 1.3rem;
    width: 90px;
  }
}

.input-group .input-text.input-error {
  border: 1px solid #C70246  !important;;
  background: #ffecf1;
}
.input-error{
  border: 1px solid #C70246;
}
.input-note {
  color: #C70246;
  text-align: left;
  font-weight: bold;
}
.input-note.note01 {
  padding: 12px 15px;
  border: 1px solid #C70246;
  border-radius: 28px;
}
@media only screen and (max-width: 767px) {
  .input-note {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.btn-area {
  padding-top: 40px;
}
.btn-area .bt {
  display: block;
  font-size: 16px;
  text-align: center;
  padding: 15px 0;
  cursor: pointer;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .btn-area .bt {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.btn-area .bt.skip {
  width: 35%;
  background: #fff;
}
.btn-area .bt.next {
  width: 65%;
  background: #C70246;
  color: #ffffff;
  position: relative;
}
.btn-area .bt.next:after {
  content: "▶";
  font-size: 14px;
  color: #ffffff;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.bar-step {
  border-bottom: 1px solid #dadbdb;
}
.bar-step .label {
  width: 50%;
  font-weight: bold;
}
.bar-step .label span {
  color: #C70246;
}
.bar-step .step {
  width: 50%;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: right;
}
.bar-step .step span {
  font-size: 12px;
  font-size: 1.2rem;
  display: inline-block;
  margin-right: 1px;
  color: #dadbdb;
}
.bar-step .step span.color {
  font-size: 12px;
  font-size: 1.2rem;
  color: #C70246;
}

.inner-title {
  text-align: center;
  margin-top: 30px;
  letter-spacing: 1px;
}
.inner-title span {
  font-size: 18px;
  font-size: 1.8rem;
}

.dialog-cancel {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: none;
  height: auto;
}
.dialog-cancel .in {
  width: 300px;
  text-align: center;
  border: none;
  padding: 40px 15px 30px;
  box-shadow: 0 0 10px 7px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .dialog-cancel .in {
    width: 260px;
  }
}
.dialog-cancel .in p {
  font-weight: bold;
  line-height: 1.6em;
}

/* ---------------------- custom css ---------------------- */
.btn-grp {
  display: flex;
  justify-content: space-between;
}
.btn-grp > .btn {
  width: calc(50% - 6px);
}
.btn-delete {
  background-color: #95a5a6;
}
.d-none {
  display: none;
}
.input-group .select-form.input-error {
  border: 1px solid #C70246 !important;
  background: #ffecf1;
}
.no-arrow {
  -moz-appearance: textfield;
}
.no-arrow::-webkit-inner-spin-button {
  display: none;
}
.no-arrow::-webkit-outer-spin-button,
.no-arrow::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.dialog-confirm {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: none;
  height: auto;
}
.dialog-confirm .in {
  width: 350px;
  text-align: center;
  border: none;
  padding: 40px 15px 30px;
  box-shadow: 0 0 10px 7px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .dialog-confirm .in {
    width: 285px;
  }
}
.dialog-confirm .in p {
  font-weight: bold;
  line-height: 1.6em;
}
.edit {
  cursor: pointer;
}
:host {
  display: block;
}

input[type="date"] {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  padding: 8px 10px;
  background-color: #fff;
  font-size: 1.3rem !important;
  outline: none;
}
@media only screen and (max-width: 767px) {
  input[type="date"] {
    font-size: 11px;
    font-size: 1.1rem;
  }
}
input[type="date"].input-date {
  border: 1px solid #dadbdb;
  border-radius: 24px;
}
@media only screen and (max-width: 767px) {
  input[type="date"].input-date {
    border-radius: 9.5px;
  }
}

input[type="date"]::-webkit-calendar-picker-indicator {
  background-image: url("../images/icon/ico_calendar.svg");
  outline: none;
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

body {
  background: rgb(242, 230, 230);
  background: linear-gradient(90deg, rgba(242, 230, 230, 0.2) 0%, rgba(119, 119, 119, 0.2) 100%);
}

.bg {
  width:100%;
  min-height:100vh;
  position: relative;
  overflow:hidden;
}

.bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 879px 1205px 0;
  border-color: transparent #ffffff transparent transparent;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

.bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 1800px 565px 0;
  border-color: transparent #ffffff transparent transparent;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

.bg1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 565px 0 0 1800px;
  border-color: transparent transparent transparent #ffffff;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

@media screen and (max-width: 1023px) {
  .bg::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 55.467vw 150.933vw 0;
    border-color: transparent #ffffff transparent transparent;
    opacity: 0.2;
  }

  .bg::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 106.667vw 48vw 0;
    border-color: transparent #ffffff transparent transparent;
    opacity: 0.2;
  }

  .bg1::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40.357vw 0 0 128.571vw;
    border-color: transparent transparent transparent #ffffff;
    opacity: 0.2;
  }

}

@media only screen and (max-width: 767px) {
  #toggle-bigList span.txt,
  .list__body .collapsible-heading {
    word-break: break-all;
  }
}

[formControlName="taxId"] {
  width: 20%;
  max-width: 20%;
}

@media (max-width: 768px) {
  [formControlName="taxId"] {
      width: 30%;
      max-width: 30%;
  }
}
