@charset "UTF-8";
/** @format */
/** @format */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  color: #3a3937;
  background-color: #fffbf2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.8;
}

.wrapper {
  width: 100%;
  max-width: 1104px;
  margin: 0 auto;
}

.page-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-title {
  font-size: 3.6rem;
  color: #1ea469;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }
}

.page-subtitle {
  font-size: 1.6rem;
  color: #3a3937;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .page-subtitle {
    font-size: 1.4rem;
  }
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .section-heading {
    gap: 5px;
  }
}

.section-title {
  font-size: 3.2rem;
  color: #3a3937;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 1.6rem;
  color: #9cd81c;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .section-subtitle {
    font-size: 1.4rem;
  }
}

.cta {
  background-image: url("../img/common/cta-bg_pc.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .cta {
    background-image: url("../img/common/cta-bg_sp.png");
  }
}

.cta__contents {
  padding: 40px 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 480px) {
  .cta__contents {
    padding: 40px 20px;
  }
}

.cta__heading {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cta__title {
  font-size: 3.2rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 480px) {
  .cta__title {
    font-size: 2.4rem;
  }
}

.cta__text {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.15);
}

.cta__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cta__link {
  background-color: #fff;
  padding: 16px 16px 16px 100px;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 15px;
  transition: all 0.2s;
}
@media screen and (max-width: 480px) {
  .cta__link {
    padding: 12.5px 12.5px 12.5px 40px;
    max-width: 251px;
  }
}
.cta__link::before {
  content: "";
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
}

.cta__instagram {
  color: #fc63ef;
}
.cta__instagram:hover {
  color: #fff;
  background-color: #ff92f6;
}
.cta__instagram::before {
  background-image: url("../img/common/instagram-icon.svg");
}
.cta__instagram:hover::before {
  background-image: url("../img/common/instagram-icon_hover.svg");
}

.cta__youtube {
  color: #ff5e95;
}
.cta__youtube:hover {
  color: #fff;
  background-color: #ff5e95;
}
.cta__youtube::before {
  background-image: url("../img/common/youtube-icon.svg");
}
.cta__youtube:hover::before {
  background-image: url("../img/common/youtube-icon_hover.svg");
}

.cta__youtubeBox {
  position: relative;
  max-width: 380px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .cta__youtubeBox {
    max-width: 251px;
  }
}

.cta__youtubeLinks {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 90%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  padding: 20px;
  display: grid;
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 10;
}
@media screen and (max-width: 480px) {
  .cta__youtubeLinks {
    width: 100%;
    padding: 20px 8px;
  }
}

.cta__youtubeBox.is-open .cta__youtubeLinks {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.cta__youtubeLinksItem {
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: underline;
  width: fit-content;
  margin: 0 auto;
}
.cta__youtubeLinksItem:hover {
  color: #0090ff;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-size: 1.5rem;
  color: #3a3937;
  font-weight: bold;
  display: flex;
  gap: 10px;
  align-items: center;
}
.form__label .form__label--required {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
  background-color: #ff5e95;
  padding: 2px 4px;
}

.form__select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../img/common/select-arrow.svg");
  background-repeat: no-repeat;
  background-size: 24px auto; /* 画像のサイズ（幅 高さ）*/
  background-position: right 20px center; /* 画像の位置 */
  background-color: #fff;
  width: 281px;
  height: 60px;
  border: 1px solid #f8e351;
  padding-left: 20px;
  font-size: 1.4rem;
}

.form__input {
  background-color: #fff;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  border: 1px solid #f8e351;
  font-size: 1.4rem;
}

.form__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__textarea {
  background-color: #fff;
  width: 100%;
  height: 120px;
  padding: 20px;
  border: 1px solid #f8e351;
  resize: none;
  font-size: 1.4rem;
}

.form__rule {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__ruleText {
  font-size: 1.4rem;
  color: #3a3937;
  font-weight: 500;
  line-height: 1.8;
}

.form__ruleLink {
  color: #0090ff;
  text-decoration: underline;
}

.form__ruleCheckBox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form__ruleCheckBox .wpcf7-list-item-label {
  font-size: 1.8rem;
  color: #3a3937;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  .form__ruleCheckBox .wpcf7-list-item-label {
    font-size: clamp(1.4rem, 3.75vw, 1.8rem);
  }
}
.form__ruleCheckBox .form__label--required {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
  background-color: #ff5e95;
  padding: 2px 4px;
  margin-bottom: 9px;
}
.form__ruleCheckBox .form__ruleCheck {
  width: 24px;
  height: 24px;
  margin-bottom: 9px;
}
@media screen and (max-width: 480px) {
  .form__ruleCheckBox .form__ruleCheck {
    width: clamp(18px, 5vw, 24px);
    height: clamp(18px, 5vw, 24px);
  }
}

