@charset "UTF-8";
/*** The new CSS reset - version 1.9 (last updated 19.6.2023) ***/
:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

*,
::after,
::before {
  box-sizing: border-box;
}

a,
button {
  cursor: revert;
}

menu,
ol,
ul {
  list-style: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

:where(pre) {
  all: revert;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}


/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
全ページ共通CSS
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
*, *:before, *:after {
  box-sizing: border-box;
}

body {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-style: normal;
  color: #4F3318;
  background-color: rgba(237, 250, 220, 0.7);
}
@media screen and (max-width: 599px) {
  body {
    font-size: 14px;
  }
}

img {
  display: block;
}

a:link, a:visited, a:hover, a:active, a:focus {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

p {
  text-align: justify;
}

.content {
  margin: 120px auto 240px;
  width: 88%;
}
@media screen and (max-width: 1024px) {
  .content {
    width: 90%;
    margin: 120px auto;
  }
}
.content .sec-title {
  font-family: serif;
  font-size: 40px;
  text-align: center;
  margin-bottom: 80px;
}
.content .sec-title span {
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  .content .sec-title {
    font-size: 32px;
  }
  .content .sec-title span {
    font-size: 18px;
  }
}
.content h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .content h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .content h3 {
    font-size: 24px;
  }
}

.flexbox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  margin: 120px auto;
}
@media screen and (max-width: 768px) {
  .flexbox {
    flex-wrap: wrap;
    align-items: center;
  }
}
.flexbox img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .flexbox img {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .flexbox img {
    width: 100%;
  }
}
.flexbox div {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .flexbox div {
    width: 100%;
  }
}

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #edfadc;
  text-align: center;
  color: #fff;
}
#splash .loading--inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 30px;
  transform: translate(-50%, -50%);
}
#splash .loading--inner:after {
  position: absolute;
  content: "";
  height: 1px;
  bottom: -2px;
  left: 0;
  right: 0;
  background: rgba(79, 51, 24, 0.7);
}
#splash .loading--inner .loading--box {
  position: absolute;
  width: 16px;
  height: 10px;
  background: rgba(79, 51, 24, 0.4);
  opacity: 1;
}
#splash .loading--inner .loading--box.dbl-width {
  width: 30px;
}
#splash .loading--inner .loading--box.upper {
  height: 18px;
}
#splash .loading--inner .loading--box.hang {
  height: 8.8px;
}
#splash .loading--inner .loading--box.sink {
  height: 10px;
  width: 4px;
  background: rgba(79, 51, 24, 0.4);
}
#splash .loading--inner .loading--box.dbl-height {
  height: 24px;
}
#splash .loading--inner .loading--box.miki {
  height: 5px;
}
#splash .loading--inner .loading--box-animate {
  animation: loading--box-animation 3s infinite ease-in-out;
}
#splash .loading--inner .loading--img {
  position: absolute;
  top: 100%;
  left: 50%;
  right: 0;
  width: 300px;
  transform: translate(-50%);
}
#splash .loading--inner .loading--img img {
  width: 100%;
  margin-top: 10px;
}

@keyframes loading--box-animation {
  0% {
    opacity: 0;
    transform: translate(-20px, 0);
  }
  10% {
    opacity: 0;
    transform: translate(-20px, 0);
  }
  25% {
    opacity: 1;
    transform: translate(0, 0);
  }
  75% {
    opacity: 1;
    transform: translate(0, 0);
  }
  90% {
    opacity: 0;
    transform: translate(20px, 0);
  }
  100% {
    opacity: 0;
    transform: translate(20px, 0);
  }
}
/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
下層共通CSS
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
#submv .subm-top {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: -1;
}
#submv .subm-top .subtop-catch {
  background: rgba(255, 255, 255, 0.8);
  padding: 40px 120px;
  position: absolute;
  top: 60%;
  left: 26%;
}
@media screen and (max-width: 1024px) {
  #submv .subm-top .subtop-catch {
    padding: 40px 80px;
    left: 4%;
  }
}
@media screen and (max-width: 599px) {
  #submv .subm-top .subtop-catch {
    padding: 25px 20px;
    top: 45%;
    left: 0;
  }
}
#submv .subm-top .subtop-catch h1 {
  font-size: 40px;
  line-height: 2rem;
  font-family: serif;
}
#submv .subm-top .subtop-catch h1 span {
  font-size: 24px;
  font-family: dnp-shuei-mgothic-std, sans-serif;
}
@media screen and (max-width: 1024px) {
  #submv .subm-top .subtop-catch h1 {
    font-size: 30px;
  }
  #submv .subm-top .subtop-catch h1 span {
    font-size: 18px;
  }
}
#submv .subm-top .subtop-mv {
  margin-left: 320px;
  margin-top: 40px;
  width: 55%;
}
@media screen and (max-width: 1024px) {
  #submv .subm-top .subtop-mv {
    width: 90%;
    margin-left: auto;
    margin-top: 80px;
  }
}
#submv .subm-top .subtop-mv img {
  width: 100%;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
