@charset "UTF-8";
/*
Theme Name:AIDER child
Theme URI:https://tcd-theme.com/tcd115
Description:WordPressテーマ「AIDER」の子テーマ
Template:aider_tcd115
Author:TCD
Author URI:https://tcd-theme.com/
Version:1.0
*/
/*
  ここから下にCSSを追記してください。
*/
:root {
  --tcdce-base-line-height-pc: 1.75;
  --tcdce-base-line-height-sp: 1.75;
}
:root,
:root ::before,
:root ::after {
  --tcd-font-type1: YakuHanJP, "Noto Sans JP", sans-serif !important;
}

#glocal-icons {
  display: none;
}

.fc-main {
  color: #005ca2;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

main .tcdce-body p,
main .editor-styles-wrapper p {
  text-align: justify;
}
main .tcdce-body img.alignright,
main .editor-styles-wrapper img.alignright {
  display: block;
  float: none;
  margin: 0 auto 1em;
}
@media (min-width: 640px) {
  main .tcdce-body img.alignright,
  main .editor-styles-wrapper img.alignright {
    float: right;
    margin: 0 0 1.8em 1.8em;
  }
}

.contact_phone_box {
  margin-bottom: 60px;
}
@media (min-width: 960px) {
  .contact_phone_box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 500px;
    margin: 60px auto 100px;
  }
  .contact_phone_box::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 53%;
    right: auto;
    width: 2px;
    height: 100%;
    background: #DDDDDD;
    border-left: 1px solid #F9F9F9;
  }
}
.contact_phone_box .phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}
@media (min-width: 960px) {
  .contact_phone_box .phone {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-preferred-size: 245px;
        flex-basis: 245px;
    margin-bottom: 0;
  }
}
.contact_phone_box .phone .icon_tel {
  -ms-flex-preferred-size: 32px;
      flex-basis: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 0.4em;
  fill: #005ca2;
}
.contact_phone_box .phone .phone_number {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-size: 32px;
  font-weight: bold;
  white-space: nowrap;
}
@media (min-width: 960px) {
  .contact_phone_box .phone_detail {
    -ms-flex-preferred-size: 200px;
        flex-basis: 200px;
  }
}
.contact_phone_box .phone_detail dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact_phone_box .dt-dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact_phone_box .dt-dd dt::after {
  content: "：";
  margin: 0 0.3em;
}

.googlemap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  margin-bottom: 2em;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wp-admin .contact_phone_box {
  margin-bottom: 60px;
}
.wp-admin svg#glocal-icons {
  display: none;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}
.contact-form__item {
  margin-bottom: 24px;
}
.contact-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.6;
}
.contact-form__required, .contact-form__optional {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 40px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
}
.contact-form__required {
  color: #fff;
  background: #c0392b;
}
.contact-form__optional {
  color: #555;
  background: #e8e8e8;
}
.contact-form__input, .contact-form__select, .contact-form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-form__input:focus, .contact-form__select:focus, .contact-form__textarea:focus {
  outline: 2px solid #0054a6;
  outline-offset: 2px;
  border-color: #0054a6;
}
.contact-form__textarea {
  min-height: 180px;
  resize: vertical;
}
.contact-form__submit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 32px 0;
  text-align: center;
}
.contact-form__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 220px;
  padding: 14px 32px;
  border: none;
  border-radius: 999px;
  color: #fff;
  background: #0054a6;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.contact-form__button:hover {
  opacity: 0.8;
}
.contact-form__button:focus {
  outline: 2px solid #0054a6;
  outline-offset: 3px;
}
.contact-form .wpcf7-previous,
.contact-form .contact-form__button {
  margin-top: 0;
}
.contact-form .contact-form__button {
  background-color: #0054a6;
}
.contact-form .wpcf7-spinner {
  position: absolute;
  inset: 0;
  margin: auto;
  background-color: green;
  opacity: 0.9;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 14px;
}

.wpcf7-response-output {
  margin: 24px 0 0;
  padding: 16px;
  border-radius: 6px;
}

h2 + .recruit-item {
  margin-top: 50px;
}

