@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

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

input,
button,
textarea,
select {
  outline: none;
  font: inherit;
  background-color: transparent;
  border: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(7.5px, 2vw, 15px);
  color: #000000;
}

body.fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  [id] {
    scroll-margin-top: 50px;
  }
}

.wrapper {
  display: flex;
}

.left {
  position: relative;
  display: none;
  min-width: 306px;
}

@media screen and (min-width: 1024px) {
  .left {
    display: block;
    width: calc((100% - 500px) * 0.6666);
  }
}

.left-contents {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.left-contents-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.left-contents-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

.left-contents-img-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-52%);
  min-width: 420px;
  max-width: 608px;
  width: 108%;
  height: 100%;
  max-height: calc(100% - 106px);
}

@media screen and (min-width: 1300px) {
  .left-contents-img-wrapper {
    max-height: calc(100% - 40px);
    transform: translateX(-48%);
  }
}

.left-contents-logo {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 90px;
  height: auto;
}

@media screen and (min-width: 1300px) {
  .left-contents-logo {
    top: 28px;
    left: 50%;
    transform: translateX(-250px);
    width: 142px;
  }
}

.left-contents-btn {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 84%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 1;
}

@media screen and (min-width: 1300px) {
  .left-contents-btn {
    gap: 16px;
  }
}

.left-contents-btn-support {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 150px;
  height: 42px;
  background-color: #ff9600;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  border: 3px solid #ff9600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 1300px) {
  .left-contents-btn-support {
    width: 200px;
    height: 58px;
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .left-contents-btn-support:hover {
    background-color: #FFFFFF;
    color: #ff9600;
  }
  .left-contents-btn-support:hover .left-contents-btn-support-img_hover {
    opacity: 1;
  }
  .left-contents-btn-support:hover .left-contents-btn-support-img {
    opacity: 0;
  }
}

.left-contents-btn-support-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.3s ease;
}

.left-contents-btn-support-img-wrapper {
  position: relative;
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 1300px) {
  .left-contents-btn-support-img-wrapper {
    width: 26px;
    height: 26px;
  }
}

.left-contents-btn-support-img_hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.left-contents-btn-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 150px;
  height: 42px;
  background-color: #06c755;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  border: 3px solid #06c755;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 1300px) {
  .left-contents-btn-line {
    width: 200px;
    height: 58px;
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .left-contents-btn-line:hover {
    background-color: #FFFFFF;
    color: #06c755;
  }
  .left-contents-btn-line:hover .left-contents-btn-line-img_hover {
    opacity: 1;
  }
  .left-contents-btn-line:hover .left-contents-btn-line-img {
    opacity: 0;
  }
}

.left-contents-btn-line-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.3s ease;
}

.left-contents-btn-line-img-wrapper {
  position: relative;
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 1300px) {
  .left-contents-btn-line-img-wrapper {
    width: 26px;
    height: 26px;
  }
}

.left-contents-btn-line-img_hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contents {
  flex-shrink: 0;
  width: 100%;
  max-width: 768px;
}

@media screen and (min-width: 768px) {
  .contents {
    width: 500px;
  }
}

.right {
  position: relative;
  display: none;
  min-width: 218px;
}

@media screen and (min-width: 768px) {
  .right {
    display: block;
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .right {
    width: calc((100% - 500px) * 0.33333);
  }
}

.right-contents {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100svh;
  background-color: #fcd005;
}

.right-contents-top {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 52px 0;
}

.right-contents-top-x_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: calc(28 / 268 * 100%);
  margin-bottom: 52px;
  width: calc(236 / 268 * 100%);
  background-color: #004097;
  padding: 12px 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  font-size: 17px;
  font-weight: 500;
  color: #FFFFFF;
  flex-shrink: 0;
}

@media screen and (min-width: 1024px) {
  .right-contents-top-x_btn:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.right-contents-top-x_btn-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  object-position: center;
}

.right-contents-top-x_btn-icon {
  width: 23px;
  height: 23px;
  object-fit: contain;
  object-position: center;
}

.right-contents-top-nav {
  margin-left: calc(48 / 268 * 100%);
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.right-contents-top-nav-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.right-contents-top-nav-list-item-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #004097;
}

@media screen and (min-width: 1024px) {
  .right-contents-top-nav-list-item-link:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.right-contents-top-nav-list-item-icon {
  width: 10px;
  height: 13px;
}

.right-contents-bottom {
  width: 100%;
  padding: 48px 0;
  background-color: #004097;
  flex-shrink: 0;
}

.right-contents-bottom-sns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 132px;
  margin: 0 auto 32px;
}

.right-contents-bottom-sns-item-link {
  display: block;
  width: 28px;
  height: 28px;
}

@media screen and (min-width: 1024px) {
  .right-contents-bottom-sns-item-link:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.right-contents-bottom-sns-item-link-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.right-contents-bottom-cdp_logo {
  display: block;
  width: 126px;
  height: 41px;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .right-contents-bottom-cdp_logo:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.right-contents-bottom-cdp_logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.common-hero {
  margin-bottom: clamp(15px, 4vw, 30px);
}

@media screen and (min-width: 768px) {
  .common-hero {
    margin-bottom: 20px;
  }
}

.common-hero-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: clamp(50px, 13.33333vw, 100px);
  padding: 0 clamp(12px, 3.2vw, 24px);
  width: clamp(375px, 100vw, 750px);
  height: clamp(135px, 36vw, 270px);
}

@media screen and (min-width: 768px) {
  .common-hero-top {
    margin-top: 0;
    padding: 0 16px;
    width: 500px;
    height: 180px;
  }
}

.common-hero-top-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.common-hero-top-title {
  font-size: clamp(20px, 5.33333vw, 40px);
  font-weight: 700;
  color: #ff9600;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .common-hero-top-title {
    font-size: 26.66667px;
  }
}

.common-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: clamp(12px, 3.2vw, 24px) clamp(12px, 3.2vw, 24px) 0;
}

@media screen and (min-width: 768px) {
  .common-breadcrumb {
    padding: 16px 16px 0;
  }
}

.common-breadcrumb li {
  font-size: clamp(12px, 3.2vw, 24px);
  color: #000000;
}

@media screen and (min-width: 768px) {
  .common-breadcrumb li {
    font-size: 16px;
  }
}

.common-breadcrumb li a {
  font-size: clamp(12px, 3.2vw, 24px);
  color: #000000;
}

@media screen and (min-width: 768px) {
  .common-breadcrumb li a {
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {
  .common-breadcrumb li a:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.common-breadcrumb-arrow {
  padding: 0 clamp(4px, 1.06667vw, 8px);
}

@media screen and (min-width: 768px) {
  .common-breadcrumb-arrow {
    padding: 0 5.33333px;
  }
}

.form-title {
  margin-bottom: clamp(24px, 6.4vw, 48px);
  font-size: clamp(22px, 5.86667vw, 44px);
  font-weight: 700;
  color: #ff9600;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .form-title {
    margin-bottom: 32px;
    font-size: 29.33333px;
  }
}

.form > p {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .form > p {
    font-size: 20px;
  }
}

.form-head {
  margin-top: clamp(24px, 6.4vw, 48px);
  margin-bottom: clamp(6px, 1.6vw, 12px);
  font-size: clamp(16px, 4.26667vw, 32px);
  font-weight: 500;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .form-head {
    margin-top: 32px;
    margin-bottom: 8px;
    font-size: 21.33333px;
  }
}

.form-head-required {
  margin-left: clamp(8px, 2.13333vw, 16px);
  padding: 0 clamp(6px, 1.6vw, 12px) clamp(2px, 0.53333vw, 4px);
  background-color: #ff4200;
  font-size: clamp(11px, 2.93333vw, 22px);
  font-weight: 400;
  color: #FFFFFF;
}

@media screen and (min-width: 768px) {
  .form-head-required {
    margin-left: 10.66667px;
    padding: 2.66667px 5.33333px;
    font-size: 14.66667px;
  }
}

.form-post_num > p {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.6vw, 12px);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .form-post_num > p {
    gap: 8px;
    font-size: 20px;
  }
}

.form-post_num > p .wpcf7-form-control-wrap {
  width: clamp(75px, 20vw, 150px);
}

@media screen and (min-width: 768px) {
  .form-post_num > p .wpcf7-form-control-wrap {
    width: 100px;
  }
}

.form-post_num > p .form-post_num-hyphen {
  font-size: clamp(16px, 4.26667vw, 32px);
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .form-post_num > p .form-post_num-hyphen {
    font-size: 21.33333px;
  }
}

.form .wpcf7-form-control-wrap {
  width: 100%;
}

.form .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.6vw, 12px);
}

@media screen and (min-width: 768px) {
  .form .wpcf7-radio {
    gap: 8px;
  }
}

.form .wpcf7-radio lable {
  display: flex;
  align-items: center;
}

.form .wpcf7-radio input {
  accent-color: #000000;
}

.form .wpcf7-radio .wpcf7-list-item-label {
  font-size: clamp(15px, 4vw, 30px);
}

@media screen and (min-width: 768px) {
  .form .wpcf7-radio .wpcf7-list-item-label {
    font-size: 20px;
  }
}

.form .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1.6vw, 12px);
}

@media screen and (min-width: 768px) {
  .form .wpcf7-checkbox {
    gap: 8px;
  }
}

.form .wpcf7-checkbox lable {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.6vw, 12px);
}

@media screen and (min-width: 768px) {
  .form .wpcf7-checkbox lable {
    gap: 8px;
  }
}

.form .wpcf7-checkbox input {
  accent-color: #000000;
}

.form .wpcf7-checkbox .wpcf7-list-item-label {
  font-size: clamp(15px, 4vw, 30px);
}

@media screen and (min-width: 768px) {
  .form .wpcf7-checkbox .wpcf7-list-item-label {
    font-size: 20px;
  }
}

.form .wpcf7-text,
.form .wpcf7-textarea {
  width: 100%;
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  padding: clamp(8px, 2.13333vw, 16px) clamp(10px, 2.66667vw, 20px);
  border-radius: 2px;
  border: 1px solid #4d4d4d;
}

@media screen and (min-width: 768px) {
  .form .wpcf7-text,
  .form .wpcf7-textarea {
    font-size: 20px;
    padding: 10.66667px 13.33333px;
  }
}

.form-note {
  margin-bottom: clamp(6px, 1.6vw, 12px);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 400;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .form-note {
    margin-bottom: 8px;
    font-size: 20px;
  }
}

.form-privacy-policy {
  margin-top: clamp(24px, 6.4vw, 48px);
  margin-bottom: clamp(24px, 6.4vw, 48px);
  text-align: center;
  font-size: clamp(12.5px, 3.33333vw, 25px);
  font-weight: 400;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .form-privacy-policy {
    margin-top: 32px;
    margin-bottom: 32px;
    font-size: 16.66667px;
  }
}

.form-privacy-policy-link {
  color: #000000;
  text-decoration: underline;
}

@media screen and (min-width: 1024px) {
  .form-privacy-policy-link:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.form .wpcf7-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: clamp(70px, 18.66667vw, 140px);
  margin-top: clamp(40px, 10.66667vw, 80px);
  font-size: clamp(17px, 4.53333vw, 34px);
  font-weight: 700;
  color: #FFFFFF;
  background-color: #ff9600;
  border: 3px solid #ff9600;
  border-radius: clamp(6.5px, 1.73333vw, 13px);
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .form .wpcf7-submit {
    height: 93.33333px;
    margin-top: 53.33333px;
    font-size: 22.66667px;
    border-radius: 8.66667px;
  }
}

