@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-size: 62.5%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  html,
  body {
    height: 100vh;
  }
}

body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

#container {
  width: 100%;
  height: auto !important;
  min-width: 1012px;
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
  -moz-transition: filter 0.3s ease;
  -o-transition: filter 0.3s ease;
  -webkit-transition: filter 0.3s ease;
  transition: filter 0.3s ease;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #231815;
  background: #fff;
  z-index: 2;
}
#container.blur {
  position: relative;
  opacity: 0.25;
  -webkit-filter: blur(8px) !important;
  -ms-filter: blur(8px) !important;
  -moz-filter: blur(8px) !important;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='blur'><feGaussianBlur stdDeviation='8' /></filter></svg>#blur");
}
#container.blur:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

header,
article,
footer {
  width: 100%;
  min-width: 1040px;
}

.container {
  width: 1000px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

@media screen and (max-width: 1024px) {
  #container,
  header,
  article,
  footer,
  .container {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}

#loading {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #009dff;
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -moz-transition: -moz-transform 1s ease-in-out;
  -o-transition: -o-transform 1s ease-in-out;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
}
#loading.hide {
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
#loading.break {
  display: none;
}
#loading > div {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#loading > div div {
  font-family: "Archivo Black", sans-serif;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 400;
  letter-spacing: .2em;
  color: #fff;
}
#loading > div div.anime {
  margin-right: 5px;
  -moz-animation: loading 3s ease-in-out infinite normal;
  -webkit-animation: loading 3s ease-in-out infinite normal;
  animation: loading 3s ease-in-out infinite normal;
  font-weight: 400;
  width: 30px;
  height: 30px;
}

.sugg {
  color: #f00;
}

a {
  text-decoration: none;
}
a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
a:hover, a:active {
  outline: 0;
}

ul, ol {
  list-style: none;
}

pre {
  font-family: "Noto Serif JP", serif;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow: auto;
}

input[type="text"], input[type="number"], input[type="email"], input[type="submit"],
input textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

img {
  border: 0;
  max-width: 100%;
  line-height: 1.0em;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

.naka {
  text-align: center;
}

.hidari {
  float: left;
  margin: 0 15px 15px 0;
}

.migi {
  float: right;
  margin: 0 0 15px 15px;
}

.thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

article,
aside,
footer,
header,
menu,
main,
nav,
section {
  display: block;
  margin: 0;
}

@font-face {
  font-family: 'icon';
  src: url("font/icon/icon.ttf?ixrjr4") format("truetype"), url("font/icon/icon.woff?ixrjr4") format("woff"), url("font/icon/icon.svg?ixrjr4#icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change font icon/*/
  font-family: 'icon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-logo:before {
  content: "\e900";
}

.icon-arrow:before {
  content: "\e901";
}

.icon-more:before {
  content: "\e902";
}

.icon-loading:before {
  content: "\e903";
}

.icon-instagram:before {
  content: "\e904";
}

header {
  padding: 25px 50px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background: #fff;
}
@media screen and (max-width: 414px) {
  header {
    display: block;
    padding: 25px 30px;
  }
}
header .logo {
  padding-left: 55px;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 400;
  text-align: left;
  letter-spacing: .1em;
}
header .logo small {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  line-height: 2.2rem;
}
header .logo a {
  color: #231815;
}
header .logo:before {
  display: block;
  font-family: "icon";
  width: 45px;
  height: 50px;
  content: '\e900';
  font-weight: 400;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 50px;
  line-height: 50px;
  text-align: center;
  color: #009dff;
}
header.intro {
  width: 100%;
  padding: 40px 50px;
  -webkit-align-items: start;
  align-items: start;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
}
header.intro .logo {
  padding-left: 0;
  font-size: 1.2rem;
  line-height: 2rem;
}
@media screen and (max-width: 414px) {
  header.intro .logo {
    text-align: center;
  }
}
header.intro .logo a {
  color: #009dff;
}
header.intro .logo:before {
  width: 70px;
  height: 85px;
  margin-bottom: 5px;
  position: relative;
  top: auto;
  left: auto;
  font-size: 85px;
  line-height: 85px;
}
@media screen and (max-width: 414px) {
  header.intro .logo:before {
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
header nav {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  header nav {
    display: none;
  }
}
header nav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  text-align: center;
}
header nav ul li {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 400;
  letter-spacing: .16em;
}
header nav ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 10px;
  position: relative;
  color: #231815;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
header nav ul li a:after {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  -moz-transition: width 0.3s ease;
  -o-transition: width 0.3s ease;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  background: #009dff;
}
header nav ul li a:hover {
  color: #009dff;
}
header nav ul li a:hover:after {
  width: 100%;
}
header nav p {
  margin: 0 10px;
  font-size: 3rem;
  line-height: 5rem;
}
header nav p a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: #231815;
}
header nav p a:hover {
  color: #009dff;
}
header.intro nav ul li a,
header.intro nav p a {
  color: #fff;
}
header.intro nav ul li a:hover,
header.intro nav p a:hover {
  color: #009dff;
}

article {
  background: #f6f6f6;
}
article #title {
  margin-bottom: 120px;
  padding: 20px 20px 0;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 414px) {
  article #title {
    margin-bottom: 50px;
    padding: 40px;
  }
}
article #title h1 {
  margin: 0 auto;
  position: relative;
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 400;
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  letter-spacing: .36em;
}
article #title h1 span {
  padding: 33px 30px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #fff;
  background: rgba(0, 157, 255, 0.8);
}
@media screen and (max-width: 768px) {
  article #title h1 {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
@media screen and (max-width: 414px) {
  article #title h1 {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    font-size: 1.6rem;
    line-height: 2.4rem;
    letter-spacing: .3em;
  }
  article #title h1 span {
    padding: 23px 20px;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
}
article #title .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
article .contact_form {
  width: 1000px;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: .3em;
  font-weight: 700;
  background: #f0f0f0;
}
@media screen and (max-width: 1024px) {
  article .contact_form {
    width: auto;
    margin: 0 30px 20px;
  }
}
@media screen and (max-width: 414px) {
  article .contact_form {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}
article .contact_form a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 20px 50px;
  position: relative;
  text-align: center;
  -moz-transition: color, background 0.3s ease;
  -o-transition: color, background 0.3s ease;
  -webkit-transition: color, background 0.3s ease;
  transition: color, background 0.3s ease;
  color: #fff;
  background: #f93;
}
@media screen and (max-width: 414px) {
  article .contact_form a {
    padding: 20px 30px;
  }
}
article .contact_form a:hover {
  color: #f93;
  background: #fff;
}
article .contact_form a:before {
  display: block;
  font-family: "icon";
  content: '\e902';
  width: 8px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 20px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 15px;
  line-height: 15px;
}

