@charset "UTF-8";
/* Sass Document */
* {
  box-sizing: border-box;
  word-break: break-word; /* 長い単語を強制的に折り返す */
  overflow-wrap: break-word; /* 同様の目的。対応ブラウザが広い */
  line-break: strict; /* 節での自然な改行を優先（日本語では特に有効） */
  white-space: normal; /* 普通の折り返し挙動に */
}

#Whole {
  background: url(../img/top/bg_sand.png);
}
@media screen and (max-width: 767px) {
  #Whole {
    background-size: 186% auto;
  }
}

.js-animate {
  opacity: 0;
  transform: translateY(2rem);
  transition: 0.5s opacity, 0.5s transform;
}
@media screen and (max-width: 767px) {
  .js-animate {
    transform: translateY(4rem);
  }
}
.js-animate.is-show {
  opacity: 1;
  transform: translateY(0);
}

.link {
  background-color: #fff;
  display: block;
  font-size: 1.6rem;
  color: #066ebb;
  line-height: 1.4375;
  position: relative;
  padding: 1.5rem;
  transition: 0.3s color, 0.3s background-color;
}
@media screen and (max-width: 767px) {
  .link {
    font-size: 2.6rem;
    padding: 2.4rem;
  }
}
@media (any-hover: hover) {
  .link:hover {
    background-color: #066ebb;
    color: #fff;
  }
  .link:hover::before {
    background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) calc(100% - 6.2rem), rgb(255, 242, 63) calc(100% - 6.2rem));
  }
  .link:hover::after {
    background-position: 0 100%;
  }
}
.link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  background-image: url(../img/top/icn_arrow.png);
  background-repeat: no-repeat;
  background-size: 100% 200%;
  background-position: 0 0;
}
@media screen and (max-width: 767px) {
  .link::after {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.link::before {
  content: "";
  background: linear-gradient(90deg, rgb(6, 110, 187) 0%, rgb(6, 110, 187) calc(100% - 6.2rem), rgb(255, 242, 63) calc(100% - 6.2rem));
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 0;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .link::before {
    height: 1px;
    background: linear-gradient(90deg, rgb(6, 110, 187) 0%, rgb(6, 110, 187) calc(100% - 10rem), rgb(255, 242, 63) calc(100% - 10rem));
  }
}

.dot_ttl {
  background-image: repeating-linear-gradient(90deg, #066ebb, #066ebb 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 3px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .dot_ttl {
    background-image: repeating-linear-gradient(90deg, #066ebb, #066ebb 1.5px, transparent 1.5px, transparent 3px);
    background-size: 100% 1.5px;
  }
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2;
  max-width: 130rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .header {
    padding-inline: 4rem;
  }
}

.header-logo {
  margin-top: 2.8rem;
  width: 23.2rem;
  opacity: 0;
  transition: 0.5s opacity;
}
.header-logo.is-show {
  opacity: 1;
}

#mv {
  display: grid;
}

.mv_visual {
  grid-row: 1;
  grid-column: 1;
  opacity: 0;
  transition: 0.5s opacity;
}
.mv_visual img {
  width: 100%;
}
.mv_visual.is-show {
  opacity: 1;
}

.mv_txt {
  grid-row: 1;
  grid-column: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 6.8rem;
  max-width: 126rem;
  margin-inline: auto;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .mv_txt {
    padding-inline: 4rem;
    padding-bottom: 6rem;
  }
}
.mv_txt .copy {
  font-size: 5rem;
  margin-top: auto;
  margin-top: 1rem;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .mv_txt .copy {
    font-size: 5.2rem;
    letter-spacing: -0.04em;
    margin-top: 2.3rem;
  }
}
.mv_txt .copy.is-show ._bg {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
.mv_txt .copy.is-show ._bg .txt {
  opacity: 1;
}
.mv_txt .copy ._bg {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  padding: 1.6rem 1.6rem 1.1rem;
  white-space: nowrap;
  -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
          clip-path: polygon(0 0, 0% 0, 0% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .mv_txt .copy ._bg {
    padding: 1.1rem 1rem 0.6rem;
    margin-inline: auto;
  }
}
.mv_txt .copy ._bg + ._bg {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .mv_txt .copy ._bg + ._bg {
    margin-top: 0.8rem;
  }
}
.mv_txt .copy ._bg01 {
  transition: 0.9s 1.4s clip-path;
}
.mv_txt .copy ._bg01 .txt {
  transition: 1s 1.6s opacity;
}
.mv_txt .copy ._bg02 {
  transition: 0.9s 1.5s clip-path;
}
.mv_txt .copy ._bg02 .txt {
  transition: 1s 1.7s opacity;
}
.mv_txt .copy ._bg03 {
  transition: 1.2s 1.6s clip-path;
}
.mv_txt .copy ._bg03 .txt {
  transition: 1.3s 1.8s opacity;
}
.mv_txt .copy .txt {
  opacity: 0;
  display: inline-block;
  will-change: opacity;
  padding-bottom: 0.5rem;
}
.mv_txt .faculty {
  font-size: 3.2rem;
  background: url(../img/top/bg_mv_ttl.png) no-repeat center/100% 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.4rem 3.8rem;
  color: #fff;
  margin-top: 3rem;
  opacity: 0;
  transition: 1s 2s opacity;
}
.mv_txt .faculty.is-show {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .mv_txt .faculty {
    font-size: 3.6rem;
    background: url(../img/top/bg_mv_ttl_sp.png) no-repeat center/100% 100%;
    width: auto;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
  }
}

.mv_under {
  margin-top: 2.8rem;
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  opacity: 0;
  transition: 1s 2s opacity;
}
.mv_under.is-show {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .mv_under {
    margin-top: 2rem;
    display: block;
  }
}
.mv_under .txt {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.6;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 767px) {
  .mv_under .txt {
    font-size: 2.4rem;
    text-align: center;
  }
}

.btn {
  font-weight: 500;
  background-color: #066ebb;
  border-radius: 1000px;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  display: grid;
  align-items: center;
  padding-left: 2rem;
  width: 35.5rem;
  height: 6rem;
  position: relative;
  border: 1px solid #066ebb;
  transition: background-color 0.3s;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 55.5rem;
    height: 8.2rem;
    font-size: 2.4rem;
    padding-left: 5rem;
    margin: 1.7rem auto 0;
  }
}
@media (any-hover: hover) {
  .btn:hover {
    background-color: #fff;
    color: #066ebb;
  }
  .btn:hover::after {
    background-position: 100% 100%;
  }
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  width: 1.3rem;
  height: 1.3rem;
  background: url(../img/top/icn_arrow_w.png) no-repeat 100% 0%/100% 200%;
}
@media screen and (max-width: 767px) {
  .btn::after {
    width: 1.8rem;
    height: 1.7rem;
    right: 5rem;
  }
}

#copy_area {
  padding-top: 12rem;
  padding-bottom: 21.3rem;
  background-image: url(../img/top/bg_earth.png), url(../img/top/bg_grad01.png), url(../img/top/bg_grad01.png);
  background-repeat: no-repeat;
  background-position: calc(50% - 35rem) 34rem, calc(50% + 58rem) -6rem, calc(50% - 66rem) 53rem;
  background-size: 82rem auto, 56.8rem auto, 56.8rem auto;
}
@media screen and (max-width: 767px) {
  #copy_area {
    padding-top: 9rem;
    padding-bottom: 58.2rem;
    background-position: calc(50% + 11rem) 68rem, calc(50% + 29rem) 31rem, calc(50% - 66rem) 53rem;
    position: relative;
  }
  #copy_area::after {
    content: "";
    position: absolute;
    bottom: -10rem;
    left: -24rem;
    width: 56.8rem;
    height: 40.7rem;
    transform: rotate(45deg);
    background: url(../img/top/bg_grad01.png) no-repeat center/100% 100%;
  }
}
#copy_area .catch {
  font-size: 4.36rem;
  text-align: center;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  #copy_area .catch {
    text-align: left;
    letter-spacing: 0.02em;
  }
}
#copy_area .catch .catch_txt {
  display: inline-block;
}
#copy_area .catch .txt01 {
  margin-right: 5em;
}
@media screen and (max-width: 767px) {
  #copy_area .catch .txt01 {
    margin-right: 0;
  }
}
#copy_area .catch .txt02 {
  margin-left: 4.8em;
}
@media screen and (max-width: 767px) {
  #copy_area .catch .txt02 {
    margin-left: 0;
  }
}
#copy_area .catch .txt_large {
  font-size: 8.2rem;
  position: relative;
  top: 1.2rem;
}
@media screen and (max-width: 767px) {
  #copy_area .catch .txt_large {
    font-size: 8rem;
  }
}
#copy_area .txt {
  font-size: 2.6rem;
  line-height: 2.5384615385;
  margin: 8.8rem 0 0 53rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  #copy_area .txt {
    margin: 2rem 0 0 0;
    font-size: 2.8rem;
    line-height: 2.3571428571;
  }
}

#graph {
  padding-top: 6.4rem;
  background: url(../img/top/bg_graph.png) no-repeat top center/auto 100%;
  min-height: 92rem;
}
@media screen and (max-width: 767px) {
  #graph {
    padding-top: 11.2rem;
    min-height: 12.3rem;
    background-size: 180% 100%;
    padding-bottom: 14.8rem;
  }
}

.graph_ttl {
  font-size: 4rem;
  color: #fff;
  text-align: center;
}
.graph_ttl span {
  background-image: repeating-linear-gradient(90deg, #fff, #fff 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 3px;
  display: inline-block;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .graph_ttl span {
    background-image: repeating-linear-gradient(90deg, #fff, #fff 1.5px, transparent 1.5px, transparent 3px);
    background-size: 100% 1.5px;
  }
}

.graph_wrapper {
  width: 95.4rem;
  margin: 3rem auto 0;
}
@media screen and (max-width: 767px) {
  .graph_wrapper {
    width: 133.6rem;
    padding-inline: 4rem;
  }
}

.scroll {
  width: 100%;
  overflow: auto;
}

#tendency {
  margin-top: -10rem;
  background: url(../img/top/bg_grad01.png) no-repeat calc(50% + 41rem) 9rem/56.8rem auto;
}
@media screen and (max-width: 767px) {
  #tendency {
    margin-top: -5rem;
    background-position: calc(50% + 31rem) 9rem;
  }
}

.tendency_ttl {
  text-align: center;
}
.tendency_ttl span {
  display: inline-block;
  background-color: #fff;
  font-size: 2.94rem;
  padding: 1rem;
}
.tendency_ttl span.size_large {
  font-size: 4.78rem;
  margin-top: 0.6rem;
}

.tendency_list {
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 6rem auto 0;
}

.tendency_item {
  font-size: 2.38rem;
  position: relative;
  padding-left: 7rem;
  display: flex;
  align-items: center;
  line-height: 1.6153846154;
}
@media screen and (max-width: 767px) {
  .tendency_item {
    display: block;
    font-size: 2.6rem;
    padding-left: 8rem;
    letter-spacing: 0.12em;
  }
}
.tendency_item::before {
  top: 50%;
  transform: translateY(-50%);
  width: 5.1rem;
  height: 4.2rem;
  background: url(../img/top/icn_check.png) no-repeat center/100% 100%;
  content: "";
  position: absolute;
  left: 0;
}
.tendency_item span {
  font-size: 3.08rem;
}
.tendency_item span.ml {
  margin-left: 0.3em;
}
@media screen and (max-width: 767px) {
  .tendency_item span.ml {
    margin-left: 0;
  }
}
.tendency_item span.mr {
  margin-right: 0.3em;
}
@media screen and (max-width: 767px) {
  .tendency_item span.mr {
    margin-right: 0;
  }
}
.tendency_item + .tendency_item {
  margin-top: 3.8rem;
}

#image {
  padding-top: 9.8rem;
  padding-bottom: 10.2rem;
  position: relative;
}
#image::after {
  content: "";
  position: absolute;
  width: 56.8rem;
  height: 40.7rem;
  background: url(../img/top/bg_grad01.png) no-repeat center/100% 100%;
  bottom: -20rem;
  left: calc(50% - 80rem);
}
@media screen and (max-width: 767px) {
  #image::after {
    background-image: url(../img/top/bg_grad03.png);
    left: calc(50% - 56rem);
    bottom: -16rem;
  }
}
@media screen and (max-width: 767px) {
  #image {
    padding-top: 7.8rem;
  }
}
#image .ttl {
  font-size: 3.4rem;
  line-height: 2.3529411765;
  text-align: center;
  font-weight: 600;
}

.image_list {
  margin-top: 4.6rem;
  display: flex;
  justify-content: center;
  -moz-column-gap: 4.4rem;
       column-gap: 4.4rem;
}
@media screen and (max-width: 767px) {
  .image_list {
    margin-top: 2.6rem;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem 0;
    padding-inline: 4rem;
  }
}

.image_item {
  text-align: center;
  width: 23.9rem;
}
@media screen and (max-width: 767px) {
  .image_item {
    width: 32.9rem;
  }
}
.image_item .icn {
  min-height: 19rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .image_item .icn {
    min-height: 24rem;
  }
}
.image_item .icn img {
  margin-top: auto;
}
.image_item .icn01 img {
  width: 21.3rem;
}
@media screen and (max-width: 767px) {
  .image_item .icn01 img {
    width: 22.5rem;
  }
}
.image_item .icn02 img {
  width: 15.4rem;
}
@media screen and (max-width: 767px) {
  .image_item .icn02 img {
    width: 19.5rem;
  }
}
.image_item .icn03 img {
  width: 21.4rem;
}
@media screen and (max-width: 767px) {
  .image_item .icn03 img {
    width: 26.9rem;
  }
}
.image_item .icn04 img {
  width: 18.4rem;
}
@media screen and (max-width: 767px) {
  .image_item .icn04 img {
    width: 23.1rem;
  }
}
.image_item p {
  font-size: 1.8rem;
  line-height: 1.7777777778;
}
@media screen and (max-width: 767px) {
  .image_item p {
    font-size: 2.4rem;
    line-height: 1.6666666667;
  }
}

.image_ttl {
  font-size: 1.8rem;
  background-color: #fff;
  border-radius: 1000px;
  text-align: center;
  letter-spacing: -0.06em;
  padding: 1.4rem 0.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .image_ttl {
    font-size: 2.8rem;
    font-feature-settings: "palt";
    padding-block: 2rem;
    margin-bottom: 2.2rem;
  }
}

.about_img {
  width: 81.5714285714%;
  margin-left: auto;
  margin-bottom: -23.8rem;
}
@media screen and (max-width: 767px) {
  .about_img {
    width: auto;
    margin-left: 4rem;
    margin-bottom: -14.8rem;
  }
}
.about_img img {
  width: 100%;
}

.about_content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .about_content {
    display: block;
  }
}
.about_content .ttl {
  display: inline-flex;
  flex-direction: row-reverse;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
  align-items: flex-start;
  margin-left: -2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .about_content .ttl {
    flex-direction: column;
    gap: 1rem 0;
  }
}
.about_content .ttl ._min {
  writing-mode: vertical-rl;
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  padding: 2.5rem 2rem 2.5rem;
  background: url(../img/top/bg_ttl_about_s.jpg) no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .about_content .ttl ._min {
    writing-mode: horizontal-tb;
    background-image: url(../img/top/bg_ttl_about_s_sp.jpg);
    padding-block: 2rem;
  }
}
.about_content .ttl ._img {
  padding: 2rem 1rem 3rem 2rem;
  background: url(../img/top/bg_ttl_about_l.jpg) no-repeat center/100% 100%;
}
@media screen and (max-width: 767px) {
  .about_content .ttl ._img {
    background-image: url(../img/top/bg_ttl_about_l_sp.jpg);
    padding: 1rem;
  }
}
.about_content .ttl ._img img {
  width: 11.6rem;
}
@media screen and (max-width: 767px) {
  .about_content .ttl ._img img {
    width: 41rem;
  }
}

.about_block {
  margin-left: auto;
  width: 86rem;
  margin-top: 2.2rem;
}
@media screen and (max-width: 767px) {
  .about_block {
    margin-top: 7.6rem;
    width: auto;
  }
}
.about_block .link_wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 36.8rem;
  margin: 3.3rem auto 0;
}
@media screen and (max-width: 767px) {
  .about_block .link_wrapper {
    min-width: 59.1rem;
    margin-top: 5.9rem;
  }
}

.about_body {
  background-color: #fff;
  width: 100%;
  padding: 5.4rem 6rem;
  border-radius: 3rem;
  position: relative;
  filter: drop-shadow(0px 0px 16px rgba(38, 38, 38, 0.1));
}
@media screen and (max-width: 767px) {
  .about_body {
    margin-left: 0;
    padding: 3rem 2rem 4rem;
  }
}
.about_body::before, .about_body::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #066ebb;
  width: 16.8rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .about_body::before, .about_body::after {
    width: 11.8rem;
    height: 0.5px;
  }
}
.about_body::before {
  top: 3rem;
  right: -5rem;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .about_body::before {
    top: 2.4rem;
    right: -3.5rem;
  }
}
.about_body::after {
  bottom: 3rem;
  left: -5rem;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .about_body::after {
    bottom: 2.4rem;
    left: -3.5rem;
  }
}
.about_body .txt {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 2.375;
}
@media screen and (max-width: 767px) {
  .about_body .txt {
    font-size: 2.6rem;
    line-height: 1.7692307692;
    margin-inline: 3rem;
  }
}

.about_ttl {
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
  border-bottom: 1px solid #066ebb;
  padding-bottom: 2.6rem;
  padding-left: 15rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .about_ttl {
    position: static;
    font-size: 3.6rem;
    padding-left: 0;
    text-align: center;
    line-height: 1.1944444444;
    white-space: nowrap;
    border-bottom-width: 0.5px;
  }
}
.about_ttl .icn {
  display: inline-block;
  width: 11.4rem;
  position: absolute;
  left: 0;
  bottom: -0.7rem;
}
.about_ttl .icn img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about_ttl .icn {
    right: 6rem;
    left: auto;
    bottom: calc(100% - 3rem);
    width: 13.5rem;
  }
}

#theme {
  padding-top: 12rem;
  background-image: url(../img/top/bg_grad01.png);
  background-repeat: no-repeat;
  background-position: calc(50% + 31rem) 0;
  background-size: 56.8rem auto;
}
@media screen and (max-width: 767px) {
  #theme {
    padding-top: 13.4rem;
    background-image: none;
  }
}
#theme .ttl {
  font-size: 3.4rem;
  font-weight: 600;
  text-align: center;
  line-height: 2.1176470588;
}
#theme .ttl span {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
#theme .link_wrapper {
  width: 36.8rem;
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  #theme .link_wrapper {
    margin-top: 8.5rem;
    width: 59rem;
  }
}

.theme_list {
  display: flex;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  margin-top: 5.7rem;
}
@media screen and (max-width: 767px) {
  .theme_list {
    display: block;
  }
}

.theme_item {
  width: 37.2rem;
}
@media screen and (max-width: 767px) {
  .theme_item {
    width: auto;
  }
}
.theme_item.-prosperity .img p {
  right: -2rem;
}
.theme_item.-planet .img p {
  right: -2rem;
}
.theme_item .img {
  position: relative;
  filter: drop-shadow(0px 0px 22px rgba(0, 0, 0, 0.1));
}
.theme_item .img p {
  position: absolute;
  z-index: 2;
  font-size: 12.3rem;
  color: #fff;
  bottom: 0;
  right: 0;
  font-weight: 100;
}
@media screen and (max-width: 767px) {
  .theme_item .img p {
    font-size: 17.2rem;
  }
}
@media screen and (max-width: 767px) {
  .theme_item + .theme_item {
    margin-top: 5.5rem;
  }
}

.theme_body {
  padding-top: 2.53rem;
  text-align: center;
}
.theme_body .theme_ttl {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .theme_body .theme_ttl {
    font-size: 2.4rem;
    margin-bottom: 1em;
  }
}
.theme_body p {
  font-size: 1.6rem;
  line-height: 2;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .theme_body p {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.theme_body p + p {
  border-top: 1px solid #066ebb;
  padding-top: 1em;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .theme_body p + p {
    font-size: 2.6rem;
    line-height: 1.6153846154;
    border-width: 0.5px;
  }
}

#skill {
  padding-top: 18rem;
  padding-bottom: 16.3rem;
  background-image: url(../img/top/bg_grad03.png), url(../img/top/bg_grad01.png);
  background-repeat: no-repeat;
  background-position: calc(50% + 31rem) calc(100% + 15rem), calc(50% - 42rem) 93rem;
  background-size: 50.6rem auto;
}
@media screen and (max-width: 767px) {
  #skill {
    padding-bottom: 37.6rem;
    background-position: calc(50% - 28rem) calc(100% - 5rem), calc(50% + 23rem) 21rem;
  }
}
#skill .ttl {
  display: inline-flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  margin-left: -3rem;
}
@media screen and (max-width: 767px) {
  #skill .ttl {
    flex-direction: column;
    margin-left: -2rem;
    gap: 0.8rem 0;
  }
}
#skill .ttl ._jp {
  display: inline-block;
  writing-mode: vertical-rl;
  color: #fff;
  padding: 2rem 2rem;
  font-size: 4rem;
  background: url(../img/top/bg_ttl_skill_s.jpg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  #skill .ttl ._jp {
    writing-mode: horizontal-tb;
    background-image: url(../img/top/bg_ttl_skill_s_sp.jpg);
  }
}
#skill .ttl ._img {
  background: url(../img/top/bg_ttl_skill_l.jpg) no-repeat center/100% 100%;
  display: inline-block;
  padding: 2.5rem 2rem;
}
@media screen and (max-width: 767px) {
  #skill .ttl ._img {
    background-image: url(../img/top/bg_ttl_skill_l_sp.jpg);
    padding-block: 1rem;
  }
}
#skill .ttl ._img img {
  width: 11.6rem;
}
@media screen and (max-width: 767px) {
  #skill .ttl ._img img {
    width: 28.8rem;
  }
}
#skill .copy {
  font-size: 3.4rem;
  line-height: 2.1764705882;
  text-align: center;
  font-weight: 600;
}
#skill .copy .dot_ttl {
  padding-bottom: 0;
}

.skill_content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .skill_content {
    display: block;
  }
}

.skill_container {
  flex-grow: 1;
  margin-left: auto;
  max-width: 87rem;
}
@media screen and (max-width: 767px) {
  .skill_container {
    margin: 8rem 0 0;
  }
}

.skill_list {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4.4rem 2rem;
  justify-content: space-between;
}

.skill_item {
  width: 41.4rem;
}
.skill_item img {
  width: 100%;
}
.skill_item.-large {
  display: flex;
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
  align-items: center;
  width: auto;
}
@media screen and (max-width: 767px) {
  .skill_item.-large {
    display: block;
  }
}
.skill_item.-large .skill_body {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .skill_item.-large .skill_body {
    padding-top: 2.7rem;
  }
}
.skill_item.-large .img {
  width: 33.7rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .skill_item {
    width: 32rem;
  }
}

.skill_ttl {
  font-size: 3.2rem;
  letter-spacing: 0.12em;
}
.skill_ttl::first-letter {
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .skill_ttl._ls1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
  }
}
@media screen and (max-width: 767px) {
  .skill_ttl._ls2 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .skill_ttl._ls3 {
    font-size: 3rem;
    letter-spacing: 0.05em;
  }
}

.skill_body {
  padding-top: 2rem;
}
.skill_body .txt {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .skill_body .txt {
    font-size: 2.6rem;
    line-height: 1.6153846154;
    letter-spacing: 0.02em;
  }
}

#voice {
  padding-top: 10.2rem;
  padding-bottom: 12.3rem;
  /* background-image: url(../img/top/bg_voice.png), url(../img/top/bg_sand.png);
  background-repeat: no-repeat, repeat;
  background-size:
  	100% 54.5rem,
  	auto auto;
  background-position: top center; */
  background-image: url(../img/top/bg_voice.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 54.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  #voice {
    background-image: url(../img/top/bg_grad01.png), url(../img/top/bg_voice_sp.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 50.6rem auto, 100% auto;
    background-position: calc(50% + 27rem) 257rem, top center;
    padding-bottom: 10.6rem;
  }
}
#voice .ttl ._min {
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  background-image: repeating-linear-gradient(90deg, #ffffff, #ffffff 3px, transparent 3px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 3px;
  display: inline-block;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  #voice .ttl ._min {
    padding-bottom: 2rem;
    background-image: repeating-linear-gradient(90deg, #ffffff, #ffffff 1px, transparent 1px, transparent 2px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 1px;
  }
}
#voice .ttl ._img {
  display: inline-block;
  margin-top: 2.6rem;
}
#voice .ttl ._img img {
  width: 94.8rem;
}
@media screen and (max-width: 767px) {
  #voice .ttl ._img img {
    width: 53.6rem;
  }
}

.voice_list {
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .voice_list {
    margin-top: 4.5rem;
  }
}

.voice_item {
  display: flex;
  -moz-column-gap: 9rem;
       column-gap: 9rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .voice_item {
    display: block;
  }
}
.voice_item .img {
  width: 37rem;
  flex-shrink: 0;
  filter: drop-shadow(0px 0px 22px rgba(0, 0, 0, 0.1));
}
.voice_item .img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .voice_item .img {
    width: 46.5rem;
    margin-inline: auto;
  }
}
.voice_item + .voice_item {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .voice_item + .voice_item {
    margin-top: 5.6rem;
  }
}

@media screen and (max-width: 767px) {
  .voice_body {
    padding-top: 3.8rem;
  }
}
.voice_body .ttl {
  font-size: 2.6rem;
  font-weight: 500;
  margin-top: 1.9rem;
}
@media screen and (max-width: 767px) {
  .voice_body .ttl {
    font-size: 3.6rem;
    letter-spacing: 0.02em;
    margin-top: 2.6rem;
    line-height: 1.4444444444;
  }
}
.voice_body .ttl span {
  background-color: #fff;
  display: inline-block;
  padding: 0.5rem;
  border-radius: 0.4rem;
}
.voice_body .ttl span + span {
  margin-top: 0.2rem;
}
@media screen and (max-width: 767px) {
  .voice_body .ttl span + span {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .voice_body .ttl span {
    background-color: transparent;
  }
}
.voice_body .pos {
  font-size: 1.7rem;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.6rem;
}
@media screen and (max-width: 767px) {
  .voice_body .pos {
    font-size: 2.4rem;
    row-gap: 1rem;
  }
}
.voice_body .pos span {
  display: inline-block;
  background-color: #fff;
  letter-spacing: 0.16em;
  padding: 0.1rem;
  border-radius: 0.2rem;
}
@media screen and (max-width: 767px) {
  .voice_body .pos span {
    background-color: transparent;
  }
}
.voice_body .name {
  margin-top: 1.8rem;
  font-size: 2.4rem;
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.4rem;
  letter-spacing: 0.16em;
  border-radius: 0.4rem;
}
@media screen and (max-width: 767px) {
  .voice_body .name {
    background-color: transparent;
    font-size: 2.8rem;
    margin-top: 2.2rem;
  }
}
.voice_body .txt {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.02em;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .voice_body .txt {
    font-size: 2.6rem;
    line-height: 1.7692307692;
    margin-top: 1rem;
  }
}

#campus {
  background-color: #066ebb;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  #campus {
    padding-bottom: 24rem;
  }
}

.campus_heading {
  background: url(../img/top/bg_campus.jpg) no-repeat bottom center/cover;
  min-height: 67rem;
  padding-top: 7rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .campus_heading {
    padding-top: 7.5rem;
    background: url(../img/top/bg_campus_sp.jpg) no-repeat bottom center/cover;
  }
}
.campus_heading .ttl {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 0.8rem;
}
.campus_heading ._min {
  display: inline-block;
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: url(../img/top/bg_ttl_campus_s.jpg) no-repeat center/100% 100%;
  color: #fff;
  padding: 2rem 2.6rem;
}
@media screen and (max-width: 767px) {
  .campus_heading ._min {
    background: url(../img/top/bg_ttl_campus_s_sp.jpg) no-repeat center/100% 100%;
  }
}
.campus_heading ._img {
  display: inline-block;
  background: url(../img/top/bg_ttl_campus_l.jpg) no-repeat center/100% 100%;
  padding: 1.6rem 1.5rem 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .campus_heading ._img {
    background: url(../img/top/bg_ttl_campus_l_sp.jpg) no-repeat center/100% 100%;
  }
}
.campus_heading ._img img {
  width: 56rem;
  position: relative;
  display: inline-block;
}

.campus_heading_inner {
  height: 100%;
  max-width: 126rem;
  margin-inline: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .campus_heading_inner {
    padding-inline: 4rem;
  }
}

.campus_copy {
  padding-top: 7.8rem;
  display: flex;
  -moz-column-gap: 10rem;
       column-gap: 10rem;
}
@media screen and (max-width: 767px) {
  .campus_copy {
    display: block;
    padding-top: 6.2rem;
  }
}
.campus_copy .copy {
  font-size: 5.84rem;
  font-weight: 600;
  writing-mode: vertical-rl;
  line-height: 1.4827586207;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 767px) {
  .campus_copy .copy {
    writing-mode: horizontal-tb;
  }
}
.campus_copy .copy span {
  margin: 0 0.5rem;
  display: inline-block;
  background-color: #fff;
  padding-inline: 2rem 1rem;
}
@media screen and (max-width: 767px) {
  .campus_copy .copy span {
    margin: 0.5rem 0;
  }
}

.copy_body {
  padding-top: 6rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .copy_body {
    padding-top: 5.4rem;
  }
}
.copy_body .ttl {
  font-size: 3.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .copy_body .ttl {
    font-size: 4.2rem;
  }
}
.copy_body .txt {
  margin-top: 3.6rem;
  font-size: 2.16rem;
  line-height: 2.5238095238;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .copy_body .txt {
    font-size: 2.6rem;
    line-height: 1.6153846154;
    margin-top: 3rem;
  }
}

.info_list {
  margin-top: 5.8rem;
  display: flex;
  flex-wrap: wrap;
  color: #fff;
  gap: 5.2rem 2rem;
}
@media screen and (max-width: 767px) {
  .info_list {
    margin-top: 5rem;
    justify-content: space-between;
    gap: 3.4rem 0;
  }
}

.info_item {
  width: 38.6rem;
}
@media screen and (max-width: 767px) {
  .info_item {
    width: 32rem;
  }
}
.info_item .img {
  filter: drop-shadow(0px 0px 22px rgba(255, 255, 255, 0.1));
}
.info_item img {
  width: 100%;
}

.info_body {
  padding-top: 3.7rem;
}
.info_body .ttl {
  font-size: 2.2rem;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
  .info_body .ttl {
    font-size: 2.8rem;
    line-height: 1.3571428571;
  }
}
.info_body .txt {
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .info_body .txt {
    margin-top: 1.4rem;
    font-size: 2.6rem;
    line-height: 1.6153846154;
  }
}

#map {
  padding-bottom: 15.8rem;
  position: relative;
  background: url(../img/top/bg_map.jpg) repeat top center/56.9% auto;
}
@media screen and (max-width: 767px) {
  #map {
    background-size: 200% auto;
  }
}
#map::after {
  content: "";
  position: absolute;
  left: calc(50% - 77rem);
  bottom: 6.5rem;
  width: 62.1rem;
  height: 55.7rem;
  background: url(../img/top/map_hiroshima.png) no-repeat center/100% auto;
}
@media screen and (max-width: 767px) {
  #map::after {
    top: -29rem;
    right: -10rem;
    left: auto;
    bottom: auto;
  }
}
@media screen and (max-width: 767px) {
  #map {
    padding-bottom: 10rem;
    overflow-x: clip;
  }
}
#map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 17.5rem;
  z-index: 1;
  background-color: #066ebb;
}
@media screen and (max-width: 767px) {
  #map::before {
    display: none;
  }
}

.map_content {
  display: flex;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .map_content {
    display: block;
  }
}
.map_content .ttl {
  display: inline-flex;
  align-items: flex-start;
  -moz-column-gap: 0.6rem;
       column-gap: 0.6rem;
  flex-direction: row-reverse;
  margin-left: -2rem;
}
@media screen and (max-width: 767px) {
  .map_content .ttl {
    margin-top: 0;
    margin-left: 0;
    flex-direction: column;
    gap: 1rem 0;
    transform: translateY(-12rem);
  }
}
.map_content .ttl ._min {
  background: url(../img/top/bg_ttl_map_s.jpg) no-repeat center/100% 100%;
  font-size: 4rem;
  writing-mode: vertical-rl;
  color: #fff;
  display: inline-block;
  padding: 2rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .map_content .ttl ._min {
    writing-mode: horizontal-tb;
    background: url(../img/top/bg_ttl_map_s_sp.jpg) no-repeat center/100% 100%;
  }
}
.map_content .ttl ._img {
  background: url(../img/top/bg_ttl_map_l.jpg) no-repeat center/100% 100%;
  padding: 2rem 1rem 2rem 1.1rem;
}
@media screen and (max-width: 767px) {
  .map_content .ttl ._img {
    padding: 1rem 2rem;
    background: url(../img/top/bg_ttl_map_l_sp.jpg) no-repeat center/100% 100%;
  }
}
.map_content .ttl ._img img {
  width: 14.6rem;
}
@media screen and (max-width: 767px) {
  .map_content .ttl ._img img {
    width: 30.7rem;
  }
}

.map_body {
  width: 79.5rem;
  margin: 4rem 0 0 auto;
}
.map_body img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .map_body {
    width: auto;
    margin: -6rem 0 0;
  }
}
.map_body .link_wrapper {
  margin-top: 3.8rem;
  width: 36.8rem;
}
@media screen and (max-width: 767px) {
  .map_body .link_wrapper {
    width: 59rem;
    margin: 6.9rem auto 0;
  }
}

.slider {
  overflow: clip;
}
.slider .slider_inner {
  display: flex;
  transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: carousel 98s infinite linear;
          animation: carousel 98s infinite linear;
}
@media screen and (max-width: 767px) {
  .slider .slider_inner {
    -webkit-animation-duration: 80s;
            animation-duration: 80s;
  }
}
.slider .slider_inner > div {
  display: flex;
  flex-shrink: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.slider .slider_inner > div img {
  display: block;
  width: 32.1428571429vw;
}
@media screen and (max-width: 767px) {
  .slider .slider_inner > div img {
    width: 60vw;
  }
}

@-webkit-keyframes carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
#banner_area {
  padding-top: 7.4rem;
  background: url(../img/top/bg_grad03.png) no-repeat calc(50% + 49rem) -15rem/50.6rem auto;
}
@media screen and (max-width: 767px) {
  #banner_area {
    padding-top: 5.4rem;
    background: url(../img/top/bg_grad01.png) no-repeat calc(50% + 26rem) -12rem/50.6rem auto;
  }
}
#banner_area .txt {
  font-size: 3.66rem;
  line-height: 1.6666666667;
  font-weight: 600;
  letter-spacing: 0.06em;
}
#banner_area .txt .txt-small {
  font-size: 3rem;
}
#banner_area .txt .txt-main {
  display: block;
  width: 55rem;
  margin-block: 4rem 2rem;
}
@media screen and (max-width: 767px) {
  #banner_area .txt .txt-main {
    margin: 3.2rem auto 1.2rem;
  }
}
#banner_area .txt .txt-main img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #banner_area .txt {
    text-align: center;
    font-size: 3.2rem;
    line-height: 1.90625;
  }
}

.bnr_list {
  margin-top: 5.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .bnr_list {
    display: block;
  }
}

.bnr_item {
  width: 57.9rem;
}
.bnr_item img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .bnr_item {
    width: auto;
  }
}
.bnr_item a {
  display: block;
  text-decoration: none;
  color: currentColor;
}
@media (any-hover) {
  .bnr_item a {
    transition: 0.3s;
  }
  .bnr_item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .bnr_item + .bnr_item {
    margin-top: 4rem;
  }
}

.footer {
  padding-top: 6rem;
  padding-bottom: 15.5rem;
  background: url(../img/top/bg_grad03.png) no-repeat calc(50% - 64rem) calc(100% + 3rem)/50.6rem auto;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 8rem;
    background: url(../img/top/bg_grad03.png) no-repeat calc(50% - 28rem) calc(100% + 3rem)/50.6rem auto;
  }
}

.footer_logo {
  width: 31.6rem;
}
.footer_logo img {
  width: 100%;
}

.footer_inner {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer_inner {
    display: block;
  }
}
.footer_inner .txt {
  margin-top: 2.7rem;
  font-size: 1.4rem;
  color: #066ebb;
  line-height: 1.7857142857;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .footer_inner .txt {
    font-size: 2.4rem;
    margin-top: 3.5rem;
  }
}
.footer_inner .txt a {
  color: currentColor;
  text-decoration: underline !important;
}
@media (any-hover) {
  .footer_inner .txt a {
    transition: 0.3s;
  }
  .footer_inner .txt a:hover {
    opacity: 0.7;
  }
}

.sns {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .sns {
    margin-top: 2.2rem;
  }
}

.sns_txt {
  font-size: 1.6rem;
  margin-right: 1rem;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .sns_txt {
    font-size: 2.4rem;
    margin-right: 1.5rem;
  }
}

.sns_list {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sns_list {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}

.sns_item {
  width: 3.8rem;
}
@media screen and (max-width: 767px) {
  .sns_item {
    width: 6.4rem;
  }
}
.sns_item.-x {
  width: 3.3rem;
}
@media screen and (max-width: 767px) {
  .sns_item.-x {
    width: 5.6rem;
  }
}
.sns_item a {
  display: block;
}
@media (any-hover) {
  .sns_item a {
    transition: 0.3s;
  }
  .sns_item a:hover {
    opacity: 0.7;
  }
}
.sns_item a img {
  width: 100%;
}

.top_btn {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  width: 11.9rem;
  height: 11.9rem;
}
.top_btn a {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/top/btn_top_w.png) no-repeat 100% 0/100% 200%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top_btn a {
    background-position: 100% 100%;
  }
}
@media screen and (max-width: 767px) {
  .top_btn {
    margin-right: 0;
    width: 14.6rem;
    height: 14.6rem;
  }
}
.top_btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13.4rem;
  height: 13.4rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  transform: translate(-50%, -50%);
  transition: 0.3s background-color;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top_btn::after {
    width: 16.4rem;
    height: 16.4rem;
    background-color: rgba(0, 110, 187, 0.6);
  }
}
.top_btn img {
  width: 11.9rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top_btn img {
    width: 14.6rem;
  }
}
@media (any-hover: hover) {
  .top_btn:hover a {
    background-position: 100% 100%;
    -webkit-animation: hover-opacity 0.5s forwards;
            animation: hover-opacity 0.5s forwards;
  }
  .top_btn:hover::after {
    background-color: rgba(0, 110, 187, 0.6);
  }
}

@-webkit-keyframes hover-opacity {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes hover-opacity {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.footer_bottom {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .footer_bottom {
    margin-right: 0;
    margin-top: 5.5rem;
  }
}

.copyright {
  display: inline-block;
  margin-top: 3rem;
  font-size: 1.4rem;
  color: #066eeb;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 2.4rem;
    text-align: right;
    color: #066ebb;
    margin-top: 3.7rem;
  }
}

.footerRecruitLogo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  border-top: 1px solid #e2e2e2;
}
@media screen and (max-width: 767px) {
  .footerRecruitLogo {
    padding-block: 4.4rem 4.1rem;
    display: block;
  }
  .footerRecruitLogo > a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}
.footerRecruitLogo ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footerRecruitLogo ul {
    margin-top: 3.4rem;
    justify-content: center;
  }
}
.footerRecruitLogo ul li {
  margin-left: 1em;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .footerRecruitLogo ul li {
    font-size: 2.6rem;
  }
}
.footerRecruitLogo ul li a {
  color: #000;
  text-decoration: underline;
}
@media (any-hover) {
  .footerRecruitLogo ul li a {
    transition: 0.3s;
  }
  .footerRecruitLogo ul li a:hover {
    opacity: 0.7;
  }
}
/*# sourceMappingURL=style.css.map */