@media screen and (min-width: 1024px) {
  .form .wpcf7-submit:hover {
    background-color: #FFFFFF;
    color: #ff9600;
  }
}

.form .wpcf7-previous {
  display: block;
  margin: clamp(4px, 1.06667vw, 8px) auto 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .form .wpcf7-previous:hover {
    opacity: 0.6;
  }
}

.form-support-donation {
  display: none;
}

.form-support-donation.show {
  display: block;
}

.form-support-donation > p {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.6vw, 12px);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .form-support-donation > p {
    gap: 8px;
    font-size: 20px;
  }
}

.home-common-title {
  display: block;
  margin: 0 auto;
  line-height: 1.2;
}

.home-common-title-main {
  display: block;
  font-size: clamp(30px, 8vw, 60px);
  font-weight: 700;
  text-align: center;
  color: #ff9600;
}

@media screen and (min-width: 768px) {
  .home-common-title-main {
    font-size: 40px;
  }
}

.home-common-title-sub {
  display: block;
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  text-align: center;
  color: #ff9600;
}

@media screen and (min-width: 768px) {
  .home-common-title-sub {
    font-size: 20px;
  }
}

.home-hero {
  position: relative;
  padding-top: clamp(50px, 13.33333vw, 100px);
}

@media screen and (min-width: 768px) {
  .home-hero {
    padding-top: 0;
  }
}

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

.home-hero-swiper {
  width: 100%;
  height: clamp(490px, 130.66667vw, 980px);
}

@media screen and (min-width: 768px) {
  .home-hero-swiper {
    height: 653.33333px;
  }
}

.home-hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.home-hero-swiper-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-hero-btn {
  position: fixed;
  bottom: clamp(10px, 2.66667vw, 20px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: clamp(10px, 2.66667vw, 20px);
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .home-hero-btn {
    gap: 13.33333px;
    bottom: 13.33333px;
    left: 250px;
  }
}

@media screen and (min-width: 1024px) {
  .home-hero-btn._lower {
    display: none;
  }
}

.home-hero-btn-support {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2.66667vw, 20px);
  width: clamp(160px, 42.66667vw, 320px);
  height: clamp(50px, 13.33333vw, 100px);
  background-color: #ff9600;
  border-radius: clamp(6.5px, 1.73333vw, 13px);
  font-size: clamp(19px, 5.06667vw, 38px);
  font-weight: 700;
  color: #FFFFFF;
  border: 3px solid #ff9600;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .home-hero-btn-support {
    gap: 13.33333px;
    width: 213.33333px;
    height: 66.66667px;
    border-radius: 8.66667px;
    font-size: 25.33333px;
  }
}

.home-hero-btn-support-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.3s ease;
}

.home-hero-btn-support-img-wrapper {
  position: relative;
  width: clamp(22.5px, 6vw, 45px);
  height: clamp(22.5px, 6vw, 45px);
}

@media screen and (min-width: 768px) {
  .home-hero-btn-support-img-wrapper {
    width: 30px;
    height: 30px;
  }
}

.home-hero-btn-support-img_hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-hero-btn-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2.66667vw, 20px);
  width: clamp(160px, 42.66667vw, 320px);
  height: clamp(50px, 13.33333vw, 100px);
  background-color: #06c755;
  border-radius: clamp(6.5px, 1.73333vw, 13px);
  font-size: clamp(19px, 5.06667vw, 38px);
  font-weight: 700;
  color: #FFFFFF;
  border: 3px solid #06c755;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .home-hero-btn-line {
    gap: 13.33333px;
    width: 213.33333px;
    height: 66.66667px;
    border-radius: 8.66667px;
    font-size: 25.33333px;
  }
}

.home-hero-btn-line-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.3s ease;
}

.home-hero-btn-line-img-wrapper {
  position: relative;
  width: clamp(22.5px, 6vw, 45px);
  height: clamp(22.5px, 6vw, 45px);
}

@media screen and (min-width: 768px) {
  .home-hero-btn-line-img-wrapper {
    width: 30px;
    height: 30px;
  }
}

.home-hero-btn-line-img_hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-slogan {
  position: relative;
}

.home-slogan-inner {
  position: absolute;
  top: clamp(60px, 16vw, 120px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .home-slogan-inner {
    top: 80px;
  }
}

.home-slogan-title {
  margin-bottom: clamp(18px, 4.8vw, 36px);
  font-size: clamp(32px, 8.53333vw, 64px);
  font-weight: 700;
  text-align: center;
  color: #ff9600;
}

@media screen and (min-width: 768px) {
  .home-slogan-title {
    font-size: 42.66667px;
  }
}

.home-slogan-text {
  font-size: clamp(16px, 4.26667vw, 32px);
  font-weight: 400;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .home-slogan-text {
    font-size: 21.33333px;
  }
}

.home-slogan-img {
  width: 100%;
  height: auto;
}

.home-vision {
  position: relative;
  padding: clamp(30px, 8vw, 60px) 0 clamp(40px, 10.66667vw, 80px);
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .home-vision {
    padding: 53.33333px 0;
  }
}

.home-vision-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.home-vision-title {
  margin-bottom: clamp(50px, 13.33333vw, 100px);
  font-size: clamp(40px, 10.66667vw, 80px);
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .home-vision-title {
    margin-bottom: 66.66667px;
    font-size: 53.33333px;
  }
}

.home-vision-title-name {
  font-size: clamp(23px, 6.13333vw, 46px);
}

@media screen and (min-width: 768px) {
  .home-vision-title-name {
    font-size: 30.66667px;
  }
}

.home-vision-title-vision {
  font-size: clamp(30px, 8vw, 60px);
}

@media screen and (min-width: 768px) {
  .home-vision-title-vision {
    font-size: 40px;
  }
}

.home-vision-contents-item {
  position: relative;
  padding: clamp(30px, 8vw, 60px) clamp(32px, 8.53333vw, 64px) clamp(40px, 10.66667vw, 80px);
  margin-left: clamp(30px, 8vw, 60px);
  margin-bottom: clamp(48px, 12.8vw, 96px);
  width: calc(100% - get_size(60));
  border-top-left-radius: clamp(15px, 4vw, 30px);
  border-bottom-left-radius: clamp(15px, 4vw, 30px);
  background-color: #FFFFFF;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.home-vision-contents-item.active {
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item {
    padding: 40px 42.66667px 53.33333px;
    margin-left: 40px;
    width: calc(100% - get_size_desktop(60));
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}

.home-vision-contents-item:nth-child(odd) {
  transform: translateX(100%);
}

.home-vision-contents-item:nth-child(odd).active {
  transform: translateX(0);
}

.home-vision-contents-item:nth-child(even) {
  margin-left: 0;
  margin-right: clamp(30px, 8vw, 60px);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: clamp(15px, 4vw, 30px);
  border-bottom-right-radius: clamp(15px, 4vw, 30px);
  transform: translateX(-100%);
}

.home-vision-contents-item:nth-child(even).active {
  transform: translateX(0);
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item:nth-child(even) {
    margin-right: 40px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

.home-vision-contents-item:nth-child(even) .home-vision-contents-item-num {
  left: auto;
  right: clamp(-34px, -4.53333vw, -17px);
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item:nth-child(even) .home-vision-contents-item-num {
    right: -22.66667px;
  }
}

.home-vision-contents-item:last-child {
  margin-bottom: clamp(40px, 10.66667vw, 80px);
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item:last-child {
    margin-bottom: 53.33333px;
  }
}

.home-vision-contents-item-num {
  position: absolute;
  top: clamp(-52px, -6.93333vw, -26px);
  left: clamp(-34px, -4.53333vw, -17px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 0.9;
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item-num {
    top: -34.66667px;
    left: -22.66667px;
  }
}

.home-vision-contents-item-num-text {
  font-size: clamp(16px, 4.26667vw, 32px);
  font-weight: 500;
  color: #ff9600;
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item-num-text {
    font-size: 21.33333px;
  }
}

.home-vision-contents-item-num-num {
  margin-right: clamp(8px, 2.13333vw, 16px);
  font-size: clamp(50px, 13.33333vw, 100px);
  font-weight: 700;
  font-style: italic;
  color: #ff9600;
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item-num-num {
    margin-right: 10.66667px;
    font-size: 66.66667px;
  }
}

.home-vision-contents-item-title {
  margin-bottom: clamp(2px, 0.53333vw, 4px);
  font-size: clamp(20px, 5.33333vw, 40px);
  font-weight: 700;
  color: #ff9600;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item-title {
    margin-bottom: 2.66667px;
    font-size: 26.66667px;
  }
}

.home-vision-contents-item-subtitle {
  font-size: clamp(13px, 3.46667vw, 26px);
  font-weight: 500;
  text-align: center;
  margin-bottom: clamp(20px, 5.33333vw, 40px);
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item-subtitle {
    font-size: 17.33333px;
    margin-bottom: 26.66667px;
  }
}

.home-vision-contents-item-img {
  margin: clamp(10px, 2.66667vw, 20px) 0;
  width: 100%;
  height: clamp(110px, 29.33333vw, 220px);
  object-fit: contain;
  object-position: center;
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item-img {
    margin: 13.33333px 0;
    height: 146.66667px;
  }
}

.home-vision-contents-item-box {
  margin-bottom: clamp(20px, 5.33333vw, 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: clamp(10px, 2.66667vw, 20px);
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item-box {
    margin-bottom: 26.66667px;
  }
}

.home-vision-contents-item-box-img {
  width: auto;
  height: clamp(90px, 24vw, 180px);
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item-box-img {
    height: 120px;
  }
}

.home-vision-contents-item-box-title {
  display: inline-block;
  width: 100%;
  padding: clamp(4px, 1.06667vw, 8px) 0 clamp(5px, 1.33333vw, 10px);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
  background-color: #ff9600;
  border-radius: 100vh;
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item-box-title {
    font-size: 21.33333px;
  }
}

.home-vision-contents-item-text {
  font-size: clamp(14px, 3.73333vw, 28px);
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item-text {
    font-size: 18.66667px;
  }
}

.home-vision-contents-item-text._left {
  text-align: left;
}

.home-vision-contents-item-text-accent {
  position: relative;
  font-size: clamp(20px, 5.33333vw, 40px);
  font-weight: 700;
  text-align: center;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item-text-accent {
    font-size: 26.66667px;
  }
}

.home-vision-contents-item-text-accent-marker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: clamp(12px, 3.2vw, 24px);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .home-vision-contents-item-text-accent-marker {
    height: 16px;
  }
}

.home-vision-contents-youtube {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.home-vision-contents-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-profile {
  position: relative;
}

.home-profile-top {
  position: relative;
  width: 100%;
}

.home-profile-top-img {
  width: 100%;
  height: auto;
}

.home-profile-top-inner {
  position: absolute;
  top: clamp(34px, 9.06667vw, 68px);
  left: 0;
  width: 100%;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .home-profile-top-inner {
    top: 45.33333px;
  }
}

.home-profile-top-title {
  margin-bottom: clamp(16px, 4.26667vw, 32px);
  font-size: clamp(30px, 8vw, 60px);
  font-weight: 700;
  text-align: center;
  color: #ff9600;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .home-profile-top-title {
    margin-bottom: 21.33333px;
    font-size: 40px;
  }
}

.home-profile-top-title-name {
  font-size: clamp(23px, 6.13333vw, 46px);
}

@media screen and (min-width: 768px) {
  .home-profile-top-title-name {
    font-size: 30.66667px;
  }
}

.home-profile-top-subtitle {
  font-size: clamp(16px, 4.26667vw, 32px);
  font-weight: 500;
  text-align: center;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .home-profile-top-subtitle {
    font-size: 21.33333px;
  }
}

.home-profile-bottom {
  position: relative;
  width: 100%;
}

.home-profile-bottom-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: -1;
}

.home-profile-bottom-inner {
  padding: 0 clamp(12px, 3.2vw, 24px) clamp(46px, 12.26667vw, 92px);
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-inner {
    padding: 0 16px 61.33333px;
  }
}

.home-profile-bottom-profile {
  width: 100%;
  padding: clamp(20px, 5.33333vw, 40px) clamp(30px, 8vw, 60px) clamp(38px, 10.13333vw, 76px);
  margin-bottom: clamp(14px, 3.73333vw, 28px);
  border-radius: clamp(15px, 4vw, 30px);
  background-color: #FFFFFF;
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-profile {
    padding: 26.66667px 16px 50.66667px;
    margin-bottom: 18.66667px;
    border-radius: 20px;
  }
}

.home-profile-bottom-profile-inner {
  opacity: 0;
  transform: translateY(clamp(50px, 13.33333vw, 100px));
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.home-profile-bottom-profile-inner.active {
  transform: translateY(0);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-profile-inner {
    transform: translateY(66.66667px);
  }
}

.home-profile-bottom-profile-title {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.6vw, 12px);
  margin-bottom: clamp(6px, 1.6vw, 12px);
  font-size: clamp(17px, 4.53333vw, 34px);
  font-weight: 700;
  color: #ff9600;
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-profile-title {
    gap: 8px;
    margin-bottom: 8px;
    font-size: 22.66667px;
  }
}

.home-profile-bottom-profile-title-icon {
  width: clamp(14px, 3.73333vw, 28px);
  height: clamp(15px, 4vw, 30px);
  fill: #ff9600;
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-profile-title-icon {
    width: 18.66667px;
    height: 20px;
  }
}

.home-profile-bottom-profile-list {
  width: 100%;
}

.home-profile-bottom-profile-list-item {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
}

.home-profile-bottom-profile-list-item:before {
  content: "・";
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-profile-list-item {
    font-size: 20px;
  }
}

.home-profile-bottom-profile-text {
  margin-bottom: clamp(18px, 4.8vw, 36px);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-profile-text {
    margin-bottom: 24px;
    font-size: 20px;
  }
}

.home-profile-bottom-profile-text:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-profile-text:last-child {
    margin-bottom: 0;
  }
}

.home-profile-bottom-profile-text-item {
  display: block;
  margin-left: clamp(18px, 4.8vw, 36px);
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-profile-text-item {
    margin-left: 24px;
  }
}

.home-profile-bottom-character {
  width: 100%;
  padding: clamp(20px, 5.33333vw, 40px) clamp(12px, 3.2vw, 24px) clamp(38px, 10.13333vw, 76px);
  border-radius: clamp(15px, 4vw, 30px);
  background-color: #ffeb84;
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-character {
    padding: 26.66667px 16px 50.66667px;
    border-radius: 20px;
  }
}

.home-profile-bottom-character-inner {
  opacity: 0;
  opacity: 0;
  transform: translateY(clamp(50px, 13.33333vw, 100px));
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.home-profile-bottom-character-inner.active {
  transform: translateY(0);
  opacity: 1;
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-character {
    transform: translateY(66.66667px);
  }
}

.home-profile-bottom-character-title {
  margin-bottom: clamp(30px, 8vw, 60px);
  font-size: clamp(30px, 8vw, 60px);
  font-weight: 700;
  color: #ff9600;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-character-title {
    margin-bottom: 40px;
    font-size: 40px;
  }
}

.home-profile-bottom-character-title-sub {
  font-size: clamp(16px, 4.26667vw, 32px);
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-character-title-sub {
    font-size: 21.33333px;
  }
}

.home-profile-bottom-character-img {
  display: block;
  margin: 0 auto clamp(20px, 5.33333vw, 40px);
  width: clamp(171px, 45.6vw, 342px);
  height: auto;
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-character-img {
    margin: 0 auto 26.66667px;
    width: 228px;
  }
}

.home-profile-bottom-character-text {
  margin-bottom: clamp(20px, 5.33333vw, 40px);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-character-text {
    margin-bottom: 26.66667px;
    font-size: 20px;
  }
}

.home-profile-bottom-character-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: clamp(245px, 65.33333vw, 490px);
  height: clamp(50px, 13.33333vw, 100px);
  border-radius: clamp(6.5px, 1.73333vw, 13px);
  background-color: #06c755;
  border: 3px solid #06c755;
  font-size: clamp(17px, 4.53333vw, 34px);
  font-weight: 700;
  color: #FFFFFF;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .home-profile-bottom-character-btn {
    width: 326.66667px;
    height: 66.66667px;
    border-radius: 8.66667px;
    font-size: 22.66667px;
  }
}

