@charset "UTF-8";
:root {
  --red: 208 78 78;
}

.Conf_Area {
  display: none;
}

.ContactForm_Sec {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .ContactForm_Sec {
    padding-bottom: 40px;
  }
}

.ContactForm_Heading {
  display: flex;
  font-family: var(--En_Font);
  align-items: end;
  column-gap: 20px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .ContactForm_Heading {
    flex-direction: column;
    align-items: start;
  }
}

.ContactForm_Heading_En {
  font-size: 2.625rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(var(--main_rgb));
}
@media screen and (max-width: 768px) {
  .ContactForm_Heading_En {
    font-size: 2.0625rem;
  }
}

.ContactForm_Heading_Ja {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding-bottom: 8px;
  color: rgba(var(--main_rgb));
  font-family: var(--Jp_Font);
}

@media screen and (max-width: 768px) {
  .ContactForm_Heading_Ja {
    font-size: 0.875rem;
  }
}

.Contact_Area {
  border-radius: 70px;
  padding: 124px 90px;
  background-color: rgb(var(--gray_50));
  position: relative;
}
@media screen and (max-width: 768px) {
  .Contact_Area {
    border-radius: 50px;
    padding: 65px 15px;
    background-color: rgb(var(--gray_50));
  }

  .Contact_Area .text-center {
    text-align: start !important;
  }
}

.Contact_Explanation {
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.06em;
}

.Contact_Area_Handwritten {
  position: absolute;
  right: -19px;
  top: -29px;
  width: 304px;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .Contact_Area_Handwritten {
    position: absolute;
    right: -11px;
    top: -15px;
    width: 152px;
    max-width: 100%;
  }
}
.Contact_Form_Group {
  padding: 42px 32px 40px 42px;
  border-bottom: 1px solid rgb(var(--gray_75));
  display: grid;
  grid-template-columns: 30% 1fr;
  column-gap: 30px;
}