Header
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
header {
  position: relative;
  /* Mobile navigation */
}
header .navigation {
  position: absolute;
  top: 40px;
  left: 100px;
  width: 200px;
}
@media screen and (max-width: 1024px) {
  header .navigation {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 80px;
    z-index: 99999;
  }
}
header .navigation .nav-list {
  font-family: serif;
  font-size: 16px;
}
header .navigation .nav-list li {
  padding: 24px 0;
  position: relative;
  padding-left: 30px;
}
header .navigation .nav-list li a {
  transition: 0.5s;
}
header .navigation .nav-list li a:before {
  position: absolute;
  content: "";
  top: 15px;
  left: 0;
  width: 30px;
  height: 30px;
  background: url(../img/link-icon.png) no-repeat center center;
  background-size: contain;
  opacity: 0;
  transition: 0.5s;
}
header .navigation .nav-list li a:hover {
  transition: 0.5s;
}
header .navigation .nav-list li a:hover:before {
  opacity: 1;
  transition: 0.5s;
}
header .nav-mobile {
  display: none;
  position: absolute;
  top: 0px;
  right: 0;
  height: 60px;
  width: 60px;
  /* 開閉ボタン */
}
@media screen and (max-width: 1024px) {
  header .nav-mobile {
    display: block;
  }
}
header .nav-mobile #nav-toggle {
  position: absolute;
  left: 0;
  top: 35px;
  cursor: pointer;
  padding: 10px 36px 16px 0px;
  z-index: 9999;
}
header .nav-mobile #nav-toggle span, header .nav-mobile #nav-toggle span::before, header .nav-mobile #nav-toggle span::after {
  cursor: pointer;
  border-radius: 1px;
  height: 2px;
  width: 36px;
  background: rgb(28, 28, 28);
  position: absolute;
  display: block;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
header .nav-mobile #nav-toggle span::before {
  top: -10px;
}
header .nav-mobile #nav-toggle span::after {
  bottom: -10px;
}
header .nav-mobile #nav-toggle.active span {
  width: 0;
}
header .nav-mobile #nav-toggle.active span::before {
  top: 0;
  transform: rotate(135deg);
}
header .nav-mobile #nav-toggle.active span::after {
  bottom: 0;
  transform: rotate(-135deg);
}
@media screen and (max-width: 1024px) {
  header nav {
    width: 100%;
    margin: 0px auto;
    z-index: 9999;
    padding: 0;
  }
  header nav ul {
    display: none;
    width: 100%;
    height: 100vh;
    background-color: rgb(237, 250, 220);
    position: absolute;
    top: 0;
    padding-top: 100px;
  }
  header nav ul li {
    width: 100%;
    text-align: left;
  }
  header nav ul li a {
    padding: 16px;
    line-height: 30px;
    text-align: left;
  }
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
footer
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
footer {
  position: relative;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 40px;
  }
}
footer #topbutton {
  position: absolute;
  width: 100px;
  height: 100px;
  right: 30px;
  bottom: 30px;
  transform: rotate(30deg);
}
@media screen and (max-width: 768px) {
  footer #topbutton {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 60px;
  }
  footer #topbutton a {
    font-size: 11px;
  }
}
@media screen and (max-width: 599px) {
  footer #topbutton {
    width: 30px;
    height: 30px;
    right: 20px;
    bottom: 80px;
    transform: rotate(10deg);
  }
  footer #topbutton a {
    font-size: 8px;
  }
}
footer .f-flexbox {
  display: flex;
  width: 90%;
  justify-content: space-around;
  align-items: flex-start;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  footer .f-flexbox {
    flex-wrap: wrap-reverse;
  }
}
footer .f-flexbox .footer-main {
  width: 45%;
}
@media screen and (max-width: 768px) {
  footer .f-flexbox .footer-main {
    width: 75%;
  }
}
footer .f-flexbox .footer-main .f-logo {
  position: relative;
}
footer .f-flexbox .footer-main .f-logo::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: url(../img/f-icon.png) no-repeat center center;
  background-size: 100%;
  top: 0;
  left: 180px;
}
footer .f-flexbox .footer-main .f-logo a {
  font-size: 16px;
  font-weight: bold;
}
footer .f-flexbox .footer-main .f-logo a span {
  font-size: 40px;
}
footer .f-flexbox .footer-main .address {
  font-size: 14px;
}
footer .f-flexbox .footer-main .telnum {
  font-size: 20px;
}
footer .f-flexbox .footer-main .info a {
  font-size: 12px;
}
footer .f-flexbox .footer-main .info .copyright {
  font-size: 12px;
}
footer .f-flexbox .f-nav {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 40%;
}
@media screen and (max-width: 768px) {
  footer .f-flexbox .f-nav {
    width: 100%;
    margin-bottom: 20px;
  }
}
footer .f-flexbox .f-nav ul li {
  padding: 10px 0;
}

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

    index

