@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* color */
*:focus {
  outline: none;
}

html {
  font-size: 62.5%;
}

.white {
  background-color: #FFFFFF !important;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  font-size: 1.6rem;
  overflow-y: scroll;
  overflow-x: hidden;
  letter-spacing: 0;
  background-color: #f0f0f0;
  color: #9da2b2;
  padding-bottom: 80px;
}
body .container {
  padding-top: 3rem;
  padding-bottom: env(safe-area-inset-bottom);
  overflow: hidden;
}

.pb-safe-area {
  padding-bottom: env(safe-area-inset-bottom);
  height: calc(100vh - env(safe-area-inset-bottom));
}

body + .container.no-space {
  padding-top: 0px !important;
}

input {
  border: none !important;
  height: calc(4rem + 2px);
  font-size: 1.6rem !important;
}
input::-moz-placeholder {
  color: #9da2b2 !important;
}
input::placeholder {
  color: #9da2b2 !important;
}
input .no-space {
  padding-top: 0 !important;
}

p {
  margin-bottom: 0px !important;
}

.no-space {
  padding-top: 0 !important;
}

body + .container.no-space {
  padding-top: 0 !important;
}

label.error {
  color: #e21001 !important;
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 1.2rem;
  display: block;
}

.rounded-box {
  border: solid;
  border-radius: 15px;
}

.last-box {
  margin-bottom: 50px;
}

.bg-lightblue {
  background-color: #f4fefe;
}

.bg-darkblue {
  background-color: #002F7B;
}

.border-darkblue {
  border-color: #002F7B;
}

a {
  text-decoration: underline;
  color: #9da2b2;
}

a.btn {
  text-decoration: none;
}

.vac {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.fwb {
  font-weight: bold;
}

/* font-size */
.f08 {
  font-size: 0.8rem;
}

.f1 {
  font-size: 1rem;
}

.f11 {
  font-size: 1.1rem;
}

.f12 {
  font-size: 1.2rem;
}

.f13 {
  font-size: 1.3rem;
}

.f14 {
  font-size: 1.4rem;
}

.f15 {
  font-size: 1.5rem;
}

.f18 {
  font-size: 1.8rem !important;
}

.f19 {
  font-size: 1.9rem;
}

.f2 {
  font-size: 2rem;
}

.f3 {
  font-size: 3rem;
}

.f5 {
  font-size: 5rem;
}

/* color */
.red {
  color: #e21001;
}

.gray {
  color: #9da2b2;
}

.blue {
  color: #1e44a6;
}

.darkgray {
  color: #515151;
}

.black {
  color: black;
}

.crimson {
  color: #ab0700;
}

.deepgray {
  color: #333333;
}

.br {
  border-right: solid 1px #f0f0f0;
}

.col2 {
  display: inline-flex;
  width: 100%;
}

.form-content {
  margin-bottom: 3rem;
}

.block {
  display: block;
}

.radio {
  margin: 0.5rem;
}
.radio label {
  color: #9da2b2;
}
.radio:last-child {
  margin-left: 5%;
}
.radio:nth-child(2) {
  margin-left: 5%;
}
.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}
.radio input[type=radio] + .radio-label:before {
  content: "";
  background: #f0f0f0;
  border-radius: 100%;
  border: 1px solid;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -0.2em;
  margin-right: 0.6em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.radio input[type=radio]:checked + .radio-label:before {
  background-color: #1e44a6;
  box-shadow: inset 0 0 0 4px #f0f0f0;
}
.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: #1e44a6;
}
.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

.custom-select {
  width: 100%;
  line-height: 1 !important;
  color: #9da2b2;
}
.custom-select:last-child {
  margin-left: 15px;
}

