@charset "UTF-8";

/* //////////////////////////////////////////////////

　style.css

////////////////////////////////////////////////// */

/* --------------
　 #header
----------------*/
#header {
  height: 65px;
  background: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 20;
}

#header .header_logo {
  padding: 17px 0 0 15px;
}

#header .header_logo img {
  max-width: 370px;
}

@media screen and (max-width: 750px) {
  #header {
    height: 60px;
  }

  #header .header_logo {
    padding: 20px 0 0 5px;
  }

  #header .header_logo img {
    max-width: 250px;
  }
}




/*ハンバーガーボタン*/
.el_humburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 65px;
  height: 65px;
  z-index: 20;
  cursor: pointer;
  pointer-events: auto;
  color: #fff;
  background: #475d77;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .el_humburger {
    display: block;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
  }

  #factory .el_humburger {
    display: none;
  }
}

.el_humburger_wrapper {
  margin-bottom: 5px;
  margin-top: 19px;
  width: 30px;
  display: inline-block;
}

@media screen and (max-width: 750px) {
  .el_humburger_wrapper {
    margin-bottom: 5px;
    width: 27px;
    margin-top: 19px;
  }
}

.el_humburger_text {
  font-size: 12px;
  letter-spacing: 0.1em;
  /*font-family: "游ゴシック Medium", YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;*/
}

.js_humburgerOpen #wrapper {
  filter: blur(10px);
  transition: all 0.4s;
}

.js_humburgerOpen .site-overlay {
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__menu {
  display: none;
}

.el_humburger_text.el_humburger_text__close {
  display: none;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__close {
  display: block;
}

@media screen and (max-width: 750px) {
  .el_humburger_text {
    font-size: 10px;
    padding-top: 2px;
  }
}

@media screen and (max-width: 750px) {
  .el_humburger_text svg path {
    -webkit-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    -o-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    fill: #000;
  }
}

@media screen and (max-width: 750px) {
  .js_humburgerOpen .el_humburger_text svg path {
    fill: #000;
  }
}

.el_humburger span.el_humburger_bar {
  display: block;
  width: 100%;
  margin: 0 auto 10px;
  height: 2px;
  background: #fff;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.el_humburger span.el_humburger_bar:last-child {
  margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar {
  background: #fff;
}

@media screen and (max-width: 750px) {
  .el_humburger span.el_humburger_bar {
    left: 0;
    top: 0;
    margin: 0px auto 8px;
    background: #fff;
  }
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
  -webkit-transform: translateY(13px) rotate(-45deg);
  -ms-transform: translateY(13px) rotate(-45deg);
  transform: translateY(13px) rotate(-45deg);
}

@media screen and (max-width: 750px) {
  .js_humburgerOpen .el_humburger span.el_humburger_bar.top {
    -webkit-transform: translateY(9px) rotate(-45deg);
    -ms-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
  }
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
  opacity: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-11px) rotate(45deg);
  -ms-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}

.el_humburgerButton__close span.el_humburger_bar {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #fff;
}

.el_humburgerButton__close span.el_humburger_bar.top {
  -webkit-transform: translateY(5px) rotate(-45deg);
  -ms-transform: translateY(5px) rotate(-45deg);
  transform: translateY(5px) rotate(-45deg);
}

.el_humburgerButton__close span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}

.navi {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  width: 0;
  z-index: 3;
  padding-top: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms ease-out;
  -o-transition: all 400ms ease-out;
  transition: all 400ms ease-out;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 10px #ccc;
}

.js_humburgerOpen .navi {
  width: 400px;
}

@media screen and (max-width: 750px) {
  .js_humburgerOpen .navi {
    width: 100%;
    padding: 100px 5% 0;
  }
}

.navi_item {
  margin-bottom: 28px;
  font-size: 16px;
  white-space: nowrap;
  margin-left: 60px;
}

.navi_item.op_innerLink {
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .navi_item {
    margin-left: 0;
    font-size: 18px;
  }
}

.navi_item a {
  color: #000;
  transition-property: all;
  transition: 0.2s linear;
}

.navi_item a:hover {
  color: #667c96;

}

.navi_item .under_line {
  width: 30px;
  margin: 0.2em 10px 0.2em 0;
  border-top: 1px solid #000;
  display: inline-block;
}

.navi_item p {
  font-size: 14px;
  display: inline-block;
}

.navi .external_link {
  font-size: 14px;
}

.navi .external_link .icon_ext {
  padding-right: 5px;
}

.navi .external_link .icon_ext img {
  width: 15px;
  margin-bottom: -3px;
}


.navi .line_link {
  font-size: 14px;
  margin-top: 30px;
}

.navi .line_link a {
  color: #fff;
  background: #00b900;
  padding: 15px 60px 22px;
  border-radius: 10px;
  text-align: center;
  transition-property: all;
  transition: 0.2s linear;
  display: inline-block;
}

@media screen and (max-width: 750px) {
  .navi .line_link a {
    width: 100%;
    padding: 15px 0 22px;
    display: inline-block;
  }
}

.navi .line_link a:hover {
  color: #fff;
  background: #475d77;
}

.navi .line_link .icon_line {
  padding-right: 5px;
}

.navi .line_link .icon_line img {
  width: 25px;
  margin-bottom: -7px;
}


/* --------------
　 #mainimg
----------------*/
#mainimg {
  margin-top: 65px;
  width: 100%;
  background: #e1e6ed;
  position: relative;
}