#intro {
  text-align: left;
}
#intro section.message {
  padding-top: 160px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #intro section.message {
    padding-top: 30px;
  }
}
@media screen and (max-width: 414px) {
  #intro section.message {
    margin-bottom: 50px;
  }
}
#intro section.message .container {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media screen and (min-width: 415px) and (max-width: 1024px) {
  #intro section.message .container {
    padding: 0 70px;
  }
}
@media screen and (max-width: 414px) {
  #intro section.message .container {
    padding: 0 30px;
  }
}
#intro section.message .read {
  position: relative;
}
#intro section.message .read .thumb {
  width: 720px;
  position: relative;
  z-index: auto;
}
@media screen and (max-width: 768px) {
  #intro section.message .read .thumb {
    width: 100%;
  }
}
#intro section.message .read .thumb img {
  position: relative;
  z-index: 2;
}
#intro section.message .read .thumb:before, #intro section.message .read .thumb:after {
  display: block;
  content: "";
  width: inherit;
  height: inherit;
  position: absolute;
}
#intro section.message .read .thumb:before {
  left: -30px;
  top: -20px;
  background: url("../img/article/intro/message/before.png") repeat 0 0;
  background-size: 5px auto !important;
}
@media screen and (max-width: 414px) {
  #intro section.message .read .thumb:before {
    left: -20px;
    top: -20px;
  }
}
#intro section.message .read .thumb:after {
  right: -30px;
  bottom: -20px;
  background: url("../img/article/intro/message/after.png") repeat 0 0;
  background-size: 8px auto !important;
}
@media screen and (max-width: 414px) {
  #intro section.message .read .thumb:after {
    right: -20px;
    bottom: -20px;
  }
}
#intro section.message .read .snipet {
  position: absolute;
  bottom: 50px;
  left: -60px;
  z-index: 2;
}
@media screen and (min-width: 415px) and (max-width: 1024px) {
  #intro section.message .read .snipet {
    left: -40px;
    bottom: 20px;
  }
}
@media screen and (max-width: 414px) {
  #intro section.message .read .snipet {
    position: relative;
    bottom: auto;
    left: auto;
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
}
#intro section.message .read .snipet h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-bottom: 15px;
  font-weight: 400;
  letter-spacing: .2em;
}
@media screen and (max-width: 414px) {
  #intro section.message .read .snipet h2 {
    margin-top: 20px;
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
#intro section.message .read .snipet p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  line-height: 2.4rem;
  letter-spacing: .2em;
}
#intro section.message .read .snipet span {
  padding: 2px 10px;
  color: #fff;
  background: #009dff;
}
#intro section.message .more {
  margin-left: 80px;
}
#intro section.message .more:hover a {
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
}
@media screen and (min-width: 415px) and (max-width: 1024px) {
  #intro section.message .more {
    margin-left: 60px;
  }
}
@media screen and (max-width: 414px) {
  #intro section.message .more {
    margin-left: 20px;
  }
}
#intro section.message .more a {
  font-size: 72px;
  line-height: 72px;
  color: #009dff;
}
@media screen and (max-width: 414px) {
  #intro section.message .more a {
    font-size: 36px;
    line-height: 36px;
  }
}
#intro section.recruit {
  padding: 60px 0;
  background: url(../img/article/intro/recruit.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 415px) and (max-width: 1024px) {
  #intro section.recruit {
    padding: 30px 50px;
  }
}
@media screen and (max-width: 414px) {
  #intro section.recruit {
    padding: 30px;
  }
}
#intro section.recruit .read {
  width: 380px;
  color: #fff;
}
@media screen and (max-width: 414px) {
  #intro section.recruit .read {
    width: 100%;
  }
}
#intro section.recruit .read h2, #intro section.recruit .read p {
  margin-bottom: 20px;
  letter-spacing: .1em;
}
#intro section.recruit .read h2 {
  font-size: 3.2rem;
  line-height: 5rem;
}
@media screen and (max-width: 414px) {
  #intro section.recruit .read h2 {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
#intro section.recruit .read p {
  font-size: 1.2rem;
  line-height: 2.4rem;
}
#intro section.recruit .read p.more {
  font-size: 1.6rem;
  line-height: 3rem;
  letter-spacing: .3em;
  font-weight: 700;
}
#intro section.recruit .read p.more a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  position: relative;
  text-align: center;
  -moz-transition: color, background 0.3s ease;
  -o-transition: color, background 0.3s ease;
  -webkit-transition: color, background 0.3s ease;
  transition: color, background 0.3s ease;
  color: #fff;
  background: #f93;
}
#intro section.recruit .read p.more a:hover {
  color: #f93;
  background: #fff;
}
#intro section.recruit .read p.more a:before {
  display: block;
  font-family: "icon";
  content: '\e902';
  width: 8px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 20px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 15px;
  line-height: 15px;
}
#intro section.news {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 1024px) {
  #intro section.news {
    padding: 80px 50px;
  }
}
@media screen and (max-width: 768px) {
  #intro section.news {
    padding: 60px 50px;
  }
}
@media screen and (max-width: 414px) {
  #intro section.news {
    padding: 60px 30px;
  }
}
#intro section.news h2 {
  font-family: "EB Garamond", serif;
  font-size: 3.2rem;
  line-height: 4rem;
  font-weight: 400;
}
#intro section.news dl {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#intro section.news dl dt, #intro section.news dl dd {
  padding: 20px 0;
  letter-spacing: .1em;
  border-bottom: 1px solid rgba(35, 24, 21, 0.15);
}
#intro section.news dl dt {
  padding-right: 20px;
  width: 120px;
}
@media screen and (max-width: 768px) {
  #intro section.news dl dt {
    width: 100%;
    padding: 20px 0;
    border-bottom: 0;
  }
}
#intro section.news dl dd {
  width: -moz-calc(100% - 120px);
  width: -o-calc(100% - 120px);
  width: -webkit-calc(100% - 120px);
  width: calc(100% - 120px);
}
@media screen and (max-width: 768px) {
  #intro section.news dl dd {
    width: 100%;
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(35, 24, 21, 0.15);
  }
}
#intro section.news dl dd a {
  color: #009dff;
  text-decoration: underline;
}
#intro section.news dl dd a[target="_blank"] {
  display: inline-block;
  margin-right: 5px;
  padding-right: 1.2em;
  position: relative;
}
#intro section.news dl dd a[target="_blank"]:after {
  display: block;
  font-family: "FontAwesome";
  content: "\f08e";
  font-size: .8em;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  right: 0;
  vertical-align: middle;
}
#intro section.news dl dd a:hover {
  text-decoration: none;
}

