/* ----------------------------------------------------------------------------
/* 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
ol, ul, li {
  margin: 0;
  padding: 0;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
/*
  border-collapse: collapse;
*/
  border-spacing: 0;
}
html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: subpixel-antialiased;
}
body {
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
}
a, a:link, a:active, a:visited, a:hover, a:focus {
  text-decoration: none;
}
body * {
  text-shadow: none;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: normal;
}
dl, dl dt, dl dd {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  vertical-align: top;
}
input[type="button"],
input[type="text"],
input[type="submit"],
input[type="file"] {
  -webkit-appearance: none;
  border-radius: 0;
}
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="file"] {
  ime-mode: disabled;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="button"],
input[type="file"] {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 18px;
}
input::placeholder {
  font-size: 16px;
  font-weight: 300;
  color: #aaaaaa;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 1;
}
select::-ms-expand {
  display: none;
}
button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
sup {
  font-size: 70%;
  vertical-align: super;
}
sub {
  font-size: 70%;
  vertical-align: sub;
}
a {
  color: #353535;
}





/* ----------------------------------------------------------------------------
/* common
---------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
/*
  font-size: 62.5%;
*/
}
body {
  position: relative;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, 0.917rem + 0.31vw, 1.125rem);
  line-height: 1.6em;
  color: #353535;
}

@media (1360px <= width) {
  .inner {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (width < 1360px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: fixed;
  width: 100%;
  padding: 16px 40px;
  z-index: 20;
  background: #ffffff;
  box-sizing: border-box;
  box-shadow: 0px 0px 15px -5px #333333;
}
header h1 {
  display: flex;
  align-items: center;
  gap: 10px;
}
header h1 span {
  font-size: clamp(1rem, 0.7rem + 0.5vw, 1.125rem);
  font-weight: 700;
  line-height: 1em;
}
header h1 img {
  height: 32px;
}
header .nav_btn {
  display: flex;
  gap: 40px;
}
header .nav_btn a {
  display: block;
  padding: 14px 40px 16px;
  background-color: #eb7104;
  border-radius: 100px;
  font-size: clamp(1rem, 0.7rem + 0.5vw, 1.125rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1em;
}

@media (width < 960px) {
  header {
    gap: 16px;
    padding: 16px 24px;
  }
  header h1 {
    flex-direction: column;
    align-items: flex-start;
  }
  header h1 img {
    height: 24px;
  }
  header .nav_btn a {
    padding: 16px 16px 18px;
  }
}
@media (width < 560px) {
  header h1 img {
    height: 20px;
  }
  header .nav_btn span {
    display: none;
  }
}

.block_iframe {
  position: relative;
  height: 0;
  margin-top: 60px;
  padding-bottom: 56.25%;
  border: 1px solid #dddddd;
  overflow: hidden;
}
.block_iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}





#mainvisual {
  padding-top: 180px;
  padding-bottom: 120px;
  background: linear-gradient(60deg,rgba(222, 223, 233, 0.1) 0%, rgba(222, 223, 233, 0.4) 60%);
}
#mainvisual .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 16px;
}
#mainvisual .txt {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#mainvisual #catch {
  font-family: "M PLUS 1p", sans-serif;
  font-size: clamp(2rem, 0.8rem + 2vw, 2.5rem);
  font-weight: 800;
  color: #363958;
  line-height: 1.4em;
  letter-spacing: 0.1rem;
}
#mainvisual #catch span {
  font-size: 80%;
  font-weight: 700;
}
#mainvisual .nav_btn {
  width: 80%;
  padding-top: 16px;
}
#mainvisual  a span {
  display: inline-block;
  padding-bottom: 8px;
  font-size: clamp(0.8125rem, 0.3625rem + 0.75vw, 1rem);
  font-weight: 500;
  line-height: 1em;
}
#mainvisual .icon {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  text-align: center;
}
#mainvisual .icon img {
  width: 60%;
}
#mainvisual .img {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  margin-top: 40px;
}

@media (width < 960px) {
  #mainvisual {
    padding-top: 140px;
    padding-bottom: 80px;
  }
  #mainvisual .inner {
    display: block;
  }
  #mainvisual .nav_btn {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  #mainvisual .img {
    margin-top: 56px;
  }
  #mainvisual .icon {
    margin-bottom: 40px;
  }
  #mainvisual .icon img {
    width: 80%;
    max-width: 400px;
  }
}
@media (width < 560px) {
  #mainvisual #catch {
    font-size: 24px;
  }
}





.nav_btn {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.nav_btn a {
  display: block;
  position: relative;
  padding: 24px 48px;
  background-color: #ffffff;
  border-radius: 100px;
  font-size: clamp(1.125rem, 0.225rem + 1.5vw, 1.5rem);
  font-weight: 700;
  color: #363958;
  text-align: center;
  box-shadow: 0px 0px 10px -5px #363958;
}
.nav_btn a::after {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  font-family: 'Font Awesome 7 Free';
  font-size: 24px;
  font-weight: 900;
}
.nav_btn .btn_dl a::after {
  content: '\f019';
}
.nav_btn .btn_reg a::after {
  content: '\f044';
}
.nav_btn .btn_contact a::after {
  content: '\f4ad';
}
.nav_btn .btn_dl a {
  border: 4px solid #eb7104;
  color: #eb7104;
}
.nav_btn .btn_reg a {
  background-color: #eb7104;
  border: 4px solid #eb7104;
  color: #ffffff;
}
.nav_btn .btn_contact a {
  background-color: #5a6093;
  color: #ffffff;
  transition: 0.3s;
}
.nav_btn .btn_contact a:hover,
.nav_btn .btn_contact a:active,
.nav_btn .btn_contact a:focus {
  background-color: #ffffff;
  color: #363958;
}
@media (width < 960px) {
  .nav_btn a {
    padding: 20px 48px;
  }
}




article {
  padding-top: 100px;
  padding-bottom: 120px;
}
article h2 {
  display: grid;
  place-content: center;
  margin-bottom: 80px;
  font-family: "M PLUS 1p", sans-serif;
  font-size: clamp(1.5rem, -0.75rem + 4.6875vw, 3rem);
  font-weight: 800;
  font-style: normal;
  line-height: 1.4em;
}
article .inner > h3,
section > h3 {
  display: grid;
  place-content: center;
  margin-top: 56px;
  margin-bottom: 40px;
  font-family: "M PLUS 1p", sans-serif;
  font-size: clamp(1.5rem, 0.3rem + 2vw, 2rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.4em;
}



main ::-webkit-scrollbar {
  width: 24px;
  height: 24px;
  border-radius: 24px;
}
main ::-webkit-scrollbar-thumb {
  background: #5a6093;
  border-radius: 24px;
  cursor: pointer;
}
main ::-webkit-scrollbar-track {
  background: #eeeeee;
  border-radius: 24px;
}



#problem {
  background: rgba(99, 109, 199, 0.2);
}
#problem h2 {
  color: #363958;
}
#problem ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
#problem .catch {
  margin-top: 80px;
  font-size: clamp(2rem, 1.668rem + 1.24vw, 2.5rem);
  font-weight: 700;
  line-height: 2em;
  letter-spacing: 0.1rem;
  text-align: center;
}
#problem .catch div {
  display: inline;
  border-bottom: 4px solid #5a6093;
}
#problem .catch span {
  display: inline-block;
  font-size: 120%;
  font-weight: 800;
  color: #636dc7;
}

@media (960px <= width) {
  #problem ul li {
    width: calc((100% - 80px) / 3);
  }
}
@media (width < 960px) {
  #problem ul li {
    width: calc((100% - 40px) / 2);
  }
}
@media (width < 768px) {
  #problem ul li {
    width: 100%;
  }
}



#point {
  background: linear-gradient(60deg,rgba(222, 223, 233, 0.4) 30%, rgba(222, 223, 233, 0.2) 30%, rgba(222, 223, 233, 0.2) 35%, rgba(222, 223, 233, 0.1) 35%, rgba(222, 223, 233, 0.1) 80%, rgba(222, 223, 233, 0.2) 80%);

}
#point h2 {
  font-weight: 800;
  letter-spacing: 0.1rem;
}
#point h2 span {
  color: #636dc7;
}
#point section {
  display: flex;
}
#point .txt {
  position: relative;
}
#point section h3 {
  margin-bottom: 40px;
  font-size: clamp(1.5rem, 0.835rem + 2.48vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4em;
  letter-spacing: 0.1rem;
}
#point section h3 span {
  color: #5a6093;
}
#point .num {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Fira Sans", sans-serif;
  font-size: clamp(1.5rem, -2.1rem + 6vw, 3rem);
  font-weight: 700;
  line-height: 1em;
  background-color: #636dc7;
  color: #ffffff;
}
#point .txt p + p {
  margin-top: 0.5em;
}
#point img[src$=".png"] {
  border: 1px solid #eeeeee;
  box-shadow: 0px 0px 15px -5px #cccccc;
}

@media (960px <= width) {
  #point section {
    margin-top: 120px;
    gap: 60px;
  }
  #point section:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  #point .img {
    width: 40%;
  }
  #point h2 span:nth-of-type(1) {
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 160%;
    color: #ffffff;
  }
  #point h2 span:nth-of-type(1)::before {
    position: absolute;
    top: 8%;
    left: 0%;
    content: '';
    width: 96px;
    height: 96px;
    background-color: #636dc7;
    border-radius: 100px;
    z-index: -1;
  }
  #point h2 span:nth-of-type(2) {
    padding-left: 4px;
    font-size: 130%;
    letter-spacing: 0;
  }
  #point .txt {
    width: calc(60% - 124px);
    padding: 24px 32px 32px;
    border-radius: 40px;
    background: rgba(99, 109, 199, 0.1);
  }
  #point section h3 {
    padding-left: 2em;
  }
  #point .num {
    padding: 0.4em 0.6em;
    border-right: 4px solid #ffffff;
    border-bottom: 4px solid #ffffff;
    border-radius: 40px 0 0;
  }
}
@media (width < 960px) {
  #point section {
    flex-direction: column;
    gap: 24px;
    margin-top: 80px;
  }
  #point .txt {
    width: 100%;
  }
  #point .num {
    padding: 0.8em 1em;
    border-radius: 10px;
  }
  #point section h3 {
    margin-bottom: 16px;
    padding-left: 3em;
  }
  #point .img {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  #point img[src$=".svg"] {
    width: 100%;
    max-width: 400px;
  }
}




#support {
  background-color: #636dc7;
  color: #ffffff;
}
#support .flex {
  display: flex;
  gap: 40px;
}
#support .flex div {
  flex: 1;
}
#support .txt p + p {
  margin-top: 0.5em;
}
#support .nav_btn {
  width: 80%;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
}
@media (width < 960px) {
  #support .flex {
    flex-direction: column;
  }
  #support .flex .img {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  #support .nav_btn {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    margin-top: 40px;
  }
  #support .nav_btn li {
    flex: 1;
  }
}
@media (width < 768px) {
  #support .nav_btn {
    flex-direction: column;
    gap: 24px;
  }
}



#scene {
  background: rgba(90, 96, 147, 0.05);
}
#scene section {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 20px;
/*
  box-shadow: 0px 0px 15px -5px #cccccc;
*/
}
#scene h3 {
  margin-bottom: 40px;
  font-family: "M PLUS 1p", sans-serif;
  font-size: clamp(1.5rem, 0.3rem + 2vw, 2rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.4em;
  color: #5a6093;
}
@media (width < 768px) {
  #scene section {
    grid-template-columns: 1fr;
  }
  #scene section .img {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}








#plan {
  background: rgba(99, 109, 199, 0.2);
}

