@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  font-weight: 400;
}

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

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

.is-mt {
  margin-top: 20px;
  margin-top: 1.25rem;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: vw(375, 16);
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: vw(strip-unit(1200px), 16);
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
/*hoge*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.7;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

section.company-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(/company/img/company-main-img.jpg) no-repeat center/cover;
  margin: 0;
  height: 500px;
}
@media screen and (max-width: 600px) {
  section.company-section {
    height: 200px;
  }
}
section.company-section h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 600px) {
  section.company-section h2 {
    font-size: 30px;
  }
}
section.company-section h2 span {
  display: block;
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  section.company-section h2 span {
    font-size: 16px;
  }
}
section.company-status {
  margin: 100px auto;
  width: 1000px;
}
@media screen and (max-width: 600px) {
  section.company-status {
    margin: 50px auto;
    padding: 0 16px;
    width: 100%;
  }
}
section.company-status h3 {
  margin-bottom: 20px;
  border-bottom: solid 1px #000;
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (max-width: 600px) {
  section.company-status h3 {
    font-size: 22px;
  }
}
section.company-status p {
  margin: 0 auto;
  width: 960px;
}
section.company-status address {
  margin: 0 auto 30px;
  width: 960px;
  font-style: normal;
}
@media screen and (max-width: 600px) {
  section.company-status address {
    width: 100%;
    font-size: 14px;
  }
}
section.company-status iframe {
  margin: 0 auto;
  width: 960px;
  height: 500px;
}
@media screen and (max-width: 600px) {
  section.company-status iframe {
    width: 100%;
    height: 300px;
  }
}
section table.company-status-detail {
  margin: 50px auto;
  border-collapse: collapse;
  border: solid 1px #000;
  width: 960px;
}
@media screen and (max-width: 600px) {
  section table.company-status-detail {
    margin: 20px auto 30px;
    width: 100%;
    font-size: 12px;
  }
}
section table.company-status-detail th, section table.company-status-detail td {
  border: solid 1px #000;
  padding: 5px;
}
section table.company-status-detail th {
  width: 20%;
}
@media screen and (max-width: 600px) {
  section table.company-status-detail th {
    width: 30%;
  }
}
section table.company-status-detail td {
  width: 80%;
}
@media screen and (max-width: 600px) {
  section table.company-status-detail td {
    width: 70%;
  }
}

/* reset */
body {
  background-color: #fff;
  color: #000;
}

main.sub, main.studiolist, main.single, main.planner {
  padding-top: 100px;
}
@media screen and (max-width: 600px) {
  main.sub, main.studiolist, main.single, main.planner {
    padding-top: 60px;
  }
}

section h1, section h2, section h3 {
  font-family: "Arsenal", serif;
}
section.main-section {
  max-width: 1200px;
  width: 100%;
}
section.sub-section {
  max-width: 1200px;
  width: 100%;
}

p.disclaimer {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  p.disclaimer {
    margin: 0;
    font-size: 2.7vw;
  }
}
p.disclaimer span {
  display: block;
  font-size: 13px;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  p.disclaimer span {
    font-size: 2.2vw;
  }
}
p.home-comment {
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  p.home-comment {
    font-size: 4.5vw;
    text-align: left;
  }
}
p.before-discription {
  margin-bottom: 100px !important;
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  p.before-discription {
    margin-bottom: 30px !important;
    font-size: 4.5vw;
    text-align: left;
  }
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.font-h {
  font-size: 40px;
}
@media screen and (max-width: 600px) {
  .font-h {
    font-size: 30px;
  }
}

.font-lll {
  font-size: 32px;
}
@media screen and (max-width: 600px) {
  .font-lll {
    font-size: 26px;
  }
}

.font-ll {
  font-size: 28px;
}
@media screen and (max-width: 600px) {
  .font-ll {
    font-size: 24px;
  }
}

.font-l {
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  .font-l {
    font-size: 22px;
  }
}

.font-mmm {
  font-size: 20px;
}
@media screen and (max-width: 600px) {
  .font-mmm {
    font-size: 20px;
  }
}

.font-mm {
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .font-mm {
    font-size: 18px;
  }
}

.font-m {
  font-size: 16px;
}
@media screen and (max-width: 600px) {
  .font-m {
    font-size: 16px;
  }
}

.font-s {
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .font-s {
    font-size: 14px;
  }
}

.font-ss {
  font-size: 12px;
}
@media screen and (max-width: 600px) {
  .font-ss {
    font-size: 12px;
  }
}

.font-sss {
  font-size: 10px;
}
@media screen and (max-width: 600px) {
  .font-sss {
    font-size: 10px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  width: 35px !important;
  height: 35px !important;
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .swiper-button-prev,
  .swiper-button-next {
    font-size: 22px;
  }
}

.swiper-button-prev {
  left: 210px !important;
}
@media screen and (max-width: 600px) {
  .swiper-button-prev {
    color: #fff !important;
    left: 0 !important;
  }
}

.swiper-button-next {
  right: 210px !important;
}
@media screen and (max-width: 600px) {
  .swiper-button-next {
    color: #fff !important;
    right: 0 !important;
  }
}

section.event-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(/event/img/event-main-img.jpg) no-repeat center/cover;
  margin: 0;
  height: 500px;
}
@media screen and (max-width: 600px) {
  section.event-section {
    height: 200px;
  }
}
section.event-section h2 {
  color: #d3545b;
  font-size: 40px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 600px) {
  section.event-section h2 {
    font-size: 30px;
  }
}
section.event-section h2 span {
  display: block;
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  section.event-section h2 span {
    font-size: 16px;
  }
}
section.event-status {
  margin: 100px auto;
  width: 1000px;
}
@media screen and (max-width: 600px) {
  section.event-status {
    margin: 50px auto;
    padding: 0 16px;
    width: 100%;
  }
}
section.event-status h3 {
  margin-bottom: 20px;
  border-bottom: solid 1px #000;
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (max-width: 600px) {
  section.event-status h3 {
    font-size: 22px;
  }
}
section.event-status p {
  margin: 0 auto;
  width: 960px;
}
@media screen and (max-width: 600px) {
  section.event-status p {
    width: 100%;
    font-size: 4vw;
  }
}
section.event-status p.pc-ti {
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  section.event-status p.pc-ti {
    margin-bottom: 5px;
  }
}
section.event-status ul.pc-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  section.event-status ul.pc-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
section.event-status ul.pc-list li {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
  color: #000;
  margin: 0 2.5% 10px;
  border-radius: 5px;
  padding: 8px 0;
  text-align: center;
  list-style: none;
}
@media screen and (max-width: 600px) {
  section.event-status ul.pc-list li {
    margin: 0 0 8px;
    padding: 5px 0;
  }
}
section.event-status ul.pc-list li:nth-child(1) {
  background: hsl(40, 70%, 65%);
}
section.event-status ul.pc-list li:nth-child(2) {
  background: hsl(80, 70%, 65%);
}
section.event-status ul.pc-list li:nth-child(3) {
  background: hsl(120, 70%, 65%);
}
section.event-status ul.pc-list li:nth-child(4) {
  background: hsl(160, 70%, 65%);
}
section.event-status ul.pc-list li:nth-child(5) {
  background: hsl(200, 70%, 65%);
}
section.event-status ul.pc-list li:nth-child(6) {
  background: hsl(240, 70%, 65%);
}
section.event-status ul.pc-list li:nth-child(7) {
  background: hsl(280, 70%, 65%);
}
section.event-status address {
  margin: 0 auto 30px;
  width: 960px;
  font-style: normal;
}
@media screen and (max-width: 600px) {
  section.event-status address {
    width: 100%;
  }
}
section.event-status iframe {
  margin: 0 auto;
  width: 960px;
  height: 500px;
}
section.swiper-container {
  margin: 0 auto 50px;
  padding: 0 20px;
}

footer {
  color: #fff;
  background: #1f286f;
  padding: 30px 0 10px;
  width: 100%;
}
footer div.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 600px) {
  footer div.footer-container {
    display: block;
  }
}
footer div.footer-left {
  -ms-flex-preferred-size: 34%;
      flex-basis: 34%;
}
footer div.footer-left img.footer-logo {
  width: 350px;
}
@media screen and (max-width: 600px) {
  footer div.footer-left img.footer-logo {
    width: 200px;
  }
}
footer div.footer-left address.footer-address {
  font-size: 14px;
  font-style: normal;
}
footer div.footer-right {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
footer div.footer-right ul.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  footer div.footer-right ul.footer-menu {
    margin: 30px 0;
  }
}
footer div.footer-right ul li {
  margin-bottom: 20px;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
footer div.footer-right ul li a:hover {
  text-decoration: underline;
}
footer small.copy-light {
  display: block;
  font-size: 12px;
  text-align: center;
}

header {
  position: fixed;
  width: 100%;
  height: 100px;
  z-index: 1000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  header {
    position: fixed;
    padding: 0 0;
    height: 60px;
    top: 0;
    z-index: 110;
  }
}
header.scrolled {
  color: #000;
  background: rgba(255, 255, 255, .95);
}
header div.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 600px) {
  header div.header-container {
    max-width: none;
    max-width: initial;
  }
}
header h1.main-logo {
  width: 300px;
}
@media screen and (max-width: 600px) {
  header h1.main-logo {
    width: 100%;
  }
}
header h1.main-logo img.main-logo-wt {
  position: absolute;
  width: 300px;
  top: -40px;
}
@media screen and (max-width: 600px) {
  header h1.main-logo img.main-logo-wt {
    width: 100px;
    top: 20px;
    left: 20px;
  }
}
header h1.main-logo img.main-logo-bk {
  position: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 300px;
}
@media screen and (max-width: 600px) {
  header h1.main-logo img.main-logo-bk {
    position: relative;
    margin: 0 auto;
    height: 30px;
    width: auto;
    z-index: 1000;
  }
}

@media screen and (max-width: 600px) {
  nav.main-menu {
    position: relative;
  }
}
nav.main-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  color: #000;
}
@media screen and (max-width: 600px) {
  nav.main-menu ul {
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #fff;
    border: none;
    padding: 50px 0 0;
    left: 100%;
    top: 0;
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: 100;
  }
}
nav.main-menu ul.home {
  color: #fff;
}
@media screen and (max-width: 600px) {
  nav.main-menu ul.home {
    color: #000;
  }
}
@media screen and (max-width: 600px) {
  nav.main-menu ul.active {
    left: 0;
  }
}
nav.main-menu li {
  margin-right: 30px;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  nav.main-menu li {
    width: 100%;
    text-align: center;
    margin: 0;
    border-top: solid 1px #aaa;
  }
}
nav.main-menu li:last-child {
  margin: 0;
}
@media screen and (max-width: 600px) {
  nav.main-menu li:last-child {
    border-bottom: solid 1px #aaa;
  }
}
nav.main-menu li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 600px) {
  nav.main-menu li a {
    display: block;
    padding: 8px 0;
  }
}
nav.main-menu li a:hover {
  color: #8ac43f;
  text-decoration: underline;
}
nav.scrolled ul.home {
  color: #000;
}
nav div.burger-menu {
  display: none;
}
@media screen and (max-width: 600px) {
  nav div.burger-menu {
    position: fixed;
    display: block;
    margin: 0.3rem 1rem 0 0;
    top: 15px;
    right: 0;
    z-index: 111;
  }
}
nav div.burger-menu .btn-trigger {
  position: relative;
  width: 40px;
  height: 22px;
  cursor: pointer;
}
nav div.burger-menu .btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #aaa;
  border-radius: 0;
}
nav div.burger-menu .btn-trigger, nav div.burger-menu .btn-trigger span {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
nav div.burger-menu .btn-trigger span:nth-of-type(1) {
  top: 0;
}
nav div.burger-menu .btn-trigger span:nth-of-type(2) {
  top: 10px;
}
nav div.burger-menu .btn-trigger span:nth-of-type(3) {
  bottom: 0;
}
nav div.burger-menu #btn01.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
nav div.burger-menu #btn01.active span:nth-of-type(2) {
  opacity: 0;
}
nav div.burger-menu #btn01.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

