@charset "UTF-8";
/*******************************************
	@共通項目
********************************************/
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-repeat: no-repeat;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1rem, 1.40625vw, 1.125rem);
  line-height: 1.8;
  font-style: 400;
  color: #000;
  background-color: #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
}
.noto-sans {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

main {
  width: 100%;
  margin: auto;
}
.w-container {
  width: 100%;
  margin: auto;
  padding: 0 3%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .w-container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
  }
}

a {
  outline: none;
  text-decoration: none;
  color: #0D3A8E;
}
@media screen and (min-width: 768px), print {
  a {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  a:hover {
    color: #f00;
  }
}

a[href*="tel:"] {
  color: #0D3A8E;
  text-decoration: none;
}
@media screen and (min-width: 1080px), print {
  a[href*="tel:"] {
    color: #1a1a1a;
    pointer-events: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

.sp-only {
  display: block;
}
@media screen and (min-width: 768px), print {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media screen and (min-width: 768px), print {
  .pc-only {
    display: block;
  }
}

.txt-up {
  text-transform: uppercase;
}

.txt-cap {
  text-transform: capitalize;
}

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

.btn,
.btn-outer {
  display: block;
  width: 14em;
  height: 2.4;
  margin: 0 auto;
  padding: 0;
  color: #fff;
  font-size: clamp(0.75rem, 1.25vw, 1rem);
  font-weight: 500;
  text-align: center;
  line-height: 2.4;
  letter-spacing: 0.1em;
  border-radius: 1.5em;
  border: 1px solid #0D3A8E;
  background-color: #0D3A8E;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-image: url(../img/btn_arrow_w.svg);
  background-repeat: no-repeat;
  background-position: left 0.75em center;
  background-size: 1.1em;
}
@media screen and (min-width: 768px), print {
  .btn,
  .btn-outer {
    width: 15em;
  }
  .btn:hover,
  .btn-outer:hover {
    color: #0D3A8E;
    background-color: white;
    background-image: url(../img/btn_arrow.svg);
  }
}

.btn-outer {
  background-image: url(../img/btn_arrow_outer_w.svg);
  background-repeat: no-repeat;
  background-position: right 0.75em center;
}
@media screen and (min-width: 768px), print {
  .btn-outer {
    width: 15em;
  }
  .btn-outer:hover {
    color: #0D3A8E;
    background-color: white;
    background-image: url(../img/btn_arrow_outer.svg);
  }
}

/*　TOPへ戻る　*/
#go-to-top {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: silver;
  position: fixed;
  right: 2%;
  bottom: 3em;
}
#go-to-top a {
  display: block;
  width: 100%;
  height: 100%;
}
#go-to-top .top-arrow {
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
  left: 50%;
  right: 50%;
  margin: auto;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3.5px solid #fff;
  border-right: 3.5px solid #fff;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 768px), print {
  #go-to-top {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 4em;
  }
  #go-to-top .top-arrow {
    width: 11px;
    height: 11px;
  }
  #go-to-top:hover {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0.7;
  }
}

/*　ふわっとフェードイン　*/
.fadein {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 0.6s, 0.6s;
          transition-duration: 0.6s, 0.6s;
  -webkit-transition-timing-function: ease, ease;
          transition-timing-function: ease, ease;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/*******************************************
	@HEADER
********************************************/
/* HEADER */
.header {
  z-index: 1;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}
.header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 50px;
  margin: auto;
  padding: 0 3%;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1240px;
    height: 80px;
    padding: 0 20px;
  }
}
.header-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-logo {
  position: relative;
  z-index: 110;
}
.header-logo_image {
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 75px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .header-logo_image {
    top: 4px;
    width: 128px;
  }
}
.header-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 1em;
}
.header-link li {
  list-style: none;
  font-size: clamp(0.9375rem, 1.71875vw, 1.375rem);
  font-weight: 600;
}
.header-link_contact::before {
  content: url(../img/btn_arrow.svg);
  display: inline-block;
  width: 16px;
  height: auto;
  margin-right: 3px;
  position: relative;
  top: 2px;
  left: 0;
}
.header-link_tel span {
  display: none;
}
.header-link_tel img {
  width: 35px;
  height: 35px;
}
@media screen and (min-width: 768px) {
  .header-link_tel span {
    display: inline;
  }
  .header-link_tel::before {
    content: url(../img/icon_tel.svg);
    display: inline-block;
    width: 23px;
    height: auto;
    margin-right: 2px;
    position: relative;
    top: 1px;
    left: 0;
  }
  .header-link_tel img {
    display: none;
  }
}
.header-link_line img {
  width: 35px;
  height: 35px;
}

