/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1;
  background-image: url("img/bg.jpg");
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: top center;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #000;
}
img {
  max-width: 100%;
  height: atuo;
}
a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html, body {
  display: flex;
  flex-direction: column;
  color: #333;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
  font-size: 18px;
}
/* mixin
-----------------------------------------*/
/* contents
-----------------------------------------*/
.section__ttl {
  font-size: 32px;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  margin: 0 0 48px;
  font-weight: 900
}
@media only screen and (max-width: 767px) {
  .section__ttl {
    font-size: 24px;
    margin: 0 0 28px;
  }
  .section__ttl img {
    width: 90%;
  }
}
.section__ttl:after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #212121;
  margin: 30px auto 8px;
  border-radius: 16px;
}
.section__container {
  width: 1100px;
  margin: 0 auto;
  padding: 80px;
  background-color: #FFFFFF;
  border-radius: 30px;
}
@media only screen and (max-width: 1100px) {
  .section__container {
    width: 90%;
    padding: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .section__container {
    padding: 30px;
  }
  .section__ttl:after {
    margin: 8px auto 8px;
  }
}
.header {
  width: 100%;
  height: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto;
  background: #fff;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  .header {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 90px;
  }
}
.header__ttl {
  font-size: 28px;
  letter-spacing: 1px;
  margin: 0 0 0 32px;
}
@media only screen and (max-width: 767px) {
  .header__ttl {
    margin: 0 auto;
    text-align: center;
  }
  .header__ttl img {
    width: 80%;
  }
}
.gnav {
  margin: 0 32px 0 auto;
}
@media only screen and (max-width: 767px) {
  .gnav {
    width: 100%;
    margin: 10px auto;
  }
}
.gnav__list {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .gnav__list {
    justify-content: center;
  }
}
.gnav__item {
  margin: 0 35px 0 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .gnav__item {
    margin: 0 16px;
  }
}
.gnav__item:last-of-type {
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .gnav__item:last-of-type {
    margin: 0 16px;
  }
}
.gnav__link {
  display: block;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.5s ease 0s;
}
.gnav__link:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #000;
  margin: 0 auto;
  border-radius: 10px;
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  transition: all 0.5s ease 0s;
}
@media only screen and (max-width: 767px) {
  .gnav__link {
    font-size: 15px;
  }
  .gnav__link:after {
    display: none;
  }
}
.gnav__link:hover {
  opacity: 0.6;
}
.gnav__link:hover:after {
  width: 30px;
}
/*.fv {
	background-image: url("img/main-image.jpg");
	background-size: cover;
}*/
.fv__container {
  width: 100%;
  max-height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
}
h1 {
  font-size: 40px;
  line-height: 1.7;
  font-weight: 900;
}
@media only screen and (max-width: 1100px) {
  h1 {
    font-size: 33px;
    line-height: 1.7;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 20px;
    line-height: 1.7;
  }
}
.fv__container img {
  /*width: 100%;*/
}
.fv__container p {
  margin: 20px 0 40px;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.7;
}
@media only screen and (max-width: 1100px) {
  .fv__container p {
    font-size: 16px;
    line-height: 1.7;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .fv__container p {
    font-size: 15px;
    line-height: 1.7;
    padding: 0 20px;
    margin: 5px 0 10px;
  }
}
.fv__ttl {
  font-size: 50px;
  line-height: 1.4;
  letter-spacing: 2px;
  margin: 0 0 32px;
}
@media only screen and (max-width: 1100px) {
  .fv__ttl {
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .fv__ttl {
    font-size: 32px;
  }
}
.fv__desc {
  line-height: 1.7;
  text-align: center;
  font-size: 20px;
  margin: 0 0 60px;
}
@media only screen and (max-width: 767px) {
  .fv__desc {
    font-size: 16px;
    margin: 0 0 32px;
  }
  .fv__desc br {
    display: none;
  }
}
.bt {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffff00;
  color: #000;
  text-decoration: none;
  width: 280px;
  height: 55px;
  border-radius: 40px;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 5px #cccccc;
  transition: all 0.5s ease 0s;
  border: 2px solid #ffff00;
  margin: 10px auto 40px;
}
.bt:hover {
  box-shadow: none;
}
@media only screen and (max-width: 1100px) {
  .bt {
    font-size: 20px;
    width: 250px;
    height: 55px;
  }
}
.osusume {
  width: 100%;
  margin: 0;
  padding: 0 0 0;
}
.osusume__desc {
  width: 600px;
  margin: 0 auto 60px;
  text-align: center;
  line-height: 1.7;
}
@media only screen and (max-width: 767px) {
  .osusume {
    padding: 20px 0 0;
    top: 30px;
  }
  .osusume__desc {
    width: 90%;
    font-size: 15px;
    margin: 0 auto 28px;
  }
  .osusume__item {
    margin: 0 0 20px !important;
  }
}
.osusume__item {
  width: 100%;
  list-style: none;
  display: flex;
  margin: 0 0 60px;
  flex-wrap: wrap;
}
.osusume__img {
  width: 30%;
}
.osusume__img img {
  width: 100%;
}
@media only screen and (max-width: 1100px) {
  .osusume__img {
    width: 70%;
    margin: 0 auto 0;
    text-align: center;
  }
}
.osusume__contents {
  width: 67%;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 1100px) {
  .osusume__contents {
    width: 100%;
  }
}
.osusume__subttl {
  font-size: 30px;
  line-height: 1.6;
  font-weight: bold;
  margin: 10px 0 13px;
  justify-content: center;
  align-items: center;
  font-weight: 900
}
.osusume__osusume {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 16px;
  display: flex;
  width: 180px;
  height: 50px;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1100px) {
  .osusume__subttl {
    width: 100%;
    color: #212121;
    background: none;
    border-bottom: 1px solid #999;
  }
  .osusume__osusume {
    width: 100%;
    color: #212121;
    background: none;
    border-bottom: 1px solid #999;
    margin: 0 0 6px;
    height: 55px;
  }
  .osusume__osusume img {
    width: 30%;
  }
}
.osusume__subdesc {
  font-size: 16px;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  .osusume__subttl {
    line-height: 1.2;
    padding: 0 0 7px;
    margin: 7px 0;
  }
  .osusume__subdesc {
    font-size: 14px;
  }
}
.item {
  padding: 50px 0 20px;
}
.price__desc {
  width: 650px;
  margin: 0 auto 50px;
  text-align: center;
  line-height: 1.7;
}
@media only screen and (max-width: 1100px) {
  .price__desc {
    margin: 0 auto 48px;
  }
}
@media only screen and (max-width: 767px) {
  .price__desc {
    width: 100%;
    margin: 0 auto 15px;
  }
}
.price__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.price__item {
  width: 100%;
  list-style: none;
  width: 49%;
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px;
}
.price__item img {
  width: 100%;
}
@media only screen and (max-width: 1100px) {
  .price__item {
    width: 100%;
    margin: 0 0 30px;
  }
}
.price__plan {
  font-size: 120%;
  line-height: 1.4;
  margin: 20px 0 5px;
  color: #000;
  padding: 6px 0 6px 0;
}
.box-all h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 20px;
  background-color: #666;
  color: #fff;
  padding: 10px 0 12px;
}
.box-all {
  display: flex;
  gap: 10px;
  text-align: center
}
.box-all div.box {
  /*（全体の幅 - gapでつけた余白の合計）をカラム数で割る */
  width: calc((100% - 20px) / 3);
}
.price-txt {
  font-size: 18px;
  line-height: 1.5;
  padding: 10px 0;
}
.price-price {
  font-size: 40px;
  font-family: "Arial Black", Arial, sans-serif;
}
.price-price2 {
  font-size: 30px;
}
.red {
  font-size: 22px;
  color: #ff0000;
}
@media only screen and (max-width: 1100px) {
  .box-all h3 {
    font-size: 15px;
  }
  .price-txt {
    font-size: 16px;
  }
  .red {
    font-size: 18px;
  }
}
@media only screen and (max-width: 900px) {
  .box-all {
    flex-direction: column;
  }
  .box-all div.box {
    width: 90%;
    text-align: center;
    margin: 20px auto 25px;
  }
  .price-price {
    font-size: 38px;
    font-family: "Arial Black", Arial, sans-serif;
  }
  .red {
    font-size: 24px;
  }
  .box-all h3 {
    font-size: 21px;
    margin-bottom: 10px;
  }
}
/*
.price__table {
  width: 100%;
  font-size: 18px;
  border-bottom: 2px solid #000;
  border: 2px solid #000;
}
@media only screen and (max-width: 767px) {
  .price__plan {
    font-size: 130%;
  }
  .price__table {
    border: none;
  }
}
.price__name {
  width: 35%;
  padding: 12px;
  border: 1px solid #000;
  border-bottom: none;
  background: #eee;
}
.price__name span {
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .price__name {
    width: 100%;
    display: block;
    border: none;
    font-size: 14px;
  }
}
.price__data {
  width: 75%;
  padding: 12px;
  border: 1px solid #000;
  border-left: none;
  border-bottom: none;
  line-height: 1.7;
}
.price__data span {
  font-size: 200%;
}
@media only screen and (max-width: 767px) {
  .price__data {
    width: 100%;
    display: block;
    border: none;
    font-size: 15px;
  }
}*/
.condition {
  width: 100%;
  margin: 0;
  padding: 50px 0 10px;
}
.condition__container {
  width: 1100px;
  margin: 0 auto;
  background-color: #FFFFFF;
  display: flex;
}
.condition h3 {
  background-color: #ffff00;
  color: #000000;
  width: 20%;
  padding: 30px;
  font-size: 22px;
  line-height: 1.6;
}
.condition ul {
  padding: 20px;
}
.condition ul li {
  list-style: disc inside;
  font-size: 18px;
  line-height: 1.7;
}
@media only screen and (max-width: 1100px) {
  .condition__container {
    width: 90%;
    flex-direction: column;
  }
  .condition h3 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 15px 0;
  }
  .condition ul li {
    font-size: 16px;
    line-height: 1.7;
    text-indent: -23px;
    padding: 0 0 0 23px;
  }
}
.recruit {
  background: #f3f3f3;
}
.recruit__desc {
  width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}
