@charset "UTF-8";
/* Scss Document */
@import "normalize.css";
/* Scss Document */
/*=======================================================
    reset
========================================================*/
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
}

/*=======================================================
    font
========================================================*/
.yu-mincho {
  font-family: "Yu Mincho", "YuMincho";
}

.font_en {
  font-family: Copperplate, Copperplate Gothic Light, fantasy;
}

/*=======================================================

    ブレークポイント
========================================================*/
/*-------------- calc mixin ここから ----------------*/
/*-------------- calc mixin ここまで ----------------*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
/*=======================================================

    common

========================================================*/
html {
  font-size: 63.5%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 56.5%;
  }
}

body {
  font-size: 1.6rem;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
}
a {
  transition: all 0.3s ease 0s;
  color: #464646;
}
a:hover {
  color: #fcdb12;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (max-width: 1100px) {
  .pc02 {
    display: none !important;
  }
}

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

@media screen and (min-width: 1101px) {
  .sp02 {
    display: none !important;
  }
}

.clearfix {
  *zoom: 1;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.no_link {
  opacity: 0.3;
  pointer-events: none;
}

.mincho {
  font-family: "Zen Old Mincho", serif;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a img {
  transition: all 0.3s ease 0s;
}
a img:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
.link {
  color: #000;
  text-decoration: none;
}

.mrgT5 {
  margin-top: 5px;
}

.mrgT10 {
  margin-top: 10px;
}

.mrgT15 {
  margin-top: 15px;
}

.mrgT20 {
  margin-top: 20px;
}

.mrgT25 {
  margin-top: 25px;
}

.mrgT30 {
  margin-top: 30px;
}

.mrgT40 {
  margin-top: 40px;
}

.mrgT50 {
  margin-top: 50px;
}

.mrgT60 {
  margin-top: 60px;
}

.mrgT70 {
  margin-top: 70px;
}

.mrgB5 {
  margin-bottom: 5px;
}

.mrgB10 {
  margin-bottom: 10px;
}

.mrgB15 {
  margin-bottom: 15px;
}

.mrgB20 {
  margin-bottom: 20px;
}

.mrgB25 {
  margin-bottom: 25px;
}

.mrgB30 {
  margin-bottom: 30px;
}

.mrgB40 {
  margin-bottom: 40px;
}

.mrgB50 {
  margin-bottom: 50px;
}

.mrgB60 {
  margin-bottom: 60px;
}

.mrgB70 {
  margin-bottom: 70px;
}

.floatL {
  float: left;
}

.floatR {
  float: right;
}

.fontBold {
  font-weight: bold;
}

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

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

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

.f12 {
  font-size: 1.2rem !important;
}

.f14 {
  font-size: 1.4rem;
}

.f16 {
  font-size: 1.6rem;
}

.f18 {
  font-size: 1.8rem;
}

.red {
  color: #ed1e79;
}

.marker {
  background: linear-gradient(transparent 60%, #ffe800 60%);
  font-weight: bold;
}

/*=======================================================

    header

========================================================*/
@media screen and (max-width: 767px) {
  #container {
    overflow: hidden;
  }
}
#container header {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #container header {
    padding: 5px;
  }
}
#container header.is-fixed {
  z-index: 9999;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  animation: nyuru 0.5s;
}
@keyframes nyuru {
  0% {
    margin-top: -158px;
  }
  100% {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  @keyframes nyuru {
    0% {
      margin-top: -78px;
    }
    100% {
      margin-top: 0;
    }
  }
}
#container header .head_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  padding: 20px 30px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #container header .head_inner {
    padding: 10px;
  }
}
#container header .head_inner nav .gnav {
  display: flex;
  align-items: center;
}
#container header .head_inner nav .gnav ul {
  display: flex;
  align-items: center;
}
#container header .head_inner nav .gnav ul li {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #000;
  font-size: 1.4rem;
}
#container header .head_inner nav .gnav ul li:last-child {
  border: 0;
  padding-right: 0;
}
#container .menu-trigger,
#container .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  cursor: pointer;
  color: #fff;
}
#container .menu-trigger {
  width: 50px;
  height: 50px;
  float: right;
  position: fixed;
  top: 1%;
  right: 1%;
  z-index: 9999;
  border-radius: 5px;
  background: #fcdb12;
  transform: scale(0.8);
}
#container .menu-trigger span {
  width: 30px;
  height: 3px;
  margin: auto auto auto 10px;
  position: absolute;
  background-color: #fff;
}
#container .menu-trigger span:nth-of-type(1) {
  top: 15px;
}
#container .menu-trigger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
#container .menu-trigger span:nth-of-type(3) {
  bottom: 15px;
}
#container .menu-trigger {
  padding-right: 20px;
}
#container .menu-trigger.active span {
  background-color: #fff;
}
#container .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
#container .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
#container .menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
}
#container #overlay {
  width: 100%;
  height: 100vh;
  margin: auto;
  padding-top: 10%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
  display: none;
  text-align: center;
}
#container #overlay .telnum {
  margin-top: 20px;
  font-size: 2.5rem;
  font-weight: 500;
}
#container #overlay .telnum span {
  font-size: 1.8rem;
}
#container #overlay ul {
  width: 100%;
  margin: 10px 0;
}
#container #overlay ul li {
  margin: 25px 15px !important;
  text-align: center;
  line-height: 1.6;
  border: 0;
}
#container #overlay ul li span {
  display: block;
  font-size: 1.3rem;
}
#container #overlay ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #333;
}
#container footer {
  background: #fde971;
  border-top: 2px solid #000;
}
#container footer .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #container footer .inner {
    padding: 20px 0;
  }
}
#container footer .inner nav {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #464646;
  width: 100%;
}
#container footer .inner nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #container footer .inner nav ul {
    display: block;
  }
}
#container footer .inner nav ul li {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #000;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  #container footer .inner nav ul li {
    text-align: center;
    margin: 0;
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid #000;
  }
}
#container footer .inner nav ul li:last-child {
  border: 0;
  padding-right: 0;
}
#container footer .inner nav .btn_contact {
  text-align: right;
}
@media screen and (max-width: 767px) {
  #container footer .inner nav .btn_contact {
    text-align: center;
  }
}
#container footer .inner .info {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #container footer .inner .info {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #container footer .inner .info .link {
    margin-top: 20px;
  }
}
#container footer .inner .info .link p {
  margin-bottom: 0.5em;
  font-size: 1.4rem;
}
#container footer .inner .info .link p a {
  color: #464646;
}
#container footer .inner .info .link .owner {
  text-decoration: underline;
}
#container footer address {
  text-align: center;
  font-size: 1.2rem;
  padding: 20px 0;
  background: #fff;
}

/*=======================================================

    共通レイアウト

========================================================*/
#container img {
  max-width: 100%;
  height: auto;
}
#container .btn_fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
}
#container .btn_fixed ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
#container .btn_fixed ul li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  #container .btn_fixed ul li {
    width: 100%;
  }
}
#container .flex {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #container .flex .box01 {
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  #container .flex .box02 {
    order: 2;
  }
}
#container .flex img {
  max-width: 100%;
}
#container .slick-arrow:before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
#container .slick-next:before {
  background: url(../img/btn_next.svg) !important;
  background-size: contain !important;
}
#container .slick-prev:before {
  background: url(../img/btn_prev.svg) !important;
  background-size: contain !important;
}
#container #content .pagenavi {
  text-align: center;
  margin: 50px 0 0;
}
#container #content .inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  #container #content .inner {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
}
#container #content section p {
  line-height: 1.8;
}
@media screen and (max-width: 1100px) {
  #container #content section .inner {
    padding: 15px 0;
    box-sizing: border-box;
  }
}
#container .toTop {
  position: fixed;
  right: 0;
  bottom: 0;
}

/*=======================================================

    TOPコンテンツ

========================================================*/
#top #container {
  overflow: hidden;
}
#top #container section h2 {
  line-height: 1.6;
}
#top #container section h2.style01 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #top #container section h2.style01 {
    font-size: 3rem;
  }
}
#top #container section h2.style01 span {
  font-size: 2rem;
  display: block;
  color: #f07d41;
}
#top #container section h2.style02 {
  text-align: center;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1em;
  background: #fff;
  border: 2px solid #000;
  padding: 10px;
  box-shadow: 6px 6px #000;
}
@media screen and (max-width: 767px) {
  #top #container section h2.style02 {
    font-size: 3rem;
  }
}
#top #container section h3 {
  line-height: 1.6;
}
#top #container section p {
  line-height: 2;
}
#top #container section .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  #top #container section .inner {
    padding: 50px 15px;
  }
}
#top #container .sec001 {
  background: url(../img/bg_sec01.png) no-repeat right top/50%;
  margin-top: -30px;
}
@media screen and (max-width: 767px) {
  #top #container .sec001 {
    background: url(../img/bg_sec01.png) no-repeat right top/cover;
  }
}
#top #container .sec001 .inner .box {
  margin-bottom: 80px;
}
#top #container .sec001 .inner .box h3 {
  font-size: 3.4rem;
  font-weight: 600;
  margin-bottom: 1em;
  color: #f07d41;
}
@media screen and (max-width: 767px) {
  #top #container .sec001 .inner .box h3 {
    font-size: 2.3rem;
  }
}
#top #container .sec001 .inner .box .flex {
  justify-content: space-between;
}
#top #container .sec001 .inner .box .flex .cont {
  width: calc(70% - 20px);
}
@media screen and (max-width: 767px) {
  #top #container .sec001 .inner .box .flex .cont {
    width: 100%;
    order: 2;
  }
}
#top #container .sec001 .inner .box .flex figure {
  width: calc(30% - 20px);
}
@media screen and (max-width: 767px) {
  #top #container .sec001 .inner .box .flex figure {
    width: 100%;
    margin-bottom: 30px;
    order: 1;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #top #container .sec001 .inner .box .flex figure img {
    width: 50%;
  }
}
#top #container .sec001 .inner .box .flex02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#top #container .sec001 .inner .box .flex02 .cont {
  width: calc(55% - 10px);
}
@media screen and (max-width: 767px) {
  #top #container .sec001 .inner .box .flex02 .cont {
    width: 100%;
    order: 2;
  }
}
#top #container .sec001 .inner .box .flex02 figure {
  width: calc(45% - 10px);
}
@media screen and (max-width: 767px) {
  #top #container .sec001 .inner .box .flex02 figure {
    width: 100%;
    margin-bottom: 30px;
    order: 1;
  }
}
#top #container .sec002 {
  background: #fded88;
  margin-top: -50px;
  padding-bottom: 100px;
}
#top #container .sec002 .slider01 {
  margin-top: -50px;
}
#top #container .sec002 .slick-slide {
  margin: 0 30px;
}
@media screen and (max-width: 767px) {
  #top #container .sec002 .slick-slide {
    margin: 0 10px;
  }
}
#top #container .sec002 .slick-dots {
  bottom: -40px;
}
#top #container .sec003 {
  position: relative;
  background: url(../img/bg_sec02.png) no-repeat center top/100%;
}
#top #container .sec003::before {
  content: url(../img/fig_sec02.svg);
  display: block;
  text-align: center;
}
#top #container .sec003 .inner .lead {
  margin-bottom: 50px;
  font-weight: 600;
  font-size: 2.2rem;
}
#top #container .sec003 .inner .box {
  margin-bottom: 80px;
}
#top #container .sec003 .inner .box.last {
  margin-bottom: 0;
}
#top #container .sec003 .inner .box h3 {
  font-weight: 600;
  color: #643f33;
  margin-bottom: 0.5em;
  font-size: 3.3rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #top #container .sec003 .inner .box h3 {
    font-size: 2.4rem;
  }
}
#top #container .sec003 .inner .box h3::before {
  content: url(../img/ico_house.svg);
  margin-right: 10px;
}
#top #container .sec003 .inner .box figure {
  padding: 50px;
  background: #fff;
  border: 2px solid #464646;
}
@media screen and (max-width: 767px) {
  #top #container .sec003 .inner .box figure {
    padding: 15px;
  }
}
#top #container .sec004 {
  padding-bottom: 100px;
}
#top #container .sec004 .slider02 {
  margin-top: -50px;
}
#top #container .sec004 .slick-slide {
  margin: 0 30px;
}
@media screen and (max-width: 767px) {
  #top #container .sec004 .slick-slide {
    margin: 0 10px;
  }
}
#top #container .sec004 .slick-dots {
  bottom: -40px;
}
#top #container .sec005 {
  position: relative;
  background: url(../img/bg_sec03.png) no-repeat right 10%/90%;
  background-color: #ececec;
}
#top #container .sec005::before {
  content: url(../img/fig_sec03.svg);
  display: block;
  text-align: center;
}
#top #container .sec005 .inner .lead {
  margin-bottom: 50px;
  font-weight: 600;
  font-size: 2.2rem;
}
#top #container .sec005 .inner .flex {
  justify-content: space-between;
}
#top #container .sec005 .inner .flex li {
  width: calc(50% - 30px);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #top #container .sec005 .inner .flex li {
    width: 100%;
  }
}
#top #container .sec005 .inner .btn {
  text-align: center;
}
#top #container .sec006 {
  background: #fcdb12;
}
#top #container .sec006 .inner .flow {
  padding-bottom: 50px;
  border-bottom: 4px solid #464646;
  margin-bottom: 50px;
}
#top #container .sec006 .inner .flow .ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #464646;
}
@media screen and (max-width: 767px) {
  #top #container .sec006 .inner .flow .ttl {
    display: block;
  }
}
#top #container .sec006 .inner .flow .ttl .fig {
  width: calc(55% - 20px);
}
@media screen and (max-width: 767px) {
  #top #container .sec006 .inner .flow .ttl .fig {
    width: 100%;
    margin-bottom: 20px;
  }
}
#top #container .sec006 .inner .flow .ttl h3 {
  width: calc(45% - 20px);
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  #top #container .sec006 .inner .flow .ttl h3 {
    width: 100%;
    font-size: 2.3rem;
  }
}
#top #container .sec006 .inner .flow .ttl h3 span {
  font-size: 2.4rem;
  margin-top: 0.5em;
  display: block;
}
@media screen and (max-width: 767px) {
  #top #container .sec006 .inner .flow .ttl h3 span {
    font-size: 1.6rem;
  }
}
#top #container .sec006 .inner .flow .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
#top #container .sec006 .inner .flow .list li {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #top #container .sec006 .inner .flow .list li {
    font-size: 1.6rem;
  }
}
#top #container .sec006 .inner .flow .catch {
  padding: 10px;
  text-align: center;
  background: #fff;
  color: #e66c22;
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #top #container .sec006 .inner .flow .catch {
    font-size: 2rem;
  }
}
#top #container .sec006 .inner h4 {
  text-align: center;
  color: #e66c22;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #top #container .sec006 .inner h4 {
    font-size: 2.6rem;
  }
}
#top #container .sec007 {
  position: relative;
  background-color: #fded88;
}
#top #container .sec007::before {
  content: url(../img/fig_sec04.svg);
  display: block;
  text-align: center;
}
#top #container .sec007 .inner .lead {
  margin-bottom: 50px;
  font-weight: 600;
  font-size: 2.2rem;
}
#top #container .sec007 .inner .flex {
  justify-content: space-between;
}
#top #container .sec007 .inner .flex li {
  width: calc(33.33333% - 20px);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #top #container .sec007 .inner .flex li {
    width: calc(50% - 10px);
  }
}
#top #container .sec007 .inner h3 {
  text-align: center;
  color: #e66c22;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #top #container .sec007 .inner h3 {
    font-size: 2.6rem;
  }
}
#top #container .sec008 {
  position: relative;
  background-color: #fef8d0;
}
#top #container .sec008::before {
  content: url(../img/fig_sec05.svg);
  display: block;
  text-align: center;
}
#top #container .sec008 .inner .lead {
  margin-bottom: 50px;
  font-weight: 600;
  font-size: 2.2rem;
}
#top #container .sec008 .inner .flex {
  justify-content: space-between;
}
#top #container .sec008 .inner .flex li {
  width: calc(33.33333% - 20px);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #top #container .sec008 .inner .flex li {
    width: calc(50% - 10px);
  }
}
#top #container .sec008 .inner .flex li:last-child {
  width: 100%;
}
#top #container .sec009 .inner .content {
  display: none;
  border: 3px solid #464646;
  padding: 50px;
  margin-top: -3px;
}
@media screen and (max-width: 767px) {
  #top #container .sec009 .inner .content {
    padding: 15px;
  }
}
#top #container .sec009 .inner .content .box {
  margin-bottom: 60px;
}
#top #container .sec009 .inner .content .box h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
#top #container .sec009 .inner .content .box table {
  width: 100%;
}
#top #container .sec009 .inner .content .box table tr th {
  padding: 15px;
  background: #c7c7c7;
  border-top: 2px solid #464646;
  border-bottom: 2px solid #464646;
  width: 25%;
  text-align: left;
  font-weight: 600;
  line-height: 1.6;
}
#top #container .sec009 .inner .content .box table tr td {
  padding: 15px;
  border-top: 2px solid #464646;
  border-bottom: 2px solid #464646;
  line-height: 1.6;
}
#top #container .sec009 .inner .content .box table tr td span {
  font-size: 1.3rem;
}
#top #container .sec009 .inner .content .box table tr td .table02 {
  table-layout: fixed;
  text-align: center;
  margin-bottom: 20px;
}
#top #container .sec009 .inner .content .box table tr td .table02 tr th {
  border: 1px solid #a2a2a2;
}
#top #container .sec009 .inner .content .box table tr td .table02 tr td {
  border: 1px solid #a2a2a2;
}
#top #container .sec009 .inner .content .box table tr td dl {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 20px 0;
}
@media screen and (max-width: 767px) {
  #top #container .sec009 .inner .content .box table tr td dl {
    display: block;
  }
}
#top #container .sec009 .inner .content .box table tr td dl dt {
  background: #fded88;
  border-radius: 5px;
  padding: 5px;
  margin-right: 20px;
  width: 27%;
  box-sizing: border-box;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #top #container .sec009 .inner .content .box table tr td dl dt {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
#top #container .sec009 .inner .content .box table tr td dl dd {
  line-height: 1.6;
  width: 71%;
}
@media screen and (max-width: 767px) {
  #top #container .sec009 .inner .content .box table tr td dl dd {
    width: 100%;
  }
}
#top #container .sec009 .inner .content.show {
  display: block;
}
#top #container .sec009 .inner .tab-container {
  display: flex;
}
#top #container .sec009 .inner .tab-container .tab {
  border-radius: 15px 15px 0 0;
  background: #fcdb12;
  font-size: 2.8rem;
  font-weight: 600;
  padding: 10px 30px;
  margin-right: 10px;
  border-top: 3px solid #464646;
  border-bottom: 3px solid #464646;
  border-right: 3px solid #464646;
  border-left: 3px solid #464646;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #top #container .sec009 .inner .tab-container .tab {
    font-size: 1.6rem;
    padding: 10px 15px;
  }
}
#top #container .sec009 .inner .tab-container .tab.active {
  background: #fff;
  border-bottom: 0;
}
#top #container .sec009 .inner .btn {
  text-align: center;
}
#top #container .sec010 {
  background: url(../img/bg_sec06.png) no-repeat center bottom/cover;
}
#top #container .sec010 .inner .lead {
  margin-bottom: 50px;
  font-weight: 600;
  font-size: 2.2rem;
}
#top #container .sec010 .inner .flex {
  justify-content: space-between;
}
#top #container .sec010 .inner .flex li {
  width: calc(33.33333% - 20px);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #top #container .sec010 .inner .flex li {
    width: calc(50% - 10px);
  }
}
#top #container .sec011 .inner .lead {
  margin-bottom: -50px;
  font-weight: 600;
  font-size: 2.2rem;
}
#top #container .sec011 .btn {
  text-align: center;
  margin: 50px 0 100px;
}
@media screen and (max-width: 767px) {
  #top #container .sec011 .btn {
    padding: 0 15px;
  }
}