=========================================================== */
#mv {
  width: 100vw;
}
@media screen and (max-width: 768px) {
  #mv {
    height: 100vh;
  }
}
#mv .top-catch {
  width: 20%;
  margin: 0 auto;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  #mv .top-catch {
    width: 80%;
    text-align: center;
  }
}
#mv .top-catch h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 24px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #mv .top-catch h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 599px) {
  #mv .top-catch h1 {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
#mv .top-catch h1 span {
  font-size: 80px;
}
@media screen and (max-width: 768px) {
  #mv .top-catch h1 span {
    font-size: 72px;
  }
}
@media screen and (max-width: 599px) {
  #mv .top-catch h1 span {
    font-size: 64px;
  }
}
#mv .top-mv img {
  width: 25%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #mv .top-mv img {
    width: 65%;
  }
}
@media screen and (max-width: 599px) {
  #mv .top-mv img {
    width: 80%;
  }
}

#about img {
  margin: 0 auto;
}
#about div {
  text-align: center;
  margin-top: 40px;
}
#about div p {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #about div p {
    font-size: 30px;
  }
}
#about div a {
  font-family: serif;
  font-size: 16px;
}

#business .flexbox:nth-of-type(odd) {
  flex-direction: row-reverse;
}
#business .flexbox div p {
  line-height: 2.5;
}

#news .sec-title {
  position: relative;
}
#news .sec-title::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 180px;
  top: 40px;
  right: 0;
  background: url(../img/newsbg2.png) no-repeat top right;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  #news .sec-title::before {
    width: 240px;
    height: 120px;
    top: 60px;
  }
}
@media screen and (max-width: 599px) {
  #news .sec-title::before {
    width: 200px;
    height: 100px;
    top: 70px;
  }
}
#news .bg {
  background: url(../img/newsbg3.png) no-repeat bottom left 60px;
  background-size: contain;
  padding-top: 80px;
  padding-bottom: 185px;
}
@media screen and (max-width: 1024px) {
  #news .bg {
    background-position: bottom left;
    padding-top: 0;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  #news .bg {
    padding: 0;
  }
}
#news article {
  width: 48%;
  margin: 0 0 80px auto;
}
@media screen and (max-width: 1024px) {
  #news article {
    width: 65%;
    margin: 0 0 50px auto;
  }
}
@media screen and (max-width: 599px) {
  #news article {
    width: 70%;
  }
}
#news .news-item {
  display: flex;
  padding: 20px 0 12px;
}
@media screen and (max-width: 1024px) {
  #news .news-item {
    flex-wrap: wrap;
    padding-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  #news .news-item {
    padding-top: 20px;
  }
}
#news .news-item .news-head {
  display: flex;
  width: 200px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  #news .news-item .news-head {
    width: 130px;
  }
}
#news .news-item .news-head::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  width: 30px;
  height: 30px;
  background: url(../img/sep-line1.png) no-repeat top center;
  background-size: contain;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  #news .news-item .news-head::after {
    width: 20px;
    height: 20px;
  }
}
#news .news-item .news-title {
  width: calc(100% - 200px);
  padding-left: 30px;
  padding-top: 3px;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  #news .news-item .news-title {
    width: 100%;
    padding: 0;
  }
}
#news .align-ritght {
  text-align: right;
  width: 85%;
}
#news .align-ritght a {
  font-family: serif;
}

