@charset "UTF-8";
/**
* @file contact.scss
**/
/**
* @file _config.scss
**/
/**
* @file _reset.scss
**/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  vertical-align: bottom;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

button {
  outline: none;
  border: 0;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #333333;
}

.grecaptcha-badge {
  visibility: hidden;
}

/**
* @file _media.scss
**/
/**
* @file _header.scss
**/
.header-hamburger__wrapper {
  padding: 2rem;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: fixed;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .header-hamburger__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.header-hamburger__wrapper .hamburger {
  position: relative;
  width: 5rem;
  height: 2rem;
}

@media screen and (max-width: 768px) {
  .header-hamburger__wrapper .hamburger {
    width: 3rem;
  }
}

.header-hamburger__wrapper .hamburger span {
  display: block;
  width: 100%;
  height: .1rem;
  background-color: #000000;
  position: absolute;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.header-hamburger__wrapper .hamburger span:nth-of-type(2) {
  top: 50%;
}

.header-hamburger__wrapper .hamburger span:nth-of-type(3) {
  bottom: 0;
}

.header-hamburger__wrapper .hamburger.active span {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.header-hamburger__wrapper .hamburger.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-20deg);
  transform: translateY(9px) rotate(-20deg);
}

@media screen and (max-width: 768px) {
  .header-hamburger__wrapper .hamburger.active span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
  }
}

.header-hamburger__wrapper .hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.header-hamburger__wrapper .hamburger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(20deg);
  transform: translateY(-9px) rotate(20deg);
}

@media screen and (max-width: 768px) {
  .header-hamburger__wrapper .hamburger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
  }
}

.header-hamburger__wrapper .text {
  color: #000000;
  font-size: 1rem;
  margin-top: .5rem;
}

@media screen and (max-width: 768px) {
  .header-hamburger__wrapper .text {
    margin-top: 0;
    margin-left: .5rem;
  }
}

.header__top-link {
  position: fixed;
  top: 2rem;
  left: 9rem;
  z-index: 997;
}

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

.header-menu__wrapper {
  width: 300px;
  height: 100%;
  position: absolute;
  z-index: 1000;
  -webkit-transform: translate(-300px);
  transform: translate(-300px);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  background: rgba(245, 244, 244, 0.95);
  padding: 10rem 2.4rem 2rem;
}

@media screen and (max-width: 768px) {
  .header-menu__wrapper {
    width: calc(100% - 6rem);
    -webkit-transform: translate(-100%);
    transform: translate(-100%);
  }
}

.header-menu__wrapper.open {
  -webkit-transform: translate(0);
  transform: translate(0);
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  position: fixed;
  z-index: 999;
}

.header-menu__contents-title {
  font-size: 1.3rem;
  font-weight: bold;
}

.header-menu__contents-main-list {
  margin-top: 2.5rem;
}

.header-menu__contents-main-list .main-list-item {
  position: relative;
  font-size: 1.1rem;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
  .header-menu__contents-main-list .main-list-item {
    font-size: 1.4rem;
  }
}

.header-menu__contents-main-list .main-list-item:last-of-type {
  margin-bottom: 0;
}

.header-menu__contents-main-list .main-list-item .main-list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-menu__contents-main-list .main-list-item .main-list-link::before {
  content: '';
  position: absolute;
  left: 0;
  width: .4rem;
  height: .4rem;
  border-top: .1rem solid #000000;
  border-right: .1rem solid #000000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header-menu__contents-main-list .main-list-item .list-icon-link img {
  width: 1.6rem;
  height: 1.6rem;
  padding-left: .3rem;
}

.header-menu__contents-secondary-list {
  margin-top: 1rem;
}

.header-menu__contents-secondary-list .secondary-list-item {
  margin-bottom: 1.5rem;
}