/*=======================================================

    下層

========================================================*/
#local #container .title {
  position: relative;
}
#local #container .title::before {
  content: "";
  background: #fcdb12;
  z-index: -1;
  width: 100%;
  height: 80%;
  position: absolute;
  left: 0;
  top: 0;
}
#local #container .title h1 {
  max-width: 1100px;
  margin: 0 auto;
}
#local #container section .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  #local #container section .inner {
    padding: 50px 15px;
  }
}
#local .entry_newgrad h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #local .entry_newgrad h2 {
    font-size: 3rem;
  }
}
#local .entry_newgrad .sec001 .inner .lead {
  margin-bottom: 80px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.6;
}
#local .entry_newgrad .sec001 .inner nav {
  max-width: 800px;
  margin: 0 auto 50px;
}
#local .entry_newgrad .sec001 .inner nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#local .entry_newgrad .sec001 .inner nav ul li {
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  #local .entry_newgrad .sec001 .inner nav ul li {
    width: 100%;
    margin: 10px 0;
  }
}
#local .entry_newgrad .sec001 .inner nav ul li a {
  padding: 25px;
  text-align: center;
  background: #d6d6d6;
  font-size: 2.6rem;
  font-weight: 600;
  display: block;
}
#local .entry_newgrad .sec001 .inner nav ul li a:hover {
  color: #333;
  opacity: 0.8;
  text-decoration: none;
}
#local .entry_newgrad .sec001 .inner nav ul li a.active {
  background: linear-gradient(to right, #04a8d7, #b7de2c);
  color: #fff;
}
#local .entry_newgrad .sec001 .inner h3 {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em;
  color: #00a7db;
}
#local .entry_newgrad .sec001 .inner .flow {
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 30px;
  position: relative;
}
#local .entry_newgrad .sec001 .inner .flow::before {
  width: 100%;
  height: 2px;
  background: #b2b2b2;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
#local .entry_newgrad .sec001 .inner .flow li {
  width: calc(33.33333% - 40px);
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  background: #d9f2fa;
}
@media screen and (max-width: 767px) {
  #local .entry_newgrad .sec001 .inner .flow li {
    width: calc(33.33333% - 10px);
    font-size: 1.6rem;
  }
}
#local .entry_newgrad .sec001 .inner .flow li span {
  font-size: 1.5rem;
  display: block;
}
#local .entry_newgrad .sec001 .inner .flow li.active {
  background: linear-gradient(to right, #04a8d7, #b7de2c);
  color: #fff;
}
#local .entry_newgrad .sec001 .inner .form #formWrap {
  line-height: 2;
}
#local .entry_newgrad .sec001 .inner .form p {
  line-height: 1.6;
}
#local .entry_newgrad .sec001 .inner .form table {
  width: 100%;
  margin-top: 20px;
}
#local .entry_newgrad .sec001 .inner .form table tr th {
  padding: 10px;
  background: #ebebeb;
  border-bottom: 3px solid #fff;
  text-align: left;
  line-height: 1.6;
}
#local .entry_newgrad .sec001 .inner .form table tr th .require {
  color: #ff0000;
  font-size: 1.2rem;
  display: block;
}
@media screen and (max-width: 767px) {
  #local .entry_newgrad .sec001 .inner .form table tr th {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
}
#local .entry_newgrad .sec001 .inner .form table tr td {
  padding: 10px;
  border-bottom: 3px solid #fff;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #local .entry_newgrad .sec001 .inner .form table tr td {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
}
#local .entry_newgrad .sec001 .inner .form table tr td input {
  padding: 10px;
  box-sizing: border-box;
}
#local .entry_newgrad .sec001 .inner .form table tr td input.w100 {
  width: 100%;
}
#local .entry_newgrad .sec001 .inner .form table tr td input.name::-moz-placeholder {
  text-align: right;
}
#local .entry_newgrad .sec001 .inner .form table tr td input.name::placeholder {
  text-align: right;
}
#local .entry_newgrad .sec001 .inner .form .privacy_box {
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 20px 0 30px;
}
#local .entry_newgrad .sec001 .inner .form .privacy_box a {
  color: #0068b7;
  text-decoration: underline;
}
#local .entry_newgrad .sec001 .inner .form .submit {
  margin-top: 30px;
}
#local .entry_newgrad .sec001 .inner .form .submit input {
  width: 680px;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  padding: 15px;
  border-radius: 45px;
  background: linear-gradient(to right, #04a8d7, #b7de2c);
  box-shadow: 6px 6px #000;
  cursor: pointer;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #local .entry_newgrad .sec001 .inner .form .submit input {
    width: 100%;
    font-size: 2.2rem;
  }
}
#local .entry_career h2 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  #local .entry_career h2 {
    font-size: 3rem;
  }
}
#local .entry_career .sec001 .inner .lead {
  margin-bottom: 80px;
  font-size: 2rem;
  font-weight: 600;
}
#local .entry_career .sec001 .inner nav {
  max-width: 800px;
  margin: 0 auto 50px;
}
#local .entry_career .sec001 .inner nav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#local .entry_career .sec001 .inner nav ul li {
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  #local .entry_career .sec001 .inner nav ul li {
    width: 100%;
    margin: 10px 0;
  }
}
#local .entry_career .sec001 .inner nav ul li a {
  padding: 25px;
  text-align: center;
  background: #d6d6d6;
  font-size: 2.6rem;
  font-weight: 600;
  display: block;
}
#local .entry_career .sec001 .inner nav ul li a:hover {
  color: #333;
  opacity: 0.8;
  text-decoration: none;
}
#local .entry_career .sec001 .inner nav ul li a.active {
  background: linear-gradient(to right, #f07d41, #fbd714);
  color: #fff;
}
#local .entry_career .sec001 .inner h3 {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em;
  color: #f07d41;
}
#local .entry_career .sec001 .inner .flow {
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 30px;
  position: relative;
}
#local .entry_career .sec001 .inner .flow::before {
  width: 100%;
  height: 2px;
  background: #b2b2b2;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
