<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* 共通部分------------------------------ */

* {
  font-family: "Helvetica Neue", Arial, YuGothic, "Yu Gothic Medium",
    "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo,
    sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.76;
}

.d_none {
  display: none;
}

.for-pc {
  display: none;
}

.for-sp {
  display: block;
}

.mincho {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN",
    "Sawarabi Mincho", "Yu Mincho", "MS PMincho", serif;
}

.content_head.pd-10 {
  padding-top: 10px;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.customize-support #wpadminbar {
  position: fixed;
}

.customize-support .menu-btn,
.customize-support header.page-header {
  margin-top: 45px;
}

.content_wrap {
  position: relative;
  overflow-x: hidden;
}

/* 複数で同じ挙動をするもの */

.menu nav,
.news,
ol.breadCrumb,
.content_div {
  width: 85%;
  margin: 0 auto;
  max-width: 870px;
}

.entry:hover,
.mes_card ul li a:hover,
.foot_menu a:hover {
  opacity: 0.6;
  transition: 0.3s;
}

/* 複数で同じ挙動をするものここまで */

/* パンくず */

.bread_wrap {
  border-top: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
  width: 100%;
  margin: 70px 0 0;
}

ol.breadCrumb {
  display: flex;
  list-style-type: none;
  height: 32px;
  align-items: center;
  padding: 0;
}

ol.breadCrumb li::after {
  padding-left: 0;
  padding-right: 0.25rem;
  content: "＞";
  font-size: 0.625rem;
}

ol.breadCrumb li:last-child::after {
  content: "";
  padding: 0;
}

ol.breadCrumb li a {
  text-decoration: none;
}

ol.breadCrumb li a span {
  font-size: 0.8rem;
}

/* パンくずここまで */

#animation_container {
  height: 100vh !important;
}

#animation_container canvas {
  height: 100vh !important;
  width: auto !important;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}

.content_wrap header {
  position: relative;
}

header.page-header {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}

.page-header.sticky {
  background-color: #ffffff;
  transition: 0.3s;
}

.page-header {
  padding: 0.625em 0;
  height: 50px;
}

.page-header h1 {
  margin: 0;
  font-size: 0;
  height: 50%;
}

.page-header h1 img {
  height: 15px;
  padding-left: 10px;
}

.recHead_btn a {
  text-decoration: none;
  padding: 0.3rem 0.4rem;
  border: 1px solid #d02c25;
  color: #d02c25;
  background-color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  margin: 0 0 0 1rem;
}

.recHead_btn a:hover {
  color: #fff;
  background-color: #d02c25;
  transition: 0.3s;
}

.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 50px;
  height: 50px;
  display: flex;
  background: #d02c25;
  color: #fff;
  border-radius: 30px;
}

.menu-btn span {
  top: 50%;
  left: 25%;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  position: absolute;
  height: 2px;
  width: 25px;
  border-radius: 3px;
  display: block;
  content: "";
  cursor: pointer;
  background: #ffffff;
  transition: 0.3s;
}

.menu-btn span:before {
  bottom: 10px;
}

.menu-btn span:after {
  bottom: -10px;
}

.menu-btn.is-active span,
.menu-btn.is-active span:before {
  background: #d02c25;
}

.menu-btn.is-active span {
  transform: rotate(45deg);
}

.menu-btn.is-active span:before {
  transform: rotate(-90deg);
  bottom: 0;
}

.menu-btn.is-active span:after {
  display: none;
}

.menu-btn.is-active {
  border: 1px solid #d02c25;
  background: none;
  transition: 0.3s;
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
}