#plan .box_plan {
  display: flex;
  gap: 40px;
}
#plan .box_plan dl {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0px 0px 15px -5px #aaaaaa;
}
#plan .box_plan dt {
  display: grid;
  place-content: center;
  padding: 24px;
  background-color: #363958;
  color: #ffffff;
  font-size: clamp(1.125rem, 0.225rem + 1.5vw, 1.5rem);
  font-weight: 700;
  border-radius: 24px 24px 0 0;
}
#plan .box_plan .price {
  display: grid;
  place-content: center;
  min-height: 100px;
  padding-left: 24px;
  padding-right: 24px;
}
#plan .box_plan .price span {
  font-size: clamp(1.5rem, -0.75rem + 4.6875vw, 3rem);
  font-weight: 800;
}
#plan .box_plan .nav_btn {
  padding: 0 24px 40px;
}
#plan .box_plan .spec {
  flex-grow: 1;
  padding: 32px 40px 40px;
  background: rgba(222, 223, 233, 0.3);
}
#plan .box_plan .spec li + li {
  margin-top: 0.5em;
}
#plan .box_plan .spec li {
  position: relative;
  padding-left: 24px;
}
#plan .box_plan .spec li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Font Awesome 7 Free';
  content: '\f00c';
  font-weight: 900;
}

#plan table {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: 0px 0px 15px -5px #aaaaaa;
}
#plan table th,
#plan table td {
  padding: 24px;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  vertical-align: middle;
}
#plan table th {
  text-align: left;
}
#plan table td {
  text-align: center;
}
#plan table tbody tr:nth-of-type(n+2) th,
#plan table tbody tr:nth-of-type(n+2) td {
  padding: 16px 24px;
}
#plan table thead th:first-of-type {
  border-top-left-radius: 20px;
}
#plan table thead th:last-of-type {
  border-top-right-radius: 20px;
}
#plan table tbody tr:last-of-type th {
  border-bottom-left-radius: 20px;
}
#plan table tbody tr:last-of-type td:last-of-type {
  border-bottom-right-radius: 20px;
}
#plan table i {
  font-size: 200%;
  color: #5a6093;
}
#plan table th span {
  display: grid;
  place-content: center;
}
#plan table thead th {
  background-color: #363958;
  color: #ffffff;
  font-weight: 700;
}
#plan table tbody th {
  background: rgba(222, 223, 233, 0.3);
  font-weight: 700;
}
#plan table td span {
  font-size: clamp(1.5rem, -0.75rem + 4.6875vw, 3rem);
  font-weight: 800;
}
#plan .box_flow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 40px;
}
#plan .box_flow dl {
  flex: 1;
  position: relative;
  margin-bottom: 24px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 0px 15px -5px #aaaaaa;
}
#plan .box_flow dl + dl::before {
  position: absolute;
  top: 50%;
  left: -32px;
  content: '';
  width: 16px;
  height: 16px;
  border-top: 4px dashed #5a6093;
  border-right: 4px dashed #5a6093;
  transform: translateY(-50%) rotate(45deg);
}
#plan .box_flow dl::after {
  display: grid;
  place-content: center;
  position: absolute;
  top: -40px;
  left: 50%;
  content: '';
  width: 80px;
  height: 80px;
  background-color: #636dc7;
  border-radius: 100px;
  color: #ffffff;
  font-family: "Fira Sans", sans-serif;
  font-size: 40px;
  font-weight: 700;
  transform: translateX(-50%);
  box-shadow: 0px 0px 15px -5px #cccccc;
}
#plan .box_flow dl:nth-of-type(1)::after {
  content: '1';
}
#plan .box_flow dl:nth-of-type(2)::after {
  content: '2';
}
#plan .box_flow dl:nth-of-type(3)::after {
  content: '3';
}
#plan .box_flow dl:nth-of-type(4)::after {
  content: '4';
}
#plan .box_flow dt {
  display: grid;
  place-content: center;
  padding-top: 64px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 24px;
  font-size: clamp(1.125rem, 0.225rem + 1.5vw, 1.5rem);
  font-weight: 700;
  color: #363958;
  line-height: 1.4em;
}
#plan .box_flow dd {
  padding-left: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
}

