@charset "UTF-8";
/* color
------------------------------------- */
/* projects font
------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Paytone+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru&family=Paytone+One&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
.paytone {
  font-family: "Paytone One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.kiwi-maru {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic {
  font-family: "Zen Maru Gothic", serif;
  font-style: normal;
}

.zen-kaku-gothic {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
}

/* media query
------------------------------------- */
@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
}
/* content width
------------------------------------- */
/* mixin
------------------------------------- */
/* aタグ設定
------------------------------------- */
a:hover, .alpha {
  opacity: 0.75;
}

a {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
  cursor: pointer;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem; /* =14px */
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
  color: #333333;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 4.2666666667vw;
  }
}

ul {
  list-style: none;
}

#wrapper {
  overflow: hidden;
  min-width: 1040px;
}
@media screen and (max-width: 768px) {
  #wrapper {
    min-width: auto;
  }
}

.subfont {
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

a {
  color: #333333;
}

.container {
  width: 1532px;
  max-width: 100%;
  margin: auto;
  box-sizing: border-box;
  padding: 0 60px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 5vw;
  }
}
.container-md {
  width: 1200px;
}
.container-mini {
  width: 1100px;
}

p {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  p {
    line-height: 1.8;
  }
}

/* レスポンシブ設定
------------------------------------- */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* buttonタグリセット
------------------------------------- */
button {
  padding: 0;
  background-color: transparent;
  border: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.inner {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 4vw;
  }
}

.section_title {
  font-size: 32px;
  font-weight: normal;
  letter-spacing: 0.4em;
  padding: 15px 36px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section_title {
    font-size: 6.4vw;
    padding: 2.6666666667vw 5.3333333333vw;
  }
}
.section_title::before {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #000;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .section_title::before {
    width: calc(100% - 1.8666666667vw);
    height: calc(100% - 1.8666666667vw);
  }
}
.section_title::after {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #000;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .section_title::after {
    width: calc(100% - 1.8666666667vw);
    height: calc(100% - 1.8666666667vw);
  }
}

.header {
  position: fixed;
  top: 0;
  z-index: 10;
  color: #292929;
  width: 100%;
}
.header.header-shigoto {
  background-color: #fff;
}
.header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 35px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header .header_inner {
    padding: 4vw 4vw 0 0;
  }
}
.header .header_inner.active {
  transition: all 0.3s;
  padding: 0 35px;
}
@media screen and (max-width: 768px) {
  .header .header_inner.active {
    padding: 0 2vw;
  }
}
.header .header_inner.active .header_logo {
  transition: all 0.3s;
  position: relative;
  max-width: 200px;
  background-color: transparent;
}
.header .header_inner.active .header_logo-inner {
  transition: all 0.3s;
  padding: 30px 30px;
}
@media screen and (max-width: 768px) {
  .header .header_inner.active .header_logo-inner {
    padding: 4vw 0;
  }
}
.header .header_inner.active h2 {
  transition: all 0.3s;
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .header .header_inner.active h2 {
    font-size: 2.6666666667vw;
  }
}
.header .header_logo {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  max-width: 500px;
  background-color: #fff;
  width: 100%;
  border-radius: 0 0 50px 0;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header .header_logo {
    width: 50.4vw;
    border-radius: 0 0 10vw 0;
  }
}
.header .header_logo-inner {
  padding: 40px 30px;
  max-width: 400px;
  margin: auto;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .header .header_logo-inner {
    padding: 5vw 3vw;
  }
}
.header .header_logo-inner h2 {
  transition: all 0.3s;
  text-align: center;
  margin-top: 10px;
  font-size: 20px;
  color: #888888;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .header .header_logo-inner h2 {
    margin-top: 2vw;
    font-size: 2.6666666667vw;
  }
}
.header nav {
  display: flex;
  align-items: center;
}
.header nav > ul {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header nav > ul {
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .header nav > ul > li {
    width: 6.1333333333vw;
  }
}
.header nav > ul > li:not(:first-of-type) {
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .header nav > ul > li:not(:first-of-type) {
    margin-left: 2.1333333333vw;
  }
}
.header nav > ul > li:last-of-type {
  width: 29px;
}
@media screen and (max-width: 768px) {
  .header nav > ul > li:last-of-type {
    width: 7.7333333333vw;
  }
}
.header nav > ul > li:nth-of-type(1) {
  display: none;
}
@media screen and (min-width: 769px) {
  .header nav > ul > li:nth-of-type(1) {
    display: block;
    border: 1px solid #000;
    padding: 5px 20px;
    margin-right: 10px;
  }
  .header nav > ul > li:nth-of-type(1) span {
    text-align: center;
    font-family: "Kiwi Maru", serif;
  }
  .header nav > ul > li:nth-of-type(1) span > span {
    display: block;
  }
  .header nav > ul > li:nth-of-type(1) span span:nth-of-type(1) {
    font-size: 0.8em;
  }
  .header nav > ul > li:nth-of-type(1) span span:nth-of-type(2) {
    font-size: 1.2em;
  }
  .header nav > ul > li:nth-of-type(1) span span:nth-of-type(1) {
    font-size: 1em;
  }
}
.header nav .menu_btn {
  margin: 7px 0 0 25px;
  position: relative;
  height: 44px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .header nav .menu_btn {
    margin: 0 0 0 6.6666666667vw;
    height: 11.7333333333vw;
    font-size: 3.4666666667vw;
  }
}
.header nav .menu_btn_line {
  display: block;
  width: 28px;
  height: 6px;
  background-color: #000000;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .header nav .menu_btn_line {
    width: 7.4666666667vw;
    height: 1.6vw;
    top: 2.6666666667vw;
  }
}
.header nav .menu_btn_line::before {
  content: "";
  width: 28px;
  height: 6px;
  background-color: #000000;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .header nav .menu_btn_line::before {
    width: 7.4666666667vw;
    height: 1.6vw;
    top: -2.6666666667vw;
  }
}
.header nav .menu_btn_line::after {
  content: "";
  width: 28px;
  height: 6px;
  background-color: #000000;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .header nav .menu_btn_line::after {
    width: 7.4666666667vw;
    height: 1.6vw;
    bottom: -2.6666666667vw;
  }
}
.header nav .menu_btn_text {
  display: block;
}

.float_menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(203, 166, 126, 0.9);
  display: none;
  z-index: 50;
}
.float_menu .close_btn {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 47px;
}
.float_menu .float_menu_inner {
  width: 100%;
  height: 100%;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .float_menu .float_menu_inner {
    overflow-y: auto;
  }
}
.float_menu .float_menu_list01 {
  text-align: center;
}
.float_menu .float_menu_list01 li:nth-of-type(7) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .float_menu .float_menu_list01 li:nth-of-type(7) {
    margin-top: 50px;
  }
}
.float_menu .float_menu_list01 a {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.33;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .float_menu .float_menu_list01 a {
    font-size: 22px;
    line-height: 2.18;
  }
}
.float_menu .float_menu_list02 {
  margin-top: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .float_menu .float_menu_list02 {
    margin-top: 75px;
  }
}
.float_menu .float_menu_list02 li:first-of-type {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .float_menu .float_menu_list02 li:first-of-type {
    width: 48px;
  }
}
.float_menu .float_menu_list02 li:nth-of-type(2) {
  width: 29px;
}
@media screen and (max-width: 768px) {
  .float_menu .float_menu_list02 li:nth-of-type(2) {
    width: 45px;
  }
}
.float_menu .float_menu_list02 li:nth-of-type(3) {
  width: 36px;
}
@media screen and (max-width: 768px) {
  .float_menu .float_menu_list02 li:nth-of-type(3) {
    width: 57px;
  }
}
.float_menu .float_menu_list02 li:not(:first-of-type) {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .float_menu .float_menu_list02 li:not(:first-of-type) {
    margin-left: 27px;
  }
}

