@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0 auto;
  font-family: "kozuka-mincho-pr6n", serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}

img {
  width: 100%;
  vertical-align: bottom;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

h3 span{display: inline-block;}

li {
  list-style: none;
}

a {
  padding: 5px;
  text-decoration: none;
  color: #000;
}
a:hover {
  opacity: 0.6;
}

button:hover {
  cursor: pointer;
}

.hidden-phone {
  display: none !important;
}

@media (min-width: 768px) {
  .visible-phone {
    display: none !important;
  }
  .hidden-phone {
    display: inherit !important;
    position: relative;
  }
}
@media (min-width: 1441px) {
  .hidden-lg {
    display: none !important;
  }
}
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.float-l {
  float: left;
}

.float-r {
  float: right;
}

body.scroll-none {
  overflow-y: hidden;
}

/* ヘッダー全体 */
header {
  padding: 10px 0;
  background-color: #80b63f;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10000;
}
@media (min-width: 768px) {
  header {
    padding: 0;
  }
}

/* ヘッダー内部 */
.header-inner {
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .header-inner {
    width: 100%;
    max-width: 1200px;
  }
}
.header-inner img {
  width: 150px;
  height: auto;
}

/* バーガーメニュー用ボタン */
.burger-btn {
  display: block;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 20px;
  z-index: 10000;
  /* クリック時のアニメーション（バーガーメニュー表示） */
}
.burger-btn span {
  background-color: white;
  display: block;
  width: 100%;
  height: 3px;
  transition: all 0.2s ease-out;
  position: absolute;
  top: 0%;
  left: 0;
  transform: translateY(-50%);
}
.burger-btn span:nth-child(2) {
  top: 45%;
  transform: translateY(-50%);
}
.burger-btn span:nth-child(3) {
  bottom: 0;
  top: auto;
  transform: none;
}
.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: calc(50% - 1.5px);
}
.burger-btn.active span:nth-child(2) {
  opacity: 0;
}
.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: calc(50% - 1.5px);
}

/* ナビゲーション */
.burger-nav {
  background-color: #80b63f;
  color: white;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 9999;
  transition: all 0.2s ease-out;
  /* クリック時のアニメーション（ナビゲーション表示） */
}
.burger-nav ul {
  margin: 0 auto;
  width: 300px;
  padding: 100px 25px 0;
  list-style: none;
}
.burger-nav ul li {
  margin-bottom: 1rem;
}
.burger-nav ul li a {
  display: inline-block;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.2;
}
.burger-nav ul li a:hover {
  color: #fff;
  background-color: #f39800;
  opacity: 1;
}
.burger-nav.active {
  right: 0;
}

.pc-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.pc-nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 5px 10px;
}
.pc-nav ul li a:hover {
  color: #fff;
  background-color: #f39800;
  opacity: 1;
}

/* お問い合わせボタン */
.contact-btn {
  margin: 0 !important;
  background-color: #278346;
  color: white;
  display: inline-block;
  padding: 20px 30px !important;
  text-align: center;
}

main {
  margin-top: -1px;
}

.fv {
  background-color: #80b63f;
}

.section-inner {
  margin: 0 auto;
  width: 90%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .section-inner {
    max-width: 1200px;
  }
}

.fv-inner {
  margin: 0 auto;
  padding: 5rem 0;
}
@media (min-width: 768px) {
  .fv-inner {
    max-width: 1000px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
}

.logo {
  text-align: center;
}
.logo h1 {
  font-size: 40px;
  color: white;
  margin-top: 0;
  margin-bottom: 10px;
}

.fv-content {
  text-align: center;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .fv-content {
    margin-top: 0;
  }
}

.fv-content h2 {
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
  font-size: 32px;
  line-height: 1.125;
  color: #000;
  margin-bottom: 15px;
  padding: 0px 15px 15px;
  font-weight: normal;
  border-bottom: 2px solid #278346;
}
.fv-content h2::before {
  display: none;
}
@media (min-width: 768px) {
  .fv-content h2 {
    font-size: 38px;
    line-height: 1.0526315789;
  }
}

.fv-content p {
  font-size: 16px;
  line-height: 1.875;
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .fv-content p {
    font-size: 21px;
    line-height: 1.5238095238;
  }
}

.new-information {
  border-bottom: 1px solid #278346;
}

.new-information-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 3px;
}
.new-information-inner p {
  font-size: 12px;
  line-height: 2;
  color: #278346;
  margin: 0;
  font-weight: normal;
  white-space: nowrap;
}

