@charset "utf-8";
/* ----------------------
		reset
---------------------- */
body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
pre,
form,
fieldset,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style-type: none;
}

table {
  line-height: 1.6;
  border: 0px;
  border-collapse: collapse;
  font-size: 1em;
}
table th {
  font-weight: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  line-height: 1.4;
  font-weight: normal;
}
input {
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border-radius: 0;
}
p {
  line-height: 1.5;
}
em {
  font-style: normal;
}
img {
  border: none;
  vertical-align: bottom;
}
address {
  font-style: normal;
}
ul li {
  line-height: 1.4;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
main {
  display: block;
}
.fit {
  width: 100%;
  height: auto;
}
/* ----------------------
		common
---------------------- */

:root {
  --color_blue: #FDDC3C;
  --color_dark_blue: #D85319;
  --min-width: min(95%,1100px);
  --ft_9: 0.5625rem;
  --ft_10: 0.625rem;
  --ft_11: 0.6875rem;
  --ft_12: 0.75rem;
  --ft_13: 0.8125rem;
  --ft_14: 0.875rem;
  --ft_15: 0.9375rem;
  --ft_16: 1rem;
  --ft_17: 1.0625rem;
  --ft_18: 1.125rem;
  --ft_19: 1.1875rem;
  --ft_20: 1.25rem;
  --ft_21: 1.3125rem;
  --ft_22: 1.375rem;
  --ft_23: 1.4375rem;
  --ft_24: 1.5rem;
  --ft_25: 1.5625rem;
  --ft_26: 1.625rem;
}

html {
  font-size: 100%;
}
body {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
a:link {
  border: none;
  color: #fff;
  text-decoration: none;
}
a:visited {
  border: none;
  color: #fff;
  text-decoration: none;
}
a:active {
  border: none;
  color: #fff;
  text-decoration: none;
}
a:hover {
  border: none;
  color: #fff;
  text-decoration: none;
}
a[href^="tel:"] {
  color: #fff;
  text-decoration: underline;
}
a.nolink {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.alpha a:hover > img {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}
.alpha a > img {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.cf:after {
  content: "";
  display: block;
  clear: both;
}
.sp {
  display: none;
}
.pc {
  display: block;
}
.pc_br {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }

  .pc_br {
    display: none;
  }
}

.header {
  padding: 20px 0 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: url(../img/mv_bg_sp.jpg) no-repeat center center / cover;
}

.header h1 img {
}

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

  .header {
    padding: 50px 50px 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: url(../img/mv_bg_pc.jpg) no-repeat center top / cover;
  }

  .header h1 img {
    width: 1418px;
  }

}

#btn_fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  box-shadow: 0px 0px 16px 4px rgba(0, 6, 46, 0.2);
}

#btn_fixed.btn_blue a {
  padding: 10px 20px;
  display: block;
  box-shadow: none;
  font-size: var(--ft_12);
  line-height: 1.5;
  text-align: center;
  background-image: linear-gradient( 90deg, rgb(0,136,234) 0%, rgb(0,97,195) 45%, rgb(0,76,189) 100%);
  box-shadow: 0px 0px 8px 2px rgba(0, 6, 46, 0.2);
  border-radius: 0;
  position: relative;
}

#btn_fixed.btn_blue a::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: 20px;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 7px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

#btn_fixed.btn_blue a span {
  display: block;
  font-size: var(--ft_14);
}

#btn_fixed.btn_blue a span em {
  font-weight: 700;
  color: #fcfcd4;
}

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

  #btn_fixed.btn_blue {
    position: fixed;
    left: auto;
    right: 40px;
    bottom: 100px;
    width: 320px;
    border-radius: 50px;
    box-shadow: 0px 0px 16px 4px rgba(0, 6, 46, 0.2);
    display: block;
    float: right;
  }

  #btn_fixed.btn_blue a {
    padding: 18px 20px;
    font-size: var(--ft_14);
    line-height: 1.4;
    border-radius: 50px;
  }

  #btn_fixed.btn_blue a:hover {
    background: #0054ff;
  }

  #btn_fixed.btn_blue a span {
    font-size: var(--ft_18);
  }

}

.main {
  overflow: hidden;
}

.sec_about {
  padding: 55px 0 50px;
  background: url(../img/about_back.png) no-repeat 0 0 / cover;
}

.sec_about .inner > h2 {
  width: 80%;
  margin: 0 auto 30px;
}

.about_2column {
  margin: 10px 20px 40px;
}

.about_2column .about_pamph {
  margin: 35px 0 0;
  text-align: center;
}

.about_2column > div {
  width: 100%;
}

.about_2column .about_pamph figure {
  margin: 0 0 20px;
}