@media screen and (max-width: 992px) {
  .Contact_Form_Group {
    padding: 38px 0 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .Contact_Form_Group {
    padding: 38px 0 40px 0;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .Contact_Form_Heading {
    margin-bottom: 10px;
  }
}

.Contact_Form_Label {
  display: inline;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.Contact_Form_Select,
.Contact_Form_Input,
.Contact_Form_Textarea,
.Conf_Value {
  background-color: rgb(var(--white));
  width: 100%;
  padding: 0.7em;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #707070;
  border-radius: 2px;
}

.Conf_Value.Textarea {
  min-height: 240px;
}

.Contact_Form_Select::-ms-expand {
  display: none;
}

.Contact_Form_Select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* select要素の矢印アイコンのCSS */
  background-image: url(../img/caret-down.svg);
  background-repeat: no-repeat;
  background-size: 12px 10px;
  background-position: right 10px center;
}

.Contact_Form_Textarea {
  min-height: 130px;
}

.Contact_Form_Input::placeholder {
  color: rgb(var(--gray_75));
}

.Contact_Form_Input::selection,
.Contact_Form_Textarea::selection {
  background: #b3d4fc; /* 通常の青っぽい選択色 */
  color: #000; /* テキスト色を黒に */
}

/* 必須ラベル */
.Required {
  background-color: rgb(var(--red));
  color: rgb(var(--white));
  border-radius: 2px;
  padding: 1px 4px 2px 4px;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  position: relative;
  margin-left: 8px;
}

.Required::before {
  content: '*';
  position: absolute;
  right: -14px;
  top: -12px;
  font-size: 1.3em;
  color: rgb(var(--red));
}

/* ラジオボタン */
.Radio_Group {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* .Radio_Group input[type='radio'] {
  display: none;
} */

.Radio_Label {
  position: relative;
  padding-left: 31px;
  cursor: pointer;
  user-select: none;
}

/* 外枠の丸 */
.Radio_Label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0px;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #1b63b4;
  border-radius: 50%;
  background: rgba(var(--white) / 1);
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

/* 中の点 */
.Radio_Label::after {
  content: '';
  position: absolute;
  left: 8%;
  top: 23%;
  width: 0.875rem;
  height: 0.875rem;
  background: #1b63b4;
  border-radius: 50%;
  opacity: 0;
}

/* チェックされたとき */
.Radio_Group input[type='radio']:checked + .Radio_Label::after {
  opacity: 1;
}

.Radio_Label:hover::before {
  border-color: #0078ff;
}

/* contactform7対応 */
/* ラジオボタングループ全体 */
.Radio_Group .wpcf7-form-control.wpcf7-radio {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* input自体は非表示 */
.Radio_Group .wpcf7-list-item input[type='radio'] {
  opacity: 1;
  position: absolute;
  z-index: 99;
  width: 24px;
  height: 100%;
  background: transparent;
  top: 0;
  left: 0;
}

/* ラベル全体 */
.Radio_Group label {
  position: relative;
  padding-left: 31px;
  cursor: pointer;
  user-select: none;
  font-size: 1rem;
  line-height: 1.5;
}

/* 外枠の丸 */
.Radio_Group label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #1b63b4;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

/* 中の点（チェック時に出す） */
.Radio_Group label::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  width: 0.875rem;
  height: 0.875rem;
  background: #1b63b4;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.Radio_Group label:has(input[type='radio']:checked)::after {
  opacity: 1;
}

.Radio_Label input[type='radio']:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* hover時の枠線 */
.Radio_Group label:hover::before {
  border-color: #0078ff;
}

.Contact_Form_Address_Group {
  /* padding: 42px 32px 40px 42px; */
  margin-bottom: 14px;
  display: grid;
  grid-template-columns: 30% 1fr;
  column-gap: 30px;
}

@media screen and (max-width: 768px) {
  .Contact_Form_Address_Group {
    margin-bottom: 14px;
    padding: 0;
    display: grid;
    grid-template-columns: 26% 1fr;
    align-items: center;
  }

  .Contact_Form_Address_Group .Contact_Form_Label {
    font-size: 14px;
  }
}

/* 住所 */
.Postal_Wrap {
  display: flex;
  align-items: center;
  gap: 18px;
}

.Postal_Mark {
  font-size: 1.25rem;
}

/* お問い合わせボタン */
.Contact_Btn_Wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.Contact_Btn {
  background-color: rgba(var(--main_rgb));
  color: rgba(var(--white) / 1);
  border-radius: 9999px;
  font-weight: 900;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 280px;
  width: 100%;
  position: relative;
}

.Contact_Btn.Conf {
  background-color: rgba(var(--recruit) / 1);
  max-width: 200px;
}

.Contact_Btn::after {
}

.Contact_Btn > .arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: block;
  color: rgba(var(--deepest) / 1);
  background-color: rgba(var(--white) / 1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 12px;
  flex-shrink: 0;
}

.Contact_Btn.Conf > .arrow {
  color: rgba(var(--recruit) / 1);
}
.Contact_Btn_InputBtn {
  width: 100%;
  height: 100%;
  display: block;
  padding: 22px 60px 22px 24px;
  background-color: transparent;
  border: none;
  color: rgba(var(--white) / 1);
  background-color: rgba(var(--main_rgb));
  border-radius: 9999px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.Contact_Btn_SubmitBtn {
  width: 100%;
  height: 100%;
  display: block;
  padding: 22px 24px 22px 24px;
  background-color: transparent;
  border: none;
  color: rgba(var(--white) / 1);
  background-color: rgba(var(--recruit) / 1);
  border-radius: 9999px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.Contact_Btn_Handwritten {
  position: absolute;
  right: -51px;
  top: -29px;
  width: 97px;
  max-width: 100%;
}

.Conf_Area .Contact_Btn_Wrap {
  flex-direction: column;
  align-items: center;
}

.Conf_Area .Contact_Btn_Wrap .Contact_Btn.Back {
  max-width: 200px;
  margin-top: 16px;
  flex-direction: row-reverse;
}

.Contact_Btn.Back > .arrow {
  right: inherit;
  left: 16px;
}

.Conf_Area .Contact_Btn_Wrap .Contact_Btn.Back button {
  color: rgba(var(--white) / 1);
  font-weight: 900;
  text-align: center;
  display: block;
  padding: 22px 24px 22px 24px;
}

.wpcf7-not-valid-tip {
  font-weight: bold !important;
  font-family: var(--Jp_Font) !important;
  font-size: 14px !important;
}

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

    エントリー

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

/* ページタイトル部分 */
#Entry_Page_Title {
  width: 100%;
  border-radius: 78px;
  color: rgba(var(--white) / 1);
  padding: 80px 6%;
  display: flex;
  align-items: center;
  gap: 10%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-bottom: 64px;
}

#Entry_Page_Title::before {
  content: '';
  position: absolute;
  bottom: -12%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  width: 100%;
  height: 0;
  padding-bottom: 20.92896%;
  background-image: url(../img/contact/EntryForm.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: 0;
}

#Entry_Page_Title.Fresh {
  background-color: rgba(var(--accent) / 1);
}

#Entry_Page_Title.Experienced {
  background-color: rgba(var(--main) / 1);
}

#Entry_Page_Title .Title_Wrap {
  flex-shrink: 0;
}

#Entry_Page_Title .Title_Wrap > span {
  font-size: 14px;
  color: rgba(var(--white) / 0.5);
  font-weight: 900;
  margin-bottom: 4px;
  display: inline-block;
}

