@charset "UTF-8";
:root {
  --cl-pri: #1C2C43;
  --cl-ac: #2BB9B0;
  --cl-light: #F1F8FF;
  --cl-gray: #A7A7A7;
  --cl-bg: #D9F2F0;
  --cl-border: #D9D9D9;
}

/* --- reset.css --- */
/* === 使わないセレクタは消去する --- */
/* --- reset.css --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

main {
  display: block;
}

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

body figure {
  margin: 0;
  padding: 0;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: inherit;
}

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

/* --- reset.cssここまで --- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:focus-visible {
  outline: 1px solid transparent;
}

html {
  overflow-x: clip;
}

body {
  overflow-x: clip;
  max-width: 100%;
  color: var(--cl-pri);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  word-break: break-all;
  line-break: strict;
}

@media screen and (max-width: 1199px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  body {
    font-size: 15px;
  }
}
ul {
  list-style: none;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

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

.container {
  margin: 0 auto;
  max-width: 100%;
}

a {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 1199px) {
  a:hover {
    opacity: 1;
  }
}
a[href*="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 758px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}
button,
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  cursor: pointer;
}

::-webkit-file-upload-button {
  touch-action: manipulation;
  -webkit-user-select: none;
          user-select: none;
}

.btn,
::file-selector-button {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

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

  共通レイアウト

====================================== */
.main {
  margin-top: 100px;
}

@media screen and (max-width: 1199px) {
  .main {
    margin-top: 60px;
  }
}
/* ===================================

  セクションタイトル

====================================== */
.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.section-title .entitle p {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 500;
}
.section-title .entitle p::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--cl-ac);
}
.section-title .title {
  margin-top: 27px;
  font-size: 48px;
  font-weight: 700;
}

@media screen and (max-width: 1199px) {
  .section-title .entitle p {
    padding-bottom: 8px;
    font-size: 14px;
  }
  .section-title .title {
    margin-top: 20px;
    font-size: 36px;
  }
}
@media screen and (max-width: 758px) {
  .section-title .title {
    font-size: 30px;
  }
}
/* ===================================

  リンクボタン

====================================== */
.link-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 37px;
  width: 210px;
  height: 70px;
  background-color: #fff;
  background-image: url(img/ico/ico-arrow-right-bl.svg);
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: center right 20px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  border: 1px solid var(--cl-ac);
  border-radius: 9999px;
  z-index: 1;
}

@media screen and (max-width: 1199px) {
  .link-btn {
    padding-left: 32px;
    width: 200px;
    height: 60px;
    background-size: 13px 13px;
    font-size: 18px;
  }
}
@media screen and (max-width: 758px) {
  .link-btn {
    padding-left: 30px;
    width: 180px;
    height: 50px;
    font-size: 17px;
  }
}
/* ===================================

  パンくずリスト

====================================== */
.breadcrumb-wrap .breadcrumb {
  width: 1430px;
  max-width: 100%;
  margin: 0 auto;
  padding: 11px 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
  word-break: break-all;
  color: #a7a7a7;
}
.breadcrumb-wrap .breadcrumb span,
.breadcrumb-wrap .breadcrumb a {
  color: #a7a7a7;
}