.about_2column .about_pamph .btn_white {
  padding: 15px 30px;
  background: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #0055a5;
  font-weight: 700;
  font-size: var(--ft_14);
  border-radius: 30px;
  box-shadow: 0px 2px 18px 4px rgba(26, 102, 187, 0.2);
}

.icon_download {
  margin: 0 0 0 5px;
  display: block;
  width: 13px;
  height: 12px;
  background: url(../img/icon_download.png) no-repeat 0 0 / 100% auto;
}

.about_2column p {
  margin: 0 0 10px;
  font-size: var(--ft_16);
  font-weight: 500;
  line-height: 1.5;
}

.about_2column .note {
  margin: 0;
  font-size: var(--ft_14);
}

.toha_img_02 {
  margin: 0 20px;
}

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

  .inner {
    margin: 0 auto;
    width: var(--min-width);
  }

  .sec_about {
    padding: 62px 0 120px;
    background: url(../img/about_back.png) no-repeat 0 0 / cover;
  }

  .sec_about .inner > h2 {
    width: 665px;
    margin: 0 auto 70px;
  }

  .sec_about .btn_blue {
    display: none;
  }

  .about_2column {
    margin: 0 0 50px;
    display: flex;
    gap: 4.5%;
  }

  .about_2column > div {
    width: calc(100% - 420px);
  }

  .about_2column p {
    margin: 0 0 20px;
    font-size: var(--ft_18);
  }

  .about_2column .about_pamph {
    margin: 0;
    width: 420px;
  }

  .toha_img_02 {
    margin: 0;
  }

  .about_2column .about_pamph .btn_white:hover {
    background: #0055a5;
    color: #fff;
  }

  .about_2column .about_pamph .btn_white:hover .icon_download {
    background: url(../img/icon_download_w.png) no-repeat 0 0 / 100% auto;
  }

}

.benefit_no1,
.benefit_no2,
.benefit_no3,
.benefit_no4 {
  position: relative;
  padding: 40px 20px 60px;
}

.benefit_no1 {
  background: #fff8b2;
}

.benefit_no2 {
  background: #d5f3e9;
}

.benefit_no3 {
  background: #ffecf2;
}

.benefit_no4 {
  background: #efeaff;
}

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

  .sec_benefit {
    position: relative;
  }

  .sec_benefit1_2::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #fff8b2;
  }

  .sec_benefit1_2::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #d5f3e9;
  }

  .sec_benefit3_4::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #ffecf2;
  }

  .sec_benefit3_4::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #efeaff;
  }

  .sec_benefit .benefit_2column {
    margin: 0 auto;
    width: var(--min-width);
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
  }

  .benefit_no1,
  .benefit_no2,
  .benefit_no3,
  .benefit_no4 {
    padding: 50px 40px 75px;
    text-align: center;
  }

}

.benefit_no1 h2,
.benefit_no2 h2,
.benefit_no3 h2,
.benefit_no4 h2 {
  margin: -60px auto 25px;
}

.benefit_no1 p,
.benefit_no2 p,
.benefit_no3 p,
.benefit_no4 p,
.benefit_column p {
  margin: 0 0 15px;
  font-size: var(--ft_16);
  font-weight: 500;
}

.benefit_no1 dl,
.benefit_no2 dl,
.benefit_no3 dl,
.benefit_no4 dl,
.sticker_period {
  margin: 0 0 30px;
  display: flex;
  align-items: center;
}

.benefit_no1 dl:has(+dl),
.benefit_no2 dl:has(+dl),
.benefit_no3 dl:has(+dl),
.benefit_no4 dl:has(+dl),
.sticker_period {
  margin: 0 0 5px;
}

.benefit_no1 dt,
.benefit_no2 dt,
.benefit_no3 dt,
.benefit_no4 dt {
  margin: 0 10px 0 0;
  padding: 15px 5px;
  font-size: var(--ft_12);
  line-height: 1.2;
  font-weight: 700;
  border: 1px solid #333;
  white-space: nowrap;
}

.benefit_no3 dt {
  	padding: 8px 10px;
}