.bnr {
  width: 75%;
  justify-content: space-around;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .bnr {
    flex-wrap: nowrap;
    width: 94%;
  }
}
@media screen and (max-width: 599px) {
  .bnr {
    flex-wrap: wrap;
  }
}
.bnr div {
  width: 100%;
  margin-bottom: 40px;
}
.bnr div p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .bnr div p {
    font-size: 13px;
  }
}
.bnr img {
  width: 55%;
  margin: 0 auto;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
About
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.overview table {
  margin: 0 auto;
  width: 60%;
}
.overview table tr {
  border-bottom: 1px solid #4F3318;
}
.overview table tr th {
  padding: 20px 0;
}
.overview table tr td {
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .overview table {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  .overview table {
    width: 94%;
  }
  .overview table tr th {
    display: block;
    padding-bottom: 5px;
  }
  .overview table tr td {
    display: block;
    padding-top: 5px;
  }
}

.access .flexbox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: end;
  width: 80%;
  margin: 120px auto;
}
.access .flexbox div {
  width: 40%;
}
.access .flexbox div iframe {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .access .flexbox {
    width: 88%;
  }
}
@media screen and (max-width: 768px) {
  .access .flexbox {
    width: 90%;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  .access .flexbox div {
    width: 100%;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .access .flexbox {
    width: 94%;
  }
}

.history table {
  margin: 0 auto;
  width: 60%;
}
.history table tr {
  border-bottom: 1px solid #4F3318;
}
.history table tr td {
  padding: 20px 0;
}
.history table tr td:nth-child(odd) {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .history table {
    width: 90%;
  }
  .history table tr td:nth-child(odd) {
    width: 120px;
  }
}
@media screen and (max-width: 599px) {
  .history table {
    width: 94%;
  }
  .history table tr td {
    display: block;
  }
  .history table tr td:nth-child(odd) {
    padding-bottom: 5px;
  }
  .history table tr td:nth-child(even) {
    padding-top: 5px;
  }
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
News_list
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.news-list .subtop-mv::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 180px;
  top: 180px;
  right: 160px;
  background: url(../img/newsbg2.png) no-repeat top right;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .news-list .subtop-mv::before {
    width: 360px;
    right: 30px;
  }
}
@media screen and (max-width: 599px) {
  .news-list .subtop-mv::before {
    width: 180px;
    right: 15px;
    top: 120px;
  }
}
.news-list .list article {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news-list .list article {
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  .news-list .list article {
    width: 94%;
  }
}
.news-list .list article .news-item {
  display: flex;
  padding: 20px 0 12px;
}
@media screen and (max-width: 599px) {
  .news-list .list article .news-item {
    flex-wrap: wrap;
  }
}
.news-list .list article .news-item .news-head {
  display: flex;
  width: 300px;
  position: relative;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .news-list .list article .news-item .news-head {
    width: 240px;
    justify-content: left;
  }
}
@media screen and (max-width: 599px) {
  .news-list .list article .news-item .news-head {
    width: 130px;
  }
}
.news-list .list article .news-item .news-head::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 15px;
  width: 30px;
  height: 30px;
  background: url(../img/sep-line1.png) no-repeat top center;
  background-size: contain;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .news-list .list article .news-item .news-head::after {
    width: 20px;
    height: 20px;
  }
}
.news-list .list article .news-item .news-title {
  width: calc(100% - 300px);
  padding-left: 40px;
  padding-top: 3px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .news-list .list article .news-item .news-title {
    width: 100%;
    padding-left: 10px;
    padding-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .news-list .list article .news-item .news-title {
    width: 100%;
    padding: 0;
  }
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
News_detail 
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.n-detail {
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .n-detail {
    width: 90%;
  }
}
.n-detail .news-info {
  margin-bottom: 80px;
}
.n-detail .news-info h2 {
  font-size: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .n-detail .news-info h2 {
    font-size: 24px;
  }
}
.n-detail .news-content p {
  line-height: 2;
  text-align: center;
  padding-bottom: 40px;
}
.n-detail .news-content p.left {
  text-align: left;
}
.n-detail .news-content p.rigth {
  text-align: right;
}
.n-detail .news-content p.rigth span.smo {
  font-size: 12px;
}
.n-detail .news-content p.big {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .n-detail .news-content p.big {
    font-size: 20px;
  }
}
.n-detail .news-btn {
  text-align: center;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
recruit
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.recruit #submv .subm-top .subtop-mv {
  width: 38%;
}
@media screen and (max-width: 1024px) {
  .recruit #submv .subm-top .subtop-mv {
    width: 60%;
  }
}
@media screen and (max-width: 599px) {
  .recruit #submv .subm-top .subtop-mv {
    width: 90%;
  }
}
.recruit p {
  text-align: center;
}
.recruit table {
  margin: 0 auto;
  width: 60%;
}
.recruit table tr {
  border-bottom: 1px solid #4F3318;
}
.recruit table tr th {
  padding: 20px 0;
  padding-right: 100px;
}
.recruit table tr td {
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .recruit table {
    width: 90%;
  }
  .recruit table tr th {
    padding-right: 60px;
    width: 30%;
  }
}
@media screen and (max-width: 599px) {
  .recruit table {
    width: 94%;
  }
  .recruit table tr th {
    display: block;
    width: 100%;
    padding-right: 0;
    padding-bottom: 5px;
  }
  .recruit table tr td {
    display: block;
    padding-top: 5px;
  }
}
.recruit .contact {
  width: 40%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .recruit .contact {
    width: 100%;
  }
}
.recruit .contact p {
  text-align: center;
}
.recruit .contact a img {
  width: 40%;
  margin: 0 auto;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
contact
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.form p {
  text-align: center;
}

.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}
.Form .Form-Item {
  border-top: 1px dashed #ddd;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .Form .Form-Item {
    flex-wrap: wrap;
  }
}
.Form .Form-Item:first-child {
  border-top: 0;
}
.Form .Form-Item .Form-Item-Label {
  width: 100%;
  max-width: 240px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 16px;
  text-align: left;
}
.Form .Form-Item .Form-Item-Label .Form-Item-Label-Required {
  color: red;
  font-size: 14px;
}
.Form .Form-Item .Form-Item-Label.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 599px) {
  .Form .Form-Item .Form-Item-Label {
    max-width: 100%;
  }
}
.Form .Form-Item .Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 500px;
  background: #fff;
  font-size: 16px;
}
.Form .Form-Item .Form-Item-Input::placeholder {
  color: #ddd;
}
@media screen and (max-width: 599px) {
  .Form .Form-Item .Form-Item-Input {
    margin-left: 0px;
    max-width: 100%;
  }
}
.Form .Form-Item .Form-Item-Select {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 500px;
  background: #fff;
  font-size: 16px;
  padding: 0.8em 1em;
}
@media screen and (max-width: 599px) {
  .Form .Form-Item .Form-Item-Select {
    margin-left: 0px;
    max-width: 100%;
  }
}
.Form .Form-Item .Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 500px;
  background: #fff;
  font-size: 16px;
  padding: 0.8em 1em;
}
.Form .Form-Item .Form-Item-Textarea::placeholder {
  color: #ddd;
}
@media screen and (max-width: 599px) {
  .Form .Form-Item .Form-Item-Textarea {
    margin-left: 0px;
    max-width: 100%;
  }
}
.Form .Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #4F3318;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border: none;
  text-align: center;
}
.Form .Form-Btn:hover {
  transition: 0.3s;
  opacity: 0.6;
}
.Form .back-btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #c68848;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border: none;
  text-align: center;
}
.Form .back-btn:hover {
  transition: 0.3s;
  opacity: 0.6;
}

