@charset "UTF-8";
/********************
  Custom Properties
********************/
:root {
  --color-primary: #546e7a;
  --color-secondary: #f0f2f4;
  --color-footerPrimary: #90a4ae;
  --color-footerSecondary: #72909d;
  --color-footerTertiary: #475962;
  --color-important: #c33;
  --color-border: #ccc;
  --color-gray: #999;
  --color-mainText: #333;
  --z-index-header: 100;
  --z-index-stickyBanner: 100;
}

/********************
  Reset
********************/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
q:before,
blockquote:after,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
main {
  display: block;
}
img {
  width: 100%;
}
@font-face {
  font-family: 'Noto Sans JP';
  font-weight: 400;
  src: url("https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2") format('woff2'), url("https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff") format('woff'), url("https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf") format('opentype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-weight: 500;
  src: local("Noto Sans CJK JP Medium"), url("https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff2") format('woff2'), url("https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.woff") format('woff'), url("https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Medium.otf") format('opentype');
}
@font-face {
  font-family: 'Noto Sans JP';
  font-weight: 600;
  src: url("https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff2") format('woff2'), url("https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.woff") format('woff'), url("https://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Bold.otf") format('opentype');
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  width: 100%;
  background: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  color: var(--color-mainText);
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}
a:link {
  cursor: pointer;
}
img {
  max-width: 100%;
  max-height: 100%;
}
button {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
          appearance: none;
  outline: none;
}

/********************
  Layout
********************/
/* header */
.l-header {
  background: #fff;
  width: 100%;
}
.l-header.is-sticky {
  position: sticky;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
}
.l-header__inner {
  align-items: center;
  display: flex;
  height: 48px;
  padding: 0 5%;
}
.l-header__logo {
  width: 108px;
}
@media (min-width: 961px) {
  .l-header__inner {
    box-sizing: content-box;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 40px;
    height: 80px;
  }
  .l-header__logo {
    width: 194px;
  }
}
/* footer */
.l-footer__secondary {
  background: var(--color-footerPrimary);
  color: #fff;
  padding: 16px 20px 12px;
}
.l-footer__sublinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-bottom: 8px;
}
.l-footer__sublink {
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.75;
  text-align: center;
  width: 33.33%;
}
.l-footer__inlinelinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.l-footer__inlinelink {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.75;
}
.l-footer__inlinelink:not(:last-child) {
  border-right: 1px solid #fff;
  margin-right: 16px;
  padding-right: 16px;
}
.l-footer__copy {
  background: var(--color-footerSecondary);
  color: #fff;
  font-size: 12px;
  line-height: 1.75;
  padding: 12px;
  text-align: center;
}
.l-footer__docomo {
  padding: 32px;
  text-align: center;
}
.l-footer__docomo img {
  height: 30px;
  width: 120px;
}
@media (min-width: 961px) {
  .l-footer__primary {
    background-color: var(--color-primary);
    color: #fff;
    font-size: 12px;
    padding: 24px;
  }
  .l-footer__primary__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
  }
  .l-footer__link-group {
    display: grid;
    grid-template-columns: .2fr .8fr;
    row-gap: 14px;
  }
  .l-footer__link-group dt {
    flex-shrink: 0;
    line-height: 1.75;
    width: 200px;
  }
  .l-footer__links {
    display: flex;
  }
  .l-footer__link {
    font-size: 12px;
    line-height: 1.75;
    margin-right: 48px;
  }
  .l-footer__copy {
    background: var(--color-footerTertiary);
  }
  .l-footer__secondary {
    background: var(--color-primary);
    padding: 24px;
  }
  .l-footer__inlinelinks:not(:first-child) {
    margin-top: 16px;
  }
  .l-footer__inlinelink {
    font-weight: 400;
  }
  .l-footer__inlinelink:not(:last-child) {
    border-right-color: #66818d;
    margin-right: 28px;
    padding-right: 28px;
  }
}