.benefit_no1 dd,
.benefit_no2 dd,
.benefit_no3 dd,
.benefit_no4 dd {
  font-size: var(--ft_16);
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.benefit_no1 dd {
  color: #856e09;
}

.benefit_no2 dd {
  color: #227678;
}

.benefit_no3 dd {
  color: #8c002c;
}

.benefit_no4 dd {
  color: #240097;
}

.benefit_no1 dd p.note,
.benefit_no2 dd p.note,
.benefit_no3 dd p.note,
.benefit_no4 dd p.note {
  margin: 5px 0 0;
  font-size: var(--ft_14);
  font-weight: 500;
  color: #333;
}

.box_soon {
  margin: 30px 0 0;
  padding: 40px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit_no4 .box_soon {
  background: #e4dbff;
}

.benefit_no4 .box_soon p {
  margin: 0;
  color: #240097;
  font-size: var(--ft_26);
  font-weight: 500;
}

.box_soon p.note {
  margin: 5px 0 0;
  color: inherit;
  font-size: var(--ft_14);
  font-weight: 400;
}

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

  .benefit_no1 h2,
  .benefit_no2 h2,
  .benefit_no3 h2,
  .benefit_no4 h2 {
    width: 466px;
    margin: -85px auto 30px;
  }

  .benefit_no1 p,
  .benefit_no2 p,
  .benefit_no3 p,
  .benefit_no4 p,
  .benefit_column p {
    margin: 0 0 20px;
  }

  .benefit_no1 dl,
  .benefit_no2 dl,
  .benefit_no3 dl,
  .benefit_no4 dl,
  .sticker_period {
    justify-content: center;
  }

  .benefit_no1 dt,
  .benefit_no2 dt,
  .benefit_no3 dt,
  .benefit_no4 dt {
    margin: 0 20px 0 0;
    padding: 15px 10px;
    font-size: var(--ft_14);
  }

	.benefit_no3 dt {
	  	padding: 8px 10px;
	}

  .benefit_no1 dd,
  .benefit_no2 dd,
  .benefit_no3 dd,
  .benefit_no4 dd {
    font-size: var(--ft_20);
    line-height: 1.5;
  }

  .box_soon {
    margin: 40px 0 0;
    padding: 0;
    height: calc(100% - 170px);
  }

}

.btn_benefit a {
  padding: 18px 0;
  background: #fff;
  color: #0061a5;
  font-size: var(--ft_16);
  font-weight: 700;
  display: block;
  border: 1px solid #0055a5;
  border-radius: 50px;
  box-shadow: 0px 4px 0px 0px rgba(0, 85, 165, 1);
  position: relative;
  text-align: center;
}

.btn_benefit a::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid #0055a5;
}

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

  .btn_benefit a {
    padding: 26px 0;
  }

  .btn_benefit a:hover {
    background: #0055a5;
    color: #fff;
  }

  .btn_benefit a:hover::after {
    border-top: 7px solid #fff;
  }

}

.benefit_column {
  position: relative;
  padding: 50px 20px;
  text-align: center;
  z-index: 2;
}

#benefit_no1 {
  background: url("../img/column1_bg.png") repeat 0 0 / 50px auto;
}

#benefit_no2 {
  background: url("../img/column2_bg.png") repeat 0 0 / 50px auto;
}

#benefit_no3 {
  background: url("../img/column3_bg.png") repeat 0 0 / 50px auto;
}

#benefit_no4 {
  background: url("../img/column4_bg.png") repeat 0 0 / 50px auto;
}

#benefit_no1 h2,
#benefit_no2 h2,
#benefit_no3 h2,
#benefit_no4 h2 {
  margin: 0 auto 30px;
}

.benefit_column .btn_benefit {
  margin: 0;
  display: inline-block;
}

.benefit_column .btn_benefit a {
  padding: 12px 45px 12px 25px;
  box-shadow: none;
  font-size: var(--ft_14);
}

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

  .benefit_column {
    padding: 100px 0;
  }

  #benefit_no1 h2,
  #benefit_no2 h2,
  #benefit_no3 h2,
  #benefit_no4 h2 {
    width: 697px;
    margin: 0 auto 30px;
  }

  .benefit_column .btn_benefit a {
    padding: 17px 50px 17px 30px;
  }

}

.benefit_column .benefit_2column {
  margin: 30px 0 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  flex-wrap: inherit;
}

.benefit_column .benefit_2column > div {
  order: 2;
}

.benefit_column .benefit_2column button {
  margin: 0 15px 30px;
  padding: 0;
  border: none;
  order: 1;
}

.benefit_column .sticker_period {
	margin: 0 0 25px;
  padding: 20px 20px;
  display: block;
  border: 1px solid #d8cf61;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.benefit_column .sticker_period dt {
  padding: 0 0 10px;
  font-size: var(--ft_16);
  font-weight: 700;
  color: #856e09;
}