/*******************************************
	@FOOTER
********************************************/
.footer {
  position: relative;
  width: 100%;
  height: 4em;
  margin: 30px auto 0;
  font-size: clamp(0.625rem, 1.09375vw, 0.875rem);
  background-color: #f7f7f7;
  border-top: 2px solid #eee;
}
.footer .copyright {
  line-height: 4em;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .footer {
    width: 100%;
    margin-top: 100px;
    text-align: center;
  }
  .footer .copyright {
    line-height: 50px;
  }
}

/*******************************************
	@TOP
********************************************/
#contact,
#works,
#culture,
#apply,
#job {
  margin-top: -1em;
  padding-top: 1em;
}
@media screen and (min-width: 768px), print {
  #contact,
  #works,
  #culture,
  #apply,
  #job {
    margin-top: -2em;
    padding-top: 2em;
  }
}

.sec {
  width: 100%;
  margin: 5em auto 0;
}
@media screen and (min-width: 768px), print {
  .sec {
    max-width: 1200px;
    margin: 5em auto;
  }
}

.site-title {
  margin: 60px auto 0;
  font-size: clamp(1.25rem, 3.125vw, 2.5rem);
  text-align: center;
  line-height: 1.5;
}
.site-title span {
  display: block;
  margin-bottom: 0.25em;
  font-size: clamp(1rem, 1.71875vw, 1.375rem);
  color: #777;
}
@media screen and (min-width: 768px), print {
  .site-title {
    margin: 110px auto 0;
  }
  .site-title span {
    margin-bottom: 0.25em;
  }
}

