/*! ibarakishokuhin

* since : 2021.2-
* ver.1.00
* last-update : 2021.2.1

 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  font-family: ten-mincho, serif;
  font-style: normal;
  font-weight: 400;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

a {
  transition-property: color;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
}

p {
  font-family: ten-mincho;
  letter-spacing: 3px;
}

.font-L {
  font-size: 1.3em;
}

.font-LL {
  font-size: 1.5em;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {

  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " ("attr(href) ")";
  }

  abbr[title]::after {
    content: " ("attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    font-family: ten-mincho, sans-serif;
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}

.tbl {
  width: 100%;
  font-family: ten-mincho, sans-serif;
  font-size: 1.35em;
  letter-spacing: 1.45;
  line-height: 1.75;
  color: #444;
  border-collapse: separate;
  border-spacing: 0;
}

table tr:first-child th {
  border-radius: 10px 0 0 0;
}

table tr:first-child td {
  border-radius: 0 10px 0 0;
}

table tr:last-child th {
  border-bottom: none;
  border-radius: 0 0 0 10px;
}

table tr:last-child td {
  border-bottom: none;
  border-radius: 0 0 10px 0;
}

table th {
  background: #fdc;
  padding: 1em;
  border-left: #ccc 1px solid;
  border-right: #ccc 1px solid;
  border-top: #ccc 1px solid;
}

table td {
  background: #fff;
  padding: 1em;
  border-right: #ccc 1px solid;
  border-top: #ccc 1px solid;
}

table tr:last-child td, table tr:last-child th {
  border-bottom: #ccc 1px solid;
}

table tr:nth-child(odd) td {
  background: #fafafa;
}

section {
  padding: 0 0 0 0;
  margin: 0 auto;
}

.container {
  padding: 0;
}

.row {
  padding: 30px 0;
  margin: 0;
}

.f-l {
  float: left;
}

.f-r {
  float: right;
}

.ttl-white {
  color: #fff;
}

.ttl-black {
  color: #000;
}

.wrap {
  width: 100%;
  padding: 3em 0 5em 0;
  margin: 0;
}

.bg-gray {
  background: #505044;
}

.bg-black {
  background: #000;
}

.bg-white {
  background: #fff;
}

.bg-green {
  background: #5F910F;
}

.bg-contents {
  background: #e8e2d3;
}

.img100 {
  width: 100%;
  height: auto;
}

.img90 {
  width: 90%;
  height: auto;
}

.img80 {
  width: 80%;
  height: auto;
}

.img80 {
  width: 70%;
  height: auto;
}

.img60 {
  width: 60%;
  height: auto;
}

.img50 {
  width: 50%;
  height: auto;
}

.img40 {
  width: 40%;
  height: auto;
}

.img30 {
  width: 30%;
  height: auto;
}

.img20 {
  width: 20%;
  height: auto;
}

.img10 {
  width: 10%;
  height: auto;
}

@media(max-width:481px) {

  .img100,
  .img90,
  .img80,
  .img70,
  .img60,
  .img50,
  .img40 {
    width: 100%;
    height: auto;
  }

  .img30 {
    width: 30%;
    height: auto;
  }
}

.mt-0 {
  margin-top: 0;
}

.mt-10 {
  margin-top: 1em;
}

.mt-20 {
  margin-top: 2em;
}

.mt-30 {
  margin-top: 3em;
}

.mt-40 {
  margin-top: 4em;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 1em;
}

.mb-20 {
  margin-bottom: 2em;
}

.mb-30 {
  margin-bottom: 3em;
}

.mb-40 {
  margin-bottom: 4em;
}

.pt-10 {
  padding-top: 1em;
}

.pt-20 {
  padding-top: 2em;
}

.pt-30 {
  padding-top: 3em;
}

.pt-40 {
  padding-top: 4em;
}

.pb-10 {
  padding-bottom: 1em;
}

.pb-20 {
  padding-bottom: 2em;
}

.pb-30 {
  padding-bottom: 3em;
}

.pb-40 {
  padding-bottom: 4em;
}

.pl-10 {
  padding-left: 1em;
}

.pl-20 {
  padding-left: 2em;
}

.pr-10 {
  padding-right: 1em;
}

.pr-20 {
  padding-right: 2em;
}

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

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

.btn {
  background: #95b309;
  padding: 18px 24px;
  color: #fff;
  letter-spacing: 3px;
  text-decoration: none;
  font-family: ten-mincho, sans-serif;
  font-weight: 700;
  font-size: 1.3em;
}

.btn-lineup {
  width: 100%;
}

.btn:hover {
  background: #6d7f10;
}

.btn-red {
  background: #900;
}

.btn-red:hover {
  background: #600;
  color: #fff;
}

/************************************************* background  */
.bg-lightgray {
  background: #f3f0e8;
}

