@charset "UTF-8";
/* ------------------------------------------------------------- */
/* reset                                                         */
/* ------------------------------------------------------------- */
/* CSS Document */
/*-----------------reset--------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output,
ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

body,
body * {
  box-sizing: border-box;
}

em {
  font-style: normal;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

picture {
  display: inline-block;
}

/* ------------------------------------------------------------- */
/* layout                                                        */
/* ------------------------------------------------------------- */
.pc {
  display: block !important;
}
@media screen and (max-width: 599px) {
  .pc {
    display: none !important;
  }
}

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

html {
  font-size: min(1.6vw, 16px);
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media screen and (max-width: 599px) {
  html {
    font-size: 3.5vw;
  }
}
html.lock {
  overflow-y: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif !important;
  font-feature-settings: "palt";
  font-weight: 400;
  color: #000000;
  letter-spacing: 0.05em;
  line-height: 1.6;
  outline: none;
  background-color: #fff !important;
  overflow-x: hidden;
}
@media screen and (max-width: 599px) {
  body {
    min-width: auto;
  }
}

body.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

input,
textarea,
select,
button {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
}

.common-padding {
  padding: min(10vw, 100px) 0;
}
@media screen and (max-width: 599px) {
  .common-padding {
    padding: 15vw 0;
  }
}
.common-padding.first-sec {
  padding: min(5vw, 50px) 0 min(10vw, 100px);
}
@media screen and (max-width: 599px) {
  .common-padding.first-sec {
    padding: 6vw 0 15vw;
  }
}

.inner {
  width: min(95%, 1300px);
  margin: 0 auto;
}
.inner-1000 {
  width: min(95%, 1000px);
  margin: 0 auto;
}

.en {
  letter-spacing: 0;
}

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

.indent {
  text-indent: -1em;
  padding-left: 1em;
}

/*-----------------フォントウェイト--------------------*/
.f-regular {
  font-weight: 400;
}

.f-medium {
  font-weight: 500;
}

.f-bold {
  font-weight: 700;
}

.zen {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-style: normal;
}

/*-----------------フォント色--------------------*/
.f-white {
  color: #fff;
}

.f-red {
  color: #e60012;
}

/*-----------------フォント色--------------------*/
.bg-beige {
  background-color: #f1ece4;
}

/*-----------------マージン--------------------*/
.m-center {
  display: block;
  margin: 0 auto;
}

.m-left-auto {
  display: block;
  margin-left: auto;
}

.m-right-auto {
  display: block;
  margin-right: auto;
}

/*-----------------画像--------------------*/
img.fit-cover {
  object-fit: cover;
}

img.fit-contain {
  object-fit: contain;
}

img {
  vertical-align: top;
  max-width: 100%;
}

img.pixelated {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

/*-----------------flex--------------------*/
.flex {
  display: flex;
}

.flex.wrap {
  flex-wrap: wrap;
}

.flex.right {
  justify-content: flex-end;
}

.flex.center {
  justify-content: center;
}

.flex.left {
  justify-content: flex-start;
}

.flex.sp-between {
  justify-content: space-between;
}

.flex.vertical {
  flex-direction: column;
  align-items: flex-start;
}

.flex.al-center {
  align-items: center;
}

.flex.al-top {
  align-items: flex-start;
}

.flex.al-bottom {
  align-items: flex-end;
}

.flex.flex-column {
  flex-direction: column;
  align-items: center;
  justify-items: flex-start;
}

.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 599px) {
  .reverse {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

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

.d-flex {
  display: flex;
  gap: 1.5em;
}

.d-flex-t-block {
  display: flex;
  gap: 1.5em;
}
@media screen and (max-width: 599px) {
  .d-flex-t-block {
    flex-direction: column;
  }
}

/*-----------------Link--------------------*/
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
a:hover, a:active {
  opacity: 0.7;
}
@media screen and (max-width: 599px) {
  a:hover, a:active {
    opacity: 1;
  }
}

a.line-link {
  color: #e60012;
  text-decoration: underline;
}

/*----------------text---------------------*/
.txt-c {
  text-align: center;
}

.txt-l {
  text-align: left;
}

.txt-r {
  text-align: right;
}

.txt-vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: inline-block;
}

/*----------------margin---------------------*/
.m-block-10 {
  margin: 10px 0 !important;
}

.m-block-20 {
  margin: 20px 0 !important;
}

.m-block-30 {
  margin: 30px 0 !important;
}

.m-block-40 {
  margin: 40px 0 !important;
}

.m-block-50 {
  margin: 50px 0 !important;
}

.m-block-100 {
  margin: 100px 0 !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

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

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

.mt-50 {
  margin-top: 50px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.btn {
  display: inline-block;
  color: #fff !important;
  text-decoration: none !important;
  text-align: center;
  padding: min(1.5vw, 15px) min(2.5vw, 25px) min(1.5vw, 15px) min(5vw, 50px);
  font-size: min(1.6vw, 16px);
  font-weight: 600;
  border-radius: 50px;
  background-color: #e60012;
  outline: 0;
  border: 0;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 599px) {
  .btn {
    width: 55vw;
    font-size: 3.6vw;
    padding: 3.4vw 5vw 3.4vw 7vw;
  }
}
.btn::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: min(1.4vw, 14px);
  aspect-ratio: 1/1;
  background-color: #fff;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  margin-left: min(2vw, 20px);
}
@media screen and (max-width: 599px) {
  .btn::after {
    width: 2.5vw;
  }
}
.btn.yellow {
  background: rgb(174, 139, 42);
  background: linear-gradient(107deg, rgb(174, 139, 42) 19%, rgb(211, 171, 60) 100%);
}
.btn.beige {
  background: #cfa972;
}
.btn.black-solid {
  background-color: #fff;
  border: solid 2px #000;
  color: #000 !important;
}
.btn.black-solid::after {
  background-color: #000;
}
.btn.gray {
  background-color: #8a8a8a;
}
.btn.w-max {
  width: 100%;
}
.btn.w-half {
  width: 50%;
}

.more-btn {
  font-weight: 500;
  color: #fff;
  margin-top: 1.5em;
  border-radius: 50px;
  background-color: #e60012;
  padding: 5px 20px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.more-btn:hover {
  opacity: 0.5;
}

.hidden-row {
  display: none;
}

.arw-link {
  font-size: min(1.4vw, 14px);
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .arw-link {
    font-size: 3.4vw;
  }
}
.arw-link::after {
  content: "";
  display: inline-block;
  width: 26px;
  aspect-ratio: 1/1;
  background: url(../img/common/arw_link_icon.png) no-repeat center/contain;
  margin-left: 10px;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .arw-link::after {
    width: 6vw;
  }
}

.ttl-area {
  text-align: center;
  position: relative;
}
.ttl-area::after {
  content: "";
  display: block;
  width: min(12vw, 126px);
  aspect-ratio: 1/1;
  background: url(../img/common/ttl_area_bg.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
@media screen and (max-width: 599px) {
  .ttl-area::after {
    width: 20vw;
  }
}
.ttl-area__ttl {
  font-size: min(3.6vw, 36px);
  font-weight: 700;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 599px) {
  .ttl-area__ttl {
    font-size: 7vw;
  }
  .ttl-area__ttl.txt-vertical {
    font-size: 5.8vw;
  }
}
.ttl-area__lead {
  font-size: min(1.8vw, 18px);
  font-weight: 600;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 599px) {
  .ttl-area__lead {
    font-size: 4vw;
  }
}

.common-style {
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (max-width: 599px) {
  .common-style {
    font-size: 3.4vw;
  }
}
.common-style a {
  color: #e60012;
  text-decoration: underline;
}
.common-style strong {
  font-weight: 600;
}
.common-style iframe {
  max-width: 100%;
  max-height: fit-content;
  aspect-ratio: 16/9;
}
.common-style ol {
  padding-left: 1em;
}
.common-style ol > li {
  padding-left: 1em;
  text-indent: -1.7em;
  line-height: 1.8;
  list-style-type: none;
  counter-increment: cnt;
}
.common-style ol > li::before {
  content: counter(cnt) ".";
  margin-right: 10px;
}
.common-style ul {
  padding-left: 2em;
  margin: 1em 0;
}
.common-style ul li {
  list-style-type: disc;
  padding-left: 0em;
  text-indent: 0em;
}
.common-style .inner {
  width: min(960px, 95%);
}
.common-style__ttl-area {
  font-size: min(3.5vw, 16px);
  padding: min(9vw, 70px) 0;
}
@media screen and (max-width: 599px) {
  .common-style__ttl-area {
    padding: 15vw 0;
  }
}
.common-style__ttl-area h3 {
  font-size: min(7vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: center;
  display: flex;
  align-self: center;
  justify-content: center;
  gap: min(3.4vw, 15px);
  color: #e60012;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 599px) {
  .common-style__ttl-area h3 {
    font-size: 6vw;
    flex-direction: column;
  }
}
.common-style__ttl-area .term-tag {
  display: inline-block;
  width: fit-content;
  height: fit-content;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif !important;
  vertical-align: middle;
  margin-top: 8px;
  padding: 2px 11px;
  background-color: #e60012;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .common-style__ttl-area .term-tag {
    margin: 0 auto;
  }
}
.common-style__ttl-area .sub-layer {
  margin-top: 2em;
}
.common-style__ttl-area-contents {
  margin-top: 2em;
}
.common-style__ttl-area p {
  padding-block: 0.8em;
}
.common-style__page-ttl {
  font-size: 30px;
  margin-bottom: 1em;
}
.common-style__inner-ttl {
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid #e3e0e0;
  padding-bottom: 6px;
  margin-block: 0.8em;
}
@media screen and (max-width: 599px) {
  .common-style__inner-ttl {
    font-size: 5vw;
    line-height: 1.5;
  }
}
.common-style__inner-ttl span {
  border-bottom: 1px solid #1a1a1a;
  padding: 11px 15px;
}
.common-style__contents h3:not([class]) {
  font-size: min(6vw, 28px);
  font-weight: 500;
  text-align: center;
  margin-bottom: min(3vw, 1em);
}
@media screen and (max-width: 599px) {
  .common-style__contents h3:not([class]) {
    font-size: 6vw;
    margin-bottom: 3vw;
  }
}
.common-style__contents table {
  width: 100%;
  background-color: #dddddd;
  border-collapse: separate;
  border-spacing: 1px;
  margin: 20px auto 20px auto;
}
@media screen and (max-width: 599px) {
  .common-style__contents table {
    font-size: 3vw;
  }
}
.common-style__contents th {
  background-color: #e5eac7;
  padding: 10px 15px 10px 10px;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  white-space: nowrap;
}
@media screen and (max-width: 599px) {
  .common-style__contents th {
    padding: 4vw 2.5vw 4vw 2vw;
  }
}
.common-style__contents td {
  background-color: #ffffff;
  padding: 10px;
  text-align: left;
  vertical-align: middle;
  word-break: auto-phrase;
}
@media screen and (max-width: 599px) {
  .common-style__contents td {
    padding: 4vw 2vw;
  }
}
.common-style__contents td a {
  color: #e60012;
  text-decoration: underline;
}
.common-style__contents p:not([class]) {
  padding-block: 1em;
}
@media screen and (max-width: 599px) {
  .common-style__contents p:not([class]) {
    padding-block: 0.5em;
  }
}
.common-style .shibu-list-table {
  width: 100%;
  background-color: #cccccc;
  border-collapse: separate;
  border-spacing: 0px;
  border-top: 1px solid #cccccc;
}
@media screen and (max-width: 599px) {
  .common-style .shibu-list-table {
    font-size: 2.7vw;
  }
}
.common-style .shibu-list-table th {
  background-color: #f8f8f8;
  padding: 10px;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 599px) {
  .common-style .shibu-list-table th {
    font-size: 2.6vw;
  }
}
.common-style .shibu-list-table th a {
  color: #e60012;
  text-decoration: underline;
}
.common-style .shibu-list-table th.shibuname {
  background-color: #e5eac7;
  padding: min(1vw, 10px);
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .common-style .shibu-list-table th.shibuname {
    padding: 3vw 2vw;
    line-height: 1.4;
  }
}
.common-style .shibu-list-table td {
  padding: min(1vw, 10px);
  background-color: #ffffff;
  border-bottom: 1px solid #cccccc;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .common-style .shibu-list-table td {
    padding: 3vw 2vw;
    line-height: 1.5;
  }
}
.common-style .jigyo-pic {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.common-style .net-work__cft-table {
  margin-top: min(6vw, 60px);
}

.single {
  font-size: 16px !important;
}
.single__date {
  display: inline-block;
  margin-bottom: 5px;
}
.single__ttl {
  font-size: 24px;
  text-align: left !important;
}
.single__link-wrap {
  margin-top: 50px;
}
.single .arw-link {
  color: #000;
  text-decoration: none;
}

.header {
  z-index: 999;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.header__inner {
  padding: min(1.5vw, 15px) min(2vw, 20px);
}
@media screen and (max-width: 599px) {
  .header__inner {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 3vw 2vw;
    position: fixed;
    z-index: 999;
    width: 100%;
  }
  .header__inner.top {
    position: absolute;
    background-color: unset;
  }
}
.header__pc-header {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.header__pc-header.hide {
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .header__pc-header {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .header__logo-wrap {
    margin: 0 auto;
  }
}
.header__logo {
  width: min(20vw, 280px);
}
@media screen and (max-width: 599px) {
  .header__logo {
    position: relative;
    z-index: 999;
    width: 38vw;
  }
}
@media screen and (max-width: 599px) {
  .header__nav-list {
    margin-bottom: 5vw;
  }
}
.header__nav-link {
  height: 100%;
  padding-inline: min(1.4vw, 22px);
  font-size: min(1vw, 14px);
  gap: 2px;
  word-break: auto-phrase;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .header__nav-link {
    display: block;
    font-size: 4vw;
    width: 100%;
    border-bottom: solid 1px #656565;
    padding: 3vw 5vw;
    position: relative;
  }
  .header__nav-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: rotate(45deg) translateY(-50%);
    width: 6px;
    height: 6px;
    border-width: 2px 2px 0 0;
    border-style: solid;
    border-color: #fff;
  }
}
.header__nav-item {
  gap: 10px;
}
.header__nav-item:not(:last-child) .header__nav-link {
  border-right: solid 1px #fff;
}
@media screen and (max-width: 599px) {
  .header__nav-item:not(:last-child) .header__nav-link {
    border-right: 0;
  }
}
.header__link-icon {
  max-height: 2.3vw;
  margin-block: auto;
}
.header__sns-wrap {
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .header__sns-wrap {
    gap: 3vw;
    margin-right: 1vw;
  }
}
.header__sns-icon {
  display: block;
  max-width: 3.5vw;
}
@media screen and (max-width: 599px) {
  .header__sns-icon {
    max-width: 10vw;
  }
}
.header__lang-wrap {
  gap: 5px;
  margin-left: 10px;
}
@media screen and (max-width: 599px) {
  .header__lang-wrap {
    font-size: 4vw;
  }
}
.header__lang-change-btn.active {
  color: #e60012;
}
.header__sp-header {
  display: none;
  position: relative;
}
@media screen and (max-width: 599px) {
  .header__sp-header {
    display: block;
    z-index: 999;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }
  .header__sp-header.hide {
    opacity: 0;
  }
}
.header__hamburger {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  width: 15.5vw;
  aspect-ratio: 1/1;
}
.header__hamburger span {
  display: block;
  width: 55%;
  height: 5px;
  background-color: #000;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.header__hamburger span:nth-child(1) {
  top: 30%;
}
.header__hamburger span:nth-child(3) {
  top: 70%;
}
.header__hamburger.is-open span:nth-child(1) {
  transform: rotate(135deg);
  top: 50%;
  left: 25%;
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open span:nth-child(3) {
  transform: rotate(-135deg);
  top: 50%;
  left: 25%;
}
.header__sp-nav {
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 100vh;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.8);
  transform: translate3d(100%, 0, 0);
  transition: transform 0.5s ease-in-out;
  top: 0;
  right: 0;
}
.header__sp-nav.is-open {
  transform: translate3d(0, 0, 0);
}
.header__sp-nav::before {
  content: "";
  display: block;
  width: 100%;
  height: 16vw;
  background-color: #fff;
}

.footer__nav-area {
  color: #fff;
  padding: min(11vw, 110px) 0 min(5.5vw, 55px);
}
@media screen and (max-width: 599px) {
  .footer__nav-area {
    padding: 15vw 0 7vw;
  }
}
.footer__nav-inner {
  width: min(90%, 2000px);
  margin: 0 auto;
}
.footer__nav-left {
  width: min(40%, 427px);
}
@media screen and (max-width: 599px) {
  .footer__nav-left {
    width: 100%;
  }
}
.footer__nav-logo {
  margin-bottom: min(8vw, 80px);
  max-width: 37vw;
}
@media screen and (max-width: 599px) {
  .footer__nav-logo {
    max-width: 61vw;
    margin-bottom: 5vw;
  }
}
.footer__address {
  width: max-content;
  margin-left: auto;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .footer__address {
    margin-left: 0;
  }
}
.footer__top-area {
  display: flex;
  gap: 8%;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .footer__top-area {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 9vw 0;
  }
}
.footer__nav-area {
  background: url(../img/common/footer/footer_nav_area_bg.jpg) no-repeat center/cover;
}
@supports (background: url(../img/common/test_webp.webp)) {
  .footer__nav-area {
    background: url(../img/common/footer/footer_nav_area_bg.webp) no-repeat center/cover;
  }
}
.footer__nav-list {
  line-height: 2.1;
}
.footer__nav-list:not(:last-child) {
  margin-bottom: 20px;
}
.footer__nav-list ul {
  padding-left: 1em;
}
.footer__btm-area {
  text-align: right;
}
@media screen and (max-width: 599px) {
  .footer__btm-area {
    text-align: left;
  }
}
.footer__cta-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: min(2vw, 20px);
}
@media screen and (max-width: 599px) {
  .footer__cta-wrap {
    margin-bottom: 4vw;
    justify-content: flex-start;
  }
}
.footer__sns-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__copy {
  font-size: min(1.2vw, 12px);
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 599px) {
  .footer__copy {
    font-size: 2.5vw;
  }
}
.footer__support-area {
  padding: 10px;
  background-color: #fff;
}
@media screen and (max-width: 599px) {
  .footer__support-area img {
    width: 50vw;
  }
}

.news__card-list {
  display: flex;
  flex-wrap: wrap;
  gap: min(3.5vw, 44px) 3%;
}
@media screen and (max-width: 599px) {
  .news__card-list {
    flex-direction: column;
    gap: 6vw;
  }
}
.news__card {
  width: 30.3333333333%;
}
@media screen and (max-width: 599px) {
  .news__card {
    width: 100%;
  }
}
.news__card-img {
  width: 100%;
  aspect-ratio: 395/260;
  object-fit: cover;
  display: block;
  margin-bottom: min(2vw, 20px);
}
@media screen and (max-width: 599px) {
  .news__card-img {
    aspect-ratio: 480/260;
  }
}
.news__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: min(2vw, 20px);
}
.news__card-txt {
  font-size: min(1.8vw, 18px);
  letter-spacing: 0.01em;
  margin-bottom: min(1vw, 10px);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 3em;
}
@media screen and (max-width: 599px) {
  .news__card-txt {
    font-size: 4vw;
  }
}
.news__card-btm {
  gap: 10px;
  flex-wrap: wrap;
}
.news__card-tag {
  display: inline-block;
  color: #fff;
  padding: 1px 20px;
  background-color: #9b8a60;
  border-radius: 50px;
  font-size: min(1.3vw, 13px);
}
@media screen and (max-width: 599px) {
  .news__card-tag {
    padding: 1px 4vw;
    font-size: 3vw;
  }
}
.news__card-tag.festival {
  background-color: #c93b2a;
}
.news__card-tag.charity {
  background-color: #c93b2a;
}
.news__card-tag.backup {
  background-color: #749f44;
}
.news__card-tag.univ {
  background-color: #c93b2a;
}
.news__card-tag.senior {
  background-color: #104da2;
}
.news__card-tag.grant {
  background-color: #8887bf;
}
.news__card-tag.asakusa {
  background-color: #c93b2a;
}
.news__card-tag.lecture {
  background-color: #e9ba52;
}
.news__card-tag.abroad {
  background-color: #82949a;
}
.news__card-tag.junior {
  background-color: #104da2;
}
.news__card-tag.shogai {
  background-color: #c93b2a;
}
.news__card-tag.national {
  background-color: #c93b2a;
}
.news__card-tag.concert {
  background-color: #82949a;
}
.news__card-tag.others {
  background-color: #82949a;
}
.news__item:last-child .news__link {
  border: 0;
}
.news__item:last-child .news__date::after {
  content: none;
}
.news__list {
  width: min(100%, 1000px);
  margin: 0 auto;
}
.news__link {
  font-weight: 500;
  display: flex;
  border-bottom: solid 1px #000000;
}
@media screen and (max-width: 599px) {
  .news__link {
    flex-wrap: wrap;
    gap: 2vw 4vw;
  }
}
.news__date, .news__txt {
  padding: min(2.8vw, 28px) min(2vw, 20px);
  display: flex;
  align-items: center;
  position: relative;
}
.news__date {
  letter-spacing: 0;
}
@media screen and (max-width: 599px) {
  .news__date {
    padding: 4vw 0 0;
  }
}
.news__date::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 599px) {
  .news__date::after {
    content: none;
  }
}
.news__txt {
  flex: 1 1;
}
@media screen and (max-width: 599px) {
  .news__txt {
    font-size: 3.8vw;
    flex: auto;
    width: 100%;
    padding: 0 0 4vw;
  }
}
.news__tag {
  display: inline-block;
  height: fit-content;
  margin: auto;
  color: #fff;
  padding: 1px 20px;
  background-color: #9b8a60;
  border-radius: 50px;
  font-size: min(1.3vw, 13px);
}
@media screen and (max-width: 599px) {
  .news__tag {
    padding: 1px 4vw;
    font-size: 3vw;
    margin: 0;
    margin-top: 4vw;
  }
}
.news__tag.report1 {
  background-color: #486a00;
}
.news__tag.report2 {
  background-color: #024999;
}
.news__table {
  width: min(95%, 1000px);
  margin: 0 auto;
  font-size: min(3.3vw, 14px);
  letter-spacing: 0;
}
.news__table tr:not(:last-child) {
  border-bottom: solid 1px #000000;
}
.news__table tr:not(:last-child) td:first-child {
  border-bottom: solid 2px #000000;
}
.news__table tr td:first-child {
  width: 35%;
}
@media screen and (max-width: 599px) {
  .news__table tr td:first-child {
    width: 40%;
  }
}
.news__table tr td:last-child {
  width: 48%;
}
@media screen and (max-width: 599px) {
  .news__table tr td:last-child {
    width: 40%;
  }
}
.news__table td {
  padding: min(4vw, 24px) min(2vw, 20px);
  vertical-align: middle;
}
.news__table td a {
  color: #e60012;
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: min(1vw, 10px);
  text-align: center;
  margin-top: min(4vw, 40px);
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: solid 1px #e4e4e4;
}
.pagination .page-numbers.current {
  color: #fff;
  background-color: #e60012;
  border: solid 1px #e60012;
}
.pagination .next {
  transform: rotate(180deg);
}

.lower-mv {
  padding: min(12vw, 160px) 0 min(4vw, 70px);
  background: url(../img/common/lower_mv_bg.jpg) no-repeat center/cover;
}
@supports (background: url(../img/common/test_webp.webp)) {
  .lower-mv {
    background: url(../img/common/lower_mv_bg.webp) no-repeat center/cover;
  }
}
@media screen and (max-width: 599px) {
  .lower-mv {
    padding: 24vw 0 6vw;
  }
}
.lower-mv__ttl-wrap {
  text-align: center;
}
.lower-mv__ttl {
  width: min(30vw, 302px);
  height: min(30vw, 302px);
  margin: 0 auto;
  padding: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(3vw, 32px);
  line-height: 1.3;
  background: url(../img/common/ttl_circle_bg.svg) no-repeat center/contain;
}
.lower-mv__ttl.en {
  text-align: center;
  letter-spacing: 0.05em;
  background: url(../img/common/ttl_circle_bg_en.svg) no-repeat center/contain;
}
.lower-mv__ttl.en.shogai {
  font-size: min(3vw, 27px);
}
@media screen and (max-width: 599px) {
  .lower-mv__ttl {
    width: 50vw;
    height: 50vw;
    font-size: 5vw;
  }
}
@media screen and (max-width: 599px) {
  .lower-mv__ttl.about {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 599px) {
  .lower-mv__ttl.archive {
    font-size: 4.5vw;
  }
}

.lower-mv-parent {
  padding-bottom: min(7vw, 60px);
  background: url(../img/common/lower_mv_bg.jpg) no-repeat center/cover;
}
@supports (background: url(../img/common/test_webp.webp)) {
  .lower-mv-parent {
    background: url(../img/common/lower_mv_bg.webp) no-repeat center/cover;
  }
}
.lower-mv-parent__ttl-wrap {
  width: min(1300px, 95%);
  margin: 0 auto;
  color: #fff;
  text-shadow: 0px 0px 10px rgb(0, 0, 0), 0px 0px 10px rgb(0, 0, 0);
  padding: min(14vw, 250px) 0 min(9vw, 150px);
  mask: url(../img/common/lower_mv_parent_mask.svg) no-repeat bottom/100%, 100%;
  background-size: cover;
}
@media screen and (max-width: 599px) {
  .lower-mv-parent__ttl-wrap {
    width: 100%;
    mask: url(../img/common/lower_mv_parent_mask_sp.svg) no-repeat bottom/100%, 100%;
    padding: 32vw 0 15vw;
  }
}
.lower-mv-parent__lead {
  font-size: 18px;
}
.lower-mv-parent__ttl {
  font-size: min(5vw, 36px);
}
@media screen and (max-width: 599px) {
  .lower-mv-parent__ttl {
    font-size: 7vw;
  }
}

.breadcrumb {
  position: absolute;
  top: min(9vw, 110px);
  padding-inline: 16px;
  font-size: min(1.4vw, 14px);
  font-weight: 500;
  z-index: 800;
  text-shadow: 0px 0px 2px rgba(241, 236, 228, 0.89), 0px 0px 2px rgba(241, 236, 228, 0.89), 0px 0px 2px rgba(241, 236, 228, 0.89), 0px 0px 2px rgba(241, 236, 228, 0.89), 0px 0px 2px rgba(241, 236, 228, 0.89);
}
@media screen and (max-width: 599px) {
  .breadcrumb {
    font-size: 2.8vw;
    top: 17vw;
    width: 100%;
    overflow-x: scroll;
  }
}
@media screen and (max-width: 599px) {
  .breadcrumb__inner {
    width: max-content;
  }
}
.breadcrumb #breadcrumbs > span {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.4375rem;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 900;
}
.breadcrumb #breadcrumbs > span > span {
  color: #000000;
  font-weight: 500;
}
.breadcrumb strong {
  font-weight: 600;
}

.youtube-list {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 599px) {
  .youtube-list {
    flex-direction: column;
  }
}
.youtube-list__item:nth-child(1) {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube-list__item:nth-child(2), .youtube-list__item:nth-child(3), .youtube-list__item:nth-child(4) {
  width: calc(33.3333333333% - 10px);
  aspect-ratio: 16/9;
}
@media screen and (max-width: 599px) {
  .youtube-list__item:nth-child(1), .youtube-list__item:nth-child(2), .youtube-list__item:nth-child(3), .youtube-list__item:nth-child(4) {
    width: 100%;
    height: 71vw;
  }
}
.youtube-list iframe {
  width: 100%;
  height: 100%;
}

.error {
  text-align: center;
}
.error p {
  font-size: min(3.5vw, 16px);
  margin-bottom: min(4vw, 40px);
}

/*     フェードイン    */
.fadeIn {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.fadeIn-up {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(0, 50px);
}

.fadeIn-down {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(0, -80px);
}

.fadeIn-left {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(-50px, 0);
}

.fadeIn-right {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(50px, 0);
}

/*     スライドイン    */
.slideIn {
  opacity: 0;
  transition-delay: 0ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.slideIn-up {
  opacity: 1;
  transform: translate(0, 80px);
}

.slideIn-down {
  opacity: 1;
  transform: translate(0, -80px);
}

.slideIn-left {
  opacity: 1;
  transform: translate(-80px, 0);
}

.slideIn-right {
  opacity: 1;
  transform: translate(80px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0);
}

.network {
  padding: min(2vw, 20px) 0 min(15vw, 100px);
}
.network__lead {
  font-size: min(3.5vw, 16px);
  line-height: 1.8;
  margin-bottom: min(6vw, 60px);
}
@media screen and (max-width: 599px) {
  .network__lead {
    margin-bottom: 12vw;
  }
}
.network__lead ul {
  margin-bottom: 2em;
}
.network__btn-wrap {
  gap: min(3vw, 30px);
  margin: min(5vw, 50px) auto min(8vw, 80px);
}
@media screen and (max-width: 599px) {
  .network__btn-wrap {
    flex-direction: column;
    align-items: center;
    margin: 6vw auto 12vw;
  }
}
.network__btn-wrap .btn {
  width: 28.3333333333%;
}
@media screen and (max-width: 599px) {
  .network__btn-wrap .btn {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .map {
    display: none;
  }
  .map-select {
    padding: 20px;
    font-size: 16px;
  }
  .map-select form {
    width: 100%;
  }
  .map-select form select {
    width: 100%;
    height: 40px;
  }
}
@media (min-width: 769px) {
  .map {
    filter: saturate(0.5);
    background-image: url(../img/network/network_map.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: min(100%, 800px);
    height: min(94vw, 822px);
    aspect-ratio: 800/822;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
  }
  .map-select {
    display: none;
  }
}
.map div {
  text-align: center;
  font-weight: bold;
  font-size: min(1.5vw, 14px);
  padding: 0;
  line-height: 100%;
  position: absolute;
}

.map div a {
  text-shadow: 0px 0px 1px #ffffff, 0px 0px 1px #ffffff, 0px 0px 1px #ffffff, 0px 0px 1px #ffffff, 0px 0px 1px #ffffff, 0px 0px 1px #ffffff, 0px 0px 1px #ffffff, 0px 0px 1px #ffffff, 0px 0px 1px #ffffff, 0px 0px 1px #ffffff, 0px 0px 1px #ffffff, 0px 0px 1px #ffffff, 0px 0px 1px #ffffff, 0px 0px 1px #ffffff, 0px 0px 1px #ffffff;
  color: #000000;
  text-decoration: none;
}

.map div a:hover {
  color: #85160a;
  text-decoration: underline;
}

.map-doutoh {
  right: 19%;
  top: 15%;
}

.map-dousai {
  right: 34%;
  top: 15%;
}

.map-dounan {
  right: 36%;
  top: 22%;
}

.map-douhoku {
  right: 27%;
  top: 11%;
}

.map-douou {
  right: 27%;
  top: 17%;
}

.map-aomori {
  right: 35%;
  top: 34%;
}

.map-akita {
  right: 38%;
  top: 41%;
}

.map-yamagata {
  right: 39%;
  top: 48%;
}

.map-iwate {
  left: 63%;
  top: 42%;
}

.map-miyagi {
  left: 62%;
  top: 49%;
}

.map-fukushima {
  left: 58%;
  top: 55%;
}

.map-niigata {
  left: 49%;
  top: 55%;
}

.map-toyama {
  left: 43%;
  top: 61%;
}

.map-ishikawa {
  left: 39%;
  top: 58%;
}

.map-fukui {
  left: 37%;
  top: 63%;
}

.map-tochigi {
  left: 56%;
  top: 60%;
}

.map-ibaraki {
  left: 60%;
  top: 63%;
}

.map-gunma {
  left: 49.5%;
  top: 60%;
}

.map-saitama {
  left: 53%;
  top: 63%;
}

.map-tokyo {
  left: 54%;
  top: 66%;
}

.map-chiba {
  left: 60%;
  top: 67%;
}

.map-kanagawa {
  left: 54%;
  top: 69%;
}

.map-yamanashi {
  left: 48%;
  top: 67%;
}

.map-shizuoka {
  left: 49%;
  top: 71%;
}

.map-nagano {
  left: 46%;
  top: 64%;
}

.map-gifu {
  left: 41%;
  top: 66%;
}

.map-aichi {
  left: 43%;
  top: 70%;
}

.map-shiga {
  left: 37%;
  top: 71%;
}

.map-mie {
  left: 40%;
  top: 74%;
}

.map-nara {
  left: 35%;
  top: 76%;
}

.map-wakayama {
  left: 32%;
  top: 79%;
}

.map-kyoto {
  left: 33%;
  top: 67%;
}

.map-osaka {
  left: 32%;
  top: 73%;
}

.map-hyogo {
  left: 30%;
  top: 70%;
}

.map-okayama {
  left: 24%;
  top: 71%;
}

.map-hiroshima {
  left: 19%;
  top: 73%;
}

.map-tottori {
  left: 26%;
  top: 37%;
}

.map-shimane {
  left: 17%;
  top: 69%;
}

.map-yamaguchi {
  left: 22%;
  top: 37%;
}

.map-tokushima {
  left: 26%;
  top: 78%;
}

.map-kagawa {
  left: 26%;
  top: 75%;
}

.map-fukuoka {
  left: 9%;
  top: 79%;
}

.map-saga {
  left: 4%;
  top: 81%;
}

.map-nagasaki {
  left: 1%;
  top: 84%;
}

.map-oita {
  left: 13%;
  top: 82%;
}

.map-kumamoto {
  left: 8%;
  top: 85%;
}

.map-miyazaki {
  left: 12%;
  top: 88%;
}

.map-kagoshima {
  left: 6%;
  top: 91%;
}

.map-okinawa {
  left: 66%;
  top: 88%;
}

@media screen and (max-width: 599px) {
  .common-style__ttl-area.sanjo, .common-style__ttl-area.kojin, .common-style__ttl-area.ippan {
    padding: 9vw 0;
  }
}