#local .entry_career .sec001 .inner .flow li {
  width: calc(33.33333% - 40px);
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  background: #fdebe2;
}
@media screen and (max-width: 767px) {
  #local .entry_career .sec001 .inner .flow li {
    width: calc(33.33333% - 10px);
    font-size: 1.6rem;
  }
}
#local .entry_career .sec001 .inner .flow li span {
  font-size: 1.5rem;
  display: block;
}
#local .entry_career .sec001 .inner .flow li.active {
  background: linear-gradient(to right, #f07d41, #fbd714);
  color: #fff;
}
#local .entry_career .sec001 .inner .form #formWrap {
  line-height: 2;
}
#local .entry_career .sec001 .inner .form p {
  line-height: 1.6;
}
#local .entry_career .sec001 .inner .form table {
  width: 100%;
  margin-top: 20px;
}
#local .entry_career .sec001 .inner .form table tr th {
  padding: 10px;
  background: #ebebeb;
  border-bottom: 3px solid #fff;
  text-align: left;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #local .entry_career .sec001 .inner .form table tr th {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
}
#local .entry_career .sec001 .inner .form table tr th .require {
  color: #ff0000;
  font-size: 1.2rem;
  display: block;
}
#local .entry_career .sec001 .inner .form table tr td {
  padding: 10px;
  border-bottom: 3px solid #fff;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #local .entry_career .sec001 .inner .form table tr td {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
}
#local .entry_career .sec001 .inner .form table tr td input {
  padding: 10px;
  box-sizing: border-box;
}
#local .entry_career .sec001 .inner .form table tr td input.w100 {
  width: 100%;
}
#local .entry_career .sec001 .inner .form table tr td input.name::-moz-placeholder {
  text-align: right;
}
#local .entry_career .sec001 .inner .form table tr td input.name::placeholder {
  text-align: right;
}
#local .entry_career .sec001 .inner .form .privacy_box {
  font-size: 1.5rem;
  line-height: 1.6;
  margin: 20px 0 30px;
}
#local .entry_career .sec001 .inner .form .privacy_box a {
  color: #0068b7;
  text-decoration: underline;
}
#local .entry_career .sec001 .inner .form .submit {
  margin-top: 30px;
}
#local .entry_career .sec001 .inner .form .submit input {
  width: 680px;
  font-size: 2.8rem;
  font-weight: 600;
  color: #fff;
  padding: 15px;
  border-radius: 45px;
  background: linear-gradient(to right, #f07d41, #fbd714);
  box-shadow: 6px 6px #000;
  cursor: pointer;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #local .entry_career .sec001 .inner .form .submit input {
    width: 100%;
    font-size: 2.2rem;
  }
}/*# sourceMappingURL=style.css.map */