.benefit_column .sticker_period dd {
  padding: 15px 0 0;
  border-top: 1px solid #d8cf61;
  font-size: var(--ft_16);
  line-height: 1.3;
}

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

  .benefit_column .benefit_2column {
    margin: 50px 0 60px;
    flex-direction: inherit;
    gap: 9%;
    text-align: left;
  }

  .benefit_column .benefit_2column > div {
    order: inherit;
  }

  .benefit_column .benefit_2column button {
    margin: 0;
    width: 445px;
    flex-shrink: 0;
    order: inherit;
  }

  .benefit_column .sticker_period {
		margin: 0 0 35px;
    padding: 10px 20px;
    display: flex;
    justify-content: flex-start;
    text-align: left;
  }

  .benefit_column .sticker_period dt {
    padding: 5px 20px 5px 0;
  }

  .benefit_column .sticker_period dd {
    padding: 5px 0 5px 20px;
    border-left: 1px solid #d8cf61;
    border-top: none;
  }

}

.benefit_column h4 {
  margin-top: 20px;
  color: #856e09;
  font-weight: 500;
  font-size: var(--ft_18);
}

.benefit_column h3 {
  margin: 10px 0;
  color: #856e09;
  font-weight: 700;
  font-size: 1.75rem;
}

.benefit_column .note {
  margin: 12px 4px 0;
  color: #fff;
  font-size: var(--ft_16);
  line-height: 1.6;
}

.benefit_column .note strong {
  padding: 3px 10px;
  font-weight: 400;
  background: #d43c00;
  display: inline-flex;
}

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

  .benefit_column h4 {
    margin-top: 30px;
    color: #856e09;
    font-weight: 500;
    font-size: var(--ft_26);
  }

  .benefit_column h3 {
    margin: 20px 0;
    color: #856e09;
    font-weight: 700;
    font-size: 2.625rem;
  }

  .benefit_column .note {
    margin: 15px 0 0;
    font-size: var(--ft_20);
  }

}

.box_white {
  margin: 40px 0 30px;
  padding: 35px 20px 40px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #d8cf61;
}

.box_white h4 {
  margin: 0 0 25px;
  padding: 0 0 15px;
  color: #856e09;
  font-size: var(--ft_24);
  font-weight: 700;
  position: relative;
}

.box_white h4::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 80px;
  height: 3px;
  background: #d8cf61;
}

.box_white p {
  text-align: left;
}

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

  .box_white {
    margin: 60px 0 50px;
    padding: 55px 60px 60px;
    border-radius: 50px;
  }

  .box_white h4 {
    margin: 0 0 50px;
    font-size: 1.75rem;
  }

  .box_white p {
    text-align: center
  }

}

.box_place {
  margin: 40px 0 0;
  padding: 0 20px 10px;
  border-radius: 10px;
  background: #f1f5f9;
}

.box_place h5 {
  margin: 0 0 10px;
  font-size: var(--ft_18);
  font-weight: 700;
  color: #0055a5;
  position: relative;
  top: -13px;
}

.box_place h6 {
  margin: 0 0 15px;
  font-weight: 700;
  font-size: var(--ft_16);
}

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

  .box_place {
    margin: 60px 0 0;
    padding: 0 50px 20px;
  }

  .box_place h5 {
    margin: 0 0 25px;
    font-size: var(--ft_22);
    top: -18px;
  }

  .box_place h6 {
    font-size: var(--ft_18);
  }

}

.box_place ul {
  margin: 0 0 30px;
  display: grid;
  grid-auto-rows: 1fr;
}

.box_place li {
  margin: 0 0 10px;
  text-align: left;
}

.box_place li a {
  border-radius: 20px;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #0055a5;
  color: #fff;
  font-size: var(--ft_16);
  position: relative;
  height: 100%;
}

.box_place ul:has(> li:first-child:last-child) li a {
  padding-top: 22px;
  padding-bottom: 22px;
}

.box_place li .min {
  display: block;
  font-size: var(--ft_14);
}

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

  .box_place ul {
    margin: 0 0 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .box_place li {
    margin: 0;
    width: calc(50% - 10px);
  }

  .box_place li a {
    padding: 25px 40px 25px 30px;
    display: flex;
    height: auto;
  }

  .box_place ul:has(> li:first-child:last-child) li a {
    padding-top: 25px;
    padding-bottom: 25px;
  }

}

.icon_arrow {
  display: block;
  position: relative;
}

.icon_arrow::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 7px solid #fff;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.box_white .note {
  color: inherit;
  text-align: left;
  font-size: var(--ft_14);
  padding-left: 1em;
  text-indent: -1em;
}

.box_white .btn_benefit {
  margin: 30px 0 0;
  display: block;
}

.box_white .btn_benefit a {
  padding: 25px 20px;
  font-size: var(--ft_18);
  font-weight: 700;
  box-shadow: 0px 4px 0px 0px rgba(0, 85, 165, 1);
}