.news {
  padding: 30px 0 56px;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 18.6666666667vw 0 14.6666666667vw;
  }
}
.news .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .news .inner {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .news .section_title {
    width: 40vw;
    margin: 0 auto;
  }
}
.news .news_body {
  flex: 0 1 535px;
  height: 68px;
  overflow-y: auto;
  scrollbar-color: #B2B2B2;
}
@media screen and (max-width: 768px) {
  .news .news_body {
    margin-top: 9.3333333333vw;
    height: 33.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .news .news_list li:not(:first-of-type) {
    margin-top: 5.3333333333vw;
  }
}
.news .news_list .news_list_text {
  display: flex;
  color: #292929;
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .news .news_list .news_list_text {
    display: block;
    font-size: 4.2666666667vw;
    line-height: 1.5;
  }
}
.news .news_list .news_list_text .date {
  flex: 0 0 110px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .news .news_list .news_list_text .date {
    display: block;
    line-height: 1.5;
  }
}

.event {
  padding: 88px 0 36px;
}
@media screen and (max-width: 768px) {
  .event {
    padding: 9.8666666667vw 0 13.3333333333vw;
  }
}
.event .section_title {
  width: 280px;
  margin-left: 65px;
}
@media screen and (max-width: 768px) {
  .event .section_title {
    width: 47.4666666667vw;
    margin-left: auto;
    margin-right: auto;
  }
}
.event .event_top {
  padding-top: 109px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .event .event_top {
    padding-top: 2.6666666667vw;
  }
}
.event .event_top > p {
  width: 440px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.77;
  margin: 55px 75px 0 auto;
}
@media screen and (max-width: 768px) {
  .event .event_top > p {
    width: 53.3333333333vw;
    font-size: 4.8vw;
    margin: 10.6666666667vw 0 0 auto;
    line-height: 1.77;
  }
}
.event .event_top_img01 {
  position: absolute;
  top: -90px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .event .event_top_img01 {
    position: static;
    width: 90.1333333333vw;
    margin-top: 5.3333333333vw;
  }
}
.event .event_top_img02 {
  position: absolute;
  bottom: 45px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .event .event_top_img02 {
    width: 33.6vw;
    bottom: 16.5333333333vw;
    left: 0;
  }
}
.event .event_top_img03 {
  position: absolute;
  bottom: -78px;
  left: calc(50% - 275px);
}
@media screen and (max-width: 768px) {
  .event .event_top_img03 {
    width: 34.9333333333vw;
    bottom: -23.2vw;
    left: 16.5333333333vw;
  }
}
.event .event_top_img04 {
  width: 777px;
  display: block;
  margin-left: auto;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .event .event_top_img04 {
    position: static;
    width: 89.0666666667vw;
    margin: 13.3333333333vw auto 0;
  }
}
.event .event_body {
  padding: 44px 0 60px;
  background-color: #FFF9D8;
  background-repeat: repeat;
  position: relative;
  margin-top: 115px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .event .event_body {
    margin-top: 37.3333333333vw;
    margin-left: 0;
    padding: 13.3333333333vw 0 10.6666666667vw;
  }
}
.event .event_body + .event_body {
  margin-top: 69px;
  padding: 86px 0 76px;
  background-color: #FFFFDB;
}
@media screen and (max-width: 768px) {
  .event .event_body + .event_body {
    margin-top: 10.6666666667vw;
    padding: 23.2vw 0 10.6666666667vw;
  }
}
.event .event_body + .event_body > div {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .event .event_body + .event_body > div {
    display: block;
  }
}
.event .event_body + .event_body > div p {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  color: #292929;
  line-height: 1.42;
  padding: 15px 66px 15px 56px;
  margin-right: 59px;
  background-color: rgba(168, 162, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .event .event_body + .event_body > div p {
    font-size: 6.9333333333vw;
    padding: 5.3333333333vw 6.6666666667vw;
    margin: 0 auto 5.3333333333vw;
    width: 76.5333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .event .event_body + .event_body > div img {
    width: 65.8666666667vw;
    margin: 0 auto;
  }
}
.event .event_body .num01 {
  position: absolute;
  top: 0;
  left: -10px;
}
@media screen and (max-width: 768px) {
  .event .event_body .num01 {
    width: 14.9333333333vw;
    top: 3.2vw;
    left: 4vw;
  }
}
.event .event_body .num02 {
  position: absolute;
  top: -17px;
  left: -11px;
}
@media screen and (max-width: 768px) {
  .event .event_body .num02 {
    width: 17.3333333333vw;
    top: 5.6vw;
    left: 4vw;
  }
}
.event .event_body_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 0 30px;
}
@media screen and (max-width: 768px) {
  .event .event_body_top {
    display: block;
    padding: 0 0 0 2.1333333333vw;
  }
}
.event .event_body_top p:first-of-type {
  width: 443px;
}
@media screen and (max-width: 768px) {
  .event .event_body_top p:first-of-type {
    width: 89.6vw;
  }
}
.event .event_body_top p:nth-of-type(2) {
  width: 433px;
}
@media screen and (max-width: 768px) {
  .event .event_body_top p:nth-of-type(2) {
    width: 85.6vw;
    margin-top: 5.3333333333vw;
    padding-left: 1.3333333333vw;
  }
}
.event .event_btn {
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 845px;
  height: 54px;
  border-radius: 27px;
  background-color: #E61E87;
  color: #fff;
  font-size: 21px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .event .event_btn {
    margin-top: 10.6666666667vw;
    width: 84.5333333333vw;
    height: 17.3333333333vw;
    border-radius: 8.8vw;
    font-size: 6.4vw;
  }
}
.event .event_btn img {
  margin-right: 11px;
}
@media screen and (max-width: 768px) {
  .event .event_btn img {
    width: 7.2vw;
    margin-right: 2.9333333333vw;
  }
}
.event .event_company {
  padding: 30px 0 0 60px;
}
@media screen and (max-width: 768px) {
  .event .event_company {
    padding: 8vw 5.3333333333vw 0 3.4666666667vw;
  }
}
.event .event_company_list {
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .event .event_company_list {
    margin-top: 5.6vw;
  }
}
.event .event_company_list li {
  display: flex;
  align-items: center;
  color: #315176;
}
@media screen and (max-width: 768px) {
  .event .event_company_list li {
    display: block;
  }
}
.event .event_company_list li:not(:first-of-type) {
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .event .event_company_list li:not(:first-of-type) {
    margin-top: 12.5333333333vw;
  }
}
.event .event_company_list li img {
  margin-right: 21px;
  width: 179px;
}
@media screen and (max-width: 768px) {
  .event .event_company_list li img {
    width: 47.7333333333vw;
    margin-bottom: 1.3333333333vw;
  }
}
.event .event_company_list li span {
  font-size: 21px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .event .event_company_list li span {
    display: block;
    font-size: 5.6vw;
  }
}
.event .event_company_list li p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.52;
}
@media screen and (max-width: 768px) {
  .event .event_company_list li p {
    font-size: 4.2666666667vw;
    line-height: 1.375;
  }
}

.footer {
  position: relative;
  z-index: 3;
}
.footer .footer_main {
  position: relative;
  background-color: #000;
  padding: 115px 0 25px;
  background-repeat: repeat;
}
@media screen and (max-width: 768px) {
  .footer .footer_main {
    padding: 32vw 0 16vw;
  }
}
.footer .footer_main::after {
  content: "";
  width: 120vw;
  min-width: 1100px;
  height: 10vw;
  min-height: 100px;
  background-color: #D9E6ED;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: rotate(-3.5deg) translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .footer .footer_main::after {
    display: none;
  }
}
.footer .footer_main > .inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .footer .footer_main > .inner {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.footer .footer_deco {
  width: 267px;
  position: absolute;
  bottom: 30px;
  left: 16px;
  z-index: 3;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .footer .footer_deco {
    width: 71.2vw;
    bottom: inherit;
    top: -120vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
.footer .footer_adress {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .footer .footer_adress {
    margin-top: 9.8666666667vw;
    font-size: 3.2vw;
  }
}
.footer .footer_adress span {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .footer .footer_adress span {
    display: block;
    font-size: 4vw;
    margin-bottom: 1.3333333333vw;
  }
}
.footer .footer_list_sns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .footer .footer_list_sns {
    justify-content: center;
  }
}
.footer .footer_list_sns li:not(:first-of-type) {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .footer .footer_list_sns li:not(:first-of-type) {
    margin-left: 5.8666666667vw;
  }
}
.footer .footer_list_sns li:first-of-type img {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .footer .footer_list_sns li:first-of-type img {
    width: 8vw;
  }
}
.footer .footer_list_sns li:nth-of-type(2) img {
  width: 29px;
}
@media screen and (max-width: 768px) {
  .footer .footer_list_sns li:nth-of-type(2) img {
    width: 8vw;
  }
}
.footer .footer_list_sns li:nth-of-type(3) img {
  width: 37px;
}
@media screen and (max-width: 768px) {
  .footer .footer_list_sns li:nth-of-type(3) img {
    width: 9.0666666667vw;
  }
}
.footer .footer_list_contact {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .footer .footer_list_contact {
    margin-top: 10.6666666667vw;
  }
}
.footer .footer_list_contact li:not(:first-of-type) {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .footer .footer_list_contact li:not(:first-of-type) {
    margin-left: 4vwf;
  }
}
.footer .footer_list_contact a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer .footer_list_contact a {
    font-size: 4vw;
  }
}
.footer .footer_top {
  width: 120%;
  background-color: #73B4D1;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: rotate(-3.5deg) translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .footer .footer_top {
    transform: rotate(-13deg) translateX(-50%);
  }
}
.footer .footer_nav {
  padding: 15px 0;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .footer .footer_nav {
    padding: 6.6666666667vw 0;
    display: block;
    width: 80vw;
    margin: 0 auto;
  }
}
.footer .footer_nav li:not(:first-of-type) {
  margin-left: 35px;
}
@media screen and (max-width: 768px) {
  .footer .footer_nav li:not(:first-of-type) {
    margin-left: 0;
  }
}
.footer .footer_nav a {
  font-size: 17px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer .footer_nav a {
    font-size: 4vw;
    line-height: 1.88;
    letter-spacing: 0.2em;
  }
}