#about #title {
  margin-bottom: 0;
}
#about section.strength {
  padding: 120px 80px;
  color: #fff;
  background: #009dff url("../img/article/about/strength/bg.png") repeat 0 0;
  background-size: 5px 5px;
}
@media screen and (max-width: 414px) {
  #about section.strength {
    padding: 50px 30px;
  }
}
#about section.strength h2, #about section.strength h3, #about section.strength p {
  font-weight: 400;
  letter-spacing: .36em;
}
#about section.strength h2 {
  margin-bottom: 50px;
  font-size: 2.4rem;
  line-height: 3.2rem;
}
@media screen and (max-width: 414px) {
  #about section.strength h2 {
    margin-bottom: 50px;
  }
}
#about section.strength h3 {
  margin-bottom: 30px;
  font-size: 2rem;
  line-height: 3rem;
}
#about section.strength p {
  margin-bottom: 30px;
  font-size: 1.4rem;
  line-height: 3rem;
}
#about section.strength p:last-of-type {
  margin-bottom: 0;
}
#about section.interview .title {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background: #009dff;
}
#about section.interview .title h2, #about section.interview .title .thumb {
  width: 50%;
}
@media screen and (max-width: 414px) {
  #about section.interview .title h2, #about section.interview .title .thumb {
    width: 100%;
  }
}
#about section.interview .title h2 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 400;
  letter-spacing: .36em;
  color: #fff;
}
@media screen and (max-width: 414px) {
  #about section.interview .title h2 {
    padding: 50px;
  }
}
@media screen and (min-width: 1920px) {
  #about section.interview ul {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
#about section.interview ul li {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
@media screen and (min-width: 1920px) {
  #about section.interview ul li:nth-of-type(odd) {
    -webkit-flex-flow: row;
    flex-flow: row;
  }
}
@media screen and (max-width: 1919px) {
  #about section.interview ul li:nth-of-type(odd) {
    -webkit-flex-flow: row-reverse;
    flex-flow: row-reverse;
  }
}
@media screen and (min-width: 1920px) {
  #about section.interview ul li {
    width: 50%;
  }
}
@media screen and (max-width: 1919px) {
  #about section.interview ul li {
    width: 100%;
  }
}
@media screen and (max-width: 414px) {
  #about section.interview ul li {
    display: block;
  }
}
#about section.interview ul li .thumb, #about section.interview ul li .snipet {
  width: 50%;
}
@media screen and (max-width: 414px) {
  #about section.interview ul li .thumb, #about section.interview ul li .snipet {
    width: 100%;
  }
}
@media screen and (max-width: 414px) {
  #about section.interview ul li .thumb {
    height: 300px;
  }
}
#about section.interview ul li .snipet {
  padding: 55px 70px 60px;
  text-align: left;
  letter-spacing: .36em;
}
@media screen and (max-width: 414px) {
  #about section.interview ul li .snipet {
    padding: 50px;
  }
}
#about section.interview ul li .snipet h3 {
  font-size: 1.8rem;
  line-height: 3.2rem;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #231815;
}
#about section.interview ul li .snipet p {
  font-size: 1.4rem;
  line-height: 3rem;
  margin-bottom: 30px;
}
#about section.interview ul li .snipet p:last-of-type {
  margin-bottom: 0;
}
#about section.supplier {
  padding: 100px;
  color: #231815;
  background: #ededed url("../img/article/about/strength/bg.png") repeat 0 0;
  background-size: 5px 5px;
}
@media screen and (max-width: 414px) {
  #about section.supplier {
    padding: 50px 30px;
  }
}
#about section.supplier h2 {
  margin-bottom: 40px;
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 400;
  letter-spacing: .36em;
}
#about section.supplier h2 small {
  margin-top: 10px;
  display: block;
  font-size: 1.4rem;
  line-height: 2.4rem;
}
#about section.supplier ul {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-arround;
  justify-content: space-arround;
}
#about section.supplier ul li {
  width: 25%;
  padding: 20px;
}
#about section.supplier ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #009dff;
  text-decoration: underline;
}
#about section.supplier ul li a:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #about section.supplier ul li {
    width: 50%;
    padding: 10px;
  }
}
@media screen and (max-width: 414px) {
  #about section.supplier ul li {
    width: 100%;
  }
}
#about section.outeline {
  padding: 100px;
}
@media screen and (max-width: 414px) {
  #about section.outeline {
    padding: 30px;
  }
}
#about section.outeline h2 {
  padding: 50px 50px 0;
  text-align: center;
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 400;
  letter-spacing: .36em;
  background: #fff;
}
@media screen and (max-width: 414px) {
  #about section.outeline h2 {
    padding: 30px 30px 0;
  }
}
#about section.outeline dl {
  padding: 50px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background: #fff;
}
@media screen and (max-width: 414px) {
  #about section.outeline dl {
    padding: 30px;
  }
}
#about section.outeline dl dt, #about section.outeline dl dd {
  padding: 20px 30px;
  text-align: left;
  border-top: 1px solid #f6f6f6;
}
#about section.outeline dl dt {
  width: 180px;
  letter-spacing: .36em;
}
@media screen and (max-width: 768px) {
  #about section.outeline dl dt {
    width: 120px;
  }
}
@media screen and (max-width: 414px) {
  #about section.outeline dl dt {
    width: 100%;
    padding: 20px 0 10px;
  }
}
#about section.outeline dl dd {
  width: -moz-calc(100% - 180px);
  width: -o-calc(100% - 180px);
  width: -webkit-calc(100% - 180px);
  width: calc(100% - 180px);
  letter-spacing: .1em;
}
@media screen and (max-width: 768px) {
  #about section.outeline dl dd {
    width: -moz-calc(100% - 120px);
    width: -o-calc(100% - 120px);
    width: -webkit-calc(100% - 120px);
    width: calc(100% - 120px);
  }
}
@media screen and (max-width: 414px) {
  #about section.outeline dl dd {
    width: 100%;
    padding: 0 0 20px;
    border-top: none;
  }
}
#about section.outeline dl dd ul {
  margin-bottom: -20px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: start;
  align-items: start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 414px) {
  #about section.outeline dl dd ul {
    display: block;
  }
}
#about section.outeline dl dd ul li {
  margin-bottom: 20px;
  width: -moz-calc(50% - 10px);
  width: -o-calc(50% - 10px);
  width: -webkit-calc(50% - 10px);
  width: calc(50% - 10px);
}
@media screen and (max-width: 414px) {
  #about section.outeline dl dd ul li {
    width: 100%;
  }
}
#about section.outeline dl dd ul li h3 {
  font-size: 1.4rem;
  line-height: 2.4rem;
}
#about section.outeline dl dd a {
  color: #009dff;
  text-decoration: underline;
}
#about section.outeline dl dd a:hover {
  text-decoration: none;
}