.menu nav {
  margin: 50px 0;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.menu li.menu__item {
  width: 100%;
  height: auto;
  padding: 0.5em 1rem;
  box-sizing: border-box;
  font-size: 1.2rem;
}

.menu__item a.detail {
  font-size: 0.8rem;
  font-weight: 300;
  height: auto;
  width: auto;
  margin: 0;
  justify-content: flex-start;
  font-weight: 600;
}

.menu__item a.detail::before {
  content: "-";
}

.menu a {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}

/* アニメーション前のメニューの状態 */
.menu {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

/* アニメーション後のメニューの状態 */
.menu.is-active {
  pointer-events: all;
  opacity: 1;
  background-image: url(../img/menu_bg.jpg);
  background-position: top center;
  background-size: cover;
  overflow-y: scroll;
}

/* ページ上部にもどるボタン */
#topBtn {
  position: fixed;
  right: 50%;
  bottom: 10px;
  display: block;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 25px;
  width: 50px;
  height: 50px;
  transform: translate(50%, 0%);
  -webkit-transform: translate(50%, 0%);
  -ms-transform: translate(50%, 0%);
  z-index: 99;
}

#topBtn::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 0px;
  border-top: solid 2px #707070;
  border-right: solid 2px #707070;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 28%;
  margin-top: -4px;
}

#topBtn:hover {
  opacity: 0.8;
  transition: 0.3s;
  cursor: pointer;
}

footer {
  background-color: #fff;
  margin-top: 64px;
  border-top: 1px solid #707070;
}

.foot_logo {
  text-align: center;
  padding: 2em 0;
}

.foot_logo img {
  width: 225px;
}

.foot_logo span {
  display: block;
  text-align: center;
}

/*foot_menu*/

.foot_menu p {
  border-bottom: 1px solid #707070;
  padding-top: 1rem;
}

.foot_menu p a {
  font-size: 1rem;
}

.foot_menu nav {
  padding: 1em 0;
}

.foot_menu ul {
  list-style-type: none;
  padding: 0;
  margin-top: -0.3rem;
}

.foot_menu li,
.foot_menu a {
  color: #333333;
}

.foot_menu li {
  padding: 0.5em 0;
}

.foot_menu a {
  text-decoration: none;
  font-weight: 600;
  display: block;
  height: auto;
}

.foot_menu a:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.foot_menu li a.detail {
  background-color: transparent;
  margin: auto 0;
  width: auto;
}

.foot_menu li a.detail::before {
  content: "-";
}

.foot_menu .sub_menu a {
  font-size: 0.9rem;
  font-weight: 300;
}

/*foot_menuここまで*/

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

.entry {
  width: 300px;
  height: 50px;
  background-color: #d02c25;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 96px auto 32px;
  transition: 0.3s;
}

.entry a {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
}

.entry.gray {
  border: 1px solid #c4c4c4;
  background-color: #f4f4f4;
  margin-top: 32px;
}

.entry.gray a {
  color: #333;
}

/* 共通部分ここまで------------------------------ */

/* 各ページ用CSS------------------------------ */

/* TOPのみmenu------------------------------ */

.top_menu {
  background-color: #d02c25;
  position: relative;
}

.top_menu ul {
  display: flex;
  justify-content: space-evenly;
  list-style-type: none;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 1.5em 0 0;
  width: 85%;
  max-width: 870px;
}

.top_menu ul li {
  width: 46%;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  border: 2px solid #fff;
  text-align: center;
}

.top_menu ul li:hover {
  background-color: #fff;
  transition: 0.3s;
}

.top_menu ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  width: 100%;
  height: 100%;
  color: #fff;
}

.top_menu ul li a:hover {
  color: #d02c25;
  opacity: 1;
}

/* TOPページメインビジュアル */

.top_visual {
  position: relative;
}

/* 各見出し(中央寄せ) */
.content_head {
  width: 85%;
  margin: auto;
}

.content_head img {
  display: block;
  width: 100%;
  margin: 2rem auto;
}

.content_head h3 {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin: 96px 0 32px;
}

/* 上記派生 各見出し左寄せ */
.content_head.txt_head h3 {
  color: #d02c25;
}

.content_head.img_head {
  position: relative;
  height: 340px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content_head.img_head img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
  margin: 0;
  width: auto;
  height: 340px;
}

.content_head.img_head h3 {
  color: #fff;
  margin: 0;
}

.content_head h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 32px 0 16px;
}

.content_head h3.mincho {
  margin: 64px auto;
  width: 18rem;
}

/* テキスト用 */
.content_div img {
  width: 100%;
  max-width: 480px;
  margin: 2rem auto;
  display: block;
}

.suc_wrap.content_div img {
  width: 95%;
  max-width: 480px;
  margin: 2rem auto;
  display: block;
}

.content_div li img {
  height: 100%;
  margin: 2rem auto;
  display: block;
}