.box_white .btn_benefit a::after {
  transform: rotate(-90deg);
}

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

  .box_place li a:hover {
    background: #0054ff;
  }

  .box_white .btn_benefit {
    margin: 30px 0 0;
    display: inline-block;
  }

  .box_white .btn_benefit a {
    padding: 32px 127px;
    font-size: var(--ft_24);
    font-weight: 700;
    box-shadow: 0px 4px 0px 0px rgba(0, 85, 165, 1);
  }

  .box_white .note:last-child {
    text-align: center;
  }

}

.box_yellow {
  margin: 0 0 40px;
  border-radius: 30px;
  padding: 40px 20px 10px;
  background: #fff9c9;
}

.box_yellow h3 {
  width: 75%;
  margin: 0 auto 20px;
}

.box_yellow .note {
  margin: 0;
  font-size: var(--ft_14);
  text-align: center;
  color: inherit;
}

.postcard_list {
  margin: 30px 0 0;
  text-align: left;
}

.postcard_list figure {
  margin-bottom: 15px;
}

.postcard_list li {
  margin: 0 0 25px;
}

.postcard_list li li {
  margin: 0;
  padding: 0 0 0 10px;
  color: #72540c;
  font-size: var(--ft_14);
  line-height: 1.6;
  position: relative;
}

.postcard_list li li::after {
  position: absolute;
  content: '';
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #0055a5;
}

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

  .box_yellow {
    margin: 0 0 50px;
    border-radius: 50px;
    padding: 60px;
  }

  .box_yellow h3 {
    width: 577px;
  }

  .postcard_list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
  }

}

.column_shop {
  margin: 46px auto 30px;
  text-align: center;
}

.column_shop h3 {
  margin: 0 auto 12px;
}

.column_shop .btn_benefit {
  margin: 0;
  display: block;
}

.column_shop .btn_benefit a,
#benefit_no2 .btn_benefit a,
#benefit_no3 .btn_benefit a {
  padding: 25px 20px;
  font-size: var(--ft_18);
  font-weight: 700;
  box-shadow: 0px 4px 0px 0px rgba(0, 85, 165, 1);
}

.column_shop .btn_benefit a::after,
#benefit_no2 .btn_benefit a::after,
#benefit_no3 .btn_benefit a::after {
  transform: rotate(-90deg);
}

.column_shop .note {
  color: inherit;
  font-size: var(--ft_14);
  text-align: left;
  padding-left: 1em;
  text-indent: -1em;
}

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

  .column_shop {
    margin: 46px auto 30px;
    text-align: center;
  }

  .column_shop h3 {
    width: 500px;
    margin: 0 auto 18px;
  }

  .column_shop .btn_benefit {
    margin: 0 0 5px;
    display: inline-block;
  }

  .column_shop .btn_benefit a,
  #benefit_no2 .btn_benefit a,
  #benefit_no3 .btn_benefit a {
    padding: 32px 0;
    width: 500px;
    font-size: var(--ft_24);
    box-shadow: 0px 4px 0px 0px rgba(0, 85, 165, 1);
  }

  .column_shop .note {
    text-align: center;
  }

}

.box_shop {
  margin: 35px 0 0;
  padding: 10px 20px 20px;
  background: #fffded;
  border-radius: 10px;
}

.box_shop h5 {
  font-size: var(--ft_16);
  font-weight: 700;
  position: relative;
  top: -20px;
}

.box_shop li {
  margin: 0 0 10px;
  padding: 0 0 0 20px;
  position: relative;
  font-size: var(--ft_16);
  color: inherit;
  text-align: left;
}

.box_shop li::after {
  position: absolute;
  content: '';
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: #856e09;
}

.box_shop li p {
  margin: 5px 0 0;
  text-align: left;
  font-size: var(--ft_14);
}

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

  .box_shop {
    margin: 35px 0 0;
    padding: 20px 50px 50px;
  }

  .box_shop h5 {
    font-size: var(--ft_18);
    top: -33px;
  }

  .box_shop ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
  }

  .box_shop li {
    margin: 0;
  }

  .box_shop ul:has(li > p) {
		display: block;
	}

  .box_shop ul:has(li > p) li {
		margin-bottom: 15px;
	}

  .column_shop + .box_white:last-child .note {
    text-align: left;
  }

}

.sticker_list {
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sticker_list li {
  width: calc(50% - 10px);
  box-shadow: 0px 0px 8px 2px rgba(0, 6, 46, 0.1);
  cursor: pointer;
}

#benefit_no2.benefit_column .sticker_period {
  border-color: #a5e2d7;
}

#benefit_no2.benefit_column .sticker_period dt {
  color: #227678;
}

#benefit_no2.benefit_column .sticker_period dd {
  border-color: #a5e2d7;
  line-height: 1.5;
}