#recruit ul {
  padding-bottom: 50px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #recruit ul {
    margin: 0 30px 20px;
  }
}
#recruit ul li {
  padding: 50px;
  background: #fff;
}
@media screen and (max-width: 414px) {
  #recruit ul li {
    padding: 30px;
  }
}
#recruit ul li h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  line-height: 2.6rem;
  letter-spacing: .1em;
  text-align: center;
  color: #009dff;
}
#recruit ul li dl {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#recruit ul li dl dt, #recruit ul li dl dd {
  padding: 20px 25px;
  font-size: 1.2rem;
  line-height: 2rem;
}
#recruit ul li dl dt {
  width: 20%;
  background: #f6f6f6;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  #recruit ul li dl dt {
    width: 100%;
    padding: 10px 15px;
  }
}
#recruit ul li dl dd {
  width: 30%;
  border-bottom: 1px solid #f6f6f6;
}
@media screen and (max-width: 768px) {
  #recruit ul li dl dd {
    width: 100%;
    padding: 20px 15px 30px;
  }
}

#contact section {
  padding: 0 50px 50px;
}
@media screen and (max-width: 768px) {
  #contact section {
    padding: 0 30px 20px;
  }
}
#contact section h2 {
  margin-bottom: 40px;
  font-size: 2rem;
  line-height: 2.6rem;
  letter-spacing: .1em;
  text-align: center;
  color: #009dff;
}
#contact section p {
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: .1em;
  margin-bottom: 40px;
}
#contact section p:last-of-type {
  bottom: 0;
}
#contact section p a {
  color: #009dff;
  text-decoration: underline;
}
#contact section p a:hover {
  text-decoration: none;
}
#contact section strong {
  color: #009dff;
}
#contact section .form {
  padding: 50px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #contact section .form {
    padding: 30px;
  }
}
#contact section .form dl {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
#contact section .form dl dt, #contact section .form dl dd {
  padding: 20px 25px;
  font-size: 1.3rem;
  line-height: 2.1rem;
  letter-spacing: .1em;
  text-align: left;
}
#contact section .form dl dt {
  width: 30%;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #contact section .form dl dt {
    width: 100%;
    padding: 10px 15px 0;
  }
}
@media screen and (max-width: 414px) {
  #contact section .form dl dt {
    padding: 10px 0 0;
  }
}
#contact section .form dl dd {
  width: 70%;
}
#contact section .form dl dd p {
  margin-bottom: 0;
  padding: 5px 0;
  font-size: 1.3rem;
  line-height: 2.1rem;
}
#contact section .form dl dd label {
  display: block;
  margin: 2px 0;
}
#contact section .form dl dd input[type="text"],
#contact section .form dl dd input[type="number"],
#contact section .form dl dd input[type="email"],
#contact section .form dl dd select,
#contact section .form dl dd textarea {
  width: 100%;
  padding: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  line-height: 2.1rem;
  background: #fff;
  border: 4px solid #f6f6f6;
}
#contact section .form dl dd .select {
  position: relative;
}
#contact section .form dl dd .select:after {
  display: block;
  font-family: "FontAwesome";
  content: "\f107";
  width: 13px;
  height: 21px;
  position: absolute;
  top: 50%;
  right: 20px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#contact section .form dl dd input[type=radio] {
  width: auto;
}
#contact section .form dl dd select {
  display: block;
  -moz-appearance: none;
  -webkit-appearance: none;
}
#contact section .form dl dd textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  width: 100%;
  height: 16em;
}
#contact section .form dl dd input[type="text"].address,
#contact section .form dl dd input[type="email"].address {
  margin-top: 10px;
}
#contact section .form dl dd input[type="text"].zipcode,
#contact section .form dl dd input[type="email"].zipcode {
  width: 50%;
}
@media screen and (max-width: 414px) {
  #contact section .form dl dd input[type="text"].zipcode,
  #contact section .form dl dd input[type="email"].zipcode {
    width: 100%;
  }
}
#contact section .form dl dd .message {
  width: 100%;
  height: 16em;
}
@media screen and (max-width: 414px) {
  #contact section .form dl dd .message {
    height: 10em;
  }
}
@media screen and (max-width: 768px) {
  #contact section .form dl dd {
    width: 100%;
    padding: 10px 15px 30px;
  }
}
@media screen and (max-width: 414px) {
  #contact section .form dl dd {
    padding: 10px 0 30px;
  }
}
#contact section .form .alert {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  line-height: 2em;
  padding: 0 0 20px;
}
#contact section .form .button {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 20px 0;
  text-align: center;
}
#contact section .form .button li {
  width: 100%;
}
#contact section .form .button li input[type="submit"],
#contact section .form .button li input[type="button"] {
  width: 100%;
  height: 100%;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  line-height: 2.4rem;
  letter-spacing: .1em;
  color: #fff;
  -moz-appearance: none;
  -webkit-appearance: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: none;
}
#contact section .form .button li#submit input {
  background: #f93;
}
#contact section .form .button li#submit input:hover {
  color: #f93;
  background: #f6f6f6;
}
#contact section .form .button li#back input {
  color: #666;
  background: #dcdcdc;
}
#contact section .form .button li#back input:hover {
  color: #fff;
  background: #666;
}

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 50px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: normal;
  align-items: normal;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background: #fff;
}
@media screen and (max-width: 414px) {
  footer {
    padding: 30px;
  }
}
footer address {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  text-align: left;
  font-style: normal;
}
@media screen and (max-width: 414px) {
  footer address {
    display: block;
  }
}
footer address h2 {
  padding-left: 45px;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  letter-spacing: .16em;
}
@media screen and (max-width: 414px) {
  footer address h2 {
    margin-bottom: 15px;
  }
}
footer address h2 small {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
footer address h2:before {
  display: block;
  font-family: "icon";
  width: 32px;
  height: 40px;
  content: '\e900';
  position: absolute;
  top: 0;
  left: 0;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  color: #009dff;
}
footer address ul {
  margin-left: 40px;
}
@media screen and (max-width: 414px) {
  footer address ul {
    margin: 0 0 30px;
  }
}
footer address ul li {
  font-size: 1.2rem;
  line-height: 2rem;
  letter-spacing: .1em;
}
footer address ul li a {
  color: #231815;
}
footer .copyright {
  -webkit-align-self: flex-end;
  align-self: flex-end;
  text-align: center;
  letter-spacing: .2em;
  font-family: "EB Garamond", serif;
  font-size: 1rem;
  line-height: 2rem;
  font-style: normal;
}
@media screen and (max-width: 414px) {
  footer .copyright {
    display: block;
    width: 100%;
    text-align: right;
  }
}
footer .pagetop {
  display: block;
  font-family: "icon";
  width: 72px;
  height: 72px;
  font-size: 72px;
  line-height: 72px;
  position: absolute;
  top: -100px;
  left: 50%;
  -moz-transform: translate(-50%, 0) rotate(-90deg);
  -ms-transform: translate(-50%, 0) rotate(-90deg);
  -webkit-transform: translate(-50%, 0) rotate(-90deg);
  transform: translate(-50%, 0) rotate(-90deg);
}
footer .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  color: #231815;
}

