@charset "UTF-8";
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "";
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

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

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 11px;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.fv {
  background-image: url(../images/fv_backimage.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv {
    top: 50px;
  }
}

.fv_ttl {
  padding: 0 20px;
}

.pc_menu {
  width: 100%;
  margin-inline: auto;
  background-color: #132a88;
}

.pc_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .pc_list {
    display: none;
  }
}

.pc_item {
  height: inherit;
}

.pc_link {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  font-optical-sizing: auto;
  transition: all 0.4s;
  display: inline-block;
  padding: 20px;
  width: 176px;
  text-align: center;
}

.pc_link:hover {
  transition: ease 0.4s;
  background-color: #47559C;
}

.sp_menu {
  display: none;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .sp_menu {
    display: block;
  }
}

.menu_btn {
  position: relative;
  cursor: pointer;
  transition: all 0.4s;
  width: 19px;
  height: 19px;
  background-color: #fff;
}

.menu_btn span:nth-child(1) {
  border-radius: 5px;
  position: absolute;
  display: inline-block;
  width: 19px;
  border: 1px solid #000;
  transition: all 0.4s;
  top: 12%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.menu_btn span:nth-child(2) {
  border-radius: 5px;
  position: absolute;
  display: inline-block;
  width: 19px;
  border: 1px solid #000;
  transition: all 0.4s;
  top: 44%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.menu_btn span:nth-child(3) {
  border-radius: 5px;
  position: absolute;
  display: inline-block;
  width: 19px;
  border: 1px solid #000;
  transition: all 0.4s;
  top: 73%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.menu_btn.is-active span:nth-child(1) {
  transform: rotate(-135deg);
  top: 50%;
  width: 80%;
  left: 10%;
}

.menu_btn.is-active span:nth-child(2) {
  display: none;
}

.menu_btn.is-active span:nth-child(3) {
  transform: rotate(135deg);
  top: 50%;
  width: 80%;
  left: 10%;
}

.search-open-btn {
  position: relative;
  z-index: 10001;
  transition: background-color 0.4s;
  width: 100%;
  height: 100%;
}

.search-overlay.is-active ~ .sp_list .search-open-btn {
  background-color: rgba(0, 0, 0, 0.1);
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.search-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.search-inner {
  width: 80%;
  position: relative;
  text-align: center;
}

.search-form-wrapper {
  width: 90%;
  background: #fff;
  border: 2px solid #f39800;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.search-input {
  width: 100%;
  height: 50px;
  padding: 0 50px 0 15px;
  border: none;
  outline: none;
}

.search-submit-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #999;
}

.search-field {
  width: 100%;
  padding: 15px;
  font-size: 1.2rem;
  border: none;
  border-bottom: 2px solid #fff;
  background: transparent;
  color: #fff;
  outline: none;
}
.search-field::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.search-close-btn {
  position: absolute;
  top: -60px;
  right: 0;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.search-open-btn {
  position: relative;
  z-index: 10001;
  transition: background-color 0.4s;
  width: 100%;
  height: 100%;
}

.sp_list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 50px;
}

.sp_item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sp_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.sp_link > img {
  aspect-ratio: 1/1;
  width: 19px;
}

.sp_icontext {
  display: block;
  font-size: 9px;
  color: #000;
}

.nav-overlay {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.nav-overlay.panelactive {
  opacity: 1;
  visibility: visible;
}

.sp_body {
  position: fixed;
  top: 50px;
  left: -100%;
  width: 40%;
  height: 100%;
  background: #fff;
  z-index: 101;
  transition: all 0.4s ease;
}
.sp_body.panelactive {
  left: 0;
}
@media screen and (max-width: 768px) {
  .sp_body {
    width: 80%;
  }
}

.sp_body-nav {
  width: 90%;
  margin-inline: auto;
}

.sp_body-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.sp_body-item {
  display: block;
  width: 100%;
}

.sp_body-link {
  display: block;
  width: 100%;
  color: #000;
  padding-top: 6px;
  padding-bottom: 6px;
}

.about {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: clamp(5.75rem, 3.484rem + 9.67vw, 8.125rem);
  }
}

.about_ttl {
  text-align: center;
  color: #fc0808;
  font-size: 28px;
  font-weight: 900;
  text-shadow: 3px 3px 3px #999;
}
@media screen and (max-width: 768px) {
  .about_ttl {
    font-size: clamp(1.25rem, 0.773rem + 2.04vw, 1.75rem);
  }
}

.about_box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .about_box {
    flex-direction: column;
    row-gap: clamp(1.875rem, -3.492rem + 22.9vw, 7.5rem);
    margin-top: clamp(2.625rem, 0.359rem + 9.67vw, 5rem);
  }
}

.about_img {
  max-width: 40%;
}
@media screen and (max-width: 768px) {
  .about_img {
    max-width: 67%;
  }
}
@media screen and (max-width: 375px) {
  .about_img {
    max-width: 100%;
  }
}

.determination {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .determination {
    padding-top: clamp(5.75rem, 3.484rem + 9.67vw, 8.125rem);
  }
}

.determination_ttl {
  font-size: 62px;
}

.determination_sub-ttl {
  margin-top: 20px;
  font-size: clamp(2.625rem, 2.307rem + 0.66vw, 3.125rem);
  padding: 22px 44px;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .determination_sub-ttl {
    font-size: clamp(1.375rem, 0.182rem + 5.09vw, 2.625rem);
    letter-spacing: 2px;
  }
}

.determination_box {
  width: 75%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .determination_box {
    width: 100%;
    margin-top: clamp(1.25rem, 0.057rem + 5.09vw, 2.5rem);
  }
}

.box-ttl {
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .box-ttl {
    font-size: clamp(1rem, 0.523rem + 2.04vw, 1.5rem);
  }
}

.text {
  font-family: "";
  font-size: 20px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .text {
    font-size: clamp(0.875rem, 0.517rem + 1.53vw, 1.25rem);
  }
}

.policy {
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .policy {
    padding-top: 80px;
  }
}

.policy_inner {
  max-width: 1456px;
  padding: 0 30px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .policy_inner {
    padding: 0 15px;
  }
}

.policy_ttl {
  font-size: 62px;
}

.policy_box {
  background-color: #132a88;
}
.policy_box > .ttl_box {
  padding-top: 30px;
}

.policy_sub-ttl {
  font-size: clamp(2.125rem, 1.054rem + 1.67vw, 3.125rem);
  letter-spacing: 5px;
}
@media screen and (max-width: 1024px) {
  .policy_sub-ttl {
    font-size: clamp(1.688rem, 0.375rem + 2.73vw, 2.125rem);
    letter-spacing: 2px;
  }
}
@media screen and (max-width: 768px) {
  .policy_sub-ttl {
    font-size: clamp(1.063rem, 0.466rem + 2.54vw, 1.688rem);
  }
}

.policy_list {
  width: 80%;
  margin-inline: auto;
  display: grid; /* flexからgridに変更 */
  grid-template-columns: repeat(2, 1fr); /* 2列均等 */
  grid-auto-rows: 1fr; /* これが魔法のプロパティ！全行の高さを揃える */
  gap: 40px 4%; /* row-gap column-gapを一括指定 */
  align-content: flex-start;
  overflow: visible;
  margin-top: clamp(1.875rem, -0.501rem + 4.95vw, 5.625rem);
  padding-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .policy_list {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .policy_list {
    grid-template-columns: repeat(1, 1fr);
    width: 80%;
    padding-bottom: clamp(3.125rem, 1.932rem + 5.09vw, 4.375rem);
  }
}

.policy_item {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 768px) {
  .policy_item {
    max-width: 354px;
    margin-inline: auto;
  }
}

.policy_link {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  flex-grow: 1;
  overflow: hidden;
  background-color: #fff;
  color: #132a88;
  font-size: clamp(1.563rem, 0.579rem + 2.05vw, 2.5rem);
  font-weight: bold;
  transition: ease-in 0.3s;
}
@media screen and (max-width: 768px) {
  .policy_link {
    font-size: clamp(1rem, 0.463rem + 2.29vw, 1.563rem);
  }
}

.policy_link::before {
  position: absolute;
  font-size: clamp(3.75rem, 2.411rem + 2.09vw, 5rem);
  text-shadow: 2px 2px 0 #fff, -2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff;
  top: clamp(0rem, -0.656rem + 1.37vw, 0.625rem);
  left: 35px;
}
@media screen and (max-width: 1024px) {
  .policy_link::before {
    font-size: clamp(3.125rem, 1.25rem + 3.91vw, 3.75rem);
  }
}
@media screen and (max-width: 768px) {
  .policy_link::before {
    font-size: clamp(2.5rem, 1.904rem + 2.54vw, 3.125rem);
  }
}

.policy_num1::before {
  content: "1";
}

.policy_num2::before {
  content: "2";
}

.policy_num3::before {
  content: "3";
}

.policy_num4::before {
  content: "4";
}

.policy_num5::before {
  content: "5";
}

.policy_num6::before {
  content: "6";
}

.policy_num7::before {
  content: "7";
}

.policy_detail {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-image: linear-gradient(90deg, #1a6cea, #2c4097);
  min-height: 50px;
  color: #fff;
  font-size: clamp(1.25rem, 0.594rem + 1.37vw, 1.875rem);
  padding-right: clamp(1.563rem, -0.077rem + 3.42vw, 3.125rem);
}
@media screen and (max-width: 768px) {
  .policy_detail {
    min-height: clamp(2.5rem, 1.904rem + 2.54vw, 3.125rem);
    font-size: clamp(1rem, 0.463rem + 2.29vw, 1.563rem);
  }
}

.policy_text {
  padding: clamp(1.875rem, 1.267rem + 2.02vw, 3.125rem) 20px 20px;
  text-align: center;
}

.policy-detail {
  margin-top: 30px;
}

.policy_detail_box {
  background-color: #132a88;
}

.policy_detail_box:not(:last-child) {
  margin-bottom: 20px;
}

.box_inner {
  padding: 30px 0 60px;
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .box_inner {
    width: 90%;
  }
}

.detail_ttl {
  color: #fff;
  text-shadow: 2px 2px 2px #fc0808;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  padding-left: 30px;
  margin-bottom: 1.6em;
}
@media screen and (max-width: 768px) {
  .detail_ttl {
    font-size: clamp(1.25rem, 1.011rem + 1.02vw, 1.5rem);
  }
}

.detail_ttl::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}

.detail-text {
  font-size: clamp(1rem, 0.914rem + 0.37vw, 1.25rem);
  color: #fff;
  margin-bottom: 1.6em;
}

.specific_ttl {
  font-size: 20px;
  color: #fff;
  text-shadow: 2px 2px 2px #fc0808;
  border-top: 2px solid #999;
  border-bottom: 2px solid #999;
  padding: 10px 0;
  margin-bottom: 1.6em;
}
@media screen and (max-width: 768px) {
  .specific_ttl {
    font-size: clamp(1.125rem, 1.006rem + 0.51vw, 1.25rem);
  }
}

.specific_item {
  font-size: clamp(1rem, 0.914rem + 0.37vw, 1.25rem);
  color: #fff;
  position: relative;
  padding-left: 30px;
}

.specific_item::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}

.profile {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .profile {
    padding-top: 100px;
  }
}

.profile_box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .profile_box {
    flex-direction: column;
    row-gap: clamp(1.875rem, -3.492rem + 22.9vw, 7.5rem);
    margin-top: clamp(2.625rem, 0.359rem + 9.67vw, 5rem);
  }
}

.profile_textbox > dl {
  font-size: clamp(1rem, 0.914rem + 0.37vw, 1.25rem);
}
.profile_textbox > dl + dl {
  margin-top: 1.8em;
}
.profile_textbox > dl > dt {
  font-weight: 700;
}

.address {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .address {
    padding-top: 150px;
  }
}

.address_sub-ttl {
  display: inline-block;
  font-weight: bold;
  padding: 0px 70px;
  letter-spacing: 10px;
  text-align: center;
  background: linear-gradient(174deg, #132a88 0%, #132a88 50%, #fff 50%, #fff 100%);
  font-size: 50px;
  color: #fff;
  text-shadow: 2px 2px 3px #132a88, -2px 2px 3px #132a88, -2px -2px 3px #132a88, 2px -2px 3px #132a88;
}
@media screen and (max-width: 768px) {
  .address_sub-ttl {
    font-size: clamp(2rem, 0.927rem + 4.58vw, 3.125rem);
    letter-spacing: 2px;
  }
}

.address_box {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .address_box {
    flex-direction: column;
    align-items: center;
    row-gap: clamp(1.875rem, -3.492rem + 22.9vw, 7.5rem);
    margin-top: clamp(2.625rem, 0.359rem + 9.67vw, 5rem);
  }
}

.address_textbox > dl {
  font-size: clamp(1rem, 0.914rem + 0.37vw, 1.25rem);
}
.address_textbox > dl > dt {
  font-weight: 700;
}
.address_textbox > dl > .tel {
  pointer-events: none;
}
.address_textbox > dl > .mail > a {
  color: #000;
  border-bottom: 1px solid #000;
}

.volunteer {
  padding-top: 60px;
}

.volunteer_sub-ttl {
  padding: 0px 70px;
  background: linear-gradient(174deg, #132a88 0%, #132a88 50%, #fff 50%, #fff 100%);
  text-shadow: 2px 2px 3px #132a88, -2px 2px 3px #132a88, -2px -2px 3px #132a88, 2px -2px 3px #132a88;
  color: #fff;
  display: block;
  font-weight: bold;
  text-align: center;
  font-size: 40px;
}
.volunteer_sub-ttl > .before {
  display: block;
}
.volunteer_sub-ttl > .after {
  display: block;
}
@media screen and (max-width: 768px) {
  .volunteer_sub-ttl {
    font-size: clamp(1.375rem, 0.302rem + 4.58vw, 2.5rem);
  }
}

.supporter {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
}

.supporter_img {
  max-width: 40%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .supporter_img {
    max-width: 67%;
  }
}
@media screen and (max-width: 375px) {
  .supporter_img {
    max-width: 100%;
  }
}

.supporter_link {
  padding: 0px 70px;
  background: #132a88;
  text-shadow: 2px 2px 3px #132a88, -2px 2px 3px #132a88, -2px -2px 3px #132a88, 2px -2px 3px #132a88;
  color: #fff;
  display: block;
  font-weight: bold;
  text-align: center;
  font-size: 44px;
}
@media screen and (max-width: 768px) {
  .supporter_link {
    font-size: clamp(2.125rem, 1.529rem + 2.54vw, 2.75rem);
  }
}

.contact {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 90px;
  }
}

.contact_sub-ttl {
  display: inline-block;
  font-weight: bold;
  padding: 0px 70px;
  letter-spacing: 10px;
  text-align: center;
  background: linear-gradient(174deg, #132a88 0%, #132a88 50%, #fff 50%, #fff 100%);
  font-size: 50px;
  color: #fff;
  text-shadow: 2px 2px 3px #132a88, -2px 2px 3px #132a88, -2px -2px 3px #132a88, 2px -2px 3px #132a88;
}
@media screen and (max-width: 768px) {
  .contact_sub-ttl {
    font-size: clamp(2rem, 0.927rem + 4.58vw, 3.125rem);
    letter-spacing: 2px;
  }
}

.form {
  margin-top: 50px;
}

.form__inner {
  width: 85%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .form__inner {
    width: 100%;
  }
}

.form__field {
  display: flex;
}

.form__label {
  width: 25%;
  background-color: #132a88;
  color: #fff;
  font-weight: 700;
  padding: 1em;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .form__label {
    padding: 10px;
    font-size: clamp(0.75rem, 0.511rem + 1.02vw, 1rem);
  }
}

.form__required {
  color: #fc0808;
}

.form__data {
  width: 75%;
  background-color: #d3f2fd;
  padding: 1em;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 768px) {
  .form__data {
    padding: 10px;
  }
}

input#address {
  color: #767676;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  color: #fff;
  background-color: #132a88;
  padding: 15px 250px;
  box-shadow: 0 3px 0 #eee;
  transition: 0.3s;
  margin-top: 20px;
  border-radius: 10px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  background-color: #d3f2fd;
  border: 1px solid #132a88;
  color: #767676;
}
@media screen and (max-width: 768px) {
  input.wpcf7-form-control.wpcf7-submit.has-spinner {
    padding: 15px clamp(6.875rem, -1.474rem + 35.62vw, 15.625rem);
  }
}

.wpcf7-spinner {
  display: none;
}

.submit-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .wpcf7-form-control-wrap {
    font-size: clamp(0.75rem, 0.511rem + 1.02vw, 1rem);
  }
}

.sns {
  margin-top: clamp(3.75rem, 2.166rem + 3.3vw, 6.25rem);
}

.facebook {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 50px;
  min-height: 500px;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.facebook > iframe {
  margin-inline: auto !important;
}
@media screen and (max-width: 768px) {
  .facebook {
    row-gap: clamp(1.875rem, 0.682rem + 5.09vw, 3.125rem);
  }
}

.sns_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 25px;
}
@media screen and (max-width: 768px) {
  .sns_flex {
    flex-direction: column;
    row-gap: 20px;
    margin-top: 30px;
  }
}

.facebook_img {
  width: 300px;
}

.twitter_img,
.instagram_img {
  width: 218px;
}

.footer {
  max-width: 1980px;
  background-color: #132a88;
  margin-inline: auto;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: clamp(3.75rem, 2.557rem + 5.09vw, 5rem);
  }
}

