@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;
}

.newsFV {
  background-image: url("../img/pages/news/news-fvbg.png");
  background-repeat: no-repeat;
  background-size: min(34.2361111111vw, 493px);
  background-position: bottom 40px right;
}
@media screen and (max-width: 768px) {
  .newsFV {
    background-size: min(39.0625vw, 300px);
    background-position: top 130px left;
  }
}
@media screen and (max-width: 480px) {
  .newsFV {
    background-size: min(34.375vw, 165px);
    background-position: top 120px left;
  }
}

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

.newsFV__img {
  max-width: 526px;
  width: 100%;
  margin: 0 auto;
}

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

.newsContents {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 706px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .newsContents {
    max-width: none;
  }
}

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

.newsContents__img {
  height: 437px;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .newsContents__img {
    height: 207px;
  }
}

.newsContents__details h1 {
  font-size: 4.8rem;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .newsContents__details h1 {
    font-size: 3rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .newsContents__details h1 {
    font-size: 6.25vw;
  }
}
.newsContents__details h2 {
  font-size: 3.2rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .newsContents__details h2 {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .newsContents__details h2 {
    font-size: 2rem;
  }
}
.newsContents__details h3 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}
@media screen and (max-width: 480px) {
  .newsContents__details h3 {
    font-size: 1.8rem;
  }
}
.newsContents__details h4, .newsContents__details h5, .newsContents__details h6 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
@media screen and (max-width: 480px) {
  .newsContents__details h4, .newsContents__details h5, .newsContents__details h6 {
    font-size: 1.8rem;
  }
}
.newsContents__details p {
  font-size: 1.6rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .newsContents__details p {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 480px) {
  .newsContents__details p {
    font-size: 1.4rem;
  }
}
.newsContents__details ul {
  padding-left: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .newsContents__details ul {
    margin-bottom: 24px;
  }
}
.newsContents__details ul li {
  font-size: 1.6rem;
  list-style-type: disc;
}
.newsContents__details ol {
  padding-left: 24px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .newsContents__details ol {
    margin-bottom: 24px;
  }
}
.newsContents__details ol li {
  font-size: 1.6rem;
  list-style-type: decimal;
}
.newsContents__details a {
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: underline;
  transition: all 0.2s;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .newsContents__details a {
    margin-bottom: 24px;
  }
}
.newsContents__details a:hover {
  opacity: 0.7;
}
.newsContents__details img {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .newsContents__details img {
    margin-bottom: 24px;
  }
}

/** @format */
.newsSidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 278px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .newsSidebar {
    max-width: none;
  }
}

.newsSidebar__title {
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  background-color: #1ea469;
  padding: 8px 16px;
  border-radius: 5px 5px 0 0;
}

.newsSidebar__menu {
  background-color: #fff;
  border-radius: 0 0 5px 5px;
}

.newsSidebar__link {
  display: block;
  padding: 16px;
}

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

.newsSidebar__date {
  font-size: 1.3rem;
  font-weight: 500;
  color: #ababab;
}/*# sourceMappingURL=news.css.map */