.checkbox {
  width: 100%;
  text-align: left;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.checkbox p {
  color: #515151;
}
.checkbox div {
  color: #9da2b2;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

input[type=checkbox] {
  height: 2rem;
}

.checkbox label {
  position: relative;
  display: block;
  width: 100%;
  margin: 2px 0 0;
  padding: 0 0;
}

.checkbox label input[type=checkbox] {
  position: relative;
  z-index: 1;
  display: inline-block;
  float: left;
  margin-top: 3px;
}

.checkbox label div {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
}

.fr {
  float: right !important;
}

.no-space {
  padding-top: 0px !important;
  margin-top: 0px !important;
}

.no-space-sides {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

/* margin-top */
.mt06 {
  margin-top: 0.6rem;
}

.mt1 {
  margin-top: 1rem;
}

.mt2 {
  margin-top: 2rem !important;
}

.mt3 {
  margin-top: 3rem !important;
}

.mt5 {
  margin-top: 5rem;
}

.mt6 {
  margin-top: 6rem;
}

/* margin-bottom */
.mb0 {
  margin-bottom: 0 !important;
}

.mb1 {
  margin-bottom: 1rem;
}

.mb2 {
  margin-bottom: 2rem !important;
}

.mb3 {
  margin-bottom: 3rem;
}

.mb10 {
  margin-bottom: 10rem;
}

.mr3 {
  margin-right: 3rem;
}

.mr1 {
  margin-right: 1rem;
}

.mr2 {
  margin-right: 2rem;
}

.ml0 {
  margin-left: 0;
}

.ml1 {
  margin-left: 1rem;
}

.ml2 {
  margin-left: 2rem;
}

.ml3 {
  margin-left: 3rem;
}

.pt0 {
  padding-top: 0;
}

.pt1 {
  padding-top: 1rem;
}

.pt2 {
  padding-top: 2rem !important;
}

.pb1 {
  padding-bottom: 1rem;
}

.pb0 {
  padding-bottom: 0;
}

.pr0 {
  padding-right: 0;
}

.pr1 {
  padding-right: 1rem;
}

.pr2 {
  padding-right: 2rem;
}

.pl0 {
  padding-left: 0;
}

.pl1 {
  padding-left: 1rem;
}

@media only screen and (max-width: 360px) {
  .checkbox div {
    font-size: 1.2rem;
  }
}
.section-msg {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.custom-select {
  height: calc(6rem + 2px) !important;
  border-radius: 0.25rem;
}

.remarks {
  font-size: 0.8rem;
  font-style: italic;
  color: #515151;
}

.ECM_CheckboxInput {
  padding: 12px 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.ECM_CheckboxInput-Input {
  margin: 0;
  width: 0;
  opacity: 0;
}

.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput {
  background: #1e44a6;
}

.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 2px;
  border-radius: 1px;
  transform: translate(-4px, 2px) rotateZ(-135deg);
  transform-origin: 1px 1px;
  background: #FFFFFF;
}

.ECM_CheckboxInput-Input:checked + .ECM_CheckboxInput-DummyInput::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76%;
  height: 2px;
  border-radius: 1px;
  transform: translate(-4px, 2px) rotateZ(-45deg);
  transform-origin: 1px 1px;
  background: #FFFFFF;
}

.ECM_CheckboxInput-DummyInput {
  position: relative;
  top: 0;
  left: 0;
  margin-right: 0.5rem;
  display: block;
  width: 18px;
  height: 18px;
  float: left;
  border: solid 0.2px transparent;
  background: #FFFFFF;
  border-radius: 1px;
}

.news .news-list {
  margin: 0.5rem 0 2rem;
  font-size: 1.4rem;
}

.news .news-list a, .news .news-list span.btn-href {
  position: relative;
  display: block;
  padding: 0.5rem 2rem 0.5rem 1rem;
  border-bottom: 1px solid #f5f7f8;
  color: #333333;
}

.news .news-list a span.date, .news .news-list span.btn-href span.date {
  font-size: 1.2rem;
  padding-bottom: 0.2rem;
  color: #bdbdbd;
}

.news .news-list a span.date, .news .news-list span.btn-href span.date {
  font-size: 1.2rem;
  padding-bottom: 0.2rem;
}

.news .news-list a:after, .news .news-list span.btn-href:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}

::after, ::before {
  box-sizing: border-box;
}

.news .news-list a span, .news .news-list span.btn-href span {
  display: block;
}

.news .list-normal {
  margin: 0.5rem 0 0;
  font-size: 1.6rem;
  display: block;
  color: black;
}
.news .list-normal ul li:first-child::before {
  border: 1px dotted #b9b9b9;
}
.news .list-normal a, .news .list-normal span.btn-href {
  position: relative;
  display: block;
  padding: 0.5rem 2rem 0.5rem 1rem;
  border-bottom: 1px dotted #b9b9b9;
  color: black;
  font-weight: bold;
}
.news .list-normal a span.data, .news .list-normal span.btn-href span.date {
  font-size: 1.5rem;
  padding-bottom: 0.2rem;
  color: black;
  font-weight: normal;
}

.news .list-normal a span.date, .news .list-normal span.btn-href span.date {
  font-size: 1.5rem;
  padding-bottom: 0.2rem;
}

::after, ::before {
  box-sizing: border-box;
}

.news .list-normal a span, .news .list-normal span.btn-href span {
  display: block;
}

.news {
  width: 100%;
}

.news .list-pic {
  margin: 0.5rem 0 2rem;
  font-size: 1.4rem;
  background-color: #FFFFFF;
}

.news .list-pic a, .news .list-pic span.btn-href {
  position: relative;
  display: block;
  padding: 0.5rem 2rem 0.5rem 1rem;
  border-bottom: 0.5px solid #f5f7f8;
  color: #333333;
}

.news .list-pic a span.date, .news .list-pic span.btn-href span.date {
  font-size: 1.2rem;
  padding-bottom: 0.2rem;
  color: #bdbdbd;
}

.news .list-pic a span.date, .news .list-pic span.btn-href span.date {
  font-size: 1.2rem;
  padding-bottom: 0.2rem;
}

.news .list-pic a:after, .news .list-pic span.btn-href:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}

::after, ::before {
  box-sizing: border-box;
}

.news .list-pic a span, .news .list-pic span.btn-href span {
  display: block;
}

#list-coupon .list-pic li, #coupon-top .list-pic li {
  list-style-type: none;
  background: #fff;
  margin-bottom: 0.1em;
  position: relative;
  color: #333333;
  /* padding: 0.25em 1em; */
  /* border-bottom: dashed 1px #F7909A; */
  text-align: left;
}
#list-coupon .list-pic li::after, #coupon-top .list-pic li::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}
#list-coupon .list-pic li .txt, #coupon-top .list-pic li .txt {
  font-size: 1.6rem;
  display: table-cell;
}
#list-coupon .list-pic li .article-pic, #coupon-top .list-pic li .article-pic {
  width: 35%;
  display: table-cell;
}
#list-coupon .list-pic li .link-area, #coupon-top .list-pic li .link-area {
  /* position: absolute;*/
  /*display: inline-block;*/
  /*right: 10px;*/
  /*  bottom: 10px;*/
  margin-left: 10rem;
  text-decoration: underline;
  font-size: 1.5rem;
}
#list-coupon .list-pic li a, #coupon-top .list-pic li a {
  color: #1e44a6;
  text-align: right;
  margin-left: 10rem;
}
#list-coupon .list-pic li div, #coupon-top .list-pic li div {
  padding-top: 10px;
  padding-bottom: 5px;
}
#list-coupon .list-pic li .txt, #coupon-top .list-pic li .txt {
  padding-left: 10px;
}
#list-coupon .coupon-title, #coupon-top .coupon-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#list-coupon .list-coupon li, #coupon-top .list-coupon li {
  list-style-type: none;
  background: #fff;
  margin-bottom: 1em;
  position: relative;
  color: #333333;
  border-radius: 5px;
  /* padding: 0.25em 1em; */
  /* border-bottom: dashed 1px #F7909A; */
  text-align: left;
}
#list-coupon .list-coupon li .coupon-circle, #coupon-top .list-coupon li .coupon-circle {
  background-color: rgb(240, 240, 240);
  width: 50px;
  height: 40px;
  border-radius: 40px;
  position: absolute;
  right: -41px;
  top: 27%;
}
#list-coupon .list-coupon li .txt, #coupon-top .list-coupon li .txt {
  font-size: 1.6rem;
  overflow-wrap: break-word;
}
#list-coupon .list-coupon li .txt p, #coupon-top .list-coupon li .txt p {
  text-align: center;
}
#list-coupon .list-coupon li .txt.coupon-info, #coupon-top .list-coupon li .txt.coupon-info {
  width: 65%;
  float: left;
  display: inline-block;
  position: relative;
  height: 100%;
  padding-top: 0 !important;
}
#list-coupon .list-coupon li img, #coupon-top .list-coupon li img {
  padding-left: 0;
}
#list-coupon .list-coupon li .section-msg, #coupon-top .list-coupon li .section-msg {
  display: block;
  color: #FFFFFF;
  background-color: #1ab8a5;
  border-radius: 0 0 5px 0;
  position: absolute;
  bottom: 0px;
  width: 100%;
  /*line-height: 2.2rem;*/
}
#list-coupon .list-coupon li .labelbox, #coupon-top .list-coupon li .labelbox {
  padding-bottom: 10px;
}
#list-coupon .list-coupon li .labelbox div, #coupon-top .list-coupon li .labelbox div {
  padding: 5px 10px;
  display: inline-block;
  margin-left: 5px;
  border-radius: 5px;
}
#list-coupon .list-coupon li .labelbox div:first-child, #coupon-top .list-coupon li .labelbox div:first-child {
  background-color: #546dd1;
  color: #FFFFFF;
  border: solid 0.5px #546dd1;
}
#list-coupon .list-coupon li .labelbox div:nth-child(2), #coupon-top .list-coupon li .labelbox div:nth-child(2) {
  border: solid 0.5px #9da2b2;
}
#list-coupon .list-coupon li .labelbox div:nth-child(3), #coupon-top .list-coupon li .labelbox div:nth-child(3) {
  background-color: #ab0700;
  color: #FFFFFF;
  border: solid 0.5px #ab0700;
}
#list-coupon .list-coupon li .vem, #coupon-top .list-coupon li .vem {
  vertical-align: middle;
}
#list-coupon .list-coupon li .coupon-content, #coupon-top .list-coupon li .coupon-content {
  border-left: solid 1px #f0f0f0;
}
#list-coupon .list-coupon li .article-pic, #coupon-top .list-coupon li .article-pic {
  width: 35%;
  padding-top: 0;
  display: inline-block;
  height: 100%;
  float: left;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