.sec-head {
  margin-top: 3em;
  font-size: clamp(1.25rem, 3.125vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px), print {
  .sec-head {
    margin-top: 2em;
    text-align: left;
  }
}

.sec-body {
  margin-top: 1em;
}
@media screen and (min-width: 768px), print {
  .sec-body {
    margin-top: 1.5em;
  }
}

.flex-box {
  margin: 1em auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.flex-box .card {
  padding: 1.5em 1em;
  border: 1px solid rgba(13, 58, 142, 0.4);
  border-radius: 0.5em;
  background-color: #f7f7f7;
}
.flex-box .card + .card {
  margin-top: 1em;
}
@media screen and (min-width: 980px), print {
  .flex-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .flex-box .card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .flex-box .card + .card {
    margin-top: 0;
    margin-left: 1em;
  }
}
@media screen and (min-width: 768px), print {
  .flex-box.culture {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .flex-box.culture .card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .flex-box.culture .card + .card {
    margin-top: 0;
    margin-left: 1em;
  }
}

/* MV */
.sec-mv {
  width: 100%;
  margin: 50px auto 0;
}
.sec-mv .mv-box {
  gap: 1em;
}
.sec-mv .mv-box .text {
  text-align: center;
}
.sec-mv .mv-box .text .mv-catch {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(1.125rem, 1.71875vw, 1.375rem);
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.sec-mv .mv-box .text .mv-catch::after {
  content: "";
  width: 10em;
  height: 1px;
  display: inline-block;
  background-color: #0D3A8E;
  position: absolute;
  bottom: -0.5em;
  left: 0;
  right: 0;
  margin: auto;
}
.sec-mv .mv-box .text .mv-catch span {
  padding: 0 0.2em;
  font-family: "Noto Sans JP", sans-serif;
}
.sec-mv .mv-box .text .mv-catch span.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0.75em 0 1em;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}
.sec-mv .mv-box .text .mv-catch span.arrow::before, .sec-mv .mv-box .text .mv-catch span.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.sec-mv .mv-box .text .mv-catch span.arrow1::before {
  left: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 6%;
  height: 6px;
  border: 6px solid transparent;
  border-left: 8px solid #ccc;
}
.sec-mv .mv-box .text .mv-catch span.arrow2::before {
  left: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 7px;
  height: 7px;
  border: 7px solid transparent;
  border-left: 9px solid #777;
}
.sec-mv .mv-box .text .mv-catch span.arrow3::before {
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 9px;
  height: 9px;
  border: 9px solid transparent;
  border-left: 11px solid #333;
}
.sec-mv .mv-box .text .mv-head {
  margin-top: 0.55em;
  font-size: clamp(2.125rem, 4.6875vw, 3.75rem);
  line-height: 1.3;
}
.sec-mv .mv-box .text .mv-body {
  margin-top: 1em;
  text-align: left;
}
.sec-mv .mv-box .text .mv-link {
  margin: 1em auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.25em;
}
@media screen and (min-width: 768px), print {
  .sec-mv {
    margin: 80px auto 0;
  }
  .sec-mv .mv-box {
    gap: 2em;
  }
  .sec-mv .mv-box .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left;
  }
  .sec-mv .mv-box .text .mv-catch {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
  }
  .sec-mv .mv-box .text .mv-catch::after {
    width: 100%;
    bottom: -0.25em;
    right: auto;
    margin: 0;
  }
  .sec-mv .mv-box .text .mv-head {
    margin-top: 0.2em;
    text-align: left;
  }
  .sec-mv .mv-box .text .mv-body {
    margin-top: 0.5em;
  }
  .sec-mv .mv-box .text .mv-link {
    margin-top: 1em;
    margin-left: 0;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .sec-mv .mv-box .photo {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
}

/* Works、Culture */
.sec-works .card,
.sec-culture .card {
  font-weight: 700;
  text-align: center;
}
.sec-works .card .catch,
.sec-culture .card .catch {
  font-size: clamp(0.9375rem, 1.328125vw, 1.0625rem);
  color: #0D3A8E;
}
.sec-works .card .head,
.sec-culture .card .head {
  margin-top: 0.15em;
  font-size: clamp(1.125rem, 1.5625vw, 1.25rem);
  color: #fff;
  letter-spacing: 0.03em;
  border-radius: 0.5em;
  background-color: rgba(13, 58, 142, 0.75);
}
.sec-works .card .body,
.sec-culture .card .body {
  margin-top: 0.75em;
  font-weight: 400;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .sec-works .card,
  .sec-culture .card {
    font-weight: 700;
    text-align: center;
  }
  .sec-works .card .catch,
  .sec-culture .card .catch {
    font-size: clamp(0.9375rem, 1.328125vw, 1.0625rem);
    color: #0D3A8E;
  }
  .sec-works .card .head,
  .sec-culture .card .head {
    margin-top: 0.15em;
    font-size: clamp(1.125rem, 1.5625vw, 1.25rem);
    color: #fff;
    letter-spacing: 0.03em;
    border-radius: 0.5em;
    background-color: rgba(13, 58, 142, 0.75);
  }
  .sec-works .card .body,
  .sec-culture .card .body {
    margin-top: 0.75em;
    font-weight: 400;
    text-align: left;
  }
}

/* Flow */
.sec-flow .flow-timeline {
  margin: 1em auto;
}
.sec-flow .flow-timeline li.timeline {
  counter-increment: number;
  position: relative;
  margin-left: 3.25em;
  margin-top: 0.5em;
  padding: 0.5em 0.5em 1em;
  list-style-type: none;
  border-top: 1px solid #dddddd;
}
.sec-flow .flow-timeline li.timeline:last-child {
  border-bottom: none;
}
.sec-flow .flow-timeline li.timeline::before {
  position: absolute;
  content: counter(number, decimal-leading-zero);
  display: inline-block;
  width: 3em;
  height: 3em;
  top: 0;
  left: -3.5em;
  text-align: center;
  line-height: 3em;
  color: #0D3A8E;
  font-size: clamp(0.9375rem, 1.5625vw, 1.25rem);
  font-weight: 700;
  background-color: #dddddd;
  border-radius: 0.5em;
}
.sec-flow .flow-timeline li.timeline .head {
  font-size: clamp(1.125rem, 1.71875vw, 1.375rem);
  color: #0D3A8E;
  letter-spacing: 0.03em;
}
.sec-flow .flow-timeline li.timeline .body {
  margin-top: 0.25em;
  line-height: 1.4;
}
.sec-flow .flow-timeline li.timeline .links {
  margin-top: 0.75em;
  padding: 0.35em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f0f0f0;
  border-radius: 0.35em;
}
.sec-flow .flow-timeline li.timeline .links dt {
  width: 9em;
  font-weight: 600;
}
.sec-flow .flow-timeline li.timeline .links dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
.sec-flow .flow-timeline li.timeline .links dd .tel span {
  display: none;
}
.sec-flow .flow-timeline li.timeline .links dd .tel img {
  width: 35px;
  height: auto;
}
.sec-flow .flow-timeline li.timeline .links dd .line img {
  width: 35px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .sec-flow .flow-timeline {
    width: 90%;
  }
  .sec-flow .flow-timeline li.timeline {
    margin-top: 1.5em;
    padding: 0.75em 0.5em 1em;
  }
  .sec-flow .flow-timeline li.timeline .body {
    margin-top: 0.5em;
  }
  .sec-flow .flow-timeline li.timeline .links {
    margin-top: 0.75em;
    padding: 0.5em 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #f0f0f0;
    border-radius: 0.35em;
  }
  .sec-flow .flow-timeline li.timeline .links dt {
    width: 11em;
  }
  .sec-flow .flow-timeline li.timeline .links dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2em;
  }
  .sec-flow .flow-timeline li.timeline .links dd .tel img {
    display: none;
  }
  .sec-flow .flow-timeline li.timeline .links dd .tel span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: clamp(0.75rem, 2.03125vw, 1.625rem);
    font-weight: 600;
  }
  .sec-flow .flow-timeline li.timeline .links dd .tel span::before {
    content: url(../img/icon_tel.svg);
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-right: 0.5em;
    position: relative;
    top: 0;
    left: 0;
  }
  .sec-flow .flow-timeline li.timeline .links dd .line {
    margin-left: 2em;
  }
  .sec-flow .flow-timeline li.timeline .links dd .line img {
    width: 50px;
    height: 50px;
  }
}

/* Job */
.sec-job .job-box {
  width: 100%;
  margin: auto;
}
.sec-job .job-box tr {
  margin-top: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
}
.sec-job .job-box th {
  padding: 0.1em 0.5em;
  font-weight: 500;
  background-color: #f0f0f0;
}
.sec-job .job-box td {
  padding: 0.1em 0.5em;
}
.sec-job .job-box .process li {
  position: relative;
  margin-left: 2em;
  margin-bottom: 0.75em;
  line-height: 1.5;
  list-style-type: none;
  counter-increment: numbers;
}
.sec-job .job-box .process li::before {
  position: absolute;
  left: -2em;
  content: "［" counter(numbers) "］";
  margin-right: 0.2em;
}
.sec-job .job-box .add {
  margin-top: 1em;
  font-size: clamp(0.75rem, 1.09375vw, 0.875rem);
}
@media screen and (min-width: 768px) {
  .sec-job .job-box tr {
    margin-top: 1em;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .sec-job .job-box th {
    width: 13em;
    padding: 0.5em 0 0.5em 1em;
  }
  .sec-job .job-box td {
    width: calc(100% - 13em);
    padding: 0.5em 1em;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

/* Contact */
.sec-contact .links {
  margin-top: 0.75em;
  padding: 0.35em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(1rem, 1.5625vw, 1.25rem);
  font-weight: 600;
  background-color: #f0f0f0;
  border-radius: 0.35em;
}
.sec-contact .links dt {
  width: 9em;
}
.sec-contact .links dd.tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1.125rem, 1.71875vw, 1.375rem);
}
.sec-contact .links dd.tel::before {
  content: url(../img/icon_tel.svg);
  display: inline-block;
  width: 20px;
  height: auto;
  margin-right: 8px;
  position: relative;
  top: 4px;
  left: 0;
}
.sec-contact .contact-link {
  margin: 1.5em auto 0;
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.25em; */
  & a {
    width: 100%;
    &:not(:first-child) {
      margin-top: 0.75em;
    }
  }
}
@media screen and (min-width: 768px) {
  .sec-contact .contact-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2em;
  }
  .sec-contact .links {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0.75em;
    padding: 0.35em 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: clamp(1rem, 1.5625vw, 1.25rem);
    font-weight: 600;
    background-color: #f0f0f0;
    border-radius: 0.35em;
  }
  .sec-contact .links dt {
    width: 9em;
  }
  .sec-contact .links dd.tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sec-contact .links dd.tel::before {
    content: url(../img/icon_tel.svg);
    display: inline-block;
    width: 30px;
    height: auto;
    margin-right: 8px;
    position: relative;
    top: 4px;
    left: 0;
  }
  .sec-contact .contact-link {
    margin: 1.5em auto 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5em 2em;
  }
  .sec-contact .contact-link a {
    width: calc(50% - 1em);
    font-size: clamp(0.75rem, 1.5625vw, 1.25rem);
    &:not(:first-child) {
      margin-top: 0;
    }
  }
}

/* Company */
.sec-company .company-box {
  width: 100%;
  margin: 0 auto 7em;
}
.sec-company .company-box .text {
  font-size: clamp(0.875rem, 1.40625vw, 1.125rem);
  line-height: 1.94;
}
.sec-company .company-box .head {
  margin-top: 1em;
  font-size: clamp(1rem, 1.5625vw, 1.25rem);
  font-weight: 600;
}
.sec-company .company-box p {
  margin-top: 0.75em;
}
.sec-company .company-box .map {
  position: relative;
  width: 100%;
  margin-top: 2em;
  aspect-ratio: 3/2;
}
.sec-company .company-box .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px), print {
  .sec-company {
    margin: 150px auto 0;
  }
  .sec-company .company-box {
    max-width: 1200px;
    margin: 0 auto 10em;
  }
  .sec-company .company-box .text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: 1em;
  }
  .sec-company .company-box .map {
    -webkit-box-flex: 1.3;
        -ms-flex: 1.3;
            flex: 1.3;
    margin-top: 1em;
  }
}
/*# sourceMappingURL=style.css.map */