@media screen and (max-width: 750px) {
  #mainimg {
    margin-top: 60px;
  }
}

#mainimg .kv_cacth {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}



@media screen and (max-width: 750px) {
  #mainimg .kv_cacth {
    width: 100%;
  }
}

#mainimg .kv_cacth img {
  max-width: 740px;
  width: 100%;
}

#mainimg .kv_mask {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(71, 93, 119, 0.35);
}

#mainimg .loading {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  text-align: center;
  background-color: #fff;
}

#mainimg .loading img{
  padding-top: 20%;
}

@media screen and (max-width: 750px) {
  #mainimg .loading img {
    padding-top: 50%;
  }
}

#mainimg .mainimg_inner {}

#mainimg .mainimg_inner .kv {
  width: 25%;
  vertical-align: bottom;
  bottom: 0;
  padding-top: 3%;
  overflow: hidden;
  display: inline-block;
  line-height: 0;
}

@media screen and (max-width: 750px) {
  #mainimg .mainimg_inner .kv {
    width: 50%;
  }
}

#mainimg .mainimg_inner .kv_odd {
  background: #e1e6ed;
}

#mainimg .mainimg_inner .kv_even {
  background: #fff;
}

#mainimg .mainimg_inner .kv img {
  width: 140%;
  margin-left: 15%;
}

@media screen and (max-width: 750px) {
  #mainimg .mainimg_inner .kv img {
    width: 100%;
    margin-left: 0;
    /*margin-left:40%;*/
  }
}

