@charset "UTF-8";
/*
Theme Name: smcb
Theme URI: https://example.com/
Author: 
Author URI: https://example.com/
Description: オリジナルテーマ
Version: 1.0.0
Text Domain: smcb
*/
*, *::before, *::after, div, li, a, label, input {
  margin: 0;
  padding: 0;
}

html, body {
  height: auto;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd {
  margin: 0;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: inherit;
}

button,
input,
select,
textarea {
  font-size: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
  margin: 0;
  padding: 0;
}

input,
select,
textarea {
  border: 1px solid #707070;
  padding: 10px 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  color: #303030;
  line-height: 1.6;
  letter-spacing: 0.1em;
  background-color: #ffffff;
  min-width: 350px;
  width: 100%;
  overflow-x: hidden;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* 見出し */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

h1 {
  font-size: 4.2rem;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 70px auto;
  color: #009966;
  padding: 10px 40px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.6rem;
    margin: 0 auto 30px auto;
  }
}

h2 {
  font-size: 3rem;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}

/* 画像 */
img {
  width: 100%;
  height: auto;
  display: block;
}

/* ボタン・フォーム */
button, select {
  cursor: pointer;
}

/* pc、sponly */
.pc-only {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.mb-only {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .mb-only {
    display: block !important;
  }
}

.sp-only {
  display: none !important;
}
@media screen and (max-width: 480px) {
  .sp-only {
    display: block !important;
  }
}

.indent {
  padding-left: 1rem;
  text-indent: -1em;
}

.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .l-container {
    padding: 30px 15px;
  }
}

#header.l-header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  z-index: 100;
}

#header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .header-container__left {
  flex: 1;
  padding-left: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  #header .header-container__left {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  #header .header-container__left {
    padding: 20px 10px;
  }
}
#header .header-container__left .header-logo {
  color: #009966;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  #header .header-container__left .header-logo {
    font-size: 2rem;
  }
}
#header .header-container__left .header-menu ul li {
  padding: 0 20px;
  display: inline-block;
}
#header .header-container__right {
  width: 350px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #009966;
  flex-direction: column;
  padding: 20px 0;
}
#header .header-container__right .header-tel {
  color: #FFFFFF;
  position: relative;
  font-size: 3rem;
  width: -moz-max-content;
  width: max-content;
  padding: 0 10px 0 36px;
  margin: 0 auto;
}
#header .header-container__right .header-tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  background-image: url(./../image/tel.png);
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
#header .header-container__right .header-contact {
  color: #009966;
  background-color: #FFFFFF;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  border-radius: 20px;
  margin: 0 auto;
}
#header .header-container__right .header-contact a {
  padding: 6px 70px 6px 30px;
  display: block;
}
#header .header-container__right .header-contact::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 30px;
  height: 20px;
  background-image: url(./../image/mail.png);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

.main-wrapper {
  position: relative;
}

#footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer .footer-container__left .company-name {
  font-size: 2.4rem;
  font-weight: 700;
}
#footer .footer-container__left .company-address {
  font-size: 2rem;
}
#footer .footer-container__left .company-address span {
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  #footer .footer-container__left .company-address span {
    padding-left: 0;
  }
}
#footer .footer-container__right {
  align-self: self-start;
}
#footer .footer-container__right ul li {
  display: inline-block;
  padding: 0 20px;
}

.contactLink {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.contactLink__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contactLink__container a {
  width: 50%;
  color: #FFFFFF;
  position: relative;
  text-align: center;
  padding: 20px 0 20px 10px;
}
.contactLink__container a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contactLink__container a.tel {
  background-color: #009966;
}
.contactLink__container a.tel::before {
  background-image: url(./../image/tel.png);
  width: 20px;
}
.contactLink__container a.mail {
  background-color: #3CC64F;
}
.contactLink__container a.mail::before {
  background-image: url(./../image/mail2.png);
  width: 25px;
}

#mainVisual {
  width: 100%;
  overflow: hidden;
}
#mainVisual .c-swiper {
  position: relative;
  width: 100%;
}
#mainVisual .c-swiper__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  background: #ddd;
  height: 100%;
}
#mainVisual .c-swiper__message {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  width: -moz-max-content;
  width: max-content;
  font-size: 4.2rem;
  color: #FFFFFF;
  text-shadow: 1px 3px 6px black;
  z-index: 100;
}
@media screen and (max-width: 1500px) {
  #mainVisual .c-swiper__message {
    top: auto;
    bottom: 20px;
    left: 20px;
    transform: translateY(0);
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  #mainVisual .c-swiper__message {
    font-size: 2rem;
    bottom: 10px;
  }
}
#mainVisual .c-swiper__message span {
  font-size: 3rem;
}
@media screen and (max-width: 1500px) {
  #mainVisual .c-swiper__message span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #mainVisual .c-swiper__message span {
    font-size: 1.6rem;
  }
}