@media only screen and (max-width: 1100px) {
  .recruit__desc {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .recruit__desc {
    font-size: 14px;
  }
}
.recruit__more {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #4f9a94;
  color: #fff;
  text-decoration: none;
  width: 300px;
  height: 65px;
  border-radius: 5px;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 5px #2c5753;
  transition: all 0.5s ease 0s;
  border: 2px solid #4f9a94;
  margin: 60px auto;
}
.recruit__more:hover {
  box-shadow: none;
  background: #fff;
  color: #4f9a94;
}
@media only screen and (max-width: 1100px) {
  .recruit__more {
    font-size: 20px;
    width: 250px;
    height: 55px;
  }
}

a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55%;
  position: relative;
  background: #228bc8;
  border: 1px solid #228bc8;
  box-sizing: border-box;
  padding: 20px 25px 20px 40px;
  color: #fff;
  font-size: 27px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  transition-duration: 0.3s;
  margin: 30px auto 0;
}
a.btn:before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
}
a.btn:hover {
  background: #fff;
  color: #228bc8;
}
a.btn:hover:before {
  border-top: 2px solid #228bc8;
  border-right: 2px solid #228bc8;
}
@media only screen and (max-width: 1100px) {
  a.btn {
    width: 80%;
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  a.btn {
    width: 100%;
    font-size: 21px;
  }
}


.footer {
  background: #eeeeee;
  padding: 15px 0;
  text-align: center;
  font-weight: bold;
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.4;
}
.footer__container {
    width: 1100px;
    margin: 0 auto;
    padding: 20px 0 0;
}
    .copyright {
        font-size: 15px;
        font-weight: normal;
        padding: 20px 0;
    }
.footer ul {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
}
.footer ul li {
    display: flex;
    width: 45%;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
}

@media only screen and (max-width: 1100px) {
.footer__container {
    width: 90%;
    margin: 0 auto;
    padding: 20px 0 0;
}

}
@media only screen and (max-width: 767px) {
  .footer {
    font-size: 15px;
  }
        .footer ul li img{
            width: 80%;
    }
    .footer ul li{
    width: 100%;
          display: flex;         /* フレックスボックスを使用 */
  justify-content: center; /* 左右中央に配置 */
  align-items: center;   
    }
    
}