#list-coupon .list-coupon li .article-pic img, #coupon-top .list-coupon li .article-pic img {
  border-radius: 10px 0 0 10px;
}
#list-coupon .list-coupon li .link-area, #coupon-top .list-coupon li .link-area {
  /* position: absolute;*/
  /*display: inline-block;*/
  /*right: 10px;*/
  /*  bottom: 10px;*/
  margin-left: 10rem;
  text-decoration: underline;
  font-size: 1.5rem;
}
#list-coupon .list-coupon li a, #coupon-top .list-coupon li a {
  color: #1e44a6;
  text-align: right;
  margin-left: 10rem;
}
#list-coupon .list-coupon li div, #coupon-top .list-coupon li div {
  display: block;
  padding-top: 3px;
}

.list-table {
  display: table;
  width: 100%;
}

.article-top {
  height: 130px;
  display: table-row;
}

.list-pic li {
  list-style-type: none;
  background: #fff;
  margin-bottom: 0.1em;
  position: relative;
  color: #333333;
  text-align: left;
}
.list-pic li .txt {
  font-size: 1.6rem;
  display: table-cell;
  position: relative;
  padding-left: 10px;
  padding-right: 20px;
}
.list-pic li .txt::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
}
.list-pic li .article-pic {
  width: 140px;
  display: table-cell;
}
.list-pic li .article-pic img {
  width: 120px;
  height: 90px;
  margin-left: 5px;
  border-radius: 10px;
}
.list-pic li .link-area {
  margin-left: 10rem;
  text-decoration: underline;
  font-size: 1.5rem;
}
.list-pic li a {
  color: #1e44a6;
  text-align: right;
  margin-left: 10rem;
}
.list-pic li div {
  display: table-cell;
  vertical-align: top;
  padding-top: 10px;
  padding-bottom: 5px;
}