@media screen and (min-width: 1024px) {
  .home-profile-bottom-character-btn:hover {
    background-color: #FFFFFF;
    color: #06c755;
  }
}

.home-topics {
  width: 100%;
  padding: clamp(50px, 13.33333vw, 100px) 0;
}

@media screen and (min-width: 768px) {
  .home-topics {
    padding: 66.66667px 0;
  }
}

.home-topics-inner {
  width: calc(100% - clamp(32px, 8.53333vw, 64px) * 2);
  margin: clamp(24px, 6.4vw, 48px) clamp(32px, 8.53333vw, 64px) 0;
  border-top: 1px solid #b4bbbe;
}

@media screen and (min-width: 768px) {
  .home-topics-inner {
    width: calc(100% - 42.66667px * 2);
    margin: 32px 42.66667px 0;
  }
}

.home-topics-item {
  width: 100%;
  padding: clamp(20px, 5.33333vw, 40px) 0;
  border-bottom: 1px solid #b4bbbe;
}

@media screen and (min-width: 768px) {
  .home-topics-item {
    padding: 26.66667px 0;
  }
}

.home-topics-item-category {
  display: block;
  width: fit-content;
  padding: clamp(6px, 1.6vw, 12px) clamp(22px, 5.86667vw, 44px);
  margin-bottom: clamp(16px, 4.26667vw, 32px);
  font-size: clamp(12px, 3.2vw, 24px);
  font-weight: 500;
  color: #FFFFFF;
  background-color: #ff9600;
  border-radius: 100vh;
}

@media screen and (min-width: 768px) {
  .home-topics-item-category {
    padding: 8px 29.33333px;
    margin-bottom: 21.33333px;
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {
  .home-topics-item-category:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.home-topics-item-link {
  display: block;
  width: 100%;
}

.home-topics-item-link-title {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
  margin: 0;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .home-topics-item-link-title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .home-topics-item-link:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.home-topics-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(160px, 42.66667vw, 320px);
  height: clamp(50px, 13.33333vw, 100px);
  margin: clamp(24px, 6.4vw, 48px) auto 0;
  border-radius: clamp(6.5px, 1.73333vw, 13px);
  background-color: #ff9600;
  border: 3px solid #ff9600;
  font-size: clamp(19px, 5.06667vw, 38px);
  font-weight: 500;
  color: #FFFFFF;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .home-topics-more {
    font-size: 25.33333px;
    width: 213.33333px;
    height: 66.66667px;
    border-radius: 8.66667px;
    margin: 32px auto 0;
  }
}

@media screen and (min-width: 1024px) {
  .home-topics-more:hover {
    background-color: #FFFFFF;
    color: #ff9600;
  }
}

.home-magazine {
  width: 100%;
  padding: clamp(50px, 13.33333vw, 100px) 0;
  background-color: #fff8d6;
}

@media screen and (min-width: 768px) {
  .home-magazine {
    padding: 66.66667px 0;
  }
}

.home-magazine-inner {
  width: calc(100% - clamp(32px, 8.53333vw, 64px) * 2);
  margin: clamp(55px, 14.66667vw, 110px) clamp(32px, 8.53333vw, 64px) 0;
}

@media screen and (min-width: 768px) {
  .home-magazine-inner {
    width: calc(100% - 42.66667px * 2);
    margin: 73.33333px 42.66667px 0;
  }
}

.home-magazine-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(70px, 18.66667vw, 140px) clamp(36px, 9.6vw, 72px);
}

@media screen and (min-width: 768px) {
  .home-magazine-list {
    gap: 93.33333px 48px;
  }
}

.home-magazine-list-item {
  position: relative;
  width: calc(50% - clamp(36px, 9.6vw, 72px) / 2);
  z-index: 1;
  opacity: 0;
  transform: translateY(clamp(50px, 13.33333vw, 100px));
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.home-magazine-list-item.active {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 768px) {
  .home-magazine-list-item {
    width: calc(50% - 48px / 2);
  }
}

.home-magazine-list-item:nth-child(even) {
  top: clamp(50px, 13.33333vw, 100px);
}

@media screen and (min-width: 768px) {
  .home-magazine-list-item:nth-child(even) {
    top: 66.66667px;
  }
}

.home-magazine-list-item-num {
  position: absolute;
  top: clamp(-96px, -12.8vw, -48px);
  left: clamp(-48px, -6.4vw, -24px);
  font-size: clamp(55px, 14.66667vw, 110px);
  font-weight: 500;
  color: #ffe45c;
  font-style: italic;
  line-height: 1;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .home-magazine-list-item-num {
    top: -64px;
    left: -32px;
    font-size: 73.33333px;
  }
}

@media screen and (min-width: 1024px) {
  .home-magazine-list-item-link:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.home-magazine-list-item-link-img {
  width: 100%;
  height: auto;
  margin-bottom: clamp(14px, 3.73333vw, 28px);
}

@media screen and (min-width: 768px) {
  .home-magazine-list-item-link-img {
    margin-bottom: 18.66667px;
  }
}

.home-magazine-list-item-link-title {
  margin-bottom: clamp(10px, 2.66667vw, 20px);
  font-size: clamp(17px, 4.53333vw, 34px);
  font-weight: 500;
  color: #004097;
}

@media screen and (min-width: 768px) {
  .home-magazine-list-item-link-title {
    margin-bottom: 13.33333px;
    font-size: 22.66667px;
  }
}

.home-magazine-list-item-link-summary {
  font-size: clamp(14px, 3.73333vw, 28px);
  font-weight: 500;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .home-magazine-list-item-link-summary {
    font-size: 18.66667px;
  }
}

.home-magazine-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(160px, 42.66667vw, 320px);
  height: clamp(50px, 13.33333vw, 100px);
  margin: clamp(74px, 19.73333vw, 148px) auto 0;
  border-radius: clamp(6.5px, 1.73333vw, 13px);
  background-color: #ff9600;
  border: 3px solid #ff9600;
  font-size: clamp(19px, 5.06667vw, 38px);
  font-weight: 500;
  color: #FFFFFF;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .home-magazine-more {
    font-size: 25.33333px;
    width: 213.33333px;
    height: 66.66667px;
    border-radius: 8.66667px;
    margin: 98.66667px auto 0;
  }
}

@media screen and (min-width: 1024px) {
  .home-magazine-more:hover {
    background-color: #FFFFFF;
    color: #ff9600;
  }
}

.home-extra {
  width: 100%;
  padding: clamp(50px, 13.33333vw, 100px) 0;
}

@media screen and (min-width: 768px) {
  .home-extra {
    padding: 66.66667px 0;
  }
}

.home-extra-inner {
  width: calc(100% - clamp(55px, 14.66667vw, 110px) * 2);
  margin: clamp(24px, 6.4vw, 48px) clamp(55px, 14.66667vw, 110px) 0;
}

@media screen and (min-width: 768px) {
  .home-extra-inner {
    width: calc(100% - 73.33333px * 2);
    margin: 32px 73.33333px 0;
  }
}

.home-extra-list {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 9.6vw, 72px);
}

@media screen and (min-width: 768px) {
  .home-extra-list {
    gap: 48px;
  }
}

.home-extra-list-item {
  width: 100%;
  opacity: 0;
  transform: translateY(clamp(50px, 13.33333vw, 100px));
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.home-extra-list-item.active {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 1024px) {
  .home-extra-list-item-link:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.home-extra-list-item-link-img {
  width: 100%;
  height: auto;
  margin-bottom: clamp(14px, 3.73333vw, 28px);
}

@media screen and (min-width: 768px) {
  .home-extra-list-item-link-img {
    margin-bottom: 18.66667px;
  }
}

.home-extra-list-item-link-title {
  margin-bottom: clamp(6px, 1.6vw, 12px);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 700;
  color: #ff9600;
}

@media screen and (min-width: 768px) {
  .home-extra-list-item-link-title {
    margin-bottom: 8px;
    font-size: 20px;
  }
}

.home-extra-list-item-link-summary {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .home-extra-list-item-link-summary {
    font-size: 20px;
  }
}

.home-extra-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(160px, 42.66667vw, 320px);
  height: clamp(50px, 13.33333vw, 100px);
  margin: clamp(30px, 8vw, 60px) auto 0;
  border-radius: clamp(6.5px, 1.73333vw, 13px);
  background-color: #ff9600;
  border: 3px solid #ff9600;
  font-size: clamp(19px, 5.06667vw, 38px);
  font-weight: 500;
  color: #FFFFFF;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .home-extra-more {
    font-size: 25.33333px;
    width: 213.33333px;
    height: 66.66667px;
    border-radius: 8.66667px;
    margin: 40px auto 0;
  }
}

@media screen and (min-width: 1024px) {
  .home-extra-more:hover {
    background-color: #FFFFFF;
    color: #ff9600;
  }
}

.home-bnr {
  width: 100%;
  padding: 0 0 clamp(30px, 8vw, 60px);
}

@media screen and (min-width: 768px) {
  .home-bnr {
    padding: 0 0 40px;
  }
}

.home-bnr-link {
  display: block;
  width: clamp(350px, 93.33333vw, 700px);
  height: auto;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .home-bnr-link:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

@media screen and (min-width: 768px) {
  .home-bnr-link {
    width: 466.66667px;
    margin: 0 auto;
  }
}

.home-bnr-link-img {
  display: block;
  width: 100%;
  height: auto;
}

.single-content {
  width: 100%;
  padding: 0 clamp(32px, 8.53333vw, 64px);
  margin-bottom: clamp(80px, 21.33333vw, 160px);
}

@media screen and (min-width: 768px) {
  .single-content {
    padding: 0 42.66667px;
    margin-bottom: 106.66667px;
  }
}

.single-content p {
  margin-bottom: clamp(16px, 4.26667vw, 32px);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .single-content p {
    margin-bottom: 21.33333px;
    font-size: 20px;
  }
}

.single-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ff9600;
  margin-top: clamp(80px, 21.33333vw, 160px);
}

@media screen and (min-width: 768px) {
  .single-navigation {
    margin-top: 106.66667px;
  }
}

.single-navigation-label {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #ff9600;
}

@media screen and (min-width: 768px) {
  .single-navigation-label {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .single-navigation-label:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.single-pdf-link {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto clamp(16px, 4.26667vw, 32px);
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .single-pdf-link:hover {
    opacity: 0.6;
  }
}

.single-pdf-link > img {
  display: block;
  width: 100%;
  height: auto;
}

.single-summary {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .single-summary {
    font-size: 20px;
  }
}

.single-summary strong {
  font-weight: 700;
}

.single-summary em {
  font-style: italic;
}

.single-summary ul {
  list-style: disc;
  padding-left: clamp(16px, 4.26667vw, 32px);
}

.single-summary ol {
  list-style: decimal;
  padding-left: clamp(16px, 4.26667vw, 32px);
}

.single-tags {
  display: flex;
  gap: clamp(8px, 2.13333vw, 16px);
  margin-bottom: clamp(20px, 5.33333vw, 40px);
}

@media screen and (min-width: 768px) {
  .single-tags {
    gap: 10.66667px;
    margin-bottom: 26.66667px;
  }
}

.single-tags-item {
  display: block;
  width: fit-content;
  padding: clamp(6px, 1.6vw, 12px) clamp(22px, 5.86667vw, 44px);
  font-size: clamp(12px, 3.2vw, 24px);
  font-weight: 500;
  color: #FFFFFF;
  background-color: #ff9600;
  border-radius: 100vh;
}

@media screen and (min-width: 768px) {
  .single-tags-item {
    padding: 8px 29.33333px;
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {
  .single-tags-item:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.single-title {
  display: block;
  width: 100%;
  padding-bottom: clamp(24px, 6.4vw, 48px);
  margin-bottom: clamp(24px, 6.4vw, 48px);
  font-size: clamp(16px, 4.26667vw, 32px);
  font-weight: 700;
  border-bottom: 1px solid #b4bbbe;
}

@media screen and (min-width: 768px) {
  .single-title {
    padding-bottom: 32px;
    margin-bottom: 32px;
    font-size: 21.33333px;
  }
}

.topics-inner {
  width: 100%;
  padding: 0 clamp(32px, 8.53333vw, 64px);
}

@media screen and (min-width: 768px) {
  .topics-inner {
    padding: 0 42.66667px;
  }
}

.topics-list {
  margin-bottom: clamp(44px, 11.73333vw, 88px);
  border-top: 1px solid #b4bbbe;
}

@media screen and (min-width: 768px) {
  .topics-list {
    margin-bottom: 58.66667px;
  }
}

.topics-list-item {
  width: 100%;
  padding: clamp(20px, 5.33333vw, 40px) 0;
  border-bottom: 1px solid #b4bbbe;
}

@media screen and (min-width: 768px) {
  .topics-list-item {
    padding: 26.66667px 0;
  }
}

.topics-list-item-category {
  display: block;
  width: fit-content;
  padding: clamp(6px, 1.6vw, 12px) clamp(22px, 5.86667vw, 44px);
  margin-bottom: clamp(16px, 4.26667vw, 32px);
  font-size: clamp(12px, 3.2vw, 24px);
  font-weight: 500;
  color: #FFFFFF;
  background-color: #ff9600;
  border-radius: 100vh;
}

@media screen and (min-width: 768px) {
  .topics-list-item-category {
    padding: 8px 29.33333px;
    margin-bottom: 21.33333px;
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {
  .topics-list-item-category:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.topics-list-item-link {
  display: block;
  width: 100%;
}

.topics-list-item-link-title {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
  margin: 0;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .topics-list-item-link-title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .topics-list-item-link:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.magazine-inner {
  width: 100%;
  padding: 0 clamp(32px, 8.53333vw, 64px);
}

@media screen and (min-width: 768px) {
  .magazine-inner {
    padding: 0 42.66667px;
  }
}

.magazine-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(70px, 18.66667vw, 140px) clamp(36px, 9.6vw, 72px);
  margin-top: clamp(90px, 24vw, 180px);
  margin-bottom: clamp(90px, 24vw, 180px);
}

@media screen and (min-width: 768px) {
  .magazine-list {
    gap: 93.33333px 48px;
    margin-top: 120px;
    margin-bottom: 120px;
  }
}

.magazine-list-item {
  position: relative;
  width: calc(50% - clamp(36px, 9.6vw, 72px) / 2);
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .magazine-list-item {
    width: calc(50% - 48px / 2);
  }
}

.magazine-list-item:nth-child(even) {
  top: clamp(50px, 13.33333vw, 100px);
}

@media screen and (min-width: 768px) {
  .magazine-list-item:nth-child(even) {
    top: 66.66667px;
  }
}

.magazine-list-item-num {
  position: absolute;
  top: clamp(-96px, -12.8vw, -48px);
  left: clamp(-48px, -6.4vw, -24px);
  font-size: clamp(55px, 14.66667vw, 110px);
  font-weight: 500;
  color: #ffe45c;
  font-style: italic;
  line-height: 1;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .magazine-list-item-num {
    top: -64px;
    left: -32px;
    font-size: 73.33333px;
  }
}

@media screen and (min-width: 1024px) {
  .magazine-list-item-link:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.magazine-list-item-link-img {
  width: 100%;
  height: auto;
  margin-bottom: clamp(14px, 3.73333vw, 28px);
}

@media screen and (min-width: 768px) {
  .magazine-list-item-link-img {
    margin-bottom: 18.66667px;
  }
}

.magazine-list-item-link-title {
  margin-bottom: clamp(10px, 2.66667vw, 20px);
  font-size: clamp(17px, 4.53333vw, 34px);
  font-weight: 500;
  color: #004097;
}

@media screen and (min-width: 768px) {
  .magazine-list-item-link-title {
    margin-bottom: 13.33333px;
    font-size: 22.66667px;
  }
}

.magazine-list-item-link-summary {
  font-size: clamp(14px, 3.73333vw, 28px);
  font-weight: 500;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .magazine-list-item-link-summary {
    font-size: 18.66667px;
  }
}

.extra-inner {
  width: 100%;
  padding: 0 clamp(32px, 8.53333vw, 64px);
}

@media screen and (min-width: 768px) {
  .extra-inner {
    padding: 0 42.66667px;
  }
}

.extra-list {
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 9.6vw, 72px);
  margin-top: clamp(50px, 13.33333vw, 100px);
  margin-bottom: clamp(50px, 13.33333vw, 100px);
}

@media screen and (min-width: 768px) {
  .extra-list {
    gap: 48px;
    margin-top: 66.66667px;
    margin-bottom: 66.66667px;
  }
}

.extra-list-item {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .extra-list-item-link:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.extra-list-item-link-img {
  width: 100%;
  height: auto;
  margin-bottom: clamp(14px, 3.73333vw, 28px);
}

@media screen and (min-width: 768px) {
  .extra-list-item-link-img {
    margin-bottom: 18.66667px;
  }
}

.extra-list-item-link-title {
  margin-bottom: clamp(6px, 1.6vw, 12px);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 700;
  color: #ff9600;
}

@media screen and (min-width: 768px) {
  .extra-list-item-link-title {
    margin-bottom: 8px;
    font-size: 20px;
  }
}

.extra-list-item-link-summary {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .extra-list-item-link-summary {
    font-size: 20px;
  }
}

.pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 3.2vw, 24px);
  margin: 0 clamp(32px, 8.53333vw, 64px);
}

@media screen and (min-width: 768px) {
  .pagination {
    gap: 16px;
    margin: 0 42.66667px;
  }
}

.pagination-prev, .pagination-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #ff9600;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 768px) {
  .pagination-prev, .pagination-next {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .pagination-prev:hover, .pagination-next:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.pagination-prev {
  left: 0;
}

.pagination-next {
  right: 0;
}

.pagination-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 3.2vw, 24px);
}

@media screen and (min-width: 768px) {
  .pagination-list {
    gap: 16px;
  }
}

.pagination-list-current {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(38px, 10.13333vw, 76px);
  height: clamp(38px, 10.13333vw, 76px);
  padding-bottom: clamp(3px, 0.8vw, 6px);
  font-size: clamp(19px, 5.06667vw, 38px);
  font-weight: 700;
  color: #FFFFFF;
  background-color: #ff9600;
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .pagination-list-current {
    width: 50.66667px;
    height: 50.66667px;
    padding-bottom: 4px;
    font-size: 25.33333px;
  }
}

.pagination-list-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(38px, 10.13333vw, 76px);
  height: clamp(38px, 10.13333vw, 76px);
  padding-bottom: clamp(3px, 0.8vw, 6px);
  font-size: clamp(19px, 5.06667vw, 38px);
  font-weight: 700;
  color: #ff9600;
  background-color: #FFFFFF;
  border: solid 2px #ff9600;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .pagination-list-link {
    width: 50.66667px;
    height: 50.66667px;
    font-size: 25.33333px;
    padding-bottom: 4px;
  }
}

@media screen and (min-width: 1024px) {
  .pagination-list-link:hover {
    background-color: #ff9600;
    color: #FFFFFF;
  }
}

.archive-search {
  margin: clamp(50px, 13.33333vw, 100px) clamp(32px, 8.53333vw, 64px) clamp(20px, 5.33333vw, 40px);
}

@media screen and (min-width: 768px) {
  .archive-search {
    margin: 66.66667px 42.66667px 26.66667px;
  }
}

.archive-search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 3.2vw, 24px);
}

@media screen and (min-width: 768px) {
  .archive-search-form {
    gap: 16px;
  }
}

.archive-search-input {
  width: 100%;
  height: clamp(40px, 10.66667vw, 80px);
  padding: 0 clamp(12px, 3.2vw, 24px);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
  border: 1px solid #b4bbbe;
  border-radius: clamp(6.5px, 1.73333vw, 13px);
  background-color: #e5e5e5;
  border: none;
  outline: none;
}

.archive-search-input::placeholder {
  color: #b4bbbe;
}

@media screen and (min-width: 768px) {
  .archive-search-input {
    height: 53.33333px;
    padding: 0 16px;
    font-size: 20px;
    border-radius: 8.66667px;
  }
}

.archive-search-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(40px, 10.66667vw, 80px);
  padding: 0 clamp(12px, 3.2vw, 24px);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #FFFFFF;
  background-color: #ff9600;
  border-radius: clamp(6.5px, 1.73333vw, 13px);
  border: solid 2px #ff9600;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .archive-search-submit {
    height: 53.33333px;
    padding: 0 16px;
    font-size: 20px;
    border-radius: clamp(6.5px, 1.73333vw, 13px);
  }
}

@media screen and (min-width: 1024px) {
  .archive-search-submit:hover {
    background-color: #FFFFFF;
    color: #ff9600;
  }
}

.archive-search-result-text {
  margin-bottom: clamp(20px, 5.33333vw, 40px);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .archive-search-result-text {
    margin-bottom: 26.66667px;
    font-size: 20px;
  }
}

.topics-category {
  margin: 0 clamp(32px, 8.53333vw, 64px) clamp(50px, 13.33333vw, 100px);
}

@media screen and (min-width: 768px) {
  .topics-category {
    margin: 0 42.66667px 66.66667px;
  }
}

.topics-category-list-item {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .topics-category-list-item {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .topics-category-list-item:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.privacy_policy-inner {
  width: 100%;
  padding: 0 clamp(13px, 3.46667vw, 26px) clamp(50px, 13.33333vw, 100px);
}

@media screen and (min-width: 768px) {
  .privacy_policy-inner {
    padding: 0 17.33333px 66.66667px;
  }
}

.privacy_policy-inner-title {
  margin-bottom: clamp(22px, 5.86667vw, 44px);
  font-size: clamp(22px, 5.86667vw, 44px);
  font-weight: 700;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .privacy_policy-inner-title {
    font-size: 29.33333px;
  }
}

.privacy_policy-inner-text {
  margin-bottom: clamp(20px, 5.33333vw, 40px);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .privacy_policy-inner-text {
    font-size: 20px;
  }
}

.privacy_policy-inner-text._center {
  text-align: center;
}

.privacy_policy-inner-head {
  display: block;
  width: 100%;
  padding-bottom: clamp(16px, 4.26667vw, 32px);
  margin-top: clamp(70px, 18.66667vw, 140px);
  margin-bottom: clamp(18px, 4.8vw, 36px);
  font-size: clamp(22px, 5.86667vw, 44px);
  font-weight: 700;
  border-bottom: solid 1px #000000;
}

@media screen and (min-width: 768px) {
  .privacy_policy-inner-head {
    padding-bottom: 21.33333px;
    margin-top: 93.33333px;
    margin-bottom: 24px;
    font-size: 29.33333px;
  }
}

.privacy_policy-inner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2.13333vw, 16px);
  width: clamp(300px, 80vw, 600px);
  height: clamp(50px, 13.33333vw, 100px);
  margin: 0 auto;
  border-radius: clamp(6.5px, 1.73333vw, 13px);
  font-size: clamp(18px, 4.8vw, 36px);
  font-weight: 700;
  color: #FFFFFF;
  background-color: #004097;
  border: 3px solid #004097;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .privacy_policy-inner-btn {
    gap: 10.66667px;
    width: 400px;
    height: 66.66667px;
    border-radius: 8.66667px;
    font-size: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .privacy_policy-inner-btn:hover {
    background-color: #FFFFFF;
    color: #004097;
  }
  .privacy_policy-inner-btn:hover .privacy_policy-inner-btn-img {
    fill: #004097;
  }
}

.privacy_policy-inner-btn._phone {
  margin-top: clamp(30px, 8vw, 60px);
  margin-bottom: clamp(15px, 4vw, 30px);
  pointer-events: auto;
}

@media screen and (min-width: 768px) {
  .privacy_policy-inner-btn._phone {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .privacy_policy-inner-btn._phone {
    pointer-events: none;
  }
}

.privacy_policy-inner-btn-img {
  width: clamp(20px, 5.33333vw, 40px);
  height: clamp(20px, 5.33333vw, 40px);
  object-fit: contain;
  object-position: center;
  fill: #FFFFFF;
  transition: fill 0.3s ease;
}

@media screen and (min-width: 768px) {
  .privacy_policy-inner-btn-img {
    width: 26.66667px;
    height: 26.66667px;
  }
}

.guidelines {
  margin-bottom: clamp(60px, 16vw, 120px);
}

@media screen and (min-width: 768px) {
  .guidelines {
    margin-bottom: 80px;
  }
}

.guidelines-inner {
  width: 100%;
  padding: 0 clamp(13px, 3.46667vw, 26px);
}

@media screen and (min-width: 768px) {
  .guidelines-inner {
    padding: 0 17.33333px;
  }
}

.guidelines-top {
  position: relative;
  width: clamp(325px, 86.66667vw, 650px);
  padding: clamp(40px, 10.66667vw, 80px) 0;
  margin: 0 auto clamp(40px, 10.66667vw, 80px);
  border-radius: clamp(10px, 2.66667vw, 20px);
  border: solid clamp(2.5px, 0.66667vw, 5px) #ff9600;
}

@media screen and (min-width: 768px) {
  .guidelines-top {
    width: 433.33333px;
    padding: 53.33333px 0;
    margin: 0 auto 53.33333px;
    border-radius: 13.33333px;
    border: solid 3.33333px #ff9600;
  }
}

.guidelines-top-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(-50% - clamp(2.5px, 0.66667vw, 5px)));
  display: block;
  width: fit-content;
  padding: 0 clamp(14px, 3.73333vw, 28px);
  background-color: #FFFFFF;
  font-size: clamp(22px, 5.86667vw, 44px);
  font-weight: 700;
  color: #ff9600;
  word-break: keep-all;
}

@media screen and (min-width: 768px) {
  .guidelines-top-title {
    transform: translate(-50%, calc(-50% - 3.33333px));
    padding: 0 18.66667px;
    font-size: 29.33333px;
  }
}

.guidelines-top-text {
  font-size: clamp(19px, 5.06667vw, 38px);
  font-weight: 700;
  text-align: center;
  color: #ff9600;
}

@media screen and (min-width: 768px) {
  .guidelines-top-text {
    font-size: 25.33333px;
  }
}

.guidelines-head {
  display: block;
  width: 100%;
  padding: clamp(10px, 2.66667vw, 20px) clamp(14px, 3.73333vw, 28px);
  margin-top: clamp(50px, 13.33333vw, 100px);
  margin-bottom: clamp(18px, 4.8vw, 36px);
  font-size: clamp(22px, 5.86667vw, 44px);
  font-weight: 700;
  color: #ff9600;
  background-color: #ffeb84;
}

@media screen and (min-width: 768px) {
  .guidelines-head {
    padding: 13.33333px 18.66667px;
    margin-top: 66.66667px;
    margin-bottom: 24px;
    font-size: 29.33333px;
  }
}

.guidelines-text {
  margin-bottom: clamp(18px, 4.8vw, 36px);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .guidelines-text {
    margin-bottom: 24px;
    font-size: 20px;
  }
}

.guidelines-list {
  counter-reset: list-counter;
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .guidelines-list {
    font-size: 20px;
  }
}

.guidelines-list._dot > li.guidelines-list-item {
  position: relative;
  padding-left: clamp(15px, 4vw, 30px);
  display: block;
}

@media screen and (min-width: 768px) {
  .guidelines-list._dot > li.guidelines-list-item {
    padding-left: 20px;
  }
}

.guidelines-list._dot > li.guidelines-list-item:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.guidelines-list._num > li.guidelines-list-item {
  position: relative;
  counter-increment: list-counter;
  padding-left: clamp(25px, 6.66667vw, 50px);
  display: block;
}

.guidelines-list._num > li.guidelines-list-item:before {
  content: counter(list-counter);
  position: absolute;
  top: clamp(1.5px, 0.4vw, 3px);
  left: clamp(4.5px, 1.2vw, 9px);
  font-size: clamp(12px, 3.2vw, 24px);
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .guidelines-list._num > li.guidelines-list-item:before {
    top: 1.33333px;
    font-size: 16px;
  }
}

.guidelines-list._num > li.guidelines-list-item:after {
  content: "";
  position: absolute;
  top: clamp(3.5px, 0.93333vw, 7px);
  left: 0;
  width: clamp(14px, 3.73333vw, 28px);
  height: clamp(14px, 3.73333vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: solid 1px #000000;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .guidelines-list._num > li.guidelines-list-item:after {
    width: 18.66667px;
    height: 18.66667px;
  }
}

.guidelines-list-item {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .guidelines-list-item {
    font-size: 20px;
  }
}

.guidelines-contact {
  display: block;
  width: 100%;
  padding-bottom: clamp(10px, 2.66667vw, 20px);
  margin-top: clamp(50px, 13.33333vw, 100px);
  margin-bottom: clamp(18px, 4.8vw, 36px);
  font-size: clamp(18px, 4.8vw, 36px);
  font-weight: 700;
  border-bottom: solid 1px #000000;
}

@media screen and (min-width: 768px) {
  .guidelines-contact {
    padding-bottom: 13.33333px;
    margin-top: 66.66667px;
    margin-bottom: 24px;
    font-size: 20px;
  }
}

