@charset "UTF-8";
/*********************************************
scss/foundation/mixin/_rem.scss
hoverメディアクエリのショートコード(SPでhoverを無効にする為)
ex.@include hover(){color:$c-purple;}
参考：https://zenn.dev/tak_dcxi/articles/2cc1828e9c1fe2#hover%E3%81%AE%E6%8C%87%E5%AE%9A
**********************************************/
/*********************************************
scss/foundation/mixin/_rem.scss
pxをremに変換する
ex.font-size:rem(14px)
**********************************************/
/*********************************************
scss/foundation/mixin/_strip-unit.scss
計算用に単位を削除する
**********************************************/
/*********************************************
foundation/setting/_color.scss
**********************************************/
/*---------------設定ここまで---------------*/
/*********************************************
ブレイクポイントの設定
foundation/setting/_responsive.scss
**********************************************/
/*---------------設定ここまで---------------*/
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap");
body {
  width: 100%;
}
@media (max-width: 399px) {
  body {
    width: 100%;
  }
}
@media screen and (min-width: 400px) {
  body {
    width: 100%;
  }
}
@media (max-width: 599px) {
  body {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  body {
    width: 100%;
  }
}
@media (max-width: 959px) and (min-width: 600px) {
  body {
    width: 100%;
  }
}
@media (max-width: 959px) {
  body {
    width: 100%;
  }
}
@media screen and (min-width: 960px) {
  body {
    width: 100%;
  }
}
@media (max-width: 1479px) {
  body {
    width: 100%;
  }
}
@media screen and (min-width: 1480px) {
  body {
    width: 100%;
  }
}

/*********************************************
scss/foundation/setting/_typography.scss
フォントの指定(ゴシックのみ)
**********************************************/
/* WEBフォントのインポート */
/* 文字サイズ(px) */
/* japanese */
/* english */
/* font-weight:100 */
/* font-weight:200 */
/* font-weight:300 */
/* font-weight:400 */
@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 400;
  src: url("../font/noto/NotoSansCJKjp-Regular.woff2") format("woff2"), url("../font/noto/NotoSansCJKjp-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/yakuhan/YakuHanJP/YakuHanJP-Regular.eot");
  src: url("../font/yakuhan/YakuHanJP/YakuHanJP-Regular.woff2") format("woff2"), url("../font/yakuhan/YakuHanJP/YakuHanJP-Regular.woff") format("woff");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
/* font-weight:500 */
/* font-weight:700 */
@font-face {
  font-family: "NotoSansCJKjp";
  font-style: normal;
  font-weight: 700;
  src: url("../font/noto/NotoSansCJKjp-Bold.woff2") format("woff2"), url("../font/noto/NotoSansCJKjp-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../font/yakuhan/YakuHanJP/YakuHanJP-Bold.eot");
  src: url("../font/yakuhan/YakuHanJP/YakuHanJP-Bold.woff2") format("woff2"), url("../font/yakuhan/YakuHanJP/YakuHanJP-Bold.woff") format("woff");
  unicode-range: U+3001, U+3002, U+3008, U+3009, U+300a, U+300b, U+300c, U+300d, U+300e, U+300f, U+3010, U+3011, U+3014, U+3015, U+30fb, U+ff01, U+ff08, U+ff09, U+ff1a, U+ff1b, U+ff1f, U+ff3b, U+ff3d, U+ff5b, U+ff5d;
}
/* font-weight:900 */
/*********************************************
reset and normalize
**********************************************/
html,
body {
  height: 100%;
}

html {
  text-size-adjust: 100%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
p,
blockquote {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 700;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
  list-style-position: outside;
}

caption,
th {
  text-align: left;
}

q:before,
q:after {
  content: "";
}

img {
  vertical-align: bottom;
  border-style: none;
}

figure {
  margin: 0;
}

em {
  font-weight: bold;
}

summary {
  display: list-item;
}

/*table firefox対応 IE対応でcellspacing="0"を付与する*/
table {
  border-collapse: separate;
  border-spacing: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  overflow: auto;
}

pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

audio:not([controls]) {
  display: none;
}

*,
::before,
::after {
  box-sizing: border-box;
  /*font-feature-settings: "palt";*/
}

/*----- form -----*/
input {
  border-radius: 0;
  border: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: none;
  background: #fff;
}

select::-ms-expand {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  width: 100%;
}

[type=text],
[type=email],
[type=tel],
[type=url],
textarea {
  appearance: none;
  line-height: normal;
}

[type=checkbox],
[type=radio] {
  padding: 0;
  appearance: none;
  background: #fff;
}

[type=number] {
  width: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/*********************************************
basic style
**********************************************/
/*----- text -----*/
b,
strong {
  font-weight: bold;
  font-weight: bolder;
}

/*----- clear -----*/
.clear {
  clear: both;
}

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

img {
  backface-visibility: hidden;
  width: 100%;
  height: auto;
}

/*********************************************
basics
**********************************************/
body {
  line-height: 1.8;
  background: #fdeef3;
  font-weight: 700;
  color: #253b94;
  letter-spacing: 0.09em;
  font-family: "YakuHanJP", "NotoSansCJKjp", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", sans-serif;
  -webkit-font-smoothing: antialiased;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.8125rem;
}
@media screen and (min-width: 400px) {
  body {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 600px) {
  body {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 960px) {
  body {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1480px) {
  body {
    font-size: 0.875rem;
  }
}
.is-drawer-open body {
  padding-right: calc(100vw - 100%);
}

/*********************************************
link
**********************************************/
a {
  text-decoration: none;
  color: #68c9ba;
}
a img {
  text-decoration: none;
}
a {
  /*&:hover {
    color: $link-hover-color-base;
    text-decoration: $link-hover-decoration-base;
  }*/
}

a[data-mfp-src] {
  cursor: pointer;
}

/*********************************************
layout/_container.scss
**********************************************/
.l-container-lg {
  margin-left: 15px;
  margin-right: 15px;
}

.l-container-md {
  margin-left: 30px;
  margin-right: 30px;
}

/*********************************************
layout/_header.scss
・header
・global nav
・drawer menu
**********************************************/
.l-header {
  max-width: 428px;
  margin-left: auto;
  margin-right: auto;
}

/*********************************************
layout/_footer.scss
**********************************************/
.l-footer {
  position: sticky;
  top: 100vh;
  max-width: 428px;
  margin-left: auto;
  margin-right: auto;
}
.l-footer__about {
  background: #fff;
  padding: 20px 0 40px;
}
.l-footer__text {
  color: #cb2d26;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (min-width: 400px) {
  .l-footer__text {
    font-size: 16px;
  }
}
.l-footer__logo {
  text-align: center;
}
.l-footer__logo img {
  width: 144px;
}
.l-footer__nav {
  text-align: center;
  padding: 20px 0;
}
.l-footer__list {
  display: flex;
  justify-content: center;
}
.l-footer__item {
  font-size: 11px;
}
@media screen and (min-width: 400px) {
  .l-footer__item {
    font-size: 12px;
  }
}
.l-footer__item {
  border-right: 1px solid #fff;
}
.l-footer__item a {
  color: #fff;
  padding: 0 8px;
  display: block;
}
@media screen and (min-width: 400px) {
  .l-footer__item a {
    padding: 0 10px;
  }
}
.l-footer__item:last-child {
  border: none;
}

/*********************************************
layout/_main.scss
**********************************************/
.l-main {
  position: relative;
  background-color: #fdeef3;
  padding-bottom: 45px;
  max-width: 428px;
  margin: 0 auto;
  margin-top: 15px;
  min-height: 65vh;
  box-sizing: border-box;
}
.l-main.-has-top-logo {
  padding: 40px 0 0px;
}

/*********************************************
layout/_side.scss
**********************************************/
/*********************************************
layout/_grid.scss
**********************************************/
.l-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
  max-width: 368px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 400px) {
  .l-2col {
    grid-gap: 20px;
  }
}

.c-box-white {
  background-color: #fff;
  color: #133767;
  border-radius: 25px;
  padding: 20px 15px;
  overflow: hidden;
}

.c-box-border {
  background-color: #133767;
  border: 3px solid #fff;
  border-radius: 20px;
  padding: 20px 15px;
}

.c-box-office {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  margin-right: 10px;
}

.c-btn-sm {
  height: auto;
  border-radius: 5px;
  padding: 7px 12px;
  font-size: 15px;
  line-height: 20px;
  border: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (min-width: 400px) {
  .c-btn-sm {
    font-size: 16px;
  }
}
.c-btn-sm.-icon-next::after {
  content: url(../img/arrow-right.svg);
  display: inline-block;
  width: 15px;
  height: 16px;
  vertical-align: -2px;
  margin-left: 2px;
}

.c-btn-md {
  max-width: 175px;
  width: 100%;
  border-radius: 10px;
  font-size: 16px;
  border: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-weight: 700;
  height: auto;
  line-height: 28px;
  padding: 10px 10px;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (min-width: 400px) {
  .c-btn-md {
    font-size: 18px;
  }
}
.c-btn-md.-icon-next::after {
  content: url(../img/arrow-right.svg);
  display: inline-block;
  width: 15px;
  height: 16px;
  vertical-align: -2px;
  margin-left: 2px;
}

.c-btn-lg {
  width: 100%;
  max-width: 340px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  height: auto;
  line-height: 28px;
  padding: 16px 0;
  letter-spacing: 0;
}
@media screen and (min-width: 400px) {
  .c-btn-lg {
    font-size: 18px;
  }
}
.c-btn-lg.-icon-next::after {
  content: url(../img/arrow-right.svg);
  display: inline-block;
  width: 15px;
  height: 16px;
  vertical-align: -2px;
  margin-left: 2px;
}

.c-btn-lg,
.c-btn-md,
.c-btn-sm {
  cursor: pointer;
  transition: opacity 0.4s;
}
.c-btn-lg.-twitter,
.c-btn-md.-twitter,
.c-btn-sm.-twitter {
  background-color: #1b95e0;
  color: #fff;
}
.c-btn-lg.-yellow,
.c-btn-md.-yellow,
.c-btn-sm.-yellow {
  background-color: #FFEE87;
}
.c-btn-lg.-red,
.c-btn-md.-red,
.c-btn-sm.-red {
  background-color: #cb2d26;
  color: #fff;
}
.c-btn-lg.-white-red,
.c-btn-md.-white-red,
.c-btn-sm.-white-red {
  background-color: #fff;
  color: #cb2d26;
}
.c-btn-lg.-ruby,
.c-btn-md.-ruby,
.c-btn-sm.-ruby {
  background-color: #490100;
  color: #fff;
}
.c-btn-lg.-white,
.c-btn-md.-white,
.c-btn-sm.-white {
  background-color: #fff;
}
.c-btn-lg.-black,
.c-btn-md.-black,
.c-btn-sm.-black {
  background-color: #111;
  color: #fff;
}
.c-btn-lg.-gray,
.c-btn-md.-gray,
.c-btn-sm.-gray {
  background-color: #fff;
  color: #646569;
}
.c-btn-lg.-blue,
.c-btn-md.-blue,
.c-btn-sm.-blue {
  background-color: #253b94;
  color: #fff;
}
.c-btn-lg.-green-light,
.c-btn-md.-green-light,
.c-btn-sm.-green-light {
  background-color: #68c9ba;
  color: #fff;
}
.c-btn-lg.-border,
.c-btn-md.-border,
.c-btn-sm.-border {
  border: 1px solid #fff;
  color: #fff;
}
.c-btn-lg.-border-navy,
.c-btn-md.-border-navy,
.c-btn-sm.-border-navy {
  border: 1px solid #133767;
  color: #133767;
}
.c-btn-lg:disabled,
.c-btn-md:disabled,
.c-btn-sm:disabled {
  opacity: 0.4;
}
.c-btn-lg-.disabled,
.c-btn-md-.disabled,
.c-btn-sm-.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.c-btn-md.-icon {
  text-align: left;
  padding-left: 11.6vw;
  padding-right: 0;
  position: relative;
  font-size: 3.6vw;
}
.c-btn-md.-icon::before {
  content: "";
  width: 36px;
  height: 60px;
  left: 4.4%;
  top: 0;
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(0.9);
}
@media screen and (min-width: 400px) {
  .c-btn-md.-icon::before {
    transform: scale(1);
    left: 5.4%;
  }
}
@media screen and (min-width: 400px) {
  .c-btn-md.-icon {
    font-size: 15px;
    padding-left: 55px;
  }
}
.c-btn-md.-icon-use-mile {
  line-height: 1.5;
}
.c-btn-md.-icon-use-mile::before {
  background-image: url(../img/icon-use-mile.svg);
}
.c-btn-md.-icon-coupon {
  line-height: 3;
}
.c-btn-md.-icon-coupon::before {
  background-image: url(../img/icon-coupon.svg);
  background-size: 80%;
  top: 8%;
}
.c-btn-md.-icon-twitter {
  background-color: #490100;
  color: #fff;
  line-height: 1.5;
}
.c-btn-md.-icon-twitter::before {
  background-image: url(../img/icon-twitter.svg);
}
.c-btn-md.-icon-twitter.-yellow {
  background-color: #FFEE87;
}
.c-btn-md.-icon-twitter.-blue {
  background-color: #253b94;
  color: #fff;
}
.c-btn-md.-icon-post-voice::before {
  background-image: url(../img/icon-post-voice.svg);
}
.c-btn-md.-icon-get-mile {
  line-height: 1.5;
}
.c-btn-md.-icon-get-mile::before {
  top: 0px;
  background-image: url(../img/icon-get-mile.svg);
}
.c-btn-md.-icon-map {
  font-size: 10px;
  line-height: 1.5;
  padding-right: 0;
}
.c-btn-md.-icon-map::before {
  background-image: url(../img/icon-map.svg);
}
@media screen and (min-width: 400px) {
  .c-btn-md.-icon-map {
    font-size: 12px;
  }
}
.c-btn-md.-icon-calendar {
  font-size: 10px;
  line-height: 1.5;
  padding-right: 0;
  padding-left: 42px;
}
.c-btn-md.-icon-calendar::before {
  background-image: url(../img/icon-calendar.svg);
  left: 6px;
}
@media screen and (min-width: 400px) {
  .c-btn-md.-icon-calendar {
    font-size: 12px;
  }
}
.c-btn-md.-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.c-btn-lg.-icon {
  text-align: left;
  padding-left: 11.6vw;
  padding-right: 0;
  position: relative;
  font-size: 3.6vw;
}
.c-btn-lg.-icon::before {
  content: "";
  width: 36px;
  height: 60px;
  left: 12.4%;
  top: 0;
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(0.9);
}
@media screen and (min-width: 400px) {
  .c-btn-lg.-icon::before {
    transform: scale(1);
    left: 10.4%;
  }
}
@media screen and (min-width: 400px) {
  .c-btn-lg.-icon {
    font-size: 15px;
    padding-left: 80px;
  }
}
.c-btn-lg.-icon-use-mile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  line-height: 28px;
  padding: 0px 8px;
}
@media screen and (min-width: 400px) {
  .c-btn-lg.-icon-use-mile {
    font-size: 16px;
    padding: 0% 8px;
  }
}
.c-btn-lg.-icon-use-mile::before {
  content: "";
  position: static;
  display: inline-block;
  width: 36px;
  height: 60px;
  background-image: url(../img/icon-use-mile.svg);
  background-position: center center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transform: scale(0.9);
  top: auto;
  left: auto;
}
@media screen and (min-width: 400px) {
  .c-btn-lg.-icon-use-mile::before {
    transform: scale(1);
  }
}

.c-common__header {
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
}
.c-common__header a {
  display: block;
}
.c-common__header img {
  width: 100%;
}

.c-current-mile {
  background-image: url(../img/mile_bg.png);
  background-size: 300px;
  color: #253b94;
  background-position: center top;
  background-repeat: no-repeat;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
}
.c-current-mile__inner {
  text-align: right;
  padding: 40px 105px 0 0;
  height: 151px;
  width: 300px;
  margin: 0 auto;
}
.c-current-mile__number {
  font-size: 50px;
  color: #253b94;
  letter-spacing: 0.01em;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  line-height: 1em;
}
.c-current-mile__unit {
  font-size: 14px;
  line-height: 1em;
  margin-top: 1px;
  margin-right: 2px;
}

.c-error-text .is-error {
  background-color: #cb2d26;
  color: #fff;
  padding: 10px 15px;
  margin-bottom: 20px;
}
.c-error-text .is-error:nth-child(n+2) {
  margin-top: -10px;
}

.c-heading-lg {
  font-size: 21px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 400px) {
  .c-heading-lg {
    font-size: 24px;
  }
}

.c-heading-md {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 400px) {
  .c-heading-md {
    font-size: 20px;
  }
}

.c-heading-sm, .p-login__mail-login {
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 400px) {
  .c-heading-sm, .p-login__mail-login {
    font-size: 18px;
  }
}

.c-heading-xs, .c-top-logo__text {
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 400px) {
  .c-heading-xs, .c-top-logo__text {
    font-size: 15px;
  }
}

.c-heading-has-border {
  border-bottom: 1px dashed #fff;
  padding-bottom: 10px;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 400px) {
  .c-heading-has-border {
    font-size: 20px;
  }
}
.c-box-white .c-heading-has-border {
  border-color: #646569;
  color: #490100;
}

.c-heading-has-icon {
  font-size: 18px;
  line-height: 30px;
  text-align: left;
  padding-left: 30px;
  background-position: center left;
  background-repeat: no-repeat;
}
@media screen and (min-width: 400px) {
  .c-heading-has-icon {
    font-size: 20px;
  }
}
.c-heading-has-icon.-cutlery {
  background-image: url(../img/icon-menu.svg);
}
.c-heading-has-icon.-track {
  background-image: url(../img/icon-track.svg);
  padding-left: 50px;
}
.c-heading-has-icon.-news {
  background-image: url(../img/icon-news.svg);
}
.c-heading-has-icon.-pencil {
  background-image: url(../img/icon-timeline.svg);
}

.c-heading-monthly-shop {
  width: 113px;
  line-height: 34px;
  color: #133767;
  background: #fff;
  border-radius: 100px;
  text-align: center;
  margin: 0 auto 20px;
}

.c-heading-has-rounded {
  padding: 0 25px;
  border-radius: 17px;
  background: transparent;
  border: 1px solid #fff;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  line-height: 32px;
}
.c-heading-has-rounded.-blue {
  color: #fff;
  background-color: #133767;
  margin-bottom: 25px;
}
.c-heading-has-rounded.-border-navy {
  border: 1px solid #133767;
}

.c-heading-in-box {
  font-size: 20px;
  line-height: 60px;
  font-weight: bold;
  color: #133767;
  background-color: #FFEE87;
  text-align: center;
  margin: -20px -15px 30px;
}
.c-heading-in-box::before {
  display: inline-block;
  line-height: 1em;
  margin-right: 10px;
  vertical-align: middle;
}
.c-heading-in-box.-icon-wallet::before {
  content: url(../img/icon-get-mile.svg);
}
.c-heading-in-box.-icon-badge::before {
  content: url(../img/icon-use-mile.svg);
}

.c-history-mile {
  vertical-align: top;
  width: 100%;
  border-spacing: 0 10px;
  color: #111;
}
.c-history-mile__date {
  font-size: 16px;
  font-weight: normal;
  padding-left: 16px;
  text-align: left;
}
.c-history-mile__mile {
  font-size: 16px;
  padding-left: 16px;
  text-align: right;
}
.c-history-mile__tag span {
  text-align: center;
  font-size: 14px;
  display: inline-block;
  width: 58px;
  line-height: 28px;
}
.c-history-mile__get .c-history-mile__tag span {
  background: #FFEE87;
}
.c-history-mile__use .c-history-mile__tag span {
  background: #cb2d26;
  color: #fff;
}
.c-history-mile__use .c-history-mile__mile {
  color: #cb2d26;
}

.c-input {
  width: 100%;
  background-color: #eff6ff;
  height: 46px;
  border: 1px solid #91b7ea;
  padding: 0 20px;
  margin-bottom: 20px;
}
.c-input.is-error {
  background-color: #f5bdbd;
}

.c-select {
  width: 100%;
  background-color: #eff6ff;
  height: 46px;
  border: 1px solid #91b7ea;
  padding: 0 20px;
  margin: 10px 0 20px;
  appearance: auto;
}

.c-checkbox {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.c-checkbox__input {
  display: none;
}
.c-checkbox__check {
  background-color: #eff6ff;
  height: 20px;
  width: 20px;
  border: solid 1px #91b7ea;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  vertical-align: -5px;
  margin-right: 5px;
}
.c-checkbox__check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 6px;
  height: 14px;
  border: solid #eff6ff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}
.c-checkbox__input:checked + .c-checkbox__check {
  background: #91b7ea;
  border-color: #91b7ea;
}
.c-checkbox__input:checked + .c-checkbox__check:after {
  opacity: 1;
}

.c-radio {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #eff6ff;
  border-radius: 50%;
  cursor: pointer;
  appearance: auto;
  margin: 10px 0 20px;
}
.c-radio.selected {
  background-color: #eff6ff;
  border-color: #eff6ff;
}
.c-radio.selected .c-radio-label {
  font-weight: bold;
}

.c-radio-label {
  display: inline-block;
  position: relative;
  top: -5px;
  vertical-align: middle;
  margin-left: 3px;
}

.c-list-reward {
  margin-bottom: 40px;
}
.c-list-reward li {
  margin-bottom: 60px;
}
.c-list-reward__title {
  font-size: 14px;
  margin-bottom: 10px;
}

.c-list-menu {
  margin-top: 30px;
  margin-bottom: 40px;
}
.c-list-menu li {
  text-align: left;
  margin-bottom: 40px;
}
.c-list-menu li:last-child {
  margin-bottom: 0;
}
.c-list-menu__pic {
  margin: 0 -15px 20px -15px;
}

.c-list-sub-menu {
  margin-bottom: 20px;
}
.c-list-sub-menu:last-of-type {
  margin-bottom: 0;
}

.c-top-logo {
  text-align: center;
}
.c-top-logo__pic img {
  width: 100%;
}
.c-top-logo__text {
  padding-top: 20px;
  line-height: 1.4;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  transition: opacity 0.6s;
  background: #000;
  opacity: 0;
}

.mfp-bg.mfp-ready {
  opacity: 0.5;
}

.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 15px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
  opacity: 0;
  transition: opacity 0.6s;
}

.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #CCC;
}
.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  /*background: transparent;*/
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: url(../img/popup_close.svg) center center/30px no-repeat;
  position: absolute;
  right: 0;
  top: -45px;
  text-decoration: none;
  text-align: center;
  opacity: 1;
  color: #FFF;
  text-indent: 9999px;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 0.65;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 1;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}
.mfp-arrow:before, .mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}
.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}
.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}
.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.c-pic-fit {
  width: 100%;
  height: auto;
}

.c-pic-has-badge {
  width: 320px;
  height: auto;
  position: relative;
  margin: 0 auto 20px;
}
.c-pic-has-badge::before {
  background: center center/cover no-repeat;
  content: "";
  display: inline-block;
  width: 58px;
  height: 58px;
  left: -30px;
  top: -17px;
  position: absolute;
  z-index: 2;
}
.c-pic-has-badge.-new::before {
  background-image: url(../img/badge-new.png);
}
.c-pic-has-badge.-osusume::before {
  background-image: url(../img/badge-osusume.png);
}

.c-pic-has-osusume {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 20px;
}
.c-pic-has-osusume::before {
  background: url(../img/badge-osusume.png);
  background-size: cover;
  content: "";
  display: inline-block;
  width: 58px;
  height: 58px;
  left: -5%;
  top: -10%;
  position: absolute;
  z-index: 2;
}

.c-pic-has-frame {
  border: 7px solid #fff;
}

.c-popup {
  max-width: 398px;
  margin: 60px auto;
  position: relative;
}

.c-shop-info__pic {
  margin: -20px -15px 20px;
  position: relative;
  padding-bottom: 66.6%;
}
.c-shop-info__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.c-shop-info__content {
  min-height: 140px;
}
.c-shop-info__schedule {
  font-size: 13px;
}
.c-shop-info__schedule th,
.c-shop-info__schedule td {
  font-weight: 700;
  vertical-align: top;
}
.c-shop-info__schedule th {
  white-space: nowrap;
  padding-right: 1em;
}

.c-slider {
  margin: 0 -30px 20px;
}
.c-slider .splide__slide {
  margin-left: 15px;
}
.c-slider__pic {
  position: relative;
  margin-bottom: 5px;
}
.splide__slide.is-active .c-slider__pic::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  left: 0;
  top: 0;
  position: absolute;
}
.c-slider__pic img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
.c-slider__text {
  font-size: 16px;
  margin-left: 0;
  min-height: 60px;
  line-height: 1.4;
  margin-top: 10px;
  text-align: center;
}