.recruit-item {
  padding: 30px 15px;
  border: solid 1px #DDDDDD;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 5px 5px 5px;
          box-shadow: rgba(0, 0, 0, 0.1) 5px 5px 5px;
}
@media (min-width: 960px) {
  .recruit-item {
    padding: 70px;
  }
}
.recruit-item + .recruit-item {
  margin-top: 20px;
}
.recruit-item .recruit_title {
  margin-bottom: 0;
  padding-left: 8px;
  font-size: 20px;
  border-left: solid 5px #005ca2;
}
.recruit-item .recruit_toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.recruit-item .recruit_toggle::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin-bottom: 4px;
}
.recruit-item .recruit_content {
  position: relative;
  max-height: 5em;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
  margin-top: 25px;
}
.recruit-item .recruit_content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5em;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.recruit-item .recruit_more {
  display: block;
  width: 100%;
  margin-top: 10px;
  margin-bottom: -20px;
  padding: 8px;
  background: none;
  border: none;
  font-size: 14px;
  color: #005ca2;
  text-align: center;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
}
.recruit-item .recruit_more::after {
  content: "»";
  display: block;
  font-size: 12px;
  line-height: 1;
  margin-top: 4px;
  text-decoration: none;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.recruit-item .recruit_more:hover {
  opacity: 0.7;
}
.recruit-item.is-open .recruit_toggle::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-bottom: -4px;
}
.recruit-item.is-open .recruit_content::after {
  opacity: 0;
  pointer-events: none;
}
.recruit-item.is-open .recruit_more {
  display: none;
}
.recruit-item .recruit_content_info_item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #DDDDDD;
}
.recruit-item .recruit_content_info_item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
@media (min-width: 960px) {
  .recruit-item .recruit_content_info_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit-item .recruit_content_info_item h4 {
  font-size: 16px;
}
.recruit-item .recruit_content_info_item p {
  font-size: 14px;
  line-height: 1.8;
}
.recruit-item .recruit_button {
  margin-top: 30px;
  text-align: center;
}
@media (min-width: 960px) {
  .recruit-item .recruit_button {
    margin-top: 50px;
  }
}
.recruit-item .btn_recruit {
  display: block;
  background: #005ca2;
  min-width: 240px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border: none;
  text-decoration: none;
}
.recruit-item .btn_recruit:hover {
  opacity: 0.8;
}

.company-overview {
  font-size: 16px;
  border-top: 1px solid #ddd;
}
.company-overview dt,
.company-overview dd {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
}
.company-overview dt h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.company-overview dd {
  line-height: 1.8;
}
.company-overview h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.company-overview strong {
  margin-top: 12px;
  font-weight: 700;
}
.company-overview strong:first-child {
  margin-top: 0;
}
.company-overview a {
  color: #005ca2;
  text-decoration: underline;
}
@media (hover: hover) {
  .company-overview a:hover {
    text-decoration: none;
  }
}
@media (min-width: 640px) {
  .company-overview {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 180px 1fr;
    grid-template-columns: 180px 1fr;
  }
  .company-overview dt,
  .company-overview dd {
    padding: 22px 0;
  }
  .company-overview dt {
    padding-right: 24px;
  }
  .company-overview dd {
    padding-left: 24px;
  }
}

.company-group + .company-group {
  margin-top: 24px;
}

.company-history {
  margin: 0;
  padding-left: 1.2em;
}
.company-history li {
  line-height: 1.8;
}
.company-history li + li {
  margin-top: 6px;
}

:is(.tcdce-body, .editor-styles-wrapper) ul.partner {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin: 0;
  padding: 0;
}
@media (min-width: 960px) {
  :is(.tcdce-body, .editor-styles-wrapper) ul.partner {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
:is(.tcdce-body, .editor-styles-wrapper) ul.partner h4,
:is(.tcdce-body, .editor-styles-wrapper) ul.partner h5,
:is(.tcdce-body, .editor-styles-wrapper) ul.partner h6 {
  margin: 0;
}
:is(.tcdce-body, .editor-styles-wrapper) ul.partner h4 {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 8px;
  border: solid 1px #0054a6;
  font-size: 16px;
  color: #0054a6;
}
:is(.tcdce-body, .editor-styles-wrapper) ul.partner h5,
:is(.tcdce-body, .editor-styles-wrapper) ul.partner h6 {
  font-size: 14px;
}
:is(.tcdce-body, .editor-styles-wrapper) ul.partner h6 {
  font-weight: normal;
}
:is(.tcdce-body, .editor-styles-wrapper) ul.partner > li {
  display: inline-block;
  width: 100%;
  margin: 0 0 40px;
  list-style: none;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  page-break-inside: avoid;
}
:is(.tcdce-body, .editor-styles-wrapper) ul.partner ul.childs {
  margin: 12px 0 0px;
  padding: 0;
  list-style: none;
}
:is(.tcdce-body, .editor-styles-wrapper) ul.partner ul.childs > li {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  page-break-inside: avoid;
  background-color: #eee;
  padding: 10px;
}
:is(.tcdce-body, .editor-styles-wrapper) ul.partner ul.childs > li:not(:last-child) {
  margin-bottom: 24px;
}
:is(.tcdce-body, .editor-styles-wrapper) ul.partner ul.grandchilds {
  margin: 8px 0 0;
  padding-left: 20px;
  list-style: disc;
}
:is(.tcdce-body, .editor-styles-wrapper) ul.partner ul.grandchilds > li {
  margin-bottom: 6px;
}