#Entry_Page_Title .Title_Wrap h2 {
  font-size: 117px;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

#Entry_Page_Title .Title_Wrap h2 span {
  font-size: 65px;
  font-family: var(--En_Font);
  line-height: 1;
}

#Entry_Page_Title .Title_Wrap h2 span.Year {
  color: rgba(var(--accent) / 1);
  background-color: rgba(var(--white) / 1);
  min-width: 235px;
  width: 94%;
  padding: 2px 16px;
  border-radius: 9999px;
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  font-size: 27px;
  font-weight: bolder;
  position: relative;
}
#Entry_Page_Title.Experienced .Title_Wrap h2 span.Year {
  color: rgba(var(--main) / 1);
}
#Entry_Page_Title .Title_Wrap h2 > span.Year::after {
  content: '';
  position: absolute;
  top: 60%;
  left: 85%;
  transform: translateY(-50%);
  white-space: nowrap;
  width: 50%;
  height: 0;
  padding-bottom: 35.245901%;
  background-image: url(../img/contact/hope.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
}

#Entry_Page_Title > .Text_Wrap p,
#Entry_Page_Title > .Text_Wrap p > span {
  background-image: linear-gradient(transparent 95%, rgba(var(--white) / 1) 0%);
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-size: 20px;
  font-weight: bold;
  color: rgba(var(--white) / 1);
  line-height: 2;
}

.Subpage_Hero_Wrap.SP {
  display: none;
}

.Type_Title {
  color: rgba(var(--main) / 1);
  font-size: 20px;
  position: relative;
  padding-left: 24px;
  width: fit-content;
  margin-bottom: 16px;
  font-weight: 900;
}
.Type_Title::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  background-color: rgba(var(--main) / 1);
}
@media screen and (max-width: 768px) {
  #Entry_Page_Title {
    border-radius: 20px;
    justify-content: space-between;
    align-items: start;
    padding: 24px 16px;
    margin-top: 90px;
    margin-bottom: 10px;
  }

  #Entry_Page_Title::before {
    content: '';
    position: absolute;
    bottom: inherit;
    top: -7%;
    left: -4%;
    transform: inherit;
    width: 105%;
    padding-bottom: 62.46575%;
    background-image: url(../img/contact/sp_EntryForm.png);
  }

  #Entry_Page_Title .Title_Wrap {
    padding-top: 48%;
    position: relative;
  }

  #Entry_Page_Title .Title_Wrap > div {
    font-size: 14px;
    color: rgba(var(--white) / 0.5);
    position: absolute;
    left: 100%;
    bottom: 0;
    width: max-content;
    font-weight: bolder;
  }

  #Entry_Page_Title .Title_Wrap h2 {
    font-size: 78px;
  }

  #Entry_Page_Title .Title_Wrap h2 span {
    font-size: 40px;
  }

  #Entry_Page_Title .Title_Wrap h2 span.Year {
    min-width: 158px;
    padding: 2px 16px;
    font-size: 19px;
  }

  #Entry_Page_Title .Title_Wrap h2 > span.Year::after {
    top: 40%;
    left: 85%;
    transform: translateY(-50%);
    width: 60%;
    padding-bottom: 40%;
  }

  #Entry_Page_Title > .Text_Wrap p {
    background-image: none;
    font-size: 15px;
    writing-mode: vertical-rl;
    margin-right: 0;
  }

  .Subpage_Hero_Wrap.SP {
    margin-bottom: 48px;
    display: block;
  }

  .Subpage_Hero_Wrap.PC {
    display: none;
  }
}