/* KVアニメーション */
@keyframes slide_left {
  from {
    opacity: 0;
    transform: translateX(-20%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide_left {
  animation-name: slide_left;
}

.mainimg_inner {
  overflow: hidden;
}

.kv01 {
  animation-name: slide_left;
  animation-delay: 2.5s;
  animation-duration: 1.8s;
  animation-timing-function: ease;
  opacity: 0;
  animation-fill-mode: forwards;
}

.kv02 {
  animation-name: slide_left;
  animation-delay: 2.7s;
  animation-duration: 1.8s;
  animation-timing-function: ease;
  opacity: 0;
  animation-fill-mode: forwards;
}

.kv03 {
  animation-name: slide_left;
  animation-delay: 2.9s;
  animation-duration: 1.8s;
  animation-timing-function: ease;
  opacity: 0;
  animation-fill-mode: forwards;
}

.kv04 {
  animation-name: slide_left;
  animation-delay: 3.1s;
  animation-duration: 1.8s;
  animation-timing-function: ease;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes kv_mask {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.kv_mask {
  animation-name: kv_mask;
  animation-delay: 3.5s;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  opacity: 0;
  animation-fill-mode: forwards;
}

.loading {
  animation-name: loading;
  animation-delay: 1.5s;
  animation-duration: 1s;
  animation-timing-function: ease;
  opacity: 1;
  animation-fill-mode: forwards;
}

@keyframes loading {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}



@keyframes kv_cacth {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.kv_cacth {
  animation-name: kv_cacth;
  animation-delay: 3.8s;
  animation-duration: 2.5s;
  animation-timing-function: ease;
  opacity: 0;
  animation-fill-mode: forwards;
}

/* --------------
　 #btn_entry
----------------*/
#btn_entry{
  position: fixed;
  right: 0;
  bottom: 45%;
  z-index: 100;
}

#btn_entry a{
  display: block;
  padding: 20px;
  background-color: #7ebf41;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  transition :all 0.2s;
}

#btn_entry a:hover{
  background-color: #66768b;
}

@media screen and (max-width: 748px) {
  #btn_entry{
    display: none;
  }
}

/* --------------
　 #sec01
----------------*/
#sec01 {
  padding: 65px 0;
  text-align: center;
}

@media screen and (max-width: 750px) {
  #sec01 {
    padding: 25px 0;
  }
}

#sec01 h2 {
  font-size: 30px;
  line-height: 1.5;
  font-weight: normal;
  background-image: url(../img/sec01_bg.png);
  background-repeat: no-repeat;
  background-size: 150px;
  padding-bottom: 10px;
  background-position: bottom right;
  max-width: 420px;
  margin: 0 auto 20px;
}

#sec01 h2 span {
  margin-bottom: 10px;
  display: inline-block;
}

#sec01 p {
  line-height: 2;
  margin-bottom: 1em;
  font-size: 18px;
}

@media screen and (min-width:321px) and (max-width: 750px) {
  #sec01 h2 {
    font-size: 26px;
    background-position: bottom center;
    background-size: 120px;
    margin-bottom: 30px;
  }

  #sec01 p {
    text-align: left;
  }
}

@media screen and (max-width: 320px) {
  #sec01 h2 {
    font-size: 22px;
    background-position: bottom center;
    background-size: 120px;
    margin-bottom: 20px;
  }

  #sec01 p {
    text-align: left;
    font-size: 16px;
  }
}

/* --------------
　 #sec02
----------------*/
#sec02 {
  background: #e1e6ed;
  padding: 65px 0;
}

#sec02 .flex_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#sec02 .flex_item {
  width: 46%;
}

@media screen and (max-width: 640px) {
  #sec02 .flex_box {
    display: inline-block;
  }

  #sec02 .flex_item {
    width: 100%;
  }
}

#sec02 .left_area {
  margin-right: 4%;
  margin-top: 20px;
}

@media screen and (max-width: 640px) {
  #sec02 .left_area {
    margin-right: 0px;
    margin-top: 0px;
  }
}

#sec02_text {
  background: #fff;
  padding: 20px 30px;
}

@media screen and (max-width: 640px) {
  #sec02_text {
    max-width: 100%;
  }
}

#sec02_text:first-child {
  margin-bottom: 30px;
}

#sec02 .right_area img {
  width: 100%
}

@media screen and (max-width: 640px) {
  #sec02 .right_area img {
    max-width: 100%;
    width: 100%
  }

  #sec02 .right_area {
    margin-top: 30px;
  }
}

/* --------------
　 #sec03 #sec04
----------------*/
#sec03 {
  padding: 65px 0;
}