.p-top-slider-menu .c-slider__pic img {
  height: 230px;
  object-fit: contain;
}

.p-top-slider-point .c-slider__pic img {
  height: 260px;
  object-fit: contain;
}
.p-top-slider-point .c-slider__text {
  font-weight: bold;
  margin-top: 5px;
}
.p-top-slider-point + div {
  margin: 0 15px;
}
.p-top-slider-point + div .splide__slide .c-slider__pic img {
  width: 100%;
  height: 260px;
  object-fit: contain;
}
.p-top-slider-point + div .splide__slide .c-slider__text {
  font-weight: bold;
  margin-top: 5px;
  text-align: center;
}

.p-terms-slider-point {
  margin: 0 0 20px;
}
.p-terms-slider-point .c-slider__pic {
  padding-bottom: 100%;
}
.p-terms-slider-point .c-slider__pic img {
  position: absolute;
  width: 85%;
  height: auto;
  object-fit: contain;
}
.p-terms-slider-point .splide__slide {
  margin-left: 15px;
}
.p-terms-slider-point .splide__slide:first-child {
  margin-left: 0;
}
@media (max-width: 599px) {
  .p-terms-slider-point .splide__slide {
    width: calc(100vw - 90px) !important;
    max-width: 320px;
  }
}
.p-terms-slider-point .splide__arrow--prev {
  left: -30px;
}
@media (max-width: 599px) {
  .p-terms-slider-point .splide__arrow--prev {
    left: -20px;
  }
}
.p-terms-slider-point .splide__arrow--next {
  right: -30px;
}
@media (max-width: 599px) {
  .p-terms-slider-point .splide__arrow--next {
    right: -20px;
  }
}