@media (960px <= width) {
  #plan table th:nth-of-type(1) {
    width: 20em;
  }
}
@media (width < 960px) {
  #plan .box_plan {
    flex-direction: column;
  }
  #plan .box_table {
    overflow-x: scroll;
  }
  #plan .box_table table {
    width: 1000px;
  }
  #plan .box_flow {
    grid-template-columns: 1fr;
    gap: 72px;
  }
  #plan .box_flow dl + dl::before {
    display: none;
  }
}
@media (width < 768px) {
  #plan .box_table table {
    width: 640px;
  }
}



.block_btn {
  background-color: #363958;
  color: #ffffff;
}
.block_btn .catch {
  display: grid;
  place-content: center;
  margin-bottom: 40px;
}
.block_btn .catch p {
  display: flex;
  align-items: center;
  font-size: clamp(1.5rem, -0.9rem + 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4em;
}
.block_btn .catch img {
  height: 40px;
}
.block_btn .nav_btn {
  display: flex;
  flex-direction: row;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.block_btn .nav_btn li {
  flex: 1;
}
.block_btn .nav_btn a {
  box-shadow: 0px 0px 15px -5px #333333;
}

@media (width < 960px) {
  .block_btn .catch p {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .block_btn .nav_btn {
    width: 100%;
  }
}
@media (width < 768px) {
  .block_btn .nav_btn {
    flex-direction: column;
  }
}




#company {
  background-color: #f9f9f9;
}
#company table {
  padding: 40px;
  background-color: #ffffff;
  border-radius: 20px;
}
#company table th,
#company table td {
  padding: 24px;
}
#company table th {

  font-weight: 700;
}
#company ul {
  list-style-type: disc;
  padding-left: 24px;
}
#company li + li {
  margin-top: 0.5em;
}
@media (768px <= width) {
  #company table tr + tr th,
  #company table tr + tr td {
    border-top: 1px solid #cccccc;
  }
  #company table th {
    width: 20%;
  }
}
@media (width < 768px) {
  #company table th,
  #company table td {
    display: block;
  }
  #company table th {
    background-color: #fcfcfc;
    border-top: 1px solid #cccccc;
  }
  #company table td {
    border-top: 1px dashed #cccccc;
  }
}



footer {
  padding: 24px 24px 40px;
  text-align: center;
}



#banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  transition: opacity 350ms ease;
}
#banner_close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -8px;
  font-weight: 900;
  cursor: pointer;
  background: #ffffff;
  color: #575757;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
}

@media (768px <= width) {
  #banner_sp {
    display: none;
  }
}
@media (width < 768px) {
  #banner {
    display: none;
  }
  #banner_sp {
    position: fixed;
    left: 0;
    bottom: 0;
    width: calc(100% - 48px);
    padding: 24px;
    background: rgba(106, 117, 214, 0.5);
    opacity: 0;
    transition: opacity 350ms ease;
  }
  #banner_sp .btn a {
    display: grid;
    place-content: center;
    padding: 16px 24px;
    background-color: #363958;
    border-color: #363958;
    border-radius: 100px;
    color: #ffffff;
    font-weight: 900;
    transition: 0.5s;
  }
  #banner_sp .btn a:hover,
  #banner_sp .btn a:active,
  #banner_sp .btn a:focus {
    background-color: #ffffff;
    color: #363958;
  }
  #banner_close {
    top: -24px;
    right: 8px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}

/* モーダルの基本スタイル */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

/* モーダル内の画像 */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

/* 閉じるボタン */
.modal_close {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* ズームアイコン付き画像 */
.image-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.image-wrapper::after {
  content: "\f00e";
  font-family: 'Font Awesome 7 Free';
  font-size: 24px;
  font-weight: 900;
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0,0,0,0.6);
  color: white;
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
