@charset "UTF-8";
/*
@useで読み込むこと
*/
/** @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;
}

/** @format */
/*
@useで読み込むこと
*/
/** @format */
/** @format */
/** @format */
/** @format */
.header {
  padding: 0 20px;
  position: fixed;
  top: 53px;
  z-index: 999;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header {
    top: 10px;
  }
}

.header__contents {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .header__contents {
    padding: 7.5px 15px;
  }
}

.header__logo {
  padding: 0 0 0 40px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    padding: 0;
  }
}

.header__logoLink {
  display: block;
  max-width: 183px;
}
@media screen and (max-width: 1024px) {
  .header__logoLink {
    max-width: 17.87109375vw;
  }
}
@media screen and (max-width: 768px) {
  .header__logoLink {
    max-width: 128px;
  }
}

.header__logoImg {
  width: 100%;
}

.header__contents:has(.active) .header__logoLink {
  max-width: 183px;
  left: -15px;
}

.header__nav {
  display: flex;
  gap: 15px;
  padding: 0 20px 0 0;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    gap: 1.46484375vw;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #02a468;
    transition: ease 0.2s;
    flex-direction: column;
    padding: 90px 20px 120px 20px;
    gap: 8px;
    overflow: auto;
    z-index: 99;
  }
}

.header__nav.active {
  transform: translateX(0);
}

.header__menu {
  display: flex;
  gap: 46px;
}
@media screen and (max-width: 1024px) {
  .header__menu {
    gap: 1.5625vw;
  }
}
@media screen and (max-width: 768px) {
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    padding: 0 15px;
  }
}

.header__list {
  padding: 29px 0;
}
@media screen and (max-width: 768px) {
  .header__list {
    width: 100%;
    border-top: 1px solid #fff;
    padding: 0;
  }
}

.header__list.is-current {
  position: relative;
  color: #1ea469;
}
.header__list.is-current::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background-color: #f8e351;
  border-radius: 50%;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .header__list.is-current::after {
    content: none;
  }
}

.header__link {
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .header__link {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .header__link {
    color: #fff;
    font-size: 1.8rem;
    padding: 32px 8px;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: 900;
  }
}

@media screen and (max-width: 768px) {
  .header__list:has(.header__submenubox) .header__link {
    padding: 32px 8px 20px;
  }
}

.header__btn {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .header__btn {
    gap: 1.46484375vw;
  }
}
@media screen and (max-width: 768px) {
  .header__btn {
    width: 100%;
    align-items: flex-start;
    gap: 15px;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .header__btnList {
    flex: 1;
  }
}

.header__btnLink {
  display: block;
  border-radius: 5px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 9px 4px;
  transition: all 0.2s;
}
@media screen and (max-width: 1024px) {
  .header__btnLink {
    padding: 9px 0.390625vw;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .header__btnLink {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 1.8rem;
    width: 160px;
    height: 65px;
    border-radius: 15px;
    text-align: center;
    padding: 19.5px 8px;
  }
}
@media screen and (max-width: 480px) {
  .header__btnLink {
    width: 100%;
    padding: 20px 4px;
    font-size: clamp(1.6rem, 3.75vw, 1.8rem);
    letter-spacing: normal;
  }
}

.header__btnLink--green {
  background-color: #1ea469;
  border: 3px solid #1ea469;
}
@media screen and (max-width: 768px) {
  .header__btnLink--green {
    background-color: #9cd81c;
    border: 3px solid #9cd81c;
  }
}
@media (hover: hover) {
  .header__btnLink--green:hover {
    background-color: #fff;
    color: #1ea469;
    border: 3px solid #1ea469;
  }
}
@media screen and (hover: hover) and (max-width: 768px) {
  .header__btnLink--green:hover {
    color: #9cd81c;
    border: 3px solid #9cd81c;
  }
}

.header__btnLink--yellow {
  background-color: #f8e351;
  border: 3px solid #f8e351;
}
@media (hover: hover) {
  .header__btnLink--yellow:hover {
    background-color: #fff;
    color: #fdd23c;
    border: 3px solid #fdd23c;
  }
}

.header__hamburgerBtnbox {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__hamburgerBtnbox {
    display: flex;
  }
}

.header__hamburgerBtnboxText {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 900;
  margin-top: 5px;
}

.header__hamburgerBtnbox.active {
  height: 30px;
  cursor: pointer;
}
.header__hamburgerBtnbox.active .header__hamburgerBtnboxText {
  display: block;
  z-index: 999;
  white-space: nowrap;
}

.header__hamburgerBtn {
  display: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #1ea469;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__hamburgerBtn {
    display: block;
    z-index: 999;
  }
}
.header__hamburgerBtn span {
  width: 22px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: ease 0.2s;
  display: block;
  border-radius: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.header__hamburgerBtn span:nth-child(1) {
  top: 19.44px;
}
.header__hamburgerBtn span:nth-child(2) {
  top: 28.44px;
}

.header__hamburgerBtnbox.active .header__hamburgerBtn span:nth-child(1) {
  top: 14px;
  transform: rotate(45deg);
}
.header__hamburgerBtnbox.active .header__hamburgerBtn span:nth-child(2) {
  top: 14px;
  transform: rotate(-45deg);
}

.header__submenubox {
  display: none;
  border-radius: 10px;
  position: absolute;
  top: 76px;
  width: 250px;
}
@media screen and (max-width: 768px) {
  .header__submenubox {
    display: block;
    position: static;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
  }
}

@media (hover: hover) {
  .header__list:hover .header__submenubox {
    display: block;
  }
}
.header__list.open .header__submenubox {
  overflow: hidden;
}

.header__submenuTitle {
  font-size: 1.5rem;
  color: #fff;
  background-color: #1ea469;
  padding: 15px 15px 10px;
  border-radius: 10px 10px 0 0;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .header__submenuTitle {
    display: none;
  }
}

.header__submenu {
  background-color: #fff;
  padding: 10px 20px 20px;
  border-radius: 0 0 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .header__submenu {
    background-color: #1ea469;
    padding: 0;
    align-items: center;
    margin-bottom: 32px;
  }
}

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

.header__list.open .header__link::after {
  transform: translateY(-50%) rotate(0deg);
}

/** @format */
/** @format */
.footer {
  background-color: #fff;
  padding: 102px min(7.6388888889vw, 110px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 480px) {
  .footer {
    padding: 40px 20px;
  }
}

.footer__contents {
  display: flex;
  gap: min(5.625vw, 81px);
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer__contents {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 480px) {
  .footer__contents {
    gap: 48px;
  }
}

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

.footer__logoLink {
  max-width: 183px;
}

.footer__logoImg {
  width: 100%;
}

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

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

.footer__infoTel {
  display: flex;
  align-items: center;
  font-size: 3.2rem;
  color: #3a3937;
  font-weight: 900;
  white-space: nowrap;
}
.footer__infoTel::before {
  content: "";
  background-image: url("../img/common/tel-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
}

.footer__right {
  display: flex;
  gap: min(5.625vw, 81px);
}
@media screen and (max-width: 1024px) {
  .footer__right {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .footer__right {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .footer__right {
    gap: 32px;
  }
}

.footer__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .footer__item {
    gap: 16px;
  }
}

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

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

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

.footer__copyright {
  font-size: 1rem;
  color: #ababab;
  text-align: center;
}

/** @format */
/* Slider */
.slick-loading .slick-list {
  background: #fff slick-image-url("ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: none !important;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 25px;
}
[dir=rtl] .slick-prev {
  left: auto;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: 25px;
}
[dir=rtl] .slick-next {
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -35px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 30px;
  line-height: 20px;
  text-align: center;
  color: #dddddd;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #dddddd;
  opacity: 0.75;
}/*# sourceMappingURL=global.css.map */