#benefit_no2.benefit_column p {
  text-align: left;
}

#benefit_no2.benefit_column .note {
  margin: 0;
  color: inherit;
  font-size: var(--ft_14);
  text-indent: -1em;
  padding-left: 1em;
}

#benefit_no2.benefit_column .btn_benefit + .note {
  font-weight: 400;
  margin: 15px 0 0;
}

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

  .sticker_list {
    margin: 60px auto 50px;
    gap: 40px;
    max-width: 770px;
  }

  .sticker_list li {
    max-width: 320px;
    width: calc(33.3333% - 26.666px);
  }

  #benefit_no2.benefit_column .sticker_period {
    display: inline-flex;
  }

  #benefit_no2.benefit_column p {
    margin-bottom: 12px;
    text-align: center;
  }

}

.colabo_list {
  margin: 40px 0 30px;
}

.colabo_list li {
  margin: 0 0 20px;
  padding: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #a5e2d7;
  text-align: left;
}

.colabo_list figure img {
  width: 100%;
  aspect-ratio: 45 / 34;
  object-fit: cover;
}

.colabo_list h3 {
  margin: 15px 0;
  color: #227678;
  font-weight: 700;
  font-size: var(--ft_18);
  line-height: 1.3;
}

#benefit_no2.benefit_column .colabo_list p.pin {
  margin: 0;
  padding: 0 0 0 20px;
  font-size: var(--ft_16);
  text-align: left;
  background: url(../img/icon_mappin.svg) no-repeat 0 0 / 10px auto;
}

#benefit_no2.benefit_column p.more {
  text-align: right;
}

#benefit_no2 .btn_benefit,
#benefit_no3 .btn_benefit {
  margin: 40px 0 0;
  display: block;
}

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

  .colabo_list {
    margin: 45px 0 30px;
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
  }

  .colabo_list li {
    margin: 0;
    width: calc(25% - 10px);
  }

  #benefit_no2 .btn_benefit,
  #benefit_no3 .btn_benefit {
    margin: 0;
    display: inline-block;
  }

}

#benefit_no3 h2 {
  margin-bottom: 25px;
}

#benefit_no3 .inner > p {
  text-align: left;
}

#benefit_no3 .present_2column {
  margin: 25px 0 30px;
}

#benefit_no3 .present_2column figure {
  margin: 0 10px 20px;
}

#benefit_no3 .present_2column th {
  background: #bd3c58;
  border-color: #f8e6ea;
}

#benefit_no3 .present_2column td {
  border-color: #f8e6ea;
}

#benefit_no3 .present_2column td ul li::after {
  background: #d34b00;
}

#benefit_no3 .present_2column table p.note {
  margin: 5px 0 0;
  padding-left: 1em;
  text-indent: -1em;
  color: inherit;
}

#benefit_no3 .present_2column table p.note + p.note {
  margin-top: 0;
}

#benefit_no3 .btn_benefit {
  margin: 15px 0 40px;
}

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

  #benefit_no3 h2 {
    margin-bottom: 55px;
  }

  #benefit_no3 .inner > p {
    text-align: center;
  }

  #benefit_no3 .present_2column {
    margin: 50px 0 40px;
  }

  #benefit_no3 .present_2column figure {
    margin: 0;
    width: 350px;
    flex-shrink: 0;
  }

  #benefit_no3 .present_2column table p.note {
    margin: 8px 0 0;
  }

  #benefit_no3 .present_2column table p.note + p.note {
    margin-top: 0;
  }

  #benefit_no3 .btn_benefit {
    margin: 15px 0 0;
  }

}

.passport_box {
  margin: 40px 0 0;
  padding: 40px 20px 30px;
  border-radius: 30px;
  background: #ffe9ee;
}

.passport_box h3 {
  margin: 0;
}

.passport_box p.note {
  font-size: var(--ft_14);
  color: inherit;
}

.passport_box figure {
  margin: 25px 0 0;
}

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

  .passport_box {
    margin: 60px 0 0;
    padding: 60px 50px;
    border-radius: 60px;
    display: flex;
    text-align: left;
  }

  .passport_box h3 {
    margin: 0 0 20px;
  }

  .passport_box figure {
    margin: 0 0 0 50px;
    width: 330px;
    flex-shrink: 0;
  }

}

.sec_present {
  padding: 50px 20px;
  text-align: center;
  background-image:linear-gradient( 140deg, rgba(255,217,243,1) 0%, rgb(255,222,241) 31%, rgb(236,224,255) 76%, rgb(232,211,251) 100%);
}

.sec_present .inner  h2 {
  margin: 0 auto 40px;
}

.present_2column {
  margin: 0 0 55px;
}