.description {
  padding: 0px 0 64px;
}

.description h3 {
  text-align: center;
  padding: 64px 0 32px;
  margin: 0;
  font-size: 1.2rem;
}

.description p,
.content_div p {
  line-height: 1.76;
}

/* テキスト用ここまで */

/* 概要テキスト付属_詳しく見るボタン */
.detail {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 200px;
  height: 45px;
  margin: 32px auto 0;
}

/*.detail:hover {
    background-color: #e79592;
    color: #FFFFFF;
    transition: 0.3s;
}*/

.detail.gray {
  color: #333333;
  background-color: #e3e3e3;
}

.detail.gray:hover {
  color: #707070;
  background-color: #f4f4f4;
}

.detail.white {
  border: 1px solid #c4c4c4;
  color: #333333;
  background-color: #fff;
}

.detail.white:hover {
  background-color: #c4c4c4;
}

/* 詳しく見るボタンここまで */

/* TOP_各コンテンツ用 */

/* greet */
.greet img {
  margin: 0 1em 0 1rem;
  width: 120px;
  float: right;
}

/* news */
.news ul {
  border: 1px solid #707070;
  border-bottom: none;
}

.news ul li {
  border-bottom: 1px solid #707070;
  padding: 0.5em 1rem;
}

.news ul li a {
  text-decoration: none;
  font-weight: 600;
}

.news ul li a:hover {
  text-decoration: underline;
}

.news .detail {
  border: 1px solid #707070;
  background-color: #fff;
  color: #333;
}

/* 先輩からのメッセージ */
.mes_card {
  width: 70%;
  margin: 0 auto;
}

.mes_card ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.mes_card ul li a {
  position: relative;
  display: flex;
  align-items: flex-end;
  background-color: rgba(112, 112, 112, 0.5);
  text-decoration: none;
  margin-bottom: 2rem;
  width: 240px;
  height: 240px;
  overflow: hidden;
}

.mes_card ul li a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
}

.mes_card ul li a span {
  display: flex;
  color: #ffffff;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0.675rem;
}

.mes_card ul li a span span {
  width: 40%;
  padding: 0;
}

.mes_card ul li a span .readMore {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  bottom: 0;
  color: #333;
  font-size: 14px;
  justify-content: center;
  padding: 0.675rem;
  position: absolute;
  right: 0;
}

.mes_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-top: 1rem;
}

/* MINEZAWA サクセスストーリー */

.suc_wrap a:hover {
  opacity: 0.6;
  transition: 0.3s;
}

/* TOP_各コンテンツ用ここまで */

/* 下層ページ用 */

/* 下層ページ_先輩からのメッセージ */
.content_head.img_head.mes_head img {
  width: auto;
  max-width: none;
  height: 100%;
  margin: 0;
}

.content_div ul.faq {
  border-bottom: 1px solid #c4c4c4;
}

.content_div ul.faq li {
  border-top: 1px solid #c4c4c4;
  padding: 1em 0;
}

.content_div ul.faq li span::before {
  content: "A";
  display: block;
  margin-left: -0.5rem;
  margin-right: 0.5rem;
}

.content_div ul.faq li span {
  display: flex;
  text-indent: 1rem;
}

.content_div ul.faq li span.quest_head {
  font-weight: 600;
}

.content_div ul.faq li span.quest_head::before {
  content: "Q";
}

.content_div ul.schedule {
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 96px;
}

.content_div ul.schedule li {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
}

.content_div ul.schedule li:nth-child(odd) {
  background-color: #e3e3e3;
}

.content_div ul.schedule li span {
  display: block;
  width: 100%;
}

.content_div ul.schedule li span.time,
.content_div ul.schedule li span span {
  font-weight: 600;
}

.content_div ul.schedule li span.time {
  width: 6rem;
}

.content_div ul.schedule li span span {
  padding-bottom: 0.3rem;
}

.content_column {
  background-color: #f4f4f4;
  padding: 2rem;
  margin: 96px auto;
  width: 60%;
  min-width: 300px;
}

.content_column h3 {
  margin: 16px 0 0;
}

/*リセット*/
.heading_name p,
.heading_name h2,
.heading_name h3,
.heading_name h4 {
  margin: 0;
  line-height: 1;
}