#sec04 {
  background-image: url(../img/sec04/sec04_bg.png);
  background-size: 128px;
  background-repeat: repeat;
  padding: 65px 0;
}

#sec03 .flex_box,
#sec04 .flex_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#sec03 .flex_item,
#sec04 .flex_item {
  width: 46%;
  margin-bottom: 40px;
}

#sec03 .flex_item:last-child,
#sec04 .flex_item:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 640px) {

  #sec03 .flex_box,
  #sec04 .flex_box {
    display: inline-block;
  }

  #sec03 .flex_item,
  #sec04 .flex_item {
    width: 100%;
  }
}

#sec03 img,
#sec04 img {
  width: 100%;
  margin-bottom: 15px;
}

/* --------------
　 #sec05
----------------*/
#sec05 {
  padding: 65px 0;
}

.day_table {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;

}

.day_table tr {
  padding: 20px 0;
  display: block;
  border-bottom: dashed 1px #dae0e7;
}

.day_table tr:first-child {
  border-top: dashed 1px #dae0e7;
}

.day_table th {
  vertical-align: top;
  width: 17%;
  padding-right: 2%;
  font-size: 1.2em;
  font-weight: normal;
  text-align: left;
  display: inline-block;
  margin-top: 0.2em;
}

@media screen and (max-width: 640px) {
  .day_table th {
    width: 20%;
    text-align: center;
    min-width: 70px;
    padding-right: 2%;
  }
}

.day_table td {
  display: inline-block;
  letter-spacing: normal;
  vertical-align: top;
  width: 80%;
}

@media screen and (max-width: 640px) {
  .day_table td {
    width: 70%;
  }
}

.day_table td > p {
  display: inline-block;
  width: 65%;
}

@media screen and (max-width: 640px) {
  .day_table td > p {
    display: inline-block;
    margin-bottom: 20px;
    width: 100%;
  }
}

.day_table td > figure {
  width: 34%;
  display: inline-block;
  letter-spacing: normal;
  vertical-align: top;
  line-height: 0;
}

@media screen and (max-width: 640px) {
  .day_table td > figure {
    width: 100%;
  }
}

.day_table .strong {
  font-weight: bold;
}

/* --------------
　 #sec06
----------------*/
#sec06 {
  background-image: url(../img/sec04/sec04_bg.png);
  background-size: 128px;
  background-repeat: repeat;
  padding: 65px 0;
}

#sec06 .sec_inner {
  max-width: 710px;
  margin: 0 auto;
  padding: 0 20px;
}

.movie-wrap {
  position: relative;
  padding-bottom: 56.25%;
  /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}

.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --------------
　 #sec07
----------------*/
#sec07 {
  background: #e1e6ed;
  background-size: 128px;
  background-repeat: repeat;
  padding: 65px 0;
}

#sec07 .sec_inner {}

#sec07 .staff_box {
  letter-spacing: -0.5em;
  margin-bottom: 40px;
}

#sec07 .staff_box:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 720px) {
  #sec07 .staff_box {
    width: 100%;
  }
}

#sec07 .left_area {
  display: inline-block;
  vertical-align: top;
  width: 33%;
  height: 245px;
  background-size: cover;
  background-position: center top;
}

@media screen and (max-width: 720px) {
  #sec07 .left_area {
    width: 100%;
  }
}

#sec07 .left_area.img_01 {
  background-image: url(../img/sec07/sec07_img01.jpg);
}

#sec07 .left_area.img_02 {
  background-image: url(../img/sec07/sec07_img02.jpg);
}

#sec07 .right_area {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
  width: 67%;
  background: #fff;
}

@media screen and (max-width: 720px) {
  #sec07 .right_area {
    display: block;
    width: 100%;
  }
}

#sec07 .right_area .inner {
  padding: 20px 30px;
  position: relative;
  height: 205px
}

@media screen and (max-width: 720px) {
  #sec07 .right_area .inner {
    position: inherit;
    height: auto;
  }
}

