@charset "UTF-8";

:root {
  --text-color: #333333;
  --main-green: #3ab54a;
  --main-orange: #f9911e;
}

/* body */
body {
  font-family: "Helvetica Neue", "Hiragino Sans", "Arial", "Meiryo", sans-serif;
  font-size: 14px;
  color: var(--text-color);
  padding-top: 62.06px;
}

a {
  color: #065FD4;
  text-decoration: underline;
}

.invisible_char{
  visibility: hidden;
}

/* レスポンシブ対応20241023 */
#responsive{
	width: 100%;
	aspect-ratio: 16/9;
  display: block;
}

#youtube{
  width: 100%;
  height: auto;
  margin: 0;
}

#youtube h3{
  width: 100%;
  text-align:center;
}
/* レスポンシブ対応ここまで */

@media screen and (min-width: 560px) {
  a[href^="tel"] {
    pointer-events: none;
    cursor: auto;
    color: var(--text-color);
    text-decoration: none;
  }
}

/* 20220513修正 */

dl {
  line-height: 1.5;
  width: 80vw;
  margin: 0 auto;
}

/* /20220513修正 */

@media screen and (min-width: 750px) {
  body {
    font-size: 18px;
    padding-top: 0;
  }

/* レスポンシブ対応20241023 */

  #youtube{
    width: 70%;
    height: auto;
    margin: 0 15%;
  }

/* レスポンシブ対応ここまで */

}

/* /body */

body > div {
  overflow: hidden;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  border-bottom: solid 1px var(--text-color);
  background-color: white;
  padding: 6px 20px;
}

h1 img {
  width: 150px;
}

#hamburger {
  /* スタイルを初期化 */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  background: none;
  border: none;
  /* /スタイルを初期化 */

  display: block;
  position: relative;
  z-index: 20;
  width: 40px;
  height: 40px;
  border: solid 2px var(--text-color);
  border-radius: 5px;
}

.noscroll {
  overflow: hidden;
}

.bar {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  transition: all .3s;
}

.bar-top {
  top: 8px;
}

.bar-middle {
  top: 50%;
  transform: translate(-50%,-50%);
}

.bar-bottom {
  bottom: 8px;
}

#hamburger.close .bar {
  transition: all .3s;
}

#hamburger.close .bar-top {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

#hamburger.close .bar-middle {
  opacity: 0;
}

#hamburger.close .bar-bottom {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

nav {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100%;
  background-color: var(--main-green);
  transition: all .3s;
}

nav.fade {
  visibility: visible;
  opacity: 1;
  transition: all .3s;
}

nav ul {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  text-align: center;
}

nav ul li {
  margin-bottom: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

nav ul li a.current {
  color: var(--main-orange);
}

.anchor {
  display: block;
  position: relative;
  top: -62px;
}

/* 20220606 */
@media screen and (min-width: 750px) {
  header {
    display: block;
    text-align: center;
    width: 100%;
    padding: 0;
  }
/* /20220606 */

/* 20220607 */
  h1 img {
    width: 250px;
    margin-top: 5px;
  }

  #hamburger {
    display: none;
  }

  .noscroll {
    overflow: visible;
  }

  nav {
    visibility: visible;
    opacity: 1;
    position: static;
    width: auto;
    height: auto;
    background: none;
    transition: none;
  }

  nav.fade {
    visibility: hidden;
    opacity: 0;
    transition: none;
  }

  nav ul {
    display: flex;
    position: static;
    transform: none;
    font-size: 20px;
    width: fit-content;
    margin: 10px auto;
  }

/* 20220610, 20220617 */
  nav ul li {
    border-right: solid 1px var(--text-color);
    margin: 0;
  }

  nav ul li:last-child {
    border: none;
  }

  nav ul li a {
    display: block;
    color: var(--text-color);
    padding: 5px 10px;
  }

  nav ul li a.current {
    color: var(--text-color);
    border-bottom: solid 2px var(--main-orange);
  }
/* /20220617 */

  .anchor {
    top: -144.44px;
  }
}
/* /header */

/* main */
main {
  width: 90vw;
  margin: 0 auto;
}