#menu {
  width: 100%;
  height: 100%;
  -moz-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  background: #009dff;
  z-index: -1;
}
#menu:before, #menu:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background: inherit;
}
#menu:before {
  bottom: -100%;
}
#menu:after {
  top: -100%;
}
#menu > div {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 40px 20px;
  color: #009dff;
}
#menu > div h2 {
  position: relative;
  text-align: center;
  letter-spacing: .1em;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  color: #fff;
}
#menu > div h2:before {
  display: block;
  font-family: "icon";
  width: 100%;
  height: 60px;
  margin-bottom: 10px;
  content: "\e900";
  font-weight: 400;
  position: relative;
  top: 0;
  left: 0;
  font-size: 60px;
  line-height: 60px;
}
#menu > div h2 + p {
  margin-bottom: 20px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  line-height: 1.5em;
}
#menu > div ul.nav {
  margin: 20px 0;
}
#menu > div ul.nav li {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  line-height: 2.4rem;
  font-weight: 700;
  letter-spacing: .2em;
  position: relative;
}
#menu > div ul.social {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
#menu > div ul.social li {
  font-size: 2.9rem;
  line-height: 3rem;
}
#menu > div ul a {
  display: block;
  padding: 7.5px;
  color: #fff;
}
#menu > div ul a:hover {
  text-decoration: none;
}
#menu > div h2, #menu > div li {
  opacity: 0;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -moz-transform: translate(0, 10px) scale(0.5);
  -ms-transform: translate(0, 10px) scale(0.5);
  -webkit-transform: translate(0, 10px) scale(0.5);
  transform: translate(0, 10px) scale(0.5);
}
#menu.action {
  z-index: 4;
  opacity: 1;
  background: #009dff;
}
#menu.action > div h2, #menu.action > div li {
  opacity: 1;
  -moz-transform: translate(0, 0px) scale(1);
  -ms-transform: translate(0, 0px) scale(1);
  -webkit-transform: translate(0, 0px) scale(1);
  transform: translate(0, 0px) scale(1);
}