.sent .thank .center {
  width: 55%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sent .thank .center {
    width: 100%;
  }
}
.sent .thank .center p {
  text-align: center;
}
.sent .thank .center p span {
  font-size: 1.5em;
}
@media screen and (max-width: 599px) {
  .sent .thank .center p {
    text-align: left;
  }
}
.sent .btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #c68848;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border: none;
  text-align: center;
}
.sent .btn:hover {
  transition: 0.3s;
  opacity: 0.6;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
privacypolicy
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.policy {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .policy {
    width: 94%;
  }
}
.policy h3 {
  margin-top: 40px;
}
.policy ul {
  padding-left: 30px;
}
.policy ul li {
  list-style: disc;
}
.policy ol {
  padding-left: 30px;
}
.policy ol li {
  list-style: decimal;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::
2025.08.18
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

.about #submv .subm-top .subtop-mv {
    width: 72%;
    margin-top: 0;
    margin-left: 180px;
}
@media screen and (max-width: 1024px) {
    .about #submv .subm-top .subtop-mv {
        width: 90%;
        margin-left: auto;
    }
}
@media screen and (max-width: 599px) {
    .about #submv .subm-top .subtop-mv {
        margin-top: 80px;
    }
}
#about img {
    width: 80%;
}
@media screen and (max-width: 599px) {
    #about img {
       width: 100%;
    }
}

/*# sourceMappingURL=style.css.map */