.footer_inner {
  max-width: 1456px;
  padding: 32px 30px 15px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer_inner {
    flex-direction: column;
    row-gap: 10px;
    align-items: initial;
  }
}

@media screen and (max-width: 768px) {
  .footer_left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.footer_logo {
  width: 160px;
  aspect-ratio: 16/5;
}

.footer_right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .footer_right {
    align-items: initial;
  }
}

.footer_list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer_list {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}

.footer_item {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .footer_item {
    border-right: none;
    display: flex;
    justify-content: center;
  }
}

.footer_item:first-child {
  border-left: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .footer_item:first-child {
    border-left: none;
  }
}

.footer_link {
  color: #fff;
  font-size: clamp(0.625rem, 0.467rem + 0.33vw, 0.875rem);
  padding: 0 10px;
  transition: all 0.3s;
  display: block;
}
.footer_link:hover {
  background-color: #d3f2fd;
  color: #000;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .footer_link {
    font-size: 14px;
    padding: 0;
    font-optical-sizing: auto;
    transition: all 0.4s;
    display: inline-block;
    width: clamp(9.375rem, 7.824rem + 6.62vw, 11rem);
    text-align: center;
  }
}

.footer__copy-right {
  margin-top: 10px;
  font-size: clamp(0.625rem, 0.467rem + 0.33vw, 0.875rem);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__copy-right {
    font-size: 14px;
    text-align: center;
  }
}