.guidelines-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2.13333vw, 16px);
  width: clamp(300px, 80vw, 600px);
  height: clamp(50px, 13.33333vw, 100px);
  margin: 0 auto;
  border-radius: clamp(6.5px, 1.73333vw, 13px);
  font-size: clamp(18px, 4.8vw, 36px);
  font-weight: 700;
  color: #FFFFFF;
  background-color: #004097;
  border: 3px solid #004097;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .guidelines-btn {
    gap: 10.66667px;
    width: 400px;
    height: 66.66667px;
    border-radius: 8.66667px;
    font-size: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .guidelines-btn:hover {
    background-color: #FFFFFF;
    color: #004097;
  }
  .guidelines-btn:hover .privacy_policy-inner-btn-img {
    fill: #004097;
  }
}

.guidelines-btn._phone {
  margin-top: clamp(30px, 8vw, 60px);
  margin-bottom: clamp(15px, 4vw, 30px);
  pointer-events: auto;
}

@media screen and (min-width: 768px) {
  .guidelines-btn._phone {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .guidelines-btn._phone {
    pointer-events: none;
  }
}

.guidelines-btn-img {
  width: clamp(20px, 5.33333vw, 40px);
  height: clamp(20px, 5.33333vw, 40px);
  object-fit: contain;
  object-position: center;
  fill: #FFFFFF;
  transition: fill 0.3s ease;
}

@media screen and (min-width: 768px) {
  .guidelines-btn-img {
    width: 26.66667px;
    height: 26.66667px;
  }
}

.consult-img {
  display: block;
  width: 100%;
  height: auto;
}

.consult-top {
  padding: clamp(30px, 8vw, 60px) 0 clamp(50px, 13.33333vw, 100px);
}

@media screen and (min-width: 768px) {
  .consult-top {
    padding: 40px 0 66.66667px;
  }
}

.consult-top-title {
  position: relative;
  width: clamp(234.5px, 62.53333vw, 469px);
  height: clamp(119px, 31.73333vw, 238px);
  margin: 0 auto clamp(16px, 4.26667vw, 32px);
}

@media screen and (min-width: 768px) {
  .consult-top-title {
    width: 312.66667px;
    height: 158.66667px;
    margin: 0 auto 21.33333px;
  }
}

.consult-top-title-bg {
  display: block;
  width: 100%;
  height: 100%;
}

.consult-top-title-text {
  display: block;
  width: 100%;
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(20px, 5.33333vw, 40px);
  font-weight: 700;
  text-align: center;
  color: #ff9600;
}

@media screen and (min-width: 768px) {
  .consult-top-title-text {
    font-size: 26.66667px;
  }
}

.consult-top-text {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  text-align: center;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .consult-top-text {
    font-size: 20px;
  }
}

.consult-bottom {
  padding: clamp(46px, 12.26667vw, 92px) clamp(48px, 12.8vw, 96px) clamp(38px, 10.13333vw, 76px);
  background-color: #fff8d6;
}

@media screen and (min-width: 768px) {
  .consult-bottom {
    padding: 61.33333px 64px 50.66667px 50.66667px;
  }
}

.consult-bottom-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 2.13333vw, 16px);
  width: 100%;
  height: clamp(60px, 16vw, 120px);
  margin-bottom: clamp(24px, 6.4vw, 48px);
  background-color: #06c755;
  border-radius: clamp(10px, 2.66667vw, 20px);
  font-size: clamp(20px, 5.33333vw, 40px);
  font-weight: 700;
  color: #FFFFFF;
  border: 2px solid #06c755;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .consult-bottom-line {
    gap: 10.66667px;
    height: 80px;
    margin-bottom: 32px;
    border-radius: 13.33333px;
    font-size: 26.66667px;
  }
}

@media screen and (min-width: 1024px) {
  .consult-bottom-line:hover {
    background-color: #FFFFFF;
    color: #06c755;
  }
  .consult-bottom-line:hover .consult-bottom-line-img_hover {
    opacity: 1;
  }
  .consult-bottom-line:hover .consult-bottom-line-img {
    opacity: 0;
  }
}

.consult-bottom-line-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: opacity 0.3s ease;
}

.consult-bottom-line-img-wrapper {
  position: relative;
  width: clamp(27.5px, 7.33333vw, 55px);
  height: clamp(27.5px, 7.33333vw, 55px);
}

@media screen and (min-width: 768px) {
  .consult-bottom-line-img-wrapper {
    width: 36.66667px;
    height: 36.66667px;
  }
}

.consult-bottom-line-img_hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.consult-bottom-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: clamp(60px, 16vw, 120px);
  margin-bottom: clamp(36px, 9.6vw, 72px);
  background-color: #ff9600;
  border-radius: clamp(10px, 2.66667vw, 20px);
  font-size: clamp(20px, 5.33333vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
  border: 2px solid #ff9600;
  transition: background-color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .consult-bottom-phone {
    height: 80px;
    margin-bottom: 48px;
    border-radius: 13.33333px;
    font-size: 26.66667px;
  }
}

@media screen and (min-width: 1024px) {
  .consult-bottom-phone:hover {
    background-color: #FFFFFF;
  }
  .consult-bottom-phone:hover .consult-bottom-phone-num {
    color: #ff9600;
  }
  .consult-bottom-phone:hover .consult-bottom-phone-text {
    color: #ff9600;
  }
}

.consult-bottom-phone-num {
  font-size: clamp(20px, 5.33333vw, 40px);
  font-weight: 700;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .consult-bottom-phone-num {
    font-size: 26.66667px;
  }
}

.consult-bottom-phone-text {
  font-size: clamp(13px, 3.46667vw, 26px);
  font-weight: 500;
  color: #FFFFFF;
  transition: color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .consult-bottom-phone-text {
    font-size: 17.33333px;
  }
}

.consult-bottom-info {
  width: fit-content;
  margin: 0 auto;
}

.consult-bottom-info-head {
  display: block;
  margin: 0 auto clamp(4px, 1.06667vw, 8px);
  padding-bottom: clamp(2px, 0.53333vw, 4px);
  border-bottom: 1px solid #004097;
  font-size: clamp(20px, 5.33333vw, 40px);
  font-weight: 700;
  color: #004097;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .consult-bottom-info-head {
    font-size: 26.66667px;
  }
}

.consult-bottom-info-text {
  margin-bottom: clamp(12px, 3.2vw, 24px);
  font-size: clamp(13px, 3.46667vw, 26px);
  font-weight: 500;
  color: #004097;
}

@media screen and (min-width: 768px) {
  .consult-bottom-info-text {
    margin-bottom: 16px;
    font-size: 17.33333px;
  }
}

.consult-bottom-info-map {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: clamp(2px, 0.53333vw, 4px);
  width: fit-content;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .consult-bottom-info-map {
    gap: 2.66667px;
  }
}

@media screen and (min-width: 1024px) {
  .consult-bottom-info-map:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.consult-bottom-info-map-img {
  display: block;
  width: clamp(20.5px, 5.46667vw, 41px);
  height: clamp(25.5px, 6.8vw, 51px);
}

@media screen and (min-width: 768px) {
  .consult-bottom-info-map-img {
    width: 27.33333px;
    height: 34px;
  }
}

.consult-bottom-info-map-text {
  font-size: clamp(13px, 3.46667vw, 26px);
  font-weight: 500;
  color: #004097;
}

@media screen and (min-width: 768px) {
  .consult-bottom-info-map-text {
    font-size: 17.33333px;
  }
}

.consult-form-inner {
  width: 100%;
  padding: clamp(50px, 13.33333vw, 100px) clamp(37px, 9.86667vw, 74px) clamp(50px, 13.33333vw, 100px);
}

@media screen and (min-width: 768px) {
  .consult-form-inner {
    padding: 66.66667px 49.33333px 66.66667px;
  }
}

.consult-form-inner._confirm {
  padding: 0 clamp(37px, 9.86667vw, 74px) clamp(50px, 13.33333vw, 100px);
}

@media screen and (min-width: 768px) {
  .consult-form-inner._confirm {
    padding: 0 49.33333px 66.66667px;
  }
}

.consult-form-inner._complete {
  padding: 0 clamp(13px, 3.46667vw, 26px) clamp(50px, 13.33333vw, 100px);
}

@media screen and (min-width: 768px) {
  .consult-form-inner._complete {
    padding: 0 17.33333px 66.66667px;
  }
}

.consult-form-text {
  margin-bottom: clamp(30px, 8vw, 60px);
  font-size: clamp(14px, 3.73333vw, 28px);
  font-weight: 500;
  color: #000000;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .consult-form-text {
    margin-bottom: 40px;
    font-size: 18.66667px;
  }
}

.consult-form-text:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .consult-form-text:last-child {
    margin-bottom: 0;
  }
}

.support-img {
  display: block;
  width: 100%;
  height: auto;
}

.support-howto-top {
  padding: clamp(40px, 10.66667vw, 80px) 0 clamp(50px, 13.33333vw, 100px);
}

@media screen and (min-width: 768px) {
  .support-howto-top {
    padding: 53.33333px 0 66.66667px;
  }
}

.support-howto-top-title {
  margin-bottom: clamp(30px, 8vw, 60px);
  font-size: clamp(22px, 5.86667vw, 44px);
  font-weight: 700;
  color: #ff9600;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .support-howto-top-title {
    margin-bottom: 40px;
    font-size: 29.33333px;
  }
}

.support-howto-top-text {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .support-howto-top-text {
    font-size: 20px;
  }
}

.support-howto-bottom {
  position: relative;
  padding: clamp(40px, 10.66667vw, 80px) clamp(6px, 1.6vw, 12px) clamp(100px, 26.66667vw, 200px);
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom {
    padding: 53.33333px 8px 133.33333px;
  }
}

.support-howto-bottom-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -1;
}

.support-howto-bottom-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: clamp(14px, 3.73333vw, 28px);
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-inner {
    gap: 18.66667px;
  }
}

.support-howto-bottom-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(332px, 88.53333vw, 664px);
  height: clamp(327px, 87.2vw, 654px);
  padding-bottom: clamp(24px, 6.4vw, 48px);
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item {
    width: 442.66667px;
    height: 436px;
    padding-bottom: 32px;
  }
}

.support-howto-bottom-item:nth-child(even) {
  align-self: flex-end;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item:nth-child(even) {
    align-self: flex-end;
  }
}

.support-howto-bottom-item:nth-child(odd) {
  align-self: flex-start;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item:nth-child(odd) {
    align-self: flex-start;
  }
}