@media screen and (max-width: 345px) {
  #Entry_Page_Title .Title_Wrap > div {
    font-size: 12px;
  }
}

/* 募集要項 */
#Description_Table_Wrap {
  margin: 0 auto 96px auto;
  width: 92%;
  max-width: 900px;
}

#Description_Table_Wrap dl {
  display: flex;
  width: 100%;
  align-items: center;
  border-bottom: solid 1px rgba(182 182 182 / 1);
  color: rgba(var(--main) / 1);
}

#Description_Table_Wrap dl:first-of-type {
  border-top: solid 3px rgba(var(--main) / 1);
}

#Description_Table_Wrap dl:last-of-type {
  border-bottom: solid 3px rgba(var(--main) / 1);
}

#Description_Table_Wrap dl dt {
  width: 35.6%;
  min-width: 180px;
  background-color: rgba(182 182 182 / 0.12);
  padding: 80px 6%;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: bolder;
  height: -webkit-fill-available;
  display: flex;
  align-items: center;
  font-weight: 900;
}

#Description_Table_Wrap dl dd {
  padding: 16px 6%;
  width: stretch;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #Description_Table_Wrap {
    width: 100%;
  }
  #Description_Table_Wrap dl dt {
    min-width: unset;
    width: 116px;
    max-width: unset;
    font-size: 16px;
    padding-inline: 14px;
  }

  #Description_Table_Wrap dl dd {
    font-size: 15px;
    padding: 16px 8px 16px 14px;
  }
}

/* THANK PAGE */

.Subpage_Txt_Area.Thanks .Subpage_Ttl_Ja.En {
  font-size: 16px;
}

.Subpage_Txt_Area.Thanks .Subpage_Ttl_En.Jp {
  font-size: 42px;
}

.Subpage_Txt_Area.Thanks .Text_Wrap {
  margin: 44px auto;
  position: relative;
  padding-top: 44px;
  color: rgba(var(--main) / 1);
  font-weight: bold;
}

.Subpage_Txt_Area.Thanks .Text_Wrap::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background-color: rgba(var(--main) / 1);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .Subpage_Txt_Area.Thanks .Subpage_Ttl_Ja.En {
    font-size: 14px;
  }

  .Subpage_Txt_Area.Thanks .Subpage_Ttl_En.Jp {
    font-size: 30px;
  }

  .Subpage_Txt_Area.Thanks .Text_Wrap p.text-center {
    text-align: start !important;
  }
}

/* タイトルオレンジ文字 */
.Subpage_Ttl_Orange.Thanks {
  transform: translate(-4%, -30%);
}

.Subpage_Ttl_Orange.Conf {
  width: 120px;
  transform: translate(4%, -28%);
}

/* ==================

  Internship

================== */

.About_Chiba_Bg_Area {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  margin-bottom: 64px;
}

.About_Chiba_Bg_Area .About_Chiba_Office_Photo {
  width: 45vw;
  height: auto;
  position: relative;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
  min-width: 650px;
}

.About_Chiba_Bg_Area .About_Chiba_Office_Photo > * {
  width: 120%;
  flex-shrink: 0;
}

.About_Chiba_Bg_Area .About_Chiba_Glass_Text {
  width: stretch;
  color: rgba(var(--main) / 1);
}

.About_Chiba_Bg_Area .About_Chiba_Glass_Text h3 {
  position: relative;
  font-weight: 900;
  font-size: 34px;
  margin-bottom: 40px;
}