.triangle {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 12.5px solid #278346;
  border-bottom: 7px solid transparent;
  margin-right: 5px;
}

.company-features {
  margin-top: 2rem;
}
.company-features-inner {
  max-width: 800px;
}

.company-features h2 {
  padding: 10px 15px;
  color: #fff;
  background-color: none;
  border-bottom: none;
  font-size: 24px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .company-features h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
.company-features h2::before {
  display: none;
}

.company-features ul {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .company-features ul {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}

.feature-list-wrapper {
  margin-bottom: 2rem;
}
.feature-list-wrapper:last-child {
  margin-bottom: 0;
}
.feature-list-wrapper:last-child .feature-list p:last-of-type {
  font-weight: bold;
  font-size: 26px;
  line-height: 1.3076923077;
}

.feature-list {
  position: relative;
  overflow-y: hidden;
  overflow-x: auto;
  width: 204px;
  margin: 0 auto;
  margin-bottom: 0px;
  padding: 30px 0 10px;
}

.feature-list-circle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  border: 2px solid #278346;
  border-radius: 50%;
  width: 170px;
  aspect-ratio: 1/1;
}

.feature-list p {
  color: #278346;
  text-align: center;
}

.feature-list p:first-of-type {
  padding-bottom: 15px;
  font-size: 30px;
  line-height: 1.0666666667;
  font-weight: bold;
}

.feature-list p:last-of-type {
  font-weight: bold;
  font-size: 36px;
  line-height: 0.9444444444;
}

.feature-text {
  text-align: center;
  font-size: 22px;
  line-height: 1.3636363636;
}
.feature-text small {
  font-size: 14px;
  line-height: 1.4285714286;
}

.breadcrumbs-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 1.2857142857;
}
@media (min-width: 768px) {
  .breadcrumbs-inner {
    font-size: 16px;
    line-height: 1.625;
  }
}

.top-breadcrumbs {
  background-color: #fff;
}
.top-breadcrumbs-inner a {
  color: #383838;
}
.top-breadcrumbs-inner span {
  color: #383838;
  margin: 5px;
}

.bottom-breadcrumbs {
  background-color: #383838;
}
.bottom-breadcrumbs-inner a {
  color: #fff;
}
.bottom-breadcrumbs-inner span {
  color: #fff;
  margin: 5px;
}

.contact-information {
  margin-top: -1px;
  background-color: #fff;
  padding: 20px;
}
@media (min-width: 768px) {
  .contact-information {
    padding: 0;
  }
}

.contact-information-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .contact-information-inner {
    flex-direction: row;
    justify-content: flex-end;
  }
}

.contact-info-item {
  text-align: center;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .contact-info-item {
    margin-right: 30px;
    margin-bottom: 0;
  }
}
.contact-info-item:first-child {
  font-size: 21px;
  line-height: 1.2380952381;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.contact-info-item:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.contact-info-item:last-child .contact-btn {
  padding: 10px 30px;
}
.contact-info-item:last-child .contact-btn:hover {
  opacity: 1;
  color: #fff;
  background-color: #f39800;
}

.icon-tel {
  width: 30px;
  aspect-ratio: 1/1;
}

footer {
  background-color: #383838;
  padding: 4rem 0;
}

.footer-inner {
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: flex-start;
  color: #fff;
}
@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
  }
}

.left {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: left;
}
@media (min-width: 768px) {
  .left {
    margin-top: 0;
  }
}
.left img {
  margin-top: 1.5rem;
  width: 250px;
}

.company-info {
  margin-right: 30px;
}

.company-info p {
  margin-bottom: 5px;
}

.map-btn {
  margin-left: 5px;
  padding: 1px 10px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
}
.map-btn:hover {
  color: #000;
  background-color: #fff;
}