section.main-visual {
  position: relative;
  background: url(/img/top-img-back.jpg) no-repeat center/cover;
  margin: 0;
  height: 1000px;
}
@media screen and (max-width: 600px) {
  section.main-visual {
    height: 250px;
  }
}
section.main-visual p.main-discription {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background: #8ac43f;
  border-radius: 50%;
  width: 348px;
  height: 348px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "BIZ UDPMincho", serif;
  font-size: 40px;
  text-align: center;
  z-index: 100;
}
@media screen and (max-width: 600px) {
  section.main-visual p.main-discription {
    width: 150px;
    height: 150px;
    top: 55%;
    font-size: 20px;
  }
}
section.main-visual div.top-visual-img {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
section.main-visual div img.visual-img {
  position: absolute;
}
@media screen and (max-width: 600px) {
  section.main-visual div img.visual-img {
    display: none;
  }
}
section.main-visual div img.visual-img:nth-child(1) {
  width: 218px;
  left: -100px;
  z-index: 10;
}
section.main-visual div img.visual-img:nth-child(2) {
  width: 400px;
  left: -50px;
  z-index: 4;
}
section.main-visual div img.visual-img:nth-child(3) {
  width: 237px;
  left: 230px;
  z-index: 1;
}
section.main-visual div img.visual-img:nth-child(4) {
  width: 560px;
  right: 30px;
  z-index: 2;
}
section.main-visual div img.visual-img:nth-child(5) {
  width: 327px;
  right: -70px;
  z-index: 3;
}
section.home-container {
  margin: 100px auto;
  text-align: center;
}
@media screen and (max-width: 600px) {
  section.home-container {
    margin: 30px auto;
    padding: 0 16px;
  }
}
section.home-container h2 {
  margin-bottom: 30px;
  font-size: 40px;
}
@media screen and (max-width: 600px) {
  section.home-container h2 {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
section.business {
  margin: 100px auto;
  width: 1000px;
}
@media screen and (max-width: 600px) {
  section.business {
    margin: 50px auto;
    width: 100%;
  }
}
section.business h3 {
  border-bottom: solid 1px #000;
  font-size: 28px;
  text-align: left;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  section.business h3 {
    font-size: 22px;
    text-align: left;
  }
}
section.business h3 span {
  color: #888;
  margin-left: 16px;
  font-size: 18px;
  font-family: sans-serif;
}
@media screen and (max-width: 600px) {
  section.business h3 span {
    font-size: 14px;
  }
}
section.business ul.business-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  width: 1000px;
}
@media screen and (max-width: 600px) {
  section.business ul.business-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 24px;
    width: 100%;
  }
}
section.business li.business-list-single, section.business li.company-list-single {
  position: relative;
}
section.business li.business-list-single div.business-list-image img, section.business li.company-list-single div.business-list-image img {
  display: block;
}
section.business li.business-list-single span, section.business li.company-list-single span {
  position: absolute;
  display: inline-block;
  color: #fff;
  top: 10px;
  right: 10px;
  font-size: 20px;
  font-weight: 600;
  text-align: right;
  text-shadow: 1px 1px 4px #000;
  text-transform: uppercase;
  line-height: 1.2;
}
section.business li.business-list-single p.business-list-title, section.business li.company-list-single p.business-list-title {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}
@media screen and (max-width: 600px) {
  section.business li.business-list-single p.business-list-title, section.business li.company-list-single p.business-list-title {
    font-size: 18px;
  }
}
section.business li.business-list-single {
  -ms-flex-preferred-size: 320px;
      flex-basis: 320px;
}
@media screen and (max-width: 600px) {
  section.business li.business-list-single {
    -ms-flex-preferred-size: inherit;
        flex-basis: inherit;
    margin-bottom: 10px;
  }
}
section.business li.company-list-single {
  -ms-flex-preferred-size: 490px;
      flex-basis: 490px;
}
@media screen and (max-width: 600px) {
  section.business li.company-list-single {
    -ms-flex-preferred-size: initial;
        flex-basis: initial;
    margin-bottom: 10px;
  }
}

section.recruit-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(/recruit/img/recruit-main-img.jpg) no-repeat center/cover;
  margin: 0;
  height: 500px;
}
@media screen and (max-width: 600px) {
  section.recruit-section {
    height: 200px;
  }
}
section.recruit-section h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 600px) {
  section.recruit-section h2 {
    font-size: 30px;
  }
}
section.recruit-section h2 span {
  display: block;
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  section.recruit-section h2 span {
    font-size: 16px;
  }
}
section.recruit-status {
  margin: 100px auto;
  width: 1000px;
}
@media screen and (max-width: 600px) {
  section.recruit-status {
    margin: 50px auto;
    padding: 0 16px;
    width: 100%;
  }
}
section.recruit-status h3 {
  margin-bottom: 20px;
  border-bottom: solid 1px #000;
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (max-width: 600px) {
  section.recruit-status h3 {
    font-size: 22px;
  }
}
section.recruit-status div.shop-image ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  section.recruit-status div.shop-image ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
section.recruit-status div.shop-image li {
  -ms-flex-preferred-size: 450px;
      flex-basis: 450px;
}
@media screen and (max-width: 600px) {
  section.recruit-status div.shop-image li {
    -ms-flex-preferred-size: initial;
        flex-basis: initial;
    padding: 0 24px;
  }
}
section.recruit-status div.shop-image li img {
  width: 100%;
}
@media screen and (max-width: 600px) {
  section.recruit-status div.shop-image li img {
    width: 100%;
  }
}
section.recruit-status p {
  margin: 0 auto;
  width: 960px;
}
@media screen and (max-width: 600px) {
  section.recruit-status p {
    width: 100%;
  }
}
section.recruit-status a.recruit-link:hover {
  text-decoration: underline;
}
section.content-container {
  margin: 0 auto 50px;
  padding: 0 20px;
}
@media screen and (max-width: 600px) {
  section.content-container {
    margin: 0 auto 30px;
  }
}

section.restaurant-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(/restaurant/img/restaurant-main-img.jpg) no-repeat center/cover;
  margin: 0;
  height: 500px;
}
@media screen and (max-width: 600px) {
  section.restaurant-section {
    height: 200px;
  }
}
section.restaurant-section h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 600px) {
  section.restaurant-section h2 {
    font-size: 30px;
  }
}
section.restaurant-section h2 span {
  display: block;
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  section.restaurant-section h2 span {
    font-size: 16px;
  }
}
section.restaurant-status {
  margin: 100px auto;
  width: 1000px;
}
@media screen and (max-width: 600px) {
  section.restaurant-status {
    margin: 50px auto;
    padding: 0 16px;
    width: 100%;
  }
}
section.restaurant-status h3 {
  margin-bottom: 20px;
  border-bottom: solid 1px #000;
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (max-width: 600px) {
  section.restaurant-status h3 {
    font-size: 22px;
  }
}
section.restaurant-status div.shop-image ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  section.restaurant-status div.shop-image ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
section.restaurant-status div.shop-image li {
  -ms-flex-preferred-size: 450px;
      flex-basis: 450px;
}
@media screen and (max-width: 600px) {
  section.restaurant-status div.shop-image li {
    -ms-flex-preferred-size: initial;
        flex-basis: initial;
    padding: 0 24px;
  }
}
section.restaurant-status div.shop-image li img {
  width: 100%;
}
@media screen and (max-width: 600px) {
  section.restaurant-status div.shop-image li img {
    width: 100%;
  }
}
section.restaurant-status p {
  margin: 0 auto;
  width: 960px;
}
@media screen and (max-width: 600px) {
  section.restaurant-status p {
    width: 100%;
  }
}
section.restaurant-status address {
  margin: 0 auto 30px;
  width: 960px;
  font-style: normal;
}
@media screen and (max-width: 600px) {
  section.restaurant-status address {
    width: 100%;
  }
}
section.restaurant-status address a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
section.restaurant-status address a.brand-logo img {
  margin: 20px 0 0;
  width: 300px;
}
@media screen and (max-width: 600px) {
  section.restaurant-status address a.brand-logo img {
    width: 70%;
  }
}
section.content-container {
  margin: 0 auto 50px;
  padding: 0 20px;
}
@media screen and (max-width: 600px) {
  section.content-container {
    margin: 0 auto 30px;
  }
}

section.trade-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(/trade/img/trade-main-img.jpg) no-repeat center/cover;
  margin: 0;
  height: 500px;
}
@media screen and (max-width: 600px) {
  section.trade-section {
    height: 200px;
  }
}
section.trade-section h2 {
  color: #fff;
  font-size: 40px;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 600px) {
  section.trade-section h2 {
    font-size: 30px;
  }
}
section.trade-section h2 span {
  display: block;
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  section.trade-section h2 span {
    font-size: 16px;
  }
}
section.trade-status {
  margin: 100px auto;
  width: 1000px;
}
@media screen and (max-width: 600px) {
  section.trade-status {
    margin: 50px auto;
    padding: 0 16px;
    width: 100%;
  }
}
section.trade-status h3 {
  margin-bottom: 20px;
  border-bottom: solid 1px #000;
  font-size: 24px;
  line-height: 1.3;
}
section.trade-status div.shop-image ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  section.trade-status div.shop-image ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
section.trade-status div.shop-image li {
  -ms-flex-preferred-size: 450px;
      flex-basis: 450px;
}
@media screen and (max-width: 600px) {
  section.trade-status div.shop-image li {
    -ms-flex-preferred-size: initial;
        flex-basis: initial;
    margin-bottom: 20px;
    padding: 0 24px;
    font-size: 14px;
  }
}
section.trade-status div.shop-image li img {
  width: 100%;
}
@media screen and (max-width: 600px) {
  section.trade-status div.shop-image li img {
    width: 100%;
  }
}
section.trade-status p {
  margin: 0 auto;
  width: 960px;
}
@media screen and (max-width: 600px) {
  section.trade-status p {
    width: 100%;
  }
}
section.content-container {
  margin: 0 auto 50px;
  padding: 0 20px;
}
@media screen and (max-width: 600px) {
  section.content-container {
    margin: 0 auto 30px;
  }
}
/*# sourceMappingURL=style.css.map */