@media screen and (max-width: 1199px) {
  .breadcrumb-wrap .breadcrumb {
    width: 100%;
    padding: 8px 30px;
    font-size: 13px;
  }
}
@media screen and (max-width: 758px) {
  .breadcrumb-wrap .breadcrumb {
    padding: 6px 15px;
    font-size: 12px;
  }
}
/* ===================================

  ページネーション

====================================== */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.pagination-wrap {
  margin-top: 110px;
}
.pagination-wrap .pagination .nav-links {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pagination-wrap .pagination .page-numbers {
  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;
  margin: 0 5px 10px;
  width: 40px;
  height: 40px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid var(--cl-gray);
}
.pagination-wrap .pagination .page-numbers.current {
  background-color: var(--cl-pri);
  border: 1px solid var(--cl-pri);
  color: #fff;
}
.pagination-wrap .pagination .page-numbers:hover {
  background-color: var(--cl-pri);
  border: 1px solid var(--cl-pri);
  color: #fff;
  opacity: 1;
}

@media screen and (max-width: 1199px) {
  .pagination-wrap {
    margin-top: 60px;
  }
  .pagination-wrap .pagination .page-numbers {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .pagination-wrap .pagination .page-numbers:hover {
    background-color: #fff;
    border: 1px solid var(--cl-gray);
    color: var(--cl-pri);
  }
}
@media screen and (max-width: 758px) {
  .pagination-wrap {
    margin-top: 50px;
  }
  .pagination-wrap .pagination .page-numbers {
    margin: 0 3px 10px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
/* ===================================

  ヘッダー

====================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: #fff;
  z-index: 100;
}
.header__inner {
  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;
  padding-left: 30px;
  width: 100%;
  height: 100%;
}
.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-logo__link, .header-logo__img {
  width: 253px;
}
.header-logo__txt {
  margin-left: 19px;
  font-size: 18px;
  font-weight: 500;
}
.header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .g-nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .g-nav .menu-item + .menu-item {
  margin-left: 37px;
}
.header .g-nav .menu-item a {
  font-size: 18px;
  font-weight: 500;
}
.header .g-nav .menu-item a:hover {
  opacity: 1;
  color: var(--cl-ac);
}
.header-cta {
  margin-left: 40px;
  width: 210px;
}
.header-cta__link {
  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;
  width: 100%;
  height: 100px;
  background-color: var(--cl-pri);
}
.header-cta__txt {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 1199px) {
  .header {
    height: 60px;
  }
  .header__inner {
    padding-left: 15px;
  }
  .header-logo__link, .header-logo__img {
    width: 220px;
  }
  .header-logo__txt {
    margin-left: 15px;
    font-size: 15px;
  }
  .header__contents {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .header-logo__link, .header-logo__img {
    width: 170px;
  }
  .header-logo__txt {
    margin-left: 10px;
    font-size: 11px;
  }
}
/* ===================================

  ハンバーガーボタン

====================================== */
.menu-btn {
  display: none;
}

@media screen and (max-width: 1199px) {
  .menu-btn {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    z-index: 8888;
    width: 60px;
    height: 60px;
    border: none;
    overflow: hidden;
    outline: none;
  }
  .menu-btn .bar {
    position: absolute;
    top: 27px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: 28px;
    height: 2px;
    background-color: #333;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .menu-btn .bar:first-child {
    top: 20px;
  }
  .menu-btn .txt {
    position: absolute;
    bottom: 9px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 12px;
    color: var(--cl-pri);
    white-space: nowrap;
  }
  .menu-btn.active .bar:first-of-type {
    -webkit-transform: rotate(35deg);
        -ms-transform: rotate(35deg);
            transform: rotate(35deg);
    top: 23px;
    left: 16px;
  }
  .menu-btn.active .bar:nth-of-type(2) {
    -webkit-transform: rotate(-35deg);
        -ms-transform: rotate(-35deg);
            transform: rotate(-35deg);
    left: 16px;
    top: auto;
    bottom: 35px;
  }
}
/* ===================================

  ドロワーメニュー

====================================== */
.dnav {
  display: none;
}

@media screen and (max-width: 1199px) {
  .dnav {
    position: fixed;
    top: 60px;
    right: -100vw;
    display: block;
    width: 100vw;
    max-width: 360px;
    height: 100dvh;
    background-color: #fff;
    z-index: -10;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .dnav.show {
    opacity: 1;
    right: 0;
    z-index: 7777;
  }
  .dnav__inner {
    padding: 135px 30px;
  }
  .dnav .d-nav {
    padding: 0 20px;
  }
  .dnav .d-nav .menu-item + .menu-item {
    margin-top: 25px;
  }
  .dnav .d-nav .menu-item a {
    display: block;
    padding-left: 1em;
    background-image: url(img/ico/ico-arrow-right-gray.svg);
    background-repeat: no-repeat;
    background-size: 10px 20px;
    background-position: top 3px left 0;
    font-size: 22px;
  }
  .dnav__links {
    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;
    margin-top: 50px;
  }
  .dnav__link {
    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;
    width: 100%;
    max-width: 300px;
    height: 56px;
    background-color: var(--cl-pri);
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 500;
    border-radius: 9999px;
    z-index: 1;
  }
}
@media screen and (max-width: 758px) {
  .dnav {
    max-width: 100vw;
  }
}
/* ===================================

  CTA

====================================== */
.cta {
  position: relative;
  padding: 90px 0 192px;
  background-color: var(--cl-ac);
}
.cta__inner {
  margin: 0 auto;
  padding: 0 30px;
  width: 1260px;
  max-width: 100%;
}
.cta__head {
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.cta__title {
  font-family: "Inter", sans-serif;
  font-size: calc(70px + 26 * (100vw - 1280px) / 640);
}
.cta__lead {
  margin-top: 28px;
  font-size: calc(20px + 4 * (100vw - 1280px) / 640);
}
.cta__lead br {
  display: none;
}
.cta__contents {
  position: absolute;
  bottom: -120px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1200px;
  max-width: calc(100% - 60px);
}
.cta__link {
  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;
  padding-right: 66px;
  padding-left: 78px;
  width: 100%;
  height: 240px;
  background-color: var(--cl-pri);
  font-size: calc(30px + 6 * (100vw - 1280px) / 640);
  font-weight: 700;
  color: #fff;
}
.cta__link:hover {
  opacity: 1;
  background-color: #2d466a;
}
.cta__ico {
  width: 70px;
}

@media screen and (max-width: 1199px) {
  .cta {
    padding: 70px 0 120px;
  }
  .cta__inner {
    width: 100%;
    max-width: 768px;
  }
  .cta__title {
    font-size: 50px;
  }
  .cta__lead {
    margin-top: 26px;
    font-size: 18px;
  }
  .cta__contents {
    bottom: -80px;
    width: calc(100% - 60px);
    max-width: 768px;
  }
  .cta__link {
    padding-right: 50px;
    padding-left: 60px;
    height: 160px;
    font-size: 24px;
  }
  .cta__link:hover {
    background-color: var(--cl-pri);
  }
  .cta__ico {
    width: 60px;
  }
}
@media screen and (max-width: 758px) {
  .cta {
    padding: 50px 0 95px;
  }
  .cta__inner {
    max-width: 100%;
    padding: 0 20px;
  }
  .cta__title {
    font-size: 40px;
  }
  .cta__lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 2;
  }
  .cta__lead br {
    display: block;
  }
  .cta__contents {
    bottom: -70px;
    width: calc(100% - 40px);
    max-width: 100%;
  }
  .cta__link {
    padding: 0 22px 0 30px;
    height: 140px;
    font-size: 20px;
  }
  .cta__ico {
    width: 50px;
  }
}
/* ===================================

  フッター

====================================== */
.footer {
  padding-top: 221px;
}
.footer__inner {
  padding-left: 2.6041666667vw;
  padding-right: 2.6041666667vw;
}
.footer-logo {
  width: 316px;
}
.footer-logo__link, .footer-logo__img {
  display: block;
  width: 100%;
}
.footer__contents {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
}
.footer__head br {
  display: none;
}
.footer__head .gm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}
.footer__head .gm__ico {
  width: 29px;
}
.footer__head .gm__txt {
  margin-left: 9px;
}
.footer__head .gm span {
  text-decoration: underline;
}
.footer__btm {
  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;
  margin-top: 62px;
  padding-top: 50px;
  padding-left: 2.6041666667vw;
  padding-right: 2.6041666667vw;
  padding-bottom: 54px;
  border-top: 1px solid #d9d9d9;
}
.footer__btm .copyright {
  font-family: "Inter", sans-serif;
  color: #a7a7a7;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__links .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #a7a7a7;
}
.footer__links .link__ico {
  position: relative;
  top: 0.05em;
  margin-left: 8px;
  width: 18px;
}
.footer__links .link + .link {
  margin-left: 42px;
}

@media screen and (max-width: 1199px) {
  .footer {
    padding-top: 150px;
  }
  .footer__inner {
    padding: 0 30px;
  }
  .footer-logo {
    width: 235px;
  }
  .footer__contents {
    margin-top: 25px;
    font-size: 15px;
  }
  .footer__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    width: 40%;
  }
  .footer__head br {
    display: block;
  }
  .footer__head .addr {
    line-height: 1.5;
  }
  .footer__head .gm {
    margin-top: 20px;
  }
  .footer__head .gm__ico {
    width: 20px;
  }
  .footer__head .gm__txt {
    margin-left: 8px;
  }
  .footer__btm {
    margin-top: 40px;
    padding: 30px 30px 40px;
    font-size: 15px;
  }
  .footer__links .link__ico {
    top: 0.038em;
    margin-left: 0.6em;
    width: 16px;
  }
  .footer__links .link + .link {
    margin-left: 30px;
  }
}
@media screen and (max-width: 758px) {
  .footer {
    padding-top: 140px;
  }
  .footer__inner {
    padding: 0 20px;
  }
  .footer-logo {
    width: 220px;
  }
  .footer__contents {
    display: block;
    margin-top: 20px;
  }
  .footer__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
  .footer__head .gm {
    margin-top: 16px;
  }
  .footer__head .gm__ico {
    width: 1.2em;
  }
  .footer__head .gm__txt {
    margin-left: 6px;
  }
  .footer__btm {
    display: block;
    margin-top: 50px;
    padding: 40px 20px;
    font-size: 14px;
  }
  .footer__btm .copyright {
    margin-top: 40px;
    font-size: 13px;
  }
  .footer__links {
    display: block;
  }
  .footer__links .link__ico {
    top: 0.042em;
    margin-left: 8px;
    width: 15px;
  }
  .footer__links .link + .link {
    margin-left: 0;
    margin-top: 1.5em;
  }
}
/* ===================================

  トップページ

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

  共通

====================================== */
.home section {
  scroll-margin-top: 100px;
}
.home .main .sec-visual {
  position: relative;
  padding-left: 14.5833333333vw;
}
.home .main .sec-visual__inner {
  position: relative;
}
.home .main .sec-visual__bg {
  width: 100%;
  padding-top: 38.4%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.home .main .sec-visual__blind {
  position: absolute;
  left: -2px;
  bottom: -2px;
  background-color: var(--cl-ac);
}
.home .main .sec-visual__blind.blind-1 {
  width: 100%;
  height: 185px;
  z-index: -1;
}
.home .main .sec-visual__blind.blind-2 {
  width: calc(500px + 58 * (100vw - 1280px) / 640);
  height: 91px;
  z-index: 2;
}

@media screen and (max-width: 1600px) {
  .home .main .sec-visual {
    padding-left: 4.1666666667vw;
  }
}
@media screen and (max-width: 1199px) {
  .home .main .sec-visual {
    padding-left: 30px;
  }
  .home .main .sec-visual__blind.blind-1 {
    height: 96px;
  }
  .home .main .sec-visual__blind.blind-2 {
    width: calc(420px + 58 * (100vw - 1280px) / 640);
    height: 48px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .sec-visual {
    padding-left: 20px;
  }
  .home .main .sec-visual__bg {
    padding-top: 60%;
    background-position: bottom 0 center;
  }
  .home .main .sec-visual__blind.blind-1 {
    height: 80px;
  }
  .home .main .sec-visual__blind.blind-2 {
    width: 75%;
    height: 30px;
  }
}
/* ===================================

  メインビジュアル

====================================== */
.home .main .mv {
  position: relative;
  width: 100%;
}
.home .main .mv__inner {
  padding-left: 4.1666666667vw;
}
.home .main .mv__contents {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  max-height: 890px;
}
.home .main .mv .swiper,
.home .main .mv .swiper-wrapper,
.home .main .mv .swiper-slide {
  width: 100%;
  height: 100%;
}
.home .main .mv .swiper-slide__bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.home .main .mv .swiper-slide__bg.img1 {
  background-image: url(img/top/mv1.webp);
}
.home .main .mv .swiper-slide__bg.img2 {
  background-image: url(img/top/mv2.webp);
}
.home .main .mv .swiper-slide__bg.img3 {
  background-image: url(img/top/mv3.webp);
}
.home .main .mv .swiper-slide-active .swiper-slide__bg,
.home .main .mv .swiper-slide-duplicate-active .swiper-slide__bg,
.home .main .mv .swiper-slide-prev .swiper-slide__bg {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
          animation: zoomUp 10s linear 0s 1 normal both;
}
.home .main .mv .swiper-slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
}
.home .main .mv .swiper-slide__bg {
  display: block;
  width: 100%;
  height: 100%;
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.home .main .mv__copy {
  position: absolute;
  top: 13.90625vw;
  left: 6.25vw;
  z-index: 3;
}
.home .main .mv__copy .title {
  font-size: calc(46px + 8 * (100vw - 1280px) / 640);
  font-weight: 700;
  text-shadow: 0 0 8px #fff;
}
.home .main .mv__copy .title br {
  display: none;
}
.home .main .mv__copy .lead {
  margin-top: 32px;
  font-size: calc(20px + 4 * (100vw - 1280px) / 640);
  font-weight: 700;
  line-height: 1.5;
  text-shadow: 0 0 8px #fff;
}
.home .main .mv__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 193px;
  background-color: var(--cl-ac);
  z-index: -1;
}

@media screen and (max-width: 1199px) {
  .home .main .mv__inner {
    padding-left: 60px;
  }
  .home .main .mv__contents {
    max-height: 420px;
  }
  .home .main .mv__copy {
    top: 15vw;
    left: 30px;
  }
  .home .main .mv__copy .title {
    font-size: 38px;
  }
  .home .main .mv__copy .lead {
    margin-top: 28px;
    font-size: 16px;
  }
  .home .main .mv__bg {
    height: 160px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .mv__inner {
    padding-left: 40px;
  }
  .home .main .mv__contents {
    padding-top: 0;
    height: 580px;
    max-height: calc(100% - 50px);
    background-position: top 0 center;
  }
  .home .main .mv .swiper-slide__bg.img1 {
    background-image: url(img/top/sp-mv1.webp);
  }
  .home .main .mv .swiper-slide__bg.img2 {
    background-image: url(img/top/sp-mv2.webp);
  }
  .home .main .mv .swiper-slide__bg.img3 {
    background-image: url(img/top/sp-mv3.webp);
  }
  .home .main .mv__copy {
    top: 40%;
    left: 15px;
  }
  .home .main .mv__copy .title {
    font-size: 35px;
    line-height: 1.3;
  }
  .home .main .mv__copy .title br {
    display: block;
  }
  .home .main .mv__copy .lead {
    margin-top: 25px;
    font-size: 15px;
  }
  .home .main .mv__bg {
    height: 160px;
  }
}
/* ===================================

  msg

====================================== */
.home .main .msg {
  padding: 93px 0 85px;
  background-color: var(--cl-ac);
}
.home .main .msg .container {
  margin: 0 auto;
  padding: 0 30px;
  width: 1420px;
  max-width: 100%;
}
.home .main .msg__title {
  padding-left: 85px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
.home .main .msg__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.home .main .msg__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-left: 85px;
  padding-right: 9.84375vw;
  color: #fff;
}
.home .main .msg__txt {
  margin-top: 18px;
  font-size: 18px;
  line-height: 2;
}
.home .main .msg__txt p + p {
  margin-top: 2em;
}
.home .main .msg__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 560px;
          flex: 0 0 560px;
  width: 560px;
  margin-top: -35px;
}
.home .main .msg__img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .home .main .msg {
    padding: 80px 0;
  }
  .home .main .msg .container {
    width: 100%;
    max-width: 768px;
  }
  .home .main .msg__title {
    padding-left: 0;
    font-size: 26px;
  }
  .home .main .msg__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .home .main .msg__body {
    padding-left: 0;
    padding-right: 30px;
  }
  .home .main .msg__txt {
    margin-top: 25px;
    font-size: 15px;
  }
  .home .main .msg__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 340px;
            flex: 0 0 340px;
    width: 340px;
    margin-top: 0;
  }
}
@media screen and (max-width: 758px) {
  .home .main .msg {
    padding: 50px 0 20px;
  }
  .home .main .msg .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .home .main .msg__title {
    padding-left: 0;
    font-size: 23px;
  }
  .home .main .msg__inner {
    display: block;
  }
  .home .main .msg__body {
    padding-right: 0;
  }
  .home .main .msg__txt {
    margin-top: 22px;
    font-size: 15px;
  }
  .home .main .msg__txt p + p {
    margin-top: 1.5em;
  }
  .home .main .msg__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    margin-top: 30px;
  }
}
/* ===================================

  働く環境

====================================== */
.home .main .envi {
  padding-top: 120px;
}
.home .main .envi .container {
  margin: 0 auto;
  padding: 0 30px;
  width: 1500px;
  max-width: 100%;
}
.home .main .envi__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 6.25vw;
  padding-right: 6.25vw;
}
.home .main .envi__lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
}
.home .main .envi__contents {
  margin-top: 75px;
}
.home .main .envi .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.home .main .envi .item {
  width: calc((100% - 40px) / 2);
}
.home .main .envi .item:nth-child(n+3) {
  margin-top: 30px;
}
.home .main .envi .item {
  padding: 40px 40px 37px;
  border: 1px solid var(--cl-border);
}
.home .main .envi .item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.home .main .envi .item__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 12px;
  padding-right: 30px;
  color: var(--cl-ac);
}
.home .main .envi .item__title span {
  font-family: "Inter", sans-serif;
  font-size: calc(35px + 5 * (100vw - 1280px) / 640);
  font-weight: 700;
}
.home .main .envi .item__title h3 {
  margin-top: 25px;
  font-size: calc(22px + 2 * (100vw - 1280px) / 640);
  font-weight: 700;
  line-height: 1.5;
}
.home .main .envi .item__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 43.55%;
          flex: 0 0 43.55%;
  width: 43.55%;
}
.home .main .envi .item__img {
  display: block;
  width: 100%;
}
.home .main .envi .item__body {
  margin-top: 15px;
  font-size: calc(16px + 2 * (100vw - 1280px) / 640);
  font-weight: 500;
  line-height: 2;
}

.home .main .envi .container {
  width: 100%;
  padding: 0 4.1666666667vw;
}

@media screen and (max-width: 1199px) {
  .home .main .envi {
    padding-top: 80px;
  }
  .home .main .envi .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .home .main .envi__head {
    display: block;
    padding: 0 30px;
  }
  .home .main .envi__lead {
    margin-top: 40px;
    font-size: 18px;
  }
  .home .main .envi__contents {
    margin-top: 50px;
  }
  .home .main .envi .item {
    width: calc((100% - 15px) / 2);
  }
  .home .main .envi .item:nth-child(n+3) {
    margin-top: 15px;
  }
  .home .main .envi .item {
    padding: 35px 25px 30px;
  }
  .home .main .envi .item__head {
    display: block;
  }
  .home .main .envi .item__title {
    padding: 0;
  }
  .home .main .envi .item__title span {
    font-size: 36px;
  }
  .home .main .envi .item__title h3 {
    margin-top: 23px;
    font-size: 22px;
  }
  .home .main .envi .item__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
    margin-top: 30px;
  }
  .home .main .envi .item__body {
    margin-top: 20px;
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .envi {
    padding-top: 70px;
  }
  .home .main .envi .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .home .main .envi__head {
    padding: 0;
  }
  .home .main .envi__lead {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.75;
  }
  .home .main .envi__contents {
    margin-top: 40px;
  }
  .home .main .envi .items {
    -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;
  }
  .home .main .envi .item {
    width: 100%;
    max-width: 340px;
  }
  .home .main .envi .item:nth-child(n+2) {
    margin-top: 15px;
  }
  .home .main .envi .item {
    padding: 36px 20px 30px;
  }
  .home .main .envi .item__title span {
    font-size: 35px;
  }
  .home .main .envi .item__title h3 {
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.5;
  }
  .home .main .envi .item__thumb {
    margin-top: 28px;
  }
  .home .main .envi .item__body {
    margin-top: 18px;
    font-size: 15px;
  }
}
/* ===================================

  数字で見る竹田電機

====================================== */
.home .main .data {
  scroll-margin-top: -100px;
  padding-top: 100px;
}
.home .main .data .container {
  width: 100%;
  padding-left: 14.5833333333vw;
  padding-right: 14.5833333333vw;
}
.home .main .data__contents {
  background-color: var(--cl-ac);
  padding-bottom: 230px;
}
.home .main .data .section-title {
  position: relative;
  top: -30px;
  color: #fff;
  z-index: 3;
}
.home .main .data .section-title .entitle p::after {
  background-color: #fff;
}
.home .main .data__body {
  margin-top: 57px;
}
.home .main .data__body .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 4px;
}
.home .main .data__body .items .item__img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1600px) {
  .home .main .data .container {
    padding: 0 4.1666666667vw;
  }
}
@media screen and (max-width: 1199px) {
  .home .main .data {
    scroll-margin-top: 0;
    padding-top: 80px;
  }
  .home .main .data .section-title {
    top: 0;
  }
  .home .main .data .container {
    max-width: 768px;
    padding: 0 30px;
  }
  .home .main .data__contents {
    padding-bottom: 120px;
  }
  .home .main .data__body {
    margin-top: 50px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .data {
    padding-top: 60px;
  }
  .home .main .data .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .home .main .data .section-title .title {
    font-size: 30px;
  }
  .home .main .data__contents {
    padding-bottom: 80px;
  }
  .home .main .data__body .items {
    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;
    gap: normal;
  }
  .home .main .data__body .items .item {
    width: 100%;
    max-width: 320px;
  }
  .home .main .data__body .items .item + .item {
    margin-top: 3px;
  }
}
/* ===================================

  募集要項

====================================== */
.home .main .job {
  padding-top: 170px;
}
.home .main .job .container {
  padding-left: 12.5vw;
  padding-right: 12.5vw;
}
.home .main .job__head {
  padding-left: 6.25vw;
}
.home .main .job__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 105px;
}
.home .main .job .item {
  position: relative;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home .main .job .item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}