.right {
  text-align: left;
}
.right ul {
  margin-top: 1rem;
}
.right li {
  margin-bottom: 0.5rem;
}
.right a {
  color: #fff;
}

.right h4 {
  margin-top: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.right h4 span {
  display: inline-block;
  width: 30px;
  margin-right: 10px;
}

.achievement__first-view {
  margin-top: 1.5rem;
}
.achievement__first-view img {
  border-radius: 20px;
}

h2 {
  position: relative;
  font-size: 26px;
  line-height: 1.6153846154;
}
@media (min-width: 768px) {
  h2 {
    font-size: 38px;
    line-height: 1.7368421053;
  }
}
h2::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: #278346;
}

.achievement {
  margin: 2rem 0 6rem;
}
@media (min-width: 768px) {
  .achievement-inner {
    max-width: 1000px;
  }
}
.achievement .contents {
  margin-top: 1rem;
  color: #fff;
  padding: 10px;
  width: 100%;
}
.achievement .contents ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1000px) {
  .achievement .contents ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 15px;
  }
}
.achievement .contents li {
  margin: 0.5em 0;
}
@media (min-width: 1000px) {
  .achievement .contents li {
    margin: 0;
  }
}
.achievement .contents a {
  display: inline-block;
  width: 100%;
  color: #fff;
  text-decoration: none;
  padding: 3px 0px;
  text-align: center;
  background-color: #278346;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 1.6666666667;
}
@media (min-width: 768px) {
  .achievement .contents a {
    font-size: 22px;
    line-height: 1.5454545455;
  }
}
.achievement .contents a:hover {
  opacity: 1;
  padding: 2px 9px;
  background-color: #f39800;
}
.achievement section {
  margin: 40px 0;
}
.achievement-wrapper {
  width: 100%;
}
.achievement-flow-sample-title {
  width: -moz-max-content;
  width: max-content;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 1.7142857143;
  color: #278346;
  background-color: #dce9bc;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .achievement-flow-sample-title {
    font-size: 18px;
    line-height: 1.5555555556;
  }
}
.achievement-flow-sample-list {
  margin: 2rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .achievement-flow-sample-list {
    margin: 0 0 2rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .achievement-flow-sample li {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
  }
}
.achievement-flow-sample-item {
  padding: 20px 15px;
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #dce9bc;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .achievement-flow-sample-item {
    margin: 0;
  }
}
.achievement-flow-sample .arrow {
  width: 50px;
  aspect-ratio: 1/1;
  transform: rotate(90deg);
}
.achievement-flow-sample .arrow-wrapper {
  margin: 1rem 0;
  display: inline-block;
}
@media (min-width: 768px) {
  .achievement-flow-sample .arrow-wrapper {
    margin: 0 1rem;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .achievement-flow-sample .arrow {
    transform: rotate(0);
  }
}

.achievement-item {
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .achievement-item {
    margin-top: 8rem;
  }
}
.achievement-item .achievement-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
.achievement-item .achievement-title h3 {
  color: #278346;
  margin-left: 10px;
  font-size: 22px;
  line-height: 1.2727272727;
}
@media (min-width: 768px) {
  .achievement-item .achievement-title h3 {
    font-size: 30px;
    line-height: 1.3333333333;
  }
}
.achievement-item .achievement-title h3 small {
  margin-top: 0px;
  display: inline-block;
  font-size: 14px;
  line-height: 1.4285714286;
}
.achievement-item .achievement-title img {
  width: 70px;
  height: 70px;
  aspect-ratio: 1/1;
  border: solid 1px #278346;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  padding-top: 10px;
  -o-object-position: 50% 0;
     object-position: 50% 0;
}
@media (min-width: 768px) {
  .achievement-item .achievement-title img {
    width: 100px;
    height: 100px;
  }
}
.achievement-item .achievement-content {
  background-color: #dce9bc;
  padding: 10% 15%;
  position: relative;
  border-radius: 20px;
}
@media (min-width: 1000px) {
  .achievement-item .achievement-content {
    width: 70%;
  }
}
@media (min-width: 768px) {
  .achievement-item .achievement-content {
    padding: 2.5rem 4rem;
  }
}
.achievement-item .achievement-content ::before {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -30px;
  right: 125px;
  transform: translateX(-50%);
  border-left: 20px solid transparent;
  border-top: 30px solid #dce9bc;
  border-right: 0px solid transparent;
}
@media (min-width: 1000px) {
  .achievement-item .achievement-content ::before {
    bottom: 50%;
    right: -30px;
    transform: translateY(50%);
    border-top: 16px solid transparent;
    border-left: 30px solid #dce9bc;
    border-bottom: 16px solid transparent;
  }
}
.achievement-item .achievement-content h5 {
  font-size: 20px;
  line-height: 1;
}
.achievement-item .achievement-content li {
  margin-top: 1rem;
  list-style: disc outside;
}
@media (min-width: 768px) {
  .achievement-item .achievement-content li {
    font-size: 18px;
    line-height: 1.2222222222;
  }
}
.achievement-item .achievement-content-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1000px) {
  .achievement-item .achievement-content-wrapper {
    flex-direction: row;
    align-items: center;
  }
}
.achievement-item .achievement-image {
  margin-top: 1rem;
  text-align: right;
}
@media (min-width: 1000px) {
  .achievement-item .achievement-image {
    width: 30%;
    max-width: 250px;
  }
}
.achievement-item .achievement-image img {
  width: 50%;
  max-width: 200px;
}
@media (min-width: 1000px) {
  .achievement-item .achievement-image img {
    width: 100%;
    max-width: none;
  }
}
@media (min-width: 1000px) {
  .achievement-item .achievement-image {
    margin: 0;
  }
}

.separation-line {
  width: 90%;
  margin: 7rem auto 11rem;
}
@media (min-width: 768px) {
  .separation-line {
    max-width: 900px;
  }
}

.page-links {
  margin: 0rem 0 1rem;
}
.page-links-inner {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .page-links-inner {
    max-width: 1000px;
    display: block;
  }
}
.page-links-top {
  display: contents;
}
@media (min-width: 768px) {
  .page-links-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.page-links-top .item-l {
  text-align: left !important;
}
.page-links-top .item-l .overlay-text {
  top: 20px !important;
  left: 20px !important;
}
.page-links-bottom {
  display: contents;
}
@media (min-width: 768px) {
  .page-links-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.page-links .item {
  width: calc(50% - 20px);
  position: relative;
  padding: 0;
  border: 2px solid #278346;
  margin-bottom: 40px;
  overflow: hidden;
  border-radius: 30px 0 30px 0;
  text-align: right;
  display: inline-block;
}
.page-links .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
}
.page-links .item .overlay-text {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #000;
  pointer-events: none;
  text-shadow: 1px 1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, -1px -1px rgb(255, 255, 255);
}
.page-links .item .overlay-heading {
  font-size: 18px;
  line-height: 1.4444444444;
}
.page-links .item .overlay-title-en {
  font-size: 12px;
  line-height: 1;
}
.page-links .item:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.page-links .item a {
  padding: 0;
  display: block;
  height: 100%;
  width: 100%;
  z-index: 2;
}
.page-links .item-content {
  position: relative;
  width: 100%;
  height: 100%;
}
.page-links .item-l {
  width: 100%;
  aspect-ratio: 2/1;
}
@media (min-width: 768px) {
  .page-links .item-l {
    width: 50%;
  }
}
@media (min-width: 800px) {
  .page-links .item-l {
    width: 54%;
  }
}
.page-links .item-l .overlay-title {
  font-size: 32px;
  line-height: 1.1875;
}
.page-links .item-s {
  width: 45%;
  aspect-ratio: 1/1;
}
@media (min-width: 768px) {
  .page-links .item-s {
    width: 25%;
  }
}
@media (min-width: 800px) {
  .page-links .item-s {
    width: 27%;
  }
}
.page-links .item-s .overlay-text {
  bottom: 20px;
  right: 5px;
}
@media (min-width: 768px) {
  .page-links .item-s .overlay-text {
    right: 5px;
  }
}
.page-links .item-s .overlay-title {
  font-size: 20px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .page-links .item-s .overlay-title {
    font-size: 22px;
    line-height: 1.5454545455;
  }
}
@media (min-width: 800px) {
  .page-links .item-s .overlay-title {
    font-size: 26px;
    line-height: 1.3076923077;
  }
}
.page-links-decoration {
  width: 111px;
  justify-content: center;
}
.page-links-decoration img {
  width: auto;
}

.company-info {
  margin-top: 2rem;
  margin-bottom: 4rem;
  width: 100%;
}
@media (min-width: 768px) {
  .company-info-inner {
    max-width: 800px;
  }
}
.company-info h3 {
  width: 100%;
  margin: 4rem 0 20px;
  text-align: left;
  font-size: 24px;
  line-height: 1.6666666667;
}
@media (min-width: 768px) {
  .company-info h3 {
    font-size: 28px;
    line-height: 1.7857142857;
  }
}
.company-info table {
  width: 100%;
  text-align: left;
}
.company-info tr {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  line-height: 1.3333333333;
}
@media (min-width: 768px) {
  .company-info tr {
    margin-bottom: 0px;
    flex-direction: row;
    font-size: 18px;
    line-height: 1.7222222222;
  }
}
.company-info th {
  display: flex;
  flex-direction: row;
}
.company-info-map {
  margin-top: 3rem;
  width: 100%;
  text-align: center;
}

.first-view-inner {
  margin: 0 auto;
  max-width: 800px;
}
.first-view-inner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 8/5;
  -o-object-position: 92% 50%;
     object-position: 92% 50%;
  border-radius: 20px;
}

.business {
  margin: 2rem 0 4rem;
}
.business .business-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .business .business-inner {
    max-width: 1000px;
  }
}
.business .business-inner .item {
  width: 100%;
  margin: 5rem auto 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .business .business-inner .item {
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 800px;
  }
}
.business .business-inner .item:last-of-type {
  margin-bottom: 0;
}
.business .business-inner .item .item-content {
  flex-grow: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .business .business-inner .item .item-content {
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
}
.business .business-inner .item .item-content .item-title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
  text-align: left;
}
.business .business-inner .item .item-content .item-title h3 {
  font-size: 28px;
  line-height: 1.0714285714;
}
@media (min-width: 768px) {
  .business .business-inner .item .item-content .item-title h3 {
    font-size: 36px;
    line-height: 1.1111111111;
  }
}
.business .business-inner .item .item-content .item-title img {
  width: auto;
  height: 40px;
  margin-right: 16px;
}
@media (min-width: 768px) {
  .business .business-inner .item .item-content .item-title img {
    height: 50px;
  }
}
.business .business-inner .item .item-content .item-list {
  margin-bottom: 30px;
  text-align: left;
}
.business .business-inner .item .item-content .item-list li {
  margin-bottom: 5px;
  list-style: disc outside;
  margin-left: 20px;
  font-size: 19px;
  line-height: 1.3684210526;
}
.business .business-inner .item .item-content .button {
  margin: 0 auto;
  width: 70%;
  text-align: center;
  display: inline-block;
  background-color: #753a1e;
  border: none;
  padding: 10px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  color: #fff;
  font-size: 19px;
  line-height: 1.3684210526;
}
.business .business-inner .item .item-content .button:hover {
  margin: -1px;
  border: 1px solid #753a1e;
  background-color: #fff;
  color: #753a1e;
}
.business .business-inner .item .item-image {
  flex-basis: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.matching {
  margin-bottom: 5rem;
}
.matching .section-inner {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .matching .section-inner {
    max-width: 800px;
  }
}
.matching .section-inner h3 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 80px;
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 1.1818181818;
}
@media (min-width: 768px) {
  .matching .section-inner h3 {
    font-size: 30px;
    line-height: 1.1333333333;
  }
}
.matching .section-inner h3 img {
  width: 50px;
  margin-right: 10px;
}
.matching .section-inner .matching-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.matching .section-inner .matching-wrapper p {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 1.3333333333;
}
@media (min-width: 768px) {
  .matching .section-inner .matching-wrapper p {
    font-size: 19px;
    line-height: 1.2631578947;
  }
}
.matching .section-inner .matching-wrapper ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .matching .section-inner .matching-wrapper .matching-content {
    margin-left: -30px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
}
.matching .section-inner .matching-wrapper .matching-content-list {
  position: relative;
  background-color: #dce9bc;
  border-radius: 10px;
  padding: 1.5rem 1rem;
}
@media (min-width: 768px) {
  .matching .section-inner .matching-wrapper .matching-content-list {
    padding: 1rem 3rem;
  }
}
.matching .section-inner .matching-wrapper .matching-content-list:after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -30px;
  right: 125px;
  transform: translateX(-50%);
  border-left: 20px solid transparent;
  border-top: 30px solid #dce9bc;
  border-right: 0px solid transparent;
}
@media (min-width: 768px) {
  .matching .section-inner .matching-wrapper .matching-content-list:after {
    bottom: 50%;
    right: 100%;
    transform: translateY(50%);
    border-top: 16px solid transparent;
    border-right: 30px solid #dce9bc;
    border-bottom: 16px solid transparent;
  }
}
.matching .section-inner .matching-wrapper .matching-image {
  margin: 0 0 0 auto;
  width: 50%;
  max-width: 150px;
}
.matching .section-inner .matching-wrapper li:nth-child(2) {
  margin: 0.5rem 0;
}
@media (min-width: 768px) {
  .matching .section-inner .matching-wrapper li {
    margin: 1rem 0;
    font-size: 17px;
    line-height: 1.1764705882;
  }
}
.matching .section-inner .matching-wrapper .match-free {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .matching .section-inner .matching-wrapper .match-free {
    margin-top: 1rem;
  }
}
.matching .section-inner .matching-wrapper .match-free p {
  margin: 0px;
  margin-top: 30px;
}
.matching .section-inner .matching-wrapper .match-free img {
  margin: 0 auto;
  width: 35%;
  max-width: 150px;
}
@media (min-width: 768px) {
  .matching .section-inner .matching-wrapper .match-free img {
    width: 100px;
  }
}