.bg-pink {
  background: #fcd6e2;
}

.bg-sky {
  background: #E4F4F4;
}

/************************************************* header  */
header {
  height: 80px;
  position: relative;
  z-index: 9999;
}

.header1 {
  height: 3.5em;
}

.contentsnav {
  background: rgba(104, 191, 72, 0.3);
}

/*@media(max-height:800px) {*/
.header2 {
  background: rgba(78, 180, 40, 1);
  color: #fff;
  /*background: linear-gradient(to bottom, rgba(54, 180, 192, 0.9), rgba(45, 164, 51, 0.2));*/
  height: 4em;
}

/*}*/
.header3 {
  background: rgba(80, 80, 68, 0.6);
}

header .inner {
  display: flex;
  justify-content: flex-start;
}

header h1 {
  margin: 15px 0 0 0;
  padding: 0;
}

.logo {
  background: rgba(255, 255, 255, 0.7);
  height: 100vh;
  margin: 0;
  width: 100px;
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
}

.logo-sp {
  display: none;
}

.logo-sp img {
  max-width: 200px;
  margin-top: 1.5em;
  margin-left: 1em;
}

.headlogo {
  width: auto;
  height: 300px;
  margin: 0;
  padding: 0;
}

.headlogo2 {
  width: auto;
  height: 200px;
  margin: 0 0 2em 0;
  padding: 0;
}

@media(max-width:480px) {
  .logo {
    background: none;
    height: auto;
    display: none;
  }

  .logo-sp {
    display: block;
  }
}

/************************************************* footer  */
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 20px;
}

#pagetop a {
  background-color: #999;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 20px 20px;
}

#pagetop a:hover {
  background-color: #666;
  text-decoration: none;
}

footer {
  font-family: ten-mincho;
  background: #3a4965;
  color: #fff;
}

footer a {
  color: #fff;
}

footer .footer-logo {
  max-width: 260px;
  height: auto;
}

footer ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

footer li {
  margin: 1em 1.5em 1em 0;
}

@media(max-width:480px) {
  footer ul {
    display: block;
  }
}

footer li a {
  color: #fff;
  text-decoration: none;
}

footer li a:hover {
  color: #95b309;
  text-decoration: underline;
}

footer copy {
  font-size: 0.8em;
}

.btn-oubo {
  display: flex;
  justify-content: center;
  list-style: none;
}

.btn-oubo li {
  margin: 1em;
}

a.btn-mof {
  color: #4eb428;
  font-family: ten-mincho;
  font-size: 1.35em;
  letter-spacing: 3px;
  padding: 0.7em;
  border-radius: 2em;
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  box-shadow: 10px 10px 30px #d9d9d9,
    -10px -10px 30px #ddd;
}

.btn-mof .bi {
  font-size: 2em;
  padding: 0;
  margin: 0 0 0 10px;
  vertical-align: center;
}

@media(max-width:480px) {
  a.btn-mof {
    font-size: 1.25em;
    letter-spacing: 3px;
    padding: 0.65em;
  }

  .btn-mof .bi {
    font-size: 2em;
    padding: 0;
    margin: 0 0 0 10px;
    vertical-align: center;
  }
}