.story .row {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .story .row {
    margin-top: 0;
  }
}
.story .col_bottom {
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .story .col_bottom {
    margin-top: 0;
    padding: 1.3333333333vw 0 0 !important;
  }
}

.heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .heading {
    margin-bottom: 10vw;
  }
}
.heading-mini {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .heading-mini {
    margin-bottom: 6vw;
  }
}
.heading__en {
  font-size: 100px;
  font-family: "Paytone One", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .heading__en {
    font-size: 11.7333333333vw;
    margin-bottom: 2vw;
  }
}
.heading__en-ill {
  position: relative;
  display: inline-block;
  padding-left: 120px;
  padding-right: 120px;
}
@media screen and (max-width: 768px) {
  .heading__en-ill {
    padding-left: 13vw;
    padding-right: 13vw;
  }
}
.heading__en-ill::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/shigoto-shokudo/ill-01.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.heading__en-ill::after {
  content: "";
  position: absolute;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
  background-image: url("../images/shigoto-shokudo/ill-02.svg");
  background-position: right;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 100%;
  height: 80%;
  z-index: -1;
}
.heading__en-mini {
  font-size: 60px;
}
@media screen and (max-width: 768px) {
  .heading__en-mini {
    font-size: 8.5333333333vw;
  }
}
.heading__jp {
  font-size: 30px;
  font-family: "Kiwi Maru", serif;
}
@media screen and (max-width: 768px) {
  .heading__jp {
    font-size: 4.8vw;
  }
}
.heading__jp-mini {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .heading__jp-mini {
    font-size: 4.8vw;
  }
}

.heading-center {
  text-align: center;
}

.bg-color--main {
  background-color: #FAF5EF;
}
.bg-color--accent {
  background-color: #EBF2F7;
}
.bg-color--point {
  background-color: #D9E6ED;
}

.bg-round--top {
  border-radius: 50px 50px 0 0;
}

@media screen and (min-width: 769px) {
  .info-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: calc(40px * -1);
  }
  .info-list__item {
    margin-bottom: 40px;
    margin-right: 40px;
    width: calc((100% - 40px * (4 - 1)) / 4);
  }
  .info-list__item:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .info-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: calc(2vw * -1);
  }
  .info-list__item {
    margin-bottom: 2vw;
    margin-right: 2vw;
    width: calc((100% - 2vw * (2 - 1)) / 2);
  }
  .info-list__item:nth-of-type(2n) {
    margin-right: 0;
  }
}

.info-list-item__box {
  border: 1px solid #707070;
  border-radius: 60px;
  background-color: #fff;
  display: block;
}
@media screen and (max-width: 768px) {
  .info-list-item__box {
    border-radius: 10vw;
  }
}
.info-list-item__box-inner {
  padding: 20px 5px;
}
@media screen and (max-width: 768px) {
  .info-list-item__box-inner {
    padding: 8vw 2vw 6vw;
  }
}
.info-list-item__icon {
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .info-list-item__icon {
    height: auto;
  }
  .info-list-item__icon img {
    width: 40%;
  }
}
.info-list-item__title {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .info-list-item__title {
    height: auto;
    margin-top: 2vw;
    font-size: 3.2vw;
  }
}
.info-list-item__description {
  margin-top: 10px;
  color: #999999;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .info-list-item__description {
    font-size: 2.6666666667vw;
  }
  .info-list-item__description img {
    width: 80%;
  }
}

.page {
  padding: 160px 0;
}
@media screen and (max-width: 768px) {
  .page {
    padding: 20vw 0;
  }
}
.page-top-none {
  padding-top: 0px;
}
.page-top-sm {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .page-top-sm {
    padding-top: 10vw;
  }
}
.page-top-md {
  padding-top: 140px;
}
@media screen and (max-width: 768px) {
  .page-top-md {
    padding-top: 20vw;
  }
}
@media screen and (max-width: 768px) {
  .page-bottom-footer {
    padding-bottom: 100vw;
  }
}
.page-bottom-none {
  padding-bottom: 0px;
}
.page-bottom-sm {
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .page-bottom-sm {
    padding-bottom: 10vw;
  }
}