.c-post .c-post__list {
  list-style: none;
  padding: 0;
}
.c-post .c-post__list-item {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}
.c-post .c-post__list-item-box {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: left;
}
.c-post .c-post__thumbnail {
  width: 30%;
  max-width: 150px;
  height: 100px;
}
.c-post .c-post__thumbnail img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.c-post .c-post__text {
  padding-left: 20px;
}

.c-button--to-top {
  position: fixed;
  bottom: 20%;
  right: 0;
  z-index: 9999;
  background: #333;
  border-radius: 10px 0 0 10px;
  border: 1px solid #ffffff;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.c-button--to-top.is-visible {
  opacity: 0.5;
  pointer-events: auto;
}
.c-button--to-top:hover {
  opacity: 1;
}
.c-button__link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
.c-button__common {
  width: 45%;
  max-width: 470px;
  padding: 20px;
  text-align: center;
  color: #FFFFFF;
  font-size: 2.4rem;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .c-button__common {
    font-size: 1.8rem;
    width: 100%;
    max-width: 350px;
    padding: 20px 10px;
  }
}

#about {
  scroll-margin-top: 40px;
  background-color: #F2F5EF;
}
#about .p-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #009966;
  z-index: -2;
}
#about .p-title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 101%;
  top: 0;
  left: 0;
  background-color: #F2F5EF;
  transform: skew(-50deg);
  z-index: -1;
}
#about .about-container {
  font-weight: 400;
}
#about .about-container__top {
  margin-bottom: 40px;
}
#about .about-container__bottom ul {
  counter-reset: item;
}
#about .about-container__bottom ul li {
  counter-increment: item;
  position: relative;
  padding-left: 2em;
  padding-bottom: 10px;
}
#about .about-container__bottom ul li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.6em;
  height: 1.6em;
  background-color: #3CC64F;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#training-program {
  scroll-margin-top: 40px;
}
@media screen and (max-width: 768px) {
  #training-program .training-program-container > h2 {
    text-align: center;
  }
}
#training-program .training-program-container__top {
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  #training-program .training-program-container__top {
    margin: 20px 0;
  }
}
#training-program .training-program-container__middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #training-program .training-program-container__middle {
    font-size: 2rem;
    margin-bottom: 20px;
    flex-direction: column;
  }
}
#training-program .training-program-container__middle .left-box__info {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #training-program .training-program-container__middle .left-box__info {
    width: 100%;
  }
}
#training-program .training-program-container__middle .left-box__info h2 {
  border-bottom: 1px solid #8DC959;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #training-program .training-program-container__middle .left-box__info h2 {
    text-align: center;
  }
}
#training-program .training-program-container__middle .left-box__info .country {
  margin-bottom: 30px;
}
#training-program .training-program-container__middle .left-box__info .country ul {
  counter-reset: item;
}
#training-program .training-program-container__middle .left-box__info .country ul li {
  counter-increment: item;
  position: relative;
  padding-left: 2em;
  padding-bottom: 10px;
}
#training-program .training-program-container__middle .left-box__info .country ul li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.6em;
  height: 1.6em;
  background-color: #3CC64F;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #training-program .training-program-container__middle .left-box__info .country ul {
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
}
#training-program .training-program-container__middle .left-box__info .work table td {
  padding-left: 20px;
  position: relative;
}
#training-program .training-program-container__middle .left-box__info .work table td::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50px;
  background-color: #8DC959;
}
#training-program .training-program-container__middle .right-box__img {
  width: 45%;
}
#training-program .training-program-container__bottom table {
  font-weight: 500;
  border: 1px solid #707070;
}
#training-program .training-program-container__bottom table th {
  background-color: #3CC64F;
  color: #FFFFFF;
  width: 50%;
  padding: 6px;
  border: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  #training-program .training-program-container__bottom table th:nth-of-type(1) {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #training-program .training-program-container__bottom table th:nth-of-type(2) {
    width: 60%;
  }
}
#training-program .training-program-container__bottom table td {
  padding: 6px;
  border: 1px solid #707070;
}