.present_2column table {
  margin: 0 0 30px;
  width: 100%;
  background: #fff;
  text-align: left;
}

.present_2column th {
  padding: 15px;
  font-size: var(--ft_16);
  text-align: center;
  font-weight: 700;
  color: #fff;
  background: #9557ad;
  border-top: 1px solid #ceb3d8;
  white-space: nowrap;
}
.present_2column td {
  padding: 20px 15px;
  font-size: var(--ft_14);
  border-top: 1px solid #ceb3d8;
}

.present_2column tr:first-child th,
.present_2column tr:first-child td {
  border: none;
}

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

  .sec_present {
    padding: 100px 0;
  }

  .sec_present .inner h2 {
    width: 910px;
  }

  .present_2column {
    margin: 0 0 40px;
    display: flex;
    gap: 6%;
    align-items: center;
  }

  .present_2column table {
    margin: 0;
  }

  .present_2column th {
    padding: 18px 30px;
    font-size: var(--ft_18);
  }

  .present_2column th br {
    display: none;
  }

  .present_2column td {
    padding: 18px 30px;
    font-size: var(--ft_16);
  }

}

.present_2column td p.note {
  margin: 0;
  padding: 0 0 0 1em;
  text-indent: -1em;
  display: block;
  font-size: var(--ft_12);
}

.present_2column td ul {
  list-style: none;
}

.present_2column td ul li {
  margin: 5px 0;
  padding: 0 0 0 15px;
  position: relative;
}

.present_2column td ul li::after {
  position: absolute;
  content: '';
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #9557ad;
  border-radius: 5px;
}

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

  .present_2column td p.note {
    margin: 0 0 0 15px;
    padding: 0;
    text-indent: 0;
    display: inline-block;
    font-size: var(--ft_14);
  }

  .present_2column td ul li::after {
    top: 10px;
  }

  .present_2column figure {
    width: 330px;
    flex-shrink: 0;
  }

}

.present_box {
  padding: 40px 30px 30px;
  position: relative;
  background: #fff;
  border-radius: 50px;
}

.present_box::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: -20px;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 20px solid #fff;
}

.present_box .note {
  margin: 15px 0 0;
  font-size: var(--ft_16);
  text-align: center;
}

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

  .present_box {
    padding: 50px 50px 40px;
  }

  .present_box::after {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: -20px;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 20px solid #fff;
  }

  .present_box figure {
    margin: 0 auto;
    width: 500px;
  }

  .present_box .note {
    margin: 0;
    position: absolute;
    right: 50px;
    bottom: 40px;
  }

}

.sec_election {
  padding: 50px 20px;
  background-image: linear-gradient( 180deg, rgb(247,252,255) 0%, rgb(233,244,251) 45%, rgb(219,235,246) 100%);
  text-align: center;
}

.sec_election .election_header {
  margin: 0 0 25px;
}

.sec_election .logo {
  margin: 0 0 30px;
}

.sec_election h2 {
}

.sec_election .inner > p {
  margin: 0;
 font-size: var(--ft_18);
}

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

  .sec_election {
    padding: 125px 0 100px;
  }

  .sec_election .election_header {
    margin: 0 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sec_election .logo {
    margin: 0;
    width: 355px;
    flex-shrink: 0;
  }

  .sec_election h2 {
    width: 726px;
  }

  .sec_election .inner > p {
    font-size: var(--ft_20);
  }

}

.sec_election table {
  margin: 35px 0;
}

.sec_election th {
  background: #0062be;
  color: #fff;
  font-weight: 700;
  font-size: var(--ft_16);
  padding: 10px 20px;
  border-top: 1px solid #dbebf6;
  white-space: nowrap;
}

.sec_election td {
  background: #fff;
  font-size: var(--ft_14);
  padding: 15px 20px;
  border-top: 1px solid #dbebf6;
  text-align: left;
}

.sec_election tr:first-child th,
.sec_election tr:first-child td {
  border: none;
}

.sec_election td p.note {
  font-size: var(--ft_12);
}

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

  .sec_election table {
    margin: 50px auto;
  }

  .sec_election th {
    font-size: var(--ft_18);
    padding: 18px 30px;
  }

  .sec_election td {
    font-size: var(--ft_16);
    padding: 18px 30px;
  }

  .sec_election td p.note {
    font-size: var(--ft_14);
  }

}

.sec_election .inner > p.note {
  margin: 0 0 10px;
  font-size: var(--ft_14);
  text-align: left;
}

.sec_election .btn {
  margin: 15px auto 0;
  text-align: center;
}

.sec_election .btn + .btn {
  margin: 30px 0 0;
}