#sec07 h3,
.modalContents h3 {
  font-size: 1.8em;
  margin-bottom: 0;
}

.age {
  font-size: 0.6em;
}

.catch_copy {
  color: #475d77;
  font-size: 1.2em !important;
  font-weight: bold;
}

#sec07 .right_area .inner p {
  font-size: 15px;
}

@media screen and (max-width: 720px) {
  #sec07 .right_area .inner p {}
}

#sec07 .right_area .inner button {
  background: #fff;
  border: #475d77 solid 1px;
  color: #475d77;
  font-size: 14px;
  transition: all 0.4s;
  padding: 10px 40px 10px 50px;
  position: absolute;
  bottom: 20px;
  right: 30px;
  vertical-align: middle;
}

@media screen and (max-width: 720px) {
  #sec07 .right_area .inner button {
    position: inherit;
    width: 100%;
    margin-top: 20px;
  }
}

#sec07 .right_area .inner button:hover {
  background: #475d77;
  color: #fff;
}

#sec07 .right_area .inner button .arrow {
  font-size: 1.2em;
  vertical-align: middle;
}

#sec07 .right_area .inner button:focus {
  border: none;
  /*枠線非表示*/
  outline: none;
  /*フォーカス時の枠線非表示*/
  box-shadow:
    /*フォーカス時のシャドウ非表示*/
}


/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10;
  /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
}

.modalWrapper {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -55%);
  overflow: auto;
  /*状況に応じて縦スクロールバーが出現 */
  height: 70%;
  width: 80%;
  max-width: 1000px;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px #ccc;
}

@media screen and (max-width: 720px) {
  .modalWrapper {
    padding: 20px;
  }
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
  font-size: 2em;
}

#wrapper.active {
  filter: blur(10px);
  transition: all 0.4s;
}

.modalContents .text_box {
  margin-bottom: 1em;
  font-size: 15px;
}

.modalContents .flex {
  margin-bottom: 30px;

}

.modalContents figure {
  width: 100%;
  margin-bottom: 20px;
}

.modalContents figure img {
  width: 100%;
}

.modalContents .closeModal_btn {
  background: #fff;
  border: #475d77 solid 1px;
  color: #475d77;
  font-size: 14px;
  transition: all 0.4s;
  padding: 10px 50px;
  width: 100%;
  margin-top: 20px;
}

.modalContents .closeModal_btn:focus {
  border: none;
  /*枠線非表示*/
  outline: none;
  /*フォーカス時の枠線非表示*/
  box-shadow:
    /*フォーカス時のシャドウ非表示*/
}

.modalContents .closeModal_btn:hover {
  background: #475d77;
  color: #fff;
}


/* --------------
　 #sec08
----------------*/
#sec08 {
  padding: 65px 0;
}

#sec08 .workingPlace__body {
  max-width: 1000px;
  margin: 0 auto;
  background-image: url(../img/sec08_img01.jpg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 48%;
  display: flex;
  justify-content: start !important;
  text-align: left !important;
  align-items: start !important;
  flex-direction: unset !important;
  position: relative;
}

@media screen and (max-width: 720px) {
  #sec08 .workingPlace__body {
    padding-top: 300px;
    background-size: 70%;
    background-position: center top;
  }
}

#sec08 .WorkArea {
  width: 44%;
  margin-top: 30px;
  /*min-height: 670px;*/
  float: left;
  /*position: absolute;*/
  left: 0;
  z-index: 2;
}

@media screen and (max-width: 720px) {
  #sec08 .WorkArea {
    width: 100%;
  }
}

#sec08 .WorkArea .accordion li {
  margin-bottom: 4px;
}

#sec08 .WorkArea .accordion li p {
  cursor: pointer;
  padding: 0.8em 1em;
  position: relative;
}

#sec08 .WorkArea .accordion li p.actitle {
  background: #fff;
  border: 1px #475d77 solid;
  color: #475d77;
  font-weight: bold;
  text-align: left;
  transition: all 0.4s;
}

