@charset "UTF-8";
/* --------------------------------------------------------------------------------
 web fonts
-------------------------------------------------------------------------------- */
@import url("//fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap");
/*
font-family: 'Noto Sans JP', sans-serif;
font-weight:400; regular
font-weight:500; medium
font-weight:700; bold
*/
@import url("//fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

/*
font-family: 'Roboto', sans-serif;
font-weight:400; regular
font-weight:700; bold
*/
/* ----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
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,
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

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

caption,
th {
  text-align: left;
}

img {
  vertical-align: middle;
}

@media screen and (min-width: 445px) {

  /* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
  body {
    position: relative;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', meiryo, sans-serif;
    color: #333;
    font-size: 14px;
    font-style: 400;
    line-height: 1.7;
    background: #FFFFFF;
    min-width: 1080px;
  }

  body * {
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
  }

  #container {
    position: relative;
    z-index: 2;
    width: 1060px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 80px;
  }

  #main {
    width: 100%;
  }

  #main strong {
    font-weight: 700;
  }

  input,
  button,
  textarea,
  select {
    color: #333333;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', meiryo, sans-serif;
    font-size: 16px;
  }

  textarea {
    vertical-align: top;
  }

  textarea,
  input[type="text"],
  input[type="password"],
  input[type="email"],
  input[type="tel"],
  select {
    padding: 10px;
    border-radius: 5px;
    border: solid 1px #aaa;
  }

  *:focus {
    outline: none;
  }

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

  a img {
    transition: opacity .3s;
  }

  @media all and (-ms-high-contrast: none) {

    *::-ms-backdrop,
    a img {
      transition: none !important;
    }

    /* IE11 */
  }

  a:hover {
    text-decoration: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  a,
  a:visited {
    color: #333333;
  }

  a:hover img {
    opacity: 0.7;
  }

  /* ----------------------------------------------------------------------
 basic layout
---------------------------------------------------------------------- */
  .rp-area-root {
    overflow: hidden;
  }

  .header-banner {
    text-align: center;
    border-bottom: 1px solid #CCCCCC;
    line-height: 0;
  }

  /* breadcrumb */
  .breadcrumb-wrap {
    margin: -30px 0 10px;
    padding-top: 10px;
    position: relative;
    z-index: 3;
  }

  .breadcrumb {
    margin: 0 auto;
    width: 1060px;
    display: flex;
    flex-wrap: wrap;
  }

  .breadcrumb li {
    position: relative;
    font-size: 12px;
    color: #666666;
  }

  .breadcrumb li a {
    color: #666666;
    text-decoration: underline;
  }

  .breadcrumb li a:hover {
    text-decoration: none;
  }

  .breadcrumb-item+.breadcrumb-item {
    padding-left: 17px;
    margin-left: 12px;
  }

  .breadcrumb-item+.breadcrumb-item::before {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -6px;
    width: 6px;
    height: 12px;
    background: url(../../../images/rakuten/header/common/arrow_pankuzu.svg) 0 0 no-repeat;
    background-size: 6px 12px;
  }

  /* ----------------------------------------------------------------------
 modules
---------------------------------------------------------------------- */
  .mt0 {
    margin-top: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

  .font-size-15 {
    font-size: 15px !important;
  }

  .font-size-12 {
    font-size: 12px !important;
  }

  .font-weight-bold {
    font-weight: bold !important;
  }

  .align-center {
    text-align: center !important;
  }
}

@media screen and (max-width: 445px) {

  /* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
  body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', meiryo, sans-serif;
    color: #333333;
    font-size: 14px;
    line-height: 1.5;
    max-width: 100%;
    background: #fff;
    overflow-y: auto;
  }

  body * {
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
  }

  #container {
    position: relative;
    z-index: 2;
  }

  #main {
    min-height: 100px;
  }

  #main strong {
    font-weight: 700;
  }

  input,
  button,
  textarea,
  select {
    color: #333333;
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', meiryo, sans-serif;
    font-size: 16px;
  }

  *:focus {
    outline: none;
  }

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

  a,
  a:visited {
    color: #333;
  }

  a:hover {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* ----------------------------------------------------------------------
 basic layout
---------------------------------------------------------------------- */
  .rp-area-root {
    width: 100%;
  }

  .header-banner {
    position: relative;
    z-index: 2999;
    text-align: center;
    border-bottom: 1px solid #eee;
    line-height: 0;
  }

  /* breadcrumb */
  .breadcrumb-wrap {
    background: #FFF;
    margin: -10px 0 0px;
    padding: 10px 5px 10px 12px;
    overflow: auto;
    position: relative;
    z-index: 2;
  }

  .breadcrumb {
    margin: 0 auto;
    display: flex;
    white-space: nowrap;
  }

  .breadcrumb li {
    position: relative;
    font-size: 10px;
    color: #666666;
    white-space: nowrap;
  }

  .breadcrumb li a {
    color: #666666;
    text-decoration: underline;
  }

  .breadcrumb-item+.breadcrumb-item {
    padding-left: 13px;
    margin-left: 9px;
  }

  .breadcrumb-item+.breadcrumb-item::before {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -4px;
    width: 4px;
    height: 8px;
    background: url(../../../images/rakuten/header/common/arrow_pankuzu.svg) 0 0 no-repeat;
    background-size: 4px 8px;
  }

  .breadcrumb-item:last-child {
    padding-right: 16px;
  }

  /* ----------------------------------------------------------------------
 modules
---------------------------------------------------------------------- */
  .mt0 {
    margin-top: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

  .font-size-32 {
    font-size: 32px !important;
  }

  .font-size-28 {
    font-size: 28px !important;
  }

  .font-size-24 {
    font-size: 24px !important;
  }

  .font-size-15 {
    font-size: 15px !important;
  }

  .font-size-12 {
    font-size: 12px !important;
  }

  .font-weight-bold {
    font-weight: bold !important;
  }

  .align-center {
    text-align: center !important;
  }

}