#open {
  display: none;
}
@media screen and (max-width: 1024px) {
  #open {
    display: block;
    width: 20px;
    height: 20px;
    padding: 0 10px;
    position: fixed;
    top: 30px;
    right: 30px;
    font-family: "Noto Serif JP", serif;
    font-size: 1.8rem;
    line-height: 4rem;
    text-align: center;
    vertical-align: middle;
    z-index: 5;
  }
  #open > div {
    width: 20px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background: #009dff;
  }
  #open > div:nth-of-type(1) {
    -moz-transform: translate(-50%, -7px) rotate(0);
    -ms-transform: translate(-50%, -7px) rotate(0);
    -webkit-transform: translate(-50%, -7px) rotate(0);
    transform: translate(-50%, -7px) rotate(0);
  }
  #open > div:nth-of-type(2) {
    -moz-transform: translate(-50%, 0) rotate(0);
    -ms-transform: translate(-50%, 0) rotate(0);
    -webkit-transform: translate(-50%, 0) rotate(0);
    transform: translate(-50%, 0) rotate(0);
  }
  #open > div:nth-of-type(3) {
    -moz-transform: translate(-50%, 7px) rotate(0);
    -ms-transform: translate(-50%, 7px) rotate(0);
    -webkit-transform: translate(-50%, 7px) rotate(0);
    transform: translate(-50%, 7px) rotate(0);
  }
  #open.close > div {
    background: #fff;
  }
  #open.close > div:nth-of-type(1) {
    -moz-transform: translate(-50%, 0) rotate(225deg);
    -ms-transform: translate(-50%, 0) rotate(225deg);
    -webkit-transform: translate(-50%, 0) rotate(225deg);
    transform: translate(-50%, 0) rotate(225deg);
  }
  #open.close > div:nth-of-type(2) {
    width: 1px;
  }
  #open.close > div:nth-of-type(3) {
    -moz-transform: translate(-50%, 0) rotate(-225deg);
    -ms-transform: translate(-50%, 0) rotate(-225deg);
    -webkit-transform: translate(-50%, 0) rotate(-225deg);
    transform: translate(-50%, 0) rotate(-225deg);
  }
}