@keyframes fadeIn {
  0% {
    color: #4eb428;
    background: linear-gradient(145deg, #ffffff, #e6e6e6);
    box-shadow: 10px 10px 30px #d9d9d9,
      -10px -10px 30px #ddd;
  }

  100% {
    color: #5da2c3;
    background: linear-gradient(145deg, #e6e6e6, #ffffff);
    box-shadow: 10px 10px 30px #d9d9d9,
      -10px -10px 30px #ffffff;
  }
}

a.btn-mof:hover {
  animation-name: fadeIn;
  animation-duration: 300ms;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.btn-lg {
  width: 100%;
}

/************************************************* navigation  */
.nav {
  width: 100%;
}

.nav ul {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

.nav li {
  margin: 1em 1.5em;
}

.nav li a {
  font-family: ten-mincho, sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
}

.nav li a span {
  font-size: 11px;
}

.nav li a:hover {
  color: #6F4A29;
  /* color: rgba(0, 142, 67, 1); */
}

@media(max-width:800px) {
  .nav {
    display: none;
  }

  .nav ul {
    display: block;
  }
}

/************************************************* カルーセル  */
.slider {
  position: relative;
}

#slider {
  position: relative;
  overflow: hidden;
  width: 100% !important;
}

#slider ul {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  list-style: none;
}

#slider ul li {
  position: relative;
  display: block;
  float: left;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  text-align: center;
}

#slider ul li .slide {
  background-size: cover;
  height: 100vh;
}

#slider ul li .slide:hover {
  /*  opacity: 0.7;*/
}

@media(max-width:768px) {
  #slider ul {
    height: 40vh;
  }

  #slider ul li {
    height: 40vh;
  }

  #slider ul li .slide {
    background-size: cover;
    height: 40vh;
  }
}

button.control_prev,
button.control_next {
  position: absolute;
  top: 50%;
  z-index: 10;
  display: block;
  border: none;
  width: 2em;
  height: 2em;
  line-height: 1.9em;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 2rem;
  opacity: 0.8;
  cursor: pointer;
  border-radius: 50%;
  transform: translateY(-50%);
}

button.control_prev:focus,
button.control_next:focus {
  outline: none;
  border: 1px rgba(255, 255, 255, 0.5) solid;
}

button.control_prev:hover,
button.control_next:hover {
  opacity: 1;
  -webkit-transition: all 0.2s ease;
}

button.control_prev {
  left: 2rem;
}

button.control_next {
  right: 2rem;
}

@media(max-width:480px) {

  button.control_prev,
  button.control_next {
    width: 1em;
    height: 1em;
    font-size: 1rem;
  }

  button.control_prev {
    left: 1rem;
  }

  button.control_next {
    right: 1rem;
  }
}

.progress {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  height: 0.5rem;
  width: 100%;
  bottom: 0;
  border-top: 1px rgba(0, 0, 0, 0.15) solid;
}

.progress .bar {
  height: 100%;
  width: 0%;
  background: #fff;
}

.teaser {
  position: absolute;
  top: 50%;
  text-align: center;
  width: 100%;
  color: #fff;
  transform: translateY(-50%);
}

.teaser h2 {
  font-size: 5em;
  text-transform: uppercase;
  line-height: 1.5em;
  color: #fff;
}

.teaser p {
  font-size: 1.3em;
  line-height: 1.3em;
  border-top: 2px #fff solid;
  width: 33%;
  min-width: 25rem;
  margin: 0rem auto;
  padding: 1.5rem 0;
}

.teaser h3 {
  border-bottom: 2px #fff solid;
  width: 33%;
  padding: 1.5rem 0;
  margin: 0rem auto;
  min-width: 25rem;
}

.teaser img {
  width: 70vh;
  height: auto;
}

@media(max-width:768px) {
  .teaser img {
    width: 50%;
    height: auto;
  }
}