.header-menu__contents-secondary-list .secondary-list-link {
  color: #666666;
  position: relative;
  padding-left: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-menu__contents-secondary-list .secondary-list-link::before {
  content: '';
  width: .8rem;
  height: .1rem;
  background-color: #666666;
  position: absolute;
  left: 0;
}

.header-menu__contents-sns-list {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.header-menu__contents-tertiary-list {
  margin-top: 2rem;
}

.header-menu__contents-tertiary-list .tertiary-list-item {
  margin-bottom: 1.5rem;
}

.header-menu__contents-tertiary-list .tertiary-list-link {
  color: #666666;
}

@media screen and (max-width: 768px) {
  .header-menu__contents-tertiary-list .tertiary-list-link {
    font-size: 1.4rem;
  }
}

.header-menu__uniweb {
  display: block;
  width: 100%;
  max-width: 12rem;
  height: 4rem;
  margin-top: 2rem;
  border-radius: .4rem;
  background: #333;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .header-menu__uniweb {
    max-width: 24.4rem;
    font-size: 1.1rem;
  }

  .header-menu__uniweb br {
    display: none;
  }
}

.hidden {
  display: none;
}

/**
* @file _footer.scss
**/
footer {
  background: #ffffff;
  width: 100%;
  max-width: 120rem;
  padding: 12rem 5rem 4rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 0;
  }
}

.is-sp .header-menu__wrapper {
  -webkit-transform: translate(0);
  transform: translate(0);
  position: static;
  width: 100%;
  height: auto;
  padding: 6rem 4rem;
  margin: 5rem 0 3rem;
}

