@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
.blog-wrapper {
  display: flex;
  gap: 40rem;
  max-width: 1200rem;
  margin: 0 auto;
  padding: 40rem 20rem;
  padding-bottom: 100rem;
}
@media screen and (max-width: 1024px) {
  .blog-wrapper {
    flex-direction: column;
    gap: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .blog-wrapper {
    padding: 20rem 15rem;
  }
}

#blog-content {
  flex: 1;
  min-width: 0;
}
#blog-content .blog-content__inner {
  padding: 0;
}
#blog-content .article-list {
  display: flex;
  flex-direction: column;
  gap: 24rem;
}
#blog-content .article-item {
  background: #fff;
  border-radius: 12rem;
  box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
#blog-content .article-item:hover {
  box-shadow: 0 4rem 16rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2rem);
}
#blog-content .article-item__link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 30rem;
}
#blog-content .article-item__meta {
  display: flex;
  align-items: center;
  gap: 16rem;
  margin-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  #blog-content .article-item__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8rem;
  }
}
#blog-content .article-item__date {
  display: block;
  font-size: 14rem;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  #blog-content .article-item__date {
    font-size: 20rem;
  }
}
#blog-content .article-item__categories {
  display: flex;
  gap: 8rem;
}
#blog-content .article-item__category {
  display: inline-block;
  padding: 4rem 12rem;
  background: #f5f5f5;
  border-radius: 12rem;
  font-size: 12rem;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  #blog-content .article-item__category {
    font-size: 20rem;
    padding: 6rem 16rem;
  }
}
#blog-content .article-item__title {
  font-size: 20rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12rem;
  color: #333;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  #blog-content .article-item__title {
    font-size: 24rem;
  }
}
#blog-content .article-item__excerpt {
  font-size: 14rem;
  line-height: 1.6;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  #blog-content .article-item__excerpt {
    font-size: 20rem;
  }
}
#blog-content .pagination {
  margin-top: 60rem;
}
#blog-content .pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #blog-content .pagination__list {
    gap: 4rem;
  }
}
#blog-content .pagination__item--dots {
  pointer-events: none;
}
#blog-content .pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40rem;
  height: 40rem;
  padding: 0 12rem;
  border: 1rem solid #ddd;
  border-radius: 4rem;
  text-decoration: none;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14rem;
  transition: all 0.3s ease;
}
#blog-content .pagination__link:hover:not(#blog-content .pagination__link--disabled):not(#blog-content .pagination__link--current) {
  background-color: #f5f5f5;
  border-color: #bbb;
}
#blog-content .pagination__link--current {
  background-color: #007cba;
  border-color: #007cba;
  color: #fff;
  font-weight: 600;
}
#blog-content .pagination__link--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  #blog-content .pagination__link {
    min-width: 36rem;
    height: 36rem;
    font-size: 13rem;
  }
}
#blog-content .pagination__arrow {
  font-size: 16rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #blog-content .pagination__arrow {
    font-size: 14rem;
  }
}
@media screen and (max-width: 480px) {
  #blog-content .pagination__text {
    display: none;
  }
}
#blog-content .pagination__dots {
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14rem;
  padding: 0 8rem;
}
#blog-content .pagination__item--prev #blog-content .pagination__link {
  gap: 4rem;
}
#blog-content .pagination__item--next #blog-content .pagination__link {
  gap: 4rem;
}

#blog-sidebar {
  width: 300rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  #blog-sidebar {
    width: 100%;
  }
}
#blog-sidebar .sidebar-inner {
  padding: 0;
}
#blog-sidebar .sidebar-widget {
  background: #fff;
  border-radius: 8rem;
  padding: 24rem;
  margin-bottom: 30rem;
  box-shadow: 0 2rem 12rem rgba(0, 0, 0, 0.06);
}
#blog-sidebar .sidebar-widget__title {
  font-size: 18rem;
  font-weight: 600;
  margin-bottom: 20rem;
  padding-bottom: 12rem;
  border-bottom: 2rem solid #f0f0f0;
  color: #333;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  #blog-sidebar .sidebar-widget__title {
    font-size: 24rem;
  }
}
#blog-sidebar .category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#blog-sidebar .category-list__item {
  border-bottom: 1rem solid #f5f5f5;
}
#blog-sidebar .category-list__item:last-child {
  border-bottom: none;
}
#blog-sidebar .category-list__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12rem 0;
  text-decoration: none;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  transition: color 0.3s ease;
}
#blog-sidebar .category-list__link:hover {
  color: #007cba;
}
#blog-sidebar .category-list__name {
  font-size: 14rem;
}
@media screen and (max-width: 768px) {
  #blog-sidebar .category-list__name {
    font-size: 20rem;
  }
}
#blog-sidebar .category-list__count {
  font-size: 12rem;
  color: #666;
}
@media screen and (max-width: 768px) {
  #blog-sidebar .category-list__count {
    font-size: 20rem;
  }
}
#blog-sidebar .recent-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}
#blog-sidebar .recent-posts__item {
  padding-bottom: 16rem;
  margin-bottom: 16rem;
  border-bottom: 1rem solid #f5f5f5;
}
#blog-sidebar .recent-posts__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
#blog-sidebar .recent-posts__link {
  display: flex;
  gap: 12rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
#blog-sidebar .recent-posts__link:hover {
  opacity: 0.8;
}
#blog-sidebar .recent-posts__image {
  width: 60rem;
  height: 60rem;
  flex-shrink: 0;
  border-radius: 4rem;
  overflow: hidden;
}
#blog-sidebar .recent-posts__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#blog-sidebar .recent-posts__content {
  flex: 1;
  min-width: 0;
}
#blog-sidebar .recent-posts__date {
  display: block;
  font-size: 12rem;
  color: #666;
  margin-bottom: 4rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  #blog-sidebar .recent-posts__date {
    font-size: 20rem;
  }
}
#blog-sidebar .recent-posts__title {
  font-size: 14rem;
  line-height: 1.4;
  margin: 0;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #blog-sidebar .recent-posts__title {
    font-size: 20rem;
  }
}

.single-post {
  background: #fff;
  border-radius: 8rem;
  padding: 40rem;
  box-shadow: 0 2rem 12rem rgba(0, 0, 0, 0.06);
  margin-bottom: 40rem;
}
@media screen and (max-width: 768px) {
  .single-post {
    padding: 20rem;
    margin-bottom: 20rem;
  }
}
.single-post__header {
  margin-bottom: 40rem;
  padding-bottom: 30rem;
  border-bottom: 1rem solid #f0f0f0;
}
@media screen and (max-width: 768px) {
  .single-post__header {
    margin-bottom: 20rem;
    padding-bottom: 20rem;
  }
}
.single-post__meta {
  display: flex;
  align-items: center;
  gap: 20rem;
  margin-bottom: 20rem;
}
@media screen and (max-width: 768px) {
  .single-post__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10rem;
  }
}
.single-post__date {
  font-size: 14rem;
  color: #666;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .single-post__date {
    font-size: 20rem;
  }
}
.single-post__categories {
  display: flex;
  gap: 8rem;
}
.single-post__category {
  display: inline-block;
  padding: 4rem 12rem;
  background: #f5f5f5;
  border-radius: 12rem;
  font-size: 12rem;
  color: #333;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .single-post__category {
    font-size: 20rem;
    padding: 6rem 16rem;
  }
}
.single-post__category:hover {
  background: #e0e0e0;
}
.single-post__title {
  font-size: 28rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  margin: 0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .single-post__title {
    font-size: 32rem;
  }
}
.single-post__featured-image {
  margin-top: 30rem;
  border-radius: 8rem;
  overflow: hidden;
}
.single-post__featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.single-post__content {
  line-height: 1.8;
  color: #333;
}
.single-post__content .page-links {
  margin: 30rem 0;
  text-align: center;
}
.single-post__content .page-links-title {
  margin-right: 10rem;
  font-weight: 600;
}
.single-post__content .page-links a, .single-post__content .page-links span {
  display: inline-block;
  padding: 8rem 12rem;
  margin: 0 4rem;
  border: 1rem solid #ddd;
  border-radius: 4rem;
  text-decoration: none;
  color: #333;
  font-size: 14rem;
}
.single-post__content .page-links a:hover, .single-post__content .page-links span:hover {
  background: #f5f5f5;
}
.single-post__content .page-links .current {
  background: #007cba;
  border-color: #007cba;
  color: #fff;
}
.single-post__footer {
  margin-top: 40rem;
  padding-top: 30rem;
  border-top: 1rem solid #f0f0f0;
}
@media screen and (max-width: 768px) {
  .single-post__footer {
    margin-top: 20rem;
    padding-top: 20rem;
  }
}
.single-post__tags {
  margin-bottom: 30rem;
}
.single-post__tags-title {
  font-size: 16rem;
  font-weight: 600;
  margin-bottom: 12rem;
  color: #333;
  font-family: "Noto Serif JP", serif;
}
.single-post__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
}
.single-post__tag {
  display: inline-block;
  padding: 6rem 12rem;
  background: #f8f9fa;
  border: 1rem solid #e9ecef;
  border-radius: 16rem;
  font-size: 12rem;
  color: #495057;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.3s ease;
}
.single-post__tag:hover {
  background: #e9ecef;
  border-color: #dee2e6;
}
.single-post__share-title {
  font-size: 16rem;
  font-weight: 600;
  margin-bottom: 12rem;
  color: #333;
  font-family: "Noto Serif JP", serif;
}
.single-post__share-buttons {
  display: flex;
  gap: 12rem;
}
@media screen and (max-width: 480px) {
  .single-post__share-buttons {
    flex-direction: column;
  }
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10rem 20rem;
  border-radius: 4rem;
  text-decoration: none;
  color: #fff;
  font-size: 14rem;
  font-family: "Noto Sans JP", sans-serif;
  transition: opacity 0.3s ease;
}
.share-btn:hover {
  opacity: 0.8;
}
.share-btn--twitter {
  background: #1da1f2;
}
.share-btn--facebook {
  background: #1877f2;
}
.share-btn--line {
  background: #00b900;
}

.wp-content h1, .wp-content h2, .wp-content h3, .wp-content h4, .wp-content h5, .wp-content h6 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.4;
  margin: 30rem 0 20rem 0;
  color: #333;
}
.wp-content h1:first-child, .wp-content h2:first-child, .wp-content h3:first-child, .wp-content h4:first-child, .wp-content h5:first-child, .wp-content h6:first-child {
  margin-top: 0;
}
.wp-content h1 {
  font-size: 28rem;
}
@media screen and (max-width: 768px) {
  .wp-content h1 {
    font-size: 28rem;
  }
}
.wp-content h2 {
  font-size: 24rem;
  padding-bottom: 10rem;
  border-bottom: 2rem solid #f0f0f0;
}
@media screen and (max-width: 768px) {
  .wp-content h2 {
    font-size: 26rem;
  }
}
.wp-content h3 {
  font-size: 20rem;
}
@media screen and (max-width: 768px) {
  .wp-content h3 {
    font-size: 24rem;
  }
}
.wp-content h4 {
  font-size: 18rem;
}
@media screen and (max-width: 768px) {
  .wp-content h4 {
    font-size: 22rem;
  }
}
.wp-content h5 {
  font-size: 16rem;
}
@media screen and (max-width: 768px) {
  .wp-content h5 {
    font-size: 20rem;
  }
}
.wp-content h6 {
  font-size: 14rem;
}
@media screen and (max-width: 768px) {
  .wp-content h6 {
    font-size: 20rem;
  }
}
.wp-content p {
  margin: 0 0 20rem 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .wp-content p {
    font-size: 20rem;
  }
}
.wp-content a {
  color: #007cba;
  text-decoration: underline;
}
.wp-content a:hover {
  color: #005a87;
}
.wp-content strong, .wp-content b {
  font-weight: 600;
}
.wp-content em, .wp-content i {
  font-style: italic;
}
.wp-content blockquote {
  margin: 30rem 0;
  padding: 20rem 30rem;
  background: #f8f9fa;
  border-left: 4rem solid #007cba;
  border-radius: 0 4rem 4rem 0;
}
.wp-content blockquote p {
  margin: 0 0 10rem 0;
  font-style: italic;
  color: #495057;
}
.wp-content blockquote p:last-child {
  margin-bottom: 0;
}
.wp-content blockquote cite {
  display: block;
  margin-top: 10rem;
  font-size: 14rem;
  color: #6c757d;
  font-style: normal;
}
.wp-content blockquote cite:before {
  content: "— ";
}
.wp-content ul, .wp-content ol {
  margin: 20rem 0;
  padding-left: 30rem;
  font-family: "Noto Sans JP", sans-serif;
}
.wp-content ul li, .wp-content ol li {
  margin-bottom: 8rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .wp-content ul li, .wp-content ol li {
    font-size: 20rem;
  }
}
.wp-content ul li ul, .wp-content ul li ol, .wp-content ol li ul, .wp-content ol li ol {
  margin: 8rem 0;
}
.wp-content ul {
  list-style-type: disc !important;
  list-style-position: outside !important;
}
.wp-content ul ul {
  list-style-type: circle !important;
  list-style-position: outside !important;
}
.wp-content ul li {
  list-style-type: disc !important;
  list-style-position: outside !important;
}
.wp-content ol {
  list-style-type: decimal !important;
  list-style-position: outside !important;
}
.wp-content ol li {
  list-style-type: decimal !important;
  list-style-position: outside !important;
}
.wp-content figure {
  margin: 30rem 0;
}
.wp-content figure img {
  width: 100%;
  height: auto;
  border-radius: 4rem;
}
.wp-content figure figcaption {
  margin-top: 10rem;
  font-size: 14rem;
  color: #6c757d;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .wp-content figure figcaption {
    font-size: 20rem;
  }
}
.wp-content table {
  width: 100%;
  margin: 30rem 0;
  border-collapse: collapse;
  border: 1rem solid #dee2e6;
  border-radius: 4rem;
  overflow: hidden;
}
.wp-content table th, .wp-content table td {
  padding: 12rem 16rem;
  text-align: left;
  border-bottom: 1rem solid #dee2e6;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14rem;
}
@media screen and (max-width: 768px) {
  .wp-content table th, .wp-content table td {
    font-size: 20rem;
  }
}
.wp-content table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #495057;
}
.wp-content table tbody tr:hover {
  background: #f8f9fa;
}
.wp-content pre {
  margin: 30rem 0;
  padding: 20rem;
  background: #f8f9fa;
  border: 1rem solid #e9ecef;
  border-radius: 4rem;
  overflow-x: auto;
}
.wp-content pre code {
  background: none;
  padding: 0;
  border: none;
  border-radius: 0;
}
.wp-content code {
  display: inline-block;
  padding: 2rem 6rem;
  background: #f8f9fa;
  border: 1rem solid #e9ecef;
  border-radius: 3rem;
  font-family: "Courier New", monospace;
  font-size: 13rem;
  color: #e83e8c;
}
@media screen and (max-width: 768px) {
  .wp-content code {
    font-size: 20rem;
  }
}
.wp-content .wp-block-group {
  margin: 30rem 0;
  padding: 20rem;
  background: #f8f9fa;
  border-radius: 8rem;
}
.wp-content .wp-block-group__inner-container h1:first-child, .wp-content .wp-block-group__inner-container h2:first-child, .wp-content .wp-block-group__inner-container h3:first-child, .wp-content .wp-block-group__inner-container h4:first-child, .wp-content .wp-block-group__inner-container h5:first-child, .wp-content .wp-block-group__inner-container h6:first-child {
  margin-top: 0;
}
.wp-content .wp-block-group__inner-container p:last-child {
  margin-bottom: 0;
}
.wp-content .wp-block-columns {
  display: grid;
  gap: 30rem;
  margin: 30rem 0;
}
@media screen and (min-width: 768px) {
  .wp-content .wp-block-columns {
    grid-template-columns: repeat(auto-fit, minmax(250rem, 1fr));
  }
}
.wp-content .wp-block-column h1:first-child, .wp-content .wp-block-column h2:first-child, .wp-content .wp-block-column h3:first-child, .wp-content .wp-block-column h4:first-child, .wp-content .wp-block-column h5:first-child, .wp-content .wp-block-column h6:first-child {
  margin-top: 0;
}
.wp-content .wp-block-column p:last-child {
  margin-bottom: 0;
}
.wp-content .wp-block-button {
  margin: 20rem 0;
}
.wp-content .wp-block-button__link {
  display: inline-block;
  padding: 12rem 24rem;
  background: #007cba;
  color: #fff;
  text-decoration: none;
  border-radius: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .wp-content .wp-block-button__link {
    font-size: 20rem;
  }
}
.wp-content .wp-block-button__link:hover {
  background: #005a87;
  color: #fff;
}
.wp-content .wp-block-buttons {
  margin: 30rem 0;
}
.wp-content .wp-block-buttons .wp-block-button {
  margin: 0 10rem 10rem 0;
}