.support-howto-bottom-item:nth-child(1) {
  z-index: 1;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.support-howto-bottom-item:nth-child(1).active {
  opacity: 1;
  transform: translateX(0);
}

.support-howto-bottom-item:nth-child(1) .support-howto-bottom-item-img {
  width: clamp(155.5px, 41.46667vw, 311px);
  height: auto;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item:nth-child(1) .support-howto-bottom-item-img {
    width: 207.33333px;
  }
}

.support-howto-bottom-item:nth-child(1) .support-howto-bottom-item-mascot {
  position: absolute;
  top: 87%;
  left: 78%;
  width: clamp(91px, 24.26667vw, 182px);
  height: auto;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item:nth-child(1) .support-howto-bottom-item-mascot {
    width: 121.33333px;
  }
}

.support-howto-bottom-item:nth-child(2) {
  z-index: 2;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.support-howto-bottom-item:nth-child(2).active {
  opacity: 1;
  transform: translateX(0);
}

.support-howto-bottom-item:nth-child(2) .support-howto-bottom-item-img {
  width: clamp(142px, 37.86667vw, 284px);
  height: auto;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item:nth-child(2) .support-howto-bottom-item-img {
    width: 189.33333px;
  }
}

.support-howto-bottom-item:nth-child(2) .support-howto-bottom-item-mascot {
  position: absolute;
  top: 86%;
  right: 85%;
  width: clamp(81px, 21.6vw, 162px);
  height: auto;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item:nth-child(2) .support-howto-bottom-item-mascot {
    width: 108px;
  }
}

.support-howto-bottom-item:nth-child(3) {
  z-index: 3;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.support-howto-bottom-item:nth-child(3).active {
  opacity: 1;
  transform: translateX(0);
}

.support-howto-bottom-item:nth-child(3) .support-howto-bottom-item-img {
  width: clamp(90px, 24vw, 180px);
  height: auto;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item:nth-child(3) .support-howto-bottom-item-img {
    width: 120px;
  }
}

.support-howto-bottom-item:nth-child(3) .support-howto-bottom-item-mascot {
  position: absolute;
  top: 89%;
  left: 78%;
  width: clamp(103.5px, 27.6vw, 207px);
  height: auto;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item:nth-child(3) .support-howto-bottom-item-mascot {
    width: 138px;
  }
}

.support-howto-bottom-item:nth-child(4) {
  z-index: 2;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.support-howto-bottom-item:nth-child(4).active {
  opacity: 1;
  transform: translateX(0);
}

.support-howto-bottom-item:nth-child(4) .support-howto-bottom-item-mascot {
  position: absolute;
  top: 85%;
  right: 83%;
  width: clamp(84.5px, 22.53333vw, 169px);
  height: auto;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item:nth-child(4) .support-howto-bottom-item-mascot {
    width: 112.66667px;
  }
}

.support-howto-bottom-item-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.support-howto-bottom-item-num {
  font-size: clamp(40px, 10.66667vw, 80px);
  font-weight: 700;
  color: #ff9600;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item-num {
    font-size: 53.33333px;
  }
}

.support-howto-bottom-item-head {
  font-size: clamp(22px, 5.86667vw, 44px);
  font-weight: 700;
  color: #ff9600;
  text-align: center;
  margin-bottom: clamp(12px, 3.2vw, 24px);
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item-head {
    font-size: 29.33333px;
    margin-bottom: 16px;
  }
}

.support-howto-bottom-item-text {
  margin-bottom: clamp(12px, 3.2vw, 24px);
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #000000;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item-text {
    margin-bottom: 16px;
    font-size: 20px;
  }
}

.support-howto-bottom-item-img {
  display: block;
  width: 100%;
  height: auto;
}

.support-howto-bottom-item-mascot {
  display: block;
  width: 100%;
  height: auto;
}

.support-howto-bottom-item-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(225px, 60vw, 450px);
  margin-top: clamp(20px, 5.33333vw, 40px);
  background-color: #fcd005;
  border-radius: 100vh;
  border: 3px solid #fcd005;
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item-btn {
    width: 300px;
    margin-top: 26.66667px;
  }
}

.support-howto-bottom-item-btn-text {
  font-size: clamp(14px, 3.73333vw, 28px);
  font-weight: 700;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item-btn-text {
    font-size: 18.66667px;
  }
}

.support-howto-bottom-item-btn-img {
  position: absolute;
  top: 50%;
  right: clamp(10px, 2.66667vw, 20px);
  transform: translateY(-50%);
  display: block;
  width: clamp(12px, 3.2vw, 24px);
  height: clamp(12px, 3.2vw, 24px);
  object-fit: contain;
  object-position: center;
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item-btn-img {
    width: 16px;
    height: 16px;
  }
}

.support-howto-bottom-item-sns-top {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: clamp(30px, 8vw, 60px);
  margin-top: clamp(12px, 3.2vw, 24px);
  margin-bottom: clamp(18px, 4.8vw, 36px);
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item-sns-top {
    margin-top: 16px;
    margin-bottom: 24px;
    gap: 40px;
  }
}

.support-howto-bottom-item-sns-top-item {
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .support-howto-bottom-item-sns-top-item:hover {
    opacity: 0.6;
  }
}

.support-howto-bottom-item-sns-top-item-img._x {
  width: clamp(36.5px, 9.73333vw, 73px);
  height: clamp(37px, 9.86667vw, 74px);
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item-sns-top-item-img._x {
    width: 48.66667px;
    height: 49.33333px;
  }
}

.support-howto-bottom-item-sns-top-item-img._youtube {
  width: clamp(44.5px, 11.86667vw, 89px);
  height: clamp(33px, 8.8vw, 66px);
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item-sns-top-item-img._youtube {
    width: 59.33333px;
    height: 44px;
  }
}

.support-howto-bottom-item-sns-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4.8vw, 36px);
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item-sns-bottom {
    gap: 24px;
  }
}

.support-howto-bottom-item-sns-bottom-item {
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .support-howto-bottom-item-sns-bottom-item:hover {
    opacity: 0.6;
  }
}

.support-howto-bottom-item-sns-bottom-item-img._instagram {
  width: clamp(25.5px, 6.8vw, 51px);
  height: clamp(25.5px, 6.8vw, 51px);
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item-sns-bottom-item-img._instagram {
    width: 34px;
    height: 34px;
  }
}

.support-howto-bottom-item-sns-bottom-item-img._facebook {
  width: clamp(24px, 6.4vw, 48px);
  height: clamp(24px, 6.4vw, 48px);
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item-sns-bottom-item-img._facebook {
    width: 32px;
    height: 32px;
  }
}

.support-howto-bottom-item-sns-bottom-item-img._line {
  width: clamp(28.5px, 7.6vw, 57px);
  height: clamp(27px, 7.2vw, 54px);
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item-sns-bottom-item-img._line {
    width: 38px;
    height: 36px;
  }
}

.support-howto-bottom-item-sns-bottom-item-img._tiktok {
  width: clamp(28px, 7.46667vw, 56px);
  height: clamp(27px, 7.2vw, 54px);
}

@media screen and (min-width: 768px) {
  .support-howto-bottom-item-sns-bottom-item-img._tiktok {
    width: 37.33333px;
    height: 36px;
  }
}

.support-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.support-modal.active {
  opacity: 1;
  visibility: visible;
}

.support-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.support-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: clamp(350px, 93.33333vw, 700px);
  max-height: 90vh;
  background-color: #FFFFFF;
  border-radius: clamp(10px, 2.66667vw, 20px);
  padding: clamp(20px, 5.33333vw, 40px) clamp(20px, 5.33333vw, 40px) clamp(30px, 8vw, 60px);
  overflow-y: auto;
}

@media screen and (min-width: 768px) {
  .support-modal-content {
    max-width: 466.66667px;
    border-radius: 13.33333px;
    padding: 26.66667px 26.66667px 40px;
  }
}

.support-modal-content::-webkit-scrollbar {
  width: clamp(4px, 1.06667vw, 8px);
}

@media screen and (min-width: 768px) {
  .support-modal-content::-webkit-scrollbar {
    width: 5.33333px;
  }
}

.support-modal-content::-webkit-scrollbar-track {
  background: #fff8d6;
  border-radius: clamp(2px, 0.53333vw, 4px);
}

@media screen and (min-width: 768px) {
  .support-modal-content::-webkit-scrollbar-track {
    border-radius: 2.66667px;
  }
}

.support-modal-content::-webkit-scrollbar-thumb {
  background: #ff9600;
  border-radius: clamp(2px, 0.53333vw, 4px);
}

@media screen and (min-width: 768px) {
  .support-modal-content::-webkit-scrollbar-thumb {
    border-radius: 2.66667px;
  }
}

.support-modal-content::-webkit-scrollbar-thumb:hover {
  background: #cc7800;
}

.support-modal-close {
  position: absolute;
  top: clamp(10px, 2.66667vw, 20px);
  right: clamp(10px, 2.66667vw, 20px);
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.53333vw, 4px);
  align-items: center;
}

@media screen and (min-width: 768px) {
  .support-modal-close {
    gap: 2.66667px;
    top: 13.33333px;
    right: 13.33333px;
  }
}

@media screen and (min-width: 1024px) {
  .support-modal-close:hover {
    opacity: 0.7;
  }
}

.support-modal-close-icon {
  position: relative;
  width: clamp(22.5px, 6vw, 45px);
  height: clamp(22.5px, 6vw, 45px);
  background-color: #fcd005;
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .support-modal-close-icon {
    width: 30px;
    height: 30px;
  }
}

.support-modal-close-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: center;
  width: 50%;
  height: 1px;
  border-bottom: 1px solid #000000;
}

.support-modal-close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
  width: 50%;
  height: 1px;
  border-bottom: 1px solid #000000;
}

.support-modal-close-text {
  font-size: clamp(12px, 3.2vw, 24px);
  font-weight: 500;
  color: #000000;
}

@media screen and (min-width: 768px) {
  .support-modal-close-text {
    font-size: 16px;
  }
}

.support-modal-body {
  padding-top: clamp(10px, 2.66667vw, 20px);
}

@media screen and (min-width: 768px) {
  .support-modal-body {
    padding-top: 13.33333px;
  }
}

.support-modal-title {
  margin-bottom: clamp(12px, 3.2vw, 24px);
  font-size: clamp(14px, 3.73333vw, 28px);
  font-weight: 700;
  color: #000000;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .support-modal-title {
    margin-bottom: 16px;
    font-size: 18.66667px;
  }
}

.support-modal-list {
  list-style: numeric;
  padding-left: clamp(16px, 4.26667vw, 32px);
}

@media screen and (min-width: 768px) {
  .support-modal-list {
    padding-left: 21.33333px;
  }
}

.support-modal-list-item {
  font-size: clamp(14px, 3.73333vw, 28px);
  font-weight: 500;
  color: #000000;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .support-modal-list-item {
    font-size: 18.66667px;
  }
}

.support-form-inner {
  width: 100%;
  padding: clamp(50px, 13.33333vw, 100px) clamp(37px, 9.86667vw, 74px) clamp(50px, 13.33333vw, 100px);
}

@media screen and (min-width: 768px) {
  .support-form-inner {
    padding: 66.66667px 49.33333px 66.66667px;
  }
}

.support-form-inner._confirm {
  padding: 0 clamp(37px, 9.86667vw, 74px) clamp(50px, 13.33333vw, 100px);
}

@media screen and (min-width: 768px) {
  .support-form-inner._confirm {
    padding: 0 49.33333px 66.66667px;
  }
}

.support-form-inner._complete {
  padding: 0 clamp(13px, 3.46667vw, 26px) clamp(50px, 13.33333vw, 100px);
}

@media screen and (min-width: 768px) {
  .support-form-inner._complete {
    padding: 0 17.33333px 66.66667px;
  }
}

.support-form-text {
  margin-bottom: clamp(30px, 8vw, 60px);
  font-size: clamp(14px, 3.73333vw, 28px);
  font-weight: 500;
  color: #000000;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .support-form-text {
    margin-bottom: 40px;
    font-size: 18.66667px;
  }
}

.support-form-text:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .support-form-text:last-child {
    margin-bottom: 0;
  }
}

.header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  z-index: 900;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .header {
    display: none;
  }
}

.header-inner {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: clamp(50px, 13.33333vw, 100px);
  pointer-events: auto;
  transition: background-color 0.2s linear 0.6s, top 0.3s;
  background-color: #004097;
}