@media screen and (min-width: 769px) {
  .sns-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: calc(40px * -1);
  }
  .sns-list__item {
    margin-bottom: 40px;
    margin-right: 40px;
    width: calc((100% - 40px * (3 - 1)) / 3);
  }
  .sns-list__item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .sns-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: calc(2vw * -1);
  }
  .sns-list__item {
    margin-bottom: 2vw;
    margin-right: 2vw;
    width: calc((100% - 2vw * (3 - 1)) / 3);
  }
  .sns-list__item:nth-of-type(3n) {
    margin-right: 0;
  }
}
.sns-list #instagram {
  background-color: #D8B774;
}
.sns-list #x {
  background-color: #478CC1;
}
.sns-list #youtube {
  background-color: #C05047;
}
.sns-list__item {
  border-radius: 60px;
  border: 1px solid #999999;
  cursor: pointer;
  display: block;
}
@media screen and (max-width: 768px) {
  .sns-list__item {
    border-radius: 10vw;
  }
}

.sns-list-item__box {
  padding: 20px 5px;
}
@media screen and (max-width: 768px) {
  .sns-list-item__box {
    padding: 8vw 2vw 6vw;
  }
}
.sns-list-item__icon {
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .sns-list-item__icon {
    align-items: center;
    height: 10vw;
  }
  .sns-list-item__icon img {
    width: 40%;
  }
}
.sns-list-item__title {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Paytone One", sans-serif;
  color: #fff;
  font-size: 26px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .sns-list-item__title {
    height: auto;
    margin-top: 2vw;
    font-size: 3.2vw;
  }
}

.about__box {
  background-color: #fff;
  padding: 60px 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__box {
    padding: 12vw 6vw 8vw;
  }
}
.about__box-ill.ill-06 {
  position: absolute;
  top: -240px;
  right: -50px;
}
@media screen and (max-width: 768px) {
  .about__box-ill.ill-06 {
    top: 24vw;
    right: 0;
    width: 100%;
  }
  .about__box-ill.ill-06 img {
    margin-left: auto;
    width: 40%;
  }
}
.about__block:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .about__block:not(:first-child) {
    margin-top: 6vw;
  }
}
.about__box-half {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .about__box-half {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about__box-inner {
    gap: 6vw;
  }
}
.about__box-inner-mini {
  max-width: 1200px;
  margin: auto;
}
.about__flex {
  display: flex;
  flex-wrap: wrap;
}
.about__flex-center {
  align-items: center;
}
.about__flex-between {
  justify-content: space-between;
}
.about__text-block {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .about__text-block {
    width: 100%;
  }
}
.about__text-block-full {
  width: 100%;
}
.about__title {
  font-size: 40px;
  margin-bottom: 40px;
  padding-bottom: 20px;
}
.about__title h3 {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
}
.about__title span {
  font-size: 0.7em;
}
@media screen and (max-width: 768px) {
  .about__title {
    font-size: 6.4vw;
    margin-bottom: 12vw;
    padding-bottom: 6vw;
  }
}
.about__title-center {
  text-align: center;
}
.about__title-line {
  position: relative;
}
.about__title-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 200px;
  background-image: linear-gradient(90deg, #039FE4, #E84493);
}
@media screen and (max-width: 768px) {
  .about__title-line::after {
    width: 30vw;
  }
}
.about__title-line-center {
  position: relative;
}
.about__title-line-center::after {
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 3.7333333333vw;
  }
}
.about__img {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .about__img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about__img-instagram {
    width: 30vw;
    margin: auto;
  }
}
.about__img-full {
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .about__img-full {
    margin-top: 6vw;
  }
}
.about__sns-bg-black {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .about__sns-bg-black {
    margin-top: 6vw;
  }
}

.about-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-img__list {
  width: 30%;
}

.sns-bg-black {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .sns-bg-black {
    gap: 5vw;
  }
  .sns-bg-black a {
    width: 14vw;
  }
}

.article-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
}
@media screen and (max-width: 768px) {
  .article-box {
    gap: 6vw 0;
  }
}
.article-box__list {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .article-box__list {
    width: 100%;
  }
}
.article-box__list h4 {
  color: #333333;
  line-height: 1.4;
  margin-top: 10px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .article-box__list h4 {
    display: none;
  }
}

.btn-base-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.btn-base-inner .btn-base-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}
.btn-base-inner div {
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .btn-base-inner div {
    font-size: 5.3333333333vw;
  }
}
.btn-base-inner .arrow-right {
  border: 1px solid #333333;
  border-radius: 1000px;
}
@media screen and (max-width: 768px) {
  .btn-base-inner .arrow-right {
    width: 10vw;
    height: 10vw;
  }
}

.btn-flex {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .btn-flex {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .btn-flex > div {
    width: 100%;
  }
  .btn-flex > div .btn-base-inner {
    justify-content: flex-start;
  }
}

.youtube__box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .youtube__box {
    gap: 20vw 0;
  }
}
.youtube__heading {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .youtube__heading {
    width: 100%;
  }
}
.youtube__heading .heading {
  width: 100%;
  max-width: 600px;
}
.youtube__content {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .youtube__content {
    width: 100%;
  }
}
.youtube__title {
  font-size: 40px;
  margin-bottom: 40px;
  padding-bottom: 20px;
}
.youtube__title h3 {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
}
.youtube__title span {
  font-size: 0.7em;
}
@media screen and (max-width: 768px) {
  .youtube__title {
    font-size: 6.4vw;
    margin-bottom: 12vw;
    padding-bottom: 6vw;
  }
}
.youtube__title-center {
  text-align: center;
}
.youtube__title-line {
  position: relative;
}
.youtube__title-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 200px;
  background-image: linear-gradient(90deg, #039FE4, #E84493);
}
.youtube__title-line-center {
  position: relative;
}
.youtube__title-line-center::after {
  left: 0;
  right: 0;
  margin: auto;
}
.youtube__text {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .youtube__text {
    margin-top: 6vw;
    font-size: 3.7333333333vw;
  }
}
.youtube .sp-img {
  width: 100%;
  margin-top: 60px;
}
.youtube .sp-img img {
  width: 70%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .youtube .sp-img {
    margin-top: 6vw;
  }
}

.relative {
  position: relative;
}

.z-0 {
  z-index: 0;
}