/********************
  Common
********************/
/* inner */
.c-inner {
  padding-left: 14px;
  padding-right: 14px;
}
@media (min-width: 961px) {
  .c-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
  }
}
/* heading */
.c-heading {
  color: var(--color-mainText);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 32px;
  padding-bottom: 9px;
  position: relative;
  text-align: center;
}
.c-heading::after {
  background: var(--color-primary);
  border-radius: 2px;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 100px;
}
@media (max-width: 374px) {
  .c-heading {
    font-size: 5.867vw;
  }
}
@media (min-width: 961px) {
  .c-heading {
    font-size: 32px;
    margin-bottom: 40px;
    padding-bottom: 19px;
  }
  .c-heading::after {
    width: 120px;
  }
}
/* lead */
.c-lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 12px;
}
@media (max-width: 374px) {
  .c-lead {
    font-size: 4.267vw;
  }
}
@media (min-width: 961px) {
  .c-lead {
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
  }
}

.c-lead_blod {
  font-weight: 700;
}

.c-lead_comment {
  color: var(--color-gray);
}


/* btn */
.c-btn {
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 100px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.1;
  padding: 13px 22px;
  text-align: center;
}
.c-btn.is-arrow {
  position: relative;
}
.c-btn.is-arrow::after {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iNiIgaGVpZ2h0PSIxMiIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZpZXdCb3g9IjAgMCA2IDEyIj48ZGVmcz48Y2xpcFBhdGggaWQ9ImIiPjxyZWN0IHk9Ii43NSIgd2lkdGg9IjYiIGhlaWdodD0iMTAuNSIgc3R5bGU9ImZpbGw6bm9uZTsiLz48L2NsaXBQYXRoPjwvZGVmcz48ZyBzdHlsZT0iY2xpcC1wYXRoOnVybCgjYik7Ij48cGF0aCBkPSJNNS43OCw1LjQ3Yy4yOS4yOS4yOS43NywwLDEuMDZMMS4yOCwxMS4wM2MtLjI5LjI5LS43Ny4yOS0xLjA2LDAtLjI5LS4yOS0uMjktLjc3LDAtMS4wNmwzLjk3LTMuOTdMLjIyLDIuMDNDLS4wNywxLjc0LS4wNywxLjI2LjIyLjk3Yy4yOS0uMjkuNzctLjI5LDEuMDYsMGw0LjUsNC41aDBzMCwwLDAsMFoiIHN0eWxlPSJmaWxsOiNmZmY7Ii8+PC9nPjwvc3ZnPg==) 50% 50% no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  height: 12px;
  width: 6px;
}
@media (min-width: 961px) {
  .c-btn {
    font-size: 16px;
    transition: opacity .15s ease;
  }
  .c-btn:hover {
    opacity: .8;
  }
}
/* sticky */
.c-sticky {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-stickyBanner);
}
/* stickyBtn */
.c-stickyBtn {
  position: absolute;
  right: 14px;
  bottom: calc(100% + 14px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.c-stickyBtn.is-active {
  pointer-events: auto;
  opacity: 1;
}
.c-stickyBtn a {
  align-items: center;
  background: var(--color-primary);
  border-radius: 50%;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  flex-direction: column;
  gap: 5px;
  line-height: 1.75;
  padding-top: 5px;
  text-align: center;
  height: 50px;
  width: 50px;
}
.c-stickyBtn a::before {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMjYiIGhlaWdodD0iMTYiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMjYgMTYiPjxkZWZzPjxjbGlwUGF0aCBpZD0iYiI+PHJlY3QgeD0iLjk4IiB5PSIuOTMiIHdpZHRoPSIyNC4wNCIgaGVpZ2h0PSIxNC4xNCIgc3R5bGU9ImZpbGw6bm9uZTsiLz48L2NsaXBQYXRoPjwvZGVmcz48ZyBzdHlsZT0iY2xpcC1wYXRoOnVybCgjYik7Ij48cGF0aCBkPSJNMTEuOTQsMS45OUwyLjA0LDExLjg5Yy0uNTkuNTktLjU5LDEuNTQsMCwyLjEyLjU5LjU5LDEuNTQuNTksMi4xMiwwTDE0LjA2LDQuMTFjLjU5LS41OS41OS0xLjU0LDAtMi4xMi0uNTktLjU5LTEuNTQtLjU5LTIuMTIsMFoiIHN0eWxlPSJmaWxsOiNmZmY7Ii8+PHBhdGggZD0iTTIzLjk2LDExLjg5TDE0LjA2LDEuOTljLS41OS0uNTktMS41NC0uNTktMi4xMiwwLS41OS41OS0uNTksMS41NCwwLDIuMTJsOS45LDkuOWMuNTkuNTksMS41NC41OSwyLjEyLDAsLjU5LS41OS41OS0xLjU0LDAtMi4xMloiIHN0eWxlPSJmaWxsOiNmZmY7Ii8+PC9nPjwvc3ZnPg==);
  content: "";
  flex-shrink: 0;
  height: 16px;
  width: 26px;
}
@media (min-width: 961px) {
  .c-stickyBtn {
    right: 40px;
    bottom: calc(100% + 40px);
  }
  .c-stickyBtn a {
    transition: opacity .15s ease;
  }
  .c-stickyBtn a:hover {
    opacity: .8;
  }
}
/* stickyBanner */
.c-stickyBanner {
  align-items: center;
  background-image: linear-gradient(to right, #f03200, #ffa100);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  pointer-events: auto;
  position: relative;
  padding: 14px;
  text-align: center;
  width: 100%;
}
.c-stickyBanner::after {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTEiIGhlaWdodD0iMjAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMTEgMjAiPjxkZWZzPjxjbGlwUGF0aCBpZD0iYiI+PHJlY3Qgd2lkdGg9IjExIiBoZWlnaHQ9IjIwIiBzdHlsZT0iZmlsbDpub25lOyIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIHN0eWxlPSJjbGlwLXBhdGg6dXJsKCNiKTsiPjxwYXRoIGQ9Ik0xMC42LDkuMjhjLjU0LjU0LjU0LDEuNDEsMCwxLjk1TDIuMzUsMTkuNDdjLS41NC41NC0xLjQxLjU0LTEuOTUsMC0uNTQtLjU0LS41NC0xLjQxLDAtMS45NWw3LjI4LTcuMjhMLjQxLDIuOTdDLS4xMywyLjQ0LS4xMywxLjU2LjQxLDEuMDNjLjU0LS41NCwxLjQxLS41NCwxLjk1LDBsOC4yNSw4LjI1aDBzMCwwLDAsMFoiIHN0eWxlPSJmaWxsOiNmZmY7Ii8+PC9nPjwvc3ZnPg==) 50% 50% no-repeat;
  background-size: contain;
  content: "";
  display: block;
  flex-shrink: 0;
  margin-left: 8px;
  height: 20px;
  width: 11px;
}
.c-stickyBanner__closeBtn {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTciIGhlaWdodD0iMTgiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMTcgMTgiPjxkZWZzPjxjbGlwUGF0aCBpZD0iYiI+PHJlY3QgeT0iLjUiIHdpZHRoPSIxNyIgaGVpZ2h0PSIxNyIgc3R5bGU9ImZpbGw6bm9uZTsiLz48L2NsaXBQYXRoPjwvZGVmcz48ZyBzdHlsZT0iY2xpcC1wYXRoOnVybCgjYik7Ij48cGF0aCBkPSJNMTYuNSwzLjRjLjY2LS42Ni42Ni0xLjc0LDAtMi40MS0uNjYtLjY2LTEuNzQtLjY2LTIuNDEsMGwtNS41OSw1LjZMMi45LDFDMi4yNC4zNCwxLjE2LjM0LjUsMS0uMTcsMS42Ny0uMTcsMi43NC41LDMuNDFsNS42LDUuNTlMLjUsMTQuNmMtLjY2LjY2LS42NiwxLjc0LDAsMi40MS42Ni42NiwxLjc0LjY2LDIuNDEsMGw1LjU5LTUuNiw1LjYsNS41OWMuNjYuNjYsMS43NC42NiwyLjQxLDAsLjY2LS42Ni42Ni0xLjc0LDAtMi40MWwtNS42LTUuNTksNS41OS01LjZoMFoiIHN0eWxlPSJmaWxsOiNmZmY7Ii8+PC9nPjwvc3ZnPg==) 50% 50% no-repeat;
  background-size: contain;
  cursor: pointer;
  flex-shrink: 0;
  overflow: hidden;
  margin-right: 8px;
  position: relative;
  text-indent: -99em;
  height: 18px;
  width: 18px;
  z-index: 1;
}
.c-stickyBanner__closeBtn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  height: 40px;
  width: 40px;
}
.c-stickyBanner__inbox {
  color: #fff;
  text-align: center;
}
.c-stickyBanner__txt {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}
.c-stickyBanner__linkBtn {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-tap-highlight-color: transparent;
}
.c-stickyBanner__linkBtn::after {
  content: "";
  cursor: pointer;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}
