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

reset

----------------------------------*/
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden],
template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

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

a {
  background-color: transparent;
  text-decoration: underline;
}

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

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

b,
strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

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

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

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

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

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

button,
select {
  text-transform: none;
}

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

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

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

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

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

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
  image-rendering: -webkit-optimize-contrast;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

/*----------------------------------

common

----------------------------------*/
html {
  font-size: 62.5%;
  overflow: visible;
}

body {
  color: #333;
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", "Noto Sans JP", serif;
  font-weight: 400;
  line-height: 1.75;
  background: #fff;
}
body.no-scroll {
  overflow: hidden;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}

svg {
  vertical-align: middle;
}
svg.clip_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}

button:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

.fadein {
  opacity: 0;
  z-index: 1;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
  visibility: visible !important;
}

@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translateY(55px);
            transform: translateY(55px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    -webkit-transform: translateY(55px);
            transform: translateY(55px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/*----------------------------------

header

----------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header_wrap {
  width: calc(100% - 160px);
  padding-top: 10px;
  background: rgb(255, 181, 43);
  background: -webkit-linear-gradient(160deg, rgb(255, 181, 43) 0%, rgb(166, 255, 224) 50%, rgb(234, 214, 255) 100%);
  background: linear-gradient(290deg, rgb(255, 181, 43) 0%, rgb(166, 255, 224) 50%, rgb(234, 214, 255) 100%);
}
@media (max-width: 1200px) {
  .header_wrap {
    width: calc(100% - 140px);
  }
}
@media (max-width: 767px) {
  .header_wrap {
    width: calc(100% - 65px);
    padding-top: 5px;
    background: -webkit-linear-gradient(170deg, rgb(255, 181, 43) 0%, rgb(166, 255, 224) 60%, rgb(234, 214, 255) 100%);
    background: linear-gradient(280deg, rgb(255, 181, 43) 0%, rgb(166, 255, 224) 60%, rgb(234, 214, 255) 100%);
  }
}
.header_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  min-height: 130px;
  padding: 28px 52px 29px 50px;
  border-radius: 0 40px 0 0;
  background: #fff;
}
@media (max-width: 1700px) {
  .header_inner {
    padding: 28px 32px 29px 40px;
  }
}
@media (max-width: 1600px) {
  .header_inner {
    padding: 28px 27px 29px 40px;
  }
}
@media (max-width: 1200px) {
  .header_inner {
    padding: 28px 20px 29px 40px;
  }
}
@media (max-width: 767px) {
  .header_inner {
    min-height: 60px;
    padding: 5px 11px 5px 15px;
    border-radius: 0 20px 0 0;
  }
}
.header_inner .logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .header_inner .logo {
    padding-top: 8px;
  }
}
.header_inner .logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 395px;
}
@media (max-width: 1700px) {
  .header_inner .logo a {
    max-width: 350px;
  }
}
@media (max-width: 1600px) {
  .header_inner .logo a {
    max-width: 300px;
  }
}
@media (max-width: 1400px) {
  .header_inner .logo a {
    max-width: 250px;
  }
}
@media (max-width: 1200px) {
  .header_inner .logo a {
    max-width: 200px;
  }
}
@media (max-width: 1000px) {
  .header_inner .logo a {
    max-width: 180px;
  }
}
@media (max-width: 767px) {
  .header_inner .logo a {
    max-width: 165px;
  }
}
.header_menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
}
@media (max-width: 1200px) {
  .header_menu {
    gap: 15px;
  }
}
.header_menu_nav1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  padding-top: 2px;
}
@media (max-width: 1700px) {
  .header_menu_nav1 {
    gap: 40px;
  }
}
@media (max-width: 1600px) {
  .header_menu_nav1 {
    gap: 30px;
  }
}
@media (max-width: 1400px) {
  .header_menu_nav1 {
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .header_menu_nav1 {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .header_menu_nav1 {
    display: none;
  }
}
.header_menu_nav1 li a {
  font-size: 2.1rem;
  font-weight: 500;
}
@media (max-width: 1600px) {
  .header_menu_nav1 li a {
    font-size: 1.8rem;
  }
}
@media (max-width: 1400px) {
  .header_menu_nav1 li a {
    font-size: 1.4rem;
  }
}
@media (max-width: 1100px) {
  .header_menu_nav1 li a {
    font-size: 1.2rem;
  }
}
@media (max-width: 1000px) {
  .header_menu_nav1 li a {
    font-size: 1rem;
  }
}
.header_menu_nav2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 22px;
}
@media (max-width: 1600px) {
  .header_menu_nav2 {
    gap: 8px;
  }
}
.header_menu_nav2 a, .header_menu_nav2 button {
  display: block;
  position: relative;
  top: 1px;
  padding-top: 52px;
  color: #ea7100;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 1600px) {
  .header_menu_nav2 a, .header_menu_nav2 button {
    font-size: 1.8rem;
  }
}
@media (max-width: 1400px) {
  .header_menu_nav2 a, .header_menu_nav2 button {
    padding-top: 38px;
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .header_menu_nav2 a, .header_menu_nav2 button {
    padding-top: 22px;
    font-size: 1rem;
    text-align: center;
  }
}
.header_menu_nav2 a::before, .header_menu_nav2 button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.header_menu_nav2 a.calendar::before, .header_menu_nav2 button.calendar::before {
  width: 38px;
  height: 38px;
  background-image: url(../img/common/icon_calendar.svg);
  background-size: cover;
}
@media (max-width: 1400px) {
  .header_menu_nav2 a.calendar::before, .header_menu_nav2 button.calendar::before {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 767px) {
  .header_menu_nav2 a.calendar::before, .header_menu_nav2 button.calendar::before {
    width: 18px;
    height: 18px;
  }
}
.header_menu_nav2 a.admission::before, .header_menu_nav2 button.admission::before {
  width: 20px;
  height: 18px;
  background-image: url(../img/common/icon_admission.svg);
  background-size: cover;
}
.header_menu_nav2 a.search, .header_menu_nav2 button.search {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 58px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1400px) {
  .header_menu_nav2 a.search, .header_menu_nav2 button.search {
    width: 45px;
  }
}
@media (max-width: 767px) {
  .header_menu_nav2 a.search, .header_menu_nav2 button.search {
    top: -1px;
    width: 32px;
    padding-top: 25px;
  }
}
@media (min-width: 768px) {
  .header_menu_nav2 a.search:hover, .header_menu_nav2 button.search:hover {
    opacity: 0.7;
  }
}
.header_menu_nav2 a.search::before, .header_menu_nav2 button.search::before {
  width: 41px;
  height: 41px;
  background-image: url(../img/common/icon_search.svg);
  background-size: cover;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 1;
}
@media (max-width: 1400px) {
  .header_menu_nav2 a.search::before, .header_menu_nav2 button.search::before {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .header_menu_nav2 a.search::before, .header_menu_nav2 button.search::before {
    width: 20px;
    height: 20px;
  }
}
.header_menu_nav2 a.search.active::before, .header_menu_nav2 button.search.active::before {
  opacity: 0;
}
.header_menu_nav2 a.search.active .search_line, .header_menu_nav2 button.search.active .search_line {
  opacity: 1;
}
.header_menu_nav2 a.search.active .search_text, .header_menu_nav2 button.search.active .search_text {
  content: "CLOSE";
}
.header_menu_nav2 a.search .search_line, .header_menu_nav2 button.search .search_line {
  display: block;
  position: absolute;
  top: -27px;
  bottom: 0;
  left: 50%;
  width: 50px;
  height: 31px;
  margin: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
}
@media (max-width: 1400px) {
  .header_menu_nav2 a.search .search_line, .header_menu_nav2 button.search .search_line {
    top: -21px;
    width: 35px;
    height: 23px;
  }
}
@media (max-width: 767px) {
  .header_menu_nav2 a.search .search_line, .header_menu_nav2 button.search .search_line {
    top: -18px;
    width: 30px;
    height: 13px;
  }
}
.header_menu_nav2 a.search .search_line::before, .header_menu_nav2 a.search .search_line::after, .header_menu_nav2 button.search .search_line::before, .header_menu_nav2 button.search .search_line::after {
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  width: 100%;
  border-radius: 2px;
  background-color: #ea7100;
  -webkit-transition: inherit;
  transition: inherit;
}
@media (max-width: 1400px) {
  .header_menu_nav2 a.search .search_line::before, .header_menu_nav2 a.search .search_line::after, .header_menu_nav2 button.search .search_line::before, .header_menu_nav2 button.search .search_line::after {
    height: 2px;
  }
}
@media (max-width: 767px) {
  .header_menu_nav2 a.search .search_line::before, .header_menu_nav2 a.search .search_line::after, .header_menu_nav2 button.search .search_line::before, .header_menu_nav2 button.search .search_line::after {
    height: 1px;
  }
}
.header_menu_nav2 a.search .search_line::before, .header_menu_nav2 button.search .search_line::before {
  top: 0;
  -webkit-transform: rotate(30deg) translate(7px, 12px);
          transform: rotate(30deg) translate(7px, 12px);
}
@media (max-width: 1400px) {
  .header_menu_nav2 a.search .search_line::before, .header_menu_nav2 button.search .search_line::before {
    -webkit-transform: rotate(30deg) translate(5px, 9px);
            transform: rotate(30deg) translate(5px, 9px);
  }
}
@media (max-width: 767px) {
  .header_menu_nav2 a.search .search_line::before, .header_menu_nav2 button.search .search_line::before {
    -webkit-transform: rotate(30deg) translate(3px, 5px);
            transform: rotate(30deg) translate(3px, 5px);
  }
}
.header_menu_nav2 a.search .search_line::after, .header_menu_nav2 button.search .search_line::after {
  bottom: 0;
  -webkit-transform: rotate(-30deg) translate(7px, -12px);
          transform: rotate(-30deg) translate(7px, -12px);
}
@media (max-width: 1400px) {
  .header_menu_nav2 a.search .search_line::after, .header_menu_nav2 button.search .search_line::after {
    -webkit-transform: rotate(-30deg) translate(5px, -9px);
            transform: rotate(-30deg) translate(5px, -9px);
  }
}
@media (max-width: 767px) {
  .header_menu_nav2 a.search .search_line::after, .header_menu_nav2 button.search .search_line::after {
    -webkit-transform: rotate(-30deg) translate(3px, -5px);
            transform: rotate(-30deg) translate(3px, -5px);
  }
}
.header .hamburger {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 160px;
  margin-left: auto;
  border: none;
  border-radius: 0 0 30px 50px;
  background: #ffb52b;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1200px) {
  .header .hamburger {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 767px) {
  .header .hamburger {
    width: 65px;
    height: 65px;
    border-radius: 0 0 10px 20px;
  }
}
@media (min-width: 768px) {
  .header .hamburger:hover {
    opacity: 0.7;
  }
}
.header .hamburger.active .hamburger_line::before {
  -webkit-transform: rotate(30deg) translate(7px, 12px);
          transform: rotate(30deg) translate(7px, 12px);
}
@media (max-width: 767px) {
  .header .hamburger.active .hamburger_line::before {
    -webkit-transform: rotate(30deg) translate(3px, 5px);
            transform: rotate(30deg) translate(3px, 5px);
  }
}
.header .hamburger.active .hamburger_line::after {
  -webkit-transform: rotate(-30deg) translate(7px, -12px);
          transform: rotate(-30deg) translate(7px, -12px);
}
@media (max-width: 767px) {
  .header .hamburger.active .hamburger_line::after {
    -webkit-transform: rotate(-30deg) translate(3px, -5px);
            transform: rotate(-30deg) translate(3px, -5px);
  }
}
.header .hamburger.active .hamburger_text {
  content: "CLOSE";
}
.header .hamburger_line {
  display: block;
  position: absolute;
  top: -35px;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 31px;
  margin: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 767px) {
  .header .hamburger_line {
    top: -18px;
    width: 35px;
    height: 13px;
  }
}
.header .hamburger_line::before, .header .hamburger_line::after {
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  width: 100%;
  border-radius: 2px;
  background-color: #fff;
  -webkit-transition: inherit;
  transition: inherit;
}
@media (max-width: 767px) {
  .header .hamburger_line::before, .header .hamburger_line::after {
    height: 1px;
  }
}
.header .hamburger_line::before {
  top: 0;
}
.header .hamburger_line::after {
  bottom: 0;
}
.header .hamburger_text {
  display: block;
  padding-top: 58px;
  color: #fff;
  font-size: 2.4rem;
  font-family: "Roboto", serif;
}
@media (max-width: 1200px) {
  .header .hamburger_text {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .header .hamburger_text {
    padding-top: 25px;
    font-size: 1.2rem;
  }
}

.gsc-search-box {
  position: relative;
}
.gsc-search-box td.gsc-input {
  width: 100%;
  height: 100px;
  padding: 10px 39px;
  border: 2px solid #ea7100;
  border-radius: 50px;
  font-size: 2.1rem;
}
.gsc-search-box td.gsc-input .gsc-input {
  font-size: 2.1rem;
}
@media (max-width: 767px) {
  .gsc-search-box td.gsc-input .gsc-input {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .gsc-search-box td.gsc-input {
    height: 50px;
    padding: 5px 24px;
    border-width: 1px;
    font-size: 1.6rem;
  }
}
.gsc-search-box td.gsc-input::-webkit-input-placeholder {
  color: #c2c2c2;
}
.gsc-search-box td.gsc-input::-moz-placeholder {
  color: #c2c2c2;
}
.gsc-search-box td.gsc-input:-ms-input-placeholder {
  color: #c2c2c2;
}
.gsc-search-box td.gsc-input::-ms-input-placeholder {
  color: #c2c2c2;
}
.gsc-search-box td.gsc-input::placeholder {
  color: #c2c2c2;
}
@media (max-width: 767px) {
  .gsc-search-box.gsc-search-box-tools .gsc-search-box .gsc-input {
    padding: 5px 24px;
  }
}
.gsc-search-box .gsc-input-box {
  border: none;
  background: none;
}
.gsc-search-box .gsib_a {
  padding: 0;
  width: calc(100% - 90px);
}
@media (max-width: 767px) {
  .gsc-search-box .gsib_a {
    width: calc(100% - 50px);
  }
}
.gsc-search-box .gsib_b {
  opacity: 0;
  width: 90px;
}
@media (max-width: 767px) {
  .gsc-search-box .gsib_b {
    width: 50px;
  }
}
.gsc-search-box .gsc-search-button button {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  width: 80px;
  height: 80px;
  background: url(../img/common/search_btn.svg);
  background-size: cover;
  border-radius: 0;
  padding: 0;
  border: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.gsc-search-box .gsc-search-button button:hover {
  border-color: transparent;
  background-color: transparent;
}
@media (min-width: 768px) {
  .gsc-search-box .gsc-search-button button:hover {
    opacity: 0.7;
  }
}
.gsc-search-box .gsc-search-button button svg {
  display: none;
}
@media (max-width: 767px) {
  .gsc-search-box .gsc-search-button button {
    right: 6px;
    width: 40px;
    height: 40px;
  }
}

.quick_search {
  position: fixed;
  top: 140px;
  left: 0;
  width: 100%;
  max-height: 0;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  -webkit-transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
  transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .quick_search {
    top: 60px;
    height: 95px;
  }
}
.quick_search.open {
  max-height: 100%;
  opacity: 1;
  pointer-events: all;
}
.quick_search .inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px 40px;
}
@media (max-width: 767px) {
  .quick_search .inner {
    padding: 15px 20px 20px;
  }
}

.hamburger_menu {
  position: fixed;
  top: 140px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 140px);
  max-height: 0;
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  -webkit-transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
  transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .hamburger_menu {
    top: 60px;
    height: calc(100dvh - 60px);
  }
}
.hamburger_menu.open {
  max-height: 100%;
  opacity: 1;
  pointer-events: all;
}
.hamburger_menu .inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 20px 40px;
}
@media (max-width: 767px) {
  .hamburger_menu .inner {
    padding: 15px 20px 50px;
    background-image: url(../img/common/bg_hamburger.png);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
  }
}
.hamburger_menu_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 49px;
}
@media (max-width: 1100px) {
  .hamburger_menu_wrap {
    display: block;
  }
}
@media (max-width: 767px) {
  .hamburger_menu_wrap {
    margin-top: 24px;
  }
}
.hamburger_menu_box {
  width: 100%;
}
@media (max-width: 1100px) {
  .hamburger_menu_box {
    margin: 0 auto;
  }
}
.hamburger_menu_box:first-child {
  width: 48.45%;
}
@media (max-width: 1100px) {
  .hamburger_menu_box:first-child {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .hamburger_menu_box:first-child {
    max-width: 620px;
  }
}
.hamburger_menu_box:last-child {
  width: 46.875%;
  padding-top: 1px;
}
@media (max-width: 1100px) {
  .hamburger_menu_box:last-child {
    width: 100%;
    margin-top: 50px;
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .hamburger_menu_box:last-child {
    min-width: 480px;
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .hamburger_menu_box:last-child {
    margin-top: 25px;
  }
}
.hamburger_menu_list {
  border-top: 1px solid #cbcbcb;
  border-bottom: 1px solid #cbcbcb;
}
.hamburger_menu_item {
  position: relative;
}
@media (max-width: 767px) {
  .hamburger_menu_item.c-accordion > a {
    width: calc(100% - 25px);
  }
}
.hamburger_menu_item.c-accordion > a::after {
  content: none;
}
.hamburger_menu_item > a {
  display: block;
  padding: 27px 0;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .hamburger_menu_item > a {
    padding: 18px 0;
    font-size: 1.5rem;
  }
}
.hamburger_menu_item > a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 20px;
  margin: auto;
  background-image: url(../img/common/icon_arrow_orange.svg);
  background-size: cover;
}
@media (max-width: 767px) {
  .hamburger_menu_item > a::after {
    width: 8px;
    height: 13px;
  }
}
.hamburger_menu_item > a.c-blank::after {
  width: 27px;
  height: 27px;
}
@media (max-width: 767px) {
  .hamburger_menu_item > a.c-blank::after {
    width: 13px;
    height: 13px;
  }
}
.hamburger_menu_item + .hamburger_menu_item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: url(../img/common/bg_line.svg);
  background-size: auto;
}
@media (max-width: 767px) {
  .hamburger_menu_item + .hamburger_menu_item::before {
    height: 1px;
    background-repeat: repeat-x;
    background-size: 313px auto;
  }
}
.hamburger_menu_item .c-accordion_btn {
  top: 24px;
}
@media (max-width: 767px) {
  .hamburger_menu_item .c-accordion_btn {
    top: 17px;
  }
}
.hamburger_menu_item .c-accordion_content {
  padding-bottom: 39px;
}
@media (max-width: 767px) {
  .hamburger_menu_item .c-accordion_content {
    padding-top: 4px;
    padding-bottom: 20px;
  }
}
.hamburger_menu_sub_nav_item a {
  position: relative;
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .hamburger_menu_sub_nav_item a {
    font-size: 1.4rem;
  }
}
.hamburger_menu_sub_nav_item a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 20px;
  margin: auto;
  background-image: url(../img/common/icon_arrow_orange.svg);
  background-size: cover;
}
@media (max-width: 767px) {
  .hamburger_menu_sub_nav_item a::after {
    width: 6px;
    height: 10px;
  }
}
.hamburger_menu_sub_nav_item + .hamburger_menu_sub_nav_item {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .hamburger_menu_sub_nav_item + .hamburger_menu_sub_nav_item {
    margin-top: 20px;
  }
}
.hamburger_menu_sub_nav_item.blank a::after {
  width: 20px;
  height: 20px;
  background-image: url(../img/common/icon_blank_orange.svg);
  background-size: cover;
}
@media (max-width: 767px) {
  .hamburger_menu_sub_nav_item.blank a::after {
    width: 13px;
    height: 13px;
  }
}
.hamburger_menu_sns {
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 767px) {
  .hamburger_menu_sns {
    margin-top: 25px;
  }
}
.hamburger_menu_sns p {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .hamburger_menu_sns p {
    font-size: 1.6rem;
  }
}
.hamburger_menu_sns_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .hamburger_menu_sns_list {
    gap: 20px;
    margin-top: 15px;
  }
}
.hamburger_menu_sns_list a {
  display: block;
  width: 60px;
  height: 60px;
}
@media (max-width: 767px) {
  .hamburger_menu_sns_list a {
    width: 40px;
    height: 40px;
  }
}
.hamburger_menu_sns_list a img {
  width: 100%;
}
.hamburger_menu_highlight_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  border-radius: 15px;
  background: rgb(234, 214, 255);
  background: -webkit-linear-gradient(143deg, rgb(215, 225, 246) 0%, rgb(166, 255, 224) 42%, rgb(255, 181, 43) 85%);
  background: linear-gradient(-53deg, rgb(215, 225, 246) 0%, rgb(166, 255, 224) 42%, rgb(255, 181, 43) 85%);
  overflow: hidden;
}
@media (max-width: 767px) {
  .hamburger_menu_highlight_list {
    border-radius: 8px;
  }
}
.hamburger_menu_highlight_item {
  width: 50%;
}
.hamburger_menu_highlight_item:nth-child(even) {
  border-left: 1px solid #fff;
}
.hamburger_menu_highlight_item:nth-child(n+3) {
  border-top: 1px solid #fff;
}
.hamburger_menu_highlight_item:first-child a::before {
  left: 37px;
  width: 26px;
  height: 40px;
  background-image: url(../img/common/icon_train.svg);
  background-size: cover;
}
@media (max-width: 1400px) {
  .hamburger_menu_highlight_item:first-child a::before {
    left: 29px;
  }
}
@media (max-width: 767px) {
  .hamburger_menu_highlight_item:first-child a::before {
    left: 19px;
    width: 13px;
    height: 20px;
  }
}
.hamburger_menu_highlight_item:nth-child(2) a::before {
  left: 28px;
  width: 40px;
  height: 40px;
  background-image: url(../img/common/icon_speech_bubble.svg);
  background-size: cover;
}
@media (max-width: 1400px) {
  .hamburger_menu_highlight_item:nth-child(2) a::before {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .hamburger_menu_highlight_item:nth-child(2) a::before {
    left: 14px;
    width: 20px;
    height: 20px;
  }
}
.hamburger_menu_highlight_item:nth-child(3) a::before {
  left: 30px;
  width: 40px;
  height: 29px;
  background-image: url(../img/common/icon_book.svg);
  background-size: cover;
}
@media (max-width: 1400px) {
  .hamburger_menu_highlight_item:nth-child(3) a::before {
    left: 22px;
  }
}
@media (max-width: 767px) {
  .hamburger_menu_highlight_item:nth-child(3) a::before {
    left: 15px;
    width: 20px;
    height: 14px;
  }
}
.hamburger_menu_highlight_item:last-child a::before {
  left: 32px;
  width: 30px;
  height: 40px;
  background-image: url(../img/common/icon_pamphlet.svg);
  background-size: cover;
}
@media (max-width: 1400px) {
  .hamburger_menu_highlight_item:last-child a::before {
    left: 24px;
  }
}
@media (max-width: 767px) {
  .hamburger_menu_highlight_item:last-child a::before {
    left: 17px;
    width: 15px;
    height: 20px;
  }
}
.hamburger_menu_highlight_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-height: 90px;
  padding: 10px 50px 10px 86px;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.1;
}
@media (max-width: 1400px) {
  .hamburger_menu_highlight_item a {
    padding: 10px 40px 10px 70px;
  }
}
@media (max-width: 767px) {
  .hamburger_menu_highlight_item a {
    min-height: 50px;
    padding: 6px 30px 5px 43px;
    font-size: 1.4rem;
  }
}
.hamburger_menu_highlight_item a::before, .hamburger_menu_highlight_item a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.hamburger_menu_highlight_item a::after {
  right: 41px;
  width: 12px;
  height: 20px;
  margin: auto;
  background-image: url(../img/common/icon_arrow.svg);
  background-size: cover;
}
@media (max-width: 1400px) {
  .hamburger_menu_highlight_item a::after {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .hamburger_menu_highlight_item a::after {
    right: 15px;
    width: 6px;
    height: 10px;
  }
}
.hamburger_menu_highlight_item a.c-blank::after {
  right: 40px;
  width: 18px;
  height: 18px;
}
@media (max-width: 1400px) {
  .hamburger_menu_highlight_item a.c-blank::after {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .hamburger_menu_highlight_item a.c-blank::after {
    right: 15px;
    width: 9px;
    height: 9px;
  }
}
.hamburger_menu_banner_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px 0;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hamburger_menu_banner_list {
    gap: 15px 0;
    margin-top: 25px;
  }
}
.hamburger_menu_banner_item {
  width: 48.333%;
}
@media (min-width: 768px) {
  .hamburger_menu_banner_item {
    max-width: 290px;
  }
}
@media (max-width: 767px) {
  .hamburger_menu_banner_item {
    width: 47.765%;
  }
}

/*----------------------------------

footer

----------------------------------*/
.footer {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .footer {
    margin-bottom: 46px;
  }
}
.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 69.89583vw;
  background-image: url(../img/common/footer_bg.png);
  background-size: cover;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1920px) {
  .footer::after {
    height: 1342px;
    background-position: center;
  }
}
@media (max-width: 767px) {
  .footer::after {
    height: 121.46vw;
    background-image: url(../img/common/footer_bg_sp.png);
  }
}
.footer .inner {
  position: relative;
  width: 100%;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .footer .inner {
    padding: 0 20px;
  }
}
.footer_sns {
  margin-bottom: 235px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer_sns {
    margin-bottom: 66px;
  }
}
.footer_sns p {
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .footer_sns p {
    font-size: 1.5rem;
  }
}
.footer_sns_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 37px;
}
@media (max-width: 767px) {
  .footer_sns_list {
    gap: 20px;
    margin-top: 13px;
  }
}
.footer_sns_list a {
  display: block;
  width: 79px;
  height: 79px;
}
@media (max-width: 767px) {
  .footer_sns_list a {
    width: 40px;
    height: 40px;
  }
}
.footer_sns_list a img {
  width: 100%;
}
.footer_nav1 {
  border-bottom: 2px solid #fff;
}
@media (max-width: 900px) {
  .footer_nav1 {
    display: none;
  }
}
.footer_nav1 .inner {
  padding-top: 20px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .footer_nav1 .inner {
    padding: 24px 0 10px;
  }
}
.footer_nav1 .footer_nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 116px;
}
@media (max-width: 1400px) {
  .footer_nav1 .footer_nav_list {
    gap: 60px;
  }
}
@media (max-width: 1200px) {
  .footer_nav1 .footer_nav_list {
    gap: 30px;
  }
}
.footer_nav1 .footer_nav_item {
  line-height: 1;
}
.footer_nav1 .footer_nav_item > a {
  position: relative;
  padding-right: 17px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 1100px) {
  .footer_nav1 .footer_nav_item > a {
    font-size: 1.4rem;
  }
}
.footer_nav1 .footer_nav_item > a::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 0;
  width: 7px;
  height: 12px;
  margin: auto;
  background-image: url(../img/common/icon_arrow_orange.svg);
  background-size: cover;
}
.footer_nav1 .footer_sub_nav_list {
  margin-top: 28px;
}
.footer_nav1 .footer_sub_nav_item {
  line-height: 1;
}
.footer_nav1 .footer_sub_nav_item a {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", serif;
  line-height: 1;
}
@media (max-width: 1100px) {
  .footer_nav1 .footer_sub_nav_item a {
    font-size: 1.1rem;
  }
}
.footer_nav1 .footer_sub_nav_item + .footer_sub_nav_item {
  margin-top: 22px;
}
.footer_nav1 .footer_sub_nav_group {
  margin-top: 30px;
}
@media (max-width: 1100px) {
  .footer_nav1 .footer_sub_nav_group {
    margin-top: 33px;
  }
}
.footer_nav1 .footer_sub_nav_hdg {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", serif;
  line-height: 1;
}
@media (max-width: 1100px) {
  .footer_nav1 .footer_sub_nav_hdg {
    font-size: 1.1rem;
  }
}
.footer_nav1 .footer_sub_nav_content .footer_sub_nav_list {
  margin-top: 10px;
}
.footer_nav1 .footer_sub_nav_content .footer_sub_nav_item a {
  font-size: 1.2rem;
}
@media (max-width: 1100px) {
  .footer_nav1 .footer_sub_nav_content .footer_sub_nav_item a {
    font-size: 1rem;
  }
}
.footer_nav1 .footer_sub_nav_content .footer_sub_nav_item + .footer_sub_nav_item {
  margin-top: 6px;
}
.footer_nav1 .footer_sub_nav_content + .footer_sub_nav_hdg {
  margin-top: 24px;
}
.footer_nav2 {
  border-bottom: 2px solid #fff;
}
@media (max-width: 767px) {
  .footer_nav2 {
    border-bottom: 1px solid #fff;
  }
}
.footer_nav2 .inner {
  padding-top: 20px;
  padding-bottom: 22px;
}
@media (max-width: 900px) {
  .footer_nav2 .inner {
    padding: 0;
  }
}
.footer_nav2 .footer_nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 112px;
}
@media (max-width: 1400px) {
  .footer_nav2 .footer_nav_list {
    gap: 60px;
  }
}
@media (max-width: 1200px) {
  .footer_nav2 .footer_nav_list {
    gap: 30px;
  }
}
@media (max-width: 900px) {
  .footer_nav2 .footer_nav_list {
    display: block;
  }
}
.footer_nav2 .footer_nav_list a {
  line-height: 1.45;
}
@media (max-width: 1100px) {
  .footer_nav2 .footer_nav_list a {
    font-size: 1.4rem;
  }
}
@media (max-width: 1000px) {
  .footer_nav2 .footer_nav_list a {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .footer_nav2 .footer_nav_list a {
    font-family: "Noto Sans JP", serif;
  }
}
@media (max-width: 900px) {
  .footer_nav2 .footer_nav_list a {
    display: block;
    position: relative;
    padding: 30px 40px;
    font-size: 1.6rem;
    font-weight: 500;
  }
}
@media (max-width: 767px) {
  .footer_nav2 .footer_nav_list a {
    padding: 15px 20px 16px;
  }
}
@media (max-width: 900px) {
  .footer_nav2 .footer_nav_list a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 7px;
    height: 12px;
    margin: auto;
    background-image: url(../img/common/icon_arrow.svg);
    background-size: cover;
  }
}
@media (max-width: 900px) {
  .footer_nav2 .footer_nav_list a.c-blank::after {
    width: 11px;
    height: 11px;
  }
}
@media (max-width: 900px) {
  .footer_nav2 .footer_nav_item + .footer_nav_item {
    border-top: 1px dotted #444;
  }
}
.footer_copy .inner {
  padding-top: 29px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .footer_copy .inner {
    padding: 14px 0 16px;
  }
}
.footer_copy_text {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
@media (max-width: 767px) {
  .footer_copy_text {
    font-size: 1rem;
  }
}
.footer_bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  padding: 10px 42px 10px 10px;
  background: -webkit-linear-gradient(25deg, rgb(213, 226, 246) 0%, rgb(166, 255, 224) 60%, rgb(211, 218, 133) 100%);
  background: linear-gradient(65deg, rgb(213, 226, 246) 0%, rgb(166, 255, 224) 60%, rgb(211, 218, 133) 100%);
  z-index: 99;
}
.footer_bar_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.footer_bar_item {
  height: 100%;
  /*&:last-child {
    a {
      padding-right: 0;
      &::before {
        width: 13px;
        height: 12px;
        background-image: url(../img/common/icon_school.svg);
        background-size: cover;
      }
    }
  }*/
}
.footer_bar_item:first-child a::before {
  width: 14px;
  height: 10px;
  background-image: url(../img/common/icon_book.svg);
  background-size: cover;
}
.footer_bar_item:nth-child(2) a::before {
  width: 16px;
  height: 10px;
  background-image: url(../img/common/icon_device.svg);
  background-size: cover;
}
.footer_bar_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 100%;
  padding: 5px 14px 5px 28px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}