.About_Chiba_Bg_Area .About_Chiba_Glass_Text h3 span {
  font-size: 52px;
  background-image: linear-gradient(transparent 60%, rgba(var(--accent) / 1) 0%);
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.About_Chiba_Bg_Area .About_Chiba_Glass_Text h3::before {
  content: '';
  background-image: url(../img/top/Search_Icon.svg);
  width: 40%;
  height: 0;
  padding-bottom: 40%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top;
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0.13;
}

.About_Chiba_Bg_Area .About_Chiba_Glass_Text h3 .min_sp {
  display: none;
}

.About_Chiba_Bg_Area .About_Chiba_Glass_Text p {
  font-weight: bold;
}

.About_Chiba_Bg_Area .About_Chiba_Glass_Text p span {
  font-weight: 900;
}

@media screen and (max-width: 1400px) {
  .About_Chiba_Bg_Area .About_Chiba_Office_Photo {
    min-width: 650px;
    max-width: 700px;
  }
}

@media screen and (max-width: 1100px) {
  .About_Chiba_Bg_Area .About_Chiba_Office_Photo {
    min-width: 400px;
    max-width: 450px;
  }

  .About_Chiba_Bg_Area .About_Chiba_Glass_Text h3 {
    font-size: 27px;
  }

  .About_Chiba_Bg_Area .About_Chiba_Glass_Text h3 span {
    font-size: 48px;
  }
}

@media screen and (max-width: 768px) {
  .About_Chiba_Bg_Area {
    flex-direction: column;
  }

  .About_Chiba_Bg_Area .About_Chiba_Office_Photo {
    min-width: inherit;
    width: 100vw;
    margin-right: inherit;
    max-width: inherit;
  }

  .About_Chiba_Bg_Area .About_Chiba_Office_Photo > * {
    width: 116%;
    display: block;
    margin: auto;
    object-position: center;
    transform: translateX(-5%);
  }

  .About_Chiba_Bg_Area .About_Chiba_Glass_Text h3 {
    text-align: center;
    font-size: 20px;
    /* margin-bottom: 40px; */
  }

  .About_Chiba_Bg_Area .About_Chiba_Glass_Text h3 span {
    font-size: 30px;
  }

  .Contact_Explanation {
    text-align: left;
  }
}

@media screen and (max-width: 370px) {
  .About_Chiba_Bg_Area .About_Chiba_Glass_Text h3 {
    font-size: 20px;
  }

  .About_Chiba_Bg_Area .About_Chiba_Glass_Text h3 span {
    font-size: 27px;
  }
}

@media screen and (max-width: 345px) {
  .About_Chiba_Bg_Area .About_Chiba_Glass_Text h3 {
    font-size: 18px;
  }

  .About_Chiba_Bg_Area .About_Chiba_Glass_Text h3 span {
    font-size: 25px;
  }
}

/* タイトルオレンジ文字 */
.Subpage_Ttl_Orange.Internship {
  transform: translate(0, -31%) !important;
  right: calc(50% - 280px) !important;
}

.Subpage_Hero_Wrap.Subpage_Internship_Hero_Wrap .Subpage_Hero_Bg_Txt_Internship {
  font-size: calc(100vw / 5);
}

@media screen and (max-width: 768px) {
  .Subpage_Ttl_Orange.Internship {
    transform: translate(20%, -31%) !important;
    right: calc(50% - 180px) !important;
  }

  .Subpage_Internship_Hero_Wrap {
    padding-bottom: 0;
  }

  .Subpage_Hero_Wrap.Subpage_Internship_Hero_Wrap .Subpage_Hero_Bg_Txt_Internship {
    font-size: calc(100vw / 4);
  }

  .Subpage_Ttl_En.Subpage_Ttl_En_Internship {
    font-size: 46px !important;
  }
}

/* マイナビ2027のリンク */
#Entry_Page_Title.Fresh {
  margin-bottom: 96px;
}
#Description_Table_Wrap {
  position: relative;
}
.MyNavi_Box {
  position: absolute;
  top: -26px;
  right: 0;
  transform: translate(0, -100%);
}

.MyNavi_Ttl {
  width: 204px;
  transform: translate(-76px, 24px);
}

.MyNavi_Link {
  width: 200px;
}
@media screen and (max-width: 768px) {
  #Entry_Page_Title.Fresh {
    margin-bottom: 64px;
  }

  #Description_Table_Wrap {
    margin: 0 auto 56px auto;
  }
}
@media screen and (max-width: 1200px) {
  .MyNavi_Ttl {
    width: 236px;
    margin: 0 auto 10px;
    transform: translate(0, 0);
  }
  .MyNavi_Link {
    width: 216px;
    margin: 0 auto 108px;
  }
}