.c-stickyBanner__linkBtn:hover::after {
  background-color: rgba(255,255,255,.15);
}
@media (max-width: 374px) {
  .c-stickyBanner__txt {
    font-size: 3.47vw;
    margin-bottom: .46em;
  }
  .c-stickyBanner__linkBtn {
    font-size: 4vw;
  }
}
@media (min-width: 961px) {
  .c-stickyBanner {
    flex-direction: row-reverse;
    justify-content: center;
    padding: 24px;
  }
  .c-stickyBanner::after {
    display: none;
  }
  .c-stickyBanner__closeBtn {
    margin-left: 24px;
  }
  .c-stickyBanner__inbox {
    align-items: center;
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    max-width: 875px;
  }
  .c-stickyBanner__txt {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
  }
  .c-stickyBanner__linkBtn {
    align-items: center;
    border: 2px solid #fff;
    border-radius: 100px;
    display: flex;
    font-size: 20px;
    flex-shrink: 0;
    margin-left: 16px;
    padding: 14px 21px 14px 40px;
    position: relative;
  }
  .c-stickyBanner__linkBtn::after {
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTEiIGhlaWdodD0iMjAiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMTEgMjAiPjxkZWZzPjxjbGlwUGF0aCBpZD0iYiI+PHJlY3Qgd2lkdGg9IjExIiBoZWlnaHQ9IjIwIiBzdHlsZT0iZmlsbDpub25lOyIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIHN0eWxlPSJjbGlwLXBhdGg6dXJsKCNiKTsiPjxwYXRoIGQ9Ik0xMC42LDkuMjhjLjU0LjU0LjU0LDEuNDEsMCwxLjk1TDIuMzUsMTkuNDdjLS41NC41NC0xLjQxLjU0LTEuOTUsMC0uNTQtLjU0LS41NC0xLjQxLDAtMS45NWw3LjI4LTcuMjhMLjQxLDIuOTdDLS4xMywyLjQ0LS4xMywxLjU2LjQxLDEuMDNjLjU0LS41NCwxLjQxLS41NCwxLjk1LDBsOC4yNSw4LjI1aDBzMCwwLDAsMFoiIHN0eWxlPSJmaWxsOiNmZmY7Ii8+PC9nPjwvc3ZnPg==) 50% 50% no-repeat;
    background-size: contain;
    content: "";
    display: block;
    flex-shrink: 0;
    position: static;
    margin-left: 24px;
    height: 20px;
    width: 11px;
  }
  .c-stickyBanner__linkBtn:hover::after {
    background-color: transparent;
  }
  .c-stickyBanner__closeBtn,
  .c-stickyBanner__linkBtn {
    transition: opacity .15s ease;
  }
  .c-stickyBanner__closeBtn:hover,
  .c-stickyBanner__linkBtn:hover {
    opacity: .8;
  }
}

/* goo */
.c-goo {
  font-family: Arial, Helvetica, sans-serif;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

/********************
  Parts
********************/
/* mv */
.p-mv {
  background: var(--color-primary);
  color: #fff;
  padding: 48px 0;
}
.p-mv__ttl {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
  text-align: center;
}
.p-mv__lead {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: left;
}
.p-mv__copy {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 32px;
}
@media (max-width: 374px) {
  .p-mv__ttl {
    font-size: 7.467vw;
  }
  .p-mv__lead,
  .p-mv__copy {
    font-size: 4.267vw;
  }
}
@media (min-width: 961px) {
  .p-mv {
    padding: 56px 0;
  }
  .p-mv__ttl {
    font-size: 48px;
    margin-bottom: 32px;
  }
  .p-mv__lead {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: center;
  }
  .p-mv__copy {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    text-align: center;
  }
}
/* controlers */
.p-controlers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-controlers__btn {
  width: calc((100% - 8px) / 2);
}
.p-controlers__btn a {
  align-items: center;
  background: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: 4px 4px 2px rgba(0,0,0,.15);
  color: var(--color-mainText);
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 600;
  gap: 6px;
  line-height: 1.2;
  padding: 12px;
  height: 100%;
}
.p-controlers__btn a::after {
  background-size: contain;
  background-color: currentColor;
  background-repeat: no-repeat;
  color: var(--color-gray);
  content: "";
  display: block;
  mask-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTUiIGhlaWdodD0iOCIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZpZXdCb3g9IjAgMCAxNSA4Ij48ZGVmcz48Y2xpcFBhdGggaWQ9ImIiPjxyZWN0IHg9Ii43NSIgd2lkdGg9IjE0IiBoZWlnaHQ9IjgiIHN0eWxlPSJmaWxsOm5vbmU7Ii8+PC9jbGlwUGF0aD48L2RlZnM+PGcgc3R5bGU9ImNsaXAtcGF0aDp1cmwoI2IpOyI+PHBhdGggZD0iTTguMjEsNy43MWMtLjM5LjM5LTEuMDIuMzktMS40MiwwTC43OSwxLjcxQy40LDEuMzIuNC42OC43OS4yOSwxLjE4LS4xLDEuODItLjEsMi4yMS4yOWw1LjI5LDUuMjlMMTIuNzkuM2MuMzktLjM5LDEuMDItLjM5LDEuNDEsMCwuMzkuMzkuMzksMS4wMiwwLDEuNDJsLTYsNmgwczAsMCwwLDBaIiBzdHlsZT0iZmlsbDojOTk5OyIvPjwvZz48L3N2Zz4=);
  mask-type: alpha;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  content: "";
  height: 8px;
  width: 14px;
}
@media (max-width: 374px) {
  .p-controlers__btn a {
    font-size: 3.733vw;
  }
}
@media (min-width: 961px) {
  .p-controlers {
    flex-wrap: nowrap;
    gap: 12px;
  }
  .p-controlers__btn {
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 0;
    width: auto;
  }
  .p-controlers__btn a {
    font-size: 16px;
    padding: 14px 24px;
    transition: transform .15s ease;
  }
  .p-controlers__btn a:hover {
    box-shadow: none;
    color: var(--color-primary);
    transform: translateY(4px);
  }
  .p-controlers__btn a::after {
    color: var(--color-gray);
  }
  .p-controlers__btn a:hover::after {
    color: var(--color-primary);
  }
}
/* info */
.p-info {
  padding: 56px 0;
}
.p-info__list {
  border-top: 1px dashed var(--color-border);
}
.p-info__listItem {
  align-items: center;
  border-bottom: 1px dashed var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 6px;
}
.p-info__listDate {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
.p-info__listLabel {
  background-color: var(--color-primary);
  border-radius: 6px;
  box-sizing: border-box;
  color: #fff;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  padding: 4px;
  text-align: center;
  min-width: 5.455em;
}
.p-info__listLabel.is-important {
  background-color: var(--color-important);
}
.p-info__listTitle {
  font-size: 14px;
  line-height: 1.4;
  width: 100%;
}
.p-info__listTitle a {
  color: inherit;
  font-size: inherit;
}
@media (min-width: 961px) {
  .p-info {
    padding: 80px 0;
  }
  .p-info__listItem {
    flex-wrap: nowrap;
    gap: 16px;
  }
  .p-info__listDate {
    font-size: 16px;
    line-height: 1.4;
  }
  .p-info__listLabel {
    font-size: 13px;
    padding: 5px;
    min-width: 75px;
  }
  .p-info__listTitle {
    font-size: 16px;
  }
  .p-info__listTitle a:hover {
    text-decoration: underline;
  }
}
/* schedule */
.p-schedule {
  margin-bottom: 56px;
}
.p-schedule__inbox {
  background-color: var(--color-secondary);
  border-radius: 12px;
  margin: 0 14px;
  padding: 40px 14px;
}
.p-schedule__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 30px;
}
.p-schedule__listItem {
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px;
  position: relative;
}
.p-schedule__listDate {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  width: 100%;
}
.p-schedule__listStatus {
  align-items: flex-start;
  display: flex;
  gap: 6px;
}
.p-schedule__listLabel {
  background-color: var(--color-primary);
  border-radius: 6px;
  box-sizing: border-box;
  color: #fff;
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  min-width: 5.455em;
  padding: 4px;
  text-align: center;
}
.p-schedule__listLabel::before {
  background-color: var(--color-primary);
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  z-index: 1;
}
.p-schedule__listTitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.p-schedule__listDecorationBorder {
  border-left: 2px dotted var(--color-primary);
  content: "";
  position: absolute;
  right: calc(100% + 14px + 16px / 2 - 1px);
  top: 50%;
  height: calc(100% + 10px);
  width: 0;
  z-index: 0;
}
.p-schedule__listItem:last-child .p-schedule__listDecorationBorder {
  display: none;
}
.p-schedule__listItem:first-child::before,
.p-schedule__listItem:last-child::after {
  display: none;
}
.p-schedule__listItem.is-done .p-schedule__listLabel::before {
  background-color: var(--color-border);
}
.p-schedule__listItem.is-done .p-schedule__listLabel {
  background-color: var(--color-gray);
}
.p-schedule__listItem.is-current .p-schedule__listLabel::before,
.p-schedule__listItem.is-current .p-schedule__listLabel {
  background-color: var(--color-important);
}
.p-schedule__listItem.is-done .p-schedule__listDecorationBorder {
  border-color: var(--color-border);
}
@media (max-width: 374px) {
  .p-schedule__listLabel {
    font-size: 10px;
  }
  .p-schedule__listTitle {
    font-size: 3.733vw;
  }
}
@media (min-width: 961px) {
  .p-schedule {
    margin-bottom: 80px;
  }
  .p-schedule__inbox {
    margin: 0 auto;
    padding: 64px;
    max-width: 800px;
  }
  .p-schedule__list {
    gap: 16px;
    padding-left: 44px;
  }
  .p-schedule__listItem {
    border-radius: 4px;
    gap: 8px;
    padding: 16px 24px;
  }
  .p-schedule__listDate {
    font-size: 16px;
  }
  .p-schedule__listStatus {
    gap: 16px;
  }
  .p-schedule__listLabel {
    font-size: 13px;
    min-width: 75px;
    padding: 5px;
  }
  .p-schedule__listLabel::before {
    right: calc(100% + 24px);
    height: 20px;
    width: 20px;
  }
  .p-schedule__listTitle {
    font-size: 16px;
  }
  .p-schedule__listDecorationBorder {
    right: calc(100% + 24px + 20px / 2 - 1px);
  }
}
/* moving */
.p-moving {
  background: var(--color-secondary);
  padding: 56px 0;
}
.p-moving__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}
.p-moving__listItem {
  background: #fff;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .07);
  padding: 22px 16px;
}
.p-moving__listName {
  color: var(--color-primary);
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
  text-align: center;
}
.p-moving__listText {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 14px;
}
@media (min-width: 961px) {
  .p-moving {
    padding: 80px 0;
  }
  .p-moving__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .p-moving__listItem {
    display: flex;
    flex-direction: column;
    padding: 32px 24px;
    width: calc((100% - 16px * 2) / 3); /* 16px = gap */
  }
  .p-moving__listName {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .p-moving__listText {
    flex-grow: 1;
    font-size: 16px;
    margin-bottom: 24px;
  }
}
/* faq */
.p-faq {
  padding: 56px 0;
}
.p-faq__list {
  border-top: 1px dashed var(--color-border);
  margin-top: 32px;
}
.p-faq__listItem {
  border-bottom: 1px dashed var(--color-border);
}
.p-faq__q {
  align-items: center;
  cursor: pointer;
  position: relative;
}
.p-faq__q__inbox {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  padding: 20px 36px;
}
.p-faq__q::before,
.p-faq__q::after {
  content: "";
  position: absolute;
}
.p-faq__q::before {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTgiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOCAxOSI+PHBhdGggZD0iTTMuMTMsOC42YzAsMy4zMSwyLjcyLDYsNi4wNyw2LDEuMSwwLDIuMTItLjI5LDMuMDEtLjc5bC0yLjczLTMuMjRjLS40My0uNTEtLjM2LTEuMjcuMTYtMS42OS41Mi0uNDIsMS4yOC0uMzYsMS43MS4xNWwyLjY5LDMuMTljLjc3LTEsMS4yMy0yLjI2LDEuMjMtMy42MiwwLTMuMzEtMi43Mi02LTYuMDctNnMtNi4wNywyLjY4LTYuMDcsNlpNMTMuNzksMTUuNjdjLTEuMzIuODQtMi45LDEuMzMtNC41OSwxLjMzQzQuNTEsMTcsLjcsMTMuMjQuNyw4LjZTNC41MS4yLDkuMi4yczguNSwzLjc2LDguNSw4LjRjMCwyLjEtLjc4LDQuMDMtMi4wOCw1LjVsMS43OSwyLjEzYy40My41MS4zNiwxLjI3LS4xNiwxLjY5LS41Mi40Mi0xLjI4LjM2LTEuNzEtLjE1bC0xLjc3LTIuMWgwWiIgc3R5bGU9ImZpbGw6I2VmMzAwMDsiLz48L3N2Zz4=) 50% 50% no-repeat;
  top: calc(50% + 2px);
  left: 8px;
  transform: translateY(-50%);
  height: 22px;
  width: 22px;
}
.p-faq__q::after {
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTYiIGhlaWdodD0iMTciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMTYgMTciPjxkZWZzPjxjbGlwUGF0aCBpZD0iYiI+PHJlY3QgeT0iLjIiIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgc3R5bGU9ImZpbGw6bm9uZTsiLz48L2NsaXBQYXRoPjwvZGVmcz48ZyBzdHlsZT0iY2xpcC1wYXRoOnVybCgjYik7Ij48cmVjdCB5PSI3LjMxIiB3aWR0aD0iMTYiIGhlaWdodD0iMS43OCIgcng9Ii44OSIgcnk9Ii44OSIgc3R5bGU9ImZpbGw6IzQ0NDsiLz48cmVjdCB4PSI3LjExIiB5PSIuMiIgd2lkdGg9IjEuNzgiIGhlaWdodD0iMTYiIHJ4PSIuODkiIHJ5PSIuODkiIHN0eWxlPSJmaWxsOiM0NDQ7Ii8+PC9nPjwvc3ZnPg==) 50% 50% no-repeat;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
}
.p-faq__q.is-active::before {
  opacity: .4;
}
.p-faq__q.is-active::after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTkiIGhlaWdodD0iMTkiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMTkgMTkiPjxkZWZzPjxjbGlwUGF0aCBpZD0iYiI+PHJlY3QgeD0iLjQiIHk9Ii4yIiB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHN0eWxlPSJmaWxsOm5vbmU7Ii8+PC9jbGlwUGF0aD48L2RlZnM+PGcgc3R5bGU9ImNsaXAtcGF0aDp1cmwoI2IpOyI+PHBhdGggZD0iTTEuNCw4LjJoMTZjLjU1LDAsMSwuNDUsMSwxaDBjMCwuNTUtLjQ1LDEtMSwxSDEuNGMtLjU1LDAtMS0uNDUtMS0xSC40YzAtLjU1LjQ1LTEsMS0xWiIgc3R5bGU9ImZpbGw6IzQ0NDsiLz48L2c+PC9zdmc+);
}
.p-faq__a {
  background: var(--color-secondary);
  border-radius: 4px;
  display: none;
  position: relative;
}
.p-faq__a__inbox {
  font-size: 14px;
  line-height: 1.4;
  padding: 20px 15px 20px 43px;
}
.p-faq__a::before {
  content: "";
  display: block;
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iYSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTYiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxNiAxOCI+PHBhdGggZD0iTTkuMzUuODVjLS4xOS0uNDUtLjY1LS43NS0xLjE1LS43NXMtLjk2LjMtMS4xNS43NUwyLjM2LDExLjc4bC0xLjU2LDMuNjRjLS4yNy42Mi4wNCwxLjMzLjY3LDEuNTkuNjQuMjYsMS4zNy0uMDMsMS42My0uNjVsMS4yNC0yLjloNy43MWwxLjI0LDIuOWMuMjcuNjIsMSwuOTEsMS42My42NS42NC0uMjYuOTQtLjk3LjY3LTEuNTlsLTEuNTYtMy42NEw5LjM1Ljg1aDBaTTExLjAyLDExLjAzaC01LjYzbDIuODEtNi41NiwyLjgxLDYuNTZaIiBzdHlsZT0iZmlsbDojNTQ2ZTdhOyIvPjwvc3ZnPg==) 50% 50% no-repeat;
  position: absolute;
  left: 8px;
  top: 22px;
  height: 22px;
  width: 22px;
}
@media (max-width: 374px) {
  .p-faq__q__inbox {
    font-size: 4.266vw;
  }
  .p-faq__a__inbox {
    font-size: 3.733vw;
  }
}
@media (min-width: 961px) {
  .p-faq {
    padding: 80px 0;
  }
  .p-faq__list {
    margin-top: 56px;
  }
  .p-faq__q {
    transition: opacity .15s ease;
  }
  .p-faq__q:hover {
    opacity: .8;
  }
  .p-faq__q::before {
    left: 16px;
  }
  .p-faq__q::after {
    right: 16px;
  }
  .p-faq__q__inbox {
    font-size: 18px;
    padding: 24px 36px 24px 44px;
  }
  .p-faq__a::before {
    top: 26px;
    left: 16px;
  }
  .p-faq__a__inbox {
    font-size: 16px;
    padding: 24px 36px 24px 44px;
  }
}
/********************
  Utility
********************/
.u-underline {
  text-decoration: underline;
}
.u-left {
  text-align: left;
}
.u-right {
  text-align: right;
}
.u-center {
  text-align: center;
}
@media (max-width: 960px) {
  .u-only-pc {
    display: none;
  }
}
@media (min-width: 961px) {
  .u-only-sp {
    display: none;
  }
}