.list-coupon li {
  list-style-type: none;
  background: #fff;
  margin-bottom: 1em;
  position: relative;
  color: #333333;
  border-radius: 10px;
  /* padding: 0.25em 1em; */
  /* border-bottom: dashed 1px #F7909A; */
  text-align: left;
}
.list-coupon li .txt {
  font-size: 1.6rem;
}
.list-coupon li .txt p {
  text-align: center;
}
.list-coupon li img {
  padding-left: 0;
}
.list-coupon li .section-msg {
  display: block;
  color: #FFFFFF;
  background-color: #1ab8a5;
  padding-bottom: 6px;
  border-radius: 0 0 10px 0;
}
.list-coupon li .labelbox {
  padding-bottom: 10px;
}
.list-coupon li .labelbox div {
  padding: 5px 10px;
  display: inline-block;
  margin-left: 5px;
  border-radius: 5px;
}
.list-coupon li .labelbox div:first-child {
  background-color: #546dd1;
  color: #FFFFFF;
  border: solid 0.5px #546dd1;
}
.list-coupon li .labelbox div:nth-child(2) {
  border: solid 0.5px #9da2b2;
}
.list-coupon li .labelbox div:nth-child(3) {
  background-color: #ab0700;
  color: #FFFFFF;
  border: solid 0.5px #ab0700;
}
.list-coupon li .vem {
  vertical-align: middle;
}
.list-coupon li .article-pic {
  width: 35%;
  padding-top: 0;
}
.list-coupon li .article-pic img {
  border-radius: 10px 0 0 10px;
}
.list-coupon li .link-area {
  /* position: absolute;*/
  /*display: inline-block;*/
  /*right: 10px;*/
  /*  bottom: 10px;*/
  margin-left: 10rem;
  text-decoration: underline;
  font-size: 1.5rem;
}
.list-coupon li a {
  color: #1e44a6;
  text-align: right;
  margin-left: 10rem;
}
.list-coupon li div {
  display: table-cell;
  vertical-align: top;
  padding-top: 2px;
}

ul {
  list-style: none;
}

@media only screen and (min-width: 767px) {
  .list-coupon ul {
    margin: auto;
    width: 44%;
  }
}
.list-coupon2 li {
  list-style-type: none;
  background: #fff;
  margin-bottom: 2em;
  position: relative;
  color: #333333;
  border-radius: 10px;
  /* padding: 0.25em 1em; */
  /* border-bottom: dashed 1px #F7909A; */
  text-align: left;
}
.list-coupon2 li .txt2 {
  font-size: 1.6rem;
}
.list-coupon2 li .txt2 p {
  text-align: center;
}
.list-coupon2 li img {
  padding-left: 0;
}
.list-coupon2 li .section-msg {
  display: block;
  color: #FFFFFF;
  background-color: #1ab8a5;
  padding-bottom: 6px;
  border-radius: 0 0 10px 0;
}
.list-coupon2 li .vem {
  vertical-align: middle;
}
.list-coupon2 li .article-pic2 {
  width: 35%;
  padding-top: 0;
}
.list-coupon2 li .article-pic2 img {
  border-radius: 10px 0 0 10px;
}
.list-coupon2 li .link-area {
  /* position: absolute;*/
  /*display: inline-block;*/
  /*right: 10px;*/
  /*  bottom: 10px;*/
  margin-left: 10rem;
  text-decoration: underline;
  font-size: 1.5rem;
}
.list-coupon2 li a {
  color: #1e44a6;
  text-align: right;
  margin-left: 10rem;
}
.list-coupon2 li div {
  display: table-cell;
  vertical-align: top;
  padding-top: 2px;
}

ul {
  list-style: none;
}

@media only screen and (min-width: 767px) {
  .list-coupon ul {
    margin: auto;
    width: 44%;
  }
}
.box29 {
  margin: 1em 0;
  background: #FFFFFF;
  border-radius: 0.7rem;
  text-align: center;
  box-shadow: 0 0 8px #cfcfcf;
}
.box29 button {
  margin-right: 10%;
  margin-left: 10%;
  width: 80%;
  display: block;
}
.box29 img {
  vertical-align: bottom;
}

.box29 .box-title {
  font-size: 1.6rem;
  background: #1e44a6;
  padding: 4px;
  text-align: center;
  color: #FFF;
  letter-spacing: 0.05em;
  border-radius: 0.7rem 0.7rem 0 0;
}

.box29 p {
  padding: 3rem;
  margin: 0;
}

.barcode p {
  text-align: right !important;
  padding: 0 2rem 1rem 0 !important;
  color: black;
  font-size: 1.3rem;
}

.box-rightangle {
  margin: 2em 0;
  background: #FFFFFF;
  text-align: center;
  box-shadow: 0 0 8px #cfcfcf;
}
.box-rightangle p {
  padding: 3rem;
}

.box-wide {
  margin: 2em 0;
  background: #FFFFFF;
  border-radius: 0.7rem;
  text-align: center;
  box-shadow: 0 0 8px #cfcfcf;
}
.box-wide p {
  padding: 0.5rem 2rem 0.5rem 2rem;
}

.box-small-navy {
  background: #1e44a6;
  color: #FFFFFF;
  border-radius: 2px;
  text-align: center;
}
.box-small-navy p {
  padding: 1rem 0.2rem;
  font-size: 1.2rem;
}

.box-small-navy2 {
  background: #1e44a6;
  color: #FFFFFF;
  border-radius: 2px;
  text-align: center;
}
.box-small-navy2 p {
  padding: 0.4rem 0.2rem;
  font-size: 1rem;
}

.box-small-gray {
  background: #cfcfcf;
  color: #FFFFFF;
  border-radius: 2px;
  text-align: center;
}
.box-small-gray p {
  padding: 1rem 0.2rem;
  font-size: 1.2rem;
}

.box-small-gray2 {
  background: #cfcfcf;
  color: #FFFFFF;
  border-radius: 2px;
  text-align: center;
}
.box-small-gray2 p {
  padding: 0.4rem 0.2rem;
  font-size: 1rem;
}