.ill {
  position: absolute;
}
.ill-star {
  top: 70%;
  left: 7%;
  width: 100%;
  z-index: -1;
}
.ill-star img {
  margin-right: auto;
  width: 5%;
}
@media screen and (max-width: 768px) {
  .ill-star img {
    width: 15%;
  }
}
@media screen and (max-width: 768px) {
  .ill-star {
    top: 22%;
  }
}
.ill-01 {
  bottom: -30px;
  right: -3%;
  width: 100%;
  z-index: -1;
}
.ill-01 img {
  margin-left: auto;
  width: 22%;
}
@media screen and (max-width: 768px) {
  .ill-01 img {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .ill-01 {
    bottom: -5vw;
  }
}
.ill-02 {
  bottom: 0;
  left: -22%;
  width: 100%;
  z-index: -1;
}
.ill-02 img {
  margin-right: auto;
  width: 24%;
}
@media screen and (max-width: 768px) {
  .ill-02 img {
    width: 28%;
  }
}
@media screen and (max-width: 768px) {
  .ill-02 {
    bottom: -6%;
    left: 0;
  }
}
.ill-03 {
  bottom: -10px;
  right: -27%;
  width: 100%;
  z-index: -1;
}
.ill-03 img {
  margin-left: auto;
  width: 22%;
}
@media screen and (max-width: 768px) {
  .ill-03 img {
    width: 22%;
  }
}
@media screen and (max-width: 768px) {
  .ill-03 {
    bottom: -6%;
    right: 0;
  }
}
.ill-08 {
  top: 0;
  right: 0;
  width: 100%;
}
.ill-08 img {
  margin-left: auto;
  width: 20%;
}
@media screen and (max-width: 768px) {
  .ill-08 img {
    width: 20%;
  }
}
.ill-09 {
  top: 0;
  right: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .ill-09 {
    top: -10%;
  }
}
.ill-09 img {
  margin-left: auto;
  width: 35%;
}
@media screen and (max-width: 768px) {
  .ill-09 img {
    width: 26%;
  }
}

.youtube-link {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
.youtube-link li {
  width: 30%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-family: "kiwi maru", serif;
}
@media screen and (max-width: 768px) {
  .youtube-link li {
    font-size: 5.3333333333vw;
    width: 40%;
  }
}

.main-visual {
  padding-top: 220px;
  padding-bottom: 6vw;
}
@media screen and (max-width: 768px) {
  .main-visual {
    padding-top: 28vw;
    padding-bottom: 10vw;
  }
}
.main-visual__block {
  position: relative;
}
.main-visual__main-block {
  max-width: 640px;
  margin: auto;
  background-color: #EBF2F7;
  padding: 20px 0;
}
.main-visual__text-block {
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin-inline: auto;
}
.main-visual__title {
  font-family: "Paytone One", sans-serif;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin-inline: auto;
}
.main-visual__title h2 {
  font-size: 84px;
}
@media screen and (max-width: 768px) {
  .main-visual__title h2 {
    font-size: 11.7333333333vw;
  }
}
.main-visual__title h3 {
  font-size: 50px;
  margin-top: -10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .main-visual__title h3 {
    font-size: 6.6666666667vw;
    text-align: center;
  }
}
.main-visual__lead {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .main-visual__lead {
    margin: auto;
  }
}
.main-visual__lead p {
  border-radius: 60px 60px 60px 0;
  display: inline-block;
  background-color: #fff;
  padding: 15px 30px 15px 50px;
  font-size: 24px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .main-visual__lead p {
    font-size: 4.8vw;
    padding: 2vw 4vw;
    width: 100%;
    text-align: center;
  }
}
.main-visual__sub-lead {
  margin-top: 20px;
  text-align: center;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .main-visual__sub-lead {
    font-size: 3.7333333333vw;
    margin-top: 2vw;
  }
}
.main-visual__ill {
  position: relative;
  z-index: 1;
  margin-top: -60px;
}
@media screen and (max-width: 768px) {
  .main-visual__ill {
    margin-top: -13vw;
  }
}
.main-visual__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: flex;
  width: 200vw;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .main-visual__bg-img {
    position: relative;
    width: 500vw;
  }
}
.main-visual__bg-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.main-visual__bg-img img:first-child {
  animation: loop 100s -50s linear infinite;
}
.main-visual__bg-img img:last-child {
  animation: loop2 100s linear infinite;
  margin-left: 20px;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.main-visual__ill-block {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1;
}
.main-visual__ill-block-inner {
  position: relative;
}
.main-visual #ill-02 {
  position: absolute;
  top: -100px;
  right: 20%;
  width: 100%;
  transform-origin: 100% 100%;
  animation: yurayura 2.5s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .main-visual #ill-02 {
    top: -8vw;
    right: 5vw;
  }
}
.main-visual #ill-02 img {
  margin-left: auto;
  max-width: 20%;
}
@media screen and (max-width: 768px) {
  .main-visual #ill-02 img {
    max-width: 100%;
    width: 30vw;
  }
}
@keyframes yurayura {
  0% {
    transform: translate(10px, -10px);
  }
  50% {
    transform: translate(-10px, 10px);
  }
  100% {
    transform: translate(10px, -10px);
  }
}
@media screen and (max-width: 768px) {
  @keyframes yurayura {
    0% {
      transform: translate(1vw, -1vw);
    }
    50% {
      transform: translate(-1vw, 1vw);
    }
    100% {
      transform: translate(1vw, -1vw);
    }
  }
}

.text-anime {
  overflow: hidden;
  padding-bottom: 10px;
  opacity: 0;
}
.text-anime.active {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .text-anime {
    padding-bottom: 2vw;
    max-inline-size: -moz-max-content;
    max-inline-size: max-content;
    margin-inline: auto;
  }
}
.text-anime span {
  display: inline-block;
  opacity: 0;
  animation: slideUp 1s forwards;
  animation-delay: var(--delay);
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 1;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.shigoto-shokudo__block:not(:first-child) {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .shigoto-shokudo__block:not(:first-child) {
    margin-top: 14vw;
  }
}

.shigoto-shokudo-info-block__box {
  background-color: #F5EBDF;
  border-radius: 40px;
  padding: 60px 40px;
}
@media screen and (max-width: 768px) {
  .shigoto-shokudo-info-block__box {
    border-radius: 4vw;
    padding: 6vw 6vw;
  }
}
.shigoto-shokudo-info-block__box-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .shigoto-shokudo-info-block__box-inner {
    gap: 8vw;
  }
}
.shigoto-shokudo-info-block__logo {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .shigoto-shokudo-info-block__logo {
    width: 40vw;
    margin: auto;
  }
}
.shigoto-shokudo-info-block__title {
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 100px 100px 100px 0;
  border: 1px solid #707070;
  font-size: 26px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .shigoto-shokudo-info-block__title {
    font-size: 4.8vw;
    padding: 5vw;
  }
}
.shigoto-shokudo-info-block__text {
  margin-top: 20px;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .shigoto-shokudo-info-block__text {
    margin-top: 6vw;
    font-size: 3.7333333333vw;
  }
}
.shigoto-shokudo-info-block__text-block {
  width: 58%;
}
@media screen and (max-width: 768px) {
  .shigoto-shokudo-info-block__text-block {
    width: 100%;
  }
}
.shigoto-shokudo-info-block__btn {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .shigoto-shokudo-info-block__btn {
    margin-top: 6vw;
  }
}