/* splide basic style */
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list {
  display: block;
}

.splide__track--fade > .splide__list > .splide__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 48px;
  height: 48px;
  background: center center/cover no-repeat;
  transition: opacity 0.2s;
}
@media screen and (min-width: 600px) {
  .splide__arrow {
    width: 60px;
    height: 60px;
  }
}
.splide__arrow svg {
  display: none;
}
.splide__arrow.is-hide {
  opacity: 0 !important;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 15px;
  background-image: url(../img/slider-prev.svg);
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 15px;
  background-image: url(../img/slider-next.svg);
}

.p-top-slider-point .splide__arrow--prev {
  background-image: url(../img/slider-prev-white.svg);
}
.p-top-slider-point .splide__arrow--next {
  background-image: url(../img/slider-next-white.svg);
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #fff;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: transparent;
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.p-login__mail-login {
  display: block;
  width: 300px;
  border: 3px solid #fff;
  margin: 0 auto;
  line-height: 1.4;
  padding: 16px 0;
}

.p-top-list-openning-info {
  margin-bottom: 20px;
}
.p-top-list-openning-info li {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px dashed #133767;
}
.p-top-list-openning-info li:first-child {
  padding-top: 0;
  margin-top: 0;
  border: 0;
}

.p-top-list-news {
  margin-bottom: 40px;
}
.p-top-list-news li {
  margin-bottom: 20px;
}

.p-top-slider-menu .splide__arrow {
  top: 115px;
}

.p-top-slider-point .splide__arrow {
  top: 130px;
}

.p-top-slider-timeline {
  margin-bottom: 60px;
}

.p-top-timeline {
  margin-bottom: 60px;
}
.p-top-timeline .twitter-timeline {
  width: 100% !important;
}

.p-footer-menu__pic {
  width: 65%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.p-help-get {
  font-size: 18px;
  line-height: 1em;
  margin: 20px 0;
}
.p-help-get__num {
  font-size: 50px;
  color: #cb2d26;
  letter-spacing: 0;
}
.p-help-get::before {
  content: url(../img/mile_deco_left.svg);
  vertical-align: bottom;
  margin-right: 18px;
  display: inline-block;
}
.p-help-get::after {
  content: url(../img/mile_deco_right.svg);
  vertical-align: bottom;
  margin-left: 18px;
  display: inline-block;
}

.p-pic-arrow-under {
  margin-bottom: 20px;
}
.p-pic-arrow-under img {
  width: 36px;
  height: 36px;
}

.p-help-tweet {
  border: 5px solid #FFEE87;
  padding: 16px 10px;
}
.p-help-tweet .twitter-tweet {
  margin: 0 !important;
  overflow: hidden;
}
.p-help-tweet iframe {
  margin: -10px -1px !important;
}
.p-help-tweet .css-1dbjc4n {
  border: none 0 !important;
}

.p-menu-slider .splide__slide {
  width: calc(100% - 60px);
  height: calc(215px + 66.6666666667%);
}
.p-menu-slider .splide__slide:last-child {
  width: calc(100% - 30px);
}
.p-menu-slider .splide__slide.-list {
  width: auto;
  min-width: 200px;
  max-width: calc(100% - 60px);
  padding: 0 15px;
}
.p-menu-slider .c-slider__pic {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
}
.p-menu-slider .c-slider__pic img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-menu-slider .c-box-border {
  overflow-y: scroll;
  max-height: 407px;
}

.u-bg-navy {
  background-color: #133767;
}

.u-bg-red {
  background-color: #cb2d26;
}

.u-bg-white {
  background-color: #fff;
}

.u-bg-black {
  background-color: #111;
}

.u-bg-yellow {
  background-color: #FFEE87;
}

.u-bg-orange {
  background-color: #fcd13e;
}

.u-bg-ruby {
  background-color: #490100;
}

.u-bg-pink {
  background-color: #f7c5dd;
}

.u-bg-pink-light {
  background-color: #fdeef3;
}

.u-bg-blue {
  background-color: #253b94;
}

.u-bg-green-light {
  background-color: #68c9ba;
}

.u-bg-visual {
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fdeef3;
  min-height: 93vh;
}

.u-bg-visual-yellow {
  background-image: url(../img/bg01.png);
  background-position: top center;
  background-size: auto;
  background-repeat: no-repeat;
}

.u-bg-visual-brown {
  background-image: url(../img/bg02.png);
  background-position: top center;
  background-size: auto;
  background-repeat: no-repeat;
}

.u-flex-center {
  display: flex;
  justify-content: center;
}

/* font-size */
.u-fz-10 {
  font-size: 10px;
  line-height: 1.6em;
}

.u-fz-12 {
  font-size: 12px;
}

.u-fz-14 {
  font-size: 14px;
  line-height: 1.8em;
}

.u-fz-16 {
  font-size: 16px;
  line-height: 1.5em;
}

.u-fz-18 {
  font-size: 18px;
  line-height: 1.4em;
}
.u-fz-18.-lead {
  line-height: 1.8em;
}

.u-fz-20 {
  font-size: 20px;
  line-height: 1.35em;
}

.u-fz-24 {
  font-size: 24px;
  line-height: 1.375em;
}

/* font-weight */
.u-fw-normal {
  font-weight: 400;
}

.u-fw-bold {
  font-weight: 700;
}

/* font-color */
.u-fc-yellow {
  color: #FFEE87;
}

.u-fc-navy {
  color: #133767;
}

.u-fc-red {
  color: #cb2d26;
}

.u-fc-black {
  color: #111;
}

.u-fc-white {
  color: #fff;
}

.u-fc-gray {
  color: #646569;
}

.u-fc-blue {
  color: #253b94;
}

.u-fc-pink {
  color: #f7c5dd;
}

.u-fc-pink-light {
  color: #fdeef3;
}

.u-fc-ruby {
  color: #490100;
}

.u-fc-green-light {
  color: #68c9ba;
}

@media screen and (min-width: 960px) {
  .u-hidden-pc {
    display: none;
  }
  .u-only-tab {
    display: none;
  }
}
@media (max-width: 959px) {
  .u-only-pc {
    display: none;
  }
  .u-hidden-pc {
    display: block;
  }
}
@media (max-width: 959px) and (min-width: 600px) {
  .u-only-tab {
    display: block;
  }
  .u-hidden-tab {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .u-only-sp {
    display: none;
  }
}
@media (max-width: 599px) {
  .u-only-tab {
    display: none;
  }
  .u-only-sp {
    display: block;
  }
  .u-hidden-sp {
    display: none;
  }
}
.u-opacity-8 {
  opacity: 0.8;
}

.u-opacity-5 {
  opacity: 0.5;
}

.u-opacity-3 {
  opacity: 0.3;
}

/* margin */
.u-mt-10 {
  margin-top: 10px;
}

.u-mt-15 {
  margin-top: 15px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mt-40 {
  margin-top: 40px;
}

.u-mt-60 {
  margin-top: 60px;
}

.u-mt-80 {
  margin-top: 80px;
}

.u-mt-100 {
  margin-top: 100px;
}

.u-mr-10 {
  margin-right: 10px;
}

.u-mr-20 {
  margin-right: 20px;
}

.u-mr-30 {
  margin-right: 30px;
}

.u-mr-40 {
  margin-right: 40px;
}

.u-mr-60 {
  margin-right: 60px;
}

.u-mb-10 {
  margin-bottom: 10px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-mb-40 {
  margin-bottom: 40px;
}

.u-mb-60 {
  margin-bottom: 60px;
}

.u-ml-10 {
  margin-left: 10px;
}

.u-ml-20 {
  margin-left: 20px;
}

.u-ml-30 {
  margin-left: 30px;
}

.u-ml-40 {
  margin-left: 40px;
}

.u-ml-60 {
  margin-left: 60px;
}

/* padding */
.u-p-5 {
  padding: 5px;
}

.u-pt-10 {
  padding-top: 10px;
}

.u-pt-20 {
  padding-top: 20px;
}

.u-pt-40 {
  padding-top: 40px;
}

.u-pt-60 {
  padding-top: 60px;
}

.u-pr-10 {
  padding-right: 10px;
}

.u-pr-20 {
  padding-right: 20px;
}

.u-pr-30 {
  padding-right: 30px;
}

.u-pr-40 {
  padding-right: 40px;
}

.u-pr-60 {
  padding-right: 60px;
}

.u-pb-10 {
  padding-bottom: 10px;
}

.u-pb-20 {
  padding-bottom: 20px;
}

.u-pb-40 {
  padding-bottom: 40px;
}

.u-pb-60 {
  padding-bottom: 60px;
}

.u-pl-10 {
  padding-left: 10px;
}

.u-pl-20 {
  padding-left: 20px;
}

.u-pl-30 {
  padding-left: 30px;
}

.u-pl-40 {
  padding-left: 40px;
}

.u-pl-60 {
  padding-left: 60px;
}

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

.u-text-right {
  text-align: right;
}

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

.u-text-underline {
  text-decoration: underline;
}

/*# sourceMappingURL=style.css.map */