.content_div.heading_name {
  background-color: #f4f4f4;
  margin: 0 -200%;
  padding: 2rem 200%;
  width: 100%;
}

.heading_name {
  margin: 2rem 0;
}

.heading_name h2 {
  font-size: 1.6rem;
  color: #d02c25;
  line-height: 1.76;
  margin: 1rem 0;
}

.heading_name h3 {
  margin: 0.5rem 0 0;
  font-size: 1.2rem;
}

.heading_name h4 {
  background-color: #d02c25;
  width: 10rem;
  font-weight: 300;
  padding: 0.5rem;
  color: #fff;
}

/* 下層コンテンツ用 カードデザインCSS */
.card_wrap {
  width: 65%;
  max-width: 870px;
  margin: 96px auto -32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.case_card {
  width: 45%;
  min-width: 240px;
  max-width: 480px;
  margin-bottom: 32px;
  border: solid 1px #707070;
}

.case_card img {
  width: 100%;
}

.case_card a {
  text-decoration: none;
}

.case_card span {
  display: block;
  margin-bottom: 0.625rem;
  font-weight: 600;
}

.case_card p {
  margin: 0;
  padding: 1rem;
}

/* 下層ページ_募集要項 */
.tab_content .content_div.req_wrap {
  width: 100%;
  margin: 0;
}

.tab_content .content_head h3 {
  margin: 64px 0 32px;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  padding-top: 64px;
  padding-bottom: 32px;
  background-color: #fff;
  width: 100%;
  max-width: 870px;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab__item {
  width: calc(100% / 2);
  height: 50px;
  background-color: #e79592;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}

/*ラジオボタンを全て消す*/
input[name="tab__item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#new-entry:checked ~ #new-entry_content,
#career-entry:checked ~ #career-entry_content {
  display: block;
  padding: 0;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab__item {
  background-color: #d02c25;
  color: #fff;
}

.tab_content ul {
  border-bottom: 1px solid #707070;
}

.tab_content li {
  padding: 1em 0;
  border-top: 1px solid #707070;
}

.tab_content li span {
  display: block;
  font-weight: 600;
}

/* 下層コンテンツ_エントリーフォーム */
.rec_form #new-entry_content.tab_content,
.rec_form #career-entry_content.tab_content {
  display: block;
}

.rec_form .tabs span .tab__item {
  text-decoration: none;
}

.rec_form .tabs span .tab__item.red {
  background-color: #d02c25;
}

.rec_form ul.form {
  width: 100%;
  margin: 0 auto;
}

.rec_form ul.form p.attention {
  display: none;
}

.rec_form form.init ul.form p.init {
  display: block;
}

.rec_form form.custom-wpcf7c-confirmed ul.form p.confirmed {
  display: block;
}

.rec_form ul.form li span input,
.rec_form ul.form li span textarea {
  background-color: #e3e3e3;
  padding: 0.5rem;
  border: none;
  width: -webkit-fill-available;
}

.rec_form ul.form li br {
  display: none;
}

.rec_form ul.form li label {
  margin: 1em 0;
  display: block;
}

.rec_form ul.form li label span {
  display: inline-block;
  color: #fff;
  background-color: #d02c25;
  padding: 0.2em 0.5rem;
  border-radius: 10px;
  margin-right: 1rem;
}

.rec_form ul.form li span.harf {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.rec_form ul.form li span.harfCont {
  width: 48%;
}

.rec_form ul.form p input.wpcf7-confirm {
  width: 300px;
  height: 3rem;
  border: none;
  border-radius: 10px;
  color: #fff;
  background-color: #d02c25;
}

.rec_form ul.form p input.wpcf7-back,
.rec_form ul.form p input.wpcf7-submit {
  width: 300px;
  height: 3rem;
  border: none;
  border-radius: 10px;
  color: #fff;
  background-color: #d02c25;
  margin: 0 1rem 1rem 0;
}

.m-sp {
  display: none;
}
.m-pc {
  display: contents;
}
@media screen and (max-width: 480px) {
  .m-sp {
    display: contents;
  }
  .m-pc {
    display: none;
  }
}
</pre></body></html>