/* 20220530, 20220603 */
.carousel-slider {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.carousel-slider .slide-wrapper-main {
  width: 100%;
  animation-name: carouselSliderMain;
  animation-duration: 45s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
}

@keyframes carouselSliderMain {
  0% { transform: translateX(100%); }
  80% { transform: translateX(100%); }
  90% { transform: translateX(0); }
}

.carousel-slider .slide-wrapper {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 500%;
  animation-name: carouselSlider;
  animation-duration: 45s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
}

@keyframes carouselSlider {
  0% { transform: translateX(0); }

  10% { transform: translateX(calc(1 / 5 * -100%)); }
  20% { transform: translateX(calc(1 / 5 * -100%)); }

  30% { transform: translateX(calc(2 / 5 * -100%)); }
  40% { transform: translateX(calc(2 / 5 * -100%)); }

  50% { transform: translateX(calc(3 / 5 * -100%)); }
  60% { transform: translateX(calc(3 / 5 * -100%)); }

  70% { transform: translateX(calc(4 / 5 * -100%)); }
  80% { transform: translateX(calc(4 / 5 * -100%)); }

  90% { transform: translateX(calc(5 / 5 * -100%)); }
  100% { transform: translateX(calc(5 / 5 * -100%)); }
}

.carousel-slider picture,
.carousel-slider img {
  width: 100vw;
}

main > section {
  margin-bottom: 40px;
}

main > section:last-of-type {
  margin-bottom: 0;
}

main section p {
  line-height: 1.5;
  width: 80vw;
  margin: 12px auto 0;
}

h2 {
  font-size: 22px;
  color: white;
  text-align: center;
  background-color: var(--main-green);
  width: 100vw;
  padding: 10px 0;
  margin: 0 calc(50% - 50vw);
}

h2 span.en {
  display: block;
  font-size: 18px;
}

.about > .container {
  border: solid 2px var(--main-orange);
  border-radius: 10px;
  margin-top: 20px;
  padding: 10px 0;
}

/* 20220601 */
.sales-copy {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 16px;
  font-weight: bold;
}
/* /20220601 */

.taiken p:first-child {
  font-size: 16px;
  font-weight: bold;
}

.taiken .tel {
  font-size: 20px;
  font-weight: normal;
  width: fit-content;
  border: solid 3px var(--main-orange);
  border-radius: 25px;
  background-color: #f7ab54;
  padding: 10px 15px;
  margin: 20px auto;
}

.taiken .tel-number {
  margin-left: 10px;
}

.event {
  border: solid 1px var(--main-green);
  border-radius: 10px;
  padding: 10px;
}

.event span:first-of-type {
  display: block;
  text-align: center;
}

.event span:last-of-type {
  display: block;
  text-align: right;
}

.about h3 {
  font-size: 18px;
  background-color: rgb(207, 248, 207);
  border-left: solid 5px var(--main-green);
  padding: 5px 0 5px 10px;
  margin-top: 20px;
}

.taisyousya div {
  line-height: 1.5;
  width: 80vw;
  margin: 12px auto 0;
}

.lunch img {
  display: block;
  width: 70vw;
  margin: 20px auto 0;
}

.works section {
  width: 90vw;
  background-color: #eec699;
  padding: 7px;
  margin: 20px auto 0;
}

.works h3 {
  font-size: 16px;
}

.works .square {
  font-family: "Hiragino Sans", "Meiryo", sans-serif;
}

.works section div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 7px;
}

.works section div p {
  width: 65%;
  padding-right: 7px;
  margin: 0;
}

.works img {
  width: 35%;
}

.works .banner a {
  display: block;
  margin-top: 20px;
}

.works .banner img {
  width: 90vw;
}
/* /20220609 */

/* 20220428,0502修正 */
.works table {
  width: 80vw;
  border-collapse: collapse;
  margin: 20px auto 0;
}

.works table th,
.works table td {
  font-weight: normal;
  line-height: 2;
  border: solid 1px;
  padding-left: 5px;
}

.works table th {
  text-align: center;
}

/* /20220428,0502修正 */
/* 20220513修正 */

.faq dt {
  font-size: 16px;
  font-weight: normal;
  background-color: rgb(225, 247, 225);
  padding: 10px;
  margin-top: 20px;
}

.faq dt::before {
  display: inline-block;
  content: "Q";
  color: white;
  text-align: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: var(--main-green);
  margin-right: 5px;
}

.faq dd {
  font-size: 16px;
  background-color: rgb(247, 225, 229);
  padding: 10px;
  margin-top: 5px;
}

.faq dd::before {
  display: inline-block;
  content: "A";
  color: white;
  text-align: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: red;
  margin-right: 5px;
}

/* /20220513修正 */

.access p {
  font-size: 18px;
  text-align: center;
}

/* 20220517修正 */

.access p:first-of-type {
  text-align: left;
  width: fit-content;
  border: solid 3px var(--main-orange);
  border-radius: 10px;
  background-color: #eec699;
  padding: 10px 15px;
  margin-top: 20px;
}

/* /20220517修正 */
/* 20220518修正 */

.access p:nth-of-type(2) {
  font-weight: bold;
  margin-top: 20px;
}

.access p:nth-of-type(3) {
  font-size: 14px;
  text-align: left;
  margin-top: 3px;
}

/* /20220518修正 */

.access iframe {
  width: 100%;
  height: 68vw;
  margin-top: 20px;
}