.border-dot {
  border-top: 1px dotted #b9b9b9;
  margin-top: 2rem;
}

.samll-pic img {
  width: 20px !important;
  height: 20px !important;
}

.option label {
  margin-bottom: 0 !important;
}

label {
  cursor: inherit;
}

.ios-segmented-control {
  --segmentedcontrollbackground: rgba(255,255,255,1);
  background: #cfcfcf;
  border-radius: 6px;
  margin: 0 auto;
  padding: 2px;
  border: none;
  outline: none;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 80%;
}
.ios-segmented-control .first {
  border-radius: 6px 0 0 6px;
}
.ios-segmented-control .last {
  border-radius: 0 6px 6px 0;
}

.ios-segmented-control .option {
  position: relative;
  cursor: pointer;
  background-color: #cfcfcf;
}

.ios-segmented-control .option label {
  position: relative;
  display: block;
  text-align: center;
  padding: 5px 3vmin;
  background: rgba(255, 255, 255, 0);
  font-weight: 500;
  color: rgb(0, 0, 0);
  font-size: 10px;
}

.ios-segmented-control .option label::before, .ios-segmented-control .option label::after {
  content: "";
  width: 1px;
  background: rgba(142, 142, 147, 0.15);
  position: absolute;
  top: 14%;
  bottom: 14%;
  border-radius: 10px;
  will-change: background;
  transition: background 0.2s ease;
}

.ios-segmented-control .option label::before {
  left: 0;
  transform: translateX(-0.5px);
}

.ios-segmented-control .option label::after {
  right: 0;
  transform: translateX(0.5px);
}

.ios-segmented-control .option:first-of-type {
  grid-column: 1;
  grid-row: 1;
  box-shadow: none;
}

.ios-segmented-control .option:first-of-type label::before {
  opacity: 0;
}

.ios-segmented-control .option:last-of-type label::after {
  opacity: 0;
}

.ios-segmented-control .option input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  opacity: 0;
}

.ios-segmented-control .selection {
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.12), 0 3px 1px 0 rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  will-change: transform;
  transition: transform 0.2s ease;
}

.ios-segmented-control .option label span {
  display: block;
  position: relative;
  z-index: 2;
  transition: all 0.2s ease;
  will-change: transform;
}

.ios-segmented-control .option input:checked + label::before, .ios-segmented-control .option input:checked + label::after {
  background: var(--segmentedcontrollbackground);
  z-index: 1;
}

.ios-segmented-control .option input:checked + label {
  cursor: default;
  color: #333;
}

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 500px;
  padding: 10px 30px;
  background-color: #f0f0f0;
  border-radius: 10px;
}