.header-inner-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 52%;
  height: 100%;
  padding: 0 clamp(10px, 2.66667vw, 20px);
  flex-shrink: 0;
}

.header-inner-logo-img {
  width: clamp(150.5px, 40.13333vw, 301px);
  height: auto;
}

.header-inner-x {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1.06667vw, 8px);
  width: 100%;
  height: 100%;
  background-color: #fcd005;
}

.header-inner-x-img {
  width: clamp(27.5px, 7.33333vw, 55px);
  height: auto;
  flex-shrink: 0;
}

.header-inner-x-text {
  font-size: clamp(12px, 3.2vw, 24px);
  line-height: 1.2;
  color: #004097;
  font-weight: 700;
  text-align: center;
}

.header-inner-x-logo {
  width: clamp(21.5px, 5.73333vw, 43px);
  height: auto;
  flex-shrink: 0;
}

.header-hum {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(50px, 13.33333vw, 100px);
  height: clamp(50px, 13.33333vw, 100px);
  aspect-ratio: 1 / 1;
  background-color: #004097;
  transition: all .3s ease;
}

.header-hum-icon {
  margin-top: clamp(3px, 0.8vw, 6px);
  position: relative;
  width: clamp(25px, 6.66667vw, 50px);
  height: clamp(16px, 4.26667vw, 32px);
}

.header-hum-icon span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  border-top: 2px solid #FFFFFF;
  transition: top 0.3s, transform 0.3s, opacity 0.3s;
}

.header-hum-icon span:nth-child(1) {
  top: 0;
}

.header-hum-icon span:nth-child(2) {
  top: 100%;
}

.header-hum-text {
  position: relative;
  margin-top: clamp(5px, 1.33333vw, 10px);
}

.header-hum-text-menu {
  font-size: clamp(9px, 2.4vw, 18px);
  line-height: 1;
  color: #FFFFFF;
  transition: opacity 0.3s;
}

.header-hum-text-close {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(9px, 2.4vw, 18px);
  line-height: 1;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.3s;
}

.header-hum.active .header-hum-icon span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.header-hum.active .header-hum-icon span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header-hum.active .header-hum-icon span:nth-child(3) {
  opacity: 0;
}

.header-hum.active .header-hum-text-menu {
  opacity: 0;
}

.header-hum.active .header-hum-text-close {
  opacity: 1;
}

.header-drawerMenu {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: auto;
  transition: top 0.5s;
}

.header-drawerMenu.active {
  top: 0;
  transition: top 0.5s  0.2s;
}

.header-drawerMenu.active .header-drawerMenu-contents-inner {
  opacity: 1;
}

.header-drawerMenu.active .header-drawerMenu-bg {
  pointer-events: auto;
  opacity: 1;
}

.header-drawerMenu-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s;
}

.header-drawerMenu-contents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 100%;
  padding: 80px 0 50px;
  background-color: #004097;
  overflow-y: auto;
  z-index: 10;
}

.header-drawerMenu-contents-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header-drawerMenu-contents-inner {
  max-width: 1000px;
  height: 100%;
  margin: auto;
  padding: 0 clamp(30px, 8vw, 60px);
  opacity: 0;
  transition: opacity 0.5s 0.5s;
}

.header-drawerMenu-contents-inner-list {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 5.33333vw, 40px);
  margin-bottom: clamp(50px, 13.33333vw, 100px);
}

@media screen and (min-width: 768px) {
  .header-drawerMenu-contents-inner-list {
    gap: 26.66667px;
    margin-bottom: 66.66667px;
  }
}

@media screen and (min-width: 1024px) {
  .header-drawerMenu-contents-inner-list-item:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.header-drawerMenu-contents-inner-list-item-link {
  display: flex;
  gap: clamp(10px, 2.66667vw, 20px);
  font-size: clamp(18px, 4.8vw, 36px);
  font-weight: 500;
  color: #FFFFFF;
}

.header-drawerMenu-contents-inner-list-item-link._small {
  font-size: clamp(17px, 4.53333vw, 34px);
}

.header-drawerMenu-contents-inner-list-item-link-icon {
  margin-top: clamp(9px, 2.4vw, 18px);
  width: clamp(9px, 2.4vw, 18px);
  height: clamp(12.5px, 3.33333vw, 25px);
  fill: #FFFFFF;
}

.header-drawerMenu-contents-inner-sns {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 6.93333vw, 52px);
}

.header-drawerMenu-contents-inner-sns-item-link-img {
  width: clamp(30px, 8vw, 60px);
  height: clamp(30px, 8vw, 60px);
  object-fit: contain;
  object-position: center;
}

.footer {
  background-color: #fcd005;
  color: #004097;
  max-width: 768px;
}

.footer-inner {
  width: 100%;
  margin: 0 auto;
  padding: clamp(30px, 8vw, 60px) clamp(20px, 5.33333vw, 40px);
}

@media screen and (min-width: 768px) {
  .footer-inner {
    padding: 40px 26.66667px;
  }
}

.footer-logo {
  display: block;
  width: clamp(212px, 56.53333vw, 424px);
  margin: 0 auto clamp(40px, 10.66667vw, 80px);
}

@media screen and (min-width: 768px) {
  .footer-logo {
    width: 282.66667px;
    margin: 0 auto 53.33333px;
  }
}

@media screen and (min-width: 1024px) {
  .footer-logo:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.footer-logo-img {
  width: 100%;
  height: auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(40px, 10.66667vw, 80px);
  margin-bottom: clamp(40px, 10.66667vw, 80px);
}

@media screen and (min-width: 768px) {
  .footer-nav {
    gap: 53.33333px;
    margin-bottom: 53.33333px;
  }
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 5.33333vw, 40px);
}

@media screen and (min-width: 768px) {
  .footer-nav-list {
    gap: 26.66667px;
  }
}

@media screen and (min-width: 1024px) {
  .footer-nav-list-item:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.footer-nav-list-item-link {
  display: flex;
  align-items: center;
  gap: clamp(5px, 1.33333vw, 10px);
  font-size: clamp(19px, 5.06667vw, 38px);
  font-weight: 500;
  color: #004097;
}

@media screen and (min-width: 768px) {
  .footer-nav-list-item-link {
    gap: 6.66667px;
    font-size: 25.33333px;
  }
}

.footer-nav-list-item-icon {
  margin-top: clamp(3px, 0.8vw, 6px);
  width: clamp(7px, 1.86667vw, 14px);
  height: clamp(9.5px, 2.53333vw, 19px);
}

@media screen and (min-width: 768px) {
  .footer-nav-list-item-icon {
    margin-top: 4px;
    width: 9.33333px;
    height: 12.66667px;
  }
}

.footer-sns {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 6.4vw, 48px);
  margin-bottom: clamp(40px, 10.66667vw, 80px);
}

@media screen and (min-width: 768px) {
  .footer-sns {
    gap: 32px;
    margin-bottom: 53.33333px;
  }
}

.footer-sns-item {
  width: clamp(30px, 8vw, 60px);
  height: clamp(30px, 8vw, 60px);
}

@media screen and (min-width: 768px) {
  .footer-sns-item {
    width: 40px;
    height: 40px;
  }
}

.footer-sns-item-link {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .footer-sns-item-link:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.footer-sns-item-link-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-info {
  margin-bottom: clamp(30px, 8vw, 60px);
}

@media screen and (min-width: 768px) {
  .footer-info {
    margin-bottom: 40px;
  }
}

.footer-info-title {
  font-size: clamp(17px, 4.53333vw, 34px);
  font-weight: 500;
  color: #004097;
  margin-bottom: clamp(6px, 1.6vw, 12px);
}

@media screen and (min-width: 768px) {
  .footer-info-title {
    font-size: 22.66667px;
    margin-bottom: 8px;
  }
}

.footer-info-postcode {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #004097;
}

@media screen and (min-width: 768px) {
  .footer-info-postcode {
    font-size: 20px;
  }
}

.footer-info-address {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: 500;
  color: #004097;
  margin-bottom: clamp(3px, 0.8vw, 6px);
}

@media screen and (min-width: 768px) {
  .footer-info-address {
    font-size: 20px;
    margin-bottom: 4px;
  }
}

.footer-info-tel {
  font-size: clamp(18px, 4.8vw, 36px);
  font-weight: 500;
  color: #004097;
}

@media screen and (min-width: 768px) {
  .footer-info-tel {
    font-size: 24px;
  }
}

.footer-info-tel-head {
  font-size: clamp(16px, 4.26667vw, 32px);
  font-weight: 500;
  margin-right: clamp(8px, 2.13333vw, 16px);
}

@media screen and (min-width: 768px) {
  .footer-info-tel-head {
    font-size: 21.33333px;
    margin-right: 10.66667px;
  }
}

.footer-info-fax {
  font-size: clamp(16px, 4.26667vw, 32px);
  font-weight: 500;
  color: #004097;
}

@media screen and (min-width: 768px) {
  .footer-info-fax {
    font-size: 21.33333px;
  }
}

.footer-info-fax-head {
  margin-right: clamp(8px, 2.13333vw, 16px);
}

@media screen and (min-width: 768px) {
  .footer-info-fax-head {
    margin-right: 10.66667px;
  }
}

.footer-cdp-logo {
  display: block;
  width: fit-content;
  margin: 0 auto clamp(30px, 8vw, 60px);
}

@media screen and (min-width: 768px) {
  .footer-cdp-logo {
    margin: 0 auto 40px;
  }
}

@media screen and (min-width: 1024px) {
  .footer-cdp-logo:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.footer-cdp-logo-img {
  display: block;
  width: clamp(118.5px, 31.6vw, 237px);
  height: clamp(39px, 10.4vw, 78px);
}

@media screen and (min-width: 768px) {
  .footer-cdp-logo-img {
    width: 158px;
    height: 52px;
  }
}

.footer-sub_nav-list {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2.66667vw, 20px);
}

@media screen and (min-width: 768px) {
  .footer-sub_nav-list {
    gap: 13.33333px;
  }
}

.footer-sub_nav-list-item-link {
  display: flex;
  align-items: flex-start;
  gap: clamp(5px, 1.33333vw, 10px);
  font-size: clamp(16px, 4.26667vw, 32px);
  font-weight: 500;
  color: #004097;
}

@media screen and (min-width: 768px) {
  .footer-sub_nav-list-item-link {
    gap: 6.66667px;
    font-size: 21.33333px;
  }
}

@media screen and (min-width: 1024px) {
  .footer-sub_nav-list-item-link:hover {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }
}

.footer-sub_nav-list-item-icon {
  margin-top: clamp(10px, 2.66667vw, 20px);
  width: clamp(7px, 1.86667vw, 14px);
  height: clamp(9.5px, 2.53333vw, 19px);
}

@media screen and (min-width: 768px) {
  .footer-sub_nav-list-item-icon {
    margin-top: 13.33333px;
    width: 9.33333px;
    height: 12.66667px;
  }
}

.footer-copyright {
  background-color: #004097;
  padding: clamp(18px, 4.8vw, 36px) 0 clamp(83px, 22.13333vw, 166px);
}

@media screen and (min-width: 768px) {
  .footer-copyright {
    padding: 24px 0 110.66667px;
  }
}

.footer-copyright-text {
  text-align: center;
  font-size: clamp(14px, 3.73333vw, 28px);
  font-weight: 500;
  color: #FFFFFF;
}

@media screen and (min-width: 768px) {
  .footer-copyright-text {
    font-size: 18.66667px;
  }
}
/*# sourceMappingURL=style.css.map */