#overview {
  scroll-margin-top: 40px;
  background-color: #F2F5EF;
}
#overview .overview-container {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #overview .overview-container {
    margin-bottom: 30px;
  }
}
#overview .overview-container th {
  border-bottom: 1px solid #707070;
  font-size: 2.4rem;
  width: 25%;
  font-weight: 500;
  padding: 20px 0;
  text-align: start;
}
@media screen and (max-width: 768px) {
  #overview .overview-container th {
    font-size: 1.6rem;
    width: 100px;
  }
}
#overview .overview-container td {
  border-bottom: 1px solid #707070;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #overview .overview-container td {
    font-size: 1.6rem;
  }
}
#overview .overview-container td .address span {
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  #overview .overview-container td .address span {
    padding-left: 0;
  }
}
#overview .link-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#overview .link-container a {
  display: block;
  margin: 0 30px;
}
@media screen and (max-width: 768px) {
  #overview .link-container a {
    margin: 10px 0;
  }
}
#overview .link-container a.green {
  background-color: #009966;
}
#overview .link-container a.light-green {
  background-color: #3CC64F;
}

#contact .contact-container .mainVisual {
  height: 300px;
  background-color: #3CC64F;
}
@media screen and (max-width: 768px) {
  #contact .contact-container .mainVisual {
    height: 200px;
  }
}
#contact .contact-container .mainVisual .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#contact .contact-container .mainVisual .title h1 {
  margin: 0;
  color: #FFFFFF;
}
#contact .contact-container .mainVisual .title p {
  width: 220px;
}
@media screen and (max-width: 768px) {
  #contact .contact-container .mainVisual .title p {
    width: 150px;
  }
}
#contact .contact-container .form-box .form-control {
  padding: 20px 0;
  border-top: 1px solid #707070;
}
#contact .contact-container .form-box .form-control:nth-last-of-type {
  border-bottom: 1px solid #707070;
}
#contact .contact-container .form-box .form-control > label {
  font-weight: 700;
  width: 300px;
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  #contact .contact-container .form-box .form-control > label {
    display: block;
  }
}
#contact .contact-container .form-box .form-control label {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  #contact .contact-container .form-box .form-control label {
    font-size: 1.8rem;
  }
}
#contact .contact-container .form-box .form-control input {
  width: calc(100% - 310px);
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  #contact .contact-container .form-box .form-control input {
    width: 100%;
    padding: 10px;
    font-size: 1.8rem;
  }
}
#contact .contact-container .form-box .form-control input.check {
  width: auto;
}
#contact .contact-container .form-box .form-control textarea {
  width: calc(100% - 310px);
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  #contact .contact-container .form-box .form-control textarea {
    width: 100%;
    padding: 10px;
    font-size: 1.8rem;
  }
}
#contact .contact-container .form-box .form-control.btn-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#contact .contact-container .form-box .form-control.btn-box input {
  width: 100%;
  border: none;
  padding: 20px 10px;
}
#contact .contact-container .form-box .form-control.btn-box span {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
}
#contact .contact-container .form-box .form-control.btn-box .c-button__common {
  padding: 0;
  margin: 0 30px;
  transition: 0.3s ease-in-out;
}
#contact .contact-container .form-box .form-control.btn-box .c-button__common.green {
  background-color: #009966;
  border: 1px solid #009966;
  margin-bottom: 10px;
}
#contact .contact-container .form-box .form-control.btn-box .c-button__common.green:hover {
  background-color: #ffffff;
  color: #009966;
}
#contact .contact-container .form-box .form-control.btn-box .c-button__common.light-green {
  background-color: #3CC64F;
  border: 1px solid #3CC64F;
}
#contact .contact-container .form-box .form-control.btn-box .c-button__common.light-green:hover {
  background-color: #ffffff;
  color: #3CC64F;
}

.c-post-card {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.c-post-card__thumb {
  width: 30%;
}
.c-post-card__thumb img {
  width: 100%;
  height: auto;
}
.c-post-card__body {
  width: 70%;
}
.c-post-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.c-post-card__date {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1rem;
  display: block;
}
.c-post-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
}

.c-post-content img,
.c-post-content .wp-block-gallery {
  margin-bottom: 1rem;
}
.c-post-content .wp-block-gallery,
.c-post-content .wp-block-image.is-style-three-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.c-post-content .wp-block-gallery figure,
.c-post-content .wp-block-image.is-style-three-columns figure {
  width: calc((100% - 2rem) / 3);
}

.c-post__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.c-post__date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
  display: block;
}
.c-post__content {
  line-height: 1.8;
  font-size: 1rem;
}
.c-post__back {
  margin-top: 2rem;
  text-align: right;
}
.c-post__back a {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */