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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* Base -----------------------------------------------------*/
body {
  font-family: "Heebo", "Noto Sans CJK JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #222;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.43;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
       text-size-adjust: none;
  background: #fff;
  min-width: initial;
}

a {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
a:hover {
  opacity: 0.7;
}

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

.main {
  overflow: hidden;
}

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}

/* Section -----------------------------------------------------*/
.section {
  padding: 60px 0;
  border-bottom: 1px solid #BBBBBB;
}
@media screen and (min-width: 1024px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.section:last-child {
  border-bottom: none;
}

.section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(24px, 5vw);
}
@media screen and (min-width: 1024px) {
  .section__container {
    padding: 0 20px;
  }
}

.section__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .section__grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    grid-auto-rows: auto;
    gap: 40px 90px;
    grid-template-areas: "title title" "image lead" "image body" "image body--2";
  }
}

.section__grid--nolead {
  grid-template-areas: "title title" "image body" "image body--2";
}

.section__head {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 0 0 20px;
}
@media screen and (min-width: 1024px) {
  .section__head {
    grid-area: title;
    padding-bottom: 40px;
  }
}

.section__tag {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #222;
  background: #fff;
  display: inline-block;
  border: 1px solid #222;
  border-radius: 20px;
  padding: 3px 15px;
}

.section__tag--red {
  color: #fff;
  background: #DC322C;
  border: none;
}

.section__title {
  font-size: 1.375rem;
  line-height: 1.3636363636;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .section__title {
    font-size: 1.625rem;
    line-height: 1.0769230769;
    grid-area: title;
  }
}
.section__title::after {
  display: block;
  content: "";
  width: 50px;
  height: 2px;
  background: #DC322C;
  margin: 15px auto 0;
}
.section__title > span {
  display: inline-block;
}

.section__sub-title {
  font-size: 1rem;
  line-height: 1.25;
  font-weight: bold;
  text-align: center;
  margin: 0 0 8px;
}
.section__sub-title::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #E0BD3A;
  border-bottom: 0;
  margin: 0 auto 5px;
}

.section__sub-title--small {
  font-size: 0.8125rem;
  line-height: 1.5384615385;
}

.section__caution-list {
  font-size: 0.75rem;
  line-height: 1.3333333333;
  text-align: left;
  margin: 0 auto 0 0;
}

.section__figure {
  text-align: center;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .section__figure {
    grid-area: image;
  }
}
.section__figure img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.section__text {
  font-size: 0.875rem;
  line-height: 1.8571428571;
  font-weight: bold;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .section__text {
    font-size: 1rem;
    line-height: 1.75;
    grid-area: lead;
  }
}
.section__text span {
  display: inline-block;
}

.section__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1024px) {
  .section__body {
    gap: 40px;
    grid-area: body;
  }
}

@media screen and (min-width: 1024px) {
  .section__body--2 {
    grid-area: body--2;
  }
}

.section__body--secondary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section__body-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 0 0;
}

.section__details {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 20px 0;
}

.section__details--bg-yellow {
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  background: #F6F0E0;
  border-radius: 8px;
}

.section__detail-list {
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section__detail-item {
  display: flex;
  gap: 6px;
  padding-left: 20px;
  position: relative;
}
.section__detail-item::before, .section__detail-item::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.section__detail-item::before {
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #DC322C;
  left: 0;
}
.section__detail-item::after {
  width: 9px;
  height: 9px;
  background: #DC322C;
  left: 4px;
}

.section__details-title {
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 10px;
}
@media screen and (min-width: 1024px) {
  .section__details-title {
    text-align: left;
  }
}

.section__details-text {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  margin: 0 0 22px;
}
.section__details-text:last-child {
  margin-bottom: 0;
}

.section__details-m0 {
  margin: 0;
}

.section__button-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .section__button-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.section__button {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .section__button {
    max-width: 320px;
  }
}

/* Button -----------------------------------------------------*/
.guide .button {
  display: block;
  text-align: center;
  font-weight: bold;
  color: inherit;
  border-radius: 8px;
  text-decoration: none;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .guide .button span {
    display: block;
  }
}
@media screen and (min-width: 1124px) {
  .guide .button span {
    display: inline-block;
  }
}
.guide .button--primary {
  color: #222;
  background: #EBD583;
  padding: 13px 0 14px;
}
.guide .button--secondary {
  color: #fff;
  background: #DC322C;
  padding: 13px 0 14px;
}
.guide .button--cta {
  color: #DC322C;
  background: #fff;
  border: 2px solid #DC322C;
  padding: 13px 0 14px;
}
.guide .button--icon {
  position: relative;
}
.guide .button--icon::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
}
.guide .button--icon-arrow::after {
  content: url("/epospoint/img-files/icon_link_arrow.svg");
  width: 20px;
  height: 20px;
}
.guide .button--icon-arrow-black::after {
  content: url("/epospoint/img-files/icon_link_arrow_black.svg");
  width: 20px;
  height: 20px;
}
.guide .button--icon-arrow-white::after {
  content: url("/epospoint/img-files/icon_link_arrow_white.svg");
  width: 20px;
  height: 20px;
}
.guide .button--icon-arrow-red::after {
  content: url("/epospoint/img-files/icon_link_arrow_red.svg");
  width: 20px;
  height: 20px;
}

.button--tertiary {
  color: #222;
  background: #fff;
  border: 1px solid #BBBBBB;
  padding: 4px 0 6px;
}

.button__icon-blank {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
}

/* Text link -----------------------------------------------------*/
.text-link {
  color: #008191;
}
.text-link a {
  color: inherit;
  text-decoration: underline;
}

.text-link--triangle a {
  display: inline-flex;
  align-items: center;
}
.text-link--triangle a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 5px solid #595757;
  border-right: 0;
  margin: 0 6px 0 0;
}

/* _page-head
-----------------------------------------------------*/
.page-head {
  background: #E0BD3A;
}

.page-head__title-warp {
  padding: 20px 0 24px;
}
@media screen and (min-width: 1024px) {
  .page-head__title-warp {
    padding-top: 30px;
    padding-bottom: 42px;
  }
}

.page-head__title {
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .page-head__title {
    font-size: 1.625rem;
    line-height: 1;
  }
}
.page-head__title > span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .page-head__title > span {
    display: inline-block;
  }
}

/* Tab
-----------------------------------------------------*/
.tab__contents {
  display: none;
  opacity: 0;
  background: #fff;
}

.tab__contents.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Tab Nav
-----------------------------------------------------*/
.tab-nav__list {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: auto;
}

.tab-nav__item {
  color: #F6F0E0;
  background: transparent;
  width: 25%;
}
.tab-nav__link {
  font-size: 0.6875rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0 12px;
  padding: 10px 0;
}
.guide .tab-nav__link {
  color: inherit;
  text-decoration: none;
}
.tab-nav__link.is-active {
  color: #222;
  background: #fff;
  border-radius: 6px 6px 0 0;
}
.tab-nav__item:first-child .tab-nav__link.is-active {
	border-top-left-radius: 0;
}
.tab-nav__item:last-child .tab-nav__link.is-active {
	border-top-right-radius: 0;
}
@media screen and (min-width: 1024px) {
	.tab-nav__item:first-child .tab-nav__link.is-active {
    border-top-left-radius: 6px;
  }
	.tab-nav__item:last-child .tab-nav__link.is-active {
    border-top-right-radius: 6px;
  }
  .tab-nav__link {
    font-size: 1rem;
    letter-spacing: 0;
    flex-direction: row;
    justify-content: center;
  }
}
.tab-nav__link:hover {
  color: #222;
  opacity: 0.7;
}
.tab-nav__link.is-active:hover {
  color: #222;
  opacity: 1;
}

.tab-nav__icon {
  display: block;
  width: 40px;
  height: 40px;
  filter: invert(100%) sepia(8%) saturate(7436%) hue-rotate(335deg) brightness(110%) contrast(95%);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.is-active .tab-nav__icon {
  filter: invert(11%) sepia(1%) saturate(3864%) hue-rotate(326deg) brightness(97%) contrast(93%);
}
.tab-nav__link:hover .tab-nav__icon {
  filter: invert(11%) sepia(1%) saturate(3864%) hue-rotate(326deg) brightness(97%) contrast(93%);
}

.tab-nav__icon--01 {
  background: transparent url("/epospoint/img-files/icon_tab_nav01.svg") no-repeat top center/contain;
}

.tab-nav__icon--02 {
  background: transparent url("/epospoint/img-files/icon_tab_nav02.svg") no-repeat top center/contain;
}

.tab-nav__icon--03 {
  background: transparent url("/epospoint/img-files/icon_tab_nav03.svg") no-repeat top center/contain;
}

.tab-nav__icon--04 {
  background: transparent url("/epospoint/img-files/icon_tab_nav04.svg") no-repeat top center/contain;
}

/* Accordion -----------------------------------------------------*/
.accordion {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 10px 0;
}

.accordion__heading {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  font-weight: bold;
  text-align: center;
  color: #000;
	padding: 0 30px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .accordion__heading {
    text-align: left;
    border-bottom: none;
  	padding: 0;
    cursor: initial;
  }
}
.accordion__heading::before, .accordion__heading::after {
  display: block;
  content: "";
  background: #222;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 1024px) {
  .accordion__heading::before, .accordion__heading::after {
    display: none;
  }
}
.accordion__heading::before {
  width: 10px;
  height: 2px;
  right: 15px;
}
.accordion__heading::after {
  width: 2px;
  height: 10px;
  right: 19px;
}
.accordion__heading.is-open::after {
  opacity: 0;
}

.accordion__heading-all {
  text-align: center;
  cursor: pointer;
}
.accordion__heading-all::before, .accordion__heading-all::after {
  display: block;
}

.accordion__contents {
  display: none;
  font-size: 0.875rem;
  line-height: 1.5714285714;
  margin: 10px 0 0;
}
@media screen and (min-width: 1024px) {
  .accordion__contents {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .accordion__contents-all {
    display: none;
  }
}

.accordion__content-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.accordion__content-list + .accordion__content-list {
  margin: 22px 0 0;
}

.accordion__content-list--red {
  color: #DC322C;
}

.accordion__link-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1024px) {
  .accordion__link-list {
    flex-direction: row;
  }
}

.accordion__link {
  margin: 10px 0 0;
}

.accordion__button {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .accordion__button {
    max-width: 320px;
  }
}

/* list-style -----------------------------------------------------*/
.list-style {
  padding: 0 0 0 23px;
}

.list-style__list--disc {
  list-style: disc;
}

.list-style__list--mark {
  padding-left: 0;
}
.list-style__list--mark li {
  position: relative;
  display: flex;
}

/* Example list -----------------------------------------------------*/
.example-list-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Example
 -----------------------------------------------------*/
.example__contents--scroll {
  position: relative;
  padding: 0 0 16px;
}
.example__contents--scroll::after {
  content: url("/epospoint/img-files/icon_arrow_double.svg");
  display: block;
  position: absolute;
  top: 298px;
  left: 50%;
  transform: translate(-50%, 0);
}

.example__title {
  font-size: 1rem;
  line-height: 1.4375;
  font-weight: bold;
  text-align: center;
  margin: 20px 0 10px;
}
.example__title::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #E0BD3A;
  border-bottom: 0;
  margin: 0 auto 5px;
}
.example__title span {
  display: inline-block;
}
.example__title .example__title--small {
  display: block;
  font-size: 0.6875rem;
  line-height: 1.6363636364;
}

.example__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 1024px) {
  .example__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.example__list--row {
  flex-direction: row;
  flex-wrap: wrap;
}

.example__text-link {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  margin: 0 0 5px;
}

.example__caution {
  font-size: 0.75rem;
  line-height: 1.3333333333;
  margin: 20px 0 0;
}

/* Example Itme
-----------------------------------------------------*/
.example-item {
  border: 1px solid #DBDBDB;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .example-item {
    width: calc(50% - 5px);
  }
}
.example-item:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media screen and (min-width: 1024px) {
  .example-item:first-child {
    border-radius: 0;
  }
}
.example__list--row .example-item:nth-child(2) {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
@media screen and (min-width: 1024px) {
  .example__list--row .example-item:nth-child(2) {
    border-radius: 0;
  }
}
.example-item.example-item--radius {
  border-radius: 8px;
}
@media screen and (min-width: 1024px) {
  .example-item.example-item--radius {
    border-radius: 0;
  }
}

.example-item--row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px 15px;
}

.example-item--column {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 15px;
}

.example-item--donation {
  width: calc(50% - 5px);
  padding-left: 8px;
  padding-right: 8px;
}

.example-item__link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 32px 10px 15px;
}
.guide .example-item__link {
  color: inherit;
  text-decoration: none;
}
.example-item__link::after {
  content: url("/epospoint/img-files/icon_question.svg");
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
}

.example-item__figure {
  margin: auto;
}

.example-item__body {
  flex: 0 1 calc(100% - 100px);
}

.example-item__body--auto {
  flex-basis: auto;
}

.example-item__name {
  font-size: 0.875rem;
  font-weight: bold;
}
.example-item__name span {
  display: inline-block;
}

.example-item__name--small {
  font-size: 0.6875rem;
  font-weight: 500;
}

.example-item__name--donation {
  font-size: 0.5625rem;
  font-weight: 500;
  text-align: center;
}

.example-item__text {
  font-size: 0.625rem;
  font-weight: bold;
}

.example-item__text--regular {
  font-weight: 400;
}

.example-item__text--medium {
  font-weight: 500;
}

.example-item__text--spacer {
  margin: 14px 0 0;
}

.example-item__text--red {
  font-size: 1rem;
  font-weight: bold;
  color: #DC322C;
}

.example-item__text--new {
  font-size: 0.875rem;
  font-weight: bold;
  color: #DC322C;
  text-transform: uppercase;
}

/* Scroll
 -----------------------------------------------------*/
.scroll {
  height: 310px;
  overflow-y: scroll;
  border-bottom: 1px solid #E0BD3A;
  padding: 0 0 10px;
}
@media screen and (min-width: 1024px) {
  .scroll {
    padding-bottom: 20px;
  }
}

/* Step -----------------------------------------------------*/
.step {
  background: #F6F0E0;
  border-radius: 8px;
  padding: 10px 15px;
}

.step__title {
  font-size: 1.125rem;
  color: #000;
  font-weight: bold;
  text-align: center;
  margin: 0 0 30px;
  position: relative;
}
.step__title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #E0BD3A;
  border-bottom: 0;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translate(-50%, 0);
}
.step__title > strong {
  color: #DC322C;
}

.step__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  counter-reset: stepCounter;
}

.step__item {
  background: #fff;
  border-radius: 4px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.step__item::before {
  font-weight: bold;
  color: #DC322C;
  counter-increment: stepCounter;
  content: "Step." counter(stepCounter);
  text-transform: uppercase;
}
.step__item::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #E0BD3A;
  border-bottom: 0;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translate(-50%, 0);
}
.step__item:last-child::after {
  display: none;
}

.step__text {
  font-size: 0.875rem;
  font-weight: 500;
}
.step__text > span {
  display: inline-block;
}
.step__text strong {
  font-weight: bold;
}

/* Entry howto
 -----------------------------------------------------*/
.entry-howto {
  background: #F6F0E0;
  padding: 50px 0 60px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .entry-howto {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}
.entry-howto::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 20px solid #ffffff;
  border-bottom: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 1024px) {
  .entry-howto::before {
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    border-top: 30px solid #ffffff;
  }
}

.entry-howto__container {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 max(24px, 5vw);
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .entry-howto__container {
    gap: 40px;
    padding: 0 20px;
  }
}

.entry-howto__head {
  font-size: 0.875rem;
  line-height: 1.5714285714;
}

.entry-howto__title {
  font-size: 1.375rem;
  line-height: 1.3636363636;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px;
}
@media screen and (min-width: 1024px) {
  .entry-howto__title {
    font-size: 1.625rem;
    line-height: 1.1538461538;
    margin-bottom: 50px;
  }
}

.entry-howto__lead {
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .entry-howto__lead {
    text-align: center;
  }
}

.entry-howto__link {
  width: 100%;
  max-width: 320px;
  margin: 15px auto 0;
}
@media screen and (min-width: 1024px) {
  .entry-howto__link {
    margin-top: 20px;
  }
}

.entry-howto__list {
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 15px 20px;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .entry-howto__list {
    flex-direction: row;
  }
}

/* Entry item
 -----------------------------------------------------*/
.entry-item {
  font-size: 0.875rem;
  line-height: 1.5714285714;
}
@media screen and (min-width: 1024px) {
  .entry-item {
    width: calc((100% - 10px) / 3);
    display: flex;
    flex-direction: column;
  }
}

.entry-item__title {
  font-weight: bold;
  text-align: center;
  color: #000;
  background: #EBD583;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 5px 0;
}
@media screen and (min-width: 1024px) {
  .entry-item__title {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.entry-item__body {
  background: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}
@media screen and (min-width: 1024px) {
  .entry-item__body {
    height: 216px;
  }
}
@media screen and (min-width: 1024px) {
  .entry-item__body.is-heightAuto {
    height: auto;
  }
}

.entry-item__description {
  flex-grow: 1;
}

.entry-item__link {
  font-size: 1rem;
  line-height: 1.5;
}

.entry-item__caution {
  font-size: 0.75rem;
  line-height: 1.3333333333;
  margin: 10px 0 0;
}

.entry-item__body-inner {
  font-weight: 500;
}

.entry-item__subheading {
  font-weight: bold;
}

.entry-item__city {
  color: #DC322C;
}

/* Cta
-----------------------------------------------------*/
.cta {
  padding: 50px 0;
}
@media screen and (min-width: 1024px) {
  .cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.cta__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 max(25px, 5vw);
}
@media screen and (min-width: 1024px) {
  .cta__container {
    padding: 0 20px;
  }
}

.cta__title {
  font-size: 1.125rem;
  line-height: 1.6666666667;
  font-weight: bold;
  text-align: center;
  color: #000;
  margin: 0 0 20px;
}
@media screen and (min-width: 1024px) {
  .cta__title {
    font-size: 1.625rem;
    line-height: 1.1538461538;
    margin-bottom: 40px;
  }
}

.cta__speech-bubble {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 0 0 9px;
}
@media screen and (min-width: 1024px) {
  .cta__speech-bubble {
    margin-bottom: 14px;
  }
}
.cb_inl_content .cb_inl_head01 {
	font-size: 20px;
}
.btnLink01.txtSmall a, .btnLink01.txtSmall input, .btnList01.txtSmall > li a, .btnList01.txtSmall > li input {
	font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .cb_inl_content .cb_inl_head01 {
		font-size: 16px;
	}
	.btnLink01.txtSmall a, .btnLink01.txtSmall input, .btnList01.txtSmall > li a, .btnList01.txtSmall > li input {
		font-size: 14px;
	}
}

.cta__speech-bubble-text {
  font-size: 0.6875rem;
  line-height: 1.6363636364;
  background: #EBD583;
  border-radius: 20px;
  padding: 6px 15px;
  position: relative;
  margin: 0 0 8px;
}
@media screen and (min-width: 1024px) {
  .cta__speech-bubble-text {
    font-size: 0.8125rem;
  }
}
.cta__speech-bubble-text::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 8px solid #EBD583;
  border-bottom: 0;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translate(-50%, 0);
}

.cta__link {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

/* Hidden
// 非表示にしたい要素に記述ください。
-----------------------------------------------------*/
.hidden {
  display: none;
}

/* br
// spのみ改行したい場合に使用します。
-----------------------------------------------------*/
@media screen and (min-width: 1024px) {
  .br--sp-only {
    display: none;
  }
}

/* Guide
-----------------------------------------------------*/
.breadcrumb .pathList {
  font-size: 0.75rem;
}
.breadcrumb .pathList a {
  color: #003399;
  text-decoration: underline;
}