#sec08 .WorkArea .accordion li p.actitle:hover,
#sec08 .WorkArea .accordion li p.actitle.active {
  background: #475d77;
  border: 1px solid #475d77;
  color: #fff;
  font-weight: bold;
  text-align: left;
}

#sec08 .WorkArea .accordion li p.actitle .arrow {
  position: absolute;
  /* top: 50%; */
  right: 1em;
  font-size: 1.2em;
}


#sec08 .WorkArea .accordion li .inner {
  display: none;
  text-align: left;
  background: #e1e6ed;
  border-left: 1px solid #475d77;
  border-right: 1px solid #475d77;
  border-bottom: 1px solid #475d77;
}

#sec08 .WorkArea .accordion li .inner.open {
  display: block;
  text-align: left;
}

#sec08 .WorkArea .accordion li .inner dl {
  color: #475d77;
  padding: 1em;
  border-top: 1px #475d77 dashed;
}

#sec08 .WorkArea .accordion li .inner dl:first-child {
  border-top: none;
}

#sec08 .WorkArea .accordion li .inner dl dt {
  color: #475d77;
  margin-bottom: 0.8em;
}

#sec08 .WorkArea .accordion li .inner dl dd {
  color: #475d77;
  font-size: 0.8em;
  line-height: 1.5;
}

/* --------------
　 #sec09
----------------*/
#sec09 {
  background-image: url(../img/sec04/sec04_bg.png);
  background-size: 128px;
  background-repeat: repeat;
  padding: 65px 0;
}

#sec09 table {
  margin: 40px auto 0;
  width: 100%;
  max-width: 1000px;
  border-collapse: collapse;
  border: 1px solid #edf0f4;
  background-color: #fff;
}

#sec09 table th {
  background-color: #e1e6ed;
  width: 25%;
  font-size: 14px;
  line-height: 1.85714;
  letter-spacing: 0.05em;
  border-bottom: #fff solid 1px;
}

#sec09 table th:last-child {
  border-bottom: none;
}

#sec09 table td {
  width: 75%;
  font-size: 14px;
  padding: 10px 20px;
  line-height: 1.85714;
  border-bottom: #e1e6ed solid 1px;
}

@media screen and (max-width: 720px) {
  #sec09 table td {
    padding: 10px;
  }
}

/* --------------
　 #sec10
----------------*/

#sec10 {
  background: #e1e6ed;
  padding: 65px 0;
}

#sec10 .form {
  background: #f9fafb;
  padding: 40px 80px;
}

@media screen and (max-width: 800px) {
  #sec10 .form {
    padding: 40px 40px;
  }
}

@media screen and (max-width: 720px) {
  #sec10 .form {
    padding: 40px 20px;
  }
}


#sec10 .form dl {
  align-items: flex-start;
}

@media screen and (max-width: 720px) {
  #sec10 .form dl {
    width: 95%;
  }
}

#sec10 .form dl dt {
  position: relative;
  width: 32%;
  margin-top: 8px;
  padding-left: 8px;
  line-height: 1.2;
  font-size: 1em;
  border-left: 4px #66768b solid;
  font-weight: normal;
  margin-bottom: 35px;
}

@media screen and (max-width: 720px) {
  #sec10 .form dl dt {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
  }
}

#sec10 .form dl dd {
  width: 65%;
  font-size: 1em;
}

@media screen and (max-width: 720px) {
  #sec10 .form dl dd {
    width: 100%;
    margin-bottom: 20px;
  }
}

#sec10 .form input[name="name"],
#sec10 .form input[name="kana"],
#sec10 .form input[name="tell"],
#sec10 .form input[name="mail"],
#sec10 .form textarea {
  -webkit-appearance: none;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 5px;
  box-shadow: none;
  width: 100%;
  padding: 8px;
  font-size: 16px;
  color: #555;
}