#cover {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  display: none;
}

.animate {
  position: absolute;
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(365deg);
    transform: rotate(365deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(365deg);
    transform: rotate(365deg);
  }
}
@keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(365deg);
    -ms-transform: rotate(365deg);
    -webkit-transform: rotate(365deg);
    transform: rotate(365deg);
  }
}
@-moz-keyframes loading {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  10% {
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  20% {
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  30% {
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  40% {
    -moz-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  50% {
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  60% {
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  70% {
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  80% {
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  90% {
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  100% {
    -moz-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  20% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  30% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  40% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  50% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  60% {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  70% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  80% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  90% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  100% {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@keyframes loading {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  10% {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  20% {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  30% {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  40% {
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  50% {
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  60% {
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  70% {
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  80% {
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  90% {
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
  100% {
    -moz-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-moz-keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes wave {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  10% {
    -moz-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  20% {
    -moz-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  30% {
    -moz-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  40% {
    -moz-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  50% {
    -moz-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  60% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  70% {
    -moz-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  80% {
    -moz-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  90% {
    -moz-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -moz-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  100% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@-webkit-keyframes wave {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  20% {
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  30% {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  40% {
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  50% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  60% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  70% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  80% {
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  90% {
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes wave {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  10% {
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  20% {
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  30% {
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
  40% {
    -moz-transform: rotate(25deg);
    -ms-transform: rotate(25deg);
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
  }
  50% {
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  60% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  70% {
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
  }
  80% {
    -moz-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  90% {
    -moz-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
  }
  100% {
    -moz-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
  }
  100% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.formError {
  display: block;
  position: absolute;
  top: 300px;
  left: 300px;
  cursor: pointer;
  text-align: left;
  z-index: 990;
}
.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
}
.formError .formErrorArrow {
  z-index: 996;
}
.formError .formErrorArrow .line10 {
  width: 13px;
  border: none;
}
.formError .formErrorArrow .line9 {
  width: 11px;
  border: none;
}
.formError .formErrorArrow .line8 {
  width: 11px;
}
.formError .formErrorArrow .line7 {
  width: 9px;
}
.formError .formErrorArrow .line6 {
  width: 7px;
}
.formError .formErrorArrow .line5 {
  width: 5px;
}
.formError .formErrorArrow .line4 {
  width: 3px;
}
.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd;
}
.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd;
}
.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd;
}
.formError .formErrorArrowBottom {
  margin: 0px 0 0 12px;
  top: 2px;
}
.formError .formErrorArrow div {
  display: block;
  height: 1px;
  margin: 0 auto;
  font-size: 0;
  line-height: 0;
  background: #ee0101;
}
.formError .formErrorContent {
  width: 100%;
  min-width: 120px;
  padding: 4px 10px;
  position: relative;
  font-size: 11px;
  color: #fff;
  background: #ee0101;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  z-index: 991;
}
.formError.inline .formErrorContent {
  border: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.ui-dialog .formError {
  z-index: 5000;
}
.ui-dialog .formError .formErrorContent {
  z-index: 5001;
}
.ui-dialog .formError .formErrorArrow {
  z-index: 5006;
}

.inputContainer {
  position: relative;
  float: left;
}

.ajaxSubmit {
  display: none;
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
}

.greenPopup .formErrorContent {
  background: #33be40;
}

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative;
}

body[dir='rtl'] .formError .formErrorArrow, body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0;
}

.greenPopup .formErrorArrow div {
  background: #33be40;
}

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF;
}

/*インライン用*/
.inline {
  position: relative;
  margin: 10px auto;
  max-width: 700px;
  background: #fff;
  padding: 20px;
}
.inline table {
  width: 100%;
  border-collapse: collapse;
}
.inline table th, .inline table td {
  font-weight: normal;
  padding: 15px;
  vertical-align: top;
  border-collapse: collapse;
  border-bottom: 1px solid  #f0f0f0;
}
.inline table td {
  width: 75%;
}
.inline table td a {
  color: #009dff;
  text-decoration: underline;
}
.inline table td a:hover {
  text-decoration: none;
}
.inline li {
  padding-left: 1em;
  position: relative;
}
.inline li:before {
  display: block;
  content: "・";
  width: 1em;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 414px) {
  .inline table {
    width: 100%;
    border-collapse: collapse;
  }
  .inline table tr {
    display: block;
    margin-bottom: 1.5em;
  }
  .inline table th, .inline table td {
    display: list-item;
    width: 100%;
    padding: 10px;
    border: none;
    list-style: none;
  }
  .inline table th {
    text-align: left;
  }
  .inline table td {
    color: #009dff;
    background: #f6f6f6;
  }
}
/*表示のエフェクト*/
.mfp-fade.mfp-bg {
  opacity: 0.001;
  /* Chrome opacity transition bug */
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -moz-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #0b0b0b;
  overflow: hidden;
  opacity: 0.8;
  filter: alpha(opacity=80);
  z-index: 1042;
}

.mfp-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1043;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 8px;
  text-align: center;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  display: inline-block;
  content: '';
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  width: auto;
  margin-top: -0.8em;
  position: absolute;
  top: 50%;
  right: 8px;
  bottom: auto;
  left: 8px;
  text-align: center;
  color: #ccc;
  z-index: 1044;
}
.mfp-preloader a {
  color: #ccc;
}
.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  padding: 0 0 18px 10px;
  line-height: 44px;
  position: absolute;
  top: 0;
  right: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  width: 100%;
  padding-right: 6px;
  right: -6px;
  text-align: right;
  color: #fff;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
}

.mfp-arrow {
  width: 90px;
  height: 110px;
  margin: 0;
  margin-top: -55px;
  padding: 0;
  position: absolute;
  top: 50%;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

#slider {
  position: relative;
  background: #f6f6f6;
}
#slider .slider {
  width: 100%;
  position: relative;
}
#slider .slider li {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#slider .read {
  width: 100%;
  padding: 0 120px;
  margin-bottom: -120px;
  min-height: 540px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: normal;
  align-items: normal;
  -webkit-flex-wrap: no-wrap;
  flex-wrap: no-wrap;
  -webkit-flex-flow: row-reverse;
  flex-flow: row-reverse;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  #slider .read {
    display: block;
    min-height: auto;
    margin-bottom: 0;
    padding: 50px;
    -webkit-flex-flow: row;
    flex-flow: row;
    position: relative;
    bottom: auto;
    left: auto;
  }
}
@media screen and (max-width: 414px) {
  #slider .read {
    padding: 30px;
  }
}
#slider .read h2, #slider .read p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  font-weight: 400;
  letter-spacing: .2em;
}
@media screen and (max-width: 768px) {
  #slider .read h2, #slider .read p {
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
}
#slider .read h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  line-height: 5rem;
  margin-left: 10px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #slider .read h2 {
    font-size: 2.6rem;
    line-height: 5rem;
  }
}
@media screen and (max-width: 768px) {
  #slider .read h2 {
    margin: 0 0 15px;
  }
}
@media screen and (max-width: 414px) {
  #slider .read h2 {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
#slider .read p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  line-height: 4rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #slider .read p {
    font-size: 1.6rem;
    line-height: 3rem;
  }
}
@media screen and (max-width: 414px) {
  #slider .read p {
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
  #slider .read p br {
    display: none;
  }
}
#slider .read span {
  padding: 10px 4px;
  color: #fff;
  background: #009dff;
}
@media screen and (max-width: 768px) {
  #slider .read span {
    padding: 0;
    color: #009dff;
    background-color: transparent;
  }
}