.dot-highlight {
  background: repeating-linear-gradient(90deg, #707070 0, #707070 4px, transparent 1px, transparent 6px);
  background-size: 100% 1px;
  background-repeat: repeat-x;
  background-position: 0 100%;
  display: inline;
  padding: 0 1px 3px;
}

.main-movie {
  padding: 0 100px;
}
@media screen and (max-width: 768px) {
  .main-movie {
    padding: 0;
  }
}
.main-movie__img {
  max-width: 1000px;
  margin: auto;
}
.main-movie__btn {
  font-family: "Paytone One", sans-serif;
  position: absolute;
  bottom: 0;
  left: 96%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .main-movie__btn {
    left: 0;
    right: 0;
    margin: auto;
    bottom: 4vw;
    position: relative;
  }
  .main-movie__btn a {
    margin: auto;
  }
}
.main-movie__btn a {
  color: #fff;
  background-color: #CBA67E;
  border-radius: 1000px;
  border: 1px solid #707070;
  height: 200px;
  width: 200px;
  font-size: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  .main-movie__btn a {
    width: 14vw;
    height: 14vw;
    font-size: 2.0016680567vw;
  }
}
@media screen and (max-width: 768px) {
  .main-movie__btn a {
    font-size: 5.3333333333vw;
    height: 36vw;
    width: 36vw;
  }
}
.main-movie__movie {
  width: 100%;
  height: 100%;
}
.main-movie__movie iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .main-movie__movie iframe {
    border-radius: 6vw;
  }
}

.bg-short-movie {
  position: relative;
}
.bg-short-movie::before {
  content: "";
  background-color: #FAF5EF;
  position: absolute;
  top: 0;
  left: 0;
  width: 30vw;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bg-short-movie::before {
    display: none;
  }
}

.short-movie__ill {
  max-width: 260px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .short-movie__ill {
    width: 30vw;
    max-width: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.short-movie__wrap {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .short-movie__wrap {
    gap: 10vw;
  }
}
.short-movie__side {
  width: 30%;
  background-color: #FAF5EF;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .short-movie__side {
    width: 100%;
  }
}
.short-movie__list-block {
  width: 70%;
  height: 560px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .short-movie__list-block {
    width: 100%;
    height: 50vw;
  }
}

.short-movie-list-block {
  height: inherit;
}
.short-movie-list-block__wrap {
  height: inherit;
}
.short-movie-list-block__swiper {
  height: inherit;
}

.swiper-container {
  height: inherit;
}
.swiper-container .swiper-slide {
  height: inherit;
}
.swiper-container .swiper-slide a {
  height: inherit;
  display: block;
}
.swiper-container .swiper-slide img {
  height: inherit;
  -o-object-fit: contain;
     object-fit: contain;
}
.swiper-container .swiper-wrapper {
  height: inherit;
}
.swiper-container .swiper-slide {
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .swiper-container .swiper-slide {
    margin-right: 5vw;
  }
}
.swiper-container .swiper-slide img {
  border-radius: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .swiper-container .swiper-slide img {
    border-radius: 6vw;
  }
}

.swiper-container .swiper-wrapper {
  transition-timing-function: linear !important;
}

.btn-base-row span {
  display: block;
}
.btn-base-row span:nth-of-type(1) {
  color: #AD2023;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .btn-base-row span:nth-of-type(1) {
    font-size: 3.4666666667vw;
  }
}

.page-mv {
  padding-top: 200px;
  padding-bottom: 100px;
  background-image: url("../images/shigoto-shokudo/bg-kv-img.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-mv {
    padding-top: 30vw;
    padding-bottom: 22vw;
  }
}
.page-mv__wrap {
  padding: 0 60px;
}
.page-mv__logo {
  max-width: 700px;
  margin: auto;
}

.z-common {
  z-index: 3;
}

@media screen and (max-width: 768px) {
  #side-bar {
    display: none;
  }
}
#side-bar .side-bar__left-bar {
  position: fixed;
  left: 0;
  top: 0;
  background-color: #fff;
  width: 50px;
  height: 100%;
  z-index: 1;
}
#side-bar .side-bar__right-bar {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  width: 50px;
  height: 100%;
  z-index: 1;
}

.left-bar {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
}
.left-bar__sns {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.left-bar__sns-item {
  margin: auto;
}

.right-bar {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
  font-family: "Kiwi Maru", serif;
  writing-mode: vertical-rl;
  right: 6px;
  letter-spacing: 0.2em;
}

.kv__wrap {
  background-image: url("../images/shigoto-shokudo/mv/bg-img.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .kv__wrap {
    background-image: none;
  }
}
.kv__block {
  max-width: 600px;
  margin: auto;
  position: relative;
}
.kv__comment {
  position: absolute;
  top: 0;
  right: -38%;
}
@media screen and (max-width: 768px) {
  .kv__comment {
    margin-top: 4vw;
    position: relative;
    top: 0;
    right: 0;
    left: 0;
  }
}
.kv__comment p {
  font-weight: 500;
  letter-spacing: 0.05em;
  background-color: #fff;
  border-radius: 30px 30px 30px 0;
  padding: 5px 10px;
  border: 1px solid #707070;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .kv__comment p {
    font-size: 4.2666666667vw;
    text-align: center;
  }
}
.kv__text {
  font-size: 22px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .kv__text {
    font-size: 3.7333333333vw;
    padding: 5vw 0 5vw;
  }
}

@media screen and (min-width: 1200px) {
  .post-block-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: calc(40px * -1);
  }
  .post-block-list__item {
    margin-bottom: 40px;
    margin-right: 40px;
    width: calc((100% - 40px * (3 - 1)) / 3);
  }
  .post-block-list__item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1199px) {
  .post-block-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: calc(6vw * -1);
  }
  .post-block-list__item {
    margin-bottom: 6vw;
    margin-right: 6vw;
    width: calc((100% - 6vw * (2 - 1)) / 2);
  }
  .post-block-list__item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .post-block-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: calc(6vw * -1);
  }
  .post-block-list__item {
    margin-bottom: 6vw;
    margin-right: 6vw;
    width: calc((100% - 6vw * (1 - 1)) / 1);
  }
  .post-block-list__item:nth-of-type(1n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) {
  .post-block-list .post-block__box {
    padding: 30px 50px;
  }
}
.post-block-list .post-block__title h2 {
  font-size: 18px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .post-block-list .post-block__title h2 {
    font-size: 4.2666666667vw;
  }
}
.post-block-list .post-block__title-small h2 {
  font-size: 16px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .post-block-list .post-block__title-small h2 {
    font-size: 4vw;
  }
}
.post-block-list .post-block__info {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .post-block-list .post-block__info {
    font-size: 4.2666666667vw;
  }
}
.post-block-list .post-block__name {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .post-block-list .post-block__name {
    font-size: 3.2vw;
  }
}