#sec10 .form input[name="age"] {
  -webkit-appearance: none;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 5px;
  box-shadow: none;
  width: 30%;
  padding: 8px;
  font-size: 16px;
  color: #555;
  margin-right: 1em;
}

#sec10 .form input::placeholder {
  color: #ccc;
}

/* IE */
input:-ms-input-placeholder {
  color: #ccc;
}

/* Edge */
input::-ms-input-placeholder {
  color: #ccc;
}

#sec10 .form .form-control {
  display: block;
  width: 60%;
  height: 36px;
  padding: 8px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 5px;
}

@media screen and (max-width: 720px) {
  #sec10 .form .form-control {
    width: 70%;
  }
}

#sec10 .form .check_box {
  margin-right: 20px;
}

@media screen and (max-width: 720px) {
  #sec10 .form .check_box {
    display: block;
    margin-top: 10px;
  }
}

#sec10 .form .required {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 6px;
  font-size: 0.8em;
  background: #66768b;
  color: #fff;
}

#sec10 .form .button_area{
  justify-content: center;
}
#sec10 .form .button_area > .button{
  margin-left: 0;
  margin-right: 0;
}
#sec10 .form .button_area > .button + .button{
  margin-left: 40px;
}
#sec10 .form .button {
  margin: 40px auto 0;
  text-align: center;
}

@media screen and (max-width: 720px) {
  #sec10 .form .button {
    margin: 20px auto 0;
  }
}

#sec10 .form .button input[type="submit"] {
  color: #fff;
  background-color: #7ebf41;
  padding: 12px 80px;
  display: inline-block;
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  border: none;
  border-radius: 4px;
  transition: all 0.2s;
}
#sec10 .form .button_back input[type="submit"] {
  padding-left: 50px;
  padding-right: 50px;
}
#sec10 .form .button_send input[type="submit"] {
  padding-left: 160px;
  padding-right: 160px;
}
@media screen and (max-width: 720px) {
  #sec10 .form .button_area > .button + .button{
    margin-left: 20px;
  }
  #sec10 .form .button input[type="submit"] {
    padding: 12px 30px;
  }
  #sec10 .form .button_back input[type="submit"] {
    padding-left: 20px;
    padding-right: 20px;
  }
  #sec10 .form .button_send input[type="submit"] {
    padding-left: 55px;
    padding-right: 55px;
  }
}

#sec10 .form .button input[type="submit"]:hover {
  background: #66768b;
}

#sec10 .form .button input[type="submit"]:focus {
  border: none;
  /*枠線非表示*/
  outline: none;
  /*フォーカス時の枠線非表示*/
  box-shadow:
    /*フォーカス時のシャドウ非表示*/
}


/* --------------
	#footer
----------------*/

#footer p {
  text-align: center;
  padding: 15px 0;
  background: #fff;
  font-size: 12px;
  color: #66768b;
}
@media screen and (max-width: 720px) {
  #footer p{
    padding-bottom: 75px;
  }
}
/* --------------
  スマホ ボトムメニュー
----------------*/
.spBottomMenu{
  display: none;
  width: 100%;
  height: 60px;
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .8);
  z-index: 2;
}
.bottomMenuList{
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: 100%;
}
.bottomMenuList__item{
  width: 33%;
  border-right: 1px solid white;
}
.bottomMenuList__item:last-child{
  width: 34%;
  border-right: none;
}
.bottomMenuList__link{
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 38px 6px 4px 6px;
}
.bottomMenuList__icon{
  display: block;
  position: absolute;
  top: 8px;
  left: 50%;
  width: 25px;
  transform: translateX(-50%);
}
.bottomMenuList__txt{
  font-size: 12px;
  color: white;
  text-align: center;
}
.bottomMenuList__txt--2{
  font-size: 11px;
}
@media screen and (max-width: 720px) {
  .spBottomMenu{
    display: block;
  }
}