.home .main .job .item__link:hover {
  opacity: 0.85;
}
.home .main .job .item__txt {
  position: absolute;
  top: -24px;
  right: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 3;
  pointer-events: none;
}
.home .main .job .item__txt span {
  display: inline-block;
  padding: 8px 7px;
  background-color: var(--cl-pri);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 24px;
  color: #fff;
}
.home .main .job .item__head {
  position: relative;
}
.home .main .job .item__head::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#2bb9b0), color-stop(50%, rgba(43, 185, 176, 0)));
  background: linear-gradient(to top, #2bb9b0 0%, rgba(43, 185, 176, 0) 50%);
}
.home .main .job .item__img {
  display: block;
  width: 100%;
}
.home .main .job .item__title {
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  width: 100%;
  padding: 0 60px 25px;
  color: #fff;
  z-index: 1;
}
.home .main .job .item__title .title {
  margin-top: 15px;
  font-size: 42px;
  font-weight: 700;
}
.home .main .job .item__title .entitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
}
.home .main .job .item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 180px 50px 60px;
  background-color: var(--cl-ac);
  background-image: url(img/ico/ico-arrow-circle.svg);
  background-repeat: no-repeat;
  background-size: 70px 70px;
  background-position: top 26px right 47px;
  font-size: 18px;
  line-height: 2;
  color: #fff;
}
.home .main .job .item:nth-child(2) {
  margin-left: -1px;
}
.home .main .job .item:nth-child(2) .item__head::after {
  background: -webkit-gradient(linear, left bottom, left top, from(#2ba3b9), color-stop(50%, rgba(43, 185, 176, 0)));
  background: linear-gradient(to top, #2ba3b9 0%, rgba(43, 185, 176, 0) 50%);
}
.home .main .job .item:nth-child(2) .item__body {
  background-color: #2ba3b9;
}

@media screen and (max-width: 1600px) {
  .home .main .job .container {
    padding: 0 4.1666666667vw;
  }
}
@media screen and (max-width: 1199px) {
  .home .main .job {
    padding-top: 80px;
  }
  .home .main .job .container {
    max-width: 768px;
    padding: 0 30px;
  }
  .home .main .job__head {
    padding: 0 30px;
  }
  .home .main .job__contents {
    margin-top: 80px;
  }
  .home .main .job .item__link:hover {
    opacity: 1;
  }
  .home .main .job .item__txt {
    top: -35px;
    right: 15px;
  }
  .home .main .job .item__txt span {
    padding: 7px 6px;
    font-size: 20px;
  }
  .home .main .job .item__head::after {
    background: -webkit-gradient(linear, left bottom, left top, from(#2bb9b0), color-stop(60%, rgba(43, 185, 176, 0)));
    background: linear-gradient(to top, #2bb9b0 0%, rgba(43, 185, 176, 0) 60%);
  }
  .home .main .job .item__title {
    padding: 0 20px 15px;
  }
  .home .main .job .item__title .title {
    margin-top: 12px;
    font-size: 30px;
  }
  .home .main .job .item__title .entitle {
    font-size: 15px;
  }
  .home .main .job .item__body {
    padding: 0 80px 30px 20px;
    background-size: 50px 50px;
    background-position: top 50% right 20px;
    font-size: 16px;
  }
  .home .main .job .item:nth-child(2) .item__head::after {
    background: -webkit-gradient(linear, left bottom, left top, from(#2ba3b9), color-stop(60%, rgba(43, 185, 176, 0)));
    background: linear-gradient(to top, #2ba3b9 0%, rgba(43, 185, 176, 0) 60%);
  }
}
@media screen and (max-width: 758px) {
  .home .main .job {
    padding-top: 70px;
  }
  .home .main .job .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .home .main .job__head {
    padding: 0;
  }
  .home .main .job__contents {
    display: block;
    margin-top: 70px;
  }
  .home .main .job .item {
    width: 100%;
  }
  .home .main .job .item + .item {
    margin-top: 60px;
  }
  .home .main .job .item__txt {
    top: -28px;
    right: 10px;
  }
  .home .main .job .item__txt span {
    font-size: 18px;
  }
  .home .main .job .item__title .title {
    font-size: 26px;
  }
  .home .main .job .item__title .entitle {
    font-size: 14px;
  }
  .home .main .job .item__body {
    padding: 0 70px 30px 20px;
    background-size: 40px 40px;
    background-position: top 50% right 15px;
    font-size: 15px;
  }
}
/* ===================================

  働く社員を知る

====================================== */
.home .main .people {
  scroll-margin-top: -200px;
  padding-top: 170px;
}
.home .main .people .sec-visual__blind {
  background-color: var(--cl-bg);
}
.home .main .people .container {
  width: 100%;
  padding-left: 14.5833333333vw;
  padding-right: 14.5833333333vw;
}
.home .main .people__contents {
  background-color: var(--cl-bg);
  padding-bottom: 96px;
}
.home .main .people .section-title {
  position: relative;
  top: -30px;
  z-index: 3;
}
.home .main .people__body {
  margin-top: 66px;
}
.home .main .people .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home .main .people .sp {
  display: none;
}
.home .main .people .item {
  position: relative;
  width: calc((100% - 30px) / 4);
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.home .main .people .item + .item {
  margin-left: 10px;
}
.home .main .people .item__link {
  position: relative;
  display: block;
}
.home .main .people .item__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#1c2c43), color-stop(30%, rgba(28, 44, 67, 0.6)), color-stop(70%, rgba(28, 44, 67, 0)));
  background: linear-gradient(to top, #1c2c43 0%, rgba(28, 44, 67, 0.6) 30%, rgba(28, 44, 67, 0) 70%);
  z-index: 1;
}
.home .main .people .item__thumb {
  width: 100%;
  overflow: hidden;
}
.home .main .people .item__thumb-img {
  width: 100%;
  padding-top: 163.6363636364%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.home .main .people .item__link:hover {
  opacity: 0.6;
}
.home .main .people .item__link:hover .item__thumb-img {
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}
.home .main .people .item__contents {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-left: 1.5625vw;
  padding-right: 1.5625vw;
  padding-bottom: 35px;
  width: 100%;
  color: #fff;
  z-index: 2;
}
.home .main .people .item__txt {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.66;
}
.home .main .people .item__body {
  margin-top: 16px;
  line-height: 2;
}
.home .main .people .item__info {
  font-size: 16px;
}
.home .main .people .item__name {
  margin-left: 1em;
}
.home .main .people .link-btn {
  margin-top: 70px;
}

@media screen and (max-width: 1600px) {
  .home .main .people .container {
    padding: 0 4.1666666667vw;
  }
}
@media screen and (max-width: 1199px) {
  .home .main .people {
    scroll-margin-top: 0;
    padding-top: 80px;
  }
  .home .main .people .section-title {
    top: 0;
  }
  .home .main .people .container {
    max-width: 768px;
    padding: 0 30px;
  }
  .home .main .people__contents {
    padding-bottom: 80px;
  }
  .home .main .people__body {
    margin-top: 55px;
  }
  .home .main .people .items {
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  .home .main .people .pc {
    display: none;
  }
  .home .main .people .sp {
    display: block;
  }
  .home .main .people .item {
    width: auto;
  }
  .home .main .people .item__link:hover {
    opacity: 1;
  }
  .home .main .people .item__link:hover .item__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .home .main .people .item__contents {
    padding: 0 20px 30px;
  }
  .home .main .people .item__txt {
    font-size: 17px;
  }
  .home .main .people .item__body {
    margin-top: 15px;
  }
  .home .main .people .item__info {
    font-size: 15px;
  }
  .home .main .people .item__name {
    margin-left: 1em;
  }
  .home .main .people .link-btn {
    margin-top: 50px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .people {
    padding-top: 60px;
  }
  .home .main .people .container {
    padding: 0 20px;
  }
  .home .main .people__contents {
    padding-bottom: 60px;
  }
  .home .main .people__body {
    margin-top: 50px;
  }
  .home .main .people .item__contents {
    padding: 0 15px 20px;
  }
  .home .main .people .item__txt {
    font-size: 15px;
  }
  .home .main .people .item__info {
    font-size: 14px;
  }
  .home .main .people .item__name {
    margin-left: 1em;
    font-size: 14px;
  }
  .home .main .people .link-btn {
    margin-top: 40px;
  }
}
/* ===================================

  福利厚生

====================================== */
.home .main .welfare {
  scroll-margin-top: -200px;
  padding-bottom: 133px;
}
.home .main .welfare-visual {
  position: relative;
  width: 100%;
}
.home .main .welfare-visual__txt {
  position: absolute;
  top: -40px;
  right: 79px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 3;
  pointer-events: none;
}
.home .main .welfare-visual__txt span {
  display: inline-block;
  padding: 8px 13px 16px;
  background-color: var(--cl-pri);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 30px;
  color: #fff;
}
.home .main .welfare-visual__img {
  width: 100%;
  padding-top: 35.2083333333%;
  background-image: url(img/top/welfare-visual.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.home .main .welfare .container {
  position: relative;
  margin-top: -124px;
  width: 100%;
  padding-left: 14.5833333333vw;
  padding-right: 14.5833333333vw;
  z-index: 1;
}
.home .main .welfare__contents {
  padding: 100px 80px 0;
  background-color: #fff;
}
.home .main .welfare__body {
  margin-top: 87px;
}
.home .main .welfare .group + .group {
  margin-top: 64px;
}
.home .main .welfare .group__title {
  font-size: 28px;
  font-weight: 700;
}
.home .main .welfare .group__title::before {
  content: "";
  position: relative;
  display: inline-block;
  margin-right: 12px;
  width: 18px;
  height: 18px;
  background-color: var(--cl-ac);
  border-radius: 50%;
  z-index: 1;
}
.home .main .welfare .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 28px;
}
.home .main .welfare .items::after {
  content: "";
  display: block;
  width: calc((100% - 20px) / 3);
}
.home .main .welfare .item {
  padding: 30px 30px 14px;
  width: calc((100% - 20px) / 3);
  border: 1px solid var(--cl-border);
}
.home .main .welfare .item:nth-child(n+4) {
  margin-top: 10px;
}
.home .main .welfare .item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home .main .welfare .item__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.home .main .welfare .item__title h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--cl-ac);
}
.home .main .welfare .item__title h4 span {
  display: block;
  margin-top: 2px;
  font-size: 16px;
}
.home .main .welfare .item__ico {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
  width: 70px;
}
.home .main .welfare .item__ico img {
  display: block;
  width: 100%;
}
.home .main .welfare .item__body {
  padding-top: 14px;
}
.home .main .welfare .item__txt {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (max-width: 1600px) {
  .home .main .welfare .container {
    margin-top: -80px;
    padding: 0 4.1666666667vw;
  }
}
@media screen and (max-width: 1199px) {
  .home .main .welfare {
    scroll-margin-top: 0;
    padding-bottom: 100px;
  }
  .home .main .welfare-visual__txt {
    top: -35px;
    right: 50px;
  }
  .home .main .welfare-visual__txt span {
    padding: 7px 12px 15px;
    font-size: 24px;
  }
  .home .main .welfare-visual__img {
    width: 100%;
    height: 360px;
    padding-top: 0;
  }
  .home .main .welfare .container {
    margin-top: -50px;
    padding: 0 30px;
    width: 100%;
    max-width: 768px;
  }
  .home .main .welfare__contents {
    padding: 60px 30px 0;
  }
  .home .main .welfare__body {
    margin-top: 60px;
  }
  .home .main .welfare .group + .group {
    margin-top: 50px;
  }
  .home .main .welfare .group__title {
    font-size: 24px;
  }
  .home .main .welfare .group__title::before {
    margin-right: 10px;
    width: 16px;
    height: 16px;
  }
  .home .main .welfare .items {
    margin-top: 20px;
  }
  .home .main .welfare .items::after {
    display: none;
  }
  .home .main .welfare .item {
    padding: 20px 20px 15px;
    width: calc((100% - 10px) / 2);
  }
  .home .main .welfare .item:nth-child(n+3) {
    margin-top: 10px;
  }
  .home .main .welfare .item__title {
    padding-right: 1em;
  }
  .home .main .welfare .item__title h4 {
    font-size: 20px;
  }
  .home .main .welfare .item__title h4 span {
    font-size: 15px;
  }
  .home .main .welfare .item__ico {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 65px;
            flex: 0 0 65px;
    width: 65px;
  }
  .home .main .welfare .item__txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .welfare {
    padding-bottom: 60px;
  }
  .home .main .welfare-visual__txt {
    top: -25px;
    right: 15px;
  }
  .home .main .welfare-visual__txt span {
    padding: 6px 10px 12px;
    font-size: 20px;
  }
  .home .main .welfare-visual__img {
    height: 250px;
  }
  .home .main .welfare .container {
    margin-top: -35px;
    padding: 0 15px;
    max-width: 100%;
  }
  .home .main .welfare__contents {
    margin: 0 auto;
    padding: 40px 20px 0;
    width: 100%;
    max-width: 380px;
  }
  .home .main .welfare__body {
    margin-top: 50px;
  }
  .home .main .welfare .group + .group {
    margin-top: 40px;
  }
  .home .main .welfare .group__title {
    font-size: 20px;
  }
  .home .main .welfare .group__title::before {
    margin-right: 8px;
    width: 13px;
    height: 13px;
  }
  .home .main .welfare .items {
    -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;
  }
  .home .main .welfare .item {
    width: 100%;
  }
  .home .main .welfare .item:nth-child(n+2) {
    margin-top: 10px;
  }
  .home .main .welfare .item__title h4 {
    font-size: 18px;
  }
  .home .main .welfare .item__title h4 span {
    font-size: 14px;
  }
}
/* ===================================

  選考の流れ

====================================== */
.home .main .flow {
  padding: 102px 0 134px;
  background-color: var(--cl-bg);
}
.home .main .flow .container {
  margin: 0 auto;
  padding: 0 30px;
  width: 1282px;
  max-width: 100%;
}
.home .main .flow__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 57px;
}
.home .main .flow .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 93px 30px 34px;
  width: calc((100% - 54px) / 4);
  background-color: #fff;
}
.home .main .flow .item__step {
  position: absolute;
  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;
  top: 0;
  left: 0;
  width: 124px;
  height: 32px;
  background-color: var(--cl-ac);
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.home .main .flow .item__head {
  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;
  width: 100%;
  height: 118px;
}
.home .main .flow .item__ico {
  display: block;
  width: auto;
  height: 118px;
}
.home .main .flow .item:nth-child(2) .item__ico {
  height: 87px;
}
.home .main .flow .item:nth-child(3) .item__ico {
  height: 99px;
}
.home .main .flow .item:nth-child(4) .item__ico {
  height: 104px;
}
.home .main .flow .item__title {
  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;
  width: 100%;
  height: 72px;
}
.home .main .flow .item__title h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--cl-ac);
  text-align: center;
}
.home .main .flow .item__title h3 span {
  display: block;
  margin-top: 7px;
  font-size: 16px;
  font-weight: 500;
}
.home .main .flow .item__txt {
  font-size: 18px;
  line-height: 1.33;
}

@media screen and (max-width: 1400px) {
  .home .main .people .container {
    padding: 0 4.1666666667vw;
  }
}
@media screen and (max-width: 1199px) {
  .home .main .flow {
    padding: 80px 0 100px;
  }
  .home .main .flow .container {
    width: 100%;
    max-width: 768px;
  }
  .home .main .flow__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 50px;
  }
  .home .main .flow .item {
    padding: 70px 20px 30px;
    width: calc((100% - 20px) / 2);
  }
  .home .main .flow .item:nth-child(n+3) {
    margin-top: 20px;
  }
  .home .main .flow .item__step {
    width: 120px;
    height: 30px;
    font-size: 19px;
  }
  .home .main .flow .item__head {
    height: 116px;
  }
  .home .main .flow .item__ico {
    height: 116px;
  }
  .home .main .flow .item:nth-child(2) .item__ico {
    height: 85px;
  }
  .home .main .flow .item:nth-child(3) .item__ico {
    height: 96px;
  }
  .home .main .flow .item:nth-child(4) .item__ico {
    height: 100px;
  }
  .home .main .flow .item__title {
    height: 68px;
  }
  .home .main .flow .item__title h3 {
    font-size: 22px;
  }
  .home .main .flow .item__title h3 span {
    margin-top: 6px;
    font-size: 15px;
  }
  .home .main .flow .item__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .flow {
    padding: 60px 0;
  }
  .home .main .flow .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .home .main .flow__body {
    -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;
    margin-top: 45px;
  }
  .home .main .flow .item {
    padding: 70px 30px 30px;
    width: 100%;
    max-width: 300px;
  }
  .home .main .flow .item:nth-child(n+2) {
    margin-top: 15px;
  }
  .home .main .flow .item__step {
    width: 100px;
    font-size: 16px;
  }
  .home .main .flow .item__head {
    height: auto;
  }
  .home .main .flow .item__ico {
    width: 90px;
    height: auto;
  }
  .home .main .flow .item:nth-child(1) .item__ico {
    width: 80px;
  }
  .home .main .flow .item__title {
    margin-top: 20px;
    height: auto;
  }
  .home .main .flow .item__title h3 {
    font-size: 20px;
  }
  .home .main .flow .item__title h3 span {
    font-size: 14px;
  }
  .home .main .flow .item__txt {
    margin-top: 16px;
    font-size: 15px;
  }
}
/* ===================================

  よくある質問

====================================== */
.home .main .faq {
  padding: 130px 0;
}
.home .main .faq .container {
  margin: 0 auto;
  padding: 0 30px;
  width: 1280px;
  max-width: 100%;
}
.home .main .faq__contents {
  margin-top: 65px;
}
.home .main .faq .item {
  padding: 38px 40px 35px 50px;
  border: 1px solid var(--cl-border);
}
.home .main .faq .item + .item {
  margin-top: 20px;
}
.home .main .faq .item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.home .main .faq .item__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  width: 50px;
}
.home .main .faq .item__head span {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--cl-ac);
}
.home .main .faq .item__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  word-break: break-all;
}
.home .main .faq .item__title {
  position: relative;
  margin-top: -0.125em;
  padding-right: 80px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.home .main .faq .item__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.35em;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url(img/ico/ico-plus.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center center;
}
.home .main .faq .item__q {
  cursor: pointer;
}
.home .main .faq .item__q.active .item__title::after {
  background-image: url(img/ico/ico-minus.svg);
  background-size: 20px 2px;
}
.home .main .faq .item__a {
  margin-top: 25px;
}
.home .main .faq .item__txt {
  padding-right: 80px;
  padding-bottom: 13px;
  font-size: 18px;
  line-height: 2;
}

@media screen and (max-width: 1199px) {
  .home .main .faq {
    padding: 80px 0;
  }
  .home .main .faq .container {
    width: 100%;
    max-width: 768px;
  }
  .home .main .faq__contents {
    margin-top: 50px;
  }
  .home .main .faq .item {
    padding: 20px 30px;
  }
  .home .main .faq .item + .item {
    margin-top: 15px;
  }
  .home .main .faq .item__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35px;
            flex: 0 0 35px;
    width: 35px;
  }
  .home .main .faq .item__head span {
    font-size: 26px;
  }
  .home .main .faq .item__title {
    margin-top: -0.09em;
    padding-right: 40px;
    font-size: 18px;
  }
  .home .main .faq .item__title::after {
    top: 0.3em;
    width: 18px;
    height: 18px;
    background-size: 18px auto;
  }
  .home .main .faq .item__a {
    margin-top: 20px;
  }
  .home .main .faq .item__txt {
    padding-right: 40px;
    padding-bottom: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 758px) {
  .home .main .faq {
    padding: 60px 0;
  }
  .home .main .faq .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .home .main .faq__contents {
    margin-top: 45px;
  }
  .home .main .faq .item {
    padding: 20px 15px;
  }
  .home .main .faq .item + .item {
    margin-top: 12px;
  }
  .home .main .faq .item__head {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 28px;
            flex: 0 0 28px;
    width: 28px;
  }
  .home .main .faq .item__head span {
    font-size: 24px;
  }
  .home .main .faq .item__title {
    margin-top: -0.15em;
    padding-right: 30px;
    font-size: 17px;
  }
  .home .main .faq .item__title::after {
    top: 0.3em;
  }
  .home .main .faq .item__a {
    margin-top: 12px;
  }
  .home .main .faq .item__txt {
    padding-right: 30px;
    padding-bottom: 8px;
    font-size: 15px;
  }
}
/* ===================================

  働く社員を知る一覧

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

  メインビジュアル

====================================== */
.nothumb-mv {
  padding: 67px 0 102px;
}
.nothumb-mv__inner {
  width: 1410px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
.nothumb-mv-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.nothumb-mv-title .entitle p {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 500;
}
.nothumb-mv-title .entitle p::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--cl-ac);
}
.nothumb-mv-title .title {
  margin-top: 36px;
  font-size: 48px;
  font-weight: 700;
}

@media screen and (max-width: 1199px) {
  .nothumb-mv {
    padding: 50px 0 80px;
  }
  .nothumb-mv__inner {
    width: 100%;
  }
  .nothumb-mv-title .entitle p {
    padding-bottom: 8px;
    font-size: 14px;
  }
  .nothumb-mv-title .title {
    margin-top: 20px;
    font-size: 36px;
  }
}
@media screen and (max-width: 758px) {
  .nothumb-mv {
    padding: 40px 0 70px;
  }
  .nothumb-mv__inner {
    padding: 0 20px;
  }
  .nothumb-mv-title .title {
    font-size: 30px;
  }
}
/* ===================================

  コンテンツ

====================================== */
.blog .main {
  padding-bottom: 180px;
}
.blog .main .container {
  width: 1410px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
.blog .main .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.blog .main .item {
  position: relative;
  width: calc((100% - 30px) / 4);
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.blog .main .item__link {
  position: relative;
  display: block;
}
.blog .main .item__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#1c2c43), color-stop(30%, rgba(28, 44, 67, 0.6)), color-stop(70%, rgba(28, 44, 67, 0)));
  background: linear-gradient(to top, #1c2c43 0%, rgba(28, 44, 67, 0.6) 30%, rgba(28, 44, 67, 0) 70%);
  z-index: 1;
}
.blog .main .item + .item {
  margin-left: 10px;
}
.blog .main .item:nth-child(4n+1) {
  margin-left: 0;
}
.blog .main .item:nth-child(n+5) {
  margin-top: 40px;
}
.blog .main .item__thumb {
  width: 100%;
  overflow: hidden;
}
.blog .main .item__thumb-img {
  width: 100%;
  padding-top: 163.6363636364%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.blog .main .item__link:hover {
  opacity: 0.6;
}
.blog .main .item__link:hover .item__thumb-img {
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}
.blog .main .item__contents {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-left: 1.5625vw;
  padding-right: 1.5625vw;
  padding-bottom: 35px;
  width: 100%;
  color: #fff;
  z-index: 2;
}
.blog .main .item__txt {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.66;
}
.blog .main .item__body {
  margin-top: 16px;
  line-height: 2;
}
.blog .main .item__info {
  font-size: 16px;
}
.blog .main .item__name {
  margin-left: 1em;
}

@media screen and (max-width: 1199px) {
  .blog .main {
    padding-bottom: 120px;
  }
  .blog .main .container {
    width: 100%;
    max-width: 768px;
    padding: 0 30px;
  }
  .blog .main .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .blog .main .item {
    width: calc((100% - 20px) / 3);
  }
  .blog .main .item:nth-child(4n+1) {
    margin-left: 10px;
  }
  .blog .main .item:nth-child(3n+1) {
    margin-left: 0;
  }
  .blog .main .item:nth-child(n+4) {
    margin-top: 25px;
  }
  .blog .main .item__link::after {
    background: -webkit-gradient(linear, left bottom, left top, from(#1c2c43), color-stop(40%, rgba(28, 44, 67, 0.8)), color-stop(70%, rgba(28, 44, 67, 0)));
    background: linear-gradient(to top, #1c2c43 0%, rgba(28, 44, 67, 0.8) 40%, rgba(28, 44, 67, 0) 70%);
  }
  .blog .main .item__link:hover {
    opacity: 1;
  }
  .blog .main .item__link:hover .item__thumb-img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .blog .main .item__contents {
    padding: 0 15px 30px;
  }
  .blog .main .item__txt {
    font-size: 16px;
  }
  .blog .main .item__body {
    margin-top: 15px;
  }
  .blog .main .item__info {
    font-size: 14px;
  }
  .blog .main .item__name {
    margin-left: 1em;
  }
}
@media screen and (max-width: 758px) {
  .blog .main {
    padding-bottom: 80px;
  }
  .blog .main .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  .blog .main .items {
    -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;
  }
  .blog .main .item {
    width: 100%;
    max-width: 300px;
  }
  .blog .main .item:nth-child(4n+1) {
    margin-left: 0;
  }
  .blog .main .item + .item {
    margin-left: 0;
  }
  .blog .main .item:nth-child(n+2) {
    margin-top: 15px;
  }
  .blog .main .item__link::after {
    background: -webkit-gradient(linear, left bottom, left top, from(#1c2c43), color-stop(30%, rgba(28, 44, 67, 0.8)), color-stop(70%, rgba(28, 44, 67, 0)));
    background: linear-gradient(to top, #1c2c43 0%, rgba(28, 44, 67, 0.8) 30%, rgba(28, 44, 67, 0) 70%);
  }
  .blog .main .item__thumb-img {
    padding-top: 135%;
    background-position: top 0 center;
  }
  .blog .main .item__contents {
    padding: 0 15px 20px;
  }
}
/* ===================================

  働く社員を知る詳細

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

  メインビジュアル

====================================== */
.single .main {
  padding-bottom: 171px;
}
.single .main .single-visual {
  width: 100%;
  padding-left: 9.375vw;
}
.single .main .single-visual__inner {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top 0 center;
  width: 100%;
  height: 720px;
  max-height: calc(100vh - 100px);
}
.single .main .single-visual__contents {
  position: absolute;
  left: -1px;
  bottom: -1px;
  padding: 40px 40px 30px;
  max-width: 50%;
  background-color: #fff;
  word-break: break-all;
}
.single .main .single-visual__contents .comments {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
}
.single .main .single-visual__contents .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
  font-size: 16px;
  line-height: 2;
}
.single .main .single-visual__contents .name {
  margin-left: 15px;
}
.single .main .single-visual__contents .join {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 1199px) {
  .single .main {
    padding-bottom: 120px;
  }
  .single .main .single-visual {
    padding-left: 10vw;
  }
  .single .main .single-visual__inner {
    height: 580px;
  }
  .single .main .single-visual__contents {
    max-width: calc(100% - 20vw);
    padding: 35px 30px 25px 25px;
  }
  .single .main .single-visual__contents .comments {
    font-size: 28px;
  }
  .single .main .single-visual__contents .data {
    font-size: 15px;
  }
  .single .main .single-visual__contents .name {
    margin-left: 12px;
  }
  .single .main .single-visual__contents .join {
    font-size: 15px;
  }
}
@media screen and (max-width: 758px) {
  .single .main {
    padding-bottom: 80px;
  }
  .single .main .single-visual {
    padding-left: 0;
  }
  .single .main .single-visual__inner {
    height: 450px;
    background-position: top 0 right -60vw;
  }
  .single .main .single-visual__contents {
    max-width: calc(100vw - 20px);
    padding: 30px 20px;
    bottom: -40px;
  }
  .single .main .single-visual__contents .comments {
    font-size: 20px;
  }
  .single .main .single-visual__contents .data {
    margin-top: 15px;
    font-size: 13px;
  }
  .single .main .single-visual__contents .name {
    margin-left: 1em;
  }
  .single .main .single-visual__contents .join {
    font-size: 13px;
  }
}
/* ===================================

  コンテンツ

====================================== */
.single .main .contents {
  padding-top: 170px;
}
.single .main .contents .container {
  margin: 0 auto;
  padding: 0 30px;
  width: 1140px;
  max-width: 100%;
}
.single .main .contents .entry > *:first-child {
  margin-top: 0 !important;
}
.single .main .contents .entry > h2 {
  margin-top: 6em;
}
.single .main .contents .entry h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.single .main .contents .entry p {
  margin-top: 22px;
  font-size: 18px;
  line-height: 2;
}
.single .main .contents .entry ul {
  padding-left: 1.5em;
  list-style-type: disc;
}
.single .main .contents .entry ul li {
  font-size: 18px;
  line-height: 2;
}
.single .main .contents .entry ul + p {
  margin-top: 0;
}
.single .main .contents .entry .wp-block-columns {
  margin-top: 6em;
}

@media screen and (max-width: 1199px) {
  .single .main .contents {
    padding-top: 120px;
  }
  .single .main .contents .container {
    width: 100%;
    max-width: 768px;
  }
  .single .main .contents .entry > h2 {
    margin-top: 60px;
  }
  .single .main .contents .entry h2 {
    font-size: 22px;
  }
  .single .main .contents .entry p {
    margin-top: 1.2em;
    font-size: 16px;
  }
  .single .main .contents .entry ul li {
    font-size: 16px;
  }
  .single .main .contents .entry .wp-block-columns {
    margin-top: 60px;
  }
}
@media screen and (max-width: 758px) {
  .single .main .contents {
    padding-top: 100px;
  }
  .single .main .contents .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .single .main .contents .entry > h2 {
    margin-top: 50px;
  }
  .single .main .contents .entry h2 {
    font-size: 18px;
  }
  .single .main .contents .entry p {
    font-size: 15px;
  }
  .single .main .contents .entry ul li {
    font-size: 15px;
  }
  .single .main .contents .entry .wp-block-columns {
    margin-top: 50px;
  }
}
/* ===================================

  404エラー

====================================== */
.error404 .main {
  padding-bottom: 160px;
}
.error404 .main .container {
  margin: 0 auto;
  padding: 0 30px;
  width: 1140px;
  max-width: 100%;
}
.error404 .main .contents {
  padding-top: 40px;
}
.error404 .main .contents__txt p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}
.error404 .main .contents__txt p + p {
  margin-top: 2em;
}
.error404 .main .contents .link-btn {
  margin: 134px auto 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

@media screen and (max-width: 1199px) {
  .error404 .main {
    padding-bottom: 100px;
  }
  .error404 .main .container {
    width: 100%;
    max-width: 768px;
  }
  .error404 .main .contents {
    padding-top: 30px;
  }
  .error404 .main .contents__txt p {
    font-size: 16px;
  }
  .error404 .main .contents .link-btn {
    margin: 100px auto 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 758px) {
  .error404 .main {
    padding-bottom: 60px;
  }
  .error404 .main .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .error404 .main .contents {
    padding-top: 20px;
  }
  .error404 .main .contents__txt p {
    font-size: 15px;
    text-align: left;
  }
  .error404 .main .contents .link-btn {
    margin: 60px auto 0;
    font-size: 16px;
  }
}