.post-navigation {
  display: grid;
  gap: 20rem;
  margin-top: 40rem;
}
@media screen and (min-width: 768px) {
  .post-navigation {
    grid-template-columns: 1fr 1fr;
  }
}
.post-navigation__prev, .post-navigation__next {
  background: #fff;
  border-radius: 8rem;
  box-shadow: 0 2rem 12rem rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.post-navigation__link {
  display: block;
  padding: 20rem;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.3s ease;
}
.post-navigation__link:hover {
  background: #f8f9fa;
}
.post-navigation__label {
  display: block;
  font-size: 12rem;
  color: #666;
  margin-bottom: 8rem;
  font-family: "Noto Sans JP", sans-serif;
}
.post-navigation__title {
  display: block;
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body {
  font-family: "Noto Serif JP", serif;
}

html {
  font-size: 0.05787037vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

dl dt {
  -webkit-margin-start: 0rem;
          margin-inline-start: 0rem;
}
dl dd {
  -webkit-margin-start: 0rem;
          margin-inline-start: 0rem;
}

select {
  /* 初期化 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #333;
  font-size: 16px;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}

a {
  transition-duration: 0.3s;
}

a:hover {
  opacity: 0.6;
}

@media screen and (min-width: 1728px) {
  html {
    font-size: 1px;
  }
}
@media screen and (max-width: 1420px) {
  html {
    font-size: 0.06849315vw;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 0.14765vw;
  }
}
dl {
  margin: 0px;
}
dl dt {
  margin: 0px;
}
dl dd {
  margin: 0px;
}

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

body {
  margin: 0px;
  font-size: 16rem;
  overflow-x: hidden;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 24rem;
    line-height: 42rem;
  }
}

figure {
  margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0px;
  margin: 0px;
  font-weight: 200;
}

p {
  margin: 0px;
}

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

@media screen and (max-width: 750px) {
  .p-number-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    position: fixed;
    bottom: 0rem;
    width: 100%;
    z-index: 200;
  }
  .p-number-wrapper li {
    width: 50%;
  }
}

.p-flex {
  display: flex;
  justify-content: space-between;
}
.p-flex.--align-center {
  align-items: center;
  align-content: center;
}
.p-flex.--text-right {
  justify-content: flex-end !important;
}
.p-flex.--text-left {
  justify-content: left;
}
.p-flex.--text-center {
  justify-content: center;
}
.p-flex.--align-bottom {
  align-items: flex-end;
}
.p-flex.--wrap {
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .p-flex.--sp-wrap {
    flex-wrap: wrap;
  }
}
.p-flex.--justify-center {
  justify-content: center;
}
.p-flex.--justify-between {
  justify-content: space-between !important;
}
.p-flex.--justify-left {
  justify-content: flex-start;
}
.p-flex.--align-top {
  align-items: flex-start !important;
}
.p-flex li:last-child .c-text-link_1 {
  margin-right: 0px;
}
.p-flex.--column-2 li, .p-flex.--column-2 article, .p-flex.--column-2 .p-flex-child {
  box-sizing: border-box;
  width: calc(50% - 20rem);
}
.p-flex.--column-2 li li, .p-flex.--column-2 article li, .p-flex.--column-2 .p-flex-child li {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-flex.--column-2 li, .p-flex.--column-2 article, .p-flex.--column-2 .p-flex-child {
    width: 100% !important;
  }
}
.p-flex.--column-2 li figure, .p-flex.--column-2 article figure, .p-flex.--column-2 .p-flex-child figure {
  width: 100%;
}
.p-flex.--column-2 li figure img, .p-flex.--column-2 article figure img, .p-flex.--column-2 .p-flex-child figure img {
  width: 100%;
}
.p-flex.--column-2.--no-gap {
  gap: 0rem;
}
.p-flex.--column-2.--no-gap li, .p-flex.--column-2.--no-gap article, .p-flex.--column-2.--no-gap .p-flex-child {
  width: 50%;
}
.p-flex.--column-2-full li, .p-flex.--column-2-full article, .p-flex.--column-2-full .p-flex-child {
  width: 50%;
}
.p-flex.--column-3-box li, .p-flex.--column-3-box article, .p-flex.--column-3-box .p-flex-child {
  width: calc(33.3333333333% - 34rem);
}
.p-flex.--column-3 article, .p-flex.--column-3 li, .p-flex.--column-3 .p-flex-child {
  width: 33.3333333333%;
}
.p-flex.--column-3 article:nth-child(3n), .p-flex.--column-3 li:nth-child(3n), .p-flex.--column-3 .p-flex-child:nth-child(3n) {
  margin-right: 0rem;
}
.p-flex.--column-3 article figure, .p-flex.--column-3 li figure, .p-flex.--column-3 .p-flex-child figure {
  width: 100%;
}
.p-flex.--column-3 article figure img, .p-flex.--column-3 li figure img, .p-flex.--column-3 .p-flex-child figure img {
  width: 100%;
}
@media screen and (max-width: 1320px) {
  .p-flex.--column-3 article, .p-flex.--column-3 li, .p-flex.--column-3 .p-flex-child {
    width: 33%;
  }
}
@media screen and (max-width: 750px) {
  .p-flex.--column-3 article, .p-flex.--column-3 li, .p-flex.--column-3 .p-flex-child {
    width: 100%;
    margin-right: 0rem;
  }
}
.p-flex.--column-3.--side-l .p-flex-child {
  width: 33.3333% !important;
}
.p-flex.--column-3.--side-l .p-flex-child:nth-child(3n) {
  margin-right: 0rem;
}
.p-flex.--column-3.--side-l .p-flex-child figure {
  width: 100%;
}
.p-flex.--column-3.--side-l .p-flex-child figure img {
  width: 100%;
}
@media screen and (max-width: 1320px) {
  .p-flex.--column-3.--side-l .p-flex-child {
    width: 30%;
  }
}
@media screen and (max-width: 750px) {
  .p-flex.--column-3.--side-l .p-flex-child {
    width: 100%;
    margin-right: 0rem;
  }
}
.p-flex.--column-3-full article, .p-flex.--column-3-full li {
  width: 33.33333%;
  border-right: 1px solid #D2D2D2;
  border-top: 1px solid #D2D2D2;
  padding: 20rem;
  box-sizing: border-box;
}
.p-flex.--column-3-full article figure, .p-flex.--column-3-full li figure {
  width: 100%;
}
.p-flex.--column-3-full article figure img, .p-flex.--column-3-full li figure img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-flex.--column-3-full article, .p-flex.--column-3-full li {
    width: 100%;
    margin-right: 0rem;
  }
}
.p-flex.--column-3_l article, .p-flex.--column-3_l li {
  width: 353rem;
}
@media screen and (max-width: 750px) {
  .p-flex.--column-3_l article, .p-flex.--column-3_l li {
    width: 100%;
  }
}
.p-flex.--column-3_l article figure, .p-flex.--column-3_l li figure {
  width: 100%;
}
.p-flex.--column-3_l article figure img, .p-flex.--column-3_l li figure img {
  width: 100%;
}
.p-flex.--column-4 li, .p-flex.--column-4 table, .p-flex.--column-4 article {
  width: 25%;
}
.p-flex.--column-4 li:nth-child(4n), .p-flex.--column-4 table:nth-child(4n), .p-flex.--column-4 article:nth-child(4n) {
  margin-right: 0rem;
}
.p-flex.--column-4 li img, .p-flex.--column-4 table img, .p-flex.--column-4 article img {
  width: 100%;
}
.p-flex.--column-4 li figure, .p-flex.--column-4 table figure, .p-flex.--column-4 article figure {
  width: 100%;
}
.p-flex.--column-4 li figure img, .p-flex.--column-4 table figure img, .p-flex.--column-4 article figure img {
  width: 100%;
}
.p-flex.--column-4.--no-padding table {
  width: 265rem;
  margin-right: 10rem;
  margin-bottom: 0rem;
}
.p-flex.--column-5 li, .p-flex.--column-5 article {
  width: calc(20% - 30rem);
}
.p-flex.--column-5 li:nth-child(5n), .p-flex.--column-5 article:nth-child(5n) {
  margin-right: 0rem;
}
.p-flex.--column-5 li img, .p-flex.--column-5 article img {
  width: 100%;
}
.p-flex.--column-5 li figure, .p-flex.--column-5 article figure {
  width: 100%;
}
.p-flex.--column-5 li figure img, .p-flex.--column-5 article figure img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-flex {
    flex-direction: column;
  }
  .p-flex.--flex-sp {
    flex-direction: row;
  }
  .p-flex.--flex-sp.--flex-sp-space_between {
    justify-content: space-between;
  }
  .p-flex.--flex-sp.--flex-sp-space_center {
    justify-content: center;
  }
}
.p-flex.--text-center {
  text-align: center;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .p-flex.--text-center {
    text-align: center !important;
    justify-content: center !important;
    align-items: center !important;
  }
}
.p-flex.--sp-column-2 {
  display: flex;
}
@media screen and (max-width: 750px) {
  .p-flex.--sp-column-2 > li, .p-flex.--sp-column-2 > article, .p-flex.--sp-column-2 > .--column-single {
    width: calc(50% - 20rem) !important;
  }
}
.p-flex.--sp-column-2 .--footer {
  margin-right: 0rem;
}
.p-flex.--sp-column-2 .--footer:nth-child(odd) {
  width: calc(40% - 10rem) !important;
}
.p-flex.--sp-column-2 .--footer:nth-child(even) {
  width: calc(60% - 10rem) !important;
}
.p-flex.--sp-column-3 {
  display: flex;
}
@media screen and (max-width: 750px) {
  .p-flex.--sp-column-3 li, .p-flex.--sp-column-3 article, .p-flex.--sp-column-3 .--column-single {
    width: 31% !important;
    margin-right: 0rem;
  }
}
.p-flex.--reverse {
  flex-direction: row-reverse;
}
.p-flex.--column-6 li, .p-flex.--column-6 article {
  width: calc(16.6666667% - 20rem);
}
.p-flex.--column-6 li:nth-child(6n), .p-flex.--column-6 article:nth-child(6n) {
  margin-right: 0rem;
}
.p-flex.--column-6 li img, .p-flex.--column-6 article img {
  width: 100%;
}
.p-flex.--column-6 li figure, .p-flex.--column-6 article figure {
  width: 100%;
}
.p-flex.--column-6 li figure img, .p-flex.--column-6 article figure img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .p-flex.--pc-only {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .p-flex.--sp-justify-right {
    display: flex;
    justify-content: flex-end !important;
  }
}
.p-flex.--gap-60 {
  gap: 60rem;
}

@media screen and (max-width: 750px) {
  .p-sp-flex {
    display: flex;
    justify-content: space-between;
  }
  .p-sp-flex.--left {
    justify-content: flex-start;
  }
  .p-sp-flex.--position-bottom {
    align-items: flex-end;
  }
  .p-sp-flex.--justify-center {
    justify-content: center;
  }
}

.p-margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.p-nav.--base li {
  padding-left: 15rem;
}

.p-tab {
  background: #fff;
  border-radius: 10rem;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15));
  border-radius: 10rem;
  overflow: hidden;
}
.p-tab li a, .p-tab li span {
  display: block;
  padding-top: 30rem;
  padding-bottom: 30rem;
  width: 100%;
  font-size: 18rem;
  line-height: 40rem;
  border-right: 1px solid #D5D5D5;
}
.p-tab li a.active, .p-tab li span.active {
  background: #3187D8;
  color: #fff;
  border-right: none;
}
@media screen and (max-width: 750px) {
  .p-tab li a, .p-tab li span {
    font-size: 24rem;
    line-height: 40rem;
    padding-top: 40rem;
    padding-bottom: 40rem;
  }
}
.p-tab li:last-child a {
  border-right: none;
}

.p-qa-box {
  background: #fff;
  border-radius: 10rem;
  overflow: hidden;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.15));
}
.p-qa-box dt {
  font-size: 18rem;
  line-height: 40rem;
  font-weight: bold;
  padding: 20rem 30rem;
  background: #fff;
  color: #000;
  text-indent: -17rem;
  padding-left: 63rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-qa-box dt:after {
  content: "";
  display: inline-block;
  width: 10rem;
  height: 10rem;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
}
.p-qa-box dt b {
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  display: inline-block;
  margin-right: 10rem;
}
@media screen and (max-width: 750px) {
  .p-qa-box dt {
    font-size: 24rem;
    line-height: 40rem;
    padding: 30rem 30rem;
    text-indent: -17rem;
    padding-left: 63rem;
  }
}
.p-qa-box dd {
  padding: 30rem;
  font-size: 16rem;
  line-height: 28rem;
  background: #f8f9fa;
}
@media screen and (max-width: 750px) {
  .p-qa-box dd {
    font-size: 24rem;
    line-height: 46rem;
    padding: 40rem;
  }
}
.p-qa-box.active dt {
  background: #3187D8;
  color: #fff;
}
.p-qa-box.active dt:after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(135deg);
}

#news-archive {
  padding: 120rem 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #news-archive {
    padding: 60rem 0;
  }
}

.news-archive__container {
  display: flex;
  gap: 60rem;
}
@media screen and (max-width: 768px) {
  .news-archive__container {
    flex-direction: column;
    gap: 40rem;
  }
}
.news-archive__column {
  flex: 1;
}
.news-archive__title {
  font-size: 24rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 30rem;
  padding-bottom: 10rem;
  border-bottom: 2rem solid #007cba;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .news-archive__title {
    font-size: 28rem;
    margin-bottom: 24rem;
  }
}
.news-archive__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-archive__item {
  border-bottom: 1rem solid #e0e0e0;
}
.news-archive__item:last-child {
  border-bottom: none;
}
.news-archive__link {
  display: block;
  padding: 20rem 0;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.news-archive__link:hover {
  color: #007cba;
}
.news-archive__date {
  display: block;
  font-size: 12rem;
  color: #666;
  margin-bottom: 8rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .news-archive__date {
    font-size: 20rem;
    margin-bottom: 12rem;
  }
}
.news-archive__item-title {
  font-size: 16rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 1rem solid #e0e0e0;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .news-archive__item-title {
    font-size: 22rem;
    line-height: 1.5;
    padding-bottom: 10rem;
  }
}
.news-archive__empty {
  text-align: center;
  padding: 40rem 0;
  color: #999;
  font-size: 14rem;
}
@media screen and (max-width: 768px) {
  .news-archive__empty {
    font-size: 20rem;
  }
}

.p-pagenation-list {
  text-align: center;
}
.p-pagenation-list a, .p-pagenation-list span {
  display: inline-block;
  padding: 5rem 10rem;
  border: 1px solid #1D90FF;
  border-radius: 5rem;
  margin-right: 5rem;
  color: #fff;
  font-weight: bold;
  background: #1D90FF;
}
@media screen and (max-width: 750px) {
  .p-pagenation-list a, .p-pagenation-list span {
    font-size: 24rem;
    padding: 10rem 20rem 10rem 20rem;
  }
}
.p-pagenation-list a.current, .p-pagenation-list span.current {
  border: 1px solid #1D90FF;
  color: #1D90FF;
  background-color: inherit;
}
.p-pagenation-list a:hover, .p-pagenation-list span:hover {
  background: #fff;
  color: #1D90FF;
}

.p-form {
  background: #fff;
  border: 1px solid #000;
  box-sizing: border-box;
  padding: 0rem 100rem 100rem 100rem;
}
@media screen and (max-width: 750px) {
  .p-form {
    padding: 0rem 40rem 40rem 40rem;
  }
}

.p-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.p-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-center {
  width: 94%;
  max-width: 1240rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.p-center.--width-830 {
  max-width: 830rem;
}
.p-center.--width-520 {
  max-width: 520rem;
}
.p-center.--width-950 {
  max-width: 950rem;
}
.p-center.--width-960 {
  max-width: 960rem;
}
.p-center.--width-1000 {
  max-width: 1000rem;
}
.p-center.--width-1050 {
  max-width: 1050rem;
}
.p-center.--width-1100 {
  max-width: 1100rem;
}
.p-center.--width-1168 {
  max-width: 1168rem;
}
.p-center.--width-1180 {
  max-width: 1180rem;
}
.p-center.--width-1200 {
  max-width: 1200rem;
}
.p-center.--width-1220 {
  max-width: 1220rem;
}
.p-center.--width-1230 {
  max-width: 1230rem;
}
.p-center.--width-1240 {
  max-width: 1240rem;
}
.p-center.--width-1280 {
  max-width: 1280rem;
}
.p-center.--width-1340 {
  max-width: 1340rem;
}
.p-center.--width-small-2 {
  max-width: 890rem;
}
.p-center.--width-1500 {
  max-width: 1500rem;
}
.p-center.--width-1575 {
  max-width: 1575rem;
}
.p-center.--width-1760 {
  width: 94%;
  max-width: 1760rem;
}
.p-center.--width-1400 {
  max-width: 1400rem;
}
.p-center.--width-1420 {
  max-width: 1420rem;
}
.p-center.--width-1488 {
  max-width: 1488rem;
  width: 100%;
  box-sizing: border-box;
}
.p-center.--width-1590 {
  max-width: 1590rem;
}
.p-center.--width-1600 {
  max-width: 1600rem;
}
.p-center.--width-1620 {
  max-width: 1620rem;
}
.p-center.--width-1640 {
  max-width: 1640rem;
}
.p-center.--width-1700 {
  max-width: 1700rem;
}
@media screen and (max-width: 750px) {
  .p-center.--sp-width-small {
    width: 90%;
  }
}
@media screen and (max-width: 750px) {
  .p-center.--sp-width-small-s {
    width: 85%;
  }
}
@media screen and (max-width: 750px) {
  .p-center.--pc {
    max-width: 100%;
    width: 100%;
  }
}

.p-wrapper-mv {
  position: relative;
  padding-bottom: 100rem;
}
.p-wrapper-mv:after {
  content: "";
  display: block;
  width: 100%;
  height: 254rem;
  background: linear-gradient(180deg, #E6F0FF 0%, #E9F9FB 100%);
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .p-wrapper-mv:after {
    display: none;
  }
}

.p-gnav-sp-wrapper {
  position: fixed;
  z-index: 200;
  top: 0rem;
  right: 0rem;
  background: #fff;
  width: 120rem;
  height: 120rem;
  display: none;
  z-index: 500;
}
@media screen and (max-width: 750px) {
  .p-gnav-sp-wrapper {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
  }
}

.p-arrow-box {
  margin-left: auto;
  margin-right: auto;
  color: #FF7686;
}
.p-arrow-box span {
  display: block;
}
.p-arrow-box span:first-child {
  margin-bottom: 10rem;
}

.p-header-main {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 100%;
  position: fixed;
  top: 0rem;
  left: 0rem;
  z-index: 160;
  filter: drop-shadow(0px 8px 4px rgba(0, 0, 0, 0.06));
}

.p-article-logo {
  width: 40rem;
  height: 40rem;
  border: 1px solid #000;
  border-radius: 20rem;
}
.p-article-logo img {
  width: 40rem;
  height: 40rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.p-child-arrows li a {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.p-child-arrows li a:before {
  content: "";
  display: block;
  width: 8rem;
  height: 8rem;
  background-size: contain;
  margin-right: 10rem;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
}

.p-crumblist {
  display: flex;
}
.p-crumblist li:after {
  content: "";
  display: inline-block;
  margin-left: 10rem;
  margin-right: 10rem;
  width: 10rem;
  height: 10rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
}
.p-crumblist li:last-child:after {
  display: none;
}

.p-sideber-article {
  display: flex;
  align-items: center;
  align-content: center;
  margin-bottom: 20rem;
}
.p-sideber-article figure {
  width: 70rem;
  margin-right: 20rem;
}
@media screen and (max-width: 750px) {
  .p-sideber-article figure {
    width: 140rem;
    margin-right: 30rem;
  }
}
.p-sideber-article figure img {
  width: 70rem;
  height: 70rem;
  box-sizing: border-box;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 750px) {
  .p-sideber-article figure img {
    width: 140rem;
    height: 140rem;
  }
}
.p-sideber-article .--text-base {
  font-size: 16rem;
  line-height: 26rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .p-sideber-article .--text-base {
    font-size: 26rem;
    line-height: 38rem;
  }
}

.p-sideber-article-2 figure {
  width: 320rem;
  height: 240rem;
}
.p-sideber-article-2 figure img {
  width: 320rem;
  height: 240rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 750px) {
  .p-sideber-article-2 figure {
    width: 100%;
    height: 340rem;
  }
  .p-sideber-article-2 figure img {
    width: 100%;
    height: 340rem;
  }
}
.p-sideber-article-2 .--title {
  font-size: 18rem;
  line-height: 28rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .p-sideber-article-2 .--title {
    font-size: 28rem;
    line-height: 40rem;
  }
}
.p-sideber-article-2 .--text {
  font-size: 12rem;
  line-height: 24rem;
  color: #8B8B8B;
}
@media screen and (max-width: 750px) {
  .p-sideber-article-2 .--text {
    font-size: 24rem;
    line-height: 34rem;
  }
}

.p-article {
  background: #fff;
}

@media screen and (max-width: 750px) {
  .p-sp-center {
    margin-left: auto;
    margin-right: auto;
  }
}

.p-blog-text {
  max-width: 860rem;
  margin-left: auto;
  margin-right: auto;
}
.p-blog-text p {
  font-size: 16rem;
  line-height: 34rem;
  padding-bottom: 60rem;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 860px) {
  .p-blog-text p {
    font-size: 26rem;
    line-height: 56rem;
    padding-bottom: 70rem;
    font-family: "source-han-sans-japanese", sans-serif;
    font-weight: 500;
  }
}
.p-blog-text p b {
  font-weight: 800;
}
.p-blog-text figure {
  padding-bottom: 60rem;
}
@media screen and (max-width: 860px) {
  .p-blog-text figure {
    padding-bottom: 60rem;
  }
}
.p-blog-text figure img {
  width: 100% !important;
  height: auto !important;
  box-sizing: border-box;
  border-radius: 10rem;
}
.p-blog-text .video {
  margin-bottom: 60rem;
}
.p-blog-text h2 {
  background: #3576D9;
  padding: 20rem;
  color: #fff;
  line-height: 34rem;
  font-size: 20rem;
  border-radius: 5rem;
  margin-top: 20rem;
  margin-bottom: 45rem;
  font-weight: bold;
}
@media screen and (max-width: 860px) {
  .p-blog-text h2 {
    font-size: 36rem;
    line-height: 50rem;
    padding: 40rem;
    margin-bottom: 80rem;
    margin-top: 40rem;
  }
}
.p-blog-text h3 {
  font-size: 20rem;
  line-height: 34rem;
  border-bottom: 3rem solid #3576D9;
  padding-bottom: 10rem;
  margin-bottom: 40rem;
  margin-top: 10rem;
  font-weight: bold;
}
@media screen and (max-width: 860px) {
  .p-blog-text h3 {
    font-size: 36rem;
    line-height: 50rem;
    margin-bottom: 60rem;
    padding-bottom: 20rem;
    border-bottom: 5rem solid #3576D9;
    margin-top: 20rem;
  }
}
.p-blog-text h4 {
  font-size: 20rem;
  line-height: 34rem;
  border-left: 3rem solid #3576D9;
  padding-left: 15rem;
  margin-bottom: 40rem;
  margin-top: 10rem;
  font-weight: bold;
}
@media screen and (max-width: 860px) {
  .p-blog-text h4 {
    font-size: 36rem;
    line-height: 50rem;
    margin-bottom: 60rem;
    padding-left: 30rem;
    margin-top: 20rem;
    border-left: 6rem solid #3576D9;
  }
}
.p-blog-text ul, .p-blog-text ol {
  background: #F9F9F9;
  padding: 40rem;
  font-size: 16rem;
  line-height: 34rem;
  margin-bottom: 40rem;
  padding-left: 60rem;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 860px) {
  .p-blog-text ul, .p-blog-text ol {
    font-size: 28rem;
    line-height: 50rem;
  }
}
.p-blog-text ul li {
  list-style: disc;
}
.p-blog-text ol li {
  list-style: decimal;
}
.p-blog-text a {
  text-decoration: underline;
}

.p-box-white-1 {
  background: #fff;
  border-radius: 20rem;
  overflow: hidden;
}

.p-center-auto {
  margin-left: auto;
  margin-right: auto;
}

/***montreal-components***/
.c-hamburger {
  display: none;
  position: fixed;
  top: 20rem;
  right: 20rem;
  width: 60rem;
  height: 60rem;
  background: white;
  border: none;
  cursor: pointer;
  z-index: 9999;
  padding: 0;
}
@media screen and (max-width: 750px) {
  .c-hamburger {
    display: block;
    top: 0rem;
    right: 0rem;
    width: 80rem;
    height: 80rem;
  }
}
.c-hamburger span {
  display: block;
  position: absolute;
  width: 30rem;
  height: 2rem;
  background: #333;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .c-hamburger span {
    width: 45rem;
    height: 3rem;
  }
}
.c-hamburger span:first-child {
  top: 18rem;
}
@media screen and (max-width: 750px) {
  .c-hamburger span:first-child {
    top: 25rem;
  }
}
.c-hamburger span:nth-child(2) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.c-hamburger span:last-child {
  bottom: 18rem;
}
@media screen and (max-width: 750px) {
  .c-hamburger span:last-child {
    bottom: 25rem;
  }
}
.c-hamburger.is-active span:first-child {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.c-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active span:last-child {
  bottom: 50%;
  transform: translateX(-50%) translateY(50%) rotate(-45deg);
}

@media screen and (max-width: 750px) {
  .c-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    transition: right 0.3s ease;
    z-index: 9998;
    overflow-y: auto;
  }
  .c-nav.is-active {
    display: block;
    right: 0;
  }
}
.c-nav .--inner {
  display: flex;
  justify-content: right;
  align-items: center;
  align-content: center;
  gap: 20rem;
}
@media screen and (max-width: 750px) {
  .c-nav .--inner {
    display: flex;
    flex-direction: column;
    gap: 40rem;
    justify-content: center;
    height: 100%;
  }
  .c-nav .--inner li a {
    font-size: 32rem;
    font-weight: 500;
  }
}

.c-mv {
  background: url(../img/common/mv.webp) no-repeat center center;
  background-size: cover;
  background-position: center;
  padding-top: 120rem;
  padding-bottom: 478rem;
}
@media screen and (max-width: 750px) {
  .c-mv {
    padding-top: 80rem;
    padding-bottom: 380rem;
  }
}
.c-mv .--text-wrapper {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.c-mv .--text {
  width: 283rem;
  display: block;
}
@media screen and (max-width: 750px) {
  .c-mv .--text {
    width: 200rem;
  }
}

.c-title-line {
  background: linear-gradient(90deg, #385266 0%, #10324B 100%);
  color: #fff;
  padding-top: 60rem;
  padding-bottom: 60rem;
  text-align: center;
}
.c-title-line .--small-text {
  font-size: 26rem;
  line-height: 46rem;
  padding-bottom: 10rem;
}
.c-title-line .--large-text {
  font-size: 46rem;
  line-height: 56rem;
}

.c-access-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding-top: 70rem;
  padding-bottom: 70rem;
  gap: 20rem;
}
.c-access-list li {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 20rem;
}
.c-access-list .--w-340 {
  width: 340rem;
}
.c-access-list .--w-515 {
  width: 515rem;
}
.c-access-list .--w-256 {
  width: 256rem;
}
.c-access-list .--w-261 {
  width: 261rem;
}
.c-access-list .--w-233 {
  width: 233rem;
}
.c-access-list .--w-290 {
  width: 290rem;
}
.c-access-list .--w-417 {
  width: 417rem;
}
.c-access-list .--w-450 {
  width: 450rem;
}
.c-access-list .--w-468 {
  width: 468rem;
}
.c-access-list .--w-570 {
  width: 570rem;
}

.c-entry {
  background: url(../img/common/bg_concrpt_nav.webp) no-repeat center center;
  background-size: cover;
  display: flex;
}
@media screen and (max-width: 750px) {
  .c-entry {
    display: block;
  }
}
.c-entry .--box {
  width: 50%;
  color: #fff;
  padding: 20rem;
  position: relative;
}
.c-entry .--box a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 750px) {
  .c-entry .--box {
    width: 100%;
    position: relative;
    box-sizing: border-box;
  }
}
.c-entry .--box .--inner {
  border: 1px solid #fff;
  padding: 90rem 40rem 90rem 40rem;
  box-sizing: border-box;
  height: 100%;
  text-align: center;
  position: relative;
}
.c-entry .--box .--inner.--gold-corner:before {
  content: "";
  display: block;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: linear-gradient(90deg, #EACE76 0%, #C09B30 100%);
  position: absolute;
  top: 0rem;
  right: 0rem;
  width: 45rem;
  height: 45rem;
}
.c-entry .--box .--inner.--gold-corner-2:after {
  content: "";
  display: block;
  -webkit-clip-path: polygon(0 100%, 0 0, 100% 100%);
          clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: linear-gradient(90deg, #EACE76 0%, #C09B30 100%);
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  width: 45rem;
  height: 45rem;
}
.c-entry .--box .--inner .--title {
  font-size: 36rem;
  border: 1px solid #fff;
  display: inline-block;
  padding: 5rem 40rem;
  margin-bottom: 20rem;
}
.c-entry .--box .--inner .--title.--bg-white {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.c-entry .--box .--inner .--text {
  font-size: 16rem;
  line-height: 28rem;
}
@media screen and (max-width: 750px) {
  .c-entry .--box .--inner .--text {
    font-size: 24rem;
    line-height: 42rem;
  }
  .c-entry .--box .--inner .--text br {
    display: none;
  }
}
.c-entry .--box .--inner .--text.--size-l {
  font-size: 34rem;
  line-height: 50rem;
  padding-top: 5rem;
}
.c-entry .--box:nth-child(2) .--inner {
  border: none;
}

.c-concept {
  background: url(../img/common/bg_tex_4.webp) no-repeat center center;
  background-size: cover;
}
.c-concept .--inner {
  max-width: 1100rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  padding-top: 100rem;
}
@media screen and (max-width: 750px) {
  .c-concept .--inner {
    display: block;
  }
}
.c-concept .--inner .--data-box {
  width: 530rem;
  padding-top: 15rem;
}
@media screen and (max-width: 750px) {
  .c-concept .--inner .--data-box {
    width: 100%;
    padding-top: 0rem;
  }
}
.c-concept .--inner .--title {
  font-size: 30rem;
  line-height: 50rem;
  margin-bottom: 30rem;
}
.c-concept .--inner .--title:after {
  content: "";
  display: block;
  width: 180rem;
  border-bottom: #000000 solid 1rem;
  margin-top: 15rem;
}
@media screen and (max-width: 750px) {
  .c-concept .--inner .--title {
    font-size: 40rem;
    line-height: 58rem;
    margin-bottom: 30rem;
    padding-bottom: 30rem;
  }
}
@media screen and (max-width: 750px) {
  .c-concept .--inner .--title-2 {
    display: block;
    text-align: center;
  }
}
.c-concept .--inner .--text {
  font-size: 16rem;
  line-height: 34rem;
  padding-bottom: 40rem;
}
@media screen and (max-width: 750px) {
  .c-concept .--inner .--text {
    font-size: 24rem;
    line-height: 42rem;
    padding-bottom: 40rem;
  }
}
.c-concept .--inner .--button {
  display: block;
  border: 1px solid #000;
  color: #000;
  text-align: center;
  padding: 20rem 20rem 20rem 20rem;
  box-sizing: border-box;
  border-radius: 5rem;
  max-width: 334rem;
  font-size: 24rem;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.c-concept .--inner .--button:after {
  content: "";
  display: block;
  width: 10rem;
  height: 10rem;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
  margin-left: 15rem;
}
@media screen and (max-width: 750px) {
  .c-concept .--inner .--button {
    margin-left: auto;
    margin-right: auto;
  }
}

.c-map {
  position: relative;
}
.c-map .--map {
  max-width: 1240rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 100;
  padding-bottom: 100rem;
}
.c-map .--map img {
  width: 100%;
}
.c-map .--inner:after {
  display: block;
  width: 100%;
  height: 384rem;
  position: absolute;
  bottom: 190rem;
  left: 0rem;
  background-color: #334E63;
}
.c-map .--inner:before {
  content: "";
  display: block;
  width: 100%;
  height: 384rem;
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  height: 190rem;
  background: linear-gradient(90deg, #334E63 0%, #15364F 100%);
}

.c-youtube {
  max-width: 1024rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 アスペクト比 */
  height: 0;
}
@media screen and (max-width: 750px) {
  .c-youtube {
    max-width: 90%;
    padding-bottom: 56.25%;
    height: 0;
  }
}
.c-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.c-youtube.--gold-corner:before {
  content: "";
  display: block;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: linear-gradient(90deg, #EACE76 0%, #C09B30 100%);
  position: absolute;
  top: -10rem;
  right: -10rem;
  width: 90rem;
  height: 90rem;
  z-index: -1;
}
.c-youtube.--gold-corner:after {
  content: "";
  display: block;
  -webkit-clip-path: polygon(0 100%, 0 0, 100% 100%);
          clip-path: polygon(0 100%, 0 0, 100% 100%);
  background: linear-gradient(90deg, #EACE76 0%, #C09B30 100%);
  position: absolute;
  bottom: -10rem;
  left: -10rem;
  width: 90rem;
  height: 90rem;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .c-youtube {
    max-width: 100%;
  }
}

@supports (aspect-ratio: 1/1) {
  .c-youtube {
    padding-bottom: 0;
    height: auto;
    aspect-ratio: 16/9;
  }
  .c-youtube iframe {
    position: static;
    width: 100%;
    height: 100%;
    display: block;
  }
}
.c-youtube-wrapper {
  background: url(../img/common/bg_tex_2.webp) no-repeat center center;
  background-size: cover;
}

.c-cvars {
  display: flex;
  justify-content: space-between;
  z-index: 10;
  position: relative;
}
.c-cvars figure.--image {
  width: 40%;
  height: 600rem;
}
.c-cvars figure.--image img {
  width: 100%;
  height: 100%;
}
.c-cvars div.--text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
}
@media screen and (max-width: 750px) {
  .c-cvars div.--text {
    padding-left: 40rem;
    padding-right: 40rem;
  }
}
.c-cvars div.--text .--title {
  font-size: 24rem;
  line-height: 50rem;
  padding-bottom: 10rem;
}
.c-cvars div.--text .--phone {
  font-size: 54rem;
  line-height: 54rem;
  margin-bottom: 30rem;
}
.c-cvars div.--text .--list {
  font-size: 16rem;
  line-height: 30rem;
  margin-bottom: 30rem;
}
@media screen and (max-width: 750px) {
  .c-cvars div.--text .--list {
    font-size: 20rem;
    line-height: 38rem;
    margin-bottom: 30rem;
  }
}

.c-btn {
  background: #CBA476;
  color: #fff;
  padding: 20rem;
  font-size: 24rem;
  width: 100%;
  display: flex;
  max-width: 314rem;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
}
.c-btn:after {
  content: "";
  display: block;
  width: 10rem;
  height: 10rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  margin-left: 15rem;
}
.c-btn.--small {
  font-size: 24rem;
}

.c-card {
  background-color: #fff;
  width: 1160rem;
  margin-left: auto;
  margin-right: auto;
  z-index: 10;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .c-card {
    width: 100%;
    box-sizing: border-box;
  }
}
.c-card ul.--list-text {
  padding: 60rem;
  box-sizing: border-box;
}
.c-card ul.--list-text li {
  font-size: 14rem;
  line-height: 24rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 750px) {
  .c-card ul.--list-text li {
    font-size: 24rem;
    line-height: 38rem;
  }
}
.c-card ul.--list-logo {
  padding: 35rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20rem;
}
.c-card ul.--list-logo img {
  height: 76rem;
}
@media screen and (max-width: 750px) {
  .c-card ul.--list-logo img {
    width: 100%;
    max-height: 40px;
  }
}
.c-card ul.--list-logo li {
  padding-bottom: 20rem;
}

.c-img-bottom-city {
  position: relative;
}
.c-img-bottom-city:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/common/bg_city_lsize.webp) no-repeat center center;
  background-size: contain;
  background-position: bottom center;
  position: absolute;
  bottom: 230rem;
  left: 0;
}
.c-img-bottom-city:before {
  content: "";
  display: block;
  width: 100%;
  height: 240rem;
  background: #16374F;
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-copyright {
  background: #0B1B27;
  text-align: center;
  padding: 30rem 0rem;
  padding-bottom: 140rem;
  font-size: 14rem;
  line-height: 24rem;
  color: #fff;
}

.c-sub-header .--inner {
  background: url(../img/common/bg_sub_header.webp) no-repeat center center;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-weight: bold;
  padding: 70rem 20rem 70rem 20rem;
  text-align: center;
}
.c-sub-header .--inner h1 {
  font-size: 28rem;
  padding-bottom: 10rem;
}
.c-sub-header .--inner p {
  font-size: 12rem;
  line-height: 24rem;
}
@media screen and (max-width: 750px) {
  .c-sub-header .--inner h1 {
    font-size: 34rem;
    padding-bottom: 10rem;
  }
  .c-sub-header .--inner p {
    font-size: 20rem;
    line-height: 24rem;
  }
}

.c-sub-title-1 {
  font-size: 36rem;
  line-height: 56rem;
  text-align: center;
  padding-top: 80rem;
  padding-bottom: 80rem;
}

.c-content-header {
  position: relative;
  z-index: 10;
  padding-top: 100rem;
  padding-right: 40rem;
  padding-left: 40rem;
}
.c-content-header .--title {
  line-height: 34rem;
  color: #fff;
  text-align: center;
  font-size: 38rem;
}
.c-content-header .--title:after {
  content: "";
  display: block;
  width: 200rem;
  height: 1px;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30rem;
  margin-bottom: 30rem;
}
@media screen and (max-width: 750px) {
  .c-content-header .--title {
    font-size: 50rem;
    line-height: 70rem;
  }
}
.c-content-header .--text {
  font-size: 18rem;
  line-height: 32rem;
  padding-top: 10rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .c-content-header .--text {
    font-size: 24rem;
    line-height: 40rem;
  }
}

.c-img-box figcaption {
  font-size: 28rem;
  line-height: 38rem;
  text-align: center;
  padding-top: 10rem;
}

.c-imgtext-container {
  padding-left: 50rem;
  padding-right: 50rem;
}
@media screen and (max-width: 750px) {
  .c-imgtext-container {
    padding-left: 20rem;
    padding-right: 20rem;
  }
}
.c-imgtext-container .--inner {
  background: url(../img/common/bg_concrpt_nav.webp) no-repeat center center;
  border-radius: 10rem;
  background-size: cover;
  background-position: center;
}
.c-imgtext-container .--inner .--content {
  color: #fff;
  padding-top: 160rem;
  padding-bottom: 160rem;
  width: 1260rem;
  padding-left: 60rem;
  padding-right: 60rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 100rem;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .c-imgtext-container .--inner .--content {
    flex-direction: column;
    width: 100%;
  }
}
.c-imgtext-container .--inner .--content .--image {
  width: 570rem;
  text-align: right;
}
@media screen and (max-width: 750px) {
  .c-imgtext-container .--inner .--content .--image {
    width: 100%;
  }
}
.c-imgtext-container .--inner .--content .--image img {
  width: 100%;
  margin-bottom: 10rem;
}
.c-imgtext-container .--inner .--content .--title-1 {
  font-size: 24rem;
  line-height: 34rem;
  border: 1px solid #fff;
  border-radius: 50rem;
  text-align: center;
  padding: 15rem 20rem;
  box-sizing: border-box;
  margin-bottom: 30rem;
}
@media screen and (max-width: 750px) {
  .c-imgtext-container .--inner .--content .--title-1 {
    font-size: 24rem;
    line-height: 34rem;
  }
}
.c-imgtext-container .--inner .--content .--title-2 {
  font-size: 26rem;
  line-height: 40rem;
  box-sizing: border-box;
  margin-bottom: 30rem;
}
@media screen and (max-width: 750px) {
  .c-imgtext-container .--inner .--content .--title-2 {
    font-size: 32rem;
    line-height: 48rem;
  }
}
.c-imgtext-container .--inner .--content .--list {
  padding-bottom: 20rem;
}
.c-imgtext-container .--inner .--content .--list li {
  font-size: 16rem;
  line-height: 28rem;
  list-style: disc;
  margin-left: 20rem;
}
@media screen and (max-width: 750px) {
  .c-imgtext-container .--inner .--content .--list li {
    font-size: 20rem;
    line-height: 38rem;
  }
}
.c-imgtext-container .--inner .--content .--text-right {
  font-size: 18rem;
  text-align: right;
}
@media screen and (max-width: 750px) {
  .c-imgtext-container .--inner .--content .--text-right {
    font-size: 24rem;
    line-height: 38rem;
  }
}
.c-imgtext-container .--inner .--content .--text {
  width: calc(100% - 570rem);
}
@media screen and (max-width: 750px) {
  .c-imgtext-container .--inner .--content .--text {
    width: 100%;
  }
}

.c-article-card .--title {
  font-size: 28rem;
  line-height: 38rem;
  padding-top: 20rem;
  padding-bottom: 15rem;
  border-bottom: 1px solid #D4D4D4;
  margin-bottom: 25rem;
}
@media screen and (max-width: 750px) {
  .c-article-card .--title {
    font-size: 32rem;
    line-height: 46rem;
  }
}
.c-article-card .--text {
  font-size: 16rem;
  line-height: 28rem;
}
@media screen and (max-width: 750px) {
  .c-article-card .--text {
    font-size: 24rem;
    line-height: 38rem;
  }
}

.c-content-header-2 {
  color: #fff;
  text-align: center;
  padding-top: 110rem;
}
.c-content-header-2 .--sub-title {
  padding-bottom: 60rem;
}
@media screen and (max-width: 750px) {
  .c-content-header-2 .--sub-title {
    font-size: 24rem;
    line-height: 28rem;
  }
}
.c-content-header-2 .--title {
  font-size: 38rem;
  line-height: 50rem;
  padding-bottom: 50rem;
}
@media screen and (max-width: 750px) {
  .c-content-header-2 .--title {
    font-size: 38rem;
    line-height: 60rem;
  }
}
.c-content-header-2 .--text {
  padding-bottom: 60rem;
  font-size: 18rem;
  line-height: 36rem;
  padding-left: 40rem;
  padding-right: 40rem;
}
@media screen and (max-width: 750px) {
  .c-content-header-2 .--text {
    font-size: 24rem;
    line-height: 38rem;
  }
}

.c-article-card-2 {
  background: #fff;
}
.c-article-card-2 .--image {
  width: 100%;
  height: 287rem;
  position: relative;
}
.c-article-card-2 .--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-article-card-2 .--image figcaption {
  position: absolute;
  font-size: 16rem;
  line-height: 28rem;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #1C3B54;
  color: #fff;
  top: 0rem;
  left: 0rem;
  padding-right: 20rem;
  padding-left: 20rem;
  box-sizing: border-box;
}
.c-article-card-2 .--content {
  padding: 20rem;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.c-article-card-2 .--content .--text {
  font-size: 16rem;
  line-height: 28rem;
}
@media screen and (max-width: 750px) {
  .c-article-card-2 .--content .--text {
    font-size: 24rem;
    line-height: 38rem;
  }
}
.c-article-card-2 .--content .--text .--sub-title {
  font-size: 12rem;
  line-height: 28rem;
}
@media screen and (max-width: 750px) {
  .c-article-card-2 .--content .--text .--sub-title {
    font-size: 20rem;
    line-height: 38rem;
  }
}
.c-article-card-2 .--content .--text .--title {
  font-size: 18rem;
  line-height: 28rem;
}
@media screen and (max-width: 750px) {
  .c-article-card-2 .--content .--text .--title {
    font-size: 28rem;
    line-height: 42rem;
  }
}
.c-article-card-2 .--content .--time {
  font-size: 16rem;
  line-height: 28rem;
}
@media screen and (max-width: 750px) {
  .c-article-card-2 .--content .--time {
    font-size: 24rem;
    line-height: 38rem;
  }
}
.c-article-card-2 .--content .--time .--time-number {
  font-size: 40rem;
  line-height: 40rem;
  background: linear-gradient(90deg, #EACE76 0%, #C09B30 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
@media screen and (max-width: 750px) {
  .c-article-card-2 .--content .--time .--time-number {
    font-size: 56rem;
    line-height: 68rem;
  }
}

.c-card-list {
  display: flex;
  padding: 100rem;
  gap: 50rem;
}
@media screen and (max-width: 750px) {
  .c-card-list {
    padding: 40rem;
  }
}
.c-card-list .--title {
  font-size: 26rem;
  line-height: 38rem;
  padding-bottom: 20rem;
  border-bottom: 1px solid #000;
  margin-bottom: 30rem;
}
@media screen and (max-width: 750px) {
  .c-card-list .--title {
    font-size: 38rem;
    line-height: 48rem;
  }
}
.c-card-list .--list {
  padding-bottom: 40rem;
}
.c-card-list .--list li {
  font-size: 16rem;
  line-height: 28rem;
  margin-bottom: 10rem;
  list-style: disc;
  margin-left: 20rem;
}
@media screen and (max-width: 750px) {
  .c-card-list .--list li {
    font-size: 24rem;
    line-height: 38rem;
  }
}

.c-concept-mv {
  background: url(../img/common/mv_concept.webp) no-repeat center center;
  background-size: cover;
}
.c-concept-mv .--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  gap: 100rem;
  width: 90%;
  max-width: 1360rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 115rem;
  padding-bottom: 880rem;
}
@media screen and (max-width: 750px) {
  .c-concept-mv .--inner {
    padding-bottom: 510rem;
  }
}
.c-concept-mv .--img-text {
  max-width: 285rem;
}
.c-concept-mv .--img-text img {
  width: 100%;
  filter: brightness(0);
}
.c-concept-mv .--text {
  width: 655rem;
  font-size: 32rem;
  line-height: 54rem;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 750px) {
  .c-concept-mv .--text {
    font-size: 24rem;
    line-height: 38rem;
  }
}

.c-concept-2 .--inner {
  max-width: 1100rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-top: 100rem;
  padding-bottom: 100rem;
}
.c-concept-2 .--inner .--title {
  font-size: 40rem;
  line-height: 50rem;
  margin-bottom: 40rem;
  letter-spacing: 10rem;
}
.c-concept-2 .--inner .--text {
  font-size: 16rem;
  line-height: 38rem;
  letter-spacing: 3rem;
  padding-bottom: 40rem;
}
@media screen and (max-width: 750px) {
  .c-concept-2 .--inner .--text {
    font-size: 24rem;
    line-height: 42rem;
    padding-left: 40rem;
    padding-right: 40rem;
  }
}

.c-concept-nav {
  background: url(../img/common/bg_concrpt_nav.webp) no-repeat center center;
  background-size: cover;
  padding: 50rem;
}
.c-concept-nav .--inner {
  border: 1px solid #fff;
  color: white;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
@media screen and (max-width: 750px) {
  .c-concept-nav .--inner {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
  }
}
.c-concept-nav .--inner > .--box {
  padding: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 120rem;
  padding-top: 120rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.c-concept-nav .--inner > .--box:nth-child(2n) {
  border-right: none;
}
.c-concept-nav .--inner > .--box .--sub-title {
  font-size: 22rem;
  line-height: 22rem;
  padding-bottom: 50rem;
}
@media screen and (max-width: 750px) {
  .c-concept-nav .--inner > .--box .--sub-title {
    font-size: 20rem;
    line-height: 38rem;
  }
}
.c-concept-nav .--inner > .--box .--title {
  font-size: 35rem;
  margin-bottom: 20rem;
}
@media screen and (max-width: 750px) {
  .c-concept-nav .--inner > .--box .--title {
    font-size: 32rem;
  }
}
.c-concept-nav .--inner > .--box .--text {
  font-size: 16rem;
  line-height: 28rem;
  padding-bottom: 30rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .c-concept-nav .--inner > .--box .--text {
    font-size: 24rem;
    line-height: 38rem;
  }
}
.c-concept-nav .--inner > .--box a.--button, .c-concept-nav .--inner > .--box span.--button {
  align-self: center;
  border: 1px solid #fff;
  padding: 20rem 60rem;
  display: inline-block;
  color: #fff;
}
.c-concept-nav .--inner > .--box a.--button:hover, .c-concept-nav .--inner > .--box span.--button:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.c-concept-nav .--inner > .--box a.--button:after, .c-concept-nav .--inner > .--box span.--button:after {
  content: "";
  display: inline-block;
  width: 10rem;
  height: 10rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  margin-left: 15rem;
}
.c-concept-nav .--inner > .--box a.--button.--is-active, .c-concept-nav .--inner > .--box span.--button.--is-active {
  background-color: rgb(255, 255, 255);
  color: #000;
}
.c-concept-nav .--inner > .--box a.--button.--is-active:after, .c-concept-nav .--inner > .--box span.--button.--is-active:after {
  border-color: #000;
}
.c-concept-nav .--inner > .--box a.--button.--is-active:hover, .c-concept-nav .--inner > .--box span.--button.--is-active:hover {
  background-color: rgb(255, 255, 255);
  color: #000;
}
.c-concept-nav .--inner > .--box a.--button.--is-active:hover:after, .c-concept-nav .--inner > .--box span.--button.--is-active:hover:after {
  border-color: #000;
}

.c-advertising {
  display: flex;
  justify-content: center;
  border: 5rem solid #000;
  max-width: 610rem;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  align-content: center;
  box-sizing: border-box;
}
.c-advertising .--title {
  font-size: 30rem;
  line-height: 30rem;
  font-weight: bold;
  white-space: nowrap;
  font-weight: bold;
  padding: 20rem;
  box-sizing: border-box;
}
.c-advertising .--text {
  font-size: 16rem;
  line-height: 28rem;
  padding-top: 20rem;
  padding-bottom: 20rem;
  border-left: 5rem solid #000;
  padding: 20rem;
  box-sizing: border-box;
  font-weight: bold;
}

/***montreal-components***/
.c-comment-box {
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  border-radius: 40rem;
  padding: 15rem;
  background: #FF5C00;
  font-size: 20rem;
  position: relative;
  max-width: 800rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .c-comment-box {
    font-size: 26rem;
    padding: 36rem;
    border-radius: 80rem;
  }
}
.c-comment-box:after {
  content: "";
  display: block;
  width: 40rem;
  height: 40rem;
  position: absolute;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  background: #FF5C00;
  position: absolute;
  left: 50%;
  bottom: -22rem;
  margin-left: -20rem;
}

.c-input-base {
  width: 100%;
  border: 1px solid #DADADA;
  padding: 10rem 15rem 10rem 15rem;
  box-sizing: border-box;
  border-radius: 100rem;
}

.c-faq-box {
  margin-bottom: 40rem;
  z-index: 300;
}
.c-faq-box dt {
  background: #fff;
  padding: 20rem 30rem 20rem 30rem;
  border-radius: 10rem;
  font-size: 20rem;
  line-height: 30rem;
  font-weight: bold;
  box-sizing: border-box;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .c-faq-box dt {
    font-size: 26rem;
    line-height: 38rem;
    padding: 20rem 30rem 20rem 30rem;
    border-radius: 20rem;
  }
}
.c-faq-box dd {
  transition-duration: 0.5s;
  padding-top: 30rem;
  color: #fff;
  line-height: 30rem;
}
@media screen and (max-width: 750px) {
  .c-faq-box dd {
    font-size: 26rem;
    line-height: 48rem;
    padding: 20rem 30rem 20rem 30rem;
    border-radius: 20rem;
    padding-top: 40rem;
  }
}

.c-title-h3-2 {
  font-size: 34rem;
  line-height: 50rem;
  font-weight: bold;
  padding-bottom: 40rem;
}
.c-title-h3-2:after {
  content: "";
  display: block;
  width: 200rem;
  height: 2px;
  background: #000;
  margin-top: 20rem;
}
@media screen and (max-width: 750px) {
  .c-title-h3-2 {
    font-size: 34rem;
    line-height: 50rem;
  }
}

.c-textarea-base {
  width: 100%;
  border: 1px solid #DADADA;
  padding: 10rem 15rem 10rem 15rem;
  box-sizing: border-box;
  border-radius: 10rem;
  min-height: 200rem;
}

.c-header-btn {
  color: #fff;
  border: 1px solid #fff;
  padding: 15rem 50rem 15rem 50rem;
  box-sizing: border-box;
  text-align: center;
  font-size: 18rem;
  line-height: 18rem;
  font-weight: normal;
  border-radius: 5rem;
}

@media screen and (max-width: 750px) {
  .c-sp-bg-title-1 {
    font-size: 160rem !important;
    line-height: 160rem !important;
    margin-left: -3%;
    opacity: 0.4;
  }
}

.c-title-h3-1 {
  font-size: 50rem;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .c-title-h3-1 {
    font-size: 36rem;
  }
}

.c-tag-1 {
  background: #026EFD;
  padding: 5rem 10rem;
  border-radius: 20rem;
  color: #fff;
  font-size: 12rem;
  line-height: 18rem;
  font-weight: 500;
  display: inline-block;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .c-tag-1 {
    font-size: 20rem;
    line-height: 30rem;
    padding: 5rem 20rem;
    border-radius: 10rem;
    margin-bottom: 5rem;
  }
}

.c-tag-2 {
  background: #04A5C0;
  color: #fff;
  border-radius: 40rem;
  padding: 3rem 40rem;
}

.c-border-style-1 {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  height: 20rem;
}
.c-border-style-1 span {
  display: inline-block;
  padding: 10rem 20rem;
  font-size: 14rem;
  line-height: 24rem;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  top: -25rem;
  background: #fff;
}

.c-arrow-style-1 {
  background: #0E3363;
  color: #fff;
  box-sizing: border-box;
  padding: 20rem;
  font-size: 14rem;
}

.c-arrow-style-2 {
  background: #0058CE;
  color: #fff;
  box-sizing: border-box;
  padding: 20rem;
  font-size: 15rem;
  min-height: 113rem;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 10rem;
}

.c-table-title-style-1 {
  background: #026EFD;
  height: 165rem;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  padding-left: 5rem;
  padding-right: 5rem;
  font-size: 14rem;
  font-weight: bold;
  color: #fff;
}

.c-table-title-style-2 {
  background: #04A5C0;
  height: 165rem;
  padding-left: 5rem;
  padding-right: 5rem;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 14rem;
  font-weight: bold;
  color: #fff;
}

.c-table-list-style-1 {
  text-align: left;
  background: #EAF3F8;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: left;
  padding: 10rem 20rem;
  font-size: 14rem;
  width: 100%;
  line-height: 24rem;
  box-sizing: border-box;
  height: 165rem;
  border-top: 3px solid #0058CE;
}
.c-table-list-style-1 li {
  width: 100%;
}
.c-table-list-style-1.--color-green {
  border-top: 3px solid #04A5C0;
}

.c-table-box-style-2 {
  background-color: #D5E9F5;
  border-top: 3px solid #0058CE;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 14rem;
  font-weight: bold;
  height: 331rem;
}

@media screen and (max-width: 750px) {
  .c-data-box {
    margin-bottom: 20rem;
  }
}
.c-data-box dt {
  background: #FFF100;
  border: 1px solid #000;
  font-size: 16rem;
  min-width: 100rem;
  text-align: center;
  padding: 2rem 10rem 2rem 10rem;
  margin-right: 15rem;
}
@media screen and (max-width: 750px) {
  .c-data-box dt {
    font-size: 24rem;
    line-height: 38rem;
    margin-bottom: 10rem;
  }
}
.c-data-box dd {
  font-size: 16rem;
}
@media screen and (max-width: 750px) {
  .c-data-box dd {
    font-size: 24rem;
    line-height: 38rem;
  }
}

.c-bottom-arrow-1 {
  position: relative;
}
.c-bottom-arrow-1:after {
  content: "";
  display: block;
  width: 10rem;
  height: 10rem;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 10rem;
  left: 50%;
}

.u-text-bg-gradation {
  background: linear-gradient(90deg, #1D90FF 0%, #B1D5F8 100%);
  padding: 10rem;
  display: inline;
  color: #fff;
  line-height: 56rem;
  font-weight: bold;
}

.u-width-117 {
  width: 117rem;
}

.u-text-bg-gradation-2 {
  background: linear-gradient(90deg, #F1F8FF 0%, #DFEFFE 41%, #FFFFF0 100%);
  padding: 10rem;
  display: inline;
  color: #fff;
  line-height: 56rem;
  font-weight: bold;
  color: #000;
}

.u-n-mt-150 {
  margin-top: -150rem;
}

.u-text-bg-white-1 {
  background: #fff;
  padding: 5rem 20rem 5rem 20rem;
  display: inline;
  color: #000;
  line-height: 56rem;
  font-weight: bold;
  color: #000;
}

.u-c-gold-gradation {
  background: linear-gradient(90deg, #EACE76 0%, #C09B30 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.u-font-size-100 {
  font-size: 100rem;
  line-height: 100rem;
}

.u-font-size-64 {
  font-size: 64rem;
  line-height: 84rem;
}

.u-font-size-80 {
  font-size: 78rem;
  line-height: 130rem;
}

.u-pb-65 {
  padding-bottom: 65rem;
}

.u-font-size-18 {
  font-size: 18rem;
  line-height: 37rem;
}
@media screen and (max-width: 750px) {
  .u-font-size-18 {
    font-size: 19rem;
    line-height: 47rem;
  }
}

.u-bg-1 {
  background: url(../img/common/bg_1.webp);
  background-repeat: no-repeat;
}

.u-bg-2 {
  background: url(../img/common/bg_2.webp);
  background-repeat: no-repeat;
}

.u-pr-60 {
  padding-right: 60rem;
  box-sizing: border-box;
}

.u-border-radius-40 {
  border-radius: 40rem;
}

.u-width-630 {
  width: 630rem;
  box-sizing: border-box;
}

.u-pt-210 {
  padding-top: 210rem;
}

.u-mt-110 {
  margin-top: 110rem;
}

.u-bg-type-2 {
  background: url(../img/common/bg_tex_3.webp);
  background-repeat: no-repeat;
  background-size: 100%;
}

.u-n-width-630 {
  width: calc(100% - 720rem);
}

.u-bg-3 {
  background: url(../img/common/bg_3.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.u-bg-4 {
  background: url(../img/common/bg_img_1.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.u-bg-5 {
  background: url(../img/common/bg_img_2.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.u-pr-80 {
  padding-right: 80rem !important;
  box-sizing: border-box;
}

.u-pb-300 {
  padding-bottom: 300rem;
}

.u-z-10 {
  z-index: 10;
}

.p-bg-type-1 {
  position: relative;
  margin-top: -220rem;
}
.p-bg-type-1:before {
  content: "";
  display: block;
  width: 100%;
  height: 720rem;
  background: #1C3B54;
  position: absolute;
  top: 0;
  left: 0;
}

.u-pl-80 {
  padding-left: 80rem !important;
  box-sizing: border-box;
}

.u-n-mb-15 {
  margin-bottom: -15rem !important;
}

.u-n-mb-20 {
  margin-bottom: -20rem !important;
}

.u-pl-15 {
  padding-left: 15rem !important;
  box-sizing: border-box;
}

.u-pl-5 {
  padding-left: 5rem !important;
}

.u-bg-6 {
  background: url(../img/common/img_sdgs_bg_1.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.u-gap-40 {
  gap: 40rem;
}

.u-gap-60 {
  gap: 60rem;
}

.u-gap-65 {
  gap: 65rem;
}

.u-n-top-45 {
  top: -45rem;
}

.u-n-top-15 {
  top: -15rem;
}

.u-n-top-35 {
  top: -35rem;
}

.u-n-right-15 {
  right: -15rem;
}

.u-n-right-20 {
  right: -20rem;
}

.u-border-top-radius-10 {
  border-top-left-radius: 10rem;
  border-top-right-radius: 10rem;
}

.u-right-0 {
  right: 0rem;
}

.u-border-radius-left-20 {
  border-radius: 20rem 0rem 0rem 20rem;
}

.u-width-987 {
  width: 987rem;
}

.u-width-270 {
  width: 270rem;
}

.u-width-251 {
  width: 251rem !important;
}

.u-height-200 {
  height: 200rem;
}

.u-max-width-308 {
  max-width: 308rem;
}

.u-max-width-856 {
  max-width: 856rem;
}

.u-max-width-520 {
  max-width: 520rem;
}

.u-max-width-172 {
  max-width: 172rem;
}

.u-box-corner-blue {
  background: url(../img/blue_corner.svg) no-repeat top left;
}

.u-box-corner-blue-2 {
  background: url(../img/blue_corner_2.svg) no-repeat top left;
  background-size: 350rem;
}

.u-border-radius-top-left-10 {
  border-top-left-radius: 10rem;
}

.u-width-275 {
  width: 275rem;
}

.u-width-184 {
  width: 184rem !important;
}

.u-width-823 {
  width: 823rem;
}

.u-pb-140 {
  padding-bottom: 140rem;
}

.u-font-size-48 {
  font-size: 48rem;
}

.u-font-size-28 {
  font-size: 28rem;
  line-height: 46rem;
}
@media screen and (max-width: 750px) {
  .u-font-size-28 {
    font-size: 40rem;
    line-height: 60rem;
  }
}

.u-left-line {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: left;
}
.u-left-line:before {
  content: "";
  display: block;
  width: 10rem;
  height: 1rem;
  border-bottom: 1px solid #fff;
  margin-right: 5rem;
}

.u-label-1 {
  background: #1D90FF;
  display: inline-block;
  color: #fff;
  padding: 5rem 15rem 5rem 15rem;
  border-radius: 5rem;
}

.u-gap-30 {
  gap: 30rem;
}

.u-right-10 {
  right: 10rem;
}

.u-pb-110 {
  padding-bottom: 110rem;
}

.u-pt-280 {
  padding-top: 280rem;
}

.u-pb-115 {
  padding-bottom: 115rem;
}

.u-width-188 {
  width: 188rem;
}

.u-border-bottom-1-white {
  border-bottom: 1px solid #4F637E;
}

.u-pb-270 {
  padding-bottom: 270rem;
}

.u-color-black {
  color: #000 !important;
}

.u-height-57 {
  height: 57rem;
}

.u-width-25 {
  width: 25rem;
}

.u-bg-footer {
  background: url(../img/bg_footer.webp);
  padding-top: 75rem;
  padding-bottom: 75rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.u-width-60 {
  width: 60rem;
}

.u-p-10-20 {
  padding: 10rem 20rem;
}

.u-pt-0 {
  padding-top: 0rem !important;
}

.u-font-size-22 {
  font-size: 22rem;
  line-height: 33rem;
}
@media screen and (max-width: 750px) {
  .u-font-size-22 {
    font-size: 26rem;
    line-height: 45rem;
  }
}

.u-m-center {
  margin-left: auto;
  margin-right: auto;
}

.u-font-size-11 {
  font-size: 11rem;
  line-height: 20rem;
}

.u-bg-darkblue {
  background: #1C3B54;
}

.u-width-370 {
  width: 370rem;
}

.u-width-540 {
  width: 540rem;
  box-sizing: border-box;
}

.u-font-size-27 {
  font-size: 27rem;
  line-height: 36rem;
}
@media screen and (max-width: 750px) {
  .u-font-size-27 {
    font-size: 30rem;
    line-height: 40rem;
  }
}

.u-pb-80 {
  padding-bottom: 80rem;
}

.u-n-mt-20 {
  margin-top: -20rem;
}

.u-ml-20 {
  margin-left: 20rem;
}

.u-n-width-550 {
  width: calc(100% - 630rem);
}

.u-border-bottom-1-gray {
  border-bottom: 1px solid #989898;
}

.u-filter-shadow {
  filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.1));
}

.u-width-152 {
  width: 152rem !important;
}

.u-ml-center-side {
  margin-left: calc((100% - 1320rem) / 2);
}
@media screen and (max-width: 750px) {
  .u-ml-center-side {
    margin-left: 0rem;
  }
}

.u-bg-red {
  background: url(../img/common/bg_office.webp);
  background-size: cover;
  color: #fff;
}

.u-height-99 {
  height: 99rem;
}

.u-width-70 {
  width: 70rem;
}

.u-width-750 {
  width: 750rem;
}

.u-width-670 {
  width: 670rem;
}

.u-font-size-52 {
  font-size: 52rem;
  line-height: 74rem;
}

.u-font-size-54 {
  font-size: 54rem;
  line-height: 76rem;
}

.u-font-size-58 {
  font-size: 58rem;
  line-height: 74rem;
}

.u-font-size-60 {
  font-size: 60rem;
  line-height: 70rem;
}

.u-color-white {
  color: #fff;
}

.u-bg-gradient-1 {
  background: linear-gradient(90deg, #0068FF 0%, #25C5D8 100%);
  padding: 5rem 0rem;
}

.u-pt-270 {
  padding-top: 270rem;
}

.u-bg-tex {
  background: url(../img/common/bg_tex_1.webp) no-repeat center center;
  background-size: cover;
}

.u-bg-tex-2 {
  background: url(../img/common/bg_tex_2.webp) no-repeat center center;
  background-size: cover;
}

.u-bg-tex-3 {
  background: url(../img/common/bg_tex_3.webp) no-repeat center center;
  background-size: cover;
}

.u-bg-tex-4 {
  background: url(../img/common/bg_tex_1.webp) no-repeat center center;
  background-size: contain;
  background-position: center top;
}

.u-bg-blue {
  background: url(../img/bg_blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 750px) {
  .u-bg-blue {
    background: url(../img/bg_blue_sp.svg);
    background-repeat: no-repeat;
    background-size: 100%;
  }
}

.u-pt-95 {
  padding-top: 95rem;
}

.u-pb-55 {
  padding-bottom: 55rem;
}

.u-z-index-120 {
  z-index: 120;
}

.u-bg-blue-full {
  background: linear-gradient(90deg, #0068FF 0%, #25C5D8 100%);
  background-repeat: no-repeat;
  background-size: contain;
}

.u-width-385 {
  width: 385rem;
}

.u-width-38 {
  width: 38rem;
}

.u-width-420 {
  width: 420rem;
}

@media screen and (max-width: 750px) {
  .u-sp-n-mt-400 {
    margin-top: -400rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-n-mt-450 {
    margin-top: -450rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-n-mt-550 {
    margin-top: -550rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-n-mt-430 {
    margin-top: -430rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-n-mt-420 {
    margin-top: -420rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-bg-gradient-skyblue {
    background: linear-gradient(90deg, #F1F8FF 0%, #DFEFFE 41%, #FFFFF0 100%);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
}

.u-after-bg-1 {
  position: relative;
  padding-bottom: 120rem;
}
.u-after-bg-1:after {
  content: "";
  display: block;
  width: 100%;
  height: 600rem;
  background: linear-gradient(90deg, #F1F8FF 0%, #DFEFFE 41%, #FFFFF0 100%);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  z-index: -1;
}

.u-p-90 {
  padding: 90rem;
  box-sizing: border-box;
}

.u-font-size-38 {
  font-size: 38rem;
  line-height: 52rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .u-font-size-38 {
    font-size: 50rem;
    line-height: 70rem;
  }
}

.u-color-pink {
  color: #FF7686;
}

.u-width-660 {
  width: 660rem;
}

.u-pt-285 {
  padding-top: 285rem;
}
@media screen and (min-width: 1421px) {
  .u-pt-285 {
    padding-top: 315rem;
  }
}

.u-n-mt-400 {
  margin-top: -400rem;
}

.u-n-mt-350 {
  margin-top: -350rem;
}

.u-n-mt-300 {
  margin-top: -300rem;
}

.u-n-mt-270 {
  margin-top: -270rem;
}

.u-pt-200 {
  padding-top: 200rem;
}
@media screen and (min-width: 1421px) {
  .u-pt-200 {
    padding-top: 200rem;
  }
}

.u-width-457 {
  width: 457rem;
}

.u-width-707 {
  width: 707rem;
}

.u-n-right-707 {
  right: calc(100% - 707rem);
}

.u-pt-230 {
  padding-top: 230rem;
}

.u-width-480 {
  width: 480rem;
}

.u-n-width-580 {
  width: calc(100% - 580rem);
}

.u-title-line {
  position: relative;
}
.u-title-line:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  margin-top: 20rem;
  max-width: 200rem;
  margin-left: auto;
  margin-right: auto;
}

.u-height-90pc {
  height: 90%;
}

@media screen and (max-width: 750px) {
  .u-sp-text-center {
    text-align: center;
  }
}

.u-height-100pc {
  height: 100%;
}

.u-p-40-70 {
  padding: 40rem 70rem;
  box-sizing: border-box;
}

.u-n-width-600 {
  width: calc(100% - 640rem);
}

.u-font-size-34 {
  font-size: 34rem;
  line-height: 44rem;
}

.u-height-80pc {
  min-height: 300rem;
  height: 80%;
}

.u-ptb-90 {
  padding-top: 90rem;
  padding-bottom: 90rem;
}

.u-p-100 {
  padding: 100rem;
  box-sizing: border-box;
}

.u-width-80pc {
  width: 80%;
  box-sizing: border-box;
}

.u-p-100-50 {
  padding: 100rem 50rem;
  box-sizing: border-box;
}

.u-border-white-3 {
  border: 3px solid #fff;
  box-sizing: border-box;
}

.u-width-185 {
  width: 185rem;
}
@media screen and (max-width: 750px) {
  .u-width-185 {
    width: 185rem;
  }
}

.u-gap-140 {
  gap: 140rem;
}

.u-width-502 {
  width: 490rem;
}

.u-font-size-44 {
  font-size: 44rem;
  line-height: 54rem;
}

.u-font-size-42 {
  font-size: 42rem;
  line-height: 68rem;
}

.u-pb-25 {
  padding-bottom: 25rem;
}

.u-line-height-42 {
  line-height: 42rem;
}

.u-italic {
  font-style: italic;
}

.u-font-family-mincho {
  font-family: "yu-mincho-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.u-width-66 {
  width: 66rem;
}

.u-gap-120 {
  gap: 120rem;
}

.u-mt-n-120 {
  margin-top: -120rem;
}

.u-mt-n-200 {
  margin-top: -200rem;
}

.c-article.--style-1 {
  width: 33.333333% !important;
  margin-right: 0rem !important;
  padding: 10rem;
  box-sizing: border-box;
  border-right: #00A1E9 solid 1px;
}
@media screen and (max-width: 750px) {
  .c-article.--style-1 {
    width: 100% !important;
    border-right: none;
    border-bottom: #00A1E9 solid 1px;
  }
}
.c-article.--style-1 header {
  text-align: center;
}
.c-article.--style-1 figure img {
  width: 100%;
}

.c-sp-nav {
  position: fixed;
  background: #fff;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  z-index: 100;
  display: none;
}
.c-sp-nav.active {
  display: flex;
}
.c-sp-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 100%;
}
.c-sp-nav ul li {
  width: 100%;
  text-align: center;
}
.c-sp-nav ul li a {
  display: block;
  color: #000;
  padding-top: 20rem;
  padding-bottom: 20rem;
  font-size: 34rem;
}

.c-input {
  width: 100%;
  border: 1px solid #000;
  padding: 10rem;
  box-sizing: border-box;
  border-radius: 100rem;
}
.c-input.--style-1 {
  width: 100%;
  padding: 20rem;
  box-sizing: border-box;
}

.c-text.--type-1 {
  font-size: 80rem;
  line-height: 80rem;
  font-family: "Oswald", sans-serif;
  position: relative;
}
@media screen and (max-width: 750px) {
  .c-text.--type-1 {
    font-size: 80rem;
    line-height: 80rem;
  }
}
.c-text.--type-1 b {
  font-weight: normal;
}
.c-text.--type-1 b:nth-child(1).--color-orange {
  color: #FF5C00;
}
.c-text.--type-1 b:nth-child(1).--color-yellow {
  color: #FFF100;
}
.c-text.--type-1 b:nth-child(1).--color-blue {
  color: #00A1E9;
}
.c-text.--type-1 b:nth-child(1).--color-black {
  color: #000;
}
.c-text.--type-1 b:nth-child(2) {
  position: absolute;
  left: -3rem;
  top: -3rem;
  color: transparent;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #000;
}

.c-flag-2 {
  max-width: 160rem !important;
  width: 160rem;
  position: absolute;
  left: 360rem !important;
  top: 18rem !important;
}

.c-company-figure {
  width: calc(50% - 40rem);
}
.c-company-figure img {
  width: 100%;
  height: 596rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 750px) {
  .c-company-figure {
    width: 100%;
    margin-bottom: 20rem;
  }
}

.c-title-bg {
  position: absolute;
  left: 0rem;
  top: 0rem;
  height: 340rem;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .c-title-bg {
    height: 100%;
  }
}

.u-bg-sub-header {
  background: url(../img/sub_header_bg.webp) no-repeat center center;
  background-size: cover;
  background-position: center;
  padding-top: 178rem;
  padding-bottom: 90rem;
}
@media screen and (max-width: 750px) {
  .u-bg-sub-header {
    padding-top: 190rem;
  }
}
.u-bg-sub-header.--bg-type-2 {
  background: url(../img/sub_header_bg_2.webp) no-repeat center center;
  background-size: cover;
  background-position: center;
}
.u-bg-sub-header.--bg-type-3 {
  background: url(../img/sub_header_bg_3.webp) no-repeat center center;
  background-size: cover;
  background-position: center;
}
.u-bg-sub-header.--bg-type-4 {
  background: url(../img/sub_header_bg_4.webp) no-repeat center center;
  background-size: cover;
  background-position: center;
}
.u-bg-sub-header.--bg-type-5 {
  background: url(../img/sub_header_bg_5.webp) no-repeat center center;
  background-size: cover;
  background-position: center;
}
.u-bg-sub-header.--bg-type-6 {
  background: url(../img/sub_header_bg_6.webp) no-repeat center center;
  background-size: cover;
  background-position: center;
}
.u-bg-sub-header.--bg-type-7 {
  background: url(../img/sub_header_bg_7.webp) no-repeat center center;
  background-size: cover;
  background-position: center;
}
.u-bg-sub-header.--bg-type-8 {
  background: url(../img/sub_header_bg_8.webp) no-repeat center center;
  background-size: cover;
  background-position: center;
}
.u-bg-sub-header.--bg-type-9 {
  background: url(../img/sub_header_bg_9.webp) no-repeat center center;
  background-size: cover;
  background-position: center;
}
.u-bg-sub-header.--bg-type-10 {
  background: url(../img/sub_header_bg_10.webp) no-repeat center center;
  background-size: cover;
  background-position: center;
}

.c-textarea {
  width: 100%;
  border: 1px solid #000;
  padding: 10rem;
  box-sizing: border-box;
  border-radius: 10rem;
  min-height: 200rem;
}
.c-textarea.--style-1 {
  width: 100%;
  padding: 20rem;
  box-sizing: border-box;
}

.c-title-line-2 {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.c-title-line-2:after {
  content: "";
  display: block;
  width: calc(100% - 150rem);
  border-bottom: 1px solid #fff;
}

.c-title-line-3:after {
  content: "";
  display: block;
  width: 300rem;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 3px solid #1D90FF;
}

.c-button-1 {
  display: block;
  border: 1px solid #000;
  color: #000;
  text-align: center;
  padding: 10rem 20rem 10rem 20rem;
  box-sizing: border-box;
  border-radius: 50rem;
  font-size: 24rem;
}
.c-button-1.--white {
  border: 1px solid #fff;
  color: #fff;
  padding: 15rem 20rem 15rem 20rem;
}
.c-button-1.--size-l {
  padding: 20rem 40rem 20rem 40rem;
  font-size: 24rem;
}
.c-button-1.--center-box {
  margin-left: auto;
  margin-right: auto;
}

.c-title {
  color: #FF5C00;
  font-size: 24rem;
  font-weight: bold;
  margin-bottom: 20rem;
}
.c-title:after {
  content: "";
  display: block;
  width: 180rem;
  border-bottom: #FF5C00 solid 3rem;
  margin-top: 15rem;
}
@media screen and (max-width: 750px) {
  .c-title {
    font-size: 40rem;
    line-height: 50rem;
    padding-top: 20rem;
  }
  .c-title:after {
    width: 100rem;
    margin-top: 20rem;
  }
}

.c-label-style-1 {
  border: 1px solid #55ABFD;
  color: #55ABFD;
  border-radius: 30rem;
  text-align: center;
  padding: 5rem;
  font-size: 12rem;
}
@media screen and (max-width: 750px) {
  .c-label-style-1 {
    font-size: 20rem;
    line-height: 30rem;
    padding: 15rem 30rem 15rem 30rem !important;
  }
}

.c-circle-number {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 80rem;
  height: 80rem;
  border-radius: 50%;
  background: #0068FF;
  color: #fff;
  text-align: center;
  font-size: 40rem;
  line-height: 80rem;
  font-weight: bold;
  margin-right: 20rem;
}

.c-underline-gradient-1:after {
  content: "";
  display: block;
  width: 300rem;
  height: 3px;
  background: linear-gradient(to right, #0068FF, #25C5D8);
}

.c-flow-arrow {
  width: 119rem;
  height: 151rem;
  -webkit-clip-path: polygon(50% 20%, 100% 0, 100% 80%, 50% 100%, 0 80%, 0% 0%);
          clip-path: polygon(50% 20%, 100% 0, 100% 80%, 50% 100%, 0 80%, 0% 0%);
  background-color: #0E47C1;
  color: #fff;
  padding-top: 20rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  text-align: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  box-sizing: border-box;
}
.c-flow-arrow span {
  display: block;
  width: 100%;
}
.c-flow-arrow span:first-child {
  font-size: 20rem;
  line-height: 20rem;
}
.c-flow-arrow span:last-child {
  font-size: 60rem;
  line-height: 60rem;
}
.c-flow-arrow.--blue-2 {
  background-color: #175DC1;
}
.c-flow-arrow.--blue-3 {
  background-color: #247BC2;
}
.c-flow-arrow.--blue-4 {
  background-color: #359FC2;
}
.c-flow-arrow.--blue-5 {
  background-color: #3DB4C3;
}

.c-gnav a:hover {
  color: #00A1E9;
  opacity: 1;
}

.c-label-style-2 {
  border: 1px solid #1D90FF;
  color: #1D90FF;
  border-radius: 3rem;
  text-align: center;
  padding: 5rem 20rem 5rem 20rem;
  font-size: 12rem;
}
@media screen and (max-width: 750px) {
  .c-label-style-2 {
    font-size: 20rem;
    line-height: 30rem;
    padding: 15rem 30rem 15rem 30rem !important;
  }
}

.c-color-blue-1 {
  color: #4171d2;
}

.c-white-box-1 {
  background: #fff;
  border-radius: 10rem;
  padding: 20rem;
  min-width: 410rem;
  width: 100%;
  box-sizing: border-box;
}
.c-white-box-1.--width-400 {
  max-width: 400rem;
}
.c-white-box-1.--width-484 {
  max-width: 484rem;
}
.c-white-box-1.--width-464 {
  max-width: 464rem;
}
.c-white-box-1.--width-502 {
  width: 502rem;
}
@media screen and (max-width: 750px) {
  .c-white-box-1 {
    padding: 20rem;
  }
  .c-white-box-1.--sp-width-box {
    width: 100%;
    max-width: 94%;
    margin-left: auto;
    margin-right: auto;
  }
}

.c-position-center {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 0rem;
}

.c-child-all-pl-10 li {
  padding-left: 10rem;
}

@media screen and (max-width: 750px) {
  .c-sp-child-all-pl-0 li {
    padding-left: 0rem;
  }
}

.c-box-blue {
  background: #1D90FF;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.u-color-yellow-2 {
  color: #dcc349;
}

.c-title-h3-4 {
  font-size: 30rem;
  font-weight: bold;
  line-height: 40rem;
  color: #000;
  font-weight: bold;
  color: #005FFF;
  padding-bottom: 30rem;
}
.c-title-h3-4:after {
  content: "";
  border-bottom: 1px solid #005FFF;
  display: block;
  width: 150rem;
  margin-top: 20rem;
}
@media screen and (max-width: 750px) {
  .c-title-h3-4 {
    font-size: 40rem;
    line-height: 50rem;
    padding-bottom: 30rem;
  }
  .c-title-h3-4:after {
    width: 200rem;
    margin-top: 20rem;
  }
}

.u-color-yellow-1 {
  color: #dfa640;
}

.u-ml-40 {
  margin-left: 40rem;
}

.u-ml-50 {
  margin-left: 50rem;
}

.u-mr-50 {
  margin-right: 50rem;
}

.u-ml-60 {
  margin-left: 60rem;
}

.u-mr-60 {
  margin-right: 60rem;
}

.u-ml-80 {
  margin-left: 80rem;
}

.u-mr-90 {
  margin-right: 90rem;
}

.u-color-green-1 {
  color: #63bdb8;
}

.u-color-skyblue-1 {
  color: #67c3cc;
}

.u-under-darkblue:after {
  content: "";
  display: block;
  width: 100%;
  height: 700rem;
  background-color: #1C3B54;
  margin-top: -567rem;
}

.c-box-white {
  padding: 10rem 20rem 10rem 20rem;
  border-radius: 10rem;
  border: 1px solid white;
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  margin-top: 30rem;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .c-box-white {
    padding: 20rem;
  }
}

.c-coin {
  width: 90rem;
  height: 90rem;
  background: linear-gradient(to bottom, #FFFFFF, #F7D600);
  border-radius: 50%;
  border: 10rem solid #FFEA5F;
  z-index: 1;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15rem;
  line-height: 20rem;
  font-weight: bold;
  box-sizing: border-box;
}

.c-phone-box {
  background: #fff;
  max-width: 520rem;
  width: 94%;
  border-radius: 5rem;
  border: 1px solid #000;
  box-sizing: border-box;
  padding: 24rem;
}
@media screen and (max-width: 750px) {
  .c-phone-box {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20rem;
  }
}

.c-tabs-btn {
  background: #fff;
  border-radius: 5rem;
  padding: 10rem 20rem 10rem 20rem;
  font-size: 20rem;
  line-height: 30rem;
  position: relative;
  cursor: pointer;
}
.c-tabs-btn.over:after {
  content: "";
  display: block;
  width: 17rem;
  height: 17rem;
  background-color: #fff;
  position: absolute;
  bottom: -8rem;
  right: calc(50% - 8.5rem);
  transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
  .c-tabs-btn {
    font-size: 24rem;
    line-height: 34rem;
    padding: 10rem 20rem 10rem 20rem;
  }
}

.c-responsive-iframe {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}
.c-responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.c-responsive-video {
  position: relative;
  width: 100%;
  max-width: 1200rem;
  margin: 0 auto;
  border-radius: 10rem;
  overflow: hidden;
  box-shadow: 0 4rem 20rem rgba(0, 0, 0, 0.3);
}
.c-responsive-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10rem;
}
@media screen and (max-width: 750px) {
  .c-responsive-video {
    max-width: 95%;
    border-radius: 8rem;
  }
  .c-responsive-video video {
    border-radius: 8rem;
  }
}

/* FAQ Styles - トグル機能に必要な最小限のCSS */
.c-faq-box dd {
  overflow: hidden;
}

/* ハンバーガーメニュースタイル - 削除（上部で定義済み） */
.c-sp-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, rgba(34, 96, 215, 0.95) 0%, rgba(0, 51, 153, 0.98) 50%, rgba(13, 27, 79, 0.99) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 200;
  padding-top: 100rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-sp-menu.active {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.c-sp-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.c-sp-menu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.c-sp-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 50rem;
  height: calc(100vh - 200rem);
  justify-content: center;
  position: relative;
  z-index: 10;
}

.c-sp-menu li {
  width: 100%;
  max-width: 600rem;
  opacity: 0;
  transform: translateY(30rem);
  -webkit-animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: slideInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.c-sp-menu li:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.c-sp-menu li:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.c-sp-menu li:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.c-sp-menu li:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.c-sp-menu li:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.c-sp-menu li:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.c-sp-menu a {
  color: white;
  font-size: 32rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 30rem 40rem;
  margin: 10rem 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.c-sp-menu a::before {
  content: "";
  width: 20rem;
  height: 20rem;
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(-45deg);
  margin-right: 20rem;
  transition: all 0.3s ease;
}
.c-sp-menu a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s;
}
.c-sp-menu a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateX(10rem);
  box-shadow: 0 10rem 30rem rgba(0, 0, 0, 0.2);
}
.c-sp-menu a:hover::before {
  border-color: #FFA322;
  transform: rotate(-45deg) scale(1.2);
}
.c-sp-menu a:hover::after {
  left: 100%;
}
.c-sp-menu a:active {
  transform: translateX(10rem) scale(0.98);
}

@-webkit-keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-sp-menu-close {
  position: absolute;
  top: 30rem;
  right: 30rem;
  width: 50rem;
  height: 50rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.c-sp-menu-close::before, .c-sp-menu-close::after {
  content: "";
  position: absolute;
  width: 20rem;
  height: 2px;
  background: white;
}
.c-sp-menu-close::before {
  transform: rotate(45deg);
}
.c-sp-menu-close::after {
  transform: rotate(-45deg);
}
.c-sp-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

@media screen and (max-width: 750px) {
  .c-sp-menu {
    padding-top: 120rem;
  }
  .c-sp-menu ul {
    padding: 0 30rem;
  }
  .c-sp-menu a {
    font-size: 40rem;
    padding: 40rem 30rem;
  }
  .c-sp-menu a::before {
    width: 25rem;
    height: 25rem;
    margin-right: 25rem;
  }
}
.p-header-contact-wrapper {
  position: relative;
}

.c-mega-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1100;
  pointer-events: none;
}
.c-mega-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.c-mega-menu__content {
  position: absolute;
  top: 95rem; /* ヘッダーの下端に接する */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 20rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0 0 20rem 20rem; /* 上の角を丸くしない */
  padding: 60rem 40rem;
  box-shadow: 0 20rem 60rem rgba(0, 0, 0, 0.15);
  max-width: 100%;
  width: 100%;
}

.c-mega-menu__item {
  flex: 1;
  text-align: center;
  padding: 20rem 20rem;
  border-radius: 15rem;
  background: #ffffff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.c-mega-menu__item--split {
  width: 260rem;
  flex: none;
}
.c-mega-menu__item:not(.c-mega-menu__item--split) {
  width: 346rem;
  flex: none;
}
.c-mega-menu__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}
.c-mega-menu__item:hover {
  transform: translateY(-5rem);
  box-shadow: 0 10rem 30rem rgba(0, 0, 0, 0.1);
}
.c-mega-menu__item:hover::before {
  left: 100%;
}
.c-mega-menu__item--split {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  background: transparent;
}
.c-mega-menu__item--split:hover {
  transform: none;
  box-shadow: none;
}
.c-mega-menu__item--split::before {
  display: none;
}

.c-mega-menu__split-item {
  text-align: center;
  padding: 25rem 20rem;
  border-radius: 15rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.c-mega-menu__split-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}
.c-mega-menu__split-item:hover {
  transform: translateY(-5rem);
  box-shadow: 0 10rem 30rem rgba(0, 0, 0, 0.1);
}
.c-mega-menu__split-item:hover::before {
  left: 100%;
}
.c-mega-menu__split-item--top {
  background: white;
  margin-bottom: 10rem;
}
.c-mega-menu__split-item--top .c-mega-menu__text h3, .c-mega-menu__split-item--top .c-mega-menu__text p {
  color: #333;
}
.c-mega-menu__split-item--bottom {
  background: white;
}
.c-mega-menu__split-item--bottom .c-mega-menu__text h3, .c-mega-menu__split-item--bottom .c-mega-menu__text p {
  color: #333;
}
@media screen and (max-width: 1200px) {
  .c-mega-menu__split-item {
    padding: 25rem 15rem;
  }
  .c-mega-menu__split-item--top {
    margin-bottom: 8rem;
  }
}

.c-mega-menu__icon {
  width: auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
  height: 106rem;
  margin: 0 auto 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-mega-menu__icon img {
  height: 106rem;
}
.c-mega-menu__text {
  margin-bottom: 0rem;
}
.c-mega-menu__text h3 {
  font-size: 20rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8rem;
}
@media screen and (max-width: 750px) {
  .c-mega-menu__text h3 {
    font-size: 24rem;
  }
}
.c-mega-menu__text p {
  font-size: 14rem;
  color: #666;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .c-mega-menu__text p {
    font-size: 18rem;
  }
}

.c-table-2-middle {
  border-spacing: 20px;
}

.c-mega-menu__btn {
  border: 1px solid #000;
  padding: 10rem 20rem;
  border-radius: 100rem;
  background-color: #fff;
  font-size: 14rem;
  line-height: 14rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  filter: drop-shadow(0px 8px 4px rgba(0, 0, 0, 0.06));
}
.c-mega-menu__btn:before {
  content: "";
  display: block;
  width: 6rem;
  height: 6rem;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
  margin-right: 10rem;
}
@media screen and (max-width: 750px) {
  .c-mega-menu__btn {
    font-size: 26rem;
    padding: 40rem;
  }
}
.c-mega-menu__btn:hover {
  transform: translateY(-2rem);
  box-shadow: 0 10rem 20rem rgba(0, 0, 0, 0.15);
}

.c-mega-menu__btn--blue {
  background: #2260D7;
  border: none;
  box-shadow: none;
  padding-top: 15rem;
  padding-bottom: 15rem;
  color: #fff;
}
.c-mega-menu__btn--blue:before {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.c-side-btn {
  position: fixed;
  top: 300rem;
  right: 0rem;
  z-index: 150;
}
@media screen and (max-width: 750px) {
  .c-side-btn {
    top: auto;
    bottom: 50rem;
  }
}
.c-side-btn a {
  background: #FFA322;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  border-radius: 10rem 0rem 0rem 10rem;
  z-index: 100;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 24rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: block;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 20rem 15rem 100rem 15rem;
}

.c-mega-menu__btn--orange {
  background: #FFA322;
  border: none;
  box-shadow: none;
  padding-top: 15rem;
  padding-bottom: 15rem;
  color: #fff;
}
.c-mega-menu__btn--orange:before {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

@-webkit-keyframes megaMenuSlideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-30rem);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes megaMenuSlideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-30rem);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.c-mega-menu.active .c-mega-menu__content {
  -webkit-animation: megaMenuSlideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
          animation: megaMenuSlideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@media screen and (max-width: 768px) {
  .c-hamburger {
    display: block;
  }
  .u-pc-only-flex {
    display: none !important;
  }
  .c-mega-menu {
    display: none !important;
  }
}
.c-side-header {
  background: url(../img/common/bg_sub_header.webp);
  background-repeat: no-repeat;
  padding-top: 60rem;
  padding-bottom: 60rem;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 750px) {
  .u-sp-overflow-auto-no-scroll {
    overflow: auto;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-width-full {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .u-sp-width-full.--sp-n-100 {
    width: calc(100% - 100rem);
  }
}

@media screen and (max-width: 750px) {
  .u-sp-width-1500 {
    width: 1500rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-box-sizing-border-box {
    width: 100% !important;
    box-sizing: border-box;
  }
}

.u-max-width-1197 {
  width: 94%;
  max-width: 1197rem;
}
@media screen and (max-width: 750px) {
  .u-max-width-1197 {
    max-width: 100% !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-width-auto {
    width: auto !important;
  }
}

.c-label {
  font-size: 12rem;
  border: 1px solid #000000;
  display: block;
  max-width: 200rem;
  border-radius: 30rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10rem;
}

.c-next-arrow-1 {
  position: relative;
  text-align: center;
}
.c-next-arrow-1:after {
  position: absolute;
  content: "";
  width: 40rem;
  height: 40rem;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  display: block;
  transform: rotate(-45deg);
  top: 34%;
  right: -45rem;
}
@media screen and (max-width: 750px) {
  .c-next-arrow-1:after {
    position: relative;
    transform: rotate(45deg);
    margin-left: auto;
    margin-right: auto;
    right: 0rem;
    left: 0rem;
    margin-top: 40rem;
    margin-bottom: 60rem;
  }
}

.c-sp-gnav {
  display: none;
  position: fixed;
  background: #fff;
  z-index: 200;
  width: 100%;
  max-width: 483rem;
  top: 10rem;
  right: 10rem;
  padding-top: 116rem;
  border-radius: 10rem;
  filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.15));
}
.c-sp-gnav ul {
  padding: 0rem 100rem 70rem 100rem;
}
.c-sp-gnav ul a {
  padding-bottom: 49rem;
  padding-top: 48rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-bottom: 1px solid #C1C1C1;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  font-size: 34rem;
}
.c-sp-gnav ul li:first-child a {
  padding-top: 0rem;
}
.c-sp-gnav ul li:last-child a {
  border-bottom: none;
  color: #FE4A4A;
}

.c-table {
  border-bottom: 1px solid #EDEDED;
}
.c-table dt {
  width: 200rem;
}
@media screen and (max-width: 750px) {
  .c-table dt {
    width: 100rem;
  }
}
.c-table dd {
  width: calc(100% - 200rem);
}
@media screen and (max-width: 750px) {
  .c-table dd {
    width: calc(100% - 150rem);
  }
}

.c-h3:after {
  content: "";
  width: 212rem;
  display: block;
  border-bottom: 1px solid #000;
  margin-top: 20rem;
}

.c-title-white-1 {
  background: #fff;
  border-radius: 10rem;
  padding: 20rem;
  font-size: 24rem;
  font-weight: 500;
  line-height: 30rem;
  color: #000;
  text-align: center;
}

.c-h2 {
  font-size: 60rem;
  font-weight: bold;
  padding-bottom: 40rem;
  background: linear-gradient(to right, #0068FF, #25C5D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding: 5rem;
}
.c-h2:after {
  content: "";
  display: block;
  width: 270rem;
  height: 7rem;
  background-size: 100%;
  background: linear-gradient(to right, #0068FF, #25C5D8);
  margin-top: 30rem;
}
.c-h2.--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.c-h2.--center:after {
  margin-left: auto;
  margin-right: auto;
}
.c-h2.--under-line-1:after {
  content: "";
  display: block;
  height: 1px;
}

.c-title-h2-1 {
  font-size: 60rem;
  font-weight: bold;
  padding-bottom: 40rem;
}
.c-title-h2-1 span {
  background: linear-gradient(to right, #0068FF, #25C5D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-title-h2-1:after {
  content: "";
  display: block;
  width: 270rem;
  height: 7rem;
  background-size: 100%;
  margin-top: 30rem;
  background: linear-gradient(to right, #0068FF, #25C5D8);
}
.c-title-h2-1.--line-center:after {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .c-title-h2-1.--sp-line-center:after {
    margin-left: auto;
    margin-right: auto;
  }
}

.c-title-h2-2 {
  font-size: 60rem;
  font-weight: bold;
  padding-bottom: 40rem;
  text-align: center;
}
.c-title-h2-2 span {
  background: linear-gradient(to right, #0068FF, #25C5D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-title-h2-2:after {
  content: "";
  display: block;
  width: 270rem;
  height: 7rem;
  background-size: 100%;
  margin-top: 30rem;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(to right, #0068FF, #25C5D8);
}
.c-title-h2-2.--white span {
  background: linear-gradient(to right, #fff, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-title-h2-2.--white:after {
  background: linear-gradient(to right, #fff, #fff);
}

.c-title-h2-3 {
  color: #FFFFFF;
  text-align: center;
  font-size: 50rem;
  line-height: 64rem;
  font-weight: bold;
  filter: drop-shadow(0 10rem 10rem rgba(0, 0, 0, 0.2));
}

.c-title-h3-3 {
  font-size: 18rem;
  font-weight: bold;
  line-height: 28rem;
  background: linear-gradient(to left, #0068FF, #25C5D8);
  text-align: center;
  padding: 10rem;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .c-title-h3-3 {
    font-size: 24rem;
    padding: 20rem;
  }
}

@media screen and (max-width: 750px) {
  .c-logo-list {
    padding-right: 40rem;
    padding-left: 40rem;
  }
}
@media screen and (max-width: 750px) {
  .c-logo-list li {
    width: calc(33.3333333333% - 20rem);
  }
  .c-logo-list li img {
    width: 100%;
  }
}

.c-table-1 {
  border-top: 1px solid #B2B6BC;
  width: 100%;
  max-width: 1168rem;
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: top;
}
.c-table-1 th, .c-table-1 td {
  border-bottom: 1px solid #B2B6BC;
  border-collapse: collapse;
  border-spacing: 0;
  box-sizing: border-box;
  vertical-align: top;
}
.c-table-1 th {
  padding: 30rem;
  width: 325rem;
  background: #F2F6F7;
  text-align: left;
  font-size: 21rem;
  box-sizing: border-box;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .c-table-1 th {
    font-size: 26rem;
    line-height: 36rem;
  }
}
.c-table-1 td {
  padding: 20rem;
  vertical-align: middle;
}
.c-table-1 tr:last-child th {
  vertical-align: top !important;
}
@media screen and (max-width: 750px) {
  .c-table-1 {
    border-top: none;
  }
  .c-table-1 th, .c-table-1 td {
    display: block;
    width: 100%;
    border: none;
  }
  .c-table-1 th {
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 20rem;
  }
  .c-table-1 td {
    border-top: none;
    padding-top: 0rem;
  }
}

.c-table-2 {
  border-radius: 20rem;
  border-spacing: 0rem;
  border-collapse: collapse;
  border: none;
  min-width: 1240rem;
  table-layout: fixed;
  margin-left: auto;
  margin-right: auto;
}
.c-table-2 tr:first-child th .--table-inner {
  background-color: #fff;
}
.c-table-2 tr:not(:first-child) td, .c-table-2 tr:not(:first-child) th {
  height: 165rem;
}
.c-table-2 th {
  padding: 0rem;
  margin: 0rem;
  position: relative;
}
.c-table-2 th .--left-th {
  position: relative;
  background: #37ACD7;
  display: block;
  min-height: 134rem;
  color: #fff;
  margin-top: 15rem;
  margin-bottom: 15rem;
  border-radius: 20rem 0rem 0rem 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 20rem;
  box-sizing: border-box;
  font-size: 16rem;
  max-width: 297rem;
}
.c-table-2 th .--left-th dt {
  background: #fff;
  width: 146rem;
  font-weight: normal;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20rem;
  padding: 10rem;
  box-sizing: border-box;
  position: relative;
  margin-top: -80rem;
  color: #000;
  border-top: 4rem solid #76C3E0;
}
@media screen and (max-width: 750px) {
  .c-table-2 th .--left-th dt {
    font-size: 20rem;
    line-height: 34rem;
  }
}
.c-table-2 th .--left-th dd {
  font-weight: bold;
  font-size: 16rem;
  line-height: 28rem;
  text-align: center;
  display: flex;
  min-height: 56rem;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .c-table-2 th .--left-th dd {
    font-size: 20rem;
    line-height: 34rem;
  }
}
.c-table-2 th .--left-th .--table-inner {
  background-color: none;
}
.c-table-2 th:nth-child(1) {
  width: 297rem;
}
.c-table-2 th:nth-child(2) {
  width: 326rem;
}
.c-table-2 th:nth-child(3) {
  width: 306rem;
}
.c-table-2 th:nth-child(4) {
  width: 306rem;
}
.c-table-2 td {
  padding: 0rem;
  margin: 0rem;
  vertical-align: top;
}
.c-table-2 td .--table-inner-wrap {
  background-color: #fff;
  display: flex;
  margin-right: 15rem;
  width: calc(100% - 15rem);
  box-sizing: border-box;
  padding-top: 15rem;
  padding-bottom: 15rem;
  height: 100%;
  align-items: flex-start;
}
.c-table-2 td .--table-inner-wrap .--table-inner {
  min-height: 150rem;
  background: #EDF6FF;
  margin-left: 20rem;
  margin-right: 20rem;
  border-radius: 10rem;
  padding: 20rem 20rem 10rem 20rem;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
.c-table-2 td .--table-inner-wrap .--table-inner figure {
  width: 100%;
}
.c-table-2 td ul {
  padding-top: 5rem;
  min-height: 55rem;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.c-table-2 td ul li {
  width: 100%;
  font-size: 13rem;
  list-style-type: disc;
  text-align: left;
  margin-left: 20rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 750px) {
  .c-table-2 td ul li {
    font-size: 20rem;
    line-height: 34rem;
  }
}
.c-table-2 td:nth-child(3) .--table-inner-wrap .--table-inner {
  background-color: #F2F2F2;
}
.c-table-2 td:nth-child(4) .--table-inner-wrap .--table-inner {
  background-color: #F2F2F2;
}

.c-table-top-1 {
  font-size: 40rem;
  line-height: 50rem;
  font-weight: bold;
  background: #F2F6F7;
  padding: 30rem;
  width: 200rem;
  text-align: center;
  vertical-align: middle;
  background: linear-gradient(to right, #0068FF, #25C5D8);
  color: #fff;
  border-radius: 20rem 20rem 0rem 0rem;
  width: calc(100% - 15rem);
  box-sizing: border-box;
}
.c-table-top-1 .--table-inner {
  background-color: transparent !important;
}

.c-table-top-2 {
  font-size: 26rem;
  line-height: 50rem;
  font-weight: bold;
  background: #F2F6F7;
  padding: 0rem;
  text-align: center;
  vertical-align: middle;
  background: #fff;
  color: #000;
  border-radius: 20rem 20rem 0rem 0rem;
  width: calc(100% - 15rem);
  box-sizing: border-box;
  margin-top: 20rem;
  height: 90rem !important;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.c-table-white {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: top;
}
.c-table-white th, .c-table-white td {
  border: 1px solid #fff;
  padding: 40rem;
  font-size: 16rem;
  line-height: 34rem;
}
@media screen and (max-width: 750px) {
  .c-table-white th, .c-table-white td {
    font-size: 24rem;
    line-height: 42rem;
  }
}
.c-table-white th {
  background: rgba(255, 255, 255, 0.1);
  width: 284rem;
  box-sizing: border-box;
  text-align: left;
  vertical-align: top;
  font-size: 20rem;
}
@media screen and (max-width: 750px) {
  .c-table-white th {
    width: 184rem;
  }
}

.u-bg-none {
  background-color: transparent !important;
}

.c-breadcrumb li:after {
  content: ">";
  margin-left: 10rem;
  margin-right: 10rem;
}
.c-breadcrumb li:last-child:after {
  content: "";
}

.c-sns-icon {
  background: #fff;
  display: flex;
  border-radius: 40rem;
  width: 34rem;
  height: 34rem;
  align-items: center;
  aling-content: center;
  justify-content: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}
.c-sns-icon img {
  width: 50%;
  height: auto;
}
@media screen and (max-width: 750px) {
  .c-sns-icon {
    width: 80rem;
    height: 80rem;
    border-radius: 80rem;
  }
}
.c-sns-icon.--size-l {
  width: 42rem;
  height: 42rem;
  border-radius: 80rem;
}
@media screen and (max-width: 750px) {
  .c-sns-icon.--size-l {
    width: 70rem;
    height: 70rem;
    border-radius: 40rem;
  }
}

.u-vertical-align-top {
  vertical-align: top;
}

.u-input-normal {
  border: 1px solid #B2B6BC;
  border-radius: 10rem;
  padding: 14rem;
  width: 100%;
  box-sizing: border-box;
  max-width: 630rem;
  font-size: 21rem;
  line-height: 30rem;
}
.u-input-normal::-moz-placeholder {
  color: #D9D9D9;
}
.u-input-normal::placeholder {
  color: #D9D9D9;
}
@media screen and (max-width: 750px) {
  .u-input-normal {
    padding: 40rem;
    font-size: 28rem;
  }
}

.u-line-height-70 {
  line-height: 70rem;
}

.u-width-780 {
  width: 780rem;
}

.u-textarea-normal {
  border: 1px solid #B2B6BC;
  border-radius: 10rem;
  padding: 20rem;
  width: 100%;
  box-sizing: border-box;
  max-width: 630rem;
  font-size: 24rem;
  line-height: 30rem;
  min-height: 280rem;
}

.u-p-10 {
  padding: 10rem !important;
}

@media screen and (max-width: 750px) {
  .u-sp-p-20 {
    padding: 20rem !important;
  }
}

.u-text-center {
  text-align: center;
}

.u-line-height-50 {
  line-height: 50rem;
}

.u-n-width-185 {
  width: calc(100% - 185rem);
}

.u-heihgt-502 {
  height: 460rem;
}
@media screen and (max-width: 750px) {
  .u-heihgt-502 {
    height: 100%;
  }
}

.u-z-index-100 {
  z-index: 100;
  position: relative;
}

.u-width-66 {
  width: 66rem;
}

.u-logo-main-img {
  width: 221rem;
}
.u-logo-main-img img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .u-logo-main-img {
    margin-right: 10rem;
  }
}

.u-pb-40 {
  padding-bottom: 40rem;
}

.u-pt-105 {
  padding-top: 105rem;
}

.u-pb-42 {
  padding-bottom: 42rem;
}

.u-logo-main {
  position: absolute;
  left: 0rem;
  top: 0rem;
  background: #00A1E9;
  padding: 15rem 20rem 15rem 20rem;
  border-radius: 0rem 0rem 10rem 0rem;
}
@media screen and (max-width: 750px) {
  .u-logo-main {
    position: relative;
    text-align: left;
    display: flex;
    padding-top: 30rem;
    padding-bottom: 30rem;
    align-items: center;
    align-content: center;
  }
}

.u-letter-spacing-1 {
  letter-spacing: 0.1em;
}

.u-pt-5 {
  padding-top: 5rem !important;
}

.u-bg-orange {
  background-color: #FF5C00;
}

.u-bg-yellow {
  background-color: #FFF100;
  color: #000 !important;
}
.u-bg-yellow .u-borer-box {
  border: 1rem solid #000;
}

.u-under-line-short:after {
  content: "";
  display: block;
  width: 100rem;
  margin-left: auto;
  margin-right: auto;
  height: 1px;
  background-color: #000;
  margin-top: 30rem;
}

@media screen and (max-width: 750px) {
  .u-sp-pt-450 {
    padding-top: 450rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-400 {
    padding-top: 400rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-300 {
    padding-top: 300rem !important;
  }
}

.u-borer-box {
  border: 1rem solid #fff;
  border-radius: 20rem;
}

.u-width-567 {
  width: 567rem;
}

.u-width-562 {
  width: 562rem;
}

.u-p-15 {
  padding: 15rem;
}

.u-mr-40 {
  margin-right: 40rem;
}

.u-under-bg-gray::after {
  content: "";
  display: block;
  width: 100%;
  height: 200rem;
  background-color: #F1F5F8;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0rem 0rem 10rem 10rem;
}

.u-color-orange {
  color: #FF5C00;
}

.u-text-decoration-underline {
  line-height: 2.5;
  padding-bottom: 1px;
  display: inline;
  background: linear-gradient(transparent 70%, #FFF100 0%);
}

.u-display-inline-block {
  display: inline-block;
}

.u-color-white {
  color: #fff;
}
.u-color-white a {
  color: #fff;
}

.u-bg-after-black {
  position: relative;
  z-index: -1;
}
.u-bg-after-black::after {
  content: "";
  display: block;
  width: 50%;
  height: 790rem;
  background-color: #000;
  position: absolute;
  bottom: 0;
  right: 0;
}

.u-font-size-10 {
  font-size: 10rem;
  line-height: 14rem;
}
@media screen and (max-width: 750px) {
  .u-font-size-10 {
    font-size: 20rem;
    line-height: 28rem;
  }
}

.u-width-87 {
  width: 87rem;
}

.u-border-1-white {
  border: 1rem solid #fff;
}

.u-n-width-270 {
  width: calc(100% - 270rem);
}
@media screen and (max-width: 750px) {
  .u-n-width-270 {
    width: 100%;
  }
}

.u-border-radius-10 {
  border-radius: 10rem;
}

.u-bg-skyblue {
  background-color: #F1F5F8;
}

.u-n-t-150 {
  margin-top: -150rem;
}

.u-width-294 {
  width: 294rem;
}

.u-width-1180 {
  width: 1180rem;
}

.u-font-size-32 {
  font-size: 32rem;
  line-height: 46rem;
}

.u-width-99 {
  width: 99rem;
}

@media screen and (max-width: 750px) {
  .u-sp-mb-60 {
    margin-bottom: 60rem;
  }
}

.u-font-size-12 {
  font-size: 12rem;
  line-height: 20rem;
}

.u-font-size-13 {
  font-size: 13rem;
  line-height: 24rem;
}
@media screen and (max-width: 750px) {
  .u-font-size-13 {
    font-size: 22rem;
    line-height: 38rem;
  }
}

.u-border-right-1-white {
  border-right: 1px solid #fff;
}

.u-p-0 {
  padding: 0rem;
}

.u-pt-120 {
  padding-top: 120rem;
}

.u-ml-70 {
  margin-left: 70rem;
}

.u-mr-70 {
  margin-right: 70rem;
}

.u-n-ml-50 {
  margin-left: -50rem;
}

.u-width-1240 {
  max-width: 1240rem;
  width: 100%;
}

.u-max-width-990 {
  max-width: 990rem;
  width: 90%;
}

.u-mr-80 {
  margin-right: 80rem;
}

.u-mb-20 {
  margin-bottom: 20rem;
}

.u-white-space {
  white-space: nowrap;
}

.u-mb-10 {
  margin-bottom: 10rem;
}

.u-line-height-74 {
  line-height: 74rem;
}

.u-font-size-24 {
  font-size: 24rem;
  line-height: 44rem;
}
@media screen and (max-width: 750px) {
  .u-font-size-24 {
    font-size: 40rem;
    line-height: 50rem;
  }
}

.u-line-height-39 {
  line-height: 39rem;
}

.u-pt-45 {
  padding-top: 45rem !important;
}

.u-pt-50 {
  padding-top: 50rem !important;
}

.u-color-black {
  color: #000;
}

.u-max-width-128 {
  max-width: 128rem;
}

.u-max-width-1040 {
  max-width: 1040rem;
}

.u-max-width-108 {
  max-width: 108rem;
}

.u-max-width-100 {
  max-width: 100rem;
}

.u-bottom-30 {
  bottom: 30rem;
}

.u-bottom-10 {
  bottom: 10rem;
}

.u-bottom-15 {
  bottom: 15rem;
}

.u-pb-150 {
  padding-bottom: 150rem;
}

.u-pb-200 {
  padding-bottom: 200rem;
}

.u-bottom-20 {
  bottom: 20rem;
}

.u-right-20 {
  right: 20rem;
}

.u-mb-67 {
  margin-bottom: 67rem;
}
@media screen and (max-width: 750px) {
  .u-mb-67 {
    margin-bottom: 40rem;
  }
}

.u-mt-60 {
  margin-top: 60rem;
}

.u-t-n-200 {
  position: relative;
  top: -200rem;
}

.u-mb-50 {
  margin-bottom: 50rem;
}

.u-z-n-1 {
  z-index: -1;
}

.u-width-249 {
  width: 249rem;
}

.u-width-298 {
  width: 298rem;
}

.u-mv-bg-wrapper {
  background: url(../img/bg_mv.webp) no-repeat center center;
  background-size: cover;
  background-position: center;
  padding-top: 270rem;
  box-sizing: border-box;
  height: 1145rem;
}
@media screen and (max-width: 1420px) {
  .u-mv-bg-wrapper {
    background: url(../img/bg_mv_3.svg) no-repeat center center;
    background-size: cover;
    background-position: center;
    padding-top: 270rem;
    box-sizing: border-box;
    height: 1145rem;
  }
}
@media screen and (max-width: 760px) {
  .u-mv-bg-wrapper {
    background: url(../img/bg_mv_2_sp.svg) no-repeat center center;
    background-size: cover;
    background-position: center;
    padding-top: 270rem;
    padding-bottom: 300rem;
    height: 1400rem;
    padding-top: 170rem;
  }
}

.u-gap-30 {
  gap: 30rem;
}

.u-p-80 {
  padding: 80rem;
}

.u-t-n-60 {
  margin-top: -60rem;
}

.u-color-gray-2 {
  color: #64798F;
}

.u-height-full {
  height: 100%;
}

.u-font-family-oswald {
  font-family: "Oswald", sans-serif;
}

.u-mt-20 {
  margin-top: 20rem;
}

.u-mt-40 {
  margin-top: 40rem !important;
}

.u-border-bottom-gray-1 {
  border-bottom: 1rem solid #D2D2D2;
}
.u-border-bottom-gray-1.--2 {
  border-bottom: 2rem solid #D2D2D2;
}

.u-border-bottom-gray-2 {
  border-bottom: 1rem solid #B2BCC7;
}
.u-border-bottom-gray-2.--2 {
  border-bottom: 2rem solid #B2BCC7;
}

.u-border-bottom-gray-3 {
  border-bottom: 2rem solid #F3F3F3;
}
.u-border-bottom-gray-3.--2 {
  border-bottom: 2rem solid #F3F3F3;
}

.u-pb-25 {
  padding-bottom: 25rem;
}

.u-pb-28 {
  padding-bottom: 28rem;
}

.u-width-570 {
  width: 570rem;
}

.u-height-120 {
  height: 120rem;
}

.u-border-right-1-gray {
  border-right: 1px solid #DFDBDB;
}

.u-max-width-1100 {
  max-width: 1100rem;
}

.u-font-size-45 {
  font-size: 45rem;
  line-height: 60rem;
}

.u-max-width-247 {
  max-width: 247rem !important;
  width: 90%;
}

.u-width-1320 {
  max-width: 1320rem;
  width: 100%;
}

.u-width-260 {
  width: 260rem;
}

.u-width-1488 {
  max-width: 1488rem;
  width: 100%;
}

.u-width-435 {
  width: 435rem;
}

.u-n-mt-200 {
  margin-top: -200rem;
}

.u-width-600 {
  width: 600rem;
}

.u-n-t-210 {
  position: relative;
  top: -210rem;
}

.u-pt-400 {
  padding-top: 400rem;
}

.u-bg-skyblue-tex {
  background: url(../img/bg_skyblue_1.webp) no-repeat top center;
  height: 450rem;
  width: 100%;
  background-size: cover;
}

.u-drop-shadow-1 {
  filter: drop-shadow(0px 8px 4px rgba(0, 0, 0, 0.06));
}

.u-n-mt-210 {
  margin-top: -210rem;
}

.u-plr-30 {
  padding-left: 30rem;
  padding-right: 30rem;
}

.u-pr-30 {
  padding-right: 30rem !important;
}

@media screen and (max-width: 750px) {
  .u-sp-p-40 {
    padding: 40rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-p-60 {
    padding: 60rem;
  }
}

.u-width-half {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .u-width-half.--sp-full {
    width: 100%;
  }
}

.u-height-735 {
  height: 735rem;
}

.u-object-cover {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.u-font-18 {
  font-size: 18rem;
  line-height: 34rem;
}

.u-font-19 {
  font-size: 19rem;
  line-height: 34rem;
}

.u-font-size-100 {
  font-size: 100rem;
  line-height: 100rem;
}

.u-bg-gradient-2 {
  background: linear-gradient(180deg, #F3F7F9 0%, #F3F7F9 100%);
}

.u-bg-gradient-3 {
  background: linear-gradient(-70deg, #0C43C1 0%, #3EB7C3 100%);
}

.u-font-size-14 {
  font-size: 14rem;
  line-height: 28rem;
}
.u-font-size-14.--line-height-24 {
  line-height: 24rem;
}
@media screen and (max-width: 750px) {
  .u-font-size-14 {
    font-size: 24rem;
    line-height: 38rem;
  }
}

.u-font-size-10 {
  font-size: 10rem;
  line-height: 20rem;
}
.u-font-size-10.--line-height-20 {
  line-height: 20rem;
}
@media screen and (max-width: 750px) {
  .u-font-size-10 {
    font-size: 20rem;
    line-height: 30rem;
  }
}

.u-figure-type-1 {
  width: 120rem;
}
.u-figure-type-1 img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .u-figure-type-1 {
    width: 130rem;
  }
}

.u-figure-type-2 {
  width: 70rem;
}
.u-figure-type-2 img {
  width: 100%;
}

.u-n-figure-type-1 {
  width: calc(100% - 130rem);
}
@media screen and (max-width: 750px) {
  .u-n-figure-type-1 {
    width: calc(100% - 140rem);
  }
}

.u-width-430 {
  width: 430rem;
}

.u-n-figure-type-2 {
  width: calc(100% - 90rem);
}

.u-gap-10 {
  gap: 10rem;
}

.u-pl-30 {
  padding-left: 30rem !important;
}

.u-min-width-350 {
  min-width: 350rem;
}

.u-b-n-20 {
  position: relative;
  bottom: -20rem;
}

.u-width-690 {
  width: 690rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.u-font-size-34 {
  font-size: 34rem;
}

.u-font-size-88 {
  font-size: 88rem;
  line-height: 88rem;
}

.u-ml-0 {
  margin-left: 0rem !important;
}

.u-border-radius-right-20 {
  border-radius: 0rem 20rem 20rem 0rem;
}

.u-p-5-20 {
  padding: 5rem 20rem;
}

.u-width-700 {
  width: 700rem;
}

.u-font-size-46 {
  font-size: 46rem;
  line-height: 68rem;
}

.u-width-500 {
  width: 500rem;
}

.u-width-241 {
  width: 241rem;
}

.u-width-50 {
  width: 50rem;
}

.u-width-30 {
  width: 30rem;
}

.u-width-40 {
  width: 40rem;
}

.u-width-400 {
  width: 400rem;
}

.u-width-500 {
  width: 500rem;
}

.u-n-width-1320 {
  width: calc(100% - ((100% - 1320rem) / 2 + 380rem));
}

.u-max-width-500 {
  max-width: 500rem;
}

.u-max-width-600 {
  max-width: 600rem;
}

@media screen and (max-width: 750px) {
  .u-sp-pl-80 {
    padding-left: 80rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pr-80 {
    padding-right: 80rem !important;
  }
}

.u-width-950 {
  width: 700rem;
}

.u-width-400 {
  width: 90%;
  max-width: 400rem !important;
}

.u-width-1000 {
  width: 1000rem;
}

.u-mv-flag-set {
  position: absolute;
  top: 12rem;
  left: 330rem;
}
.u-mv-flag-set li img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .u-mv-flag-set {
    top: 70rem;
    left: 350rem;
    width: 200rem;
  }
  .u-mv-flag-set li img {
    width: 100rem;
  }
  .u-mv-flag-set li:nth-child(1) img {
    width: 80rem;
  }
}

.u-mg-center {
  margin-left: auto;
  margin-right: auto;
}

.u-width-150 {
  width: 150rem !important;
}

.u-min-height-60 {
  min-height: 60rem;
}

.u-n-width-110 {
  width: calc(100% - 110rem);
}

@media screen and (max-width: 750px) {
  .u-n-sp-width-110 {
    width: calc(100% - 110rem);
  }
}

.u-max-width-880 {
  max-width: 880rem;
}

.u-p-20-40 {
  padding: 20rem 40rem;
  box-sizing: border-box;
}

.u-width-436 {
  width: 436rem;
}

.u-width-305 {
  width: 305rem !important;
}

.u-width-450 {
  width: 450rem;
  box-sizing: border-box;
}

.u-width-auto {
  width: auto !important;
}

.u-height-289 {
  height: 289rem;
}

.u-pr-120 {
  padding-right: 120rem;
}

.u-pr-100 {
  padding-right: 100rem;
}

.u-position-relative {
  position: relative;
}

.u-bottom-0 {
  bottom: 0rem;
}

.u-n-bottom-10 {
  bottom: -10rem;
}

.u-width-100 {
  width: 100rem;
}

.u-width-407 {
  width: 407rem;
}

.u-bg-circle-1 {
  background: url(../img/bg_circle_1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.u-bg-circle-1.--circle-2 {
  background: url(../img/bg_circle_2.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.u-bg-circle-1.--circle-3 {
  background: url(../img/bg_circle_3.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.u-bg-circle-1.--circle-4 {
  background: url(../img/bg_circle_4.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.u-n-left-200 {
  left: -200rem;
}

.u-n-top-100 {
  top: -100rem;
}

.u-n-top-50 {
  top: -50rem;
}

.u-bg-circle-2 {
  position: absolute;
  top: 150rem;
  right: -320rem;
  width: 672rem;
}
.u-bg-circle-2.--point-2 {
  right: auto;
  left: -200rem;
  top: -350rem;
}
.u-bg-circle-2.--point-3 {
  top: 250rem;
  right: -220rem;
}
.u-bg-circle-2.--point-4 {
  top: auto;
  bottom: -200rem;
  right: -220rem;
}
.u-bg-circle-2.--point-5 {
  top: -250rem;
  right: -220rem;
}
.u-bg-circle-2.--point-6 {
  right: auto;
  left: -200rem;
  top: -100rem;
}

.u-z-index-150 {
  z-index: 150;
}

.u-overflow-hidden-x {
  overflow-x: hidden;
}

.u-dotted-1 {
  width: 302rem;
  position: absolute;
  top: -120rem;
  left: -130rem;
}

.u-dotted-2 {
  width: 302rem;
  position: absolute;
  top: -120rem;
  right: -130rem;
}

.u-dotted-3 {
  width: 193rem;
  position: absolute;
  top: 0rem;
  left: 80rem;
}

.u-dotted-4 {
  width: 193rem;
  position: absolute;
  top: 0rem;
  right: 180rem;
}

.u-n-mt-10 {
  top: -10rem;
}

.u-n-mt-12 {
  top: -12rem;
}

.u-n-t-5 {
  top: -5rem !important;
}

.u-n-mt-100 {
  position: relative;
  margin-top: -100rem;
}

.u-n-mt-70 {
  margin-top: -70rem;
}

.u-max-width-729 {
  max-width: 729rem;
}

@media screen and (max-width: 750px) {
  .u-sp-n-mt-100 {
    margin-top: -100rem !important;
  }
}

.u-text-right {
  text-align: right;
}

.u-lb-0 {
  left: 0rem;
  bottom: 0rem;
}

.u-n-width-407 {
  width: calc(100% - 467rem);
}

.u-width-290 {
  width: 290rem;
}

.u-left-0 {
  left: 0rem;
}

.u-width-half {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .u-width-half {
    width: 100%;
  }
}

.u-mb-100 {
  margin-bottom: 100rem;
}

.u-display-block {
  display: block;
}

.u-border-right-1-black {
  border-right: 1rem solid #000;
}

.u-pt-70 {
  padding-top: 70rem;
}

.u-pt-20 {
  padding-top: 20rem;
}

.u-width-250 {
  width: 250rem;
}

.u-n-width-250 {
  width: calc(100% - 280rem);
}
@media screen and (max-width: 750px) {
  .u-n-width-250 {
    width: 100%;
  }
}

.u-mt-120 {
  margin-top: 120rem;
}

.u-width-550 {
  width: 550rem;
}

.u-n-mt-30 {
  position: relative;
  top: -60rem;
}

.u-pb-460 {
  padding-bottom: 460rem;
}

.u-min-width-auto {
  min-width: auto !important;
}

@media screen and (max-width: 750px) {
  .u-sp-pl-15 {
    padding-left: 15rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pr-15 {
    padding-right: 15rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-mt-50 {
    margin-top: 50rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-28 {
    font-size: 28rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-width-230 {
    width: 230rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-33 {
    font-size: 33rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-46 {
    font-size: 46rem !important;
    line-height: 60rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-80 {
    padding-bottom: 80rem !important;
  }
}

.u-pb-530 {
  padding-bottom: 530rem;
}

.u-n-mt-60 {
  position: relative;
  top: -60rem;
}

.u-n-t-60 {
  margin-top: -60rem !important;
}

.u-pt-35 {
  padding-top: 35rem;
}

.u-pt-180 {
  padding-top: 160rem;
}

.u-pt-160 {
  padding-top: 160rem;
}

.u-pt-190 {
  padding-top: 190rem;
}

.u-pb-30 {
  padding-bottom: 30rem !important;
  box-sizing: border-box;
}

.u-border-left-1-blue {
  border-left: 1rem solid #0E47C1;
}

.u-width-full {
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .u-width-full.--sp-n-100 {
    width: calc(100% - 100rem);
  }
}

.u-width-134 {
  width: 134rem;
}

@media screen and (max-width: 750px) {
  .u-sp-mb-40 {
    margin-bottom: 40rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-mb-80 {
    margin-bottom: 80rem;
  }
}

.u-pt-150 {
  padding-top: 150rem;
}

.u-shadow-1 {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.01);
}

.u-shadow-2 {
  box-shadow: 0px 0px 70px rgba(0, 0, 0, 0.16);
}

.u-shadow-3 {
  box-shadow: 0px -15px 20px rgba(0, 0, 0, 0.05);
}

.u-max-width-300 {
  max-width: 300rem !important;
}

.u-max-width-350 {
  max-width: 350rem !important;
}

@media screen and (max-width: 750px) {
  .u-width-full-sp {
    width: 100%;
  }
}

.u-z-100 {
  z-index: 100;
}

.u-left-n-200 {
  left: -200rem;
}
@media screen and (max-width: 750px) {
  .u-left-n-200 {
    left: -430rem;
  }
}

.u-text-left {
  text-align: left;
}

.u-decoration-text-1 {
  font-size: 200rem;
  line-height: 170rem;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  color: transparent;
  -webkit-text-stroke: 1px #00A1E9;
  text-stroke: 1px #00A1E9;
  font-weight: bold;
  overflow: hidden;
}

.u-bg-blue-2 {
  background: url(../img/common/bg_sprite.webp) no-repeat center center;
  background-size: cover;
}

.u-font-size-110 {
  font-size: 110rem;
  line-height: 110rem;
}

.u-font-size-120 {
  font-size: 120rem;
  line-height: 140rem;
}

.u-font-italic {
  font-style: italic;
}

.u-p-20 {
  padding: 20rem;
  box-sizing: border-box;
}

.u-width-42pc {
  width: 42%;
}

.u-pt-15 {
  padding-top: 15rem;
}

.u-pb-15 {
  padding-bottom: 15rem;
}

.u-img-width-full-1 {
  height: 370rem;
}
.u-img-width-full-1 img {
  height: 370rem;
  width: 100%;
  box-sizing: border-box;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 750px) {
  .u-img-width-full-1 {
    height: 300rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30rem;
  }
  .u-img-width-full-1 img {
    height: 300rem;
  }
}

.u-mr-center-side {
  margin-right: calc((100% - 1320rem) / 2);
}

.u-max-width-629 {
  max-width: 629rem;
}

.u-p-50-64 {
  padding: 50rem 64rem;
  box-sizing: border-box;
}

.u-pb-80 {
  padding-bottom: 80rem;
}

.u-pt-46 {
  padding-top: 46rem;
}

.u-p-40-50 {
  padding: 40rem 50rem;
  box-sizing: border-box;
}

.u-p-40-0-40-50 {
  padding: 40rem 0rem 40rem 50rem;
}

.u-pt-48 {
  padding-top: 48rem;
}

.u-pr-20 {
  padding-right: 20rem !important;
}

.u-width-339 {
  width: 339rem;
}

.u-width-617 {
  width: 617rem;
}

.u-right-n-200 {
  right: -300rem;
}
@media screen and (max-width: 750px) {
  .u-right-n-200 {
    right: -900rem;
  }
}

.u-position-absolute {
  position: absolute;
}

.u-width-282 {
  width: 282rem;
}

.u-width-28 {
  width: 28rem;
}

.u-width-7 {
  width: 7rem;
}

.u-decoration-text-2 {
  font-size: 200rem;
  line-height: 170rem;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  color: #EAEAEA;
  overflow: hidden;
}
.u-decoration-text-2.--color-white {
  color: #fff;
}

.u-n-pt-80 {
  position: relative;
  margin-top: -80rem;
}

.u-decoration-text-3 {
  font-size: 90rem;
  line-height: 90rem;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
  color: transparent;
  -webkit-text-stroke: 1px #000;
  text-stroke: 1px #00A1E9;
  font-weight: bold;
  overflow: hidden;
  color: #fff;
  padding-bottom: 20rem;
}

.u-width-542 {
  width: 542rem;
}
@media screen and (max-width: 750px) {
  .u-width-542 {
    width: 100%;
  }
}

.u-width-n-542 {
  width: calc(100% - 582rem);
}
@media screen and (max-width: 750px) {
  .u-width-n-542 {
    width: 100%;
  }
}

.u-font-size-38 {
  font-size: 38rem;
  line-height: 52rem;
}
@media screen and (max-width: 750px) {
  .u-font-size-38 {
    font-size: 50rem;
    line-height: 70rem;
  }
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-pb-100 {
  padding-bottom: 100rem;
}

.u-pb-180 {
  padding-bottom: 180rem;
}

.u-pb-155 {
  padding-bottom: 155rem;
}

.u-pb-280 {
  padding-bottom: 280rem;
}

.u-pb-130 {
  padding-bottom: 130rem;
}

.u-pb-75 {
  padding-bottom: 75rem;
}

.u-pt-35 {
  padding-top: 35rem !important;
}

.u-bg-thinking {
  background: url(../img/bg_thinking.webp) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .u-bg-thinking {
    background-size: contain;
    background-position: bottom center;
  }
}

@media screen and (min-width: 750px) {
  .u-pc-pr-40 {
    padding-right: 40rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-60 {
    padding-top: 60rem;
  }
}

@media screen and (min-width: 750px) {
  .u-pc-pl-40 {
    padding-left: 40rem;
  }
}

.u-pl-140 {
  padding-left: 140rem;
  box-sizing: border-box;
}

.u-pl-100 {
  padding-left: 100rem;
  box-sizing: border-box;
}

.u-mt-30 {
  margin-top: 30rem !important;
}

@media screen and (max-width: 750px) {
  .u-sp-pl-100 {
    padding-left: 100rem;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-border-right-none {
    border-right: none;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-border-bottom-1-black {
    border-bottom: 1rem solid #000;
  }
}

.u-title-underline {
  position: relative;
}
.u-title-underline::after {
  content: "";
  display: block;
  margin-top: 40rem;
  width: 300rem;
  height: 5rem;
  background: #000;
  margin-left: auto;
  margin-right: auto;
}
.u-title-underline.--white::after {
  background: #fff;
}
.u-title-underline.--style-1::after {
  width: 100% !important;
  margin-top: 10rem;
  height: 1px;
}
.u-title-underline.--style-2 {
  text-align: left;
}
.u-title-underline.--style-2::after {
  width: 200rem !important;
  margin-top: 10rem;
  height: 1px;
  margin-left: 0rem;
  margin-top: 20rem;
}

.u-pt-100 {
  padding-top: 100rem;
  box-sizing: border-box;
}

.u-pt-130 {
  padding-top: 130rem;
  box-sizing: border-box;
}

.u-pt-135 {
  padding-top: 135rem;
  box-sizing: border-box;
}

@media screen and (max-width: 750px) {
  .u-sp-pr-40 {
    padding-right: 40rem;
    box-sizing: border-box;
  }
}

.u-mt-100 {
  margin-top: 100rem;
}

.u-p-50 {
  padding: 50rem;
  box-sizing: border-box;
}

.u-bg-japan {
  background: url(../img/common/bg_japan.svg) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .u-bg-japan {
    background-position: center bottom !important;
  }
}

.u-width-657 {
  width: 657rem;
}
@media screen and (max-width: 750px) {
  .u-width-657 {
    width: 100%;
  }
}

.u-border-top-blue-1 {
  border-top: 1rem solid #00A1E9;
}

.u-border-bottom-blue-1 {
  border-bottom: 1rem solid #00A1E9;
}

.u-n-t-30 {
  margin-top: -30rem;
}

.u-clip-bottom-side {
  -webkit-clip-path: polygon(0 0, 100% 0, 69% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 69% 100%, 0% 100%);
}

.u-width-n-700 {
  width: calc(100% - 750rem);
}

.u-width-547 {
  width: 547rem;
}

.u-width-550 {
  width: 550rem;
}

.u-width-517 {
  width: 517rem;
}

.u-pt-80 {
  padding-top: 80rem;
}

.u-pt-120 {
  padding-top: 120rem;
}

.u-pt-120 {
  padding-top: 120rem;
}

.u-font-weight-bold {
  font-weight: bold;
}

.u-font-weight-400 {
  font-weight: 400;
}

.u-font-weight-500 {
  font-weight: 500;
}

.u-font-weight-600 {
  font-weight: 600;
}

.u-p-25 {
  padding: 25rem;
}

.u-nav-arrow {
  position: relative;
}
.u-nav-arrow:before {
  content: "";
  display: inline-block;
  width: 7rcap;
  height: 7rem;
  border: 1rem solid transparent;
  border-right: 1rem solid #000;
  border-bottom: 1rem solid #000;
  transform: rotate(-45deg);
  margin-right: 5rem;
}

.u-font-size-34 {
  font-size: 34rem;
  line-height: 48rem;
}

.u-mr-20 {
  margin-right: 20rem;
}

.u-mr-15 {
  margin-right: 15rem;
}

.u-max-width-1453 {
  max-width: 1453rem;
}

.u-height-930 {
  height: 930rem;
}

.u-width-95pc {
  width: 95%;
}

.u-max-width-380 {
  max-width: 380rem;
}

.u-font-size-35 {
  font-size: 35rem;
  line-height: 49rem;
}

.u-font-size-36 {
  font-size: 36rem;
  line-height: 50rem;
}

.u-font-weight-500 {
  font-weight: 500;
}

.u-font-size-16 {
  font-size: 16rem;
  line-height: 34rem;
}
@media screen and (max-width: 750px) {
  .u-font-size-16 {
    font-size: 24rem;
    line-height: 42rem;
  }
}

.u-bg-city-1 {
  background: url(../img/img_town_1.svg) no-repeat center center;
  background-size: cover;
}

.u-bg-city-2 {
  background: url(../img/img_town_2.svg) no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-21 {
    font-size: 21rem;
    line-height: 34rem;
  }
}

.c-bg-gradient-1 {
  background: linear-gradient(to right top, #FDE2CF, #FBF6E7, #CBECFC);
}

.u-pb-7 {
  padding-bottom: 7rem !important;
}

.u-pb-10 {
  padding-bottom: 10rem;
}

.u-pt-60 {
  padding-top: 60rem;
}

.u-pb-120 {
  padding-bottom: 120rem;
}

.u-pb-60 {
  padding-bottom: 60rem;
}

.u-pt-10 {
  padding-top: 10rem;
}

@media screen and (max-width: 750px) {
  .u-sp-pt-10 {
    padding-top: 10rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-15 {
    padding-top: 15rem !important;
  }
}

.u-caption.--style-1 dt {
  font-size: 20rem;
  line-height: 24rem;
  font-weight: bold;
  padding-bottom: 5rem;
}
@media screen and (max-width: 750px) {
  .u-caption.--style-1 dt {
    font-size: 28rem;
    line-height: 38rem;
  }
}
.u-caption.--style-1 dd {
  font-size: 14rem;
  line-height: 24rem;
}
@media screen and (max-width: 750px) {
  .u-caption.--style-1 dd {
    font-size: 28rem;
    line-height: 38rem;
  }
}
@media screen and (max-width: 750px) {
  .u-caption.--style-1 {
    margin-bottom: 40rem;
    padding-top: 20rem;
  }
}

.u-border-white-3 {
  border: 3rem solid #fff;
  box-sizing: border-box;
}

.u-border-radius-5 {
  border-radius: 5rem;
}

.u-all-full {
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  left: 0rem;
  top: 0rem;
  box-sizing: border-box;
}

.u-all-zero {
  line-height: 0rem;
  font-size: 0rem;
}

.u-font-size-50 {
  font-size: 50rem;
  line-height: 64rem;
}

.u-width-220 {
  width: 220rem;
}

.u-margin-center {
  margin-left: auto;
  margin-right: auto;
}

.u-font-size-60 {
  font-size: 60rem;
  line-height: 74rem;
}
.u-font-size-60.--line-height-110 {
  line-height: 110rem;
}

.u-font-size-70 {
  font-size: 70rem;
  line-height: 125rem;
}

.u-line-height-80 {
  line-height: 80rem;
}

.u-line-height-100 {
  line-height: 100rem;
}

.u-line-height-140 {
  line-height: 140rem;
}

.u-line-height-160 {
  line-height: 160rem;
}

.u-font-size-20 {
  font-size: 20rem;
  line-height: 40rem;
}

.u-font-size-21 {
  font-size: 21rem;
  line-height: 34rem;
}

.u-border-radius-bottom-10 {
  border-radius: 0rem 0rem 10rem 10rem;
}

.u-font-size-38 {
  font-size: 38rem;
  line-height: 52rem;
}

.u-bg-stripe-orange {
  background: url(../img/common/bg_stripe_orange.webp) repeat;
  background-position: cover;
}

.u-bg-paper {
  background: url(../img/common/bg_section_paper.svg) repeat;
}

.u-bg-paper-2 {
  background: url(../img/common/bg_section_paper_gray.svg) repeat;
}

.u-n-mt-50 {
  margin-top: -50rem;
}

.u-mb-40 {
  margin-bottom: 40rem;
}

.u-n-m-100 {
  margin-top: -100rem;
}

.u-width-596 {
  width: 596rem;
}

.u-width-620 {
  width: 620rem;
}

.u-font-size-54 {
  font-size: 54rem;
  line-height: 70rem;
}

.u-n-width-596 {
  width: calc(100% - 646rem);
}

.u-n-width-620 {
  width: calc(100% - 666rem);
}

.u-opacity-6 {
  opacity: 0.6;
}

.u-mb-80 {
  margin-bottom: 80rem;
}
@media screen and (max-width: 750px) {
  .u-mb-80 {
    margin-bottom: 40rem;
  }
}

.u-n-mt-60 {
  margin-top: -60rem;
}

.u-n-mt-80 {
  margin-top: -80rem;
}

.u-mb-60 {
  margin-bottom: 60rem;
}

.u-height-100 {
  height: 100%;
}

.u-n-t-0 {
  top: 0rem !important;
}

.u-n-t-300 {
  top: -300rem !important;
}

@media screen and (max-width: 750px) {
  .u-sp-pt-250 {
    padding-top: 250rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-20 {
    padding-top: 20rem;
  }
}

.u-bg {
  background: url(../img/common/img_bg_dott_1.svg);
  background-repeat: no-repeat;
  background-position: center right;
}

@media screen and (max-width: 750px) {
  .u-sp-width-1200 {
    width: 1200rem;
  }
}

.u-bg-black {
  background-color: #000 !important;
}

.u-color-blue {
  color: #026EFD;
}

.u-color-blue-1 {
  color: #0E47C1;
}

.u-color-blue-2 {
  color: #175DC1;
}

.u-color-blue-3 {
  color: #247BC2;
}

.u-color-blue-4 {
  color: #359FC2;
}

.u-color-blue-5 {
  color: #3DB4C3;
}

@media screen and (max-width: 750px) {
  .u-sp-overflow-auto {
    overflow-x: auto;
    position: relative;
  }
  .u-sp-overflow-auto:before {
    content: "｜スワイプ →";
    position: -webkit-sticky;
    position: sticky;
    top: 0rem;
    left: 10rem;
    padding: 8rem 16rem;
    width: calc(100% - 20rem);
    box-sizing: border-box;
    display: block;
    color: #000;
    text-align: right;
    font-size: 20rem;
    line-height: 20rem;
    font-weight: bold;
    z-index: 100;
    -webkit-animation: scrollHint 2s ease-in-out infinite;
            animation: scrollHint 2s ease-in-out infinite;
    pointer-events: none;
    letter-spacing: 1rem;
  }
  .u-sp-overflow-auto img {
    margin-top: 20rem;
  }
}

@-webkit-keyframes scrollHint {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: translateX(5rem);
    opacity: 1;
  }
}

@keyframes scrollHint {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: translateX(5rem);
    opacity: 1;
  }
}
.u-bg-arch-2 {
  position: relative;
}
.u-bg-arch-2 .--arch-img {
  content: "";
  display: block;
  top: 0rem;
  right: 0rem;
  position: absolute;
}
@media screen and (max-width: 750px) {
  .u-bg-arch-2 .--arch-img {
    display: none;
  }
}
@media screen and (max-width: 1728px) {
  .u-bg-arch-2 .--arch-img {
    -o-object-fit: contain;
       object-fit: contain;
    height: 1050rem;
  }
}
.u-bg-arch-2 .--sp-arch-img {
  display: none;
}
@media screen and (max-width: 750px) {
  .u-bg-arch-2 .--sp-arch-img {
    aspect-ratio: 320/281;
    width: 100%;
    background-size: contain;
    top: 0rem;
    right: 0rem;
    display: block;
  }
}
.u-bg-arch-2.--reverse .--arch-img {
  left: 0rem;
  right: auto;
}
.u-bg-arch-2.--reverse .--sp-arch-img {
  left: 0rem;
  right: auto;
}

.u-after-bottom-back {
  position: relative;
}

@media screen and (max-width: 750px) {
  .u-width-90pc {
    width: 96%;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-n-mt-500 {
    margin-top: -500rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-n-mt-300 {
    margin-top: -300rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-width-1000 {
    width: 1000rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-n-mt-350 {
    margin-top: -350rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-n-mt-250 {
    margin-top: -250rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-n-mt-230 {
    margin-top: -230rem !important;
  }
}

.u-bg-arch-1 {
  position: relative;
}
.u-bg-arch-1:before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 3456/1431;
  background: url(../img/bg_blue_arch.webp) no-repeat top left;
  background-size: contain;
  top: 0rem;
  position: absolute;
}
@media screen and (max-width: 750px) {
  .u-bg-arch-1:before {
    background: url(../img/bg_blue_arch_5.svg) no-repeat top center;
    aspect-ratio: 320/209;
    background-size: contain;
  }
}

.u-bg-arch-3 {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.u-bg-arch-3 .--arch-img {
  display: block;
  bottom: 0rem;
  left: 50%;
  height: 1100rem;
  transform: translateX(-50%);
  position: absolute;
}
@media screen and (max-width: 750px) {
  .u-bg-arch-3 .--arch-img {
    display: none;
  }
}
.u-bg-arch-3 .--sp-arch-img {
  display: none;
}
@media screen and (max-width: 750px) {
  .u-bg-arch-3 .--sp-arch-img {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0rem;
    left: 0rem;
  }
}

.u-pt-255 {
  padding-top: 255rem;
}

@media screen and (max-width: 750px) {
  .u-sp-pt-170 {
    padding-top: 170rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-120 {
    padding-bottom: 120rem !important;
  }
}

.u-color-blue-2 {
  color: #3D78E2;
}

.u-color-yellow-3 {
  color: #E7A904;
}

.u-color-skygreen-1 {
  color: #2FBEB6;
}

.u-color-skyblue-2 {
  color: #3D78E2;
}

.u-color-yellow-4 {
  color: #E1CE1F;
}

.u-color-skygreen-2 {
  color: #32C0B8;
}

.u-color-blue-3 {
  color: #5794CA;
}

.u-text-underline {
  text-decoration: underline;
}

.u-t-n-120 {
  position: relative;
  top: -120rem;
}

.u-max-width-395 {
  max-width: 395rem;
}

.u-border-radius-20 {
  border-radius: 20rem;
}

.u-border-radius-10 {
  border-radius: 10rem;
}

.u-border-radius-top-10 {
  border-radius: 0rem;
}

.u-border-radius-30 {
  border-radius: 30rem;
}

.u-bg-gradation-1 {
  background: linear-gradient(90deg, #F1F8FF 0%, #DFEFFE 41%, #FFFFF0 100%);
}

.u-bg-gradation-blue {
  background: linear-gradient(90deg, #1D90FF 0%, #B1D5F8 100%);
}

.u-gap-50 {
  gap: 50rem;
}

.u-gap-79 {
  gap: 79rem;
}

.u-bg-white-opacity-8 {
  background-color: rgba(255, 255, 255, 0.8);
}

.u-position-fixed {
  position: fixed;
  top: 0rem;
  left: 0rem;
  right: 0rem;
  z-index: 100;
}

.u-font-size-23 {
  font-size: 23rem;
  line-height: 30rem;
}

.u-font-size-26 {
  font-size: 26rem;
  line-height: 46rem;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .u-font-size-26 {
    font-size: 34rem;
    line-height: 44rem;
  }
}

.u-pt-108 {
  padding-top: 108rem;
}

.u-mr-10 {
  margin-right: 10rem;
}

.u-mb-5 {
  margin-bottom: 5rem;
}

.u-p-5 {
  padding: 5rem;
}

.u-bg-image-2 {
  background: url(../img/bg_base_1.webp) no-repeat center center;
  background-size: cover;
}

.u-bg-image-3 {
  background: url(../img/bg_base_2.webp) no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 750px) {
  .u-sp-p-10 {
    padding: 10rem !important;
  }
}

.u-max-width-445 {
  max-width: 445rem;
}

@media screen and (max-width: 750px) {
  .u-sp-mb-20 {
    margin-bottom: 20rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-40 {
    padding-bottom: 40rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-30 {
    padding-bottom: 30rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-30 {
    padding-top: 30rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-54 {
    font-size: 54rem !important;
    line-height: 70rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-63 {
    font-size: 63rem !important;
  }
}

.u-box-top-blue-1 {
  width: 100%;
  border-top: 10rem solid #026EFD;
}

.u-gap-20 {
  gap: 20rem;
}

.u-bg-main {
  background: url(../img/common/img_main_bg.webp) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .u-bg-main {
    background: url(../img/common/bg_mv_sp.webp) no-repeat center center;
    background-size: cover;
    background-position: center top;
  }
}

.u-width-980 {
  width: 980rem;
}

.u-pb-120 {
  padding-bottom: 120rem;
}

.u-mb-30 {
  margin-bottom: 30rem;
}

.u-p-40 {
  padding: 40rem;
  box-sizing: border-box;
}

.u-p-20 {
  padding: 20rem;
}

.u-width-90 {
  width: 90rem;
}

.u-width-157 {
  width: 157rem;
}

.u-left-circle {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: left;
  gap: 10rem;
}
.u-left-circle:before {
  content: "";
  display: block;
  margin-bottom: -10rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(-50%);
}

.u-pb-20 {
  padding-bottom: 20rem;
}

.u-pb-50 {
  padding-bottom: 50rem;
}

.u-pb-340 {
  padding-bottom: 340rem;
}

.u-mb-120 {
  margin-bottom: 120rem;
}

.u-mb-170 {
  margin-bottom: 170rem;
}

.u-pb-170 {
  padding-bottom: 170rem;
}

.u-max-width-790 {
  max-width: 790rem;
}

.u-bg-before-half-black {
  position: relative;
}
.u-bg-before-half-black:before {
  content: "";
  display: block;
  width: 50%;
  height: 800rem;
  background-color: #000;
  position: absolute;
  top: -150rem;
  left: 0rem;
}

.u-pb-5 {
  padding-bottom: 5rem;
}

.u-p-60 {
  padding: 60rem;
  box-sizing: border-box;
}

.u-font-size-37 {
  font-size: 37rem;
}

.u-n-mt-230 {
  margin-top: -230rem;
}

.u-shadow-bottom {
  box-shadow: 0 40rem 10rem rgba(0, 0, 0, 0.04);
}

.u-bg-dark-green {
  background-color: #134058;
}

.u-width-460 {
  width: 460rem;
}

.u-shadow-bottom-dark {
  box-shadow: 0 6rem 8rem rgba(0, 0, 0, 0.2);
}

.u-shadow-bottom-light {
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.05);
}

.u-all-zero {
  font-size: 0rem;
  line-height: 0rem;
}

.u-max-width-1022 {
  max-width: 1022rem;
}

.u-pt-40 {
  padding-top: 40rem !important;
}

.u-pt-60 {
  padding-top: 60rem;
}

.u-pb-85 {
  padding-bottom: 85rem;
}

.u-pb-267 {
  padding-bottom: 267rem;
}

.u-pb-260 {
  padding-bottom: 260rem;
}

.u-pt-110 {
  padding-top: 110rem;
}

.u-width-592 {
  width: 592rem;
  box-sizing: border-box;
}

.u-p-35-35-35 {
  padding: 35rem 35rem 35rem 0rem;
  box-sizing: border-box;
}

.u-pb-40 {
  padding-bottom: 40rem;
}

.u-right-20 {
  right: 20rem;
}

.u-width-520 {
  width: 520rem;
}

.u-width-800 {
  width: 800rem;
}

.u-width-80 {
  width: 80rem;
}

.u-pt-140 {
  padding-top: 140rem;
}

.u-font-size-37 {
  font-size: 37rem;
}

.u-line-height-60 {
  line-height: 60rem;
}

.u-font-size-68 {
  font-size: 66rem;
  line-height: 110rem;
}

.u-pt-185 {
  padding-top: 185rem;
}

.u-pb-45 {
  padding-bottom: 45rem;
}

.u-width-13 {
  width: 13rem;
}

.u-pt-90 {
  padding-top: 90rem;
}

.u-font-weight-200 {
  font-weight: 200;
}

.u-font-weight-100 {
  font-weight: 100;
}

.u-font-size-33 {
  font-size: 33rem;
}

.u-pb-35 {
  padding-bottom: 35rem;
}

.u-pt-80 {
  padding-top: 80rem;
}

.u-width-610 {
  width: 610rem;
}

.u-pl-45 {
  padding-left: 45rem;
}

.u-n-width-610 {
  width: calc(100% - 650rem);
}

.u-color-gray {
  color: #292929;
}

.u-color-gray-1 {
  color: #c9c9c9;
}

.u-line-height-34 {
  line-height: 34rem !important;
}

.u-gradient-2 {
  background: url(../img/common/bg_mv_recruit.webp) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 750px) {
  .u-gradient-2.--pc-only {
    background: url(../img/common/bg_mv_recruit_2.webp) no-repeat center center;
    background-size: cover;
  }
}

@media screen and (max-width: 750px) {
  .u-gradient-3.--sp-only {
    background: url(../img/common/bg_mv_recruit_2.webp) no-repeat center center;
    background-size: cover;
  }
}

.u-z-index-200 {
  z-index: 200;
}

.u-bg-japan {
  background: url(../img/common/japan.webp) no-repeat center center;
  background-size: contain;
  background-position: center right;
}

.u-top-n-20 {
  top: -20rem;
}

.u-top-0 {
  top: 0rem;
}

.u-left-100 {
  left: 100rem;
}

.u-top-100 {
  top: 100rem;
}

.u-p-35 {
  padding: 35rem;
  box-sizing: border-box;
}

.u-font-20 {
  font-size: 20rem;
  line-height: 36rem;
}
@media screen and (max-width: 750px) {
  .u-font-20 {
    font-size: 28rem;
    line-height: 42rem;
  }
}

.u-font-16 {
  font-size: 16rem;
  line-height: 30rem;
}
@media screen and (max-width: 750px) {
  .u-font-16 {
    font-size: 24rem;
    line-height: 38rem;
  }
}

.u-bg-gray {
  background-color: #FAFAFA;
}

.u-font-36 {
  font-size: 36rem;
  line-height: 36rem;
}

.u-pb-40 {
  padding-bottom: 40rem;
}

.u-width-136 {
  width: 136rem;
}

.u-bg-white {
  background-color: #fff;
}

.u-margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.u-max-width-1400 {
  max-width: 1400rem;
}

.u-radius-left-top-250 {
  border-radius: 250rem 0rem 0rem 0rem;
}

.u-pt-120 {
  padding-top: 120rem;
}

.u-pt-290 {
  padding-top: 290rem;
}
@media screen and (min-width: 1421px) {
  .u-pt-290 {
    padding-top: 355rem;
  }
}

.u-font-size-40 {
  font-size: 40rem;
}

.u-max-width-850 {
  max-width: 850rem;
}

@media screen and (max-width: 750px) {
  .u-sp-pb-10 {
    padding-bottom: 10rem !important;
  }
}

.u-timeline-head-border {
  display: flex;
  position: relative;
}
.u-timeline-head-border:before {
  content: "";
  display: block;
  width: 60rem;
  height: 1rem;
  background: #000;
  margin-right: 10rem;
}
.u-timeline-head-border:after {
  content: "";
  display: block;
  width: 10rem;
  height: 10rem;
  background: #1D90FF;
  position: absolute;
  border-radius: 5rem;
  left: -5rem;
  top: -5rem;
}
.u-timeline-head-border span {
  display: inline-block;
  margin-top: -28rem;
}

.u-n-t-15 {
  margin-top: -15rem;
}

.u-pl-10 {
  padding-left: 10rem;
}

.u-pr-10 {
  padding-right: 10rem;
}

.u-border-left-1-black {
  border-left: 1rem solid #000;
}

.u-pb-240 {
  padding-bottom: 240rem;
}

.u-pb-24 {
  padding-bottom: 24rem;
}

.u-width-300 {
  width: 300rem;
}

.u-width-15 {
  width: 15rem;
}

.u-font-weight-medium {
  font-weight: 500 !important;
}

.u-font-weight-700 {
  font-weight: 700 !important;
}

.u-font-weight-200 {
  font-weight: 200 !important;
}

.u-pb-60 {
  padding-bottom: 60rem;
}

.u-font-size-15 {
  font-size: 15rem;
  line-height: 29rem;
}

.u-font-size-18 {
  font-size: 18rem;
  line-height: 36rem;
}

.u-pb-62 {
  padding-bottom: 62rem;
}

.u-pb-70 {
  padding-bottom: 70rem;
}
@media screen and (max-width: 750px) {
  .u-pb-70 {
    padding-bottom: 40rem;
  }
}

.u-bg-company {
  background: url(../img/common/bg_company.webp) no-repeat center center;
  background-size: 120%;
}

.u-max-width-1553 {
  max-width: 1553rem;
}

.u-center-margin {
  margin-left: auto;
  margin-right: auto;
}

.u-font-size-19 {
  font-size: 19rem;
  line-height: 32rem;
}

.u-font-size-17 {
  font-size: 17rem;
}

.u-line-height-38 {
  line-height: 38rem;
}

.u-width-270 {
  width: 270rem;
}

.u-n-width-120 {
  width: calc(100% - 120rem);
}
@media screen and (max-width: 750px) {
  .u-n-width-120 {
    width: 100%;
  }
}

.u-n-width-300 {
  width: calc(100% - 400rem);
}
@media screen and (max-width: 750px) {
  .u-n-width-300 {
    width: 100%;
  }
}

.u-width-320 {
  width: 320rem;
}

.u-n-width-320 {
  width: calc(100% - 370rem);
}
@media screen and (max-width: 750px) {
  .u-n-width-320 {
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-215 {
    padding-top: 215rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-130 {
    padding-bottom: 130rem;
  }
}

.u-pc-only {
  display: none;
}
@media screen and (min-width: 750px) {
  .u-pc-only {
    display: block;
  }
  .u-pc-only.--only-flex {
    display: flex !important;
  }
}

.u-pc-only-flex {
  display: flex;
}
@media screen and (max-width: 750px) {
  .u-pc-only-flex {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  .u-width-100-sp {
    width: 100rem;
  }
}

@media screen and (max-width: 750px) {
  .u-width-200-sp {
    width: 200rem;
  }
}

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

.u-sp-only-flex {
  display: none !important;
}
@media screen and (max-width: 750px) {
  .u-sp-only-flex {
    display: flex !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-40 {
    padding-top: 40rem;
  }
}

.u-radius-20 {
  border-radius: 20rem;
}

.u-max-width-930 {
  max-width: 930rem;
}

.u-n-mt-140 {
  margin-top: -140rem;
}

.u-n-mt-150 {
  margin-top: -150rem;
}

.u-n-mt-15 {
  margin-top: -15rem;
}

.u-radius-10 {
  border-radius: 10rem;
}

.u-mt-n-60 {
  margin-top: -60rem;
}

.u-pl-n-1320 {
  padding-left: calc((100% - 1320rem) / 2);
}

.u-pl-n-1220 {
  padding-left: calc((100% - 1220rem) / 2);
}

.u-pl-n-1250 {
  padding-left: calc((100% - 1250rem) / 2);
}

.u-pl-20 {
  padding-left: 20rem;
}

.u-max-width-1240 {
  max-width: 1240rem;
}

.u-p-30 {
  padding: 30rem;
  box-sizing: border-box;
}

.u-max-width-87 {
  max-width: 87rem;
}

.u-font-size-30 {
  font-size: 30rem;
}
@media screen and (max-width: 750px) {
  .u-font-size-30 {
    font-size: 46rem;
  }
}

.u-border-bottom-1-gray {
  border-bottom: 1px solid #C2C2C2;
}

.u-sub-header {
  background: url(../img/common/bg_sub_header.webp) no-repeat center center;
  background-size: cover;
}

.u-border-black-1 {
  border: 1rem solid #000;
}

.u-pt-65 {
  padding-top: 65rem;
}

.u-pt-30 {
  padding-top: 30rem !important;
}

.u-pl-40 {
  padding-left: 40rem;
  box-sizing: border-box;
}

.u-pr-40 {
  padding-right: 40rem;
}

.u-pr-60 {
  padding-right: 60rem;
  box-sizing: border-box;
}

.u-pl-60 {
  padding-left: 60rem;
}

.u-pb-35 {
  padding-bottom: 35rem;
}

.u-max-width-564 {
  max-width: 564rem;
}

.u-width-523 {
  width: 523rem;
}

.u-pt-350 {
  padding-top: 350rem;
}

.u-pb-125 {
  padding-bottom: 125rem;
}

.u-n-mt-220 {
  margin-top: -220rem;
}

.u-pt-220 {
  padding-top: 220rem;
}

.u-pt-22 {
  padding-top: 22rem;
}

.u-pt-24 {
  padding-top: 24rem;
}

.u-pb-24 {
  padding-bottom: 24rem;
}

.u-bg-image-1 {
  background: url(../img/bg_photo_1.webp) no-repeat center center;
  background-size: cover;
}

.u-width-69 {
  width: 69rem;
}

.u-line-height-26 {
  line-height: 26rem;
}

.u-line-height-36 {
  line-height: 36rem;
}

.u-line-height-46 {
  line-height: 46rem;
}

.u-n-bottom-100 {
  bottom: -100rem;
}

.u-line-height-30 {
  line-height: 30rem;
}

.u-p-70 {
  padding: 70rem;
  box-sizing: border-box;
}

.u-before-tr-blue {
  overflow: hidden;
  position: relative;
}
.u-before-tr-blue:before {
  content: "";
  display: block;
  width: 2000rem;
  height: 500rem;
  background: #000034;
  transform: rotate(-25deg);
  z-index: -1;
  position: absolute;
  top: 0;
  left: -1000rem;
}

.u-height-140 {
  height: 140rem;
}

.u-pt-250 {
  padding-top: 250rem;
}

.u-pt-25 {
  padding-top: 25rem !important;
}

.u-pt-300 {
  padding-top: 300rem;
}

.u-n-bottom-200 {
  bottom: -200rem;
}

.u-n-mt-250 {
  margin-top: -250rem;
}

.u-n-mt-200 {
  margin-top: -200rem;
}

.u-mb-35 {
  margin-bottom: 35rem;
}

.u-width-280 {
  width: 280rem;
}
@media screen and (max-width: 750px) {
  .u-width-280 {
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-mt-80 {
    margin-top: 80rem;
  }
}

.u-n-t-28 {
  margin-top: -28rem;
}

.u-ml-10 {
  margin-left: 10rem;
}

.u-n-bottom-3 {
  bottom: -3rem;
}

.u-vertical-middle {
  vertical-align: middle;
}

.u-n-width-280 {
  width: calc(100% - 310rem);
}
@media screen and (max-width: 750px) {
  .u-n-width-280 {
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pl-0 {
    padding-left: 0rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pr-0 {
    padding-right: 0rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-20 {
    padding-bottom: 20rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-mr-0 {
    margin-right: 0rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-50 {
    padding-top: 50rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pr-0 {
    padding-right: 0rem !important;
  }
}

.u-bg-post {
  background: url(../img/common/bg_post_recruit_2.webp) no-repeat center center;
}

.u-pb-90 {
  padding-bottom: 90rem;
}

.u-font-weight-400 {
  font-weight: 400 !important;
}

.u-under-border-1-gray:after {
  content: "";
  display: block;
  width: 100rem;
  height: 1px;
  border-bottom: 1px solid #e0e0e0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10rem;
}

.u-font-size-54 {
  font-size: 54rem;
}

@media screen and (max-width: 750px) {
  .u-sp-pr-60 {
    padding-right: 60rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-text-left {
    text-align: left;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-text-right {
    text-align: right;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-100 {
    padding-bottom: 100rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-160 {
    padding-bottom: 160rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-80 {
    padding-bottom: 80rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-width-60pc {
    width: 60%;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pr-30 {
    padding-right: 30rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pl-30 {
    padding-left: 30rem !important;
  }
}

.u-width-170 {
  width: 170rem;
}

.u-color-red {
  color: #FF0000;
}

.u-n-width-170 {
  width: calc(100% - 210rem);
}

.u-font-sise-45 {
  font-size: 45rem;
  line-height: 60rem;
}

.u-gap-100 {
  gap: 100rem;
}

.u-n-width-80 {
  width: calc(100% - 80rem);
}

.u-max-width-530 {
  max-width: 530rem;
}

.u-pb-160 {
  padding-bottom: 160rem;
}

@media screen and (max-width: 750px) {
  .u-sp-pr-40 {
    padding-right: 40rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pl-40 {
    padding-left: 40rem !important;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-118 {
    padding-top: 200rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-380 {
    padding-bottom: 380rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-116 {
    padding-bottom: 116rem;
  }
}

.u-font-size-17 {
  font-size: 17rem;
}

.u-font-size-45 {
  font-size: 45rem;
}

.u-n-width-430 {
  width: calc(100% - 430rem);
}

.u-n-width-523 {
  width: calc(100% - 583rem);
}

.u-color-gradient-1 {
  background: linear-gradient(to right, #0068FF, #25C5D8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.u-gap-60 {
  gap: 60rem;
}

.u-pb-0 {
  padding-bottom: 0rem !important;
}

.u-line-height-43 {
  line-height: 43rem;
}

.u-n-t-190 {
  margin-top: -190rem;
}

.u-line-height-70 {
  line-height: 70rem !important;
}

@media screen and (max-width: 750px) {
  .u-sp-pb-400 {
    padding-bottom: 550rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-80 {
    padding-top: 80rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-230 {
    padding-top: 230rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-width-94pc {
    width: 94%;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-18 {
    font-size: 25rem;
    line-height: 42rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-p-0 {
    padding: 0rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-40 {
    padding-top: 40rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-mt-40 {
    margin-top: 40rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-38 {
    font-size: 38rem;
  }
}

@media screen and (max-width: 750px) {
  .u-width-263 {
    width: 263rem;
  }
}

@media screen and (max-width: 750px) {
  .u-box-center {
    margin: 0 auto;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-70 {
    line-height: 70rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-40 {
    font-size: 40rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-60 {
    line-height: 60rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-110 {
    line-height: 110rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-130 {
    padding-top: 130rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-68 {
    font-size: 68rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-16 {
    font-size: 16rem !important;
    line-height: 30rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-26 {
    font-size: 26rem !important;
    line-height: 52rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-17 {
    font-size: 26rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-100 {
    padding-top: 100rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-60 {
    padding-bottom: 60rem;
  }
}

@media screen and (max-width: 750px) {
  .u-max-width-224 {
    max-width: 440rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-50 {
    padding-bottom: 50rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-200 {
    padding-bottom: 200rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-width-100pc {
    width: 100% !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-position-relative {
    position: relative !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-55 {
    font-size: 55rem !important;
    line-height: 80rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-26 {
    font-size: 26rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-550 {
    padding-top: 550rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-700 {
    padding-top: 700rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-n-mb-100 {
    position: relative;
    bottom: -113rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-120 {
    padding-top: 120rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-position-fixed {
    position: fixed !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-shadow-none {
    box-shadow: none !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-gap-20 {
    gap: 20rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-150 {
    padding-bottom: 150rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-bg-none {
    background: none !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-19 {
    font-size: 19rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-20 {
    font-size: 20rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-180 {
    padding-top: 180rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-27 {
    font-size: 27rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-bg-gray-blue {
    background-color: #F2F6F7 !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-200 {
    padding-top: 200rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-160 {
    padding-top: 160rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-24 {
    font-size: 24rem;
    line-height: 45rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-bg-white {
    background-color: #fff !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-54 {
    line-height: 54rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-39 {
    line-height: 39rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pl-60 {
    padding-left: 60rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-110 {
    padding-bottom: 110rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-34 {
    font-size: 34rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-35 {
    font-size: 35rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-mb-110 {
    margin-bottom: 110rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-weight-100 {
    font-weight: 100 !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-weight-200 {
    font-weight: 200 !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-box-white {
    background-color: #fff !important;
    box-shadow: 0px 0px 70px rgba(10, 0, 0, 0.16);
    border-radius: 3rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-p-30 {
    padding: 30rem !important;
  }
}

.u-must {
  background: #FE4A4A;
  font-size: 19rem;
  color: #fff;
  padding: 0 10rem;
  border-radius: 5rem;
  display: inline-block;
  margin-left: 10rem;
  display: inline-block;
}
@media screen and (max-width: 750px) {
  .u-must {
    font-size: 21rem;
    line-height: 30rem;
  }
}

.u-gap-80 {
  gap: 80rem;
}

.u-max-width-558 {
  max-width: 500rem;
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-34 {
    font-size: 34rem !important;
    line-height: 60rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-48 {
    line-height: 48rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-width-430 {
    width: 430rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-width-435 {
    width: 435rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-22 {
    font-size: 22rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-34 {
    line-height: 34rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pr-25 {
    padding-right: 25rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-25 {
    font-size: 25rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pl-25 {
    padding-left: 25rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-45 {
    line-height: 45rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pl-20 {
    padding-left: 20rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pr-20 {
    padding-right: 20rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pl-70 {
    padding-left: 70rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pr-70 {
    padding-right: 70rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pr-70 {
    padding-right: 70rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-103 {
    padding-bottom: 103rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-57 {
    line-height: 57rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-n-mb-150 {
    position: relative;
    bottom: -150rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-150 {
    padding-top: 150rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-15 {
    padding-bottom: 15rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-140 {
    padding-top: 140rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-165 {
    padding-top: 165rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-30 {
    line-height: 30rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-top-60 {
    top: 60rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-top-50 {
    top: 50rem !important;
  }
}

.u-sp-left-50 {
  left: 50rem;
}

.u-width-23 {
  width: 23rem;
}

.u-bg-gradation-3 {
  background: linear-gradient(168deg, #3EB7C3 0%, #0C43C1 100%);
}

.u-max-width-388 {
  max-width: 388rem;
}

.u-hamburger-menu {
  position: relative;
  width: 24rem;
  height: 18rem;
  cursor: pointer;
  position: fixed;
  top: 30rem;
  right: 20rem;
  z-index: 300;
  display: none;
}
@media screen and (max-width: 750px) {
  .u-hamburger-menu {
    display: block;
  }
}
.u-hamburger-menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 1rem;
  transition: all 0.3s;
}
.u-hamburger-menu span:nth-of-type(1) {
  top: 0;
}
.u-hamburger-menu span:nth-of-type(2) {
  top: 8rem;
}
.u-hamburger-menu span:nth-of-type(3) {
  bottom: 0;
}
.u-hamburger-menu.active span {
  background-color: #fff;
}
.u-hamburger-menu.active span:nth-of-type(1) {
  top: 8rem;
  transform: rotate(-45deg);
}
.u-hamburger-menu.active span:nth-of-type(2) {
  opacity: 0;
}
.u-hamburger-menu.active span:nth-of-type(3) {
  bottom: 8rem;
  transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
  .u-hamburger-menu {
    width: 36rem;
    height: 33rem;
  }
  .u-hamburger-menu span:nth-of-type(2) {
    top: 15rem;
  }
  .u-hamburger-menu.active {
    width: 56rem;
    height: 29rem;
  }
  .u-hamburger-menu.active span:nth-of-type(1) {
    top: 12rem;
    transform: rotate(-45deg);
  }
  .u-hamburger-menu.active span:nth-of-type(3) {
    bottom: 13rem;
    transform: rotate(45deg);
  }
}

.u-bottom-0 {
  bottom: 0rem;
}

.u-left-0 {
  left: 0rem;
}

.u-n-bottom-250 {
  bottom: -250rem;
}

.u-left-20 {
  left: 20rem;
}

.u-width-110 {
  width: 110rem;
}

.u-height-110 {
  height: 110rem;
}

/*=============================
.btn-trigger
=============================*/
.btn-trigger {
  position: relative;
  width: 50rem;
  height: 44rem;
  cursor: pointer;
}

.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 4rem;
}

.btn-trigger, .btn-trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.btn-trigger span:nth-of-type(1) {
  top: 0;
}

.btn-trigger span:nth-of-type(2) {
  top: 20rem;
}

.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}

.u-font-montserrat {
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-42 {
    font-size: 42rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-40 {
    font-size: 40rem;
  }
}

.u-font-roboto {
  font-family: "Roboto", sans-serif;
}

.u-font-noto {
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 750px) {
  .u-pt-56 {
    padding-top: 70rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-50 {
    line-height: 50rem;
  }
}

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

.u-center-auto {
  margin-left: auto;
  margin-right: auto;
}

.u-max-width-1224 {
  max-width: 1224rem;
}

@media screen and (max-width: 750px) {
  .u-max-width-300 {
    max-width: 300rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-n-mt-50 {
    margin-top: -50rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-120 {
    padding-bottom: 120rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-mt-0 {
    margin-top: 0rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-80 {
    line-height: 80rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-weight-bold {
    font-weight: 500 !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-66 {
    line-height: 66rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-90 {
    padding-bottom: 90rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-0 {
    padding-top: 0rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-95 {
    padding-bottom: 95rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-font-size-30 {
    font-size: 30rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-n-bottom-430 {
    bottom: -430rem;
  }
}

.u-font-family-oswald {
  font-family: "Oswald", sans-serif;
}

@media screen and (max-width: 750px) {
  .u-sp-max-width-full {
    max-width: 100%;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-height-57 {
    height: 57rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-46 {
    line-height: 46rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-p-20 {
    padding: 20rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-border-left-none {
    border-left: none !important;
  }
}

.u-opacity-0 {
  opacity: 0;
}

.u-object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.u-display-none {
  display: none;
}

@media screen and (max-width: 750px) {
  .u-sp-width-600 {
    width: 600rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pr-0 {
    padding-right: 0rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-border-none {
    border-right: none !important;
  }
}

@media screen and (max-width: 750px) {
  .u-n-sp-width-150 {
    width: calc(100% - 150rem);
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pl-0 {
    padding-left: 0rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-width-400 {
    width: 400rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-width-full {
    width: 100%;
    max-width: 100% !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-38 {
    line-height: 38rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-width-1100 {
    width: 1100rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-gap-0 {
    gap: 0rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-gap-30 {
    gap: 30rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-0 {
    padding-bottom: 0rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-gap-40 {
    gap: 40rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-line-height-36 {
    line-height: 36rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-width-40 {
    width: 40rem;
  }
}

/*=============================
#btn01
=============================*/
#btn01.active span:nth-of-type(1) {
  transform: translateY(20rem) rotate(-45deg);
}

#btn01.active span:nth-of-type(2) {
  opacity: 0;
}

#btn01.active span:nth-of-type(3) {
  transform: translateY(-20rem) rotate(45deg);
}

.swiper-slide img {
  width: 100%;
}

/* Add styling for background video */
.c-mv-video {
  position: relative;
  overflow: hidden;
}

.mv-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

/* Logo Flow Animation */
.c-logo-flow {
  overflow: hidden;
  padding: 40rem 0;
}
@media screen and (max-width: 750px) {
  .c-logo-flow {
    padding: 60rem 0;
  }
}
.c-logo-flow__row {
  white-space: nowrap;
  margin-bottom: 20rem;
}
@media screen and (max-width: 750px) {
  .c-logo-flow__row {
    margin-bottom: 30rem;
  }
}
.c-logo-flow__row:last-child {
  margin-bottom: 0;
}
.c-logo-flow__track {
  display: inline-flex;
  -webkit-animation: logoFlow 60s linear infinite;
          animation: logoFlow 60s linear infinite;
}
.c-logo-flow__row--second .c-logo-flow__track {
  -webkit-animation: logoFlowReverse 60s linear infinite;
          animation: logoFlowReverse 60s linear infinite;
}
.c-logo-flow__logo {
  height: 60rem;
  width: auto;
  margin-right: 40rem;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .c-logo-flow__logo {
    height: 80rem;
    margin-right: 60rem;
  }
}
.c-logo-flow__logo:hover {
  opacity: 0.8;
}

.u-line-height-28 {
  line-height: 28rem;
}

.u-n-top-25 {
  top: -25rem;
}

.u-n-top-50 {
  top: -50rem;
}

.u-pr-50 {
  padding-right: 50rem;
}

.u-pl-50 {
  padding-left: 50rem;
}

.u-max-width-1200 {
  max-width: 1200rem;
}

.u-n-mt-280 {
  margin-top: -280rem;
}

.u-line-height-18 {
  line-height: 18rem;
}

.u-line-height-24 {
  line-height: 24rem;
}

@media screen and (max-width: 750px) {
  .u-sp-mb-80 {
    margin-bottom: 80rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-60 {
    padding-top: 60rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-width-300 {
    width: 300rem;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pt-5 {
    padding-top: 5rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-pb-5 {
    padding-bottom: 5rem !important;
  }
}

@media screen and (max-width: 750px) {
  .u-sp-n-mt-0 {
    margin-top: 0rem !important;
  }
}

/* Form Section */
.c-form-section {
  background-color: #fff;
  position: relative;
}

.c-form-container {
  background-color: transparent;
  border-radius: 10rem;
}
@media screen and (max-width: 750px) {
  .c-form-container {
    padding: 40rem 30rem;
  }
}
.c-form-container__title {
  text-align: center;
  font-size: 32rem;
  font-weight: bold;
  margin-bottom: 15rem;
}
@media screen and (max-width: 750px) {
  .c-form-container__title {
    font-size: 40rem;
  }
}
.c-form-container__description {
  text-align: center;
  font-size: 16rem;
  color: #555;
  margin-bottom: 50rem;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .c-form-container__description {
    font-size: 24rem;
    margin-bottom: 60rem;
  }
}

.c-form__group {
  display: flex;
  align-items: center;
  gap: 20rem;
  margin-bottom: 40rem;
}
@media screen and (max-width: 750px) {
  .c-form__group {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50rem;
  }
}
.c-form__group--textarea {
  align-items: flex-start;
}
.c-form__label {
  display: block;
  font-size: 16rem;
  font-weight: 600;
  min-width: 400rem;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .c-form__label {
    font-size: 26rem;
    margin-bottom: 15rem;
    min-width: auto;
  }
}
.c-form__required {
  display: inline-block;
  background-color: #D9BA5B;
  color: #fff;
  font-size: 14rem;
  padding: 2rem 8rem;
  border-radius: 0;
  margin-right: 8rem;
  font-weight: normal;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .c-form__required {
    font-size: 18rem;
    padding: 4rem 12rem;
  }
}
.c-form__optional {
  display: inline-block;
  background-color: #253948;
  color: #fff;
  font-size: 14rem;
  padding: 2rem 8rem;
  border-radius: 0;
  margin-right: 8rem;
  font-weight: normal;
  vertical-align: middle;
}
@media screen and (max-width: 750px) {
  .c-form__optional {
    font-size: 18rem;
    padding: 4rem 12rem;
  }
}
.c-form__input, .c-form__select, .c-form__textarea {
  width: 100%;
  padding: 14rem 18rem;
  border: none;
  border-radius: 5rem;
  font-size: 16rem;
  transition: box-shadow 0.3s;
  box-sizing: border-box;
  background-color: #F3F3F3;
}
.c-form__input:focus, .c-form__select:focus, .c-form__textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(49, 135, 216, 0.2);
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .c-form__input, .c-form__select, .c-form__textarea {
    padding: 20rem;
    font-size: 24rem;
  }
}
.c-form__textarea {
  resize: vertical;
  min-height: 150rem;
}
.c-form__select-wrapper {
  position: relative;
}
.c-form__select-wrapper:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18rem;
  width: 10rem;
  height: 10rem;
  border-right: 2px solid #555;
  border-bottom: 2px solid #555;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.c-form__select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.c-form__privacy {
  text-align: center;
  margin-top: 40rem;
  margin-bottom: 30rem;
  font-size: 14rem;
}
@media screen and (max-width: 750px) {
  .c-form__privacy {
    font-size: 22rem;
    line-height: 1.7;
  }
}
.c-form__privacy a {
  color: #3187D8;
  text-decoration: underline;
}
.c-form__privacy a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.c-form__checkbox-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.c-form__checkbox {
  display: none;
}
.c-form__checkbox:checked + .c-form__checkbox-custom {
  background-color: #3187D8;
  border-color: #3187D8;
}
.c-form__checkbox:checked + .c-form__checkbox-custom:after {
  opacity: 1;
}
.c-form__checkbox-custom {
  display: inline-block;
  width: 20rem;
  height: 20rem;
  border: 2px solid #ccc;
  border-radius: 4rem;
  margin-right: 10rem;
  position: relative;
  transition: all 0.2s;
}
.c-form__checkbox-custom:after {
  content: "";
  position: absolute;
  top: 2rem;
  left: 6rem;
  width: 6rem;
  height: 12rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}
.c-form__actions {
  text-align: center;
  margin-top: 40rem;
}
.c-form__submit {
  display: block;
  position: relative;
  background: #253948;
  color: #fff;
  font-size: 18rem;
  font-weight: bold;
  text-align: center;
  padding: 20rem 60rem 20rem 60rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
  margin-right: auto;
}
.c-form__submit:after {
  content: "";
  position: absolute;
  right: 30rem;
  top: 50%;
  width: 10rem;
  height: 10rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(-45deg);
}
.c-form__submit:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
@media screen and (max-width: 750px) {
  .c-form__submit {
    font-size: 28rem;
    width: 100%;
    padding: 30rem 100rem 30rem 30rem;
  }
  .c-form__submit:after {
    right: 40rem;
    width: 15rem;
    height: 15rem;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
}
.c-form__checkbox-group {
  display: flex;
  gap: 30rem;
  flex: 1;
}
@media screen and (max-width: 750px) {
  .c-form__checkbox-group {
    flex-direction: column;
    gap: 15rem;
  }
}
.c-form__checkbox-inline {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.c-form__checkbox-inline input[type=checkbox] {
  width: 20rem;
  height: 20rem;
  margin-right: 10rem;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #F3F3F3;
  border: none;
  border-radius: 0;
  position: relative;
}
@media screen and (max-width: 750px) {
  .c-form__checkbox-inline input[type=checkbox] {
    width: 30rem;
    height: 30rem;
    margin-right: 15rem;
  }
}
.c-form__checkbox-inline input[type=checkbox]:checked {
  background-color: #D9BA5B;
}
.c-form__checkbox-inline input[type=checkbox]:checked:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 45%;
  width: 6rem;
  height: 10rem;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 750px) {
  .c-form__checkbox-inline input[type=checkbox]:checked:after {
    width: 10rem;
    height: 16rem;
    border-width: 0 3px 3px 0;
  }
}
.c-form__checkbox-inline span {
  font-size: 16rem;
}
@media screen and (max-width: 750px) {
  .c-form__checkbox-inline span {
    font-size: 24rem;
  }
}

/* Contact Form 7 エラーメッセージ用スタイル */
.wpcf7-not-valid-tip {
  display: block;
  color: #dc3232;
  font-size: 14rem;
  margin-top: 5rem;
  padding: 5rem 10rem;
  background-color: #fef2f2;
  border-left: 3px solid #dc3232;
  border-radius: 3rem;
}
@media screen and (max-width: 750px) {
  .wpcf7-not-valid-tip {
    font-size: 20rem;
    margin-top: 10rem;
    padding: 10rem 15rem;
  }
}

/* バリデーションエラー時のフォーム要素 */
.wpcf7-not-valid {
  border-color: #dc3232 !important;
  background-color: #fff5f5 !important;
}

/* フォーム送信後のレスポンスメッセージ */
.wpcf7-response-output {
  margin: 30rem 0;
  padding: 15rem 20rem;
  border-radius: 5rem;
  font-size: 16rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .wpcf7-response-output {
    font-size: 24rem;
    padding: 20rem 25rem;
  }
}
.wpcf7-response-output.wpcf7-validation-errors {
  background-color: #fef2f2;
  border: 1px solid #dc3232;
  color: #dc3232;
}
.wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #f0f8ff;
  border: 1px solid #46b450;
  color: #46b450;
}
.wpcf7-response-output.wpcf7-mail-sent-ng, .wpcf7-response-output.wpcf7-spam-blocked {
  background-color: #fff5f5;
  border: 1px solid #dc3232;
  color: #dc3232;
}

@-webkit-keyframes logoFlow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes logoFlow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-webkit-keyframes logoFlowReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes logoFlowReverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/* Logo List Styling for p-logo-list */
.p-logo-list {
  padding: 60rem 40rem;
  border-radius: 10rem;
  box-shadow: 0 10rem 30rem rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 750px) {
  .p-logo-list {
    padding: 80rem 40rem;
  }
}
.p-logo-list dl {
  display: flex;
  gap: 30rem;
  align-items: center;
  justify-content: center;
  border-bottom: 2rem solid #D3D3D3;
  padding-bottom: 20rem;
  margin-bottom: 40rem;
}
@media screen and (max-width: 750px) {
  .p-logo-list dl {
    flex-direction: column;
    margin-bottom: 80rem;
  }
}
.p-logo-list dl dt {
  font-size: 24rem;
  width: 206rem;
  font-weight: bold;
  text-align: center;
  font-size: 18rem;
  line-height: 28rem;
}
@media screen and (max-width: 750px) {
  .p-logo-list dl dt {
    font-size: 32rem;
    width: 100%;
    padding-bottom: 20rem;
  }
}
.p-logo-list dl dd {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: calc(100% - 206rem);
}
@media screen and (max-width: 750px) {
  .p-logo-list dl dd {
    width: 100%;
    justify-content: center;
  }
}
.p-logo-list dl dd img {
  height: 50rem;
  width: auto;
  max-width: 150rem;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 15rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .p-logo-list dl dd img {
    height: 80rem;
    max-width: 49%;
  }
}
.p-logo-list dl dd img:hover {
  transform: translateY(-5rem);
  box-shadow: 0 8rem 25rem rgba(0, 0, 0, 0.15);
  border-color: #e0e0e0;
}

/* Modal Styles */
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.c-modal.active {
  opacity: 1;
  visibility: visible;
}
.c-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.c-modal__content {
  position: relative;
  background: white;
  border-radius: 16rem;
  box-shadow: 0 20rem 60rem rgba(0, 0, 0, 0.15);
  width: 90%;
  max-width: 600rem;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30rem);
  transition: transform 0.3s ease;
}
.c-modal.active .c-modal__content {
  transform: translateY(0);
}
@media screen and (max-width: 750px) {
  .c-modal__content {
    width: 95%;
    max-width: none;
    border-radius: 12rem;
  }
}
.c-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30rem 40rem;
  border-bottom: 1rem solid #f0f0f0;
}
@media screen and (max-width: 750px) {
  .c-modal__header {
    padding: 40rem 30rem;
  }
}
.c-modal__title {
  font-size: 24rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}
@media screen and (max-width: 750px) {
  .c-modal__title {
    font-size: 32rem;
  }
}
.c-modal__close {
  background: none;
  border: none;
  font-size: 28rem;
  color: #999;
  cursor: pointer;
  padding: 5rem;
  line-height: 1;
  transition: color 0.2s ease;
}
.c-modal__close:hover {
  color: #333;
}
@media screen and (max-width: 750px) {
  .c-modal__close {
    font-size: 36rem;
  }
}
.c-modal__form {
  padding: 0;
}

/* Form Bottom Layout */
.c-form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20rem;
}
@media screen and (max-width: 750px) {
  .c-form-bottom {
    margin-bottom: 30rem;
    gap: 20rem;
  }
}
.c-form-bottom--no-prev {
  justify-content: flex-end;
}
@media screen and (max-width: 750px) {
  .c-form-bottom--no-prev {
    justify-content: center;
  }
}

/* Mini Progress Line */
.c-mini-progress {
  display: flex;
  align-items: center;
  gap: 10rem;
}
.c-mini-progress__line {
  width: 120rem;
  height: 4rem;
  background: #e0e0e0;
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .c-mini-progress__line {
    width: 100rem;
  }
}
.c-mini-progress__fill {
  height: 100%;
  background: linear-gradient(135deg, #0068FF, #25C5D8);
  border-radius: 2rem;
  transition: width 0.3s ease;
}
.c-mini-progress__text {
  font-size: 12rem;
  color: #666;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .c-mini-progress__text {
    font-size: 16rem;
  }
}

/* Form Steps */
.c-form-step {
  display: none;
  padding: 30rem 40rem 40rem;
}
.c-form-step--active {
  display: block;
}
@media screen and (max-width: 750px) {
  .c-form-step {
    padding: 40rem 30rem 50rem;
  }
}
.c-form-step__title {
  font-size: 20rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 30rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .c-form-step__title {
    font-size: 28rem;
    margin-bottom: 40rem;
  }
}

/* Form Elements */
.c-form-group {
  margin-bottom: 25rem;
}
@media screen and (max-width: 750px) {
  .c-form-group {
    margin-bottom: 35rem;
  }
}

.c-form-label {
  display: block;
  font-size: 14rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8rem;
}
@media screen and (max-width: 750px) {
  .c-form-label {
    font-size: 20rem;
    margin-bottom: 12rem;
  }
}

.c-required {
  color: #ff4757;
  font-weight: bold;
}

.c-form-input,
.c-form-select {
  width: 100%;
  padding: 12rem 16rem;
  border: 2rem solid #e0e0e0;
  border-radius: 8rem;
  font-size: 16rem;
  transition: all 0.3s ease;
  background: white;
  box-sizing: border-box;
}
.c-form-input:focus,
.c-form-select:focus {
  outline: none;
  border-color: #0068FF;
  box-shadow: 0 0 0 3rem rgba(0, 104, 255, 0.1);
}
.c-form-input.error,
.c-form-select.error {
  border-color: #ff4757;
  box-shadow: 0 0 0 3rem rgba(255, 71, 87, 0.1);
}
@media screen and (max-width: 750px) {
  .c-form-input,
.c-form-select {
    padding: 18rem 20rem;
    font-size: 22rem;
    border-radius: 10rem;
  }
}

.c-form-select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12rem center;
  background-size: 16rem;
  padding-right: 40rem;
}
@media screen and (max-width: 750px) {
  .c-form-select {
    background-position: right 20rem center;
    background-size: 20rem;
    padding-right: 50rem;
  }
}

/* Form Actions */
.c-form-actions {
  display: flex;
  gap: 15rem;
  justify-content: center;
  margin-top: 20rem;
}
@media screen and (max-width: 750px) {
  .c-form-actions {
    flex-direction: column;
    gap: 20rem;
    margin-top: 30rem;
  }
}

.c-bottom-floating {
  position: fixed;
  bottom: 20rem;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Floating Entry Button */
.c-floating-entry {
  background: linear-gradient(135deg, #CBA476, #C29C6F);
  position: relative;
  display: block;
  color: white;
  width: 316rem;
  padding: 18rem 0;
  text-align: center;
  border-radius: 0;
  font-size: 24rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 0 4rem 15rem rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s ease;
  font-family: "Noto Serif JP", serif;
}
.c-floating-entry:before {
  content: "";
  position: absolute;
  top: 10;
  left: -15rem;
  width: 106rem;
  height: 1rem;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  box-sizing: border-box;
}
.c-floating-entry:hover {
  transform: translateY(-3rem);
  box-shadow: 0 6rem 20rem rgba(0, 0, 0, 0.25);
  opacity: 1;
}
.c-floating-entry--second {
  background: linear-gradient(135deg, #385C76, #4D7797);
  line-height: 0.7;
}
.c-floating-entry--second span {
  font-size: 12px;
}
@media screen and (max-width: 750px) {
  .c-floating-entry {
    position: fixed;
    bottom: 0;
    left: 0;
    right: auto;
    width: 50%;
    padding: 15rem 0;
    font-size: 24rem;
    border-radius: 0;
  }
  .c-floating-entry--second {
    left: 50%;
    right: auto;
    width: 50%;
    line-height: 0.9;
  }
  .c-floating-entry--second span {
    font-size: 10px;
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: flex-start;
  gap: 20rem;
}

.wpcf7-not-valid-tip {
  width: 100%;
}

.outline {
  text-align: left;
  border-bottom: solid 1px #dcdcdc;
}
.outline .contents {
  padding: 48px 16px;
}
.outline .contents__notice {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.outline .contents__date {
  font-size: 12px;
  text-align: right;
}
@media screen and (min-width: 750px) {
  .outline .contents {
    padding: 108px 56px;
  }
  .outline .contents__notice {
    font-size: 14px;
  }
  .outline .contents__date {
    font-size: 14px;
    text-align: right;
  }
}
.outline .tab {
  display: flex;
  flex-wrap: wrap;
}
.outline .tab__item {
  border: 1px solid #ccc;
  border-bottom: none;
  background: #f9f9f9;
  cursor: pointer;
  font-size: 12px;
  width: 50%;
  padding: 12px 0;
}
.outline .tab__item.active {
  background: #333;
  color: #fff;
  border-color: #333;
}
@media screen and (min-width: 750px) {
  .outline .tab {
    display: flex;
  }
  .outline .tab__item {
    border: 1px solid #ccc;
    border-bottom: none;
    background: #f9f9f9;
    cursor: pointer;
    font-size: 16px;
    width: 25%;
    padding: 20px 0;
  }
  .outline .tab__item.active {
    background: #333;
    color: #fff;
    border-color: #333;
  }
}
.outline .outline-contents {
  padding: 16px;
  border: 1px solid #ccc;
  display: none;
  margin-bottom: 24px;
}
.outline .outline-contents.active {
  display: block;
}
.outline .outline-contents table {
  width: 100%;
}
.outline .outline-contents table tr {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.outline .outline-contents table th {
  box-sizing: border-box;
  width: 100%;
  padding: 4px 8px;
  text-align: left;
  font-weight: normal;
  vertical-align: top;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
}
.outline .outline-contents table td {
  box-sizing: border-box;
  width: 100%;
  padding: 8px;
  vertical-align: top;
  line-height: 1.6;
  font-size: 14px;
}
@media screen and (min-width: 750px) {
  .outline .outline-contents {
    padding: 56px;
    border: 1px solid #ccc;
    display: none;
  }
  .outline .outline-contents.active {
    display: block;
  }
  .outline .outline-contents table {
    width: 100%;
  }
  .outline .outline-contents table tr {
    display: table-row;
    margin-bottom: 0;
  }
  .outline .outline-contents table th {
    width: 35%;
    padding: 15px 20px;
    text-align: left;
    font-weight: normal;
    vertical-align: top;
    background-color: #fff;
    border-bottom: 2px solid #C9B78B;
    font-size: 16px;
    position: relative;
    overflow: hidden;
  }
  .outline .outline-contents table td {
    width: 65%;
    padding: 15px 20px;
    vertical-align: top;
    line-height: 1.6;
    font-size: 16px;
    border-bottom: 1px solid #C9B78B;
  }
}
.outline .teaser {
  margin-bottom: 20px;
}
.outline .teaser__heading {
  border: solid 1px black;
  padding: 4px 8px;
  display: inline-block;
  margin-bottom: 8px;
}
.outline .teaser__text {
  font-size: 22rem;
}
@media screen and (min-width: 750px) {
  .outline .teaser {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }
  .outline .teaser__heading {
    border: solid 1px black;
    padding: 16px;
  }
  .outline .teaser__text {
    font-size: 14rem;
  }
}
/*# sourceMappingURL=styles.css.map */