.privacy {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .privacy {
    padding-top: clamp(5.75rem, 3.484rem + 9.67vw, 8.125rem);
  }
}

.privacy_inner > .text {
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 375px) {
  .privacy_inner > .text {
    width: 100%;
  }
}

.privacy_ttl {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .privacy_ttl {
    font-size: clamp(1.25rem, 0.773rem + 2.04vw, 1.75rem);
  }
}

.personal_list {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .personal_list {
    row-gap: clamp(2.188rem, 1.293rem + 3.82vw, 3.125rem);
  }
}

.personal_item {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .personal_item {
    row-gap: clamp(0.938rem, -1.15rem + 8.91vw, 3.125rem);
  }
}
.personal_item > .text {
  width: 90%;
  margin-inline: auto;
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .personal_item > .text {
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .personal_item > .text {
    padding-left: 15px;
  }
}
.personal_item > .text::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.personal_item-box > .text {
  width: 90%;
  margin-inline: auto;
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .personal_item-box > .text {
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .personal_item-box > .text {
    padding-left: 15px;
  }
}
.personal_item-box > .text::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.personal_item-ttl {
  color: #0b53f8;
  line-height: 30px;
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .personal_item-ttl {
    font-size: clamp(1.25rem, 0.773rem + 2.04vw, 1.75rem);
  }
}

.signature {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .signature {
    width: 100%;
  }
}

.error {
  position: relative;
  top: 50px;
  padding-top: 60px;
}

.error_title {
  line-height: 1.75;
  font-weight: 700;
}

.error_button {
  padding-top: 10px;
  color: #000;
  display: inline-block;
  position: relative;
}

.error_button::after {
  background-color: #000;
  bottom: 2px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transition: all 0.3s;
  width: 100%;
}

.error_button:hover::after {
  bottom: -4px;
  opacity: 1;
}

#fv,
#about,
#determination,
#policy,
#profile,
#address,
#contact,
#policy_num1,
#policy_num2,
#policy_num3,
#policy_num4,
#policy_num5,
#policy_num6,
#policy_num7 {
  scroll-margin-top: 50px;
}

.inner {
  max-width: 1456px;
  padding: 0 30px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 15px;
  }
}

.ttl_box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.red_ttl {
  color: #fc0808;
  text-shadow: 2px 2px 3px #fff, -2px 2px 3px #fff, -2px -2px 3px #fff, 2px -2px 3px #fff;
  display: inline-block;
  font-weight: bold;
  padding: 0px 70px;
  letter-spacing: 10px;
  text-align: center;
  background: linear-gradient(174deg, #132a88 0%, #132a88 50%, #fff 50%, #fff 100%);
}
@media screen and (max-width: 768px) {
  .red_ttl {
    font-size: clamp(1.875rem, 0.086rem + 7.63vw, 3.75rem);
  }
}

.white_ttl {
  color: #fff;
  text-shadow: 2px 2px 3px #132a88, -2px 2px 3px #132a88, -2px -2px 3px #132a88, 2px -2px 3px #132a88;
  display: inline-block;
  font-weight: bold;
  padding: 2% 4%;
  text-align: center;
  background: linear-gradient(180deg, #132a88 0%, #132a88 50%, #fff 50%, #fff 100%);
}

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

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

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

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */