@charset "UTF-8";
.c-linkbtn {
  padding: 0;
}
.c-linkbtn .link__btn__inner {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
}
.c-linkbtn .link__btn__inner .link__btn__inner--link {
  width: 240px;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 25px;
  background-color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  padding: 0 0 0 20px;
  color: #000;
  position: relative;
  overflow: hidden;
  border: 2px solid #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.c-linkbtn .link__btn__inner .link__btn__inner--link span {
  z-index: 2;
}
.c-linkbtn .link__btn__inner .link__btn__inner--link::after {
  position: absolute;
  display: block;
  content: "";
  width: 58px;
  height: 8px;
  transform: translateY(-50%);
  bottom: 30%;
  right: 40px;
  z-index: 2;
  transition: border, right 0.5s;
  background-image: url(../common/images/arrow-black.svg);
  background-repeat: no-repeat;
  background-position: right;
}
.c-linkbtn .link__btn__inner .link__btn__inner--link::before {
  content: "";
  width: 105%;
  height: 105%;
  background-color: #000;
  z-index: 1;
  left: -2.5%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
  top: -2.5%;
  position: absolute;
}
.c-linkbtn .link__btn__inner .link__btn__inner--link:hover {
  color: #fff;
  transition: color 0.3s;
}
.c-linkbtn .link__btn__inner .link__btn__inner--link:hover::after {
  right: 20px;
  transition: border, right 0.5s;
  background-image: url(../common/images/arrow-white.svg);
}
.c-linkbtn .link__btn__inner .link__btn__inner--link:hover::before {
  content: "";
  width: 105%;
  height: 105%;
  background-color: #000;
  z-index: 1;
  left: -2.5%;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.3s;
  top: -2.5%;
  position: absolute;
}
.c-linkbtn .link__btn__inner:last-child {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-linkbtn {
    padding: 0;
  }
  .c-linkbtn .link__btn__inner {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .c-linkbtn .link__btn__inner li {
    margin: 0 auto 30px;
  }
  .c-linkbtn .link__btn__inner li .link__btn__inner--link {
    display: flex;
    justify-content: cenfter;
    align-items: center;
    color: #fff;
    background-color: #5e7c36;
    font-size: 2rem;
    line-height: 1.2;
  }
  .c-linkbtn .link__btn__inner li:last-child {
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .c-linkbtn {
    padding: 0 60px 0;
  }
  .c-linkbtn .link__btn__inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  .c-linkbtn .link__btn__inner li {
    margin: 0;
    width: 31%;
  }
  .c-linkbtn .link__btn__inner li .link__btn__inner--link {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .c-linkbtn .link__btn__inner li:last-child {
    margin: 0;
  }
}

.search-input-wrap {
  display: block;
  text-align: center;
  margin: 0 auto 40px;
}
.search-input-wrap #searchform {
  width: auto;
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}
.search-input-wrap #searchform input {
  border: 1px solid #666666;
  height: 50px;
  width: 320px;
  font-size: 1.6rem;
  padding-left: 8px;
  background-color: #fff;
  padding-right: 40px;
}
.search-input-wrap #searchform input[type=submit] {
  background: url(/common/images/icon-search.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  width: 24px;
  border: none;
  height: 24px;
  bottom: 0;
  margin: auto 0;
  right: 10px;
  background-size: contain;
  padding: 5px;
}
@media screen and (min-width: 768px) {
  .search-input-wrap {
    display: block;
    text-align: center;
    margin: 0 auto;
    background-color: #004080;
    padding: 0 0 60px;
  }
}

.p-firstview {
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  position: relative;
}
.p-firstview #first_view_text_area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}
.p-firstview #first_view_text_area .top_fv_title {
  width: 80%;
  height: auto;
  position: relative;
  z-index: 2;
}
.p-firstview #first_view_text_area .top_fv_mark {
  width: 90%;
  height: auto;
  position: absolute;
  opacity: 0.2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-firstview #first_view_text_area .top_fv_title {
    width: 70%;
  }
  .p-firstview #first_view_text_area .top_fv_mark {
    width: 90%;
  }
  .p-firstview #first_view_banner_area {
    position: absolute;
    width: 100%;
  }
  .p-firstview #first_view_banner_area.bottom {
    bottom: 50px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1023px) and (orientation: landscape) {
  .p-firstview {
    height: 100%;
    height: 100svh;
  }
}
@media screen and (min-width: 1024px) {
  .p-firstview {
    height: 100vh;
    height: 100svh;
  }
  .p-firstview #first_view_text_area .top_fv_title {
    width: 40%;
  }
  .p-firstview #first_view_text_area .top_fv_mark {
    width: 40%;
    height: auto;
  }
  .p-firstview #first_view_bottom_area {
    position: absolute;
    bottom: 50px;
    width: auto;
    display: flex;
    flex-flow: row nowrap;
    padding: 0 50px;
    justify-content: flex-start;
    align-items: center;
  }
  .p-firstview #first_view_bottom_area .first_view_news {
    width: auto;
  }
  .p-firstview #first_view_bottom_area .top_fv_text {
    width: calc(100% - 380px);
    margin-right: 0;
  }
  .p-firstview #first_view_banner_area {
    position: absolute;
    width: 95%;
    bottom: 6%;
    align-items: flex-end;
  }
  .p-firstview #first_view_banner_area.bottom {
    bottom: 6%;
  }
  .p-firstview #first_view_banner_area .first_view_bottom_area_banner {
    width: 60%;
    max-width: 240px;
    margin-bottom: 0;
  }
  .p-firstview #first_view_banner_area .first_view_bottom_area_banner .recruit_banner {
    width: 100%;
    height: auto;
  }
}

.scroll {
  bottom: 50px;
  position: absolute;
  z-index: 99;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--scroll);
  display: block;
}
.scroll .scroll__inner {
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  position: relative;
  letter-spacing: 0.3vw;
  padding-left: 0.3vw;
}
.scroll .scroll__inner::after {
  content: "";
  height: 32px;
  width: 1px;
  position: relative;
  display: block;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 25px;
  animation: line 2s infinite;
  transform-origin: top;
}
.scroll .scroll__inner::before {
  content: "";
  height: 60px;
  width: 40px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 25px;
  position: absolute;
  border: 1px solid #fff;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .scroll {
    display: block;
    bottom: 50px;
  }
  .scroll .scroll__inner {
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .scroll {
    bottom: 50px;
  }
}
@keyframes line {
  0% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 1);
  }
}
.first__view {
  position: relative;
}
.first__view .first__view__image {
  width: 100%;
  height: 100svh;
  object-fit: cover;
  position: relative;
  object-position: 65%;
}
.first__view .first__view__logoarea {
  position: absolute;
  z-index: 1;
  width: 90%;
  left: 50%;
  top: 45%;
  transform: translateY(-50%) translateX(-50%);
}
.first__view .first__view__logoarea .first__view__logo {
  width: 90%;
  height: auto;
  display: block;
  margin: auto;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
}
.first__view .first__view__logoarea .first__view__text {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  font-size: 4vw;
  letter-spacing: 0.3rem;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.8));
  width: max-content;
}
.first__view .first__view__logoarea .first__view__cach {
  color: #fff;
  font-size: 6vw;
  font-weight: normal;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.8));
}
@media screen and (min-width: 768px) {
  .first__view .first__view__image {
    width: 100%;
    height: 100svh;
    object-fit: cover;
    position: relative;
    object-position: center;
  }
  .first__view .first__view__logo {
    width: 90%;
    height: auto;
    display: block;
    margin: auto;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
  }
  .first__view .first__view__text {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 4vw;
    letter-spacing: 0.3rem;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
    width: max-content;
  }
  .first__view .first__view__cach {
    color: #fff;
    font-size: 6vw;
    font-weight: normal;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
  }
}
@media screen and (min-width: 1024px) {
  .first__view .first__view__logoarea {
    position: absolute;
    z-index: 1;
    width: 45%;
    left: 10%;
    top: 52%;
    transform: translateY(-50%);
  }
  .first__view .first__view__logoarea .first__view__logo {
    width: 90%;
    height: auto;
    display: block;
    margin: auto;
    margin-bottom: 5%;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.4));
  }
  .first__view .first__view__logoarea .first__view__text {
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
    color: #fff;
    font-size: 2.2vw;
    letter-spacing: 0.3rem;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
  }
  .first__view .first__view__logoarea .first__view__cach {
    color: #fff;
    font-size: 3.6vw;
    font-weight: normal;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.4));
  }
}

#contents {
  display: block;
  position: relative;
  height: auto;
  margin-top: 0px;
  z-index: 1;
  margin-bottom: 0;
}
#contents #content {
  margin-bottom: 0;
}
#contents #content .content_inner {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
#contents #content .content_inner .content_inner_imagearea#feature01 {
  position: relative;
  width: 100%;
  transform: scale(1) translateX(20%);
  transform-origin: bottom;
}
#contents #content .content_inner .content_inner_imagearea#feature01::before {
  content: "";
  width: 100%;
  background-image: linear-gradient(315deg, #007ca7, #00406f);
  border-radius: 50%;
  aspect-ratio: 1;
  display: block;
}
#contents #content .content_inner .content_inner_imagearea#feature01 .contents_image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
  position: absolute;
  inset: 0;
}
#contents #content .content_inner .content_inner_imagearea#feature01 .circle {
  position: absolute;
  inset: 0;
  display: block;
  transform-origin: center;
  transform: scale(1.08);
  animation: circle 30s linear infinite;
}
#contents #content .content_inner .content_inner_imagearea#feature02 {
  position: relative;
  width: 100%;
  transform: scale(1) translateX(-10%);
  transform-origin: bottom;
}
#contents #content .content_inner .content_inner_imagearea#feature02::before {
  content: "";
  width: 100%;
  background-image: linear-gradient(315deg, #007ca7, #00406f);
  border-radius: 50%;
  aspect-ratio: 1;
  display: block;
}
#contents #content .content_inner .content_inner_imagearea#feature02 .contents_image {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(0.7) translateX(0%);
  position: absolute;
  inset: 0;
}
#contents #content .content_inner .content_inner_imagearea#feature02 .circle {
  position: absolute;
  inset: 0;
  display: block;
  transform-origin: center;
  transform: scale(1.08);
  animation: circle 30s linear infinite;
}
#contents #content .content_inner .contents_image02 {
  position: absolute;
  width: 30%;
  left: 5%;
  top: 10%;
  border-radius: 50%;
}
#contents #content .content_inner .contents_image04 {
  position: absolute;
  width: 25%;
  left: 20%;
  top: 0%;
  border-radius: 50%;
}
#contents #content .content_inner .contents_image05 {
  position: absolute;
  width: 25%;
  left: 5%;
  top: 15%;
  border-radius: 50%;
}
@keyframes circle {
  0% {
    transform: rotate(0) scale(1.08);
  }
  100% {
    transform: rotate(359deg) scale(1.08);
  }
}
#contents #content .content_inner .content_inner_textarea {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  padding: 50px 30px 30px;
  background-color: transparent;
  position: relative;
}
#contents #content .content_inner .content_inner_textarea.is-show h2 {
  opacity: 1;
  transition: opacity 2s ease-in-out 1s;
}
#contents #content .content_inner .content_inner_textarea.is-show h3 {
  opacity: 1;
  transition: opacity 2s ease-in-out 0.5s;
}
#contents #content .content_inner .content_inner_textarea.is-show p {
  opacity: 1;
  transition: opacity 2s ease-in-out 1.5s;
}
#contents #content .content_inner .content_inner_textarea.is-show .link_box {
  opacity: 1;
  transition: opacity 2s ease-in-out 2s;
}
#contents #content .content_inner .content_inner_textarea h2 {
  margin: 0 0 10px;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.8rem;
  text-align: left;
  color: #333333;
  font-weight: bold;
  opacity: 0;
  z-index: 2;
}
#contents #content .content_inner .content_inner_textarea h3 {
  margin: 0 0 30px;
  font-size: 5rem;
  letter-spacing: 2px;
  text-align: left;
  color: #000;
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 1rem;
  opacity: 0;
  position: relative;
  z-index: 2;
}
#contents #content .content_inner .content_inner_textarea p {
  margin: 0;
  font-size: 1.4rem;
  text-align: justify;
  line-height: 2;
  opacity: 0;
  z-index: 2;
}
#contents #content .content_inner .content_inner_textarea .link_box {
  background-color: #007ca7;
  width: 280px;
  height: 50px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  margin: 0;
  text-decoration: none;
  position: relative;
  font-size: 1.6rem;
  align-items: flex-start;
  padding: 0 0 0 30px;
  border: 1px solid #007ca7;
  border-radius: 25px;
  color: #fff;
  margin: 0 auto;
  overflow: hidden;
  opacity: 0;
  z-index: 2;
}
#contents #content .content_inner .content_inner_textarea .link_box span {
  z-index: 3;
}
#contents #content .content_inner .content_inner_textarea .link_box:hover {
  color: #007ca7;
}
#contents #content .content_inner .content_inner_textarea .link_box:hover::after {
  right: 20px;
  transition: border, right 0.5s;
  background-image: url(../common/images/arrow-green.svg);
}
#contents #content .content_inner .content_inner_textarea .link_box:hover::before {
  content: "";
  width: 105%;
  height: 105%;
  background-color: #fff;
  z-index: 1;
  animation: btn_hover 0.5s ease-in-out;
  left: -2.5%;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.5s;
  top: -2.5%;
  position: absolute;
}
#contents #content .content_inner .content_inner_textarea .link_box::after {
  position: absolute;
  display: block;
  content: "";
  width: 58px;
  height: 8px;
  transform: translateY(-50%);
  bottom: 30%;
  right: 40px;
  z-index: 2;
  transition: border, right 0.5s;
  background-image: url(../common/images/arrow-white.svg);
  background-repeat: no-repeat;
  background-position: right;
}
#contents #content .content_inner .content_inner_textarea .link_box::before {
  content: "";
  width: 105%;
  height: 105%;
  background-color: #fff;
  z-index: 1;
  left: -2.5%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
  top: -2.5%;
  position: absolute;
}
#contents .contents__news {
  padding: 30px 15px;
  margin: 0 auto;
  line-height: 1.75;
  background-color: #666;
}
#contents .contents__news .contents__title {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  justify-content: flex-start;
  flex-flow: column;
  align-items: center;
}
#contents .contents__news .contents__title .contents__title--en {
  margin: 0;
  font-size: 3rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  font-weight: 100;
  line-height: 1.3;
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  position: relative;
  color: #fff;
  letter-spacing: 0.6rem;
}
#contents .contents__news .news__container {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  max-width: 1100px;
  margin: 0 auto;
}
#contents .contents__news .news__container .news__list {
  padding: 10px 0;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 1.8rem;
  border-bottom: 1px dotted #fff;
  width: 100%;
}
#contents .contents__news .news__container .news__list:first-child {
  border-top: 1px solid #fff;
}
#contents .contents__news .news__container .news__list:last-child {
  border-bottom: 1px solid #fff;
}
#contents .contents__news .news__container .news__list .newslist__inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
#contents .contents__news .news__container .news__list .newslist__inner time {
  color: #fff;
  font-size: 2rem;
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: normal;
}
#contents .contents__news .news__container .news__list .newslist__inner .news__category {
  margin: 0 0 0 10px;
}
#contents .contents__news .news__container .news__list .newslist__inner .news__category a {
  display: flex;
  background-color: #000;
  color: #fff;
  font-size: 1.2rem;
  padding: 2px 10px;
  border-radius: 12.5px;
  width: 75px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.5s;
}
#contents .contents__news .news__container .news__list .newslist__inner .news__category a:hover {
  background-color: #fff;
  color: #000;
}
#contents .contents__news .news__container .news__list p a {
  color: #fff;
  font-size: 1.6rem;
  text-decoration: underline;
}
#contents .contents__news .c-linkbtn {
  padding: 0;
  margin-bottom: 0;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  #contents {
    margin: 0;
  }
  #contents #content {
    padding: 0;
  }
  #contents #content .content_flex {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    margin: 0 auto;
  }
  #contents #content .content_inner {
    flex-flow: row-reverse nowrap;
    width: 100%;
    position: relative;
    align-items: center;
    padding: 60px 30px 60px;
    align-items: end;
  }
  #contents #content .content_inner:last-child {
    flex-flow: row nowrap;
    align-items: flex-start;
  }
  #contents #content .content_inner:last-child .content_inner_textarea {
    justify-content: center;
    padding: 0 30px 0 0;
    position: absolute;
    width: max-content;
    height: auto;
    min-height: auto;
    bottom: auto;
    right: 0;
    left: auto;
    top: 15%;
  }
  #contents #content .content_inner:last-child .content_inner_textarea h2 {
    text-align: right;
  }
  #contents #content .content_inner:last-child .content_inner_textarea h3 {
    text-align: right;
    order: 3;
    margin-top: 20px;
  }
  #contents #content .content_inner:last-child .content_inner_textarea p {
    text-align: right;
  }
  #contents #content .content_inner .content_inner_imagearea#feature01 {
    position: relative;
    width: 60%;
    transform: scale(1.2);
    transform-origin: bottom left;
    margin-left: 40%;
  }
  #contents #content .content_inner .content_inner_imagearea#feature02 {
    position: relative;
    width: 60%;
    transform: scale(1.2);
    margin-right: 40%;
    transform-origin: top right;
  }
  #contents #content .content_inner .contents_image02 {
    position: absolute;
    width: 20%;
    left: 30px;
    top: 10%;
    border-radius: 50%;
  }
  #contents #content .content_inner .contents_image04 {
    position: absolute;
    width: 18%;
    left: auto;
    right: calc(18% + 60px);
    top: auto;
    bottom: 10%;
    border-radius: 50%;
  }
  #contents #content .content_inner .contents_image05 {
    position: absolute;
    width: 18%;
    left: auto;
    right: 30px;
    top: auto;
    bottom: 10%;
    border-radius: 50%;
  }
  #contents #content .content_inner .content_inner_textarea {
    justify-content: center;
    padding: 0 0 0 30px;
    position: absolute;
    width: max-content;
    height: auto;
    min-height: auto;
    bottom: 15%;
    left: 0;
  }
  #contents #content .content_inner .content_inner_textarea h2 {
    margin: 0 0 20px;
    font-size: 2rem;
  }
  #contents #content .content_inner .content_inner_textarea h3 {
    margin: 0 0 20px;
    font-size: 5rem;
    letter-spacing: 1rem;
  }
  #contents #content .content_inner .content_inner_textarea p {
    font-size: 1.6rem;
  }
  #contents .contents__news {
    padding: 60px 30px;
    margin: 0 auto;
  }
  #contents .contents__news .contents__title .contents__title--en {
    font-size: 5rem;
  }
  #contents .contents__news .news__container .news__list {
    padding: 20px 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
  }
  #contents .contents__news .news__container .news__list .newslist__inner {
    margin: 0 40px 0 0;
  }
  #contents .contents__news .news__container .news__list .newslist__inner time {
    font-size: 1.8rem;
    width: 100px;
  }
  #contents .contents__news .news__container .news__list .newslist__inner .news__category {
    margin: 0 0 0 20px;
  }
  #contents .contents__news .news__container .news__list .newslist__inner .news__category a {
    font-size: 1.4rem;
    border-radius: 17.25px;
    width: 110px;
  }
  #contents .contents__news .news__container .news__list p a {
    font-size: 1.8rem;
    text-decoration: underline;
  }
  #contents .contents__news .c-linkbtn {
    padding: 0 60px 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  #contents #content {
    padding: 0;
  }
  #contents #content .content_inner:last-child .content_inner_textarea {
    justify-content: center;
    padding: 0 80px 0 0;
    position: absolute;
    width: max-content;
    height: auto;
    min-height: auto;
    bottom: auto;
    right: 0;
    left: auto;
    top: 20%;
  }
  #contents #content .content_inner:last-child .content_inner_textarea h2 {
    text-align: right;
  }
  #contents #content .content_inner:last-child .content_inner_textarea h3 {
    text-align: right;
    order: 3;
    margin-top: 40px;
  }
  #contents #content .content_inner:last-child .content_inner_textarea p {
    text-align: right;
  }
  #contents #content .content_inner .content_inner_imagearea#feature01 {
    position: relative;
    width: 60%;
    transform: scale(1.2);
    transform-origin: bottom left;
    margin-left: 40%;
  }
  #contents #content .content_inner .content_inner_imagearea#feature02 {
    position: relative;
    width: 60%;
    transform: scale(1.2);
    margin-right: 40%;
    transform-origin: top right;
  }
  #contents #content .content_inner .contents_image02 {
    position: absolute;
    width: 15%;
    left: 80px;
    top: 15%;
    border-radius: 50%;
  }
  #contents #content .content_inner .contents_image04 {
    position: absolute;
    width: 12%;
    left: auto;
    right: calc(12% + 110px);
    top: auto;
    bottom: 15%;
    border-radius: 50%;
  }
  #contents #content .content_inner .contents_image05 {
    position: absolute;
    width: 12%;
    left: auto;
    right: 80px;
    top: auto;
    bottom: 15%;
    border-radius: 50%;
  }
  #contents #content .content_inner .content_inner_textarea {
    justify-content: center;
    padding: 0 0 0 80px;
    position: absolute;
    width: max-content;
    height: auto;
    min-height: auto;
    bottom: 20%;
    left: 0;
  }
  #contents #content .content_inner .content_inner_textarea h2 {
    margin: 0 0 20px;
    font-size: 3rem;
  }
  #contents #content .content_inner .content_inner_textarea h3 {
    margin: 0 0 40px;
    font-size: 8rem;
    letter-spacing: 1rem;
  }
  #contents #content .content_inner .content_inner_textarea p {
    font-size: 2rem;
  }
  #contents .contents__news {
    padding: 100px 30px;
    margin: 0 auto;
  }
  #contents .contents__news .contents__title .contents__title--en {
    font-size: 5rem;
  }
  #contents .contents__news .news__container .news__list {
    padding: 30px 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
  }
  #contents .contents__news .news__container .news__list .newslist__inner {
    margin: 0 40px 0 0;
  }
  #contents .contents__news .news__container .news__list .newslist__inner time {
    font-size: 2rem;
    width: 100px;
  }
  #contents .contents__news .news__container .news__list .newslist__inner .news__category {
    margin: 0 0 0 20px;
  }
  #contents .contents__news .news__container .news__list .newslist__inner .news__category a {
    font-size: 1.4rem;
    border-radius: 17.25px;
    width: 110px;
  }
  #contents .contents__news .news__container .news__list p a {
    font-size: 2rem;
    text-decoration: underline;
  }
  #contents .contents__news .c-linkbtn {
    padding: 0 60px 0;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1280px) {
  #contents #content .content_inner:last-child .content_inner_textarea {
    justify-content: center;
    padding: 0 100px 0 0;
    position: absolute;
    width: max-content;
    height: auto;
    min-height: auto;
    bottom: auto;
    right: 0;
    left: auto;
    top: 20%;
  }
  #contents #content .content_inner:last-child .content_inner_textarea h2 {
    text-align: right;
  }
  #contents #content .content_inner:last-child .content_inner_textarea h3 {
    text-align: right;
    order: 3;
    margin-top: 40px;
  }
  #contents #content .content_inner:last-child .content_inner_textarea p {
    text-align: right;
  }
  #contents #content .content_inner .contents_image02 {
    position: absolute;
    width: 15%;
    left: 100px;
    top: 15%;
    border-radius: 50%;
  }
  #contents #content .content_inner .contents_image04 {
    position: absolute;
    width: 12%;
    left: auto;
    right: calc(12% + 130px);
    top: auto;
    bottom: 15%;
    border-radius: 50%;
  }
  #contents #content .content_inner .contents_image05 {
    position: absolute;
    width: 12%;
    left: auto;
    right: 100px;
    top: auto;
    bottom: 15%;
    border-radius: 50%;
  }
  #contents #content .content_inner .content_inner_textarea {
    justify-content: center;
    padding: 0 0 0 100px;
    position: absolute;
    width: max-content;
    height: auto;
    min-height: auto;
    bottom: 20%;
    left: 0;
  }
  #contents #content .content_inner .content_inner_textarea h2 {
    margin: 0 0 20px;
    font-size: 3rem;
  }
  #contents #content .content_inner .content_inner_textarea h3 {
    margin: 0 0 40px;
    font-size: 10rem;
    letter-spacing: 1rem;
  }
  #contents #content .content_inner .content_inner_textarea p {
    font-size: 2rem;
  }
}/*# sourceMappingURL=front-page.css.map */