.modalContents {
  background-color: #f0f0f0;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

/* 以下ボタンスタイル */
@media only screen and (max-width: 767px) {
  .modalWrapper {
    width: 90%;
    height: auto;
    padding: 5px 10px;
  }
  .modalContents {
    height: 100%;
    width: 100%;
  }
  .modalContents .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .modalContents .form-content {
    margin-bottom: 1rem;
  }
  .modalContents .container .btn {
    margin-bottom: 2rem !important;
  }
}
.label-bottom {
  background-color: #FFF;
  color: #9da2b2;
  width: 100%;
  margin: 0;
  text-align: center;
  padding-top: 2px;
  padding-bottom: 2px;
}

.label-top {
  margin-bottom: 1rem;
  padding: 0.5rem 3rem;
  border: 1px solid #1e44a6;
  color: #FFFFFF !important;
  background-color: #1e44a6;
}

.slick-slider {
  padding: 0 !important;
}

.db {
  display: block;
}

.detail .detail-date {
  text-align: right;
}
.detail p {
  margin-bottom: 1rem !important;
  padding-left: 3rem;
}
.detail .clause {
  text-indent: -4rem;
  padding-left: 4rem;
}
.detail .no_space {
  margin-top: -2rem !important;
}
.detail span {
  display: inline-block;
  width: 4rem;
  text-align: right;
}
.detail ul {
  margin-left: 4rem !important;
  margin-bottom: 0.5rem !important;
  list-style: none;
}
.detail ul li {
  text-indent: -4rem;
  padding-left: 3rem !important;
}

.detail ul li:before {
  display: none;
  content: "" !important;
}

.detail ul.bullet li {
  text-indent: -2rem;
  padding-left: 2rem !important;
}

.detail ul.bullet li span {
  display: inline-block;
  width: 2rem;
  text-align: right;
}

.detail ul + p.clause {
  margin-top: 1rem !important;
}

.detail h2 {
  margin-bottom: 2rem !important;
}

.detail h4 {
  margin-top: 1.5rem !important;
}

.detail h4 + p {
  margin-top: 0.5rem !important;
}

.detail-inner {
  text-indent: -1rem !important;
}

.black {
  color: black;
}

.mincho {
  font-family: serif;
}

.detail-title {
  margin-top: 2rem !important;
  margin-bottom: 1rem !important;
  padding-left: 0 !important;
}

.use_icon {
  font-family: "Font Awesome 5" !important;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}

.list-white li {
  font-size: 1.4rem;
  color: #333333;
  background: #fff;
  margin-bottom: 0px;
  line-height: 1.5;
  padding: 0.5em;
  list-style-type: none !important;
  border-bottom: solid 1px #ccc;
}
.list-white .top {
  font-size: 1rem;
  background: #336cad;
  color: #fff;
  line-height: 1;
}
.list-white span {
  float: right;
  color: #9da2b2;
}

.list-white-content {
  font-weight: bold;
  color: #9da2b2;
}

.list-wide div {
  margin-top: 1rem;
}

.fl {
  float: left !important;
}

.list-span {
  float: none !important;
  font-size: 1.2rem;
  margin-left: 1rem;
}

/* font-style */
.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

/* botton */
.btn {
  padding: 1rem 1rem;
  border-radius: 0.7rem;
  margin-bottom: 3rem;
}

.btn-small {
  padding: 0.7rem 0.7rem;
  border-radius: 1.3rem;
  margin-bottom: 3rem;
}

.btn-common {
  color: #fff !important;
  background-color: #1e44a6 !important;
  border-color: #1e44a6 !important;
  font-size: 1.6rem;
}

.btn-common-home {
  box-shadow: 0 0 8px #cfcfcf;
}

.btn-common-half {
  color: #fff !important;
  background-color: #1e44a6 !important;
  border-color: #1e44a6 !important;
  font-size: 1.6rem;
  width: 50%;
}

.btn-green {
  color: #fff !important;
  background-color: #288f28 !important;
  border-color: #288f28 !important;
  font-size: 1.6rem;
  display: inline-block;
  width: 50%;
}

.btn-common-small {
  padding: 1rem 0rem;
}

.btn-lightgray {
  color: #9da2b2 !important;
  background-color: #f0f0f0 !important;
  border-color: #9da2b2 !important;
  font-size: 1.6rem;
}

.btn-white {
  color: #1e44a6 !important;
  background-color: #FFFFFF !important;
  border-color: rgb(209, 209, 209) !important;
  font-size: 1.3rem;
  border-width: 1px !important;
}
.btn-white img {
  width: 35px;
  height: 35px;
}

.btn-white2 {
  color: #1e44a6 !important;
  background-color: #FFFFFF !important;
  border-color: rgb(209, 209, 209) !important;
  font-size: 1.6rem;
  border-width: 1px !important;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-red {
  color: #e21001 !important;
  background-color: #FFFFFF !important;
  border-color: #e21001 !important;
  font-size: 1.6rem !important;
}

.btn-blue {
  color: #1e44a6 !important;
  background-color: #FFFFFF !important;
  border-color: #1e44a6 !important;
  font-size: 1.6rem !important;
}

.btn-crimson {
  color: #FFFFFF !important;
  background-color: #ab0700 !important;
  border-color: #ab0700 !important;
  font-size: 1.6rem !important;
}

.btn-gray {
  color: #FFFFFF !important;
  background-color: #bdbdbd !important;
  border-color: #bdbdbd !important;
  font-size: 1.6rem !important;
}

.btn-white-gray {
  color: #9da2b2 !important;
  background-color: #FFFFFF !important;
  border-color: #9da2b2 !important;
  font-size: 1.3rem !important;
}

.btn-order-alert {
  color: #FFFFFF !important;
  background-color: #e00 !important;
  border-color: #e00 !important;
  font-size: 1.6rem !important;
  line-height: 1.4;
  padding: 0.3rem 1rem;
}
.btn-order-alert .subtxt {
  font-size: 1.2rem !important;
  display: block;
}

button span.btn-nonfav {
  background-image: url("../img/shop_bookmark_off.svg");
  display: block;
  width: 35px;
  height: 35px;
  background-size: 35px 35px;
  text-indent: -9999px;
  /* 位置合わせ用 */
  vertical-align: middle;
  margin: 0 auto;
}

button span.btn-fav {
  background-image: url("../img/shop_bookmark_on.svg");
  display: block;
  width: 35px;
  height: 35px;
  background-size: 35px 35px;
  text-indent: -9999px;
  /* 位置合わせ用 */
  vertical-align: middle;
  margin: 0 auto;
}

.btn-half {
  padding: 1.8rem 0.7rem;
  border-radius: 1.1rem;
  margin-bottom: 3rem;
  background-color: #007aff;
  color: #fff;
  font-size: 1.6rem;
}

.btn-letter {
  font-size: 1.6rem !important;
  text-decoration: underline !important;
}
.btn-letter:focus {
  outline: 0 !important;
}

.btn-yellow {
  color: #f7ba7b !important;
  background-color: #1e44a6 !important;
  border-color: rgb(209, 209, 209) !important;
  border-width: 1px;
  font-size: 1rem !important;
}

.btn-bottom {
  border-radius: 0 !important;
  position: fixed;
  bottom: 0%;
  right: 0%;
  bottom: env(safe-area-inset-bottom);
  z-index: 1200;
}

.bottom {
  position: fixed;
  bottom: 0;
  bottom: env(safe-area-inset-bottom);
  right: 0%;
  z-index: 1200;
}

.br0 {
  border-radius: 0 !important;
}

.cp_menu {
  margin: 0 auto;
  padding: 0;
}

.cp_menu a {
  display: block;
  padding: 0.5rem;
  text-decoration: none;
  color: #000000 !important;
  line-height: 1;
}

.cp_menu label {
  display: block;
  position: relative;
  margin: 0 0 0 0;
  padding: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333333;
  background: #fff;
  cursor: pointer;
}

.cp_menu label::before {
  position: absolute;
  content: "▼";
  color: #9da2b2;
  right: 0.5em;
  top: 25%;
}

.cp_menu input {
  display: none;
}

.cp_menu ul {
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  list-style: none;
}

.cp_menu li {
  overflow: hidden;
  max-height: 0;
  transition: all 0.5s;
  background-color: #fff;
  border-bottom: solid 0.3px #f0f0f0;
  /* padding: 5px;*/
  /* &:last-child {
     border-bottom: solid 1px $color-base;
   }*/
}

#cp_menu_bar1:checked ~ #link1 li,
#cp_menu_bar2:checked ~ #link2 li,
#cp_menu_bar3:checked ~ #link3 li,
#cp_menu_bar4:checked ~ #link4 li,
#cp_menu_bar4_1:checked ~ #link4_1 li,
#cp_menu_bar5:checked ~ #link5 li,
#cp_menu_bar6:checked ~ #link6 li,
#cp_menu_bar7:checked ~ #link7 li,
#cp_menu_bar8:checked ~ #link8 li,
#cp_menu_bar9:checked ~ #link9 li,
#cp_menu_bar10:checked ~ #link10 li,
#cp_menu_bar11:checked ~ #link11 li,
#cp_menu_bar12:checked ~ #link12 li,
#cp_menu_bar13:checked ~ #link13 li {
  max-height: 46px;
  opacity: 1;
}

.acordion-title {
  font-size: 1rem;
  background: #336cad;
  color: #fff;
  line-height: 1;
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 0 !important;
}

.purple {
  background-color: #707eed;
  color: #FFF;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 1rem;
  padding: 0.1rem 2rem;
}

.label-gray {
  background-color: #cfcfcf;
  color: #FFF;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 1rem;
  padding: 0.1rem 2rem;
}

.tac {
  text-align: center;
}

.multicheck {
  list-style: none;
  margin: 0;
  padding: 0;
}

.multicheck .multicheck-item {
  padding: 0;
}

.multicheck input[type=checkbox] {
  display: none;
}

/* .multicheck input[type="checkbox"].multicheck-input:checked + label {
   background: #C0E8FF;
   color: #333333;
   border: 2px solid #28A7E1;
  }*/
.multicheck .multicheck-label {
  display: block;
  width: 100%;
  height: 45px;
  text-align: left;
  line-height: 45px;
  padding: 0 5px;
  cursor: pointer;
  color: #333333;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.multicheck input[type=checkbox]:checked + label::before {
  background-color: #FFF;
  border-color: #fff;
}

.multicheck input[type=checkbox] + label {
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-right: 25px;
  padding-left: 10px;
}

.multicheck input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  margin-top: -10px;
  right: 40px;
  top: 50%;
  border: 1px solid;
  border-color: #fff;
  background-color: #FFF;
}