.top-section {
  padding: 50px 0;
}
.top-section .top-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .top-section .top-section-inner {
    max-width: 1000px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.top-section .top-section-inner .image-container {
  margin: 0 auto 0 0;
  margin-bottom: 20px;
  max-width: 450px;
}
@media (min-width: 768px) {
  .top-section .top-section-inner .image-container {
    margin: auto;
    width: 39%;
  }
}
@media (min-width: 980px) {
  .top-section .top-section-inner .image-container {
    width: auto;
  }
}
.top-section .top-section-inner .text-container {
  text-align: left;
}
.top-section .top-section-inner .title {
  color: #278346;
  text-align: left;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.5555555556;
}
@media (min-width: 768px) {
  .top-section .top-section-inner .title {
    font-size: 22px;
    line-height: 1.5454545455;
  }
}
.top-section .top-section-inner .description {
  color: #000;
  text-align: left;
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .top-section .top-section-inner .description {
    font-size: 18px;
    line-height: 1.4444444444;
  }
}

.company-profile-section {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.company-profile-section h3 {
  margin-bottom: 40px;
}
.company-profile-section .text-container p {
  text-align: left;
  margin: 0;
  font-size: 16px;
  line-height: 1.9375;
}
@media (min-width: 768px) {
  .company-profile-section .text-container p {
    font-size: 18px;
    line-height: 1.7222222222;
  }
}

.achievement-summary-section {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.achievement-summary-section .achievement-summary-heading {
  width: 100%;
  text-align: left;
  font-size: 19px;
  line-height: 1.3684210526;
  display: inline-block;
}
@media (min-width: 768px) {
  .achievement-summary-section .achievement-summary-heading {
    font-size: 22px;
    line-height: 1.1818181818;
  }
}
.achievement-summary-section .achievement-summary-content {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 768px) {
  .achievement-summary-section .achievement-summary-content {
    flex-direction: row;
  }
}
.achievement-summary-section .achievement-summary-content .achievement-summary-image {
  width: 100%;
}
@media (min-width: 768px) {
  .achievement-summary-section .achievement-summary-content .achievement-summary-image {
    width: 30%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.achievement-summary-section .achievement-summary-content .achievement-summary-list {
  width: 100%;
  margin: 0;
  margin-top: 1rem;
  padding-left: 30px;
}
@media (min-width: 768px) {
  .achievement-summary-section .achievement-summary-content .achievement-summary-list {
    width: 70%;
  }
}
.achievement-summary-section .achievement-summary-content .achievement-summary-list li {
  margin-bottom: 5px;
  list-style-type: decimal;
  font-size: 17px;
  line-height: 1.4117647059;
}
@media (min-width: 768px) {
  .achievement-summary-section .achievement-summary-content .achievement-summary-list li {
    font-size: 19px;
    line-height: 1.2631578947;
  }
}
.achievement-summary-section .achievement-summary-content .achievement-summary-list li:last-of-type span {
  margin-top: 5px;
  display: inline-block;
}

.achievement-contact-section {
  width: 100%;
  margin: 0 auto 8rem;
  text-align: center;
}
.achievement-contact-section .section-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #fff;
}
.achievement-contact-section .contact-button {
  width: 60%;
  display: inline-block;
  padding: 16px 32px;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 18px;
  background-color: #278346;
  border-radius: 10px;
}
.achievement-contact-section .contact-button:hover {
  opacity: 1;
  background-color: #f39800;
}

.flow {
  margin: 2rem 0 6rem;
}
.flow .section-inner {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .flow .section-inner {
    max-width: 1000px;
  }
}
.flow h2 {
  text-align: center;
}
.flow .content-wrapper {
  width: 100%;
  margin-top: 5rem;
}
.flow .step-title {
  display: flex;
  align-items: flex-end;
  border-bottom: 3px solid #278346;
  font-size: 22px;
  line-height: 1.8181818182;
}
@media (min-width: 768px) {
  .flow .step-title {
    font-size: 32px;
    line-height: 1.75;
  }
}
.flow .step-title .step-num {
  background-color: #278346;
  color: #fff;
  margin-right: 1rem;
  margin-bottom: -1px;
  padding-bottom: 10px;
  width: 50px;
  aspect-ratio: 8/9;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.1111111111;
  -webkit-clip-path: polygon(50% 0%, 100% 40%, 100% 100%, 0 100%, 0 40%);
          clip-path: polygon(50% 0%, 100% 40%, 100% 100%, 0 100%, 0 40%);
}
@media (min-width: 768px) {
  .flow .step-title .step-num {
    width: 70px;
    font-size: 23px;
    line-height: 1.2173913043;
  }
}
.flow .step-image {
  width: 80%;
  text-align: center;
  margin: 3rem auto;
}
.flow .step-image img {
  max-width: 100%;
  height: auto;
}
.flow .step-points {
  border: 3px solid #278346;
  padding-top: 2rem;
  position: relative;
  border-radius: 20px;
}
.flow .step-points h4.points-title {
  position: absolute;
  color: #278346;
  display: inline-block;
  background-color: #fff;
  top: -13px;
  left: 15px;
  padding: 0 10px;
  font-size: 22px;
  line-height: 1.1818181818;
}
@media (min-width: 768px) {
  .flow .step-points h4.points-title {
    top: -15px;
    font-size: 24px;
    line-height: 1.1666666667;
  }
}
.flow .step-points ul {
  list-style: none;
  margin: 0;
  padding: 1rem 2rem 1rem 3rem;
}
.flow .step-points ul li {
  margin-bottom: 1rem;
  line-height: 2;
  font-size: 1.2rem;
  list-style: disc outside;
  font-size: 16px;
  line-height: 1.125;
}
@media (min-width: 768px) {
  .flow .step-points ul li {
    font-size: 18px;
    line-height: 1.2222222222;
  }
}
.flow-pagelinks {
  margin-top: 5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .flow-pagelinks {
    flex-direction: row;
    justify-content: space-between;
  }
}
.flow-pagelinks .button {
  width: 100%;
  max-width: 300px;
  text-align: center;
  padding: 10px 0;
  display: inline-block;
  border-radius: 50px;
  color: #fff;
  background-color: #278346;
}
.flow-pagelinks .button:hover {
  opacity: 1;
  background-color: #f39800;
}
.flow-pagelinks .button:first-child {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .flow-pagelinks .button:first-child {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .flow-pagelinks .button {
    width: 45%;
    max-width: none;
  }
}

.privacy-policy {
  margin: 5rem 0;
}
.privacy-policy-section {
  margin: 5rem 0;
}
.privacy-policy ul {
  margin-top: 2rem;
}
.privacy-policy ol,
.privacy-policy li {
  margin-top: 0.5rem;
}
.privacy-policy ol {
  padding-left: 1.5rem;
}
.privacy-policy-list-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.4166666667;
}
.privacy-policy-list-child li {
  list-style: decimal outside;
}
.privacy-policy__close {
  text-align: center;
}
.privacy-policy__close input {
  padding: 1rem 3rem;
  color: #fff;
  background-color: #278346;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  line-height: 1.125;
  font-family: kozuka-mincho-pr6n, serif;
  font-weight: 400;
  font-style: normal;
}
.privacy-policy__close input:hover {
  cursor: pointer;
}

.contact-form .contents {
  margin: 1rem auto 5rem;
  max-width: 300px;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-form .contents {
    max-width: 700px;
  }
}

.contact-form .section-title {
  padding-top: 0;
}

.contact-form .toi {
  margin: 0 auto;
  max-width: 300px;
  border-right: none;
}
.contact-form .toi_naiyou {
  background-color: #dce9bc;
}

.accbox {
  padding: 1rem;
}

.contact-form input {
  width: 100%;
  height: 100%;
  font-size: 20px;
  background-color: #dce9bc;
  border: none;
}

.flex-left {
  border: none;
}

.contact-form .flex-area {
  margin: 4rem auto 2rem;
  border-bottom: 2px solid #278346;
}
.contact-form .flex-area:first-child {
  margin-bottom: 0;
}

.contact-form .toi_label {
  padding: 0.2rem 0.5rem;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  color: #278346;
}
@media (min-width: 768px) {
  .contact-form .toi_label {
    width: 30%;
  }
}

.contact-form {
  margin: 5rem 0;
}
.contact-form small {
  font-weight: bold;
  color: #278346;
  font-size: 14px;
  line-height: 1.7142857143;
}
@media (min-width: 768px) {
  .contact-form small {
    font-size: 16px;
    line-height: 1.5;
  }
}

.contact-form textarea {
  width: 100%;
  height: 100%;
  font-size: 16px;
  resize: none;
  border: none;
  background-color: #dce9bc;
}

.contact-form .btn_form {
  margin: 0 20px;
  padding: 10px 5px 5px;
  display: block;
  position: relative;
  height: auto;
  font-size: 16px;
  font-weight: bold;
}
.contact-form .btn_form input {
  background-color: transparent;
  font-family: kozuka-mincho-pr6n, serif;
  font-weight: 400;
  font-style: normal;
}

.contact-form .btn_form::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: #278346;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s; /*変形の時間*/
}

.contact-form .btn_form input:hover {
  cursor: pointer;
}

.contact-form .btn_form:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  transform-origin: left top; /*左から右に向かう*/
}

.policy_btn {
  margin-top: 4rem;
}
.policy_btn a {
  color: #146eff;
  text-decoration: underline;
}

.contact-confirm .toi_label {
  font-size: 20px;
}

.contact-confirm .toi_naiyou {
  padding: 0 10px;
  height: auto;
  font-size: 20px;
  background-color: #dce9bc;
  border: none;
  justify-content: flex-start;
}

.contact-confirm .toi_naiyou_text-area {
  height: auto;
  overflow-wrap: break-word;
}

.thanks-page {
  margin: 5rem 0;
}

.thanks-text {
  margin: 0 auto;
  padding: 5rem 0;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  font-size: 16px;
}

.toi_submit {
  border: none !important;
}

@media (min-width: 768px) {
  .contact-form .toi {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .contact-form .toi_naiyou {
    width: 70%;
  }
  .contact-form textarea {
    font-size: 20px;
  }
  .thanks-text {
    font-size: 22px;
  }
}
.swiper-container {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  margin-left: 10px;
  width: auto;
  white-space: nowrap;
  text-align: left;
  font-size: 14px;
  line-height: 1.4285714286;
}/*# sourceMappingURL=style.css.map */