.pagetop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .pagetop {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.pagetop__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagetop-arrow {
  width: 4rem;
  height: 4rem;
  background-color: #333333;
  color: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 4rem;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .footer-menu {
    margin-top: 5.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .footer-menu__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer-menu__links a {
  text-decoration: none;
  color: #333333;
}

.footer-menu__links a:last-of-type {
  padding-left: 3rem;
}

@media screen and (max-width: 768px) {
  .footer-menu__copyright {
    font-size: 1rem;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}

/**
* @file _l-common.scss
**/
html {
  font-size: 62.5%;
}

body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  display: none;
  position: relative;
}

.is-pc {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
}

.is-sp {
  display: none !important;
}

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

img {
  width: 100%;
}

/***************************************************
 セクション
***************************************************/
.section__wrapper {
  position: relative;
  padding-top: 12rem;
}

@media screen and (max-width: 768px) {
  .section__wrapper {
    padding-top: 5rem;
  }
}

.section-title {
  padding: 3rem 2rem;
  position: absolute;
  top: 5rem;
  right: 5rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  font-family: a-otf-ryumin-pr6n, Yu Mincho, YuMincho, serif;
  font-weight: normal;
  letter-spacing: 0.2em;
  white-space: nowrap;
  z-index: 998;
}

@media screen and (max-width: 768px) {
  .section-title {
    position: relative;
    margin: 0 auto;
    top: 0;
    left: 0;
    font-size: 1.5rem;
  }
}

.section-title::before, .section-title::after {
  content: '';
  width: 1rem;
  height: 1rem;
  border-top: .2rem solid #000000;
  border-right: .2rem solid #000000;
  position: absolute;
}

.section-title::before {
  top: 0;
  right: 0;
}

.section-title::after {
  bottom: 0;
  left: 0;
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.section-title span {
  background-color: #ffffff;
}

/***************************************************
 取り組み 画像リスト
***************************************************/
.project__slide-list-item {
  position: relative;
}

.project__slide-list-item .project-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .3rem 1rem;
  border: .1rem solid #E6E6E6;
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.5);
  font-family: "Noto Sans JP", sans-serif;
}

/***************************************************
 お知らせ
***************************************************/
.news__contents {
  width: 100%;
  max-width: 83rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .news__contents {
    padding: 0 2rem;
  }
}

.news__contents-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

@media screen and (max-width: 768px) {
  .news__contents-content-area {
    margin-top: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 4rem;
  }
}

.news__contents-content-area::after {
  content: '';
  width: .1rem;
  height: 100%;
  background-color: #CCCCCC;
  position: absolute;
  top: 0;
  left: 33rem;
}

@media screen and (max-width: 768px) {
  .news__contents-content-area::after {
    display: none;
  }
}

.news__block.sns {
  width: 36.14458%;
}

@media screen and (max-width: 768px) {
  .news__block.sns {
    width: 30rem;
    margin: 0 auto;
  }
}

.news__block .sns__wrapper {
  border: .1rem solid #C6C6C6;
  border-radius: .7rem;
  padding: 4rem 3rem 3rem;
  position: relative;
}

.news__block .sns__title {
  font-size: 1.1rem;
  font-weight: normal;
  position: absolute;
  top: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.news__block .sns__title span {
  padding: 0 1rem;
  background-color: #ffffff;
}

.news__block .sns__list-item {
  margin-bottom: 1rem;
}

.news__block .sns__list-item:last-child {
  margin-bottom: 0;
}

.news__block .sns__list-item_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news__block .sns__list-item_image {
  width: 5rem;
  background-color: #EFEFEF;
  border-radius: .3rem;
}

.news__block .sns__list-item_detail {
  width: 79.83193%;
  padding-left: 1rem;
}

.news__block .sns__list-item_detail .name {
  font-size: 1.1rem;
  font-family: "Noto Sans JP", sans-serif;
}

.news__block .sns__list-item_detail .text {
  font-size: 1rem;
  font-family: a-otf-ryumin-pr6n, Yu Mincho, YuMincho, serif;
}

.news__block.news {
  width: 56.62651%;
}

@media screen and (max-width: 768px) {
  .news__block.news {
    width: 100%;
    padding-bottom: 3rem;
    border-bottom: 0.1rem solid #CCC;
  }
}

.news__block .news__list-item {
  margin-bottom: 1rem;
}

.news__block .news__list-item:last-child {
  margin-bottom: 0;
}

.news__block .news__list-item_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news__block .news__list-item_image {
  width: 6rem;
  border-radius: .3rem;
  border: .1rem solid #EBEBEB;
}

.news__block .news__list-item_detail {
  padding-left: 1rem;
  width: calc(100% - 6rem);
}

.news__block .news__list-item_detail .status {
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news__block .news__list-item_detail .status .tag {
  padding: .2rem 1.4rem;
  border-radius: 2rem;
  border: .1rem solid #CCCCCC;
  margin-right: 1rem;
}

.news__block .news__list-item_detail .title {
  font-size: 1rem;
  margin-top: .3rem;
  text-decoration: underline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news__block .news__list-item_detail .title span:not(.newpage-icon) {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news__block .news__list-item_detail .title.newpage span:not(.newpage-icon) {
  width: auto;
  max-width: calc(100% - 1.6rem);
}

.news__block .news__list-item_detail .title.newpage .newpage-icon {
  width: 1.6rem;
  height: 1.6rem;
}

/***************************************************
 ボタン
***************************************************/
.more-button__wrapper {
  margin-top: 2rem;
}

.more-button__wrapper .button {
  display: block;
  background-color: #333333;
  width: 24.4rem;
  height: 4rem;
  margin: 0 auto;
  border-radius: .4rem;
  padding: 1.2rem 0;
  text-align: center;
  color: #ffffff;
  font-size: 1.1rem;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .more-button__wrapper .button {
    width: 20rem;
  }
}

.more-button__wrapper .button:hover {
  background-color: #404040;
}

/***************************************************
 アコーディオンボタン
***************************************************/
.accordion_button {
  margin-top: 4.5rem;
}

.accordion_button .button {
  cursor: pointer;
  font-size: 1.1rem;
  width: 24rem;
  height: 4rem;
  margin: 0 auto;
  border: 0.1rem solid #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/***************************************************
 お問い合わせ
***************************************************/
.contact__contents {
  width: 100%;
  max-width: 58.5rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .contact__contents {
    padding: 0 2rem;
  }
}

.contact__introduction {
  margin-top: 3rem;
  font-size: 1.2rem;
  font-family: a-otf-ryumin-pr6n, Yu Mincho, YuMincho, serif;
  line-height: calc(23 / 12);
}

.contact__body {
  margin-top: 3rem;
}

.contact__form-item {
  margin-top: 3rem;
}

.contact__form-item:first-of-type {
  margin-top: 0;
}

.contact__form-item label {
  font-size: 1.7rem;
}

@media screen and (max-width: 768px) {
  .contact__form-item label {
    font-size: 1.4rem;
  }
}

.contact__form-item input {
  border: .1rem solid #CCCCCC;
  height: 4.4rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .contact__form-item input {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}

.contact__form-item input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact__form-item input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact__form-item input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact__form-item input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact__form-item input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.contact__form-item input:focus {
  outline: none;
}

.contact__form-item textarea {
  width: 100%;
  height: 30rem;
  border: .1rem solid #CCCCCC;
  margin-top: 1.5rem;
  padding: 1rem;
  resize: vertical;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .contact__form-item textarea {
    font-size: 1.4rem;
  }
}

.contact__form-item textarea:focus {
  outline: none;
}

.contact__form-item select {
  width: 100%;
  height: 4.4rem;
  border: .1rem solid #CCCCCC;
  background-color: #ffffff;
  margin-top: 1.5rem;
  padding: 0 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 0;
}

.contact__form-item select:focus {
  outline: none;
}

@media screen and (max-width: 768px) {
  .contact__form-item select {
    font-size: 1.4rem;
  }
}

.contact__form-select {
  position: relative;
}

.contact__form-select::after {
  content: '';
  background-image: url("../images/icon_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 45%;
  right: 1rem;
}

.contact__form-wide input {
  width: 100%;
}

.contact__form-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
}

.contact__form-middle input {
  width: 100%;
}

.contact__form-item .contact__form-error, 
.contact__form-item .wpcf7-not-valid-tip {
  color: #FF0000;
  font-size: 1.2rem;
  font-family: a-otf-ryumin-pr6n, Yu Mincho, YuMincho, serif;
  margin-top: 1rem;
}

.contact__bottom {
  margin-top: 3rem;
}

.contact__bottom-text {
  font-family: a-otf-ryumin-pr6n, Yu Mincho, YuMincho, serif;
  font-size: 1.2rem;
  line-height: calc(23 / 12);
}

.wpcf7-form.invalid .wpcf7-response-output,
.contact__bottom-error {
  border-color: #FF0000 !important;
  border: .1rem solid;
  padding: 1rem 1.4rem;
  color: #FF0000;
  font-family: a-otf-ryumin-pr6n, Yu Mincho, YuMincho, serif;
  font-size: 1.2rem;
  margin-top: 3rem;
}

.contact__bottom-submit .submit-button {
  display: block;
  width: 24.4rem;
  height: 4rem;
  margin: 2.5rem auto 0;
  text-align: center;
  font-size: 1.1rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  background-color: #333333;
  border-radius: .3rem;
  cursor: pointer;
}

.contact__bottom-submit .submit-button:hover {
  background-color: #404040;
}

/***************************************************
 サンクスページ
***************************************************/
#thanks {
  height: 100vh;
  position: relative;
}

.thanks__body {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.thanks__message {
  text-align: center;
  font-size: 1.2rem;
  font-family: a-otf-ryumin-pr6n, Yu Mincho, YuMincho, serif;
  line-height: calc(23 / 12);
}

@media screen and (max-width: 768px) {
  .thanks__message {
    margin-top: 4rem;
  }
}

.thanks .more-button__wrapper {
  margin-top: 10rem;
}