.multicheck input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 13px;
  height: 6px;
  margin-top: -8px;
  top: 58%;
  right: 10px;
  transform: rotate(-43deg);
  border-bottom: 2px solid;
  border-left: 2px solid;
  border-color: #1e44a6;
}

h3 {
  font-size: 1.7rem !important;
  color: #1e44a6 !important;
  border-bottom: 4px solid #1e44a6 !important;
}

.mycheckbox input[type=radio],
.mycheckbox input[type=checkbox] {
  display: none;
}

.mycheckbox input[type=radio]:checked + label::before,
.mycheckbox input[type=checkbox]:checked + label::before {
  background-color: #1e44a6;
  border-color: #1e44a6;
}

.mycheckbox input[type=radio] + label,
.mycheckbox input[type=checkbox] + label {
  display: none;
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 25px;
  padding-right: 10px;
}

.mycheckbox input[type=radio] + label::before,
.mycheckbox input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  margin-top: -10px;
  left: 0;
  top: 50%;
  border: 1px solid;
  border-color: #fff;
  background-color: #FFF;
}

.mycheckbox input[type=radio] + label::before {
  border-radius: 9px;
}

.mycheckbox input[type=radio]:checked + label::after,
.mycheckbox input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 13px;
  height: 6px;
  margin-top: -8px;
  top: 58%;
  left: 2px;
  transform: rotate(-43deg);
  border-bottom: 2px solid;
  border-left: 2px solid;
  border-color: #fff;
}

.mycheckbox input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  border-radius: 5px;
  margin-top: 0;
  top: 7px;
  left: 5px;
  transform: none;
  border: none;
  border-color: #fff;
  background: #fff;
}

.w80 {
  width: 80% !important;
}

.wrapper {
  border: 1px solid #ccc;
  display: inline-block;
  position: relative;
  width: 40%;
  margin-left: auto !important;
}
.wrapper input {
  display: block !important;
  background-color: transparent;
  border: 0;
  padding-right: 30px; /* button padding */
  height: calc(2rem + 2px) !important;
}
.wrapper button {
  position: absolute;
  right: 0;
  top: 0;
  display: block !important;
  background-color: transparent;
  border: 0;
  color: #ccc;
  font-size: 1.2rem;
  padding: 2px;
  border-left: solid 1px;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

#accordion_menu > li {
  border-top: #ccc 1px solid;
  border-bottom: #ccc 1px solid;
  margin-bottom: -1px;
}

#accordion_menu a {
  color: #333333;
}

#accordion_menu span {
  color: #333333;
}

#accordion_menu a[data-toggle=collapse] {
  display: block;
  padding: 10px;
  text-decoration: none;
  position: relative;
  background-color: #fff;
}

#accordion_menu a[data-toggle=collapse]::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #9da2b2 1px solid;
  border-right: #9da2b2 1px solid;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

#accordion_menu a[aria-expanded=false]::after {
  transform: rotate(45deg);
  transition-duration: 0.3s;
}

#accordion_menu a[aria-expanded=true]::after {
  transform: rotate(135deg);
  transition-duration: 0.3s;
}

#accordion_menu .wrapper .input-group input {
  padding-right: 0;
}

[id^=menu] li {
  padding: 10px 10px 10px 20px;
  background-color: #fff;
}

