@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
@import url("https://fonts.googleapis.com/css2?family=Lexend+Zetta:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@300;400;500;600;700&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

:root {
  --black: #444c55;
  --blue: #155ea9;
  --vivit-blue: #3c9cff;
  --dark-blue: #2468ae;
  --light-blue: #e0ecf8;
  --yellow: #fff600;
  --en: Arial, sans-serif;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: #444c55;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  display: block;
}

a:hover {
  text-decoration: none;
  opacity: 0.6;
}

a:active,
a:hover {
  outline-width: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

.wrapper {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}

/***************************

layout/_header.scss

***************************/
.header {
  position: fixed;
  width: 100vw;
  padding: 3rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
  z-index: 100;
}
@media screen and (max-width: 834px) {
  .header {
    padding: 2vw;
  }
}
.header-logo {
  position: relative;
  z-index: 100;
  max-width: 279px;
}
@media screen and (max-width: 834px) {
  .header-logo {
    max-width: 52vw;
  }
}

@media screen and (min-width: 1101px) {
  .gnav-list {
    gap: 1rem 2em;
  }
}
@media screen and (min-width: 835px) {
  .gnav-branch_flex {
    display: none;
  }
  .gnav-sub_list {
    display: none;
  }
  .toggle {
    display: none;
  }
  .gnav-list .arrow {
    display: none;
  }
  .gnav-list {
    font-size: 1.5rem;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1rem 1em;
  }
}
@media screen and (min-width: 835px) and (max-width: 450px) {
  .gnav-list {
    font-size: 1.4rem;
  }
}
/* Hamburger menu */
@media screen and (max-width: 834px) {
  .toggle.active::before {
    content: "CLOSE";
  }
  .toggle {
    position: relative;
    max-width: 175px;
    width: 24vw;
    height: 10.67vw;
    border-width: 0;
    background-color: #155ea9;
    border-radius: 100vmax;
    -webkit-border-radius: 100vmax;
    font-family: Arial, sans-serif;
    font-size: 3.2vw;
    color: #fff;
    z-index: 100;
  }
  .toggle::before {
    content: "MENU";
  }
  .gnav {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100svh;
    background: url(../img/common/humnav_bg.png) no-repeat center center/cover;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-out;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .gnav.active {
    position: fixed;
    opacity: 1;
    visibility: visible;
    pointer-events: fill;
  }
  .gnav-inner {
    width: 90%;
    margin: 0 auto;
    padding: 20vw 0 17vw;
  }
  .gnav-branch_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 4px;
  }
  .gnav-branch_dl {
    width: calc(50% - 2px);
    padding: 5vw 2.4vw;
    column-gap: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2.6vw;
  }
  .gnav-list {
    margin-top: 4vw;
  }
  .gnav-list-item {
    border-bottom: 1px dashed #c0c5ca;
  }
  .gnav-list .gnav-link {
    padding: 1.4em 2.1vw 1.4em 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 834px) and (max-width: 834px) {
  .gnav-list .gnav-link {
    font-size: 4.27vw;
  }
}
@media screen and (max-width: 834px) {
  .gnav-list .gnav-link:hover .arrow {
    transform: translateX(3px);
  }
  .gnav-list .arrow {
    color: var(--blue);
    transition: all 0.3s linear;
  }
  .gnav-sub_list {
    margin-top: 10vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3em;
    font-weight: 300;
    font-size: 2rem;
  }
}
@media screen and (max-width: 834px) and (max-width: 834px) {
  .gnav-sub_list {
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 834px) {
  .gnav-sub_item:not(:first-of-type) {
    position: relative;
  }
  .gnav-sub_item:not(:first-of-type)::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    left: -1.5em;
    background-color: #444c55;
  }
}
.gnav-list-item:has(.gnav-mega) {
  position: relative;
}
@media screen and (max-width: 834px) {
  .gnav-list-item:has(.gnav-mega) .gnav-link:not(.gnav-mega__link):hover .arrow::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .gnav-list-item:has(.gnav-mega) .gnav-link:not(.gnav-mega__link) .arrow {
    position: relative;
    display: block;
    width: 0.8em;
    aspect-ratio: 1;
  }
  .gnav-list-item:has(.gnav-mega) .gnav-link:not(.gnav-mega__link) .arrow::before, .gnav-list-item:has(.gnav-mega) .gnav-link:not(.gnav-mega__link) .arrow::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-color: #155ea9;
  }
  .gnav-list-item:has(.gnav-mega) .gnav-link:not(.gnav-mega__link) .arrow::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

.gnav-mega {
  position: absolute;
  min-width: 30rem;
  top: calc(100% + 5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background-color: #fff;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 834px) {
  .gnav-mega {
    position: relative;
    min-width: fit-content;
    top: auto;
    left: auto;
    transform: translateX(0);
    z-index: 1;
    background-color: transparent;
    height: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
  }
}
.gnav-mega.active {
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 834px) {
  .gnav-mega.active {
    padding-bottom: 1.4em;
    height: auto;
  }
}
.gnav-mega__ttl {
  padding: 2.5rem 3rem;
  font-size: 1.8rem;
  font-weight: var(--fwsb);
  color: #155ea9;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 834px) {
  .gnav-mega__ttl {
    display: none;
  }
}
.gnav-mega__dd {
  padding: 3rem 3rem 1rem 3rem;
}
@media screen and (max-width: 834px) {
  .gnav-mega__dd {
    padding: 0;
  }
}
.gnav-mega__link {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: var(--fwm);
  color: #444c55;
}
@media screen and (max-width: 834px) {
  .gnav-mega__link {
    position: relative;
    margin-bottom: 0;
    padding: 0.6em 1em 0.6em 1em !important;
    font-size: 3.4vw !important;
    font-weight: normal !important;
  }
  .gnav-mega__link::before {
    position: absolute;
    content: "";
    width: 0.7em;
    aspect-ratio: 1;
    top: calc(50% - 0.45em);
    left: 0;
    z-index: 1;
    background-color: #155ea9;
    border-radius: 100vmax;
    -webkit-border-radius: 100vmax;
  }
}
.gnav-mega__link .arrow {
  display: block;
}
@media screen and (max-width: 834px) {
  .gnav-mega__link .arrow {
    display: none;
  }
}
.gnav-mega__link .material-symbols-outlined {
  font-size: 1.4rem;
  color: #155ea9;
}

/***************************

layout/_footer.scss

***************************/
.top-footer_bg {
  background: url(../img/top/top-footer_bg.webp) no-repeat top center/cover;
}

footer {
  margin-top: 13rem;
  padding: 10rem 0 13rem;
  background-color: #fff;
}
@media screen and (max-width: 834px) {
  footer {
    margin-top: 5rem;
    padding: 5rem 0;
  }
}
footer.top-footer {
  margin-left: auto;
  margin-right: auto;
  width: 95%;
  border-radius: 20px 20px 0 0;
  -webkit-border-radius: 20px 20px 0 0;
}

.footer-top_flex {
  padding-bottom: 6rem;
  border-bottom: 1px solid #efefef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 1316px) {
  .footer-top_flex {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 834px) {
  .footer-top_flex {
    padding-bottom: 3rem;
  }
  .footer-top_flex .f36 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 600px) {
  .footer-top_flex .f28 {
    font-size: 5vw;
  }
  .footer-top_flex .f36 {
    font-size: 6vw;
  }
}

.footer-top_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .footer-top_item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.footer-top_item:not(:first-of-type) {
  margin-top: 10px;
}
@media screen and (max-width: 834px) {
  .footer-top_item:not(:first-of-type) {
    margin-top: 20px;
  }
}
.footer-top_item .bc-light-blue {
  width: 140px;
  line-height: 40px;
  text-align: center;
  font-size: 1.4rem;
}
.footer-top_item .f30 {
  width: 244px;
}
@media screen and (max-width: 834px) {
  .footer-top_item .f30 {
    font-size: 3rem;
  }
}
.footer-top_item .c-btn01 {
  max-width: 250px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 60px;
}

.footer-logo {
  max-width: 441px;
  margin: 6rem auto 0;
}
@media screen and (max-width: 834px) {
  .footer-logo {
    margin-top: 3rem;
  }
}

.footer-btm_flex {
  margin-top: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .footer-btm_flex {
    margin-top: 3rem;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.footer-btm_box {
  max-width: 530px;
  width: 50%;
}
@media screen and (max-width: 834px) {
  .footer-btm_box {
    max-width: 100%;
    width: 100%;
  }
}
.footer-btm_box h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-btm_box address {
  display: block;
}
.footer-btm_box .f14 {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
}
@media screen and (max-width: 834px) {
  .footer-btm_box .f14 {
    margin-top: 1rem;
  }
}
.footer-btm_box .f14 span {
  display: inline-block;
  padding: 0 15px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  line-height: 37px;
}
.footer-btm_box .c-table_wrap {
  margin-top: 2rem;
}

.sitemap {
  margin-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 834px) {
  .sitemap {
    margin-top: 3rem;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .sitemap {
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .sitemap {
    display: none;
  }
}
.sitemap-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem 9rem;
}
@media screen and (max-width: 1150px) {
  .sitemap-list {
    gap: 3rem 4rem;
  }
}
@media screen and (max-width: 834px) {
  .sitemap-list {
    gap: 2rem 4rem;
  }
}
@media screen and (max-width: 740px) {
  .sitemap-list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.sitemap-list li {
  position: relative;
  min-width: 13em;
  font-size: 1.3rem;
}
.sitemap-list li:not(:first-of-type) {
  margin-top: 3rem;
}
@media screen and (max-width: 834px) {
  .sitemap-list li:not(:first-of-type) {
    margin-top: 2rem;
  }
}
.sitemap-list li:has(.sitemap-dtl) {
  position: relative;
}
.sitemap-link {
  font-weight: 500;
  color: #2468ae;
  line-height: 1.3;
}
.sitemap-dtl {
  margin-top: 1.5rem;
}
.sitemap-dtl li:not(:first-of-type) {
  margin-top: 1rem;
}
.sitemap-dtl__link {
  position: relative;
  padding-left: 1.1em;
  font-size: 1.2rem;
}
.sitemap-dtl__link::before {
  position: absolute;
  content: "";
  width: 0.5rem;
  aspect-ratio: 1;
  top: 0.3rem;
  left: 0;
  z-index: 1;
  background-color: #2468ae;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}

.copy {
  display: block;
  width: fit-content;
  margin: 8rem 0 0 auto;
}
@media screen and (max-width: 834px) {
  .copy {
    margin-top: 5rem;
  }
}

/***************************

object/component/_heading.scss

***************************/
.c-top_head01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
@media screen and (max-width: 450px) {
  .c-top_head01 {
    gap: 1rem;
  }
}

.c-hg_ja {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .c-hg_ja {
    font-size: 1.4rem;
  }
}
.c-hg_ja {
  font-weight: 600;
  color: var(--blue);
}
@media screen and (max-width: 834px) {
  .c-hg_ja {
    margin-bottom: 1rem;
  }
}
.c-hg_ttl {
  font-size: 4.2rem;
}
@media screen and (max-width: 834px) {
  .c-hg_ttl {
    font-size: 5.05vw;
  }
}
@media screen and (max-width: 450px) {
  .c-hg_ttl {
    font-size: 6.2vw;
  }
}
.c-hg_ttl {
  font-weight: 500;
  line-height: 1.5;
}
.c-hg_ttl small {
  margin-left: 15px;
  font-weight: 500;
}
.c-hg_txt01 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .c-hg_txt01 {
    font-size: 1.4rem;
  }
}
.c-hg_txt01 {
  line-height: 1.8;
}
@media screen and (max-width: 834px) {
  .c-hg_txt01 {
    margin-top: 1rem;
  }
}
.c-hg_txt02 {
  margin-top: 5rem;
  font-size: 2.4rem;
}
@media screen and (max-width: 834px) {
  .c-hg_txt02 {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 450px) {
  .c-hg_txt02 {
    font-size: 4.5vw;
  }
}
.c-hg_txt02 {
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .c-hg_txt02 {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .c-hg_txt02 {
    margin-top: 2rem;
  }
}

/***************************

object/component/_box.scss

***************************/
.inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.main {
  padding-top: 10rem;
}
@media screen and (max-width: 834px) {
  .main {
    padding-top: 14.6vw;
  }
}

.top-sticky_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: auto;
}
@media screen and (max-width: 1100px) {
  .top-sticky_flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.c-styicky_box {
  position: sticky;
  width: 50vw;
  height: 100vh;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1100px) {
  .c-styicky_box {
    position: relative;
    width: 100%;
    height: auto;
  }
}
.c-styicky_box-hidden {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .c-styicky_box-hidden {
    height: auto;
  }
}
.c-styicky_box img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  object-fit: cover;
  object-position: center right;
  height: 100%;
  width: auto;
  min-width: auto;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .c-styicky_box img {
    position: relative;
    width: 100vw;
    height: auto;
    top: auto;
    right: auto;
    transform: translateY(0);
  }
}

.top-sticky_cont {
  padding: 14rem 0 16rem 6vw;
  width: 50vw;
}
@media screen and (min-width: 1680px) {
  .top-sticky_cont {
    padding-left: 10rem;
  }
}
@media screen and (max-width: 1100px) {
  .top-sticky_cont {
    padding: 5rem 0;
  }
  .top-sticky_cont-inner {
    margin: 0 auto;
    width: 90%;
  }
  .top-sticky_cont {
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .top-sticky_cont {
    padding-top: 3rem;
  }
}

.c-table {
  width: 528px;
  font-size: 1.4rem;
}
.c-table_wrap {
  border: 1px solid #eee;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .c-table_wrap {
    max-width: 528px;
  }
}
.c-table th, .c-table td {
  border: 1px solid #eee;
  line-height: 60px;
  text-align: center;
  font-weight: 400;
}
.c-table th:first-of-type, .c-table td:first-of-type {
  border-left-width: 0;
}
.c-table th:last-of-type, .c-table td:last-of-type {
  border-right-width: 0;
}
.c-table th:first-of-type {
  width: 120px;
}
.c-table th:not(:first-of-type) {
  width: 60px;
}
.c-table td {
  font-size: 1.8rem;
}
@media screen and (max-width: 450px) {
  .c-table td {
    font-size: 1.6rem;
  }
}
.c-table td div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5em;
  font-size: 1.4rem;
}
.c-table td span {
  display: block;
  line-height: 1;
}
.c-table tr:not(:first-of-type) td:first-of-type {
  border-left-width: 1px;
}
.c-table tr:first-of-type th, .c-table tr:first-of-type td {
  border-top-width: 0;
}
.c-table tr:last-of-type th, .c-table tr:last-of-type td {
  border-bottom-width: 0;
}
.c-table_cap {
  margin-top: 1rem;
  line-height: 1.6;
}

.scroll-hint-icon {
  z-index: 5;
}

.radius5 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.radius10 {
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.radius20 {
  border-radius: 20px;
  -webkit-border-radius: 20px;
}

.radius100vamx {
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}

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

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

.tab {
  display: none;
}
@media screen and (max-width: 834px) {
  .tab {
    display: block;
  }
}

/* fadeシリーズ */
/*----------------------------
fade_up ｜下から上へ出現
----------------------------*/
.fade_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.fade_up.on {
  transform: translateY(0);
  opacity: 1;
}

@keyframes fade-up-anime {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*----------------------------
fade_down ｜上から下へ出現
----------------------------*/
.fade_down {
  transition: 0.8s ease-in-out;
  transform: translateY(-30px);
  opacity: 0;
}

.fade_down.on {
  transform: translateY(0);
  opacity: 1;
}

/*----------------------------
fade_left ｜左から出現
----------------------------*/
.fade_left {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.fade_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*----------------------------
fade_right ｜右から出現
----------------------------*/
.fade_right {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.fade_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*////////////////////////

fade

////////////////////////*/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.location-logo .fadeUp {
  animation-duration: 1s;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp.fadeUp50 {
  animation-name: fadeUpAnime50;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime50 {
  from {
    opacity: 0;
    transform: translateY(100px) translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}
/***************************

object/component/_button.scss

***************************/
.c-btn01 {
  width: 100%;
  line-height: 13.4vw;
  background-color: #3c9cff;
  color: #fff;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  font-weight: 600;
  text-align: center;
  font-size: 2.4rem;
}
@media screen and (max-width: 834px) {
  .c-btn01 {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 450px) {
  .c-btn01 {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 450px) {
  .c-btn01 {
    font-size: 3.2vw;
  }
}

.c-btn_arrow {
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  background-color: #155ea9;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  transition: all 0.3s linear;
}
.c-btn_arrow .material-symbols-outlined {
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .c-btn_arrow .material-symbols-outlined {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 450px) {
  .c-btn_arrow {
    width: 30px;
  }
}

.c-btn02 {
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
  font-weight: 500;
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .c-btn02 {
    font-size: 1.4rem;
  }
}
.c-btn02:hover {
  opacity: 1;
}
.c-btn02:hover .c-btn_arrow {
  transform: translateX(5px);
}

.c-btn03 {
  position: relative;
  max-width: 530px;
  width: 100%;
  margin: 9rem auto 0;
  padding: 35px 7rem;
  text-align: center;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 500;
  background-color: #155ea9;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
.c-btn03:hover {
  opacity: 1;
}
.c-btn03:hover .c-btn_arrow {
  transform: translate(5px, -50%);
}
.c-btn03 .c-btn_arrow {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  z-index: 1;
  color: #155ea9;
  background-color: #fff;
}
@media screen and (max-width: 834px) {
  .c-btn03 {
    margin-top: 6rem;
    padding: 2.5rem 6.5rem;
  }
  .c-btn03 .c-btn_arrow {
    right: 20px;
  }
}
@media screen and (max-width: 600px) {
  .c-btn03 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 450px) {
  .c-btn03 {
    margin-top: 3rem;
    padding: 2.5rem 4.5rem;
    font-size: 1.6rem;
    line-height: 1.3;
  }
  .c-btn03 .c-btn_arrow {
    right: 15px;
    width: 30px;
  }
}

/***************************

object/utility/_background.scss

***************************/
.bc-light-blue {
  background-color: #e0ecf8;
}

.bc-yellow {
  background-color: var(--yellow);
}

.bc-white {
  background-color: #fff;
}

.bc-gray {
  background-color: #f5f5f5;
}

.bc-vivit-blue {
  background-color: var(--vivit-blue);
}

.bc-blue {
  background-color: var(--blue);
}

/***************************

object/utility/_link.scss

***************************/
.top-insta_link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 102px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
}

.top-insta_ico {
  width: 100%;
}
.top-insta_ico img {
  width: 37px;
  height: auto;
}

/***************************

object/utility/_text.scss

***************************/
.c-txt {
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .c-txt {
    font-size: 1.4rem;
  }
}
.c-txt {
  line-height: 1.8;
}

.c-circle_txt {
  position: relative;
  padding-left: 3rem;
}
.c-circle_txt::before {
  position: absolute;
  content: "";
  width: 14px;
  aspect-ratio: 1/1;
  top: 0.1em;
  left: 0;
  background-color: var(--vivit-blue);
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: 700;
}

.fwsb {
  font-weight: 600;
}

.fwn {
  font-weight: 400;
}

.fwm {
  font-weight: 500;
}

.f10 {
  font-size: 1rem;
}

.f12 {
  font-size: 1.2rem;
}

.f13 {
  font-size: 1.3rem;
}

.f14 {
  font-size: 1.4rem;
}

.f15 {
  font-size: 1.5rem;
}
@media screen and (max-width: 450px) {
  .f15 {
    font-size: 1.4rem;
  }
}

.f18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 450px) {
  .f18 {
    font-size: 1.6rem;
  }
}

.f21 {
  font-size: 2.1rem;
}

.f24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 834px) {
  .f24 {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 450px) {
  .f24 {
    font-size: 4.5vw;
  }
}

.f28 {
  font-size: 2.8rem;
}

.f30 {
  font-size: 3rem;
}
@media screen and (max-width: 834px) {
  .f30 {
    font-size: 4vw;
  }
}

.f32 {
  font-size: 3.2rem;
}
@media screen and (max-width: 834px) {
  .f32 {
    font-size: 4.27vw;
  }
}

.f36 {
  font-size: 3.6rem;
}
@media screen and (max-width: 834px) {
  .f36 {
    font-size: 4vw;
  }
}

.f38 {
  font-size: 3.8rem;
}
@media screen and (max-width: 834px) {
  .f38 {
    font-size: 4.56vw;
  }
}

.f42 {
  font-size: 4.2rem;
}
@media screen and (max-width: 834px) {
  .f42 {
    font-size: 5.05vw;
  }
}
@media screen and (max-width: 450px) {
  .f42 {
    font-size: 6.2vw;
  }
}

.f62 {
  font-size: 6.2rem;
}

.f100 {
  font-size: 10rem;
}
@media screen and (max-width: 834px) {
  .f100 {
    font-size: 12vw;
  }
}

.fc-blue {
  color: var(--blue);
}

.fc-gray {
  color: #1f1f1f;
}

.fc-white {
  color: #fff;
}

.fc-yellow {
  color: var(--yellow);
}

.fc-vivit-blue {
  color: var(--vivit-blue);
}

.fc-black {
  color: #000;
}

.fc-dark-blue {
  color: var(--dark-blue);
}

.lh-1_1 {
  line-height: 1.1;
}

.lh-1_2 {
  line-height: 1.2;
}

.lh-1_25 {
  line-height: 1.25;
}

.lh-1_4 {
  line-height: 1.4;
}

.lh-1_3 {
  line-height: 1.3;
}

.lh-1_5 {
  line-height: 1.5;
}

.lh-1_6 {
  line-height: 1.6;
}

.lh-1_7 {
  line-height: 1.7;
}

.lh-1_8 {
  line-height: 1.8;
}

.lh-2_5 {
  line-height: 2.5;
}
@media screen and (max-width: 450px) {
  .lh-2_5 {
    line-height: 1.8;
  }
}

.lh-2_7 {
  line-height: 2.7;
}
@media screen and (max-width: 450px) {
  .lh-2_7 {
    line-height: 2;
  }
}

.w-50em {
  display: inline-block;
  width: 0.5em;
}

.wm-rl {
  display: inline-block;
  writing-mode: vertical-rl;
  direction: rtl;
}

.check {
  color: #fff;
  background-color: var(--vivit-blue);
  aspect-ratio: 1/1;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.check .material-symbols-outlined {
  font-size: 23px;
}

/***************************

object/utility/_font.scss

***************************/
.en {
  font-family: Arial, sans-serif;
}