.form__ruleBtnbox {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form__ruleBtnboxText {
  font-size: 1.6rem;
  color: #3a3937;
  font-weight: 500;
}

.form__submitWrapper {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.form__submitWrapper::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  content: "";
  background-image: url("../img/common/submit-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}
.form__submitWrapper .wpcf7-spinner {
  display: none;
}

.form__submit {
  font-size: 1.6rem;
  color: #fff;
  background-color: #f8e351;
  padding: 16px 54px 16px 30px;
  border-radius: 15px;
  font-weight: bold;
  box-shadow: -7px 7px 7px rgba(0, 0, 0, 0.05);
  display: block;
}

.wpcf7-not-valid-tip, .wpcf7-response-output {
  font-size: 1.4rem;
}

/* Contact Form 7：送信成功時の緑枠メッセージを非表示にする */
.wpcf7 form.sent .wpcf7-response-output {
  display: none !important;
}

.fadein {
  opacity: 0;
  transition: opacity 2s;
}

.fadein.show {
  opacity: 1;
}

/** @format */
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.aboutFV__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 240px 40px 120px;
}
@media screen and (max-width: 480px) {
  .aboutFV__contents {
    padding: 150px 20px 80px;
    gap: 0;
  }
}

.aboutFV__details {
  display: flex;
  gap: 92px;
}
@media screen and (max-width: 1024px) {
  .aboutFV__details {
    gap: 48px;
  }
}
@media screen and (max-width: 768px) {
  .aboutFV__details {
    flex-direction: column;
    gap: 16px;
  }
}

.aboutFV__detailsItem {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .aboutFV__detailsItem {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

.aboutFV__img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .aboutFV__img {
    width: 50%;
  }
}

.aboutFV__textbox {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .aboutFV__textbox {
    width: 50%;
  }
}

.aboutFV__detailsTitle {
  font-size: 2rem;
  color: #1ea469;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .aboutFV__detailsTitle {
    font-size: 1.6rem;
  }
}

.aboutFV__detailsText {
  font-size: 1.6rem;
  font-weight: 500;
  color: #3a3937;
}
@media screen and (max-width: 480px) {
  .aboutFV__detailsText {
    font-size: 1.4rem;
  }
}

/** @format */
.aboutBenefit1__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 40px 120px;
  max-width: 894px;
}
@media screen and (max-width: 480px) {
  .aboutBenefit1__contents {
    padding: 0 20px 80px;
    gap: 32px;
  }
}

.aboutBenefit1__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .aboutBenefit1__details {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .aboutBenefit1__details {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .aboutBenefit1__details {
    gap: 16px;
  }
}

.aboutBenefit1__item {
  background-color: #fff;
  padding: 10px;
  border-radius: 15px;
  box-shadow: -7px 7px 0 rgba(254, 216, 108, 0.5);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aboutBenefit1__itemTitle {
  font-size: 1.6rem;
  color: #3a3937;
  font-weight: bold;
  display: flex;
  align-items: center;
  line-height: 1.5;
  gap: 2px;
}
.aboutBenefit1__itemTitle::before {
  content: "";
  background-image: url("../img/pages/about/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}

.aboutBenefit1__itemText {
  font-size: 1.4rem;
  color: #3a3937;
  font-weight: 500;
}

/** @format */
.aboutClover {
  background-image: url("../img/common/clover.png");
  background-repeat: no-repeat;
  background-size: 445px;
}
@media screen and (max-width: 768px) {
  .aboutClover {
    background-size: 300px;
  }
}
@media screen and (max-width: 480px) {
  .aboutClover {
    background-size: 150px;
  }
}

.aboutBenefit2__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 40px 120px;
  max-width: 894px;
}
@media screen and (max-width: 480px) {
  .aboutBenefit2__contents {
    padding: 0 20px 80px;
    gap: 32px;
  }
}

.aboutBenefit2__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .aboutBenefit2__details {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .aboutBenefit2__details {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .aboutBenefit2__details {
    gap: 16px;
  }
}

.aboutBenefit2__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aboutBenefit2__itemTitle {
  font-size: 1.6rem;
  color: #1ea469;
  font-weight: bold;
  border-left: 5px solid #1ea469;
  padding-left: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
}

.aboutBenefit2__itemText {
  font-size: 1.4rem;
  color: #3a3937;
  font-weight: 1.4rem;
}

/** @format */
.aboutMission__contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 0 120px;
}
@media screen and (max-width: 480px) {
  .aboutMission__contents {
    padding: 0 0 80px;
    gap: 32px;
  }
}

.aboutMission__details {
  display: flex;
  gap: 30px;
  align-items: center;
  max-width: 85.5555555556vw;
  margin-right: 40px;
}
@media screen and (max-width: 1024px) {
  .aboutMission__details {
    flex-direction: column;
    max-width: none;
    margin-right: 0;
  }
}

.aboutMission__img {
  max-width: 48.6111111111vw;
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .aboutMission__img {
    max-width: none;
    width: calc(100% - 40px);
    margin-right: 40px;
  }
}
@media screen and (max-width: 480px) {
  .aboutMission__img {
    margin-right: 20px;
    width: calc(100% - 20px);
  }
}

.aboutMission__textbox {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .aboutMission__textbox {
    padding: 0 40px;
  }
}
@media screen and (max-width: 480px) {
  .aboutMission__textbox {
    padding: 0 20px;
    gap: 30px;
  }
}

.aboutMission__title {
  font-size: 2rem;
  color: #1ea469;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .aboutMission__title {
    font-size: 1.6rem;
  }
}

.aboutMission__text {
  font-size: 1.6rem;
  color: #3a3937;
  line-height: 1.8;
}

.aboutMission__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aboutMission__label {
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  background-color: #1ea469;
  padding: 10px 20px;
  border-radius: 5px;
  width: fit-content;
}
@media screen and (max-width: 480px) {
  .aboutMission__label {
    font-size: 1.6rem;
    padding: 5.5px 20px;
  }
}

/** @format */
.aboutMessage__contents {
  padding: 0 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 896px;
}
@media screen and (max-width: 480px) {
  .aboutMessage__contents {
    padding: 0 20px 80px;
    gap: 32px;
  }
}

.aboutMessage__details {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .aboutMessage__details {
    flex-direction: column;
  }
}

.aboutMessage__imgbox {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .aboutMessage__imgbox {
    margin: 0 auto;
  }
}

.aboutMessage__img {
  max-width: 280px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .aboutMessage__img {
    max-width: none;
  }
}

.aboutMessage__name {
  font-size: 1.4rem;
  color: #3a3937;
  font-weight: 500;
}

.aboutMessage__textbox {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: calc(100% - 320px);
}
@media screen and (max-width: 768px) {
  .aboutMessage__textbox {
    width: 100%;
  }
}

.aboutMessage__text {
  font-size: 1.4rem;
  color: #3a3937;
  font-weight: 500;
  line-height: 1.8;
}

/** @format */
.aboutCorporation__contents {
  padding: 0 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 896px;
}
@media screen and (max-width: 480px) {
  .aboutCorporation__contents {
    padding: 0 20px 80px;
    gap: 32px;
  }
}

.aboutCorporation__tablewrapper {
  background-color: #fff;
  padding: 0 6px;
}

.aboutCorporation__table {
  border-collapse: collapse;
  width: 100%;
}

.aboutCorporation__line {
  border-bottom: 1px solid #f8e351;
}
.aboutCorporation__line:last-child {
  border-bottom: none;
}

.aboutCorporation__tableTitle {
  font-size: 1.5rem;
  color: #3a3937;
  font-weight: bold;
  width: 174px;
  vertical-align: middle;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .aboutCorporation__tableTitle {
    display: block;
    width: 100%;
    padding: 11px 20px;
  }
}

.aboutCorporation__tableContent {
  font-size: 1.4rem;
  color: #3a3937;
  font-weight: 500;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .aboutCorporation__tableContent {
    display: block;
  }
}

.aboutCorporation__tableTextbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .aboutCorporation__tableTextbox {
    gap: 0;
  }
}

.aboutCorporation__tableText {
  font-size: 1.4rem;
  color: #3a3937;
  font-weight: 500;
}

/** @format */
.aboutFacility__contents {
  padding: 0 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 894px;
}
@media screen and (max-width: 480px) {
  .aboutFacility__contents {
    padding: 0 20px 80px;
    gap: 32px;
  }
}

.aboutFacility__text {
  font-size: 1.6rem;
  color: #3a3937;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.04px;
  line-height: 1.8;
}

.aboutFacility__details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.aboutFacility__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aboutFacility__itemTitle {
  font-size: 2rem;
  color: #3a3937;
  font-weight: bold;
  border-left: 5px solid #1ea469;
  padding-left: 10px;
  margin: 10px 0;
}

.aboutFacility__itemText {
  font-size: 1.4rem;
  font-weight: 500;
  color: #3a3937;
  line-height: 1.8;
}

.aboutFacility__card {
  display: flex;
  border-radius: 15px;
  align-items: center;
  background-color: #fff;
  max-width: 386px;
}

.aboutFacility__cardImg {
  max-width: 150px;
  width: 100%;
  border-radius: 15px 0 0 15px;
}
@media screen and (max-width: 480px) {
  .aboutFacility__cardImg {
    max-width: 130px;
  }
}

.aboutFacility__cardContent {
  background-color: #fff;
  padding: 20px 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 0 15px 15px 0;
}

.aboutFacility__cardTitle {
  font-size: 1.6rem;
  color: #1ea469;
  font-weight: bold;
}

.aboutFacility__cardText {
  font-size: 1.4rem;
  color: #3a3937;
  font-weight: 500;
}

.aboutFacility__cardBox {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .aboutFacility__cardBox {
    flex-direction: column;
  }
}/*# sourceMappingURL=about.css.map */