.footer_bar_item a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  margin: auto;
}
.footer_bar_item + .footer_bar_item {
  border-left: 1px solid #333;
}
.footer_bar_top {
  position: absolute;
  top: 10px;
  right: 12px;
}
.footer_bar_top a {
  display: block;
  position: relative;
  padding-top: 11px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
}
.footer_bar_top a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 6px;
  height: 10px;
  margin: auto;
  background-image: url(../img/common/icon_arrow.svg);
  background-size: cover;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.footer .tab_menu {
  position: fixed;
  top: 180px;
  right: 0;
  z-index: 99;
}
@media (max-width: 767px) {
  .footer .tab_menu {
    display: none;
  }
}
.footer .tab_menu .list > * {
  margin-bottom: 10px;
}
.footer .tab_menu .list .request .button {
  background: -webkit-gradient(linear, left bottom, left top, from(#b0f9e4), to(#d7e1f7));
  background: -webkit-linear-gradient(bottom, #b0f9e4 0%, #d7e1f7 100%);
  background: linear-gradient(0deg, #b0f9e4 0%, #d7e1f7 100%);
}
.footer .tab_menu .list .apply .button {
  background: -webkit-gradient(linear, left bottom, left top, from(#e8c658), to(#adfae2));
  background: -webkit-linear-gradient(bottom, #e8c658 0%, #adfae2 100%);
  background: linear-gradient(0deg, #e8c658 0%, #adfae2 100%);
}
.footer .tab_menu .list .guide .button {
  background: -webkit-gradient(linear, left bottom, left top, from(#ffb52b), to(#ebc552));
  background: -webkit-linear-gradient(bottom, #ffb52b 0%, #ebc552 100%);
  background: linear-gradient(0deg, #ffb52b 0%, #ebc552 100%);
}
.footer .tab_menu .list .button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em;
  -webkit-box-shadow: 2px 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 10px 0 0 10px;
  line-height: 1;
  font-size: 1.7rem;
}
.footer .tab_menu .list .button .icon {
  display: inline-block;
  margin-bottom: 0.5em;
}
.footer .tab_menu .list .button .label {
  display: inline-block;
  width: 1em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.footer .footer_pagetop {
  position: fixed;
  bottom: 13px;
  right: 0;
  width: 80px;
  height: 80px;
}
.footer .l-hero__bnr {
  position: fixed;
  bottom: 4.1666666667vw;
  right: 4.1666666667vw;
  z-index: 101;
  width: 66.6666666667vw;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media (max-width: 767px) {
  .footer .l-hero__bnr {
    bottom: 60px;
  }
}
.footer .l-hero__bnr.is-close {
  display: none;
}
.footer .l-hero__bnr.is-scroll {
  bottom: 20vw;
}
.footer .l-hero__bnr .l-hero__bnr__close {
  width: 3rem;
  height: 3rem;
  border-radius: 1.5rem;
  -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background-color: #fff;
  position: absolute;
  z-index: 100;
  top: -1.2rem;
  right: -1.2rem;
}
.footer .l-hero__bnr .l-hero__bnr__close::before,
.footer .l-hero__bnr .l-hero__bnr__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.2rem;
  width: 0.7rem;
  height: 0.1rem;
  background-color: #333;
  display: block;
}
.footer .l-hero__bnr .l-hero__bnr__close::before {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.footer .l-hero__bnr .l-hero__bnr__close::after {
  -webkit-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}
.footer .l-hero__bnr img {
  vertical-align: bottom;
}
@media screen and (min-width: 750px) {
  .footer .l-hero__bnr {
    bottom: 3rem;
    right: 3rem;
    width: 38rem;
  }
  .footer .l-hero__bnr.is-scroll {
    bottom: 11rem;
  }
  .footer .l-hero__bnr img {
    width: 100%;
    vertical-align: bottom;
  }
}
@media screen and (min-width: 960px) {
  .footer .l-hero__bnr {
    bottom: 3rem;
    right: 3rem;
    width: 38rem;
  }
  .footer .l-hero__bnr.is-scroll {
    bottom: 3rem;
  }
  .footer .l-hero__bnr img {
    width: 100%;
    vertical-align: bottom;
  }
}

.c-accordion {
  position: relative;
}
.c-accordion.open > a {
  color: #ea7100;
}
.c-accordion.open .c-accordion_btn::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.c-accordion_btn {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  background: #ea7100;
}
@media (max-width: 767px) {
  .c-accordion_btn {
    width: 16px;
    height: 16px;
  }
}
.c-accordion_btn::before, .c-accordion_btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 20px;
  height: 2px;
  margin: auto;
  border-radius: 1px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .c-accordion_btn::before, .c-accordion_btn::after {
    width: 10px;
    height: 1px;
  }
}
.c-accordion_btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-accordion_content {
  display: none;
}
.c-accordion_dl {
  position: relative;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .c-accordion_dl {
    margin-top: 35px;
  }
}
.c-accordion_dl dt {
  cursor: pointer;
  font-size: 2.6rem;
  position: relative;
  width: 100%;
  padding: 32px 85px 32px 40px;
  font-weight: 500;
  background-color: #ea7100;
  border-radius: 15px;
  color: #ffffff;
}
.c-accordion_dl dt.open:nth-last-child(2) {
  border-bottom: none;
}
@media (max-width: 767px) {
  .c-accordion_dl dt {
    font-size: 1.9rem;
    padding: 19px 40px 18px 20px;
    border-radius: 7.5px;
  }
}
.c-accordion_dl dt::before, .c-accordion_dl dt::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background-color: #ea7100;
  position: absolute;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
}
@media (max-width: 767px) {
  .c-accordion_dl dt::before, .c-accordion_dl dt::after {
    width: 9px;
    height: 1px;
    right: 25px;
  }
}
.c-accordion_dl dt::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.c-accordion_dl dt span {
  display: block;
  width: 100%;
}
.c-accordion_dl dt span::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
@media (max-width: 767px) {
  .c-accordion_dl dt span::before {
    width: 20px;
    height: 20px;
    right: 20px;
  }
}
.c-accordion_dl dt.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.c-accordion_dl dd {
  display: none;
  padding: 43px 0 47px;
  line-height: 2;
}
@media (max-width: 767px) {
  .c-accordion_dl dd {
    padding: 20px 0 11px;
  }
}
.c-accordion_dl dd .c-text:first-child {
  margin-top: 0;
}
.c-accordion_dl dd p, .c-accordion_dl dd ol, .c-accordion_dl dd ul {
  font-family: "Noto Sans JP", serif;
}
.c-accordion_dl dd + dt {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .c-accordion_dl dd + dt {
    margin-top: 15px;
  }
}
.c-accordion_dl.green dt {
  background-color: #0db183;
}
.c-accordion_dl.green dt::before, .c-accordion_dl.green dt::after {
  background-color: #0db183;
}
.c-accordion_dl.blue dt {
  background-color: #135bae;
}
.c-accordion_dl.blue dt::before, .c-accordion_dl.blue dt::after {
  background-color: #135bae;
}
.c-blank {
  position: relative;
  padding-right: 20px;
}
.c-blank::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  margin: auto;
  background-image: url(../img/common/icon_blank.svg) !important;
  background-size: cover;
}
.c-blank.orange::after {
  background-image: url(../img/common/icon_blank_orange.svg) !important;
  background-size: cover;
}
.c-page {
  position: relative;
  margin: 0;
  padding-top: 160px;
  padding-bottom: 64px;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .c-page {
    margin-bottom: calc(1.0204081633 * (100vw - 375px));
    padding-top: 80px;
    padding-bottom: 32px;
  }
}
.c-section {
  position: relative;
}
.c-section.title + .c-section {
  margin-top: 88px;
}
@media (max-width: 767px) {
  .c-section.title + .c-section {
    margin-top: 44px;
  }
}
@media (max-width: 767px) {
  .c-section.title + .c-section.c-anchor {
    margin-top: 33px;
  }
}
.c-section + .c-section {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .c-section + .c-section {
    margin-top: 60px;
  }
}
.c-inner {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 767px) {
  .c-inner {
    padding: 0 20px;
  }
}
.c-mv_wrap {
  width: 100%;
}
.c-mv_wrap img {
  width: 100%;
}
.c-breadcrumb {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .c-breadcrumb {
    margin-bottom: 44px;
  }
}
.c-breadcrumb .c-inner {
  max-width: 100%;
  padding-top: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ea7100;
  background: #fff;
}
.c-breadcrumb ul {
  line-height: 1.6;
}
.c-breadcrumb ul li {
  position: relative;
  line-height: 1;
  margin-right: 30px;
  display: inline;
}
.c-breadcrumb ul li:first-child a svg {
  vertical-align: sub;
}
@media (max-width: 767px) {
  .c-breadcrumb ul li:first-child a svg {
    width: 16.5px;
    height: 15px;
  }
}
.c-breadcrumb ul li:first-child a span {
  display: none;
}
.c-breadcrumb ul li:first-child::after {
  content: none;
}
.c-breadcrumb ul li:last-child {
  pointer-events: none;
  text-decoration: none;
}
.c-breadcrumb ul li::after {
  content: "";
  position: absolute;
  top: 4px;
  left: -15px;
  width: 5px;
  height: 8px;
  margin: auto;
  background-image: url(../img/common/icon_breadcrumb_arrow.svg);
  background-size: cover;
}
@media (max-width: 767px) {
  .c-breadcrumb ul li::after {
    top: 11px;
  }
}
.c-breadcrumb ul li a span {
  color: #ea7100;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.35;
}
@media (max-width: 767px) {
  .c-breadcrumb ul li a span {
    font-size: 1.4rem;
  }
}
.c-title {
  color: #ea7100;
  font-size: 5.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}
.c-title span {
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .c-title {
    font-size: 2.9rem;
  }
  .c-title span {
    font-size: 2.4rem;
  }
}
.c-title + .c-lead {
  margin-top: 22px;
}
@media (max-width: 767px) {
  .c-title + .c-lead {
    margin-top: 11px;
  }
}
.c-title + .c-link_button {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .c-title + .c-link_button {
    margin-top: 20px;
  }
}
.c-hdg1 {
  position: relative;
  display: block;
  padding-top: 52px;
  padding-bottom: 26px;
  font-size: 4.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3125;
}
@media (max-width: 767px) {
  .c-hdg1 {
    padding-top: 26px;
    padding-bottom: 13px;
    font-size: 2.4rem;
  }
}
.c-hdg1::before, .c-hdg1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.c-hdg1::before {
  top: 0;
  background-size: cover;
}
.c-hdg1::after {
  bottom: 0;
  width: 100%;
  height: 4px;
  background: rgb(255, 181, 43);
  background: -webkit-gradient(linear, right top, left top, from(rgb(215, 225, 246)), color-stop(50%, rgb(166, 255, 224)), to(rgb(255, 181, 43)));
  background: -webkit-linear-gradient(right, rgb(215, 225, 246) 0%, rgb(166, 255, 224) 50%, rgb(255, 181, 43) 100%);
  background: linear-gradient(-90deg, rgb(215, 225, 246) 0%, rgb(166, 255, 224) 50%, rgb(255, 181, 43) 100%);
}
@media (max-width: 767px) {
  .c-hdg1::after {
    height: 2px;
  }
}
.c-hdg1.security::before {
  width: 35px;
  height: 40px;
  background-image: url(../img/common/icon_security.svg);
}
@media (max-width: 767px) {
  .c-hdg1.security::before {
    width: 17.5px;
    height: 20px;
  }
}
.c-hdg1.loudspeaker::before {
  width: 55px;
  height: 40px;
  background-image: url(../img/common/icon_loudspeaker.svg);
}
@media (max-width: 767px) {
  .c-hdg1.loudspeaker::before {
    width: 27.5px;
    height: 20px;
  }
}
.c-hdg1.document::before {
  width: 32px;
  height: 40px;
  background-image: url(../img/common/icon_document.svg);
}
@media (max-width: 767px) {
  .c-hdg1.document::before {
    width: 16px;
    height: 20px;
  }
}
.c-hdg1.document2::before {
  width: 49px;
  height: 41px;
  background-image: url(../img/common/icon_document2.svg);
}
@media (max-width: 767px) {
  .c-hdg1.document2::before {
    width: 24.5px;
    height: 20.5px;
  }
}
.c-hdg1.calendar::before {
  top: -2px;
  width: 44px;
  height: 44px;
  background-image: url(../img/common/icon_calendar.svg);
}
@media (max-width: 767px) {
  .c-hdg1.calendar::before {
    top: -1px;
    width: 22px;
    height: 22px;
  }
}
.c-hdg1.scholarship::before {
  width: 32px;
  height: 44px;
  background-image: url(../img/common/icon_scholarship.svg);
}
@media (max-width: 767px) {
  .c-hdg1.scholarship::before {
    width: 16px;
    height: 22px;
  }
}
.c-hdg1.info::before {
  width: 40px;
  height: 40px;
  background-image: url(../img/common/icon_info.svg);
}
@media (max-width: 767px) {
  .c-hdg1.info::before {
    width: 20px;
    height: 20px;
  }
}
.c-hdg1.check::before {
  width: 47px;
  height: 41px;
  background-image: url(../img/common/icon_check.svg);
}
@media (max-width: 767px) {
  .c-hdg1.check::before {
    width: 23.5px;
    height: 20.5px;
  }
}
.c-hdg1.flag::before {
  width: 40px;
  height: 41px;
  background-image: url(../img/common/icon_flag.svg);
}
@media (max-width: 767px) {
  .c-hdg1.flag::before {
    width: 20px;
    height: 20.5px;
  }
}
.c-hdg1.pin::before {
  width: 33px;
  height: 40px;
  background-image: url(../img/common/icon_pin.svg);
}
@media (max-width: 767px) {
  .c-hdg1.pin::before {
    width: 16.5px;
    height: 20px;
  }
}
.c-hdg1.map::before {
  width: 42px;
  height: 43px;
  background-image: url(../img/common/icon_map.svg);
}
@media (max-width: 767px) {
  .c-hdg1.map::before {
    width: 21px;
    height: 21.5px;
  }
}
.c-hdg1.time::before {
  width: 42px;
  height: 40px;
  background-image: url(../img/common/icon_time.svg);
}
@media (max-width: 767px) {
  .c-hdg1.time::before {
    width: 21px;
    height: 20px;
  }
}
.c-hdg1.graph::before {
  width: 40px;
  height: 40px;
  background-image: url(../img/common/icon_graph.svg);
}
@media (max-width: 767px) {
  .c-hdg1.graph::before {
    width: 20px;
    height: 20px;
  }
}
.c-hdg1.speech_bubble::before {
  width: 41px;
  height: 41px;
  background-image: url(../img/common/icon_speech_bubble2.svg);
}
@media (max-width: 767px) {
  .c-hdg1.speech_bubble::before {
    width: 20.5px;
    height: 20.5px;
  }
}
.c-hdg1.school::before {
  width: 47px;
  height: 43px;
  background-image: url(../img/common/icon_school_orange.svg);
}
@media (max-width: 767px) {
  .c-hdg1.school::before {
    width: 23.5px;
    height: 21.5px;
  }
}
.c-hdg1.cherry_blossoms::before {
  width: 46px;
  height: 44px;
  background-image: url(../img/common/icon_cherry_blossoms.svg);
}
@media (max-width: 767px) {
  .c-hdg1.cherry_blossoms::before {
    width: 23px;
    height: 22px;
  }
}
.c-hdg1.book::before {
  width: 47px;
  height: 41px;
  background-image: url(../img/common/icon_book2.svg);
}
@media (max-width: 767px) {
  .c-hdg1.book::before {
    width: 23.5px;
    height: 20.5px;
  }
}
.c-hdg1.ug_gr1::before {
  width: 40px;
  height: 40px;
  background-image: url(../img/common/icon_ug_gr1.svg);
}
@media (max-width: 767px) {
  .c-hdg1.ug_gr1::before {
    width: 20px;
    height: 20px;
  }
}
.c-hdg1.ug_gr2::before {
  width: 40px;
  height: 40px;
  background-image: url(../img/common/icon_ug_gr2.svg);
}
@media (max-width: 767px) {
  .c-hdg1.ug_gr2::before {
    width: 20px;
    height: 20px;
  }
}
.c-hdg1.ug_gr3::before {
  width: 40px;
  height: 40px;
  background-image: url(../img/common/icon_ug_gr3.svg);
}
@media (max-width: 767px) {
  .c-hdg1.ug_gr3::before {
    width: 20px;
    height: 20px;
  }
}
.c-hdg1.people::before {
  width: 43px;
  height: 40px;
  background-image: url(../img/common/icon_people.svg);
}
@media (max-width: 767px) {
  .c-hdg1.people::before {
    width: 22px;
    height: 20px;
  }
}
.c-hdg1.money::before {
  width: 40px;
  height: 40px;
  background-image: url(../img/common/icon_money.svg);
}
@media (max-width: 767px) {
  .c-hdg1.money::before {
    width: 20px;
    height: 20px;
  }
}
.c-hdg1.admission::before {
  width: 45px;
  height: 40px;
  background-image: url(../img/common/icon_admission.svg);
}
@media (max-width: 767px) {
  .c-hdg1.admission::before {
    width: 23px;
    height: 20px;
  }
}
.c-hdg1.pen::before {
  width: 39px;
  height: 40px;
  background-image: url(../img/common/icon_pen.svg);
}
@media (max-width: 767px) {
  .c-hdg1.pen::before {
    width: 19px;
    height: 20px;
  }
}
.c-hdg1.dorm::before {
  width: 53px;
  height: 40px;
  background-image: url(../img/common/icon_dorm.svg);
}
@media (max-width: 767px) {
  .c-hdg1.dorm::before {
    width: 26px;
    height: 20px;
  }
}
.c-hdg1.parking::before {
  width: 40px;
  height: 40px;
  background-image: url(../img/common/icon_parking.svg);
}
@media (max-width: 767px) {
  .c-hdg1.parking::before {
    width: 20px;
    height: 20px;
  }
}
.c-hdg1.bus::before {
  width: 35px;
  height: 40px;
  background-image: url(../img/common/icon_pen.svg);
}
@media (max-width: 767px) {
  .c-hdg1.bus::before {
    width: 17px;
    height: 20px;
  }
}
.c-hdg1 .deco {
  display: inline-block;
  position: relative;
}
.c-hdg1 .deco::before, .c-hdg1 .deco::after {
  content: "～";
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 8px;
  bottom: 0;
  margin: auto;
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .c-hdg1 .deco::before, .c-hdg1 .deco::after {
    font-size: 2.4rem;
  }
}
.c-hdg1 .deco::before {
  left: -64px;
}
@media (max-width: 767px) {
  .c-hdg1 .deco::before {
    left: -32px;
  }
}
.c-hdg1 .deco::after {
  right: -64px;
}
@media (max-width: 767px) {
  .c-hdg1 .deco::after {
    right: -32px;
  }
}
.c-hdg1 + .c-hdg2 {
  margin-top: 68px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-hdg2 {
    margin-top: 34px;
  }
}
.c-hdg1 + .c-text {
  margin-top: 36px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-text {
    margin-top: 18px;
  }
}
.c-hdg1 + .c-text.type2 {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-text.type2 {
    margin-top: 24px;
  }
}
.c-hdg1 + .c-img {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-img {
    margin-top: 25px;
  }
}
.c-hdg1 + .c-link_button {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-link_button {
    margin-top: 35px;
  }
}
.c-hdg1 + .c-link_button.type3 {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-link_button.type3 {
    margin-top: 30px;
  }
}
.c-hdg1 + .c-list2 {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-list2 {
    margin-top: 25px;
  }
}
.c-hdg1 + .c-list3 {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-list3 {
    margin-top: 35px;
  }
}
.c-hdg1 + .c-list4 {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-list4 {
    margin-top: 35px;
  }
}
.c-hdg1 + .c-map {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-map {
    margin-top: 30px;
  }
}
.c-hdg1 + .c-time_schedule {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-time_schedule {
    margin-top: 35px;
  }
}
.c-hdg1 + .u-flex {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .c-hdg1 + .u-flex {
    margin-top: 35px;
  }
}
.c-hdg1 + .c-table {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-table {
    margin-top: 35px;
  }
}
.c-hdg1 + .js-scroll {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .c-hdg1 + .js-scroll {
    margin-top: 35px;
  }
}
.c-hdg1 + .c-note {
  margin-top: 36px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-note {
    margin-top: 18px;
  }
}
.c-hdg1 + .c-ol {
  margin-top: 36px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-ol {
    margin-top: 18px;
  }
}
.c-hdg1 + .c-movie {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-movie {
    margin-top: 30px;
  }
}
.c-hdg1 + .c-hdg4 {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-hdg4 {
    margin-top: 35px;
  }
}
.c-hdg1 + .c-map_img {
  margin-top: 64px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-map_img {
    margin-top: 30px;
  }
}
.c-hdg1 + .c-ul.pdf_link {
  margin-top: 36px;
}
@media (max-width: 767px) {
  .c-hdg1 + .c-ul.pdf_link {
    margin-top: 18px;
  }
}
.c-hdg2 {
  position: relative;
  display: block;
  padding-bottom: 30px;
  font-size: 3.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .c-hdg2 {
    padding-bottom: 15px;
    font-size: 1.9rem;
  }
}
.c-hdg2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100px;
  height: 5px;
  margin: auto;
  background-color: #ea7100;
  border-radius: 2.5px;
}
@media (max-width: 767px) {
  .c-hdg2::after {
    width: 50px;
    height: 2.5px;
    border-radius: 1.5px;
  }
}
.c-hdg2 + .c-text {
  margin-top: 26px;
}
@media (max-width: 767px) {
  .c-hdg2 + .c-text {
    margin-top: 13px;
  }
}
.c-hdg2 + .c-list {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .c-hdg2 + .c-list {
    margin-top: 24px;
  }
}
.c-hdg2 + .c-link_button {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .c-hdg2 + .c-link_button {
    margin-top: 20px;
  }
}
.c-hdg3 {
  color: #ea7100;
  font-size: 4.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3125;
}
@media (max-width: 767px) {
  .c-hdg3 {
    font-size: 2.4rem;
  }
}
.c-hdg3 .ls {
  letter-spacing: -0.3em;
}
.c-hdg3 + .c-experience_content {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .c-hdg3 + .c-experience_content {
    margin-top: 30px;
  }
}
.c-hdg4 {
  font-size: 3.8rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .c-hdg4 {
    font-size: 1.9rem;
  }
}
.c-hdg4 span {
  display: inline-block;
  position: relative;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .c-hdg4 span {
    padding: 0 20px;
  }
}
.c-hdg4 span::before, .c-hdg4 span::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  border-radius: 10px;
  background: #ea7100;
}
@media (max-width: 767px) {
  .c-hdg4 span::before, .c-hdg4 span::after {
    width: 10px;
    height: 10px;
  }
}
.c-hdg4 span::before {
  left: 0;
}
.c-hdg4 span::after {
  right: 0;
}
.c-hdg4 + .c-hdg2 {
  margin-top: 68px;
}
@media (max-width: 767px) {
  .c-hdg4 + .c-hdg2 {
    margin-top: 34px;
  }
}
.c-hdg4 + .c-text {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .c-hdg4 + .c-text {
    margin-top: 25px;
  }
}
.c-hdg4 + .c-movie {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .c-hdg4 + .c-movie {
    margin-top: 20px;
  }
}
.c-hdg5 {
  font-size: 3.8rem;
  font-weight: 500;
  position: relative;
  padding: 0 0 0 40px;
  margin: 60px 0 15px;
}
@media (max-width: 767px) {
  .c-hdg5 {
    font-size: 1.9rem;
    padding: 0 0 0 20px;
    margin: 20px 0 10px;
  }
}
.c-hdg5.type2 {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .c-hdg5.type2 {
    margin-top: 10px;
  }
}
.c-hdg5::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  border-radius: 10px;
  background: #ea7100;
}
@media (max-width: 767px) {
  .c-hdg5::before {
    width: 10px;
    height: 10px;
  }
}
.c-hdg6 {
  font-size: 3rem;
  font-weight: 500;
  position: relative;
}
@media (max-width: 767px) {
  .c-hdg6 {
    font-size: 1.7rem;
  }
}
.c-lead {
  font-size: 2.6rem;
  font-family: "Noto Sans JP", serif;
  line-height: 2;
}
@media (max-width: 767px) {
  .c-lead {
    font-size: 1.6rem;
  }
}
.c-text {
  font-size: 2.6rem;
  font-family: "Noto Sans JP", serif;
  line-height: 2;
}
@media (max-width: 767px) {
  .c-text {
    font-size: 1.6rem;
  }
}
.c-text.center {
  text-align: center;
}
.c-text.type2 {
  padding-left: 1.1em;
  font-size: 3.2rem;
  text-indent: -1.1em;
}
@media (max-width: 767px) {
  .c-text.type2 {
    font-size: 1.6rem;
  }
}
.c-text.type2::before {
  content: "■";
  color: #ea7100;
  margin-right: 6px;
}
@media (max-width: 767px) {
  .c-text.type2::before {
    margin-right: 3px;
  }
}
.c-text.type2 .em {
  font-weight: 500;
}
.c-text.type2 .ls {
  letter-spacing: -0.3em;
}
.c-text.type2 + .c-text.type3 {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .c-text.type2 + .c-text.type3 {
    margin-top: 6px;
  }
}
.c-text.type3 {
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.c-text.type3 span {
  margin-right: 6px;
}
@media (max-width: 767px) {
  .c-text.type3 span {
    margin-right: 3px;
  }
}
.c-text + .c-note {
  margin-top: 4px;
}
@media (max-width: 767px) {
  .c-text + .c-note {
    margin-top: 2px;
  }
}
.c-text + .c-img {
  margin-top: 34px;
}
@media (max-width: 767px) {
  .c-text + .c-img {
    margin-top: 17px;
  }
}
.c-text + .c-link_button {
  margin-top: 42px;
}
@media (max-width: 767px) {
  .c-text + .c-link_button {
    margin-top: 21px;
  }
}
.c-text + .c-link_button.type2 {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .c-text + .c-link_button.type2 {
    margin-top: 16px;
  }
}
.c-text + .c-list {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .c-text + .c-list {
    margin-top: 16px;
  }
}
.c-text + .c-hdg2 {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .c-text + .c-hdg2 {
    margin-top: 35px;
  }
}
.c-text + .c-ol {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .c-text + .c-ol {
    margin-top: 15px;
  }
}
.c-text + .c-ol.type2 {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .c-text + .c-ol.type2 {
    margin-top: 10px;
  }
}
.c-text + .c-table {
  margin-top: 36px;
}
@media (max-width: 767px) {
  .c-text + .c-table {
    margin-top: 18px;
  }
}
.c-text + .c-hdg6 {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .c-text + .c-hdg6 {
    margin-top: 10px;
  }
}
.c-text + .c-ul {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .c-text + .c-ul {
    margin-top: 10px;
  }
}
.c-ol + .c-text {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .c-ol + .c-text {
    margin-top: 10px;
  }
}
.c-note {
  padding-left: 1em;
  font-size: 2.6rem;
  font-family: "Noto Sans JP", serif;
  line-height: 1.961;
  text-indent: -1em;
}
@media (max-width: 767px) {
  .c-note {
    font-size: 1.3rem;
  }
}
.c-note::before {
  content: "※";
}
.c-note.type2 {
  text-indent: 0;
  padding-left: 0;
}
.c-note.type2::before {
  content: none;
}
.c-note + .c-link_button {
  margin-top: 42px;
}
@media (max-width: 767px) {
  .c-note + .c-link_button {
    margin-top: 21px;
  }
}
.c-img img {
  width: 100%;
  border-radius: 1.5625vw;
}
.c-img + .c-link_button {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .c-img + .c-link_button {
    margin-top: 25px;
  }
}
.c-anchor_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px 1.492%;
}
.c-anchor_item {
  position: relative;
  border-bottom: 4px solid #f5f5f5;
}
@media (max-width: 767px) {
  .c-anchor_item {
    width: 100%;
    /*width: 49.254%;*/
    border-width: 2px;
  }
}
.c-anchor_item::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100px;
  height: 4px;
  background: rgb(255, 181, 43);
  background: -webkit-gradient(linear, right top, left top, from(rgb(215, 225, 246)), color-stop(38%, rgb(166, 255, 224)), to(rgb(255, 181, 43)));
  background: -webkit-linear-gradient(right, rgb(215, 225, 246) 0%, rgb(166, 255, 224) 38%, rgb(255, 181, 43) 100%);
  background: linear-gradient(-90deg, rgb(215, 225, 246) 0%, rgb(166, 255, 224) 38%, rgb(255, 181, 43) 100%);
}
@media (max-width: 767px) {
  .c-anchor_item::after {
    bottom: -2px;
    width: 50px;
    height: 2px;
  }
}
@media (max-width: 767px) {
  .c-anchor_item.wmax {
    width: 100%;
  }
}
.c-anchor_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 96px;
  padding: 5px 0;
  font-size: 2.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.19;
}
@media (max-width: 767px) {
  .c-anchor_item a {
    min-height: 46px;
    font-size: 1.6rem;
  }
}
.c-anchor_text {
  display: inline-block;
  position: relative;
  padding-right: 34px;
}
@media (max-width: 767px) {
  .c-anchor_text {
    padding-right: 17px;
  }
}
.c-anchor_text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 12px;
  margin: auto;
  background-image: url(../img/common/icon_anchor_arrow.svg);
  background-size: cover;
}
@media (max-width: 767px) {
  .c-anchor_text::after {
    width: 10px;
    height: 6px;
  }
}
.c-button_text {
  margin-bottom: 6px;
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .c-button_text {
    margin-bottom: 3px;
    font-size: 1.6rem;
  }
}
.c-button_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  max-width: 670px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .c-button_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px 2.985%;
    max-width: 335px;
  }
}
.c-button_wrap .c-link_button {
  width: 100%;
  max-width: 325px;
}
@media (max-width: 767px) {
  .c-button_wrap .c-link_button {
    max-width: 48.5075%;
  }
}
.c-button_wrap .c-link_button::after {
  right: 30px;
  width: 14px;
  height: 20px;
}
@media (max-width: 767px) {
  .c-button_wrap .c-link_button::after {
    right: 15px;
    width: 7px;
    height: 10px;
  }
}
.c-button_wrap .c-link_button.xls span, .c-button_wrap .c-link_button.pdf span, .c-button_wrap .c-link_button.docx span {
  padding-left: 18px;
}
@media (max-width: 767px) {
  .c-button_wrap .c-link_button.xls span, .c-button_wrap .c-link_button.pdf span, .c-button_wrap .c-link_button.docx span {
    padding-left: 9px;
  }
}
.c-button_wrap .c-link_button.xls span::before, .c-button_wrap .c-link_button.pdf span::before, .c-button_wrap .c-link_button.docx span::before {
  top: 2px;
  left: -22px;
}
@media (max-width: 767px) {
  .c-button_wrap .c-link_button.xls span::before, .c-button_wrap .c-link_button.pdf span::before, .c-button_wrap .c-link_button.docx span::before {
    top: 1px;
    left: -11px;
  }
}
.c-button_wrap .c-link_button + .c-link_button {
  margin-top: 0;
}
.c-button_wrap2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .c-button_wrap2 {
    gap: 15px;
    margin-top: 35px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-button_wrap2 .c-link_button {
  max-width: 100%;
  width: calc(50% - 10px);
  margin: 0;
}
.c-button_wrap2 .c-link_button + .c-link_button {
  margin-top: 0;
}
@media (max-width: 767px) {
  .c-button_wrap2 .c-link_button {
    width: 100%;
    max-width: 300px;
  }
}
.c-button_wrap2 + .c-note {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .c-button_wrap2 + .c-note {
    margin-top: 10px;
  }
}
.c-link_button {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 600px;
  min-height: 80px;
  margin: 0 auto;
  padding: 10px 60px 12px;
  border: 1px solid #ea7100;
  border-radius: 60px;
  background-color: #fff;
  color: #ea7100;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .c-link_button {
    max-width: 300px;
    min-height: 45px;
    padding: 5px 30px 6px;
    border-radius: 30px;
    font-size: 1.6rem;
  }
}
.c-link_button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  width: 15px;
  height: 22px;
  margin: auto;
  background-image: url(../img/common/icon_button_arrow.svg);
  background-size: cover;
}
@media (max-width: 767px) {
  .c-link_button::after {
    right: 20px;
    width: 7px;
    height: 11px;
  }
}
.c-link_button.type2 {
  padding: 10px 20px 12px;
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .c-link_button.type2 {
    min-height: 40px;
    padding: 5px 20px 6px;
    font-size: 1.5rem;
  }
}
.c-link_button.type2::after {
  right: 30px;
  width: 13px;
  height: 18px;
}
@media (max-width: 767px) {
  .c-link_button.type2::after {
    right: 15px;
    width: 6px;
    height: 9px;
  }
}
.c-link_button.type3 {
  max-width: 670px;
  padding: 10px 20px 12px;
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .c-link_button.type3 {
    max-width: 335px;
    min-height: 40px;
    padding: 5px 20px 6px;
    font-size: 1.5rem;
  }
}
.c-link_button.type3::after {
  right: 32px;
}
@media (max-width: 767px) {
  .c-link_button.type3::after {
    right: 16px;
  }
}
.c-link_button.type3 + .c-link_button.type3 {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .c-link_button.type3 + .c-link_button.type3 {
    margin-top: 15px;
  }
}
.c-link_button.type4 {
  max-width: 630px;
}
@media (max-width: 767px) {
  .c-link_button.type4 {
    max-width: 300px;
  }
}
.c-link_button.open::after {
  right: 32px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (max-width: 767px) {
  .c-link_button.open::after {
    right: 16px;
  }
}
.c-link_button.blank::after {
  width: 18px;
  height: 18px;
  background-image: url(../img/common/icon_blank_orange.svg);
  background-size: cover;
}
@media (max-width: 767px) {
  .c-link_button.blank::after {
    width: 10px;
    height: 10px;
  }
}
.c-link_button.blank.blue {
  border: 1px solid #0067B0;
  color: #0067B0;
}
.c-link_button.blank.blue::after {
  width: 18px;
  height: 18px;
  background-image: url(../img/common/icon_blank_blue.svg);
  background-size: cover;
}
@media (max-width: 767px) {
  .c-link_button.blank.blue::after {
    width: 10px;
    height: 10px;
  }
}
.c-link_button.blank.pink {
  border: 1px solid #FF9AB7;
  color: #FF9AB7;
}
.c-link_button.blank.pink::after {
  width: 18px;
  height: 18px;
  background-image: url(../img/common/icon_blank_pink.svg);
  background-size: cover;
}
@media (max-width: 767px) {
  .c-link_button.blank.pink::after {
    width: 10px;
    height: 10px;
  }
}
.c-link_button.xls span, .c-link_button.pdf span, .c-link_button.docx span {
  position: relative;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .c-link_button.xls span, .c-link_button.pdf span, .c-link_button.docx span {
    padding-left: 15px;
  }
}
.c-link_button.xls span::before, .c-link_button.pdf span::before, .c-link_button.docx span::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 0;
  left: -16px;
  width: 32px;
  height: 30px;
  margin: auto;
}
@media (max-width: 767px) {
  .c-link_button.xls span::before, .c-link_button.pdf span::before, .c-link_button.docx span::before {
    left: -8px;
    width: 16px;
    height: 15px;
  }
}
.c-link_button.xls {
  border-color: #0db183;
  color: #0db183;
}
.c-link_button.xls::after {
  background-image: url(../img/common/icon_button_arrow_green.svg);
  background-size: cover;
}
.c-link_button.xls span::before {
  background-image: url(../img/common/icon_xls.svg);
  background-size: cover;
}
.c-link_button.pdf span::before {
  background-image: url(../img/common/icon_pdf.svg);
  background-size: cover;
}
.c-link_button.docx {
  border-color: #135bae;
  color: #135bae;
}
.c-link_button.docx::after {
  background-image: url(../img/common/icon_button_arrow_blue.svg);
  background-size: cover;
}
.c-link_button.docx span::before {
  background-image: url(../img/common/icon_docx.svg);
  background-size: cover;
}
.c-link_button + .c-hdg2 {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .c-link_button + .c-hdg2 {
    margin-top: 40px;
  }
}
.c-link_button + .c-map_text1 {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .c-link_button + .c-map_text1 {
    margin-top: 40px;
  }
}
.c-link_button + .c-link_button {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .c-link_button + .c-link_button {
    margin-top: 15px;
  }
}
.c-link_button + .c-hdg4 {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .c-link_button + .c-hdg4 {
    margin-top: 30px;
  }
}
.c-link_button + .c-text {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .c-link_button + .c-text {
    margin-top: 10px;
  }
}
.c-link_button + .c-hdg4 {
  margin-top: 130px;
}
@media (max-width: 767px) {
  .c-link_button + .c-hdg4 {
    margin-top: 55px;
  }
}
.c-list_item {
  border-bottom: 1px dotted #989898;
}
.c-list_item:first-child {
  border-top: 1px dotted #989898;
}
.c-list_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  min-height: 108px;
  padding: 10px 0;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .c-list_item a {
    min-height: 54px;
    font-size: 1.5rem;
  }
}
.c-list_item a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2px;
  width: 15px;
  height: 22px;
  margin: auto;
  background-image: url(../img/common/icon_button_arrow.svg);
  background-size: cover;
}
@media (max-width: 767px) {
  .c-list_item a::after {
    right: 1px;
    width: 7px;
    height: 11px;
  }
}
.c-list + .c-hdg2 {
  margin-top: 108px;
}
@media (max-width: 767px) {
  .c-list + .c-hdg2 {
    margin-top: 54px;
  }
}
.c-list2_item {
  position: relative;
  border-bottom: 1px dotted #989898;
}
.c-list2_item:first-child a {
  padding-top: 0;
}
.c-list2_item:first-child .c-list2_item_arrow {
  top: -46px;
}
@media (max-width: 767px) {
  .c-list2_item:first-child .c-list2_item_arrow {
    top: -23px;
  }
}
.c-list2_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 2.985%;
  position: relative;
  width: 100%;
  min-height: 108px;
  padding: 46px 0;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .c-list2_item a {
    min-height: 54px;
    padding: 23px 0;
    font-size: 1.5rem;
  }
}
.c-list2_item_img {
  width: 40.597%;
}
.c-list2_item_text {
  width: 56.418%;
  padding-top: 6px;
  padding-right: 44px;
  font-size: 0;
}
@media (max-width: 767px) {
  .c-list2_item_text {
    padding-top: 3px;
    padding-right: 22px;
  }
}
.c-list2_item_text .category {
  display: inline-block;
  padding: 2px 20px 4px;
  border: 1px solid #ea7100;
  border-radius: 16px;
  background: #fff;
  color: #ea7100;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-list2_item_text .category {
    padding: 1px 10px 2px;
    font-size: 1.1rem;
  }
}
.c-list2_item_text .date {
  margin-top: 12px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-list2_item_text .date {
    margin-top: 6px;
    font-size: 1.4rem;
  }
}
.c-list2_item_text .date .year, .c-list2_item_text .date .month, .c-list2_item_text .date .day {
  font-size: 4rem;
}
@media (max-width: 767px) {
  .c-list2_item_text .date .year, .c-list2_item_text .date .month, .c-list2_item_text .date .day {
    font-size: 2rem;
  }
}
.c-list2_item_text .date .month {
  margin-left: 6px;
}
@media (max-width: 767px) {
  .c-list2_item_text .date .month {
    margin-left: 3px;
  }
}
.c-list2_item_text .time {
  margin-top: 8px;
  color: #717171;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-list2_item_text .time {
    margin-top: 4px;
    font-size: 1.4rem;
  }
}
.c-list2_item_text .title {
  width: 100%;
  margin-top: 4px;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .c-list2_item_text .title {
    white-space: nowrap;
    margin-top: 2px;
    font-size: 1.4rem;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.c-list2_item_arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  margin: auto;
  border-radius: 20px;
  background-color: #ea7100;
}
@media (max-width: 767px) {
  .c-list2_item_arrow {
    width: 20px;
    height: 20px;
    border-radius: 10px;
  }
}
.c-list2_item_arrow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -2px;
  width: 12px;
  height: 18px;
  margin: auto;
  background-image: url(../img/common/icon_arrow_white.svg);
  background-size: cover;
}
@media (max-width: 767px) {
  .c-list2_item_arrow::after {
    right: -1px;
    width: 6px;
    height: 8px;
  }
}
.c-list2_item.type1 .c-list2_item_text .category {
  border-color: #ea7100;
  color: #ea7100;
}
.c-list2_item.type1 .c-list2_item_arrow {
  background-color: #ea7100;
}
.c-list2_item.type2 .c-list2_item_text .category {
  border-color: #0db183;
  color: #0db183;
}
.c-list2_item.type2 .c-list2_item_arrow {
  background-color: #0db183;
}
.c-list2 + .c-button_text {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .c-list2 + .c-button_text {
    margin-top: 20px;
  }
}
.c-list2 + .c-link_button {
  margin-top: 58px;
}
@media (max-width: 767px) {
  .c-list2 + .c-link_button {
    margin-top: 29px;
  }
}
.c-list3_item {
  position: relative;
}
.c-list3_item_img img {
  width: 100%;
  border-radius: 1.5625vw;
}
.c-list3_item_text {
  position: relative;
  padding-top: 62px;
}
@media (max-width: 767px) {
  .c-list3_item_text {
    padding-top: 31px;
  }
}
.c-list3_item_text .title {
  display: block;
  position: absolute;
  top: -34px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 600px;
  margin: auto;
  padding: 8px 10px 7px;
  border-radius: 36px;
  background: #f9a51b;
  color: #fff;
  font-size: 3.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .c-list3_item_text .title {
    top: -17px;
    max-width: 300px;
    padding: 4px 10px 3px;
    font-size: 1.9rem;
  }
}
.c-list3_item + .c-list3_item {
  margin-top: 94px;
}
@media (max-width: 767px) {
  .c-list3_item + .c-list3_item {
    margin-top: 47px;
  }
}
.c-list4_item_img img {
  width: 100%;
  border-radius: 1.5625vw;
}
.c-list4_item_text {
  padding-top: 34px;
}
@media (max-width: 767px) {
  .c-list4_item_text {
    padding-top: 17px;
  }
}
.c-list4_item_text .c-text + .c-note {
  margin-top: 8px;
}
@media (max-width: 767px) {
  .c-list4_item_text .c-text + .c-note {
    margin-top: 4px;
  }
}
.c-list4_item_text .u-flex {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 14px;
  margin-top: 28px;
}
@media (max-width: 767px) {
  .c-list4_item_text .u-flex {
    gap: 0 7px;
    margin-top: 14px;
  }
}
.c-list4_item_text .u-flex + .c-text {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .c-list4_item_text .u-flex + .c-text {
    margin-top: 6px;
  }
}
.c-list4_item_text .u-flex + .c-note {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .c-list4_item_text .u-flex + .c-note {
    margin-top: 12px;
  }
}
.c-list4_item_text .title {
  display: block;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 2px dotted #ea7100;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.315;
}
@media (max-width: 767px) {
  .c-list4_item_text .title {
    padding-bottom: 8px;
    border-width: 1px;
    font-size: 1.9rem;
  }
}
.c-list4_item_text .title small {
  display: block;
  white-space: nowrap;
  margin-top: 8px;
  margin-bottom: 6px;
  font-size: 3rem;
  letter-spacing: -0.025em;
}
@media (max-width: 767px) {
  .c-list4_item_text .title small {
    margin-top: 4px;
    margin-bottom: 3px;
    font-size: 1.5rem;
  }
}
.c-list4_item_text .title + .c-text {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .c-list4_item_text .title + .c-text {
    margin-top: 10px;
  }
}
.c-list4_item_text .category {
  display: inline-block;
  min-width: 50px;
  padding: 2px 18px;
  border: 1px solid #ea7100;
  border-radius: 16px;
  background: #fff;
  color: #ea7100;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-list4_item_text .category {
    padding: 1px 9px;
    font-size: 1rem;
  }
}
.c-list4_item_text .category.type1 {
  border-color: #0db183;
  color: #0db183;
}
.c-list4_item_text .category.type2 {
  border-color: #ea7100;
  color: #ea7100;
}
.c-list4_item_text .category.type3 {
  border-color: #a86ac1;
  color: #a86ac1;
}
.c-list4_item_text .category.type4 {
  border-color: #ff6cb8;
  color: #ff6cb8;
}
.c-list4_item_text .category.type5 {
  border-color: #135bae;
  color: #135bae;
}
.c-list4_item_text .time {
  margin-top: -2px;
  color: #717171;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-list4_item_text .time {
    margin-top: -1px;
    font-size: 1.4rem;
  }
}
.c-list4_item + .c-list4_item {
  margin-top: 102px;
}
@media (max-width: 767px) {
  .c-list4_item + .c-list4_item {
    margin-top: 51px;
  }
}
.c-banners {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 40px;
}
@media (max-width: 767px) {
  .c-banners {
    gap: 0 4.478%;
  }
}
.c-banners_item {
  max-width: 400px;
}
@media (max-width: 767px) {
  .c-banners_item {
    width: 47.761%;
  }
}
.c-map {
  -webkit-flex-basis: 60%;
      -ms-flex-preferred-size: 60%;
          flex-basis: 60%;
  overflow: hidden;
  width: 100%;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .c-map {
    border-radius: 15px;
  }
}
.c-map_wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 54%;
}
@media (max-width: 767px) {
  .c-map_wrap {
    padding-top: 75%;
  }
}
.c-map_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-map_text1 {
  position: relative;
  padding-left: 1em;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.394;
  text-indent: -1em;
}
@media (max-width: 767px) {
  .c-map_text1 {
    font-size: 1.9rem;
  }
}
.c-map_text1 span {
  margin-right: 10px;
  color: #ea7100;
}
@media (max-width: 767px) {
  .c-map_text1 span {
    margin-right: 5px;
  }
}
.c-map_text1 + .c-map_text2 {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .c-map_text1 + .c-map_text2 {
    margin-top: 8px;
  }
}
.c-map_text1 + .c-map_text3 {
  margin-top: 18px;
}
@media (max-width: 767px) {
  .c-map_text1 + .c-map_text3 {
    margin-top: 9px;
  }
}
.c-map_text2 {
  padding-left: 1.2em;
  font-size: 3.2rem;
  font-family: "Noto Sans JP", serif;
  line-height: 2;
  text-indent: -1.2em;
}
@media (max-width: 767px) {
  .c-map_text2 {
    font-size: 1.6rem;
  }
}
.c-map_text2::before {
  content: "■";
  color: #ea7100;
}
.c-map_text2 .em {
  font-weight: 500;
}
.c-map_text2 .underline {
  text-decoration: underline;
  text-underline-offset: 12px;
}
@media (max-width: 767px) {
  .c-map_text2 .underline {
    text-underline-offset: 6px;
  }
}
.c-map_text2 .note {
  display: inline-block;
  margin-top: 4px;
  padding-left: 1em;
  font-size: 2.6rem;
  text-indent: -1em;
}
@media (max-width: 767px) {
  .c-map_text2 .note {
    margin-top: 2px;
    font-size: 1.3rem;
  }
}
.c-map_text2 .note::before {
  content: "※";
}
.c-map_text2 small {
  font-size: 2.6rem;
  line-height: 1.576;
}
@media (max-width: 767px) {
  .c-map_text2 small {
    font-size: 1.3rem;
  }
}
.c-map_text2 + .c-map_text2 {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .c-map_text2 + .c-map_text2 {
    margin-top: 12px;
  }
}
.c-map_text2 + .c-link_button {
  margin-top: 44px;
}
@media (max-width: 767px) {
  .c-map_text2 + .c-link_button {
    margin-top: 22px;
  }
}
.c-map_text3 {
  font-size: 3.2rem;
  font-family: "Noto Sans JP", serif;
  line-height: 2;
}
@media (max-width: 767px) {
  .c-map_text3 {
    font-size: 1.6rem;
  }
}
.c-map_text3 + .c-map_text1 {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .c-map_text3 + .c-map_text1 {
    margin-top: 25px;
  }
}
.c-map_text3 + .c-button_wrap {
  margin-top: 42px;
}
@media (max-width: 767px) {
  .c-map_text3 + .c-button_wrap {
    margin-top: 21px;
  }
}
.c-map + .c-map_text1 {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .c-map + .c-map_text1 {
    margin-top: 30px;
  }
}
.c-experience_content + .c-experience_content {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .c-experience_content + .c-experience_content {
    margin-top: 50px;
  }
}
.c-experience_img img {
  width: 100%;
  border-radius: 1.5625vw;
}
.c-experience_img + .c-hdg4 {
  margin-top: 36px;
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  .c-experience_img + .c-hdg4 {
    margin-top: 18px;
    margin-bottom: 1px;
  }
}
.c-experience .c-text.indnt {
  padding-left: 5em;
  text-indent: -5em;
}
.c-experience .c-text + .c-link_button {
  margin-top: 22px;
}
@media (max-width: 767px) {
  .c-experience .c-text + .c-link_button {
    margin-top: 11px;
  }
}
.c-experience .c-note + .c-link_button {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .c-experience .c-note + .c-link_button {
    margin-top: 14px;
  }
}
.c-time_schedule dt {
  position: relative;
  color: #ea7100;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .c-time_schedule dt {
    font-size: 1.9rem;
  }
}
.c-time_schedule dt.type2::after {
  width: calc(100% - 132px);
}
@media (max-width: 767px) {
  .c-time_schedule dt.type2::after {
    width: calc(100% - 66px);
  }
}
.c-time_schedule dt::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 0;
  right: 0;
  width: calc(100% - 224px);
  height: 4px;
  margin: auto;
  background-image: url(../img/common/bg_line2.svg);
  background-size: auto 100%;
  background-repeat: repeat-x;
}
@media (max-width: 767px) {
  .c-time_schedule dt::after {
    top: 4px;
    width: calc(100% - 111px);
    height: 2px;
  }
}
.c-time_schedule dt + dd {
  margin-top: 26px;
}
@media (max-width: 767px) {
  .c-time_schedule dt + dd {
    margin-top: 13px;
  }
}
.c-time_schedule dd {
  font-size: 2.8rem;
  font-family: "Noto Sans JP", serif;
  line-height: 1.714;
}
@media (max-width: 767px) {
  .c-time_schedule dd {
    font-size: 1.4rem;
  }
}
.c-time_schedule dd + dt {
  margin-top: 46px;
}
@media (max-width: 767px) {
  .c-time_schedule dd + dt {
    margin-top: 23px;
  }
}
.c-time_schedule + .c-link_button {
  margin-top: 66px;
}
@media (max-width: 767px) {
  .c-time_schedule + .c-link_button {
    margin-top: 33px;
  }
}
.c-background {
  position: relative;
  z-index: -1;
}
.c-background.type1 {
  height: 308px;
}
@media (max-width: 767px) {
  .c-background.type1 {
    height: 154px;
  }
}
.c-background.type1 .c-background_image {
  -webkit-transform: translateY(-80%);
          transform: translateY(-80%);
}
@media (max-width: 767px) {
  .c-background.type1 .c-background_image {
    -webkit-transform: translateY(11%);
            transform: translateY(11%);
  }
}
.c-background.type2 {
  height: 330px;
}
@media (max-width: 767px) {
  .c-background.type2 {
    height: 165px;
  }
}
.c-background.type2 .c-background_image {
  -webkit-transform: translateY(-95%);
          transform: translateY(-95%);
}
@media (max-width: 767px) {
  .c-background.type2 .c-background_image {
    -webkit-transform: translateY(-23.5%);
            transform: translateY(-23.5%);
  }
}
.c-background_image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: auto;
}
.c-background_image img {
  width: 100%;
}
.c-select_wrapper {
  display: inline-block;
  position: relative;
}
@media (max-width: 767px) {
  .c-select_wrapper {
    width: 100%;
    font-size: 1.1rem;
  }
}
.c-select_wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2em;
  display: block;
  width: 1.2em;
  height: 1.2em;
  border: 2px solid #ea7100;
  border-top: none;
  border-left: none;
  font-size: 0.6em;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.c-select_wrapper .c-select {
  background-color: #ffffff;
  border-radius: 5px;
  border: 1px solid #999999;
  text-align: left;
  position: relative;
  padding: 0.8em 1.5em;
  padding-right: 4em;
}
@media (max-width: 767px) {
  .c-select_wrapper .c-select {
    width: 100%;
  }
}
.c-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #D9D9D9;
}
.c-table th, .c-table td {
  font-size: 2.2rem;
  line-height: 1.5;
  text-align: left;
  border: 1px solid #D9D9D9;
}
@media (max-width: 767px) {
  .c-table th, .c-table td {
    font-size: 1.4rem;
  }
}
.c-table th {
  background: #dce9f5;
  font-weight: 500;
  padding: 34px 3%;
}
.c-table th:first-child {
  width: 35.1%;
}
@media (max-width: 767px) {
  .c-table th:first-child {
    width: 125px;
  }
}
.c-table th:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .c-table th {
    padding: 15px 13px;
  }
}
.c-table td {
  background: #fcfcfc;
  font-family: "Noto Sans JP", serif;
  width: 64.9%;
  padding: 34px 3%;
}
@media (max-width: 767px) {
  .c-table td {
    width: calc(100% - 125px);
    padding: 15px 13px;
  }
}
.c-table td ul li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .c-table td ul li {
    font-size: 1.4rem;
  }
}
.c-table td ul li::before {
  content: "・";
  color: #126DBA;
}
.c-table td p + p {
  margin-top: 1em;
}
.c-table + .c-text, .c-table + .c-note {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .c-table + .c-text, .c-table + .c-note {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .c-table.type2 {
    min-width: 609px;
  }
}
.c-table.type2 tr:first-child th:last-child {
  border-right: none;
}
.c-table.type2 th {
  width: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  padding-left: 1%;
  padding-right: 1%;
}
@media (max-width: 767px) {
  .c-table.type2 th {
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
.c-table.type2 th.th1 {
  width: 27.3%;
}
@media (max-width: 767px) {
  .c-table.type2 th.th1 {
    width: 125px;
  }
}
.c-table.type2 th.th2 {
  width: 8.5%;
}
@media (max-width: 767px) {
  .c-table.type2 th.th2 {
    width: 70px;
  }
}
.c-table.type2 th.th3 {
  width: 7%;
}
@media (max-width: 767px) {
  .c-table.type2 th.th3 {
    width: 45px;
  }
}
.c-table.type2 th.th4 {
  width: 22.6%;
}
@media (max-width: 767px) {
  .c-table.type2 th.th4 {
    width: 125px;
  }
}
.c-table.type2 td {
  text-align: center;
  width: auto;
  border-right: none;
  padding-left: 1%;
  padding-right: 1%;
}
.c-table.type2 td:first-child {
  text-align: left;
}
@media (max-width: 767px) {
  .c-table.type2 td {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.c-table.type2 td.td1 {
  padding-left: 5px;
  padding-right: 5px;
}
.c-table.type2 td:first-child {
  padding-left: 3.1%;
  padding-right: 3.1%;
}
@media (max-width: 767px) {
  .c-table.type2 td:first-child {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-table.type3 th {
  width: 40.6%;
}
@media (max-width: 767px) {
  .c-table.type3 th {
    width: 180px;
  }
}
.c-table.type3 td {
  width: 59.4%;
}
@media (max-width: 767px) {
  .c-table.type3 td {
    width: calc(100% - 180px);
  }
}
.c-table.fixed {
  table-layout: fixed;
}
.c-table.type4 th:not(:first-child),
.c-table.type4 td:not(:first-child) {
  width: auto;
}
.c-table.type4 th,
.c-table.type4 td {
  text-align: center;
}
@media (max-width: 767px) {
  .c-table.type5 {
    min-width: 609px;
  }
}
.c-table.type5 th, .c-table.type5 td {
  width: auto;
  padding-left: 2%;
  padding-right: 2%;
}
.c-table.type5 th {
  text-align: center;
}
@media (max-width: 767px) {
  .c-table.type5 th {
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 767px) {
  .c-table.type5 td {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-table.type5 tr:not(:first-child) th {
  text-align: left;
}
@media (max-width: 767px) {
  .c-table.type5 tr:not(:first-child) th {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-table.type5 td:not(:last-child) {
  text-align: center;
}
.c-table.type5 th:last-child {
  border-right: none;
}
.c-table.type6 th {
  text-align: center;
}
.c-table.type6_2 thead th {
  text-align: center;
}
.c-table.type7 td {
  text-align: center;
}
.c-table.type8 td {
  padding-left: 2%;
  padding-right: 2%;
}
.c-table.type8 td:nth-child(1) {
  width: 7%;
  text-align: center;
}
.c-table.type8 td:nth-child(2) {
  width: 78%;
}
.c-table.type8 td:nth-child(3) {
  width: 15%;
  text-align: center;
}
@media (max-width: 767px) {
  .c-table.type9 {
    min-width: 800px;
  }
}
.c-table.type9 th, .c-table.type9 td {
  width: auto;
  padding-left: 2%;
  padding-right: 2%;
  word-break: break-all;
}
.c-table.type9 th {
  text-align: center;
}
.c-link {
  text-decoration: underline;
  color: #ea7100;
}
.c-link.blank::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 5px;
  background-image: url(../img/common/icon_blank_orange.svg);
  background-size: cover;
}
@media (max-width: 767px) {
  .c-link.blank::after {
    width: 12px;
    height: 12px;
  }
}
.c-maincolor {
  color: #ea7100;
}
.c-ol {
  font-size: 2.6rem;
  font-family: "Noto Sans JP", serif;
}
@media (max-width: 767px) {
  .c-ol {
    font-size: 1.6rem;
  }
}
.c-ol li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-indent: -2em;
  padding-left: 2em;
}
.c-ol li + li {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .c-ol li + li {
    margin-top: 25px;
  }
}
.c-ol li ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-ol li ul li + li {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .c-ol li ul li + li {
    margin-top: 10px;
  }
}
.c-ol.type2 li {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}
.c-ol.type2 li + li {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .c-ol.type2 li + li {
    margin-top: 5px;
  }
}
.c-ol + .c-note {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .c-ol + .c-note {
    margin-top: 20px;
  }
}
.c-ol + .c-hdg2 {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .c-ol + .c-hdg2 {
    margin-top: 35px;
  }
}
.c-ul {
  font-size: 2.6rem;
  font-family: "Noto Sans JP", serif;
}
@media (max-width: 767px) {
  .c-ul {
    font-size: 1.6rem;
  }
}
.c-ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-ul li::before {
  content: "・";
  color: #126DBA;
  vertical-align: top;
}
.c-ul.pdf_link {
  font-family: "Zen Maru Gothic", serif;
}
.c-ul.pdf_link li + li {
  margin-top: 15px;
}
.c-ul.pdf_link li a {
  text-indent: 0;
}
.c-ul.pdf_link li a span {
  position: relative;
  display: inline-block;
}
.c-ul.pdf_link li a span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -40px;
  width: 32px;
  height: 30px;
  margin: auto;
  background-image: url(../img/common/icon_pdf.svg);
  background-size: cover;
}
@media (max-width: 767px) {
  .c-ul.pdf_link li a span::before {
    width: 16px;
    height: 15px;
    right: -20px;
  }
}
.c-ul.pdf_link li::before {
  color: #ea7100;
}
.c-ul.text_link {
  font-family: "Zen Maru Gothic", serif;
}
.c-ul.text_link li + li {
  margin-top: 15px;
}
.c-ul.text_link li a img {
  width: 32px;
  height: 30px;
  margin-left: 10px;
  vertical-align: sub;
}
@media (max-width: 767px) {
  .c-ul.text_link li a img {
    width: 16px;
    height: 15px;
  }
}
.c-ul.text_link li::before {
  color: #ea7100;
}
.c-ul + .c-text {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .c-ul + .c-text {
    margin-top: 10px;
  }
}
.c-indent {
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.c-indent + .c-table {
  margin-top: 36px;
}
@media (max-width: 767px) {
  .c-indent + .c-table {
    margin-top: 18px;
  }
}
.c-indent2 {
  padding-left: 1em;
  text-indent: -1em;
}
.c-iframe {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.c-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-parents_support {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  margin-top: 56px;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .c-parents_support {
    margin-top: 38px;
    margin-bottom: 10px;
    gap: 4%;
  }
}
.c-parents_support_box {
  width: 285px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 15px;
  border: solid 1px #ea7100;
}
@media (max-width: 767px) {
  .c-parents_support_box {
    width: 48%;
  }
}
.c-parents_support_box_hukidashi {
  background-color: #ea7100;
  display: inline-block;
  line-height: 1.45;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 60px;
  position: relative;
  color: #ffffff;
  top: -20px;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .c-parents_support_box_hukidashi {
    font-size: 1.2rem;
  }
}
.c-parents_support_box_hukidashi::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 20px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #ea7100;
}
@media (max-width: 767px) {
  .c-parents_support_box_hukidashi::after {
    width: 12px;
    height: 10px;
    bottom: -10px;
  }
}
.c-parents_support_box_percent {
  font-size: 6.4rem;
  font-weight: bold;
  margin-top: -20px;
}
@media (max-width: 767px) {
  .c-parents_support_box_percent {
    font-size: 3.6rem;
  }
}
.c-parents_support_box_percent span {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .c-parents_support_box_percent span {
    font-size: 1.8rem;
  }
}
.c-parents_box {
  border-radius: 15px;
  padding: 32px 40px;
  border: solid 1px #ea7100;
}
@media (max-width: 767px) {
  .c-parents_box {
    padding: 20px;
  }
}
.c-parents_box + .c-parents_box {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .c-parents_box + .c-parents_box {
    margin-top: 10px;
  }
}
.c-movie {
  width: 100%;
  max-width: 670px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .c-movie {
    width: 100%;
  }
}
.c-movie_box {
  width: 100%;
  padding-bottom: 56.25%;
  position: relative;
}
.c-movie iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.c-movie + .c-link_button {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .c-movie + .c-link_button {
    margin-top: 25px;
  }
}
.c-movie + .c-comment_fukidashi {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .c-movie + .c-comment_fukidashi {
    margin-top: 20px;
  }
}
.c-comment_fukidashi {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
}
@media (max-width: 767px) {
  .c-comment_fukidashi {
    gap: 0;
  }
}
.c-comment_fukidashi img {
  display: block;
  width: 140px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 767px) {
  .c-comment_fukidashi img {
    width: 78px;
    margin-right: -8px;
  }
}
.c-comment_fukidashi .c-comment_text,
.c-comment_fukidashi .c-comment_noswiper {
  width: calc(100% - 170px);
  margin-left: 30px;
  position: relative;
  background-color: rgba(243, 113, 0, 0.08);
  border-radius: 20px;
  padding: 32px 40px 31px;
}
@media (max-width: 767px) {
  .c-comment_fukidashi .c-comment_text,
  .c-comment_fukidashi .c-comment_noswiper {
    width: calc(100% - 85px);
    margin-left: 15px;
    padding: 25px 20px;
  }
}
.c-comment_fukidashi .c-comment_text::before,
.c-comment_fukidashi .c-comment_noswiper::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 34px;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
  background-color: rgba(243, 113, 0, 0.08);
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .c-comment_fukidashi .c-comment_text::before,
  .c-comment_fukidashi .c-comment_noswiper::before {
    width: 15px;
    height: 17px;
    left: -15px;
  }
}
.c-comment_fukidashi .c-comment_text p,
.c-comment_fukidashi .c-comment_noswiper p {
  font-size: 2.2rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .c-comment_fukidashi .c-comment_text p,
  .c-comment_fukidashi .c-comment_noswiper p {
    font-size: 1.4rem;
    border-radius: 10px;
  }
}
.c-comment_fukidashi .c-comment_text p span,
.c-comment_fukidashi .c-comment_noswiper p span {
  display: block;
}
.c-comment_fukidashi .c-comment_text p span + span,
.c-comment_fukidashi .c-comment_noswiper p span + span {
  margin-top: 30px;
}
.c-comment_fukidashi .c-comment_text p {
  opacity: 0 !important;
}
.c-comment_fukidashi .c-comment_text p.swiper-slide-active {
  opacity: 1 !important;
}
.c-comment_fukidashi.rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-comment_fukidashi.rev .c-comment_text,
.c-comment_fukidashi.rev .c-comment_noswiper {
  margin-left: 0;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .c-comment_fukidashi.rev .c-comment_text,
  .c-comment_fukidashi.rev .c-comment_noswiper {
    margin-left: 0;
    margin-right: 15px;
  }
}
.c-comment_fukidashi.rev .c-comment_text::before,
.c-comment_fukidashi.rev .c-comment_noswiper::before {
  left: initial;
  right: -30px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (max-width: 767px) {
  .c-comment_fukidashi.rev .c-comment_text::before,
  .c-comment_fukidashi.rev .c-comment_noswiper::before {
    left: initial;
    right: -15px;
  }
}
@media (max-width: 767px) {
  .c-comment_fukidashi.rev img {
    margin-right: 0;
    margin-left: -8px;
  }
}
.c-comment_fukidashi + .c-link_button {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .c-comment_fukidashi + .c-link_button {
    margin-top: 25px;
  }
}
.c-comment_fukidashi + .c-hdg4 {
  margin-top: 130px;
}
@media (max-width: 767px) {
  .c-comment_fukidashi + .c-hdg4 {
    margin-top: 55px;
  }
}
.c-map_img {
  width: 100%;
  max-width: 670px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .c-map_img {
    max-width: 100%;
  }
}
.c-map_img + .c-link_button {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .c-map_img + .c-link_button {
    margin-top: 25px;
  }
}
.c-swiper {
  margin: 40px auto 0;
  width: 100%;
}
@media (max-width: 767px) {
  .c-swiper {
    margin-top: 20px;
    position: static;
    left: initial;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.c-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  width: 100%;
}
@media (max-width: 767px) {
  .c-swiper .swiper-wrapper {
    width: 100%;
    margin-bottom: 15px;
  }
}
.c-swiper .swiper-wrapper .swiper-slide {
  width: calc((100% - 40px) / 2);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    margin: 0;
    border-radius: 10px;
  }
}
.c-swiper .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
}
.c-swiper .swiper-navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-swiper .swiper-button-next,
.c-swiper .swiper-button-prev {
  position: unset;
  margin: 0 10px;
  margin-top: unset;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-swiper .swiper-button-next,
  .c-swiper .swiper-button-prev {
    margin: 0;
  }
}
.c-swiper .swiper-button-next::after,
.c-swiper .swiper-button-prev::after {
  content: "";
  position: unset;
  margin-top: unset;
  width: 14px;
  height: 14px;
  border: 3px solid #ea7100;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-swiper .swiper-button-next::after,
  .c-swiper .swiper-button-prev::after {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }
}
.c-swiper .swiper-button-prev::after {
  border-top: none;
  border-right: none;
}
.c-swiper .swiper-button-next::after {
  border-bottom: none;
  border-left: none;
}
.c-swiper .swiper-pagination {
  position: unset;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: unset;
  margin: 1px 0;
}
.c-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 1px solid #ea7100;
  opacity: 1;
  margin: 0 20px;
}
@media (max-width: 767px) {
  .c-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 8px;
  }
}
.c-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ea7100;
}
.c-swiper + .c-comment_fukidashi {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .c-swiper + .c-comment_fukidashi {
    margin-top: 20px;
  }
}
.c-swiper.no-swiper .swiper-wrapper {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.c-swiper.no-swiper .swiper-navigation {
  display: none;
}

.u-word {
  display: inline-block;
}
.u-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.u-bold {
  font-weight: bold;
}

.endorse_document {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .endorse_document {
    margin-top: 35px;
  }
}
.endorse_document .c-button_wrap {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .endorse_document .c-button_wrap {
    margin-top: 20px;
  }
}
.endorse_document + .c-note {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .endorse_document + .c-note {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .open_campus_detail .c-breadcrumb .c-inner,
  .counseling .c-breadcrumb .c-inner,
  .calendar .c-breadcrumb .c-inner,
  .topics .c-breadcrumb .c-inner,
  .meeting .c-breadcrumb .c-inner,
  .nomv .c-breadcrumb .c-inner {
    margin-top: -5px;
    padding-top: 0;
  }
}

.topics_categories #pulldown_switch {
  display: none;
}
.topics_categories #pulldown_switch:checked ~ .pulldown .list {
  opacity: 1;
  max-height: 100vh;
  overflow: hidden;
  pointer-events: auto;
}
@media (min-width: 768px) {
  .topics_categories {
    position: relative;
    max-width: 1230px;
    margin: 0 auto;
    margin-bottom: 1em;
    padding-bottom: 2.5em;
  }
}
@media (max-width: 767px) {
  .topics_categories {
    position: relative;
    padding: 0 20px;
    z-index: 11;
  }
}
@media (min-width: 768px) {
  .topics_categories.shrink {
    overflow: hidden;
    max-height: 6em;
    margin-bottom: 52px;
  }
}
@media (min-width: 768px) {
  .topics_categories.shrink .pulldown .more {
    position: absolute;
    bottom: 0;
  }
  .topics_categories.shrink .pulldown .more button::after {
    margin-top: 4px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@media (min-width: 768px) {
  .topics_categories .open, .topics_categories .pulldown_close {
    display: none;
  }
}
@media (max-width: 767px) {
  .topics_categories .pulldown {
    position: relative;
    margin-bottom: 1.5em;
    text-align: right;
    font-size: 1.1rem;
  }
}
@media (max-width: 767px) {
  .topics_categories .pulldown label {
    position: relative;
    padding: 0.8em 1.5em;
    padding-right: 4em;
  }
}
@media (max-width: 767px) {
  .topics_categories .pulldown label::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2em;
    display: block;
    width: 1.2em;
    height: 1.2em;
    border: 2px solid #ea7100;
    font-size: 0.6em;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
}
@media (max-width: 767px) {
  .topics_categories .pulldown label.open {
    display: inline-block;
    min-width: 14em;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #999999;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .topics_categories .pulldown label.open::after {
    border-top: none;
    border-left: none;
  }
}
@media (max-width: 767px) {
  .topics_categories .pulldown label.close {
    display: block;
    margin-bottom: 0.8em;
    border-bottom: 1px solid #D9D9D9;
  }
}
@media (max-width: 767px) {
  .topics_categories .pulldown label.close::after {
    border-bottom: none;
    border-right: none;
  }
}
@media (min-width: 768px) {
  .topics_categories .pulldown .list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.7em;
  }
}
@media (max-width: 767px) {
  .topics_categories .pulldown .list {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    min-width: 14em;
    padding-bottom: 0.8em;
    background-color: #ffffff;
    border-radius: 10px;
    border: 1px solid #999999;
    text-align: left;
    opacity: 0;
    max-height: 0;
    -webkit-transition: opacity 0.5s 0s ease, max-height 1s 0s ease;
    transition: opacity 0.5s 0s ease, max-height 1s 0s ease;
    pointer-events: none;
  }
}
.topics_categories .pulldown .list button,
.topics_categories .pulldown .list a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .topics_categories .pulldown .list button,
  .topics_categories .pulldown .list a {
    display: block;
    padding: 0.3em 1.2em 0.4em;
    border-style: solid;
    border-width: 1px;
    border-radius: 100vmax;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .topics_categories .pulldown .list button,
  .topics_categories .pulldown .list a {
    position: relative;
    display: block;
    padding: 0.5em 1.5em;
    padding-right: 4em;
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .topics_categories .pulldown .list button::after,
  .topics_categories .pulldown .list a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 2em;
    display: block;
    width: 1em;
    height: 1em;
    border: 1px solid #ea7100;
    border-bottom: none;
    border-left: none;
    font-size: 0.6em;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
}
.topics_categories .pulldown .list .active button,
.topics_categories .pulldown .list .active a,
.topics_categories .pulldown .list li:hover button,
.topics_categories .pulldown .list li:hover a {
  color: #ffffff;
}
.topics_categories .pulldown .list .active button.tpc001,
.topics_categories .pulldown .list .active a.tpc001,
.topics_categories .pulldown .list li:hover button.tpc001,
.topics_categories .pulldown .list li:hover a.tpc001 {
  background-color: #ea7100;
  color: #ffffff;
}
.topics_categories .pulldown .list .active button.tpc002,
.topics_categories .pulldown .list .active a.tpc002,
.topics_categories .pulldown .list li:hover button.tpc002,
.topics_categories .pulldown .list li:hover a.tpc002 {
  background-color: #D31F1F;
  color: #ffffff;
}
.topics_categories .pulldown .list .active button.tpc003,
.topics_categories .pulldown .list .active a.tpc003,
.topics_categories .pulldown .list li:hover button.tpc003,
.topics_categories .pulldown .list li:hover a.tpc003 {
  background-color: #FC42BE;
  color: #ffffff;
}
.topics_categories .pulldown .list .active button.tpc004,
.topics_categories .pulldown .list .active a.tpc004,
.topics_categories .pulldown .list li:hover button.tpc004,
.topics_categories .pulldown .list li:hover a.tpc004 {
  background-color: #006096;
  color: #ffffff;
}
.topics_categories .pulldown .list .active button.tpc005,
.topics_categories .pulldown .list .active a.tpc005,
.topics_categories .pulldown .list li:hover button.tpc005,
.topics_categories .pulldown .list li:hover a.tpc005 {
  background-color: #77122B;
  color: #ffffff;
}
.topics_categories .pulldown .list .active button.tpc006,
.topics_categories .pulldown .list .active a.tpc006,
.topics_categories .pulldown .list li:hover button.tpc006,
.topics_categories .pulldown .list li:hover a.tpc006 {
  background-color: #007315;
  color: #ffffff;
}
.topics_categories .pulldown .list .active button.tpc007,
.topics_categories .pulldown .list .active a.tpc007,
.topics_categories .pulldown .list li:hover button.tpc007,
.topics_categories .pulldown .list li:hover a.tpc007 {
  background-color: #FF0004;
  color: #ffffff;
}
.topics_categories .pulldown .list .active button.tpc008,
.topics_categories .pulldown .list .active a.tpc008,
.topics_categories .pulldown .list li:hover button.tpc008,
.topics_categories .pulldown .list li:hover a.tpc008 {
  background-color: #777777;
  color: #ffffff;
}
.topics_categories .pulldown .list .active button.tpc009,
.topics_categories .pulldown .list .active a.tpc009,
.topics_categories .pulldown .list li:hover button.tpc009,
.topics_categories .pulldown .list li:hover a.tpc009 {
  background-color: #7B46AB;
  color: #ffffff;
}
.topics_categories .pulldown .list .active button.tpc010,
.topics_categories .pulldown .list .active a.tpc010,
.topics_categories .pulldown .list li:hover button.tpc010,
.topics_categories .pulldown .list li:hover a.tpc010 {
  background-color: #0094DE;
  color: #ffffff;
}
.topics_categories .pulldown .list .active button.tpc011,
.topics_categories .pulldown .list .active a.tpc011,
.topics_categories .pulldown .list li:hover button.tpc011,
.topics_categories .pulldown .list li:hover a.tpc011 {
  background-color: #BD8A00;
  color: #ffffff;
}
.topics_categories .pulldown .list .active button.tpc012,
.topics_categories .pulldown .list .active a.tpc012,
.topics_categories .pulldown .list li:hover button.tpc012,
.topics_categories .pulldown .list li:hover a.tpc012 {
  background-color: #00A390;
  color: #ffffff;
}
.topics_categories .pulldown .list .active button.tpc013,
.topics_categories .pulldown .list .active a.tpc013,
.topics_categories .pulldown .list li:hover button.tpc013,
.topics_categories .pulldown .list li:hover a.tpc013 {
  background-color: #E300B2;
  color: #ffffff;
}
.topics_categories .pulldown .list .active button.tpc014,
.topics_categories .pulldown .list .active a.tpc014,
.topics_categories .pulldown .list li:hover button.tpc014,
.topics_categories .pulldown .list li:hover a.tpc014 {
  background-color: #1812CE;
  color: #ffffff;
}
.topics_categories .pulldown .list .active button.tpc015,
.topics_categories .pulldown .list .active a.tpc015,
.topics_categories .pulldown .list li:hover button.tpc015,
.topics_categories .pulldown .list li:hover a.tpc015 {
  background-color: #5a7712;
  color: #ffffff;
}
@media (min-width: 768px) {
  .topics_categories .pulldown .c-select_wrapper {
    display: none;
  }
}
@media (min-width: 768px) {
  .topics_categories .pulldown .more {
    margin: 0 auto;
    display: block;
    width: 100%;
    padding-top: 1em;
    padding-bottom: 1em;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, rgb(0, 255, 255)), to(rgba(0, 255, 255, 0)));
    background: -webkit-linear-gradient(bottom, rgb(0, 255, 255) 50%, rgba(0, 255, 255, 0) 100%);
    background: linear-gradient(0deg, rgb(0, 255, 255) 50%, rgba(0, 255, 255, 0) 100%);
    background: -webkit-gradient(linear, left bottom, left top, color-stop(60%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(bottom, rgb(255, 255, 255) 60%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, rgb(255, 255, 255) 60%, rgba(255, 255, 255, 0) 100%);
    text-align: center;
  }
}
@media (max-width: 767px) {
  .topics_categories .pulldown .more {
    display: none;
  }
}
@media (min-width: 768px) {
  .topics_categories .pulldown .more button {
    font-weight: bold;
    font-size: 15px;
    color: #ea7100;
    line-height: 1;
    display: inline-block;
  }
}
@media (min-width: 768px) {
  .topics_categories .pulldown .more button::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 auto;
    margin-top: 10px;
    border: 2px solid #ea7100;
    border-top: none;
    border-left: none;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
}

.tpc001 {
  border-color: #ea7100;
  color: #ea7100;
}

.tpc002 {
  border-color: #D31F1F;
  color: #D31F1F;
}

.tpc003 {
  border-color: #FC42BE;
  color: #FC42BE;
}

.tpc004 {
  border-color: #006096;
  color: #006096;
}

.tpc005 {
  border-color: #77122B;
  color: #77122B;
}

.tpc006 {
  border-color: #007315;
  color: #007315;
}

.tpc007 {
  border-color: #FF0004;
  color: #FF0004;
}

.tpc008 {
  border-color: #777777;
  color: #777777;
}

.tpc009 {
  border-color: #7B46AB;
  color: #7B46AB;
}

.tpc010 {
  border-color: #0094DE;
  color: #0094DE;
}

.tpc011 {
  border-color: #BD8A00;
  color: #BD8A00;
}

.tpc012 {
  border-color: #00A390;
  color: #00A390;
}

.tpc013 {
  border-color: #E300B2;
  color: #E300B2;
}

.tpc014 {
  border-color: #1812CE;
  color: #1812CE;
}

.tpc015 {
  border-color: #5a7712;
  color: #5a7712;
}

.no_event {
  margin: 60px 0;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .no_event {
    margin: 25px 0;
    font-size: 1.6rem;
  }
}

@media (max-width: 767px) {
  .js-scroll {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
.js-scroll + .c-text, .js-scroll + .c-note {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .js-scroll + .c-text, .js-scroll + .c-note {
    margin-top: 10px;
  }
}

.housing-and-access_check {
  background-image: url("../img/housing-and-access/check_bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 81px 0 68px;
}
@media (max-width: 767px) {
  .housing-and-access_check {
    background-image: url("../img/housing-and-access/check_bg_sp.svg");
    padding: 31px 0 35px;
  }
}
.housing-and-access_check_box {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
@media (max-width: 767px) {
  .housing-and-access_check_box {
    display: block;
  }
}
.housing-and-access_check_item {
  max-width: 100%;
  width: 50%;
  margin-top: 20px;
}
@media (max-width: 1290px) {
  .housing-and-access_check_item {
    width: 100%;
    margin-top: 0;
  }
}
@media (max-width: 1290px) {
  .housing-and-access_check_item + .housing-and-access_check_img {
    display: none;
  }
}
@media (min-width: 1291px) {
  .housing-and-access_check_item .housing-and-access_check_img {
    display: none;
  }
}
.housing-and-access_check_text_sub {
  color: #ffffff;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .housing-and-access_check_text_sub {
    font-size: 1.6rem;
    margin-bottom: 2px;
  }
}
.housing-and-access_check_text_main {
  color: #ffffff;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.41666;
  text-align: center;
  margin-bottom: 37px;
}
@media (max-width: 1290px) {
  .housing-and-access_check_text_main {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .housing-and-access_check_text_main {
    font-size: 2.4rem;
    margin-bottom: 13px;
  }
}
.housing-and-access_check_img {
  display: block;
  max-width: 100%;
  width: 55.5%;
}
@media (max-width: 1290px) {
  .housing-and-access_check_img {
    width: 100%;
    max-width: 670px;
    margin: 0 auto 40px;
  }
}
@media (max-width: 767px) {
  .housing-and-access_check_img {
    max-width: 100%;
    margin-bottom: 20px;
  }
}