.sec_election .btn a {
  padding: 25px 0;
  font-size: var(--ft_18);
  font-weight: 700;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient( 90deg, rgb(0,136,234) 0%, rgb(0,97,195) 45%, rgb(0,76,189) 100%);
  position: relative;
}

.sec_election .btn .icon_blank {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

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

  .sec_election .inner > p.note {
    text-align: center;
  }

  .sec_election .btn + .btn {
    margin: 40px 0 0;
  }

  .sec_election .btn a {
    padding: 35px 0;
    font-size: var(--ft_20);
    display: inline-flex;
    width: 700px;
  }

  .sec_election .btn a:hover {
    background: #0054ff;
  }

  .sec_election .btn .icon_blank {
    right: 30px;
  }

}

.footer {
  padding: 30px 20px 80px;
  text-align: center;
  background: url("../img/footer_back.jpg") center top / cover no-repeat;
  position: relative;
}

.footer_box {
  margin: 0 0 40px;
  padding: 40px 30px 35px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.3);
  text-align: left;
}

.footer_box h2 {
  width: 95%;
  margin: 0 auto 25px;
}

.footer_box p {
  margin: 0 auto 25px;
  font-size: var(--ft_16);
  font-weight: 500;
  line-height: 1.6;
}

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

  .footer {
    padding: 100px 0 30px;
    text-align: center;
  }

  .footer_box {
    margin: 0 0 60px;
    padding: 80px 20px 70px;
    text-align: center;
  }

  .footer_box h2 {
    width: 405px;
    margin: 0 auto 40px;
  }

  .footer_box p {
    margin: 0 auto 30px;
    font-size: var(--ft_18);
  }

}

.footer_box .btn_blue a {
  padding: 15px 25px;
  display: flex;
  align-items: center;
  box-shadow: none;
  font-size: var(--ft_16);
  font-weight: 700;
  line-height: 1.5;
  border-radius: 25px;
  background-image: linear-gradient( 90deg, rgb(0,136,234) 0%, rgb(0,97,195) 45%, rgb(0,76,189) 100%);
}

.footer_box .footer_box_copy {
  margin: 20px 0 0;
  color: #001d36;
  font-weight: 700;
  font-size: var(--ft_10);
}

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

  .footer_box .btn_blue {
    display: inline-block;
  }

  .footer_box .btn_blue a {
    padding: 30px 35px 30px 70px;
    font-size: var(--ft_20);
    line-height: 1.4;
    border-radius: 50px;
  }

  .footer_box .btn_blue a:hover {
    background: #0054ff;
  }

  .footer_box .footer_box_copy {
    margin-top: 35px;
    font-size: var(--ft_14);
  }

}

.footer .btn_white {
  margin: 0 auto;
  display: inline-block;
}

.footer .btn_white a {
  padding: 18px 30px;
  border: none;
  font-size: var(--ft_14);
  font-weight: 700;
  color: #0055a5;
  background: #fff;
  display: flex;
  align-items: center;
  border-radius: 30px;
  box-shadow: 0px 2px 18px 2px rgba(26, 102, 187, 0.2);
}

.btn_up {
  margin: 20px auto 0;
  width: 60px;
}

.footer_copy {
  margin-top: 10px;
  color: #001d36;
  font-weight: 500;
  font-size: var(--ft_12);
  text-align: center;
}

.icon_blank {
  margin-left: 10px;
  display: flex;
  width: 15px;
  height: 12px;
  background: url(../img/icon_blank.svg) no-repeat 0 0 / 100% auto;
  flex-shrink: 0;
}

.icon_arrow_back {
  margin-right: 10px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-right: 8px solid #0055a5;
  border-bottom: 5px solid transparent;
}

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

  .footer_copy {
    margin-top: 25px;
  }

  .footer .btn_white a:hover {
    background: #0055a5;
    color: #fff;
  }

  .footer .btn_white a:hover .icon_arrow_back {
    border-right: 8px solid #fff;
  }

  .btn_up {
    margin: 0;
    position: absolute;
    right: 50px;
    bottom: 200px;
    width: 130px;
  }

}

.modal_content {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1500;
  display: none;
}

.modal_close {
  display: inline-block;
  font-size: 36px;
  text-align: center;
  position: absolute;
  top: 0;
  left: -50px;
  cursor: pointer;
  z-index: 9999;
}

.modal_close span {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 0.05em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  transform: rotate(45deg);
}
.modal_close span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

.modal_contentwrap {
  overflow: auto;
  padding: 20px 60px;
  height: 100vh;
  display: flex;
}

.modal_inner {
  margin: auto;
  position: relative;
}

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

  .modal_ticket_img {
	  max-width: 794px;
  }

}