.teaser a {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.bg-video-wrap {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: -80px;
  z-index: 1;
}

.bg-video-wrap2 {
  background: #ccc;
}

video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-contents-head {
  overflow: hidden;
  /*margin-top: -80px;*/
  z-index: 1;
  background: #ccc;
  height: 100vh;
  width: 100%;
  margin-bottom: -3.5em;
}

@media(max-width:480px) {
  .bg-video-wrap {
    width: 100%;
    height: 60vh;
    overflow: hidden;
    /*margin-top: -80px;*/
    z-index: 1;
  }

  .bg-video-wrap2 {
    background: #a72c1e;
  }

  video {
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
}

.overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  margin: 0 auto;
  z-index: 2;
  text-align: center;
  /*background: linear-gradient(to bottom right, rgba(54, 180, 192, 1), rgba(243, 164, 154, 0.7), rgba(45, 164, 51, 1));*/
}

.overlay-contents-head {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  margin: 0 auto;
  z-index: 2;
  text-align: center;
  /*background: linear-gradient(to bottom right, rgba(54, 180, 192, 1), rgba(243, 164, 154, 0.7), rgba(45, 164, 51, 1));*/
}

.movetext {
  opacity: 0;
}

.movetext span {
  opacity: 0;
}

.contents-ttl {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ttls div {
  margin: 0 auto;
  margin-bottom: 1em;
}

.ttls h2,
.ttls h3 {
  padding: 0;
  margin: 0;
}

.contents-ttl .ttls h2, .contents-ttl .ttls h3 {
  color: #fff;
  text-shadow: rgba(0, 0, 0, 0.85) 0px 5px 15px;
}

/************************************************* img-circle  */
.img-circle {
  border-radius: 50%;
  width: 100%;
  height: auto;
}

.radius-1 {
  border-radius: 1em;
}

/************************************************* message  */
.message-ttl {
  height: auto;
}

.message {
  text-align: center;
}

.message p {
  text-align: left;
  margin: 0 auto;
  padding: 1em 0;
  line-height: 2;
  font-size: 1em;
  letter-spacing: 3px;
  font-family: ten-mincho, sans-serif;
  font-weight: 400;
}

.marker {
  background: linear-gradient(transparent 75%, #bfff7f 75%);
  font-weight: 700;
}

/************************************************* ordercut  */
.ordercut .col-md-4 img {
  background: #fff;
  padding: 6px;
  border-right: #ccc 1px solid;
  border-bottom: #ccc 1px solid;
  margin-bottom: 8px;
}

/************************************************* interview  */
.interview {
  /*background: #ffba84;*/
  background: #505044;
  color: #fff;
  font-family: ten-mincho, sans-serif;
  font-weight: 700;
}

.interview h3 span {
  font-size: 0.8em;
}

.interview .c-10 p {
  font-weight: 200;
  line-height: 1.8;
  letter-spacing: 0.2em;
}

.ttl-h2-script {
  font-family: grafolita-script, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3em;
  padding: 8px;
  border-radius: 1em;
  color: rgba(78, 180, 40, 1);
}

.ttl-h2 {
  font-family: ten-mincho, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 3em;
  padding: 8px;
  border-radius: 1em;
  color: rgba(78, 180, 40, 1);
}

.ttl-h3 {
  font-family: ten-mincho, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.5em;
  color: rgba(78, 180, 40, 1);
}

.ttl-h3 i {
  font-size: 2em;
  font-style: normal;
}

@media(max-width:480px) {
  .ttl-h2-script {
    font-size: 1.5em;
  }

  .ttl-h2 {
    font-size: 2em;
    padding: 8px;
  }

  .ttl-h3 {
    font-size: 1.35em;
  }

  .ttl-h3 i {
    font-size: 1.6em;
    font-style: normal;
  }
}

.interview a {
  color: #7cc900;
}

.interview a:hover {
  color: #31c600;
}

/************************************************* graph  */
.graph {
  background: #96b762;
  color: #fff;
  font-family: ten-mincho, sans-serif;
  font-weight: 700;
}

/************************************************* recruit  */
.recruit {
  margin: 0;
}

.recruitbtn1 {
  background: #7cc900;
  padding: 1em;
  width: 100%;
  height: 300px;
}

.recruitbtn1:hover {
  background: #578c01;
}

.recruitbtn2 {
  background: #31c600;
  padding: 1em;
  width: 100%;
  height: 300px;
}

.recruitbtn2:hover {
  background: #578c01;
}

.recruitbtn3 {
  background: #dfb1e0;
  padding: 1em;
  width: 100%;
  height: 300px;
}

.recruitbtn3:hover {
  background: #bf7ec1;
}

.recruit a {
  font-family: ten-mincho, sans-serif;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.recruitbtn1 h3,
.recruitbtn2 h3,
.recruitbtn3 h3 {
  font-size: 3em;
  font-weight: 900;
  padding: 0 0 20px 0;
  margin: 0;
}

.recruitbtn1 p,
.recruitbtn2 p,
.recruitbtn3 p {
  font-size: 1.3em;
  font-weight: 900;
  padding: 0 0 20px 0;
  margin: 0;
}

/************************************************* profile  */
.profile {
  background: #000;
  color: #96b762;
}

.dltbl {
  width: 100%;
  border-radius: 4px;
  margin: 10px;
  padding: 0px;
  background-color: #333;
}

.row1 {
  width: 20%;
}

.row2 {
  width: 70%;
}

dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
  background: #333;
  margin: 0;

  &:last-child {
    border-bottom: none;
  }
}

dt {
  width: 20%;
  padding: 10px;
  color: #fff;
  font-weight: 800;
  border-bottom: #666 1px dotted;
}

dt:last-child {
  border-bottom: none;
}

dd {
  width: 70%;
  padding: 10px;
  margin: 0;
  border-bottom: #666 1px dotted;
}

dd:last-child {
  border-bottom: none;
}

@media(max-width:800px) {
  .dltbl {
    width: 100%;
  }

  dl {
    display: block;
  }

  dt,
  dd {
    width: 100%;
    border-bottom: none;
  }

  dt {
    text-align: center;
    background: #999;
  }
}

/************************************************* carrer-path  */
.carrer {
  background: linear-gradient(to bottom right, rgba(54, 180, 192, 1), rgba(243, 164, 154, 1), rgba(45, 164, 51, 1));
}

.carrer2 {
  background: linear-gradient(to bottom right, rgba(47, 171, 226, 1), rgba(122, 201, 67, 1), rgba(45, 164, 51, 1));
}

.list-boards {
  padding: 1em;
  background: #fff;
  color: #999;
  border-radius: 0.5em;
}

ul.list-boards {
  padding-left: 2em;
  margin: 0;
}

ul.list-boards li {
  padding-left: 0.5em;
  margin: 1em 0;
  border-bottom: #999 2px dotted;
}

dl.carrer-dl {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 237, 127, 1));
  padding: 1em;
  color: #333;
  border-radius: 1em;
}

dl.carrer-dl dt {
  color: #666;
  border-bottom: none;
}

dl.carrer-dl dd {
  line-height: 1.75;
  border-bottom: none;
}

dl.carrer-dl dd strong {
  font-size: 1.35em;
  color: brown;
}

/************************************************* carrer-path  */
.qanda {
  background: #d9c4b8;
}

.qanda .ttl,
.qanda .font-L {
  color: #fff;
}

.qanda .ttl-h2 {
  color: #59261b;
}

.qanda .ttl-h2 strong {
  font-size: 1.5em;
  margin-right: 0.5em;
  color: #754c24;
}

.qanda .waku {
  background: url(../img/answer-icon.png) bottom left no-repeat;
  padding: 1em;
  border-radius: 0.5em;
  color: #59261b;
  font-weight: 700;
}

.qanda .fukidashi {
  background: #bf988a;
  margin-left: 90px;
  margin-bottom: 0;
  padding: 1em;
  border-radius: 0.75em;
}

.fukidashi:before {
  content: "";
  position: absolute;
  top: 70%;
  left: 92px;
  border: 15px solid transparent;
  border-right: 15px solid #bf988a;
}

.qanda .waku p {
  text-align: left;
}

/************************************************* font-size  */
.color-bk {
  color: #333;
}

@media(max-width: 640px) {
  h2.ttl {
    letter-spacing: 6px;
  }

  h2.ttl {
    font-size: 32px;
  }

  .ttl-h2,
  h2 {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.5;
  }

  .ttl-h3,
  h3.ttl,
  h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }

  .font-L {
    font-size: 1em;
    font-weight: 400;
  }

  canvas {}
}

/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn {
  position: absolute;
  width: 30px;
  height: 27px;
  cursor: pointer;
  top: 21px;
  right: 30px;
  z-index: 998;
}

.menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 0px;
}

.menu-btn,
.menu-btn span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}

.menu-btn span:nth-of-type(1) {
  top: 0;
}

.menu-btn span:nth-of-type(2) {
  top: 12px;
}

.menu-btn span:nth-of-type(3) {
  bottom: 0;
}

.menu-btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(45deg);
  transform: translateY(12px) rotate(45deg);
  background-color: crimson;
}

.menu-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(-45deg);
  transform: translateY(-12px) rotate(-45deg);
  background-color: crimson;
}

/*----------------------------navigation */
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #4eb428;
}

.menu img {
  max-width: 180px;
  height: auto;
  margin-bottom: 0.5em;
}

.menu__item {
  font-family: ten-mincho;
  width: 100%;
  height: auto;
  padding: 0.7em 0.5em;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.menu__item a {
  color: #fff;
  font-size: 1.0em;
  line-height: 0.8;
  letter-spacing: 0.2em;
}

.menu__item a span {
  font-size: 0.7em;
  letter-spacing: 0.4em;
}

.menu__item a:hover {
  color: #7fbc64;
}

.menu {
  pointer-events: none;
  opacity: 0;
  transform-origin: center;
  transform: scale(.5);
  transition: all .3s ease;
}

.menu li {
  list-style: none;
  line-height: 3em;
}

.menu.is-active {
  pointer-events: auto;
  opacity: 1;
  transform: scale(1.2);
  z-index: 997;
}

@media screen and (min-width:780px) {
  .menu-btn {
    display: none;
  }
}

/************************************** お問い合わせフォーム */
.inquiry {
  width: 100%;
}

input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  width: 100%;
  height: 45px;
  margin-bottom: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 3px;
  background-color: #eff1f5;
  box-shadow: none;
  color: #5c6b80;
  font-size: 1em;
  vertical-align: middle;
  line-height: 45px;
  transition: background-color 0.24s ease-in-out;
}

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
  padding: 0.5em;
  overflow: auto;
}