.post-block__box {
  background-color: #fff;
  border: 1px solid #707070;
}
@media screen and (min-width: 769px) {
  .post-block__box {
    padding: 2vw 3vw;
  }
}
@media screen and (max-width: 1199px) {
  .post-block__box {
    padding: 7vw 4vw;
  }
}
.post-block__title {
  position: absolute;
  writing-mode: vertical-rl;
  top: -2vw;
  right: -1vw;
}
@media screen and (max-width: 768px) {
  .post-block__title {
    top: -12vw;
  }
}
.post-block__title h2 {
  border: 1px solid #707070;
  background-color: #fff;
  padding: 8px 10px;
  letter-spacing: 0.2em;
  font-size: 1.25vw;
}
@media screen and (max-width: 1199px) {
  .post-block__title h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .post-block__title h2 {
    font-size: 3.3333333333vw;
    padding: 1vw 0.5vw;
  }
}
.post-block__title-small h2 {
  font-size: 1.0416666667vw;
}
@media screen and (max-width: 1199px) {
  .post-block__title-small h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .post-block__title-small h2 {
    font-size: 2.8vw;
    padding: 1vw 0.5vw;
  }
}
.post-block__number {
  font-size: 24px;
  font-family: "Paytone One", sans-serif;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .post-block__number {
    margin-bottom: 4vw;
    font-size: 4.8vw;
  }
}
.post-block__img-block {
  margin-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .post-block__img-block {
    margin-bottom: 2vw;
  }
}
.post-block__info {
  margin-bottom: 10px;
  font-size: 28px;
}
@media screen and (max-width: 1199px) {
  .post-block__info {
    font-size: 2.0850708924vw;
  }
}
@media screen and (max-width: 768px) {
  .post-block__info {
    font-size: 4.2666666667vw;
    margin-bottom: 2vw;
  }
}
.post-block__name {
  font-size: 16px;
  text-align: right;
}
@media screen and (max-width: 1199px) {
  .post-block__name {
    font-size: 1.2510425354vw;
  }
}
@media screen and (max-width: 768px) {
  .post-block__name {
    font-size: 3.4666666667vw;
  }
}
.post-block__name .company {
  font-size: 0.8em;
}
@media screen and (max-width: 768px) {
  .post-block__name .company {
    display: block;
  }
}
.post-block__name .name {
  font-size: 1.4em;
}
@media screen and (max-width: 1199px) {
  .post-block__name .name {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 768px) {
  .post-block__name .name {
    font-size: 1.2em;
  }
}
.post-block__btn {
  max-width: 800px;
  margin: auto;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .post-block__btn {
    margin-top: 10vw;
    margin-right: 5vw;
    font-size: 4.2666666667vw;
  }
}
.post-block__btn .btn-base-inner {
  justify-content: flex-end;
}

.swiper {
  position: relative;
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
.swiper .swiper-slide {
  opacity: 0.3;
  transition: opacity 0.7s, transform 0.7s;
}
.swiper .swiper-slide img {
  height: auto;
  width: 100%;
}
.swiper .swiper-slide-active {
  opacity: 1;
  z-index: 1;
}
.swiper .swiper-button-prev {
  left: 28%;
}
@media screen and (max-width: 768px) {
  .swiper .swiper-button-prev {
    left: 10%;
  }
}
.swiper .swiper-button-next {
  right: 28%;
}
@media screen and (max-width: 768px) {
  .swiper .swiper-button-next {
    right: 10%;
  }
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  width: 5vw;
  height: 5vw;
}
@media screen and (max-width: 768px) {
  .swiper .swiper-button-next,
  .swiper .swiper-button-prev {
    width: 7vw;
    height: 7vw;
  }
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}
.swiper .swiper-button-prev::after {
  background-image: url("../images/shigoto-shokudo/swiper-left.svg");
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
}
.swiper .swiper-button-next::after {
  background-image: url("../images/shigoto-shokudo/swiper-right.svg");
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
}

.heading-ill-block {
  position: relative;
  display: inline-block;
}
.heading-ill-block .heading-ill {
  position: absolute;
}
.heading-ill-block .heading-ill.ill-05 {
  top: -80px;
  left: -180px;
}
@media screen and (max-width: 768px) {
  .heading-ill-block .heading-ill.ill-05 {
    top: -8vw;
    left: -10vw;
  }
  .heading-ill-block .heading-ill.ill-05 img {
    width: 30vw;
  }
}
.heading-ill-block .heading-ill.ill-10 {
  top: 10px;
  left: -330px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .heading-ill-block .heading-ill.ill-10 {
    top: -15vw;
    left: 3vw;
  }
  .heading-ill-block .heading-ill.ill-10 img {
    width: 20vw;
  }
}
.heading-ill-block .heading-ill.ill-11 {
  top: 0px;
  right: -140px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .heading-ill-block .heading-ill.ill-11 {
    top: 0vw;
    right: 10vw;
  }
  .heading-ill-block .heading-ill.ill-11 img {
    width: 10vw;
  }
}
.heading-ill-block .heading-ill.ill-12 {
  top: 40px;
  right: -480px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .heading-ill-block .heading-ill.ill-12 {
    top: -16vw;
    right: inherit;
    left: 4vw;
  }
  .heading-ill-block .heading-ill.ill-12 img {
    width: 25vw;
  }
}

.interview-main {
  max-width: 1200px;
  margin: auto;
}
.interview-main__heading {
  text-align: center;
}
.interview-main__heading h3 {
  font-size: 30px;
  display: inline-block;
  background-color: #FAF5EF;
  padding: 0 40px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .interview-main__heading h3 {
    font-size: 5.3333333333vw;
    padding: 0 5vw;
  }
}
.interview-main__title {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .interview-main__title {
    margin-top: 8vw;
  }
}
.interview-main__title h2 {
  font-size: 38px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .interview-main__title h2 {
    font-size: 5.8666666667vw;
  }
}
.interview-main__title span {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #707070;
  padding: 15px 20px;
  line-height: 1.4;
}
.interview-main__title span:nth-of-type(2) {
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  .interview-main__title span {
    padding: 3vw 5vw;
  }
}
.interview-main__text {
  display: none;
  font-size: 20px;
  margin-top: 30px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .interview-main__text {
    font-size: 5.8666666667vw;
  }
}
.interview-main__movie {
  width: 100%;
  height: 100%;
  margin-top: 40px;
}
.interview-main__movie iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .interview-main__movie iframe {
    border-radius: 6vw;
  }
}
.interview-main__info-block {
  margin-top: 40px;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .interview-main__info-block {
    margin-top: 5vw;
  }
}
.interview-main__info {
  font-size: 30px;
  letter-spacing: 0.1em;
  background-color: #fff;
  display: inline-block;
  border: 1px solid #707070;
  padding: 15px 20px;
}
@media screen and (max-width: 768px) {
  .interview-main__info {
    font-size: 5.3333333333vw;
    padding: 2vw 3vw;
  }
}
.interview-main__name {
  font-size: 22px;
  letter-spacing: 0.1em;
  background-color: #fff;
  display: inline-block;
  border: 1px solid #707070;
  margin-top: -1px;
  padding: 15px 20px;
  margin-left: 50px;
}
@media screen and (max-width: 768px) {
  .interview-main__name {
    margin-left: 6vw;
    font-size: 3.7333333333vw;
    padding: 2vw 3vw;
  }
}
.interview-main__name .name {
  font-size: 1.4em;
}
@media screen and (max-width: 768px) {
  .interview-main__name .name {
    font-size: 1.2em;
  }
}
.interview-main__btn {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .interview-main__btn {
    margin-top: 10vw;
    margin-right: 5vw;
    font-size: 4.2666666667vw;
  }
}
.interview-main__btn .btn-base-inner {
  justify-content: flex-end;
}

.heading-line {
  position: relative;
}
.heading-line::after {
  content: "";
  position: absolute;
  background-color: #999999;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(50%);
  width: 100%;
  height: 1px;
  z-index: -1;
}

.heading-sign {
  position: relative;
}
.heading-sign::after {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  background-image: url("../images/shigoto-shokudo/heading-sign.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .heading-sign::after {
    top: -8vw;
    background-size: 20vw 100%;
  }
}
.heading-sign span {
  display: block;
  position: relative;
}
.heading-sign span::before {
  content: "";
  position: absolute;
  background-color: #FAF5EF;
  width: 10px;
  height: 100%;
  left: -80px;
}
@media screen and (max-width: 768px) {
  .heading-sign span::before {
    width: 3vw;
    left: -4vw;
  }
}
.heading-sign span::after {
  content: "";
  position: absolute;
  background-color: #FAF5EF;
  width: 10px;
  height: 100%;
  right: -80px;
}
@media screen and (max-width: 768px) {
  .heading-sign span::after {
    width: 3vw;
    right: -4vw;
  }
}

.interview-index {
  max-width: 1200px;
  margin: auto;
}
.interview-index__heading {
  text-align: center;
}
.interview-index__heading h3 {
  font-size: 30px;
  display: inline-block;
  background-color: #FAF5EF;
  padding: 0 40px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .interview-index__heading h3 {
    font-size: 5.3333333333vw;
    padding: 0 5vw;
  }
}
.interview-index__text {
  margin-top: 20px;
  text-align: center;
}
.interview-index__text p {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .interview-index__text p {
    font-size: 5.3333333333vw;
  }
}
.interview-index__anker-block {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .interview-index__anker-block {
    margin-top: 5vw;
    justify-content: space-between;
  }
}
.interview-index__icon {
  text-align: center;
}
.interview-index__icon img {
  margin: auto;
}
.interview-index__icon-anker {
  width: 23%;
  display: block;
}
@media screen and (max-width: 768px) {
  .interview-index__icon-anker {
    width: 46%;
  }
}
.interview-index__icon-anker:hover .interview-index__arrow {
  transform: translate(0, 10px);
  transition: all 0.3s;
}
.interview-index__arrow {
  transition: all 0.3s;
}
.interview-index__arrow img {
  border: 1px solid #707070;
  border-radius: 1000px;
  margin: auto;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .interview-index__arrow img {
    margin-top: 3vw;
    width: 10vw;
    height: 10vw;
  }
}

.interview-detail__img-block {
  position: relative;
  z-index: 0;
}
.interview-detail__sign {
  position: absolute;
  top: -200px;
  left: -50px;
}
@media screen and (max-width: 768px) {
  .interview-detail__sign {
    top: -30vw;
    left: -5vw;
    width: 50vw;
  }
}
.interview-detail__text {
  max-width: 1300px;
  margin: auto;
}
.interview-detail__text img {
  margin-left: auto;
}
.interview-detail__text-inner {
  width: 70%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .interview-detail__text-inner {
    width: 50%;
  }
}
.interview-detail__img {
  max-width: 1300px;
  margin: auto;
}
.interview-detail__img img {
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .interview-detail__img img {
    border-radius: 6vw;
    aspect-ratio: 9/6;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.interview-detail__title {
  position: absolute;
  top: 80%;
  right: 0;
}
@media screen and (max-width: 768px) {
  .interview-detail__title {
    top: 78%;
  }
}
.interview-detail__title h2 {
  font-size: 46px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .interview-detail__title h2 {
    font-size: 5.0666666667vw;
  }
}
.interview-detail__title h2:nth-of-type(2) {
  margin-top: -1px;
}
.interview-detail__title span {
  display: inline-block;
  padding: 15px 20px;
  background-color: #fff;
  border: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .interview-detail__title span {
    padding: 2vw 3vw;
  }
}
@media screen and (max-width: 768px) {
  .interview-detail__title-ex {
    top: 50%;
  }
}
.interview-detail__text-box {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .interview-detail__text-box {
    margin-top: 16vw;
  }
}
.interview-detail__name-box {
  position: absolute;
  top: 90%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .interview-detail__name-box {
    position: relative;
    top: initial;
    margin-top: 14vw;
    margin-bottom: -10vw;
  }
}
@media screen and (max-width: 768px) {
  .interview-detail__position {
    text-align: right;
  }
}
.interview-detail__position span {
  font-size: 20px;
  letter-spacing: 0.1em;
  background-color: #fff;
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .interview-detail__position span {
    padding: 2vw 3vw;
    font-size: 3.4666666667vw;
  }
}
.interview-detail__name {
  text-align: right;
  margin-top: -1px;
}
.interview-detail__name > span {
  letter-spacing: 0.1em;
  background-color: #fff;
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .interview-detail__name > span {
    padding: 2vw 3vw;
    font-size: 3.4666666667vw;
  }
}
.interview-detail__name .name {
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .interview-detail__name .name {
    font-size: 4.5333333333vw;
  }
}

.text-box-list {
  max-width: 1300px;
  margin: auto;
}
.text-box-list.ureshimi .text-box-list-item__heading h3 {
  background-color: #EBC46B;
}
.text-box-list.ureshimi .text-box-list-item__title h4 {
  border-bottom: 2px solid #EBC46B;
}
.text-box-list.arigatami .text-box-list-item__heading h3 {
  background-color: #EB6B6B;
}
.text-box-list.arigatami .text-box-list-item__title h4 {
  border-bottom: 2px solid #EB6B6B;
}
.text-box-list.omoshiromi .text-box-list-item__heading h3 {
  background-color: #EF94B7;
}
.text-box-list.omoshiromi .text-box-list-item__title h4 {
  border-bottom: 2px solid #EF94B7;
}
.text-box-list.tsurami .text-box-list-item__heading h3 {
  background-color: #6BB0EB;
}
.text-box-list.tsurami .text-box-list-item__title h4 {
  border-bottom: 2px solid #6BB0EB;
}
@media screen and (min-width: 769px) {
  .text-box-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: calc(40px * -1);
  }
  .text-box-list__item {
    margin-bottom: 40px;
    margin-right: 40px;
    width: calc((100% - 40px * (2 - 1)) / 2);
  }
  .text-box-list__item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .text-box-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: calc(10vw * -1);
  }
  .text-box-list__item {
    margin-bottom: 10vw;
    margin-right: 10vw;
    width: calc((100% - 10vw * (1 - 1)) / 1);
  }
  .text-box-list__item:nth-of-type(1n) {
    margin-right: 0;
  }
}

.text-box-list-item__heading h3 {
  font-family: "Paytone One", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: inline-block;
  color: #fff;
  border-radius: 10px;
  padding: 5px 20px;
}
@media screen and (max-width: 768px) {
  .text-box-list-item__heading h3 {
    padding: 2vw 5vw;
    border-radius: 3vw;
    font-size: 3.7333333333vw;
  }
}
.text-box-list-item__title {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .text-box-list-item__title {
    margin-top: 4vw;
  }
}
.text-box-list-item__title h4 {
  font-size: 30px;
  display: inline-block;
  padding-bottom: 10px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .text-box-list-item__title h4 {
    font-size: 5.3333333333vw;
  }
}
.text-box-list-item__text {
  margin-top: 20px;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .text-box-list-item__text {
    margin-top: 6vw;
    font-size: 4.2666666667vw;
  }
}

.fadein {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: translate(-100px, 0);
}
.fadein.active {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein-delay {
  transition-delay: 0.5s;
}

.v-text {
  -webkit-text-combine: all;
  text-combine-upright: all;
  display: inline-block;
  margin-bottom: 6px;
}

#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  #loading .loading {
    width: 80vw;
    margin: auto;
  }
}

.fadein-logo {
  opacity: 1;
  animation: fadein 1s;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadein-ill {
  max-width: 400px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .fadein-ill {
    width: 50vw;
  }
}/*# sourceMappingURL=base.css.map */