.profile table {
  width: 90vw;
  margin: 20px auto 0;
}

.profile table th,
.profile table td {
  display: block;
  line-height: 1.5;
}

.profile table th {
  border-top: solid 1px var(--main-orange);
  padding-top: 10px;
}

.profile table td {
  padding: 0 0 10px 10px;
}

.profile table .iryoukikan {
  line-height: 90%;
}

.profile table .iryoukikan span {
  font-size: 75%;
}

.profile table tr:last-child td {
  border-bottom: solid 1px var(--main-orange);
}

/* 20220620, 20220622 */
@media screen and (min-width: 750px) {
  main {
    width: 80vw;
    max-width: 1400px;
    padding-top: 144.44px;
  }

  .carousel-slider {
    width: min(35vw, 612px);
    height: min(35vw, 612px);
    border-radius: 50%;
    margin: 10px auto;
  }

  .carousel-slider picture,
  .carousel-slider img {
    width: min(35vw, 612px);
  }

  h2 {
    font-size: 25px;
    padding: 15px 0;
  }

  h2 span.en {
    font-size: 22px;
  }
/* /20220623 */

/* 20220624 */
  .about .container {
    width: min(50vw, 875px);
    padding: 10px 0;
    margin: 30px auto 0;
  }

  .sales-copy {
    font-size: 20px;
    margin-top: 5px;
  }

  .about .container p {
    width: min(48vw, 840px);
  }

  .taiken p:first-child {
    width: min(40vw, 700px);
    margin-top: 20px;
  }

  .taiken .tel {
    font-size: 22px;
  }
/* /20220624 */

/* 20220627 */
  .event {
    width: fit-content;
  }

  .event br {
    display: none;
  }

  .event span:first-of-type,
  .event span:last-of-type {
    text-align: left;
  }

  .about h3 {
    font-size: 22px;
    padding: 7px 0 7px 13px;
    margin-top: 40px;
  }

  .about h3 + p {
    width: min(70vw, 1225px);
  }

  .taisyousya div {
    width: min(60vw, 1050px);
    margin: 10px auto 0;
  }

  .lunch p {
    width: min(70vw, 1225px);
  }

  .lunch img {
    width: min(40vw, 700px);
  }
/* /20220627 */

/* 20220628 */
  .works > div {
    display: flex;
    flex-wrap: wrap;
  }

  .works section {
    justify-content: space-between;
    width: calc(50% - 30px);
    margin-top: 30px;
  }

  .works h3 {
    font-size: 20px;
    margin-top: 5px;
  }

  .works .banner a {
    margin: 20px auto 0;
  }

  .works .banner img {
    width: min(50vw, 875px);
  }

  .works table {
    width: min(50vw, 875px);
  }

  .faq dl {
    width: min(60vw, 1050px);
    margin-top: 30px;
  }

  .faq dt,
  .faq dd {
    font-size: 18px;
  }
/* /20220628 */

/* 20220629 */
  .faq dd {
    margin-top: 20px;
  }

  .access p {
    font-size: 20px;
  }

  .access p:first-of-type {
    margin-top: 30px;
  }

  .access p br:first-of-type {
    display: none;
  }

  .access p:nth-of-type(2) {
    margin-top: 20px;
  }

  .access p:nth-of-type(3) {
    font-size: 18px;
    width: min(40vw, 700px);
    margin: 20px auto 0;
  }

  .access iframe {
    display: block;
    width: min(60vw, 1050px);
    height: min(45vw, 788px);
    margin: 20px auto 0;
  }

  .profile table {
    width: min(60vw, 1050px);
    border-collapse: collapse;
    margin: 30px auto 0;
  }

  .profile table th,
  .profile table td {
    display: table-cell;
    border: solid 1px var(--text-color);
    padding: 10px 0 10px 10px;
  }

  .profile table tr:last-child td {
    border-bottom: solid 1px var(--text-color);
  }

/*職場環境 work-box 2025.3追加  */

　.work-box {
	border-radius: 20px;
	width:100%;
	height:100%;
	margin: 20px 0;
	padding: 30px 20px;
	line-height:normal;
	letter-spacing: 0.2vw;
	flex-direction: row;
	align-items: center;
	background-color: #f7e79e;
　 }

　h3 {
 　 text-align: center;
  　font-size: 25px;
 　 padding: 20px 0;
　 }

　p {
  margin-top: 0;
  padding: 0 20px  30px 20px;
 　}
}
/* /main */

/* footer */
footer .banner img {
  display: block;
  width: 60vw;
  margin: 30px auto 0;
}

footer .banner a:last-of-type img {
  margin-bottom: 20px;
}
/* /20220602, /20220606 */

footer p {
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (min-width: 750px) {
  footer .banner img {
    width: min(30vw, 525px);
  }
/* /20220629 */
}