.bt {
  border-top: #ccc 1px solid;
}

.fwb {
  font-weight: bold;
}

textarea.form-control {
  height: 10rem;
  border: none;
  resize: none;
}

.form-control {
  padding: 1.75rem 0.75rem;
}

.ps ::-moz-placeholder {
  font-size: 1.3rem;
}

.ps ::placeholder {
  font-size: 1.3rem;
}

.index label {
  margin-top: 2rem;
  font-size: 1.8rem;
  color: #333333;
}

.caution {
  position: relative;
  margin: 2em auto;
  padding: 1em 1em;
  width: 90%; /* ボックス幅 */
  border-style: solid;
  border-color: #e21001; /* 枠の色 */
  border-width: 5px 1px 1px;
  background-color: #f7f7f7; /* 背景色 */
  color: #666; /* テキスト色 */
  box-shadow: 1px 1px 3px #ccc; /* 影 */
  text-align: center;
}

.title-caution {
  background-color: #f7f7f7; /* タイトル背景色 */
  color: #e21001; /* タイトル色 */
  font-size: 1.1em;
  font-weight: bold;
}

.caution ul {
  text-align: left;
  padding-left: 2rem;
}

.caution li {
  list-style: decimal !important;
  margin-bottom: 0.5rem !important;
  text-align: left;
  font-size: 1.4rem;
}

/* calculator  */
.calculator {
  display: none;
  position: absolute;
  width: 60vw;
  min-width: 210px;
  background: #eee;
  border: #ccc solid 1px;
  z-index: 9999;
}

.calculator .calc_display {
  display: block;
  margin: 12px 4% 4px;
  background-color: #fff;
  font-size: 2.4rem;
  line-height: 48px;
  height: 48px;
  color: #333;
  padding: 0 12px;
}

.calculator ul {
  margin: 0;
  padding: 0 0 12px;
  list-style: none;
}

.calculator ul:after {
  content: "";
  display: block;
  clear: both;
}

.calculator li {
  cursor: pointer;
  float: left;
  display: inline-block;
  margin: 8px 0 0 4%;
  width: 28%;
  height: 48px;
  font-size: 1.8rem;
  line-height: 48px;
  text-align: center;
  background: #fff;
  border-radius: 4px;
  border: #ccc solid 1px;
}

.calculator li.ts {
  font-size: 1.6rem;
}

.calculator li.blank {
  background: transparent;
  border: none;
}

.calculator .btn {
  font-size: 1.4rem;
  margin: 0 4% 1rem;
  width: 92%;
}

.calculator_bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1800;
}

/* prev-input  */
.prev-input {
  display: none;
  position: absolute;
  width: 100%;
  background: #fff;
  border: 2px #ccc solid;
  border-top: 1px #ccc solid;
  border-radius: 4px;
  z-index: 1300;
}

.prev-input li {
  display: block;
  border-top: 1px #ccc solid;
  padding: 1rem;
}

/* pagination  */
.page-item.active .page-link {
  background-color: #9da2b2;
  border-color: #9da2b2;
}

.page-link {
  color: #9da2b2;
}

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: -10px 0 30px;
  border-radius: 4px;
  width: 100%;
  text-align: center;
}

.pagination > li {
  margin: 0 0 10px;
  padding: 0;
  display: inline-block;
}

.pagination > li > a,
.pagination > li > span {
  position: relative;
  display: inline-block;
  /*float: left;*/
  padding: 6px 12px;
  color: #9da2b2;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #9da2b2;
}

.pagination-nav .pagination > .active > a, .pagination-nav .pagination > .active > a:focus, .pagination-nav .pagination > .active > a:hover, .pagination-nav .pagination > .active > span, .pagination-nav .pagination > .active > span:focus, .pagination-nav .pagination > .active > span:hover {
  color: #fff !important;
  background-color: #9da2b2;
  border-color: #9da2b2;
}
.pagination-nav .pagination > li > a, .pagination-nav .pagination > li > span {
  font-weight: bold;
  border-radius: 4px;
  margin: 0 3px;
}
.pagination-nav .pagination > li.disabled > a, .pagination-nav .pagination > li.disabled > span {
  color: #fff !important;
  background-color: #cfcfcf;
  border-color: #cfcfcf;
}

/* swal  */
.swal-title {
  font-size: 18px;
}

.swal-button {
  padding: 7px 19px;
  border-radius: 2px;
  background-color: #1e44a6;
  font-size: 12px;
  border: none;
  text-shadow: none;
  text-align: center;
  min-width: 80px;
  outline: none;
}

.swal-button.swal-button--cancel {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #444;
}

.swal-button:focus {
  outline: none;
  box-shadow: none;
}

.swal-button:not([disabled]):hover {
  opacity: 0.7;
}

/* inquiry  */
.inquiry-btn .btn {
  padding: 1rem 0 !important;
  font-size: 1.4rem !important;
}
.inquiry-btn .btn i {
  padding-right: 0.5rem;
}

/* 退会 */
#leaveForm input[type=radio] {
  margin-top: -8px;
}

#leaveForm textarea {
  font-size: 1.4rem;
  padding: 0.75rem;
}

.btn-leave-dialog .btn {
  margin-bottom: 0;
  font-size: 1.4rem;
}

.uploadButton {
  position: relative;
  display: inline-block;
}

.uploadButton .btn {
  margin-bottom: 0;
}

.uploadButton input[type=file] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.thumbnail {
  margin: 10px 0;
  position: relative;
}

.thumbnail img {
  pointer-events: none;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 50vh;
  /*margin-bottom:10px;*/
}/*# sourceMappingURL=style.css.map */