@charset "utf-8";
/*
-------------------------------------------------- */
/* master
-------------------------------------------------- */
/* 
-------------------------------------------------- */
/* root
-------------------------------------------------- 
*/ :root {
  --black: rgba(31, 31, 31, 1.0);
  --black-alpha-high: rgba(31, 31, 31, 0.5);
  --black-alpha-middle: rgba(31, 31, 31, 0.25);
  --black-alpha-low: rgba(31, 31, 31, 0.01);
  --white: rgba(255, 255, 255, 1.0);
  --white-alpha-high: rgba(255, 255, 255, 0.75);
  --white-alpha-middle: rgba(255, 255, 255, 0.5);
  --white-alpha-low: rgba(255, 255, 255, 0.25);
  /* Dark #5C636A */
  --dark: rgba(92, 99, 106, 1.0);
  /* Light #6C757D */
  --light: rgba(108, 117, 125, 1.0);
  /* Primary #00CCCC */
  --primary: rgba(0, 204, 204, 1.0);
  --primary-alpha-high: rgba(0, 204, 204, 0.75);
  --primary-alpha-middle: rgba(0, 204, 204, 0.5);
  --primary-alpha-low: rgba(0, 204, 204, 0.25);
  /* Primary Dark #009999 */
  --primary-dark: rgba(0, 153, 153, 1.0);
  /* Secondary #6C757D */
  --secondary: rgba(108, 117, 125, 1.0);
  /* Secondary Dark #5C636A */
  --secondary-dark: rgba(92, 99, 106, 1.0);
  /* Tertiary ##FFF0E9 */
  --tertiary: rgba(255, 240, 233, 1.0);
  --success: rgba(0, 152, 159, 1.0);
  --danger: rgba(220, 53, 69, 1.0);
  --warning: rgba(255, 193, 7, 1.0);
  --font: "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, sans-serif;
}
/*
-------------------------------------------------- */
/* reset
-------------------------------------------------- */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
em, i {
  font-style: normal;
}
figure {
  margin: 0;
  padding: 0;
}
iframe {
  -webkit-overflow-scrolling: touch !important;
  overflow: auto !important;
}
img {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 100%;
}
p, td {
  text-align: justify;
}
pre {
  background-color: var(--light);
  padding: 1.0rem;
}
code {
  background-color: var(--dark-alpha-middle);
}
pre > code {
  background-color: transparent;
  font-size: 0.9em;
  white-space: pre-wrap;
  word-wrap: break-word;
}
/*
-------------------------------------------------- */
/* base
-------------------------------------------------- */
body, td, th, input, button, select, textarea {
  font-family: var(--font);
  font-size: 1.0rem;
  text-rendering: optimizelegibility;
}
body {
  background-color: var(--white);
  color: var(--black);
  margin: 0;
}
a {
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:link {
  color: var(--primary);
  text-decoration: none;
}
a:visited {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
a:active {
  color: var(--danger);
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
h1 {
  font-size: 36px;
  color: #333;
}
h2 {
  font-size: 24px;
  color: #333;
}
h3 {
  font-size: 18px;
  color: #333;
}
h4 {
  font-size: 16px;
  color: #333;
}
input {
  -webkit-appearance: none; /* safari */
}
p {
  text-align: justify;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
p, li, .break-word {
  word-break: break-all;
  word-wrap: break-word;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
.text-overflow {
  max-width: 100%;
  overflow: hidden;
  -webkit-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.transparency {
  filter: alpha(opacity=90);
  opacity: 0.90;
  zoom: 1;
}
.mo {
  display: none;
}
.box {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
/*
-------------------------------------------------- */
/* animation
-------------------------------------------------- */
div.solid {
  background: #FFF;
  font-size: 0;
  height: 2px;
}
div.solid span {
  background: var(--primary);
  display: block;
  height: 2px;
  -webkit-animation-name: topline; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 4s; /* Safari 4.0 - 8.0 */
  animation-name: topline;
  animation-duration: 4s;
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes topline {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/* Standard syntax */
@keyframes topline {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/*
-------------------------------------------------- */
/* header
-------------------------------------------------- */
header {
  background: #FFF;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 60px;
  overflow: hidden;
}
header nav {
  display: table;
  margin: 0 auto;
  width: 1000px;
}
header div {
  display: table-cell;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
header .logo a, header .mlogo a {
  background-color: var(--primary);
  border-radius: 1000px;
  color: var(--white);
  display: inline-block;
  font-size: 1.2rem;
  line-height: 2.5rem;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  width: 12.5rem;
}
header .mlogo a {
  font-size: 1.0rem;
  line-height: 2.0rem;
  width: 12rem;
}
header .mlogo, header .micon {
  display: none;
}
header .links {
  text-align: right;
}
header img {
  vertical-align: middle;
}
header ul {
  font-size: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
header li {
  display: inline;
}
header li a {
  border-right: solid 1px var(--primary);
  font-size: 16px;
  line-height: 60px;
  margin: 0;
  padding: 0 8px;
  text-decoration: none;
}
header li:last-child a {
  border-right: none;
  padding: 0 0 0 8px;
}
header li a:hover {
  background: var(--primary);
  color: #FFF;
  text-decoration: none;
}
header .show-menu {
  display: none;
}
header input[type=checkbox] {
  -webkit-appearance: none;
  display: none;
}
/* 
-------------------------------------------------- */
/* footer 
-------------------------------------------------- */
footer {
  padding: 2.5rem 1.0rem;
  text-align: center;
}
footer ul {
  list-style: none;
  margin: 0 0 2.0rem;
  padding: 0;
}
footer li {
  display: inline-block;
  border-right: 1px solid var(--primary);
  padding-right: 0.5rem;
}
footer li:last-child {
  border-right: none;
  padding-right: 0;
}
.footer-menu p {
  text-align: center;
}
.socialmedia {
  padding: 0 0 1.25rem;
  display: none;
}
.socialmedia li {
  margin: 0 1.25rem;
}
.copyright {
  margin: 2.5rem 0 0;
}
.copyright span {
  display: inline-block;
  white-space: nowrap;
}
.copyright .break {
  margin: 0 0 0 0.25rem;
}
/* 
-------------------------------------------------- */
/* tracking
-------------------------------------------------- */
.tracking, .tracking img {
  display: none;
  font-size: 0;
}
/*
-------------------------------------------------- */
/* hero
-------------------------------------------------- */
.hero {
  background-image: url("../images/2024/bg-hero.jpg");
  background-position: center;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0px 1px 25px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 0px 1px 25px 0px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0px 1px 25px 0px rgba(0, 0, 0, 0.25);
  padding: 0 1.0rem;
  position: relative;
}
.hero .box {
  min-height: 30rem;
  position: relative;
}
.hero__txt {
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.hero__txt div {
  margin-bottom: 1.5rem;
}
.hero__txt div:last-child {
  margin-bottom: 0;
}
.hero__txt1 {
  color: var(--secondary);
  font-size: 2.0rem;
}
.hero__txt2, .hero__txt3 {
  color: var(--primary);
  font-size: 2.75rem;
}
/*
-------------------------------------------------- */
/* intro
-------------------------------------------------- */
.intro {
  background: #FFF;
  background-image: url("../images/2024/bg-intro.jpg");
  background-position: center top;
  padding: 2.5rem 1.0rem;
  position: relative;
}
.intro::after {
  content: "";
  background-color: var(--white);
  opacity: 0.9;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
}
.intro .box {
  position: relative;
  z-index: 2;
}
.intro h1 {
  background-color: var(--primary);
  border-radius: 30px;
  color: #FFF;
  font-size: 2.0rem;
  line-height: 60px;
  margin: 0 0 1.5rem;
  overflow: hidden;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}
.intro h2 {
  color: var(--primary);
  font-size: 2.0rem;
  margin: 0;
  padding: 0;
}
.intro ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.intro li {
  display: flex;
}
.intro__img {
  padding: 0 2.0rem 0 0;
  white-space: nowrap;
}
.intro__img img {
  height: 6.0rem;
}
.intro__txt {
  line-height: 6.0rem;
  vertical-align: middle;
}
/*
-------------------------------------------------- */
/* who
-------------------------------------------------- */
.who {
  background-color: var(--tertiary);
  background-image: url("../images/2024/bg-who.jpg");
  background-position: center;
  margin: 0;
  padding: 2.5rem 1.0rem;
  position: relative;
}
.who h2 {
  color: var(--secondary);
  font-size: 3.0rem;
  margin: 0 0 1.5rem;
  padding: 0;
  text-align: center;
}
.who__content {
  box-sizing: border-box;
  padding: 2.0rem;
}
.who__content::after {
  content: "";
  display: block;
  clear: both;
}
.who__txt {
  display: inline-block;
  float: right;
}
.who__list {
  display: grid;
  grid-row-gap: 0.5rem;
  list-style: none;
  font-size: 2.0rem;
  margin: 0;
  padding: 0;
}
.who__list > li {
  margin: 0.5rem 0 0;
  padding-left: 1em;
  text-indent: -1em;
}
.who__list > li:first-child {
  margin: 0;
}
.who__list > li::before {
  font-family: "fontello";
  content: "\e861";
  margin: 0 0.75rem 0 0;
}
.who__img img {
  display: block;
  height: 22rem;
}
/*
-------------------------------------------------- */
/* job
-------------------------------------------------- */
.job {
  background-color: var(--white);
  background-image: url("../images/2024/bg-job.jpg");
  background-position: center;
  padding: 2.5rem 1.0rem 0;
  position: relative;
  text-align: center;
}
.job h2 {
  color: var(--primary);
  font-size: 3.0rem;
  margin: 0 0 1.5rem;
  padding: 0;
}
.job h3 {
  background-color: var(--primary);
  border-radius: 1000px;
  color: var(--white);
  font-size: 2.0rem;
  font-weight: bold;
  height: 60px;
  line-height: 64px;
  margin: 20px 0;
  vertical-align: middle;
}
.job h4 {
  color: var(--light);
  font-size: 2.0rem;
  margin: 0 0 2.0rem;
  text-align: left;
}
.job__content {
  position: relative;
  padding: 2.0rem;
}
.job__txt {
  position: relative;
  padding: 0 0 2.5rem;
  z-index: 2;
}
.job__list {
  color: var(--primary);
  display: grid;
  grid-row-gap: 1.0rem;
  font-size: 2.0rem;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.job__list > li {
  margin-bottom: 0.5rem;
  padding-left: 1em;
  text-indent: -1em;
}
.job__list > li:last-child {
  margin-bottom: 0;
}
.job__list > li::before {
  font-family: "fontello";
  content: "\e861";
  margin: 0 0.75rem 0 0;
}
.job__img {
  position: absolute;
  bottom: 0;
  right: 0;
}
.job__img img {
  display: block;
  height: 30rem;
}
/*
-------------------------------------------------- */
/* faq
-------------------------------------------------- */
.faq {
  background-color: var(--tertiary);
  padding: 2.5rem 1.0rem;
}
.faq--primary {
  background-color: var(--primary-alpha-low);
}
.faq h2 {
  color: var(--secondary);
  font-size: 3.0rem;
  margin: 0 0 1.5rem;
  padding: 0;
  text-align: center;
}
.faq ul {
  display: table;
  list-style: none;
  margin: 1.0rem 0;
  padding: 0;
  width: 100%;
}
.faq li {
  color: var(--dark);
  display: table-cell;
  font-size: 18px;
  font-weight: bold;
  vertical-align: top;
}
ul.question span, ul.answer span {
  background-color: var(--primary-alpha-middle);
  border-radius: 25px;
  /*
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
	*/
  display: block;
  line-height: 50px;
  min-height: 50px;
  overflow: hidden;
  padding: 0 1.25rem;
  text-align: left;
  vertical-align: middle;
}
ul.answer span {
  background-color: var(--white);
  text-align: right;
}
ul.question li:first-child, ul.answer li:last-child {
  line-height: 50px;
  height: 50px;
  width: 60px;
}
ul.question li:first-child span, ul.answer li:last-child span {
  color: var(--white);
  font-size: 30px;
  padding: 0;
  text-align: center;
  width: 50px;
}
ul.question li {
  color: var(--white);
}
ul.answer li:first-child span {
  line-height: normal;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
ul.answer li:last-child span {
  color: var(--primary);
  float: right;
}
ul.kome {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.kome > li {
  padding-left: 1em;
  text-indent: -1em;
}
ul.kome > li::before {
  content: "※";
}
/*
-------------------------------------------------- */
/* join
-------------------------------------------------- */
.join {
  background-image: url("../images/2024/bg-join.jpg");
  background-position: center;
  text-align: center;
  padding: 0 1.0rem;
}
.join__content {
  padding: 15rem 1.0rem;
}
a.join__button {
  background-color: var(--primary);
  border-radius: 1000px;
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font-size: 3.0rem;
  line-height: 6.0rem;
  margin: auto;
  max-width: 45rem;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  width: 100%;
}
a.join__button:hover {
  background-color: var(--secondary);
}
/*
-------------------------------------------------- */
/* gotop
-------------------------------------------------- */
.gotop {
  background-color: var(--primary-alpha-low);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  border-radius: 50%;
  bottom: 10px;
  /*
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
	*/
  display: block;
  height: 40px;
  line-height: 40px;
  right: 10px;
  position: fixed;
  text-align: center;
  vertical-align: middle;
  width: 40px;
}
.gotop a {
  display: block;
  font-size: 30px;
  text-decoration: none;
}
/*
-------------------------------------------------- */
/* other
-------------------------------------------------- */
.disclaimer, .privacy, .contact {
  background: #FFF;
  color: #666;
  margin: 0;
  padding: 0 0 40px;
}
.contact {
  border-bottom: solid 1px #fa8aa0;
}
.nobg {
  background: #FFF;
}
.disclaimer h1, .privacy h1, .contact h1, .join h1 {
  background: #fa8aa0;
  color: #FFF;
  font-size: 36px;
  margin: 0;
  padding: 40px 0;
  text-align: center;
}
.disclaimer h2, .privacy h2 {
  background: #fa8aa0;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  -khtml-border-radius: 30px;
  border-radius: 25px;
  color: #FFF;
  font-size: 24px;
  height: 50px;
  line-height: 54px;
  margin: 30px 0;
  overflow: hidden;
  padding: 0;
  text-align: center;
  vertical-align: middle;
}
.disclaimer p, .privacy p {
  margin: 20px 0;
}
.disclaimer p, .privacy p, .privacy li {
  line-height: 1.8em;
  text-align: justify;
}
.privacy ol {
  margin: 20px 0;
  padding: 0 0 0 20px;
}
.contact-form, .join-form {
  padding: 30px 10px 0;
}
iframe.contactForm, iframe.joinForm {
  height: 780px;
  width: 100%;
}
.divider {
  border-top: solid 1px #fa8aa0;
  font-size: 0;
}
/*
-------------------------------------------------- */
/* hide
-------------------------------------------------- */
#inquiryForm, #supportForm, #registerForm {
  display: none;
}
#jobForm {
  height: 957px;
}
.form-wrapper {
  position: relative;
}
.form-title {
  background: #a9a9a9;
  color: #FFF;
  font-size: 24px;
  height: 82px;
  line-height: 82px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  vertical-align: middle;
  width: 602px;
  z-index: 2;
}
/*
-------------------------------------------------- */
/*
-------------------------------------------------- */
/* tablets (landscape-ipad=1024px)
-------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  /*
-------------------------------------------------- */
  iframe {
    -webkit-overflow-scrolling: touch !important;
    overflow: auto !important;
  }
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* tablets (portrait-android=800px)
-------------------------------------------------- */
@media only screen and (max-width: 800px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
  img {
    max-width: 100%;
  }
  .pc {
    display: none;
  }
  .mo {
    display: block;
  }
  .box {
    margin: 0 auto;
    width: 100%;
  }
  .solid {
    display: none;
  }
  /*
-------------------------------------------------- */
  /* header
-------------------------------------------------- */
  header {
    height: 50px;
    left: 0;
    overflow: visible;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9;
  }
  header nav {
    width: 100%;
  }
  header div.logo {
    display: none;
  }
  header div.links, header div.mlogo, header div.micon {
    display: table-cell;
    line-height: 47px;
    vertical-align: middle;
  }
  header div.links {
    font-size: 30px;
    text-align: left;
    padding: 2px 0 0 0;
    width: 25%;
  }
  header div.links i {
    padding: 0 0 0 10px;
  }
  header div.mlogo {
    text-align: center;
    width: 50%;
  }
  header div.micon {
    font-size: 30px;
    padding: 2px 0 0 0;
    text-align: right;
    width: 25%;
  }
  header div.micon a {
    color: var(--dark);
  }
  header div.micon i {
    color: var(--dark);
    padding: 0 10px 0 0;
  }
  header ul {
    display: none;
    left: 0;
    position: absolute;
    right: 0;
    top: 3.0rem;
  }
  header li {
    display: block;
  }
  header li a {
    background: var(--primary);
    border-bottom: solid 1px var(--white);
    color: #FFF !important;
    display: block;
    line-height: 50px;
    padding: 0;
    text-align: center;
  }
  header .show-menu {
    display: block;
    text-decoration: none;
  }
  /* show menu when invisible checkbox is checked */
  header input[type=checkbox]:checked ~ #menu {
    display: block;
  }
  /* hide dropdown links until they are needed*/
  header li ul {
    display: none;
    position: static;
  }
  header li ul.hidden a {
    background: #fad4dc;
    border-bottom: solid 1px #fa8aa0;
    color: #333 !important;
  }
  /* display the dropdown on hover*/
  header ul li a:hover + .hidden, header .hidden:hover {
    display: block;
  }
  /*
-------------------------------------------------- */
  /* other
-------------------------------------------------- */
  .hero {
    font-size: 0;
    margin: 50px 0 0;
    height: auto;
  }
  .hero__txt {
    background-color: transparent;
    padding: 0;
  }
  .intro h2 {
    font-size: 2.0rem;
  }
  .who__content {
    padding: 1.0rem;
  }
  .who__img {
    text-align: right;
  }
  .who__img img {
    margin: 0 0 0 auto;
  }
  .who__txt {
    right: auto;
    left: 1.5rem;
  }
  .who__list {
    font-size: 2.3rem;
  }
  .job h3 {
    font-size: 1.5rem;
  }
  .faq {
    text-align: inherit;
  }
  ul.question span, ul.answer span {
    display: inline-block;
    height: auto;
    line-height: normal;
    overflow: visible;
    padding: 12px 20px;
    vertical-align: top;
  }
  ul.question li:first-child span, ul.answer li:last-child span {
    height: 50px;
    line-height: 50px;
    vertical-align: middle;
  }
  ul.answer li {
    text-align: right;
  }
  ul.answer span {
    text-align: left;
  }
  .disclaimer, .privacy, .contact, .join {
    padding: 50px 0;
  }
  .disclaimer h1, .privacy h1, .contact h1, .join h1 {
    padding: 20px 0;
  }
  .disclaimer h2, .privacy h2 {
    margin: 20px 10px;
  }
  .disclaimer p, .privacy p, .privacy li {
    padding: 0 10px;
  }
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* tablets (portrait-ipad=768px)
-------------------------------------------------- */
@media only screen and (max-width: 768px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone6plus=736px)
-------------------------------------------------- */
@media only screen and (max-width: 736px) {
  /*
-------------------------------------------------- */
  .hero {
    background-position: 65% center;
  }
  .hero__txt {
    top: 3.0rem;
    transform: none;
  }
  .hero__txt2, .hero__txt3 {
    font-size: 2.0rem;
  }
  .intro li {
    display: block;
    text-align: center;
  }
  .intro__img {
    padding: 0;
  }
  .intro__txt {
    line-height: 1.0em;
    padding: 1.0rem 0;
    vertical-align: inherit;
  }
  .who__list {
    font-size: 2.0rem;
  }
  .job h3 {
    font-size: 1.25rem;
  }
  .job__list {
    font-size: 1.25rem;
  }
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone6=667px)
-------------------------------------------------- */
@media only screen and (max-width: 667px) {
  /*
-------------------------------------------------- */
  .join .join-button {
    padding: 20px 10px;
  }
  .form-title {
    font-size: 16px;
    width: 100%;
  }
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone5=568px)
-------------------------------------------------- */
@media only screen and (max-width: 568px) {
  /*
-------------------------------------------------- */
  .intro h1 {
    font-size: 24px;
  }
  .intro li {
    font-size: 16px;
  }
  .intro li img {
    margin: 0 10px 0 0;
  }
  .who__list {
    font-size: 1.75rem;
  }
  .job h3 {
    font-size: 1.125rem;
  }
  .job__list {
    font-size: 1.2rem;
  }
  .job__list > li::before {
    margin: 0 0.25rem 0 0;
  }
  .job__img {
    opacity: 0.5;
  }
  footer {
    padding: 1.5rem 1.0rem 2.5rem;
  }
  footer li {
    border-right: none;
    padding-right: 0;
  }
  .footer-menu li {
    display: inline-block;
    margin: 1.0rem 0 0;
  }
  .footer-menu li a, .footer-menu li:last-child a {
    background-color: var(--primary-alpha-low);
    border: none;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    -khtml-border-radius: 20px;
    border-radius: 20px;
    color: var(--primary) !important;
    display: inline-block;
    line-height: 40px;
    margin: 0 5px;
    padding: 0 20px;
    text-decoration: none;
  }
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (landscape-iphone4=480px)
-------------------------------------------------- */
@media only screen and (max-width: 480px) {
  /*
-------------------------------------------------- */
  .hero {
    background-position: 65% 5%;
  }
  .hero__txt div {
    margin-bottom: 1.0rem;
  }
  .intro {
    background-position: 70% center;
  }
  .intro h1, .job h3 {
    background-color: var(--primary);
    border-radius: 25px;
    color: #FFF;
    font-size: 1.75rem;
    height: auto;
    line-height: normal;
    padding: 1.0rem;
    vertical-align: inherit;
  }
  .intro h2 {
    font-size: 1.5rem;
    line-height: normal;
  }
  .who {
    background-position: 26% 40%;
  }
  .who::after {
    content: "";
    background-color: var(--tertiary);
    opacity: 0.75;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .who .box {
    position: relative;
    z-index: 2;
  }
  .who h2, .job h2, .faq h2 {
    font-size: 1.8rem;
  }
  .who__content {
    padding: 1.0rem 0;
  }
  .who__txt {
    float: none;
  }
  .who__list {
    font-size: 1.45rem;
  }
  .who__list > li::before {
    margin: 0;
  }
  .who__img, .job__img {
    opacity: 0.35;
  }
  .job {
    background-position: 62.5% top;
  }
  .job::after {
    content: "";
    background-color: var(--white);
    opacity: 0.9;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .job .box {
    position: relative;
    z-index: 2;
  }
  .job__list > li {
    padding-left: 1.2em;
    text-indent: -1.2em;
  }
  a.join__button {
    font-size: 1.6rem;
  }
  .copyright .break {
    margin: 0.5rem 0 0;
  }
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-iphone6plus=414px)
-------------------------------------------------- */
@media only screen and (max-width: 414px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-iphone6=375px)
-------------------------------------------------- */
@media only screen and (max-width: 375px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-android=360x640px)
-------------------------------------------------- */
@media only screen and (max-width: 360px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */
/* smartphones (portrait-iphone4/5=320px)
-------------------------------------------------- */
@media only screen and (max-width: 320px) {
  /*
-------------------------------------------------- */
  /*
-------------------------------------------------- */
}
/*
-------------------------------------------------- */