@media(max-width:500px) {

  .inquiry td,
  .inquiry th {
    display: block !important;
    width: 100% !important;
    border-top: none !important;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important
  }

  .inquiry tr:first-child th {
    border-top: 1px solid #d7d7d7 !important
  }

  .inquiry .any,
  .inquiry .haveto {
    font-size: 10px
  }
}

.inquiry th {
  text-align: left;
  font-size: 14px;
  color: #444;
  padding-right: 5px;
  width: 30%;
  background: #f7f7f7;
  border: solid 1px #d7d7d7
}

.inquiry td {
  font-size: 13px;
  border: solid 1px #d7d7d7
}

.entry-content .inquiry tr,
.entry-content table {
  border: solid 1px #d7d7d7
}

.haveto {
  font-size: 7px;
  padding: 5px;
  background: #ff9393;
  color: #fff;
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  bottom: 1px
}

.any {
  font-size: 7px;
  padding: 5px;
  background: #93c9ff;
  color: #fff;
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  bottom: 1px
}

.verticallist .wpcf7-list-item {
  display: block
}

#formbtn {
  display: block;
  padding: 15px;
  width: 350px;
  background: #ffaa56;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 2px;
  margin: 25px auto 0
}

#formbtn:hover {
  background: #fff;
  color: #ffaa56;
  border: 2px solid #ffaa56
}

th {
  font-weight: 700;
  text-transform: uppercase;
  padding: 13px
}

td {
  border-top: 1px solid #ededed;
  padding: 12px
}

input,
select,
textarea {
  border: 1px solid #dfdfdf;
  letter-spacing: 1px;
  margin: 0;
  max-width: 100%;
  resize: none
}

dl.info {
  font-family: ten-mincho;
  padding: 2em 2em 0.5em 2em;
  margin: 0 0.5em 2em 0.5em;
  display: block;
  background: #fff;
  border-radius: 1em;
  letter-spacing: 3px;
}

.info dt {
  padding: 0 0 0.5em 0;
  border: none;
  color: #666;
  width: 100%;
}

.info dt {
  font-size: 1.35rem;
  line-height: 1.2rem;
}

.info dt span {
  font-size: 0.8rem;
  margin-right: 1em;
}

.info dd {
  width: 100%;
  padding-bottom: 2em;
}