@charset "UTF-8";
:root {
  --color-black: #260303;
  --color-yellow: #FFD800;
  --color-orange: #FF6200;
  --color-green: #26AA07;
  --color-cream: #FFF9E3;
  --color-gray: #F7F7F7;
  --transition-base: 0.3s;
  --hover-opacity: 0.6;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
}

:where(body) {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  color: #000;
  background-color: #fff;
}
@media only screen and (max-width:1025px) {
  :where(body) {
    font-size: 14px;
  }
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
  width: 100%;
  height: auto;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
  scroll-margin-block: 10vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mt-\[10px\] {
  margin-top: 10px;
}

.md\:mt-\[10px\] {
  margin-top: 10px;
}

.lg\:mt-\[10px\] {
  margin-top: 10px;
}

.mt-\[24px\] {
  margin-top: 24px;
}

.md\:mt-\[24px\] {
  margin-top: 24px;
}

.lg\:mt-\[24px\] {
  margin-top: 24px;
}

.txt-align-\[center\] {
  text-align: center;
}

.txt-color-\[black\] {
  --txt-color: var(--color-black);
}

.txt-color-\[white\] {
  --txt-color: #fff;
}

.bg-color-\[black\] {
  --bg-color: var(--color-black);
}

.bg-color-\[white\] {
  --bg-color: #FFF;
}

.bg-color-\[yellow\] {
  --bg-color: var(--color-yellow);
}

.bg-color-\[orange\] {
  --bg-color: var(--color-orange);
}

.bg-color-\[green\] {
  --bg-color: var(--color-green);
}

.bg-color-\[cream\] {
  --bg-color: var(--color-cream);
}

.c-paragraph {
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

.c-paragraph-equal {
  text-align: justify;
  word-break: keep-all;
}

.c-heading-lv2 {
  text-align: center;
  font-weight: 600;
}
.c-heading-lv2 span {
  font-size: min(1.5714285714vw, 22px);
  display: inline-block;
  padding-top: 1.4285714286vw;
}
@media only screen and (min-width:1400px) {
  .c-heading-lv2 span {
    font-size: 22px;
  }
}
@media only screen and (max-width:768px) {
  .c-heading-lv2 span {
    font-size: 14px;
    padding-top: 12px;
  }
}

.c-heading-lv3 {
  font-weight: 400;
}

.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  padding: 20px 0;
  text-align: center;
  border-radius: 10px;
  background: var(--color-yellow);
  width: 250px;
  margin: 0 auto;
}
.c-button > span {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}
.c-button > img {
  width: 16px;
  height: auto;
}
.c-button:hover {
  opacity: 0.7;
}

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

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

.middle-br {
  display: block;
}
@media only screen and (min-width:1400px) {
  .middle-br {
    display: none;
  }
}
@media only screen and (max-width:768px) {
  .middle-br {
    display: none;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 92.8571428571vw;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 40px;
  right: 0;
  left: 0;
  z-index: 10;
}
@media only screen and (min-width:1400px) {
  .header {
    max-width: 1300px;
  }
}
@media screen and (max-width: 860px) {
  .header {
    top: 15px;
  }
}
.header__ttl {
  width: 21.8571428571vw;
  min-width: 232px;
}
@media only screen and (min-width:1400px) {
  .header__ttl {
    width: 306px;
  }
}
@media only screen and (max-width:768px) {
  .header__ttl {
    width: 232px;
  }
}
.header__ttl > a {
  display: block;
}
@media (hover) {
  .header__ttl > a {
    transition: opacity var(--transition-base);
  }
  .header__ttl > a:hover {
    opacity: var(--hover-opacity);
  }
}
.header__menu-wrap {
  position: relative;
}
.header__menu-wrap::before {
  content: "";
  display: none;
}
@media screen and (max-width: 860px) {
  .header__menu-wrap::before {
    background: url(../img/icon-spmenu.png) no-repeat center;
    background-size: cover;
    display: block;
    width: 44px;
    height: 44px;
  }
}
.header__menu-wrap .sp-menu-check {
  display: none;
}
.header__menu-wrap .sp-menu-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  margin: auto;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 23px;
  height: 18px;
  justify-content: center;
  align-items: center;
  margin: 13px auto;
}
@media screen and (min-width: 860px) {
  .header__menu-wrap .sp-menu-icon {
    display: none;
  }
}
.header__menu-wrap .sp-menu-icon span {
  width: 23px;
  height: 3px;
  border-radius: 5px;
  background: #26AA07;
  transition: 0.3s;
  position: absolute;
}
.header__menu-wrap .sp-menu-icon span:nth-child(1) {
  top: 0;
}
.header__menu-wrap .sp-menu-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__menu-wrap .sp-menu-icon span:nth-child(3) {
  bottom: 0;
}
.header__menu {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 860px) {
  .header__menu {
    background: var(--color-green);
    width: 100%;
    top: 0;
    left: 0;
    height: 100%;
    position: fixed;
    z-index: -1;
    overflow: auto;
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .header__menu-list {
    width: 360px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 860px) {
  .header__menu-list {
    display: block;
    max-width: 280px;
    width: 92%;
    margin: 80px auto 0 auto;
  }
}
@media (hover) {
  .header__menu-list > a {
    transition: opacity var(--transition-base);
  }
  .header__menu-list > a:hover {
    opacity: var(--hover-opacity);
  }
}
.header__menu-list .--spOnly {
  display: none;
}
@media screen and (max-width: 860px) {
  .header__menu-list .--spOnly {
    display: block;
  }
}
.header__menu-list-item {
  display: inline-block;
  background: #FFF;
  margin-right: 15px;
  padding: 4px;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .header__menu-list-item:nth-child(1), .header__menu-list-item:nth-child(2), .header__menu-list-item:nth-child(3) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 860px) {
  .header__menu-list-item {
    background: inherit;
    display: block;
    margin-bottom: 10px;
    padding: 20px 0;
    color: #FFF;
    border-bottom: dashed 2px #FFF;
  }
}
@media screen and (min-width: 860px) {
  .header__menu-list-item.--yellow {
    background: var(--color-yellow);
  }
}
.header__menu-list-item span {
  font-size: max(1.2857142857vw, 16px);
  font-weight: 700;
}
@media only screen and (min-width:1400px) {
  .header__menu-list-item span {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .header__menu-list-item span {
    font-size: 15px;
  }
}
@media screen and (max-width: 860px) {
  .header__menu-list-item span {
    font-size: 18px;
  }
}
@media screen and (max-width: 860px) {
  .header__menu-txtlink {
    font-size: 14px;
    text-decoration: underline;
    color: #FFF;
    text-align: center;
    margin-top: 30px;
  }
}
@media screen and (max-width: 860px) {
  .header__menu-link {
    padding-bottom: 80px;
  }
}
.header__menu-link-btn {
  display: flex;
  background: var(--color-yellow);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 860px) {
  .header__menu-link-btn {
    width: 220px;
    margin: 30px auto 0 auto;
  }
}
.header__menu-link-btn img {
  width: 16px;
  height: auto;
  margin-left: 10px;
}
@media (hover) {
  .header__menu-link > a {
    transition: opacity var(--transition-base);
  }
  .header__menu-link > a:hover {
    opacity: var(--hover-opacity);
  }
}

@media screen and (max-width: 860px) {
  .header {
    /* チェック時のアニメーション */
  }
  .header .sp-menu-check:checked + .sp-menu-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .header .sp-menu-check:checked + .sp-menu-icon span:nth-child(2) {
    opacity: 0;
  }
  .header .sp-menu-check:checked + .sp-menu-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
  .header .header__menu {
    display: none;
  }
  .header .sp-menu-check:checked + .sp-menu-icon + .header__menu {
    display: block;
  }
}
section {
  position: relative;
  padding: 9% 0;
}
@media only screen and (max-width:768px) {
  section {
    padding: 60px 0;
  }
}
section .container {
  position: relative;
  margin: 0 auto;
}

.waveline {
  width: 100.1%;
  position: absolute;
  top: calc(100% - 4px);
  fill: var(--bg-color);
  z-index: 4;
}
.waveline.--upper {
  top: inherit;
  bottom: calc(100% - 4px);
}
.waveline.--invert {
  transform: rotateX(180deg) rotateY(180deg);
}
.waveline.--top {
  top: -2px;
}
.waveline.--top-sp {
  top: -82px;
  right: 0;
  left: inherit;
}

.top {
  background: var(--color-cream);
  position: relative;
  height: 57.1428571429vw;
}
@media only screen and (max-width:768px) {
  .top {
    height: 860px;
    overflow: hidden;
  }
}
.top .waveline {
  --bg-color: var(--color-green);
  fill: var(--bg-color);
}
@media only screen and (max-width:768px) {
  .top .waveline.--invert.--top {
    width: 768px;
    left: 0;
  }
}
.top .waveline.--top-sp {
  display: none;
}
@media only screen and (max-width:768px) {
  .top .waveline.--top-sp {
    display: block;
    top: -77px;
    right: 0;
  }
}
@media screen and (max-width: 710px) {
  .top .waveline.--top-sp {
    top: -55px;
  }
}
@media screen and (max-width: 526px) {
  .top .waveline.--top-sp {
    top: -35px;
  }
}
.top__kv-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 57.1428571429vw;
}
@media only screen and (max-width:768px) {
  .top__kv-slide {
    height: 610px;
    top: 35px;
  }
}
.top__kv-slide .swiper {
  height: 57.1428571429vw;
}
@media only screen and (max-width:768px) {
  .top__kv-slide .swiper {
    height: 300px;
  }
  .top__kv-slide .swiper.--01 {
    display: none;
  }
}
.top__kv-slide .swiper.--02, .top__kv-slide .swiper.--03 {
  display: none;
}
@media only screen and (max-width:768px) {
  .top__kv-slide .swiper.--02, .top__kv-slide .swiper.--03 {
    display: block;
  }
}
.top__kv-slide .swiper.--03 {
  margin-top: 10px;
}
.top__kv-slide .swiper-wrapper {
  width: 100%;
}
.top__kv-slide .swiper-slide {
  width: 50vw;
  height: 57.1428571429vw;
  overflow: hidden;
}
@media only screen and (max-width:768px) {
  .top__kv-slide .swiper-slide {
    width: 350px;
    height: 300px;
  }
}
.top__kv-slide .swiper-slide.--01 {
  background: url(../img/top-kv-bgimg01.webp) no-repeat center top;
  background-size: cover;
}
.top__kv-slide .swiper-slide.--02 {
  background: url(../img/top-kv-bgimg02.webp) no-repeat center top;
  background-size: cover;
}
.top__kv-slide .swiper-slide.--03 {
  background: url(../img/top-kv-bgimg03.webp) no-repeat center top;
  background-size: cover;
}
.top__kv-slide .swiper-slide.--04 {
  background: url(../img/top-kv-bgimg04.webp) no-repeat center top;
  background-size: cover;
}
.top__kv-slide .swiper-slide.--05 {
  background: url(../img/top-kv-bgimg05.webp) no-repeat center top;
  background-size: cover;
}
.top__kv-slide .swiper-slide.--06 {
  background: url(../img/top-kv-bgimg06.webp) no-repeat center top;
  background-size: cover;
}
.top__statement-wrapper {
  max-width: 71.4285714286vw;
  width: 100%;
  position: absolute;
  z-index: 5;
  bottom: 17%;
  left: 12%;
}
@media only screen and (min-width:1400px) {
  .top__statement-wrapper {
    width: 1000px;
    left: 0;
    right: 0;
    bottom: 14%;
    margin: auto;
  }
}
@media screen and (max-width: 940px) {
  .top__statement-wrapper {
    z-index: 6;
  }
}
@media screen and (max-width: 910px) {
  .top__statement-wrapper {
    bottom: 8%;
  }
}
@media only screen and (max-width:768px) {
  .top__statement-wrapper {
    z-index: 6;
    width: 100%;
    max-width: 100%;
    left: 0;
    bottom: inherit;
    top: 630px;
    display: block;
    background: var(--color-green);
  }
}
@media only screen and (max-width:768px) {
  .top__statement {
    margin: 0 auto;
    max-width: 92%;
    height: 240px;
  }
}
.top__statement-catchcopy {
  font-size: max(3.5714285714vw, 38px);
  font-weight: 700;
  line-height: 1.6;
  color: #FFF;
}
@media only screen and (min-width:1400px) {
  .top__statement-catchcopy {
    font-size: 50px;
  }
}
@media screen and (max-width: 940px) {
  .top__statement-catchcopy {
    font-size: 32px;
  }
}
@media only screen and (max-width:768px) {
  .top__statement-catchcopy {
    font-size: 29px;
    position: absolute;
    top: -50px;
    z-index: 5;
  }
}
@media screen and (max-width: 540px) {
  .top__statement-catchcopy {
    top: -27px;
  }
}
.top__statement-catchcopy span {
  background: var(--color-orange);
}
.top__statement-bodycopy {
  font-size: max(1.4285714286vw, 18px);
  font-weight: 700;
  background: #FFF;
  display: inline-block;
  padding: 0.3571428571vw;
  margin-top: 0.8571428571vw;
}
@media only screen and (min-width:1400px) {
  .top__statement-bodycopy {
    font-size: 20px;
  }
}
@media screen and (max-width: 940px) {
  .top__statement-bodycopy {
    font-size: 16px;
  }
}
@media only screen and (max-width:768px) {
  .top__statement-bodycopy {
    font-size: 18px;
    background: inherit;
    color: #FFF;
    top: 50px;
    position: absolute;
  }
}
@media screen and (max-width: 540px) {
  .top__statement-bodycopy {
    top: 70px;
  }
}

.intro {
  background: var(--color-green);
  padding: 8% 0;
  z-index: 5;
}
@media only screen and (max-width:768px) {
  .intro {
    top: -1px;
  }
}
@media only screen and (max-width:768px) {
  .intro .waveline {
    display: none;
  }
}
.intro__container {
  max-width: 1200px;
  width: 85.7142857143vw;
  margin: 0 auto;
  padding: 7.1428571429vw 5.7142857143vw;
  border: solid 2px #FFF;
  border-radius: 1.4285714286vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width:1400px) {
  .intro__container {
    padding: 100px 80px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 1160px) {
  .intro__container {
    max-width: 680px;
    padding: 40px 30px;
    width: 92%;
    display: block;
    border-radius: 20px;
  }
}
.intro__statement {
  padding-right: 2%;
}
.intro__catch-copy {
  font-size: max(2.5vw, 30px);
  line-height: 1.8;
  color: var(--color-yellow);
}
@media only screen and (min-width:1400px) {
  .intro__catch-copy {
    font-size: 35px;
  }
}
@media screen and (max-width: 1160px) {
  .intro__catch-copy {
    font-size: 20px;
  }
}
.intro__body-copy {
  color: #FFF;
  font-size: max(1.2857142857vw, 16px);
  line-height: 1.8;
  padding-top: 2.1428571429vw;
}
@media only screen and (min-width:1400px) {
  .intro__body-copy {
    padding-top: 30px;
    font-size: 18px;
  }
}
@media screen and (max-width: 1160px) {
  .intro__body-copy {
    font-size: 14px;
  }
}
@media screen and (max-width: 1160px) {
  .intro__thumb {
    margin-top: 20px;
  }
}
.intro__thumb .intro-img img {
  max-width: 420px;
  width: 30vw;
  height: auto;
}
@media only screen and (min-width:1400px) {
  .intro__thumb .intro-img img {
    width: 420px;
  }
}
@media screen and (max-width: 1160px) {
  .intro__thumb .intro-img img {
    width: 298px;
    margin: 0 auto;
  }
}

.photoline {
  background: linear-gradient(180deg, var(--color-green) 0%, var(--color-green) 50%, var(--color-cream) 50%, var(--color-cream) 100%);
}
@media only screen and (max-width:768px) {
  .photoline {
    overflow: hidden;
  }
}
.photoline .container {
  max-width: 100vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width:768px) {
  .photoline .container {
    width: 1050px;
    max-width: inherit;
    margin: 0 calc(50% - 525px);
  }
}

.highlights {
  background: var(--color-cream);
}
.highlights .c-heading-lv2 {
  padding-bottom: 8.5714285714vw;
}
@media only screen and (min-width:1400px) {
  .highlights .c-heading-lv2 {
    padding-bottom: 120px;
  }
}
@media only screen and (max-width:768px) {
  .highlights .c-heading-lv2 {
    padding-bottom: 60px;
  }
}
.highlights .c-heading-lv2 > img {
  max-width: 440px;
  width: 31.4285714286vw;
  height: auto;
  margin: 0 auto;
}
@media only screen and (min-width:1400px) {
  .highlights .c-heading-lv2 > img {
    width: 440px;
  }
}
@media only screen and (max-width:768px) {
  .highlights .c-heading-lv2 > img {
    max-width: 226px;
    width: 100%;
  }
}
.highlights .container {
  max-width: 1200px;
  width: 85.7142857143vw;
  position: relative;
}
@media only screen and (max-width:768px) {
  .highlights .container {
    max-width: 380px;
    width: 92%;
    margin: 0 auto;
  }
}
@media only screen and (max-width:768px) {
  .highlights__list-wrap {
    margin-left: 80px;
  }
}
.highlights__list-heading {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0;
  bottom: inherit;
  max-width: 72px;
  width: 5.1428571429vw;
  margin-top: 10px;
}
@media only screen and (min-width:1400px) {
  .highlights__list-heading {
    width: 72px;
  }
}
@media only screen and (max-width:768px) {
  .highlights__list-heading {
    width: 45px;
    right: inherit;
  }
}
.highlights__list-heading > img {
  width: 5.1428571429vw;
  height: auto;
}
@media only screen and (min-width:1400px) {
  .highlights__list-heading > img {
    width: 72px;
  }
}
@media only screen and (max-width:768px) {
  .highlights__list-heading > img {
    width: 45px;
  }
}
.highlights__list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4.2857142857vw;
}
@media only screen and (min-width:1400px) {
  .highlights__list-item {
    padding-top: 60px;
  }
}
@media only screen and (max-width:768px) {
  .highlights__list-item {
    display: block;
    padding-top: 40px;
  }
}
.highlights__list-item figcaption {
  max-width: 510px;
  width: 36.4285714286vw;
  position: relative;
}
@media only screen and (min-width:1400px) {
  .highlights__list-item figcaption {
    width: 510px;
  }
}
@media only screen and (max-width:768px) {
  .highlights__list-item figcaption {
    max-width: 300px;
    width: 100%;
  }
}
.highlights__list-item figure {
  max-width: 510px;
  width: 36.4285714286vw;
}
@media only screen and (max-width:768px) {
  .highlights__list-item figure {
    max-width: 300px;
    width: 100%;
    margin-top: 20px;
  }
}
.highlights__list-item figure > img {
  width: 100%;
  height: auto;
}
.highlights__list-item.--01 {
  padding-top: 0px;
}
.highlights__list-item.--02 {
  flex-direction: row-reverse;
}
@media only screen and (max-width:768px) {
  .highlights__list-item.--02 {
    flex-direction: inherit;
  }
}
.highlights__list-item.--02 figure {
  max-width: 470px;
  width: 33.5714285714vw;
}
@media only screen and (min-width:1400px) {
  .highlights__list-item.--02 figure {
    width: 470px;
  }
}
@media only screen and (max-width:768px) {
  .highlights__list-item.--02 figure {
    max-width: 300px;
    width: 100%;
  }
}
.highlights__list-item.--04 {
  flex-direction: row-reverse;
}
@media only screen and (max-width:768px) {
  .highlights__list-item.--04 {
    flex-direction: inherit;
  }
}
.highlights__list-item.--04 .highlights__catchcopy br {
  display: none;
}
@media screen and (max-width: 1400px) {
  .highlights__list-item.--04 .highlights__catchcopy br {
    display: block;
  }
}
.highlights__list-item .highlights__illust-img {
  position: absolute;
  height: auto;
  top: 2.1428571429vw;
  right: 0;
}
@media only screen and (min-width:1400px) {
  .highlights__list-item .highlights__illust-img {
    top: 30px;
  }
}
.highlights__list-item .highlights__illust-img.--01 {
  max-width: 112px;
  width: 8vw;
}
@media only screen and (min-width:1400px) {
  .highlights__list-item .highlights__illust-img.--01 {
    width: 112px;
  }
}
@media only screen and (max-width:768px) {
  .highlights__list-item .highlights__illust-img.--01 {
    width: 60px;
    margin-top: -20px;
  }
}
.highlights__list-item .highlights__illust-img.--02 {
  max-width: 122px;
  width: 8.7142857143vw;
  margin-top: -30px;
}
@media only screen and (min-width:1400px) {
  .highlights__list-item .highlights__illust-img.--02 {
    width: 122px;
  }
}
@media only screen and (max-width:768px) {
  .highlights__list-item .highlights__illust-img.--02 {
    width: 60px;
    margin-top: -30px;
  }
}
.highlights__list-item .highlights__illust-img.--03 {
  max-width: 114px;
  width: 8.1428571429vw;
}
@media only screen and (min-width:1400px) {
  .highlights__list-item .highlights__illust-img.--03 {
    width: 114px;
  }
}
@media only screen and (max-width:768px) {
  .highlights__list-item .highlights__illust-img.--03 {
    width: 56px;
    margin-top: -30px;
  }
}
.highlights__list-item .highlights__illust-img.--04 {
  max-width: 118px;
  width: 8.4285714286vw;
}
@media only screen and (min-width:1400px) {
  .highlights__list-item .highlights__illust-img.--04 {
    width: 118px;
    margin-top: -100px;
  }
}
@media only screen and (max-width:768px) {
  .highlights__list-item .highlights__illust-img.--04 {
    width: 62px;
    margin-top: -45px;
  }
}
.highlights__list-item .highlights__illust-img.--05 {
  max-width: 77px;
  width: 5.5vw;
}
@media only screen and (min-width:1400px) {
  .highlights__list-item .highlights__illust-img.--05 {
    width: 77px;
  }
}
@media only screen and (max-width:768px) {
  .highlights__list-item .highlights__illust-img.--05 {
    width: 50px;
    margin-top: -30px;
  }
}
.highlights__tags {
  display: block;
  color: var(--color-green);
  font-size: max(4.2857142857vw, 52px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1.4285714286vw;
}
@media only screen and (min-width:1400px) {
  .highlights__tags {
    margin-bottom: 20px;
    font-size: 60px;
  }
}
@media only screen and (max-width:768px) {
  .highlights__tags {
    font-size: 40px;
  }
}
.highlights__catchcopy {
  text-align: left;
  font-size: max(2.1428571429vw, 26px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-green);
}
@media only screen and (min-width:1400px) {
  .highlights__catchcopy {
    font-size: 30px;
  }
}
@media only screen and (max-width:768px) {
  .highlights__catchcopy {
    font-size: 20px;
  }
}
.highlights__catchcopy span {
  color: var(--color-orange);
}
.highlights__bodycopy {
  color: var(--color-green);
  font-size: max(1.1428571429vw, 14px);
  line-height: 2;
  margin-top: 0.7142857143vw;
}
@media only screen and (min-width:1400px) {
  .highlights__bodycopy {
    margin-top: 10px;
    font-size: 16px;
  }
}
@media only screen and (max-width:768px) {
  .highlights__bodycopy {
    font-size: 13px;
  }
}
.highlights__link {
  margin-top: 10vw;
}
@media only screen and (min-width:1400px) {
  .highlights__link {
    margin-top: 140px;
  }
}
@media only screen and (max-width:768px) {
  .highlights__link {
    margin-top: 60px;
  }
}

.workday {
  background: var(--color-gray);
}
.workday .c-heading-lv2 > img {
  max-width: 408px;
  width: 29.1428571429vw;
  height: auto;
  margin: 0 auto;
}
@media only screen and (min-width:1400px) {
  .workday .c-heading-lv2 > img {
    width: 408px;
  }
}
@media only screen and (max-width:768px) {
  .workday .c-heading-lv2 > img {
    width: 176px;
  }
}
.workday .container {
  max-width: 1000px;
  width: 71.4285714286vw;
  padding-top: 7.1428571429vw;
  padding-bottom: 11.4285714286vw;
}
@media only screen and (min-width:1400px) {
  .workday .container {
    padding-top: 100px;
    padding-bottom: 160px;
  }
}
@media only screen and (max-width:768px) {
  .workday .container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.workday__listwrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:768px) {
  .workday__listwrap {
    display: block;
    width: 92%;
    margin: 0 auto;
  }
}
.workday__list {
  display: flex;
  flex-wrap: wrap;
  max-width: 640px;
  width: 45.7142857143vw;
}
@media only screen and (max-width:768px) {
  .workday__list {
    width: 100%;
  }
}
.workday__list-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3.5714285714vw;
  max-width: 650px;
  width: 46.4285714286vw;
}
@media only screen and (min-width:1400px) {
  .workday__list-item {
    width: 650px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width:768px) {
  .workday__list-item {
    width: 100%;
    margin-bottom: 50px;
  }
}
.workday__list-item.--04 .workday__list-time, .workday__list-item.--05 .workday__list-time {
  margin-top: 6px;
}
@media only screen and (max-width:768px) {
  .workday__list-item.--04 .workday__list-time, .workday__list-item.--05 .workday__list-time {
    margin-top: 12px;
  }
}
.workday__list-item.--04 .workday__list-catchcopy, .workday__list-item.--05 .workday__list-catchcopy {
  line-height: 33px;
}
.workday__list-item.--04 .workday__list-bodycopy, .workday__list-item.--05 .workday__list-bodycopy {
  margin-top: 14px;
}
.workday__list-time {
  font-size: max(1.7857142857vw, 25px);
  background: var(--color-yellow);
  margin-right: 20px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
}
@media only screen and (max-width:768px) {
  .workday__list-time {
    font-size: 16px;
  }
}
.workday__list-catchcopy {
  font-size: max(1.7142857143vw, 24px);
  font-weight: 700;
  vertical-align: middle;
  line-height: 50px;
}
@media only screen and (min-width:1400px) {
  .workday__list-catchcopy {
    font-size: 24px;
  }
}
@media only screen and (max-width:768px) {
  .workday__list-catchcopy {
    font-size: 22px;
    line-height: 50px;
  }
}
.workday__list-catchcopy span {
  color: var(--color-orange);
}
.workday__list-bodycopy {
  font-size: max(1.1428571429vw, 14px);
  margin-left: 70px;
}
@media only screen and (min-width:1400px) {
  .workday__list-bodycopy {
    font-size: 16px;
  }
}
@media only screen and (max-width:768px) {
  .workday__list-bodycopy {
    font-size: 13px;
    margin-left: 6px;
    margin-top: 10px;
  }
}
.workday__thumb {
  max-width: 300px;
  width: 21.4285714286vw;
}
@media only screen and (max-width:768px) {
  .workday__thumb {
    display: none;
  }
}
.workday__thumb-img {
  max-width: 300px;
  width: 21.4285714286vw;
  height: auto;
  margin-bottom: 4.2857142857vw;
}
@media only screen and (min-width:1400px) {
  .workday__thumb-img {
    margin-bottom: 60px;
    width: 300px;
  }
}
.workday__thumb-sp {
  display: none;
}
@media only screen and (max-width:768px) {
  .workday__thumb-sp {
    display: block;
    max-width: 300px;
    width: 300px;
    margin: 0 auto 50px auto;
  }
}
.workday__thumb-sp-img {
  max-width: 300px;
  width: 300px;
  height: auto;
}
.workday__comments {
  background: var(--color-yellow);
  border-radius: 0.7142857143vw;
  padding: 2.8571428571vw;
  max-width: 1000px;
  width: 71.4285714286vw;
}
@media only screen and (min-width:1400px) {
  .workday__comments {
    border-radius: 10px;
    padding: 40px;
  }
}
@media only screen and (max-width:768px) {
  .workday__comments {
    width: 92%;
    margin: 0 auto;
    border-radius: 10px;
    padding: 20px;
  }
}
.workday__comments-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width:768px) {
  .workday__comments-item {
    justify-content: normal;
    align-items: flex-start;
  }
}
.workday__comments-item.--border {
  max-width: 790px;
  width: calc(100% - 8.5714285714vw);
  border-bottom: dotted 1px var(--color-black);
  padding-top: 2.1428571429vw;
  margin-left: auto;
}
@media only screen and (min-width:1400px) {
  .workday__comments-item.--border {
    width: 790px;
    padding-top: 30px;
  }
}
@media only screen and (max-width:768px) {
  .workday__comments-item.--border {
    margin-left: 0px;
    width: 100%;
    padding-top: 20px;
  }
}
.workday__comments-item.--02 {
  padding-top: 2.1428571429vw;
}
@media only screen and (min-width:1400px) {
  .workday__comments-item.--02 {
    padding-top: 30px;
  }
}
@media only screen and (max-width:768px) {
  .workday__comments-item.--02 {
    padding-top: 20px;
  }
}
.workday__comments-icon {
  max-width: 80px;
  width: 5.7142857143vw;
}
@media only screen and (min-width:1400px) {
  .workday__comments-icon {
    width: 80px;
  }
}
@media only screen and (max-width:768px) {
  .workday__comments-icon {
    width: 40px;
    margin-top: 10px;
  }
}
.workday__comments-icon img {
  width: 100%;
  height: auto;
}
.workday__comments-description {
  font-size: max(1.1428571429vw, 14px);
  line-height: 2;
  max-width: 790px;
  width: calc(100% - 8.5714285714vw);
}
@media only screen and (min-width:1400px) {
  .workday__comments-description {
    width: 790px;
    font-size: 16px;
  }
}
@media only screen and (max-width:768px) {
  .workday__comments-description {
    width: 100%;
    font-size: 16px;
    margin-left: 10px;
  }
}

.voice {
  background: var(--color-green);
  padding: 10% 0;
}
@media only screen and (min-width:1400px) {
  .voice {
    padding: 125px 0;
  }
}
@media only screen and (max-width:768px) {
  .voice {
    padding: 40px 0;
  }
}
.voice .waveline {
  fill: var(--color-green);
}
.voice .c-heading-lv2 > img {
  max-width: 256px;
  width: 18.2857142857vw;
  height: auto;
  margin: 0 auto;
}
@media only screen and (min-width:1400px) {
  .voice .c-heading-lv2 > img {
    width: 256px;
  }
}
@media only screen and (max-width:768px) {
  .voice .c-heading-lv2 > img {
    width: 112px;
  }
}
.voice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2%;
  align-items: center;
  max-width: 1200px;
  width: 85.7142857143vw;
  margin: 7.1428571429vw auto 0 auto;
}
@media only screen and (min-width:1400px) {
  .voice__list {
    grid-template-columns: repeat(4, 1fr);
    width: 1200px;
    margin: 100px auto 0 auto;
  }
}
@media only screen and (max-width:768px) {
  .voice__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5% 4%;
    width: 92%;
    margin: 35px auto 0 auto;
  }
}
.voice__list-item {
  border-radius: 10px;
}
@media only screen and (max-width:768px) {
  .voice__list-item {
    border-radius: 10px;
  }
}
.voice__list button {
  border: none;
  border-radius: 0.7142857143vw;
}
@media only screen and (min-width:1400px) {
  .voice__list button {
    border-radius: 10px;
  }
}
@media only screen and (max-width:768px) {
  .voice__list button {
    border-radius: 10px;
  }
}
.voice__list-figure {
  width: 100%;
  height: auto;
}
.voice__list-figure > img {
  border-radius: 0.7142857143vw 0.7142857143vw 0 0;
}
@media only screen and (min-width:1400px) {
  .voice__list-figure > img {
    border-radius: 10px 10px 0 0;
  }
}
@media only screen and (max-width:768px) {
  .voice__list-figure > img {
    border-radius: 10px 10px 0 0;
  }
}
.voice__list-description {
  background: var(--color-cream);
  padding: 2.5714285714vw 10px 1.4285714286vw;
  border-radius: 0 0 0.7142857143vw 0.7142857143vw;
  position: relative;
  min-height: 145px;
}
@media only screen and (min-width:1400px) {
  .voice__list-description {
    padding: 36px 10px 20px;
    border-radius: 0 0 10px 10px;
  }
}
@media only screen and (max-width:768px) {
  .voice__list-description {
    padding: 30px 5px 20px;
    border-radius: 0 0 10px 10px;
    min-height: 165px;
  }
}
.voice__list-icon {
  width: 3.5714285714vw;
  height: auto;
  position: absolute;
  top: -1.7857142857vw;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (min-width:1400px) {
  .voice__list-icon {
    width: 50px;
    top: -25px;
  }
}
@media only screen and (max-width:768px) {
  .voice__list-icon {
    width: 40px;
    top: -20px;
  }
}
.voice__list-inner {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 2.5714285714vw 10px 1.4285714286vw;
}
.voice__list-hdg {
  font-size: max(1.1428571429vw, 14px);
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
  color: var(--color-orange);
  padding-bottom: 0.4285714286vw;
}
@media only screen and (min-width:1400px) {
  .voice__list-hdg {
    font-size: 16px;
    padding-bottom: 6px;
  }
}
@media only screen and (max-width:768px) {
  .voice__list-hdg {
    font-size: 14px;
  }
}
.voice__list-hdg br {
  display: block;
}
@media screen and (max-width: 1060px) {
  .voice__list-hdg br {
    display: none;
  }
}
.voice__list-text {
  font-size: max(1vw, 12px);
  line-height: 1.5;
  text-align: center;
  font-weight: 400;
  text-align: center;
  color: var(--color-black);
}
@media only screen and (min-width:1400px) {
  .voice__list-text {
    font-size: 14px;
  }
}
@media only screen and (max-width:768px) {
  .voice__list-text {
    font-size: 13px;
    padding-top: 6px;
  }
}
.voice .modal {
  display: none;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 0 20px;
  overflow: auto;
  transition: 0.3s;
  box-sizing: border-box;
}
.voice .modal.is-active {
  display: block;
}
.voice .modal-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 1000px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  animation: show 0.6s linear 0s;
  filter: drop-shadow(0px 2px 6px #777);
}
@media only screen and (max-width:768px) {
  .voice .modal-container {
    width: 92%;
    margin: 100px 0;
    top: inherit;
    transform: inherit;
  }
}
.voice .modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  color: #fff;
  font-size: 35px;
  background: var(--color-green);
  border-radius: 0 10px;
  cursor: pointer;
}
@media only screen and (max-width:768px) {
  .voice .modal-close {
    width: 50px;
    height: 50px;
  }
}
.voice .modal-content {
  background: var(--color-cream);
  border-radius: 10px;
  text-align: left;
  line-height: 1.8;
  padding: 40px;
}
.voice .modal-hdg {
  font-size: max(2.1428571429vw, 24px);
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-orange);
  padding-bottom: 16px;
}
@media only screen and (min-width:1400px) {
  .voice .modal-hdg {
    font-size: 30px;
  }
}
@media only screen and (max-width:768px) {
  .voice .modal-hdg {
    font-size: 18px;
    display: none;
  }
}
.voice .modal-wrap {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:768px) {
  .voice .modal-wrap {
    display: block;
  }
}
.voice .modal-figure {
  border-radius: 10px;
  text-align: center;
  width: 370px;
}
@media screen and (max-width: 900px) {
  .voice .modal-figure {
    width: 280px;
  }
}
@media only screen and (max-width:768px) {
  .voice .modal-figure {
    width: 200px;
    margin: 0 auto;
  }
}
.voice .modal-figure img {
  width: 100%;
  margin: 0 auto;
}
.voice .modal-figure span {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  color: var(--color-black);
}
@media only screen and (max-width:768px) {
  .voice .modal-figure span {
    font-size: 13px;
  }
}
.voice .modal-figcaption {
  margin-left: 40px;
  width: calc(100% - 410px);
}
@media screen and (max-width: 900px) {
  .voice .modal-figcaption {
    width: calc(100% - 320px);
  }
}
@media only screen and (max-width:768px) {
  .voice .modal-figcaption {
    margin-left: 0px;
    margin-top: 20px;
    width: 100%;
  }
}
.voice .modal-figcaption li {
  padding-bottom: 20px;
}
.voice .modal-figcaption .modal-hdg.--spOnly {
  display: none;
}
@media only screen and (max-width:768px) {
  .voice .modal-figcaption .modal-hdg.--spOnly {
    display: block;
  }
}
.voice .modal-figcaption .modal-title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-black);
  padding-bottom: 0.8571428571vw;
}
@media only screen and (min-width:1400px) {
  .voice .modal-figcaption .modal-title {
    padding-bottom: 12px;
  }
}
@media only screen and (max-width:768px) {
  .voice .modal-figcaption .modal-title {
    font-size: 14px;
    padding-bottom: 0px;
  }
}
.voice .modal-figcaption .modal-txt {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-black);
}
@media only screen and (max-width:768px) {
  .voice .modal-figcaption .modal-txt {
    font-size: 13px;
    padding-top: 6px;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.episode {
  background: var(--color-cream);
  padding-top: 18%;
}
.episode .c-heading-lv2 {
  padding-bottom: 5vw;
}
@media only screen and (min-width:1400px) {
  .episode .c-heading-lv2 {
    padding-bottom: 70px;
  }
}
.episode .c-heading-lv2 > img {
  max-width: 370px;
  width: 26.4285714286vw;
  height: auto;
  margin: 0 auto;
}
@media only screen and (min-width:1400px) {
  .episode .c-heading-lv2 > img {
    width: 370px;
  }
}
@media only screen and (max-width:768px) {
  .episode .c-heading-lv2 > img {
    width: 158px;
  }
}
.episode .container {
  position: relative;
}
@media only screen and (max-width:768px) {
  .episode .container {
    width: 100%;
    overflow-x: auto;
  }
}
.episode__list {
  max-width: 1200px;
  width: 85.7142857143vw;
  margin: 0 auto;
}
@media only screen and (min-width:1400px) {
  .episode__list {
    width: 1200px;
  }
}
@media only screen and (max-width:768px) {
  .episode__list {
    display: none;
  }
}
.episode__list-item {
  background: #FFF;
  padding: 3.5714285714vw;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.4285714286vw;
  border-radius: 10px;
}
.episode__list-item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media only screen and (max-width:768px) {
  .episode__list-item:nth-child(4) {
    margin-right: 0px;
  }
}
@media only screen and (min-width:1400px) {
  .episode__list-item {
    padding: 50px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width:768px) {
  .episode__list-item {
    width: 360px;
    display: block;
    margin-bottom: 10px;
    padding: 20px;
    margin-right: 10px;
  }
}
.episode__list-figure {
  max-width: 340px;
  width: 24.2857142857vw;
  display: flex;
  align-items: center;
}
@media only screen and (min-width:1400px) {
  .episode__list-figure {
    width: 340px;
  }
}
@media only screen and (max-width:768px) {
  .episode__list-figure {
    width: 310px;
    margin: 0 auto;
  }
}
.episode__list-figure > img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.episode__list-description {
  max-width: 710px;
  width: 50.7142857143vw;
}
@media only screen and (min-width:1400px) {
  .episode__list-description {
    width: 710px;
  }
}
@media only screen and (max-width:768px) {
  .episode__list-description {
    width: 100%;
    margin: 25px auto 0 auto;
  }
}
.episode__list-heading {
  font-size: max(2.1428571429vw, 16px);
  font-weight: 700;
}
@media only screen and (min-width:1400px) {
  .episode__list-heading {
    font-size: 30px;
  }
}
@media only screen and (max-width:768px) {
  .episode__list-heading {
    font-size: 18px;
  }
}
.episode__list-heading span {
  background: var(--color-yellow);
  padding: 5px 0;
}
.episode__list-txt {
  margin-top: 1.8571428571vw;
}
@media only screen and (min-width:1400px) {
  .episode__list-txt {
    margin-top: 26px;
  }
}
@media only screen and (max-width:768px) {
  .episode__list-txt {
    font-size: 16px;
  }
}
.episode .swiper.--04 {
  display: none;
}
@media only screen and (max-width:768px) {
  .episode .swiper.--04 {
    display: block;
    width: 100%;
  }
}
.episode .swiper.--04 .swiper-slide {
  height: auto;
}
.episode .swiper.--04 .swiper-button-prev,
.episode .swiper.--04 .swiper-button-next {
  height: 35px;
  width: 35px;
}
.episode .swiper.--04 .swiper-button-prev:after,
.episode .swiper.--04 .swiper-button-next:after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  height: 35px;
  width: 35px;
  margin: auto;
}
.episode .swiper.--04 .swiper-button-prev:after {
  background: url(../img/prev-btn.png) no-repeat;
  background-size: 35px;
}
.episode .swiper.--04 .swiper-button-next:after {
  background: url(../img/next-btn.png) no-repeat;
  background-size: 35px;
}
.episode .swiper.--04 .swiper-button-next, .episode .swiper.--04 .swiper-rtl .swiper-button-prev {
  right: 5px;
  left: auto;
}
.episode .swiper.--04 .swiper-button-prev, .episode .swiper.--04 .swiper-rtl .swiper-button-next {
  left: 5px;
  right: auto;
}

.recruit {
  background: var(--color-gray);
}
.recruit .c-heading-lv2 > img {
  max-width: 368px;
  width: 26.2857142857vw;
  height: auto;
  margin: 0 auto;
}
@media only screen and (min-width:1400px) {
  .recruit .c-heading-lv2 > img {
    width: 368px;
  }
}
@media only screen and (max-width:768px) {
  .recruit .c-heading-lv2 > img {
    width: 158px;
  }
}
.recruit .container {
  max-width: 1000px;
  width: 71.4285714286vw;
}
@media only screen and (max-width:768px) {
  .recruit .container {
    width: 92%;
  }
}
.recruit__heading-txt {
  font-size: max(1.1428571429vw, 14px);
  text-align: center;
  line-height: 1.6;
  margin-top: 1.4285714286vw;
}
@media only screen and (min-width:1400px) {
  .recruit__heading-txt {
    font-size: 16px;
  }
}
@media only screen and (max-width:768px) {
  .recruit__heading-txt {
    font-size: 14px;
    margin-top: 10px;
  }
}
.recruit__heading-txt br {
  display: none;
}
@media screen and (max-width: 860px) {
  .recruit__heading-txt br {
    display: block;
  }
}
.recruit__table {
  max-width: 1000px;
  width: 71.4285714286vw;
  margin-top: 3.5714285714vw;
}
@media only screen and (max-width:768px) {
  .recruit__table {
    width: 100%;
  }
}
.recruit__table-rows {
  border-bottom: dashed var(--color-black) 1px;
  padding: 1.4285714286vw 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width:1400px) {
  .recruit__table-rows {
    padding: 20px 0;
  }
}
@media only screen and (max-width:768px) {
  .recruit__table-rows {
    display: block;
    padding: 16px 0 10px 0;
  }
}
.recruit__table-item.--left {
  max-width: 300px;
  width: 21.4285714286vw;
  text-align: center;
}
@media only screen and (min-width:1400px) {
  .recruit__table-item.--left {
    width: 300px;
  }
}
@media only screen and (max-width:768px) {
  .recruit__table-item.--left {
    width: 100%;
    text-align: left;
  }
}
.recruit__table-item.--left p {
  font-size: max(1.1428571429vw, 14px);
  font-weight: 700;
  line-height: 1.6;
}
@media only screen and (min-width:1400px) {
  .recruit__table-item.--left p {
    font-size: 16px;
  }
}
@media only screen and (max-width:768px) {
  .recruit__table-item.--left p {
    font-size: 14px;
  }
}
.recruit__table-item.--right {
  width: calc(100% - 21.4285714286vw);
}
@media only screen and (min-width:1400px) {
  .recruit__table-item.--right {
    width: 700px;
  }
}
@media only screen and (max-width:768px) {
  .recruit__table-item.--right {
    width: 100%;
  }
}
.recruit__table-item.--right p {
  font-size: max(1.1428571429vw, 14px);
  line-height: 1.6;
}
@media only screen and (min-width:1400px) {
  .recruit__table-item.--right p {
    font-size: 16px;
  }
}
@media only screen and (max-width:768px) {
  .recruit__table-item.--right p {
    font-size: 14px;
  }
}
.recruit__link {
  margin-top: 7.1428571429vw;
}

.footer {
  background: var(--color-green);
  color: #FFF;
}
.footer__container {
  padding: 1.4285714286vw 0;
  max-width: 1300px;
  width: 92.8571428571vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media only screen and (max-width:768px) {
  .footer__container {
    display: block;
    padding: 20px 0;
  }
}
.footer__ttl {
  margin-right: 2.8571428571vw;
}
@media only screen and (max-width:768px) {
  .footer__ttl {
    margin-right: inherit;
    margin-bottom: 14px;
    text-align: center;
  }
}
.footer__ttl a {
  display: inline-block;
}
.footer__ttl a img {
  max-width: 240px;
  width: 17.1428571429vw;
  height: auto;
}
@media only screen and (min-width:1400px) {
  .footer__ttl a img {
    width: 240px;
  }
}
@media only screen and (max-width:768px) {
  .footer__ttl a img {
    width: 194px;
  }
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 310px;
  width: 22.1428571429vw;
}
@media only screen and (max-width:768px) {
  .footer__links {
    width: 270px;
    margin: 0 auto;
  }
}
.footer__links-item {
  font-size: max(1vw, 12px);
  line-height: 1;
  letter-spacing: 1px;
  text-decoration: underline;
}
@media only screen and (min-width:1400px) {
  .footer__links-item {
    font-size: 14px;
  }
}
@media only screen and (max-width:768px) {
  .footer__links-item {
    font-size: 12px;
    margin: 0 auto;
  }
}
.footer__copyright {
  margin-left: auto;
  font-size: max(1vw, 12px);
}
@media only screen and (min-width:1400px) {
  .footer__copyright {
    font-size: 14px;
  }
}
@media only screen and (max-width:768px) {
  .footer__copyright {
    font-size: 12px;
    margin: 20px auto 0 auto;
    display: block;
    text-align: center;
  }
}

.entry-btn {
  width: 110px;
  height: auto;
  position: fixed;
  right: 4%;
  bottom: 4%;
  padding: 0;
  z-index: 9;
}
@media only screen and (max-width:768px) {
  .entry-btn {
    width: 90px;
  }
}
.entry-btn > a {
  display: block;
}
.entry-btn > a img {
  width: 100%;
  height: auto;
}
@media (hover) {
  .entry-btn > a {
    transition: opacity var(--transition-base);
  }
  .entry-btn > a:hover {
    opacity: var(--hover-opacity);
  }
}/*# sourceMappingURL=style.css.map */