@charset "UTF-8";
/* ==========================================================================
   Mixin　ミックスインの定義
   ========================================================================== */
/**
 * media queries
**/
/*! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat; /* 1 */
  box-sizing: inherit; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritence in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
  box-sizing: border-box; /* 1 */
  cursor: default; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/*h1 {
	font-size: 2em;
	margin: .67em 0;
}*/
/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
/*figure {
	margin: 1em 40px;
}*/
/**
 * 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 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
/*nav ol,
nav ul {
	list-style: none;
}*/
/**
 * 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: 1em; /* 2 */
}

/* Text-level semantics (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

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

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * 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: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ffff00;
  color: #000000;
}

/**
 * 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;
}

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */
::-moz-selection {
  background-color: #b3d4fc; /* 1 */
  color: #000000; /* 1 */
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc; /* 1 */
  color: #000000; /* 1 */
  text-shadow: none;
}

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
/**
 * Collapse border spacing
 */
table {
  border-collapse: collapse;
}

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

/**
 * Inherit styling in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  /* background-color: transparent; */
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  overflow: auto; /* 1 */
  resize: vertical; /* 2 */
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 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 odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

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

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

/* Interactive elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

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

/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation;
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
  cursor: default;
}

/* All browsers without overlaying scrollbars */
html {
  overflow-y: scroll;
}

/* Reset padding and margin of all elements */
* {
  padding: 0;
  margin: 0;
}

/* Inherit styling in all browsers */
button,
input,
select,
textarea {
  font-family: inherit;
}

/* Remove focus outline in all browsers */
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

/* Remove input background color in Chrome */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

/* Set table width & table-layout */
table {
  width: 100%;
  table-layout: fixed;
}

body {
  font-family: "Noto Sans Japanese", sans;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 88.8%;
  line-height: 1.7;
  font-weight: 400;
  color: #444;
}

p {
  line-height: 1.7;
}
p:not(:last-of-type) {
  margin-bottom: 1.5em;
}

a {
  color: #444;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
  transition: 0.2s ease-in-out;
}
.thumb > img {
  width: 100%;
}

.thumb {
  overflow: hidden;
}
a:hover .thumb img {
  transform: scale(1.1);
}

h2, h3, h4, h5 {
  font-weight: bold;
  margin: 0 0 1.5em;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.4em;
}

h4 {
  font-size: 1.3em;
}

h5 {
  font-size: 1.2em;
}

hr {
  border: 0;
  border-top: 1px dashed #cfcfcf;
  margin: 3em 0;
}

ul {
  list-style: none;
}

q {
  quotes: "“" "”" "‘" "’";
}

blockquote {
  padding: 1.5em;
  margin: 2em 0;
  position: relative;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

blockquote:before,
blockquote:after {
  font-family: "FontAwesome";
  position: absolute;
  font-size: 2em;
  color: #cfcfcf;
}

blockquote:before {
  content: "\f10d";
  left: 0.5em;
  top: 0;
}

blockquote:after {
  content: "\f10e";
  right: 0.5em;
  bottom: 0;
}

blockquote p {
  font-weight: bold;
  margin: 1.5em 0;
}

.youtube-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube-wrap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.googlemap-wrap {
  position: relative;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: 100%;
}
.googlemap-wrap iframe, .googlemap-wrap object, .googlemap-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body {
  color: #2f1d0f;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hanaeri2025 {
  position: relative;
  background-color: #fffee9;
}
.hanaeri2025 p {
  font-size: 16px;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .hanaeri2025 p {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }
}
.hanaeri2025 p:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
.hanaeri2025 p.db {
  margin-top: 3em;
}
.hanaeri2025 p.tb {
  margin-top: 4.5em;
}
.hanaeri2025-Deco1 {
  font-weight: 600;
  color: #d658a0;
}
.hanaeri2025-Deco2 {
  font-weight: bold;
  background: linear-gradient(transparent 70%, #9acaab 70%);
  padding: 0 0.2em;
}
.hanaeri2025-Deco3 {
  font-weight: bold;
  text-decoration: underline;
}
.hanaeri2025-Deco4 {
  font-weight: bold;
}
.hanaeri2025-H2 {
  position: relative;
  font-family: "Noto Serif Japanese", serif;
  text-align: center;
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0 auto;
  padding: 3rem 1rem 0;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .hanaeri2025-H2 {
    font-size: 2.3rem;
    font-weight: normal;
  }
}
.hanaeri2025-H2 span {
  color: #d658a0;
}
@media screen and (min-width: 768px) {
  .hanaeri2025-H2 {
    letter-spacing: 2px;
    padding: 5rem 1rem 0;
  }
}
@media screen and (min-width: 1366px) {
  .hanaeri2025-H2 {
    letter-spacing: 4px;
  }
}
.hanaeri2025-H2_Wrap {
  background-size: cover;
  background-position: center;
}
.hanaeri2025-H2_Wrap.frame {
  position: relative;
  padding: 40px 0;
}
@media screen and (min-width: 550px) {
  .hanaeri2025-H2_Wrap.frame {
    padding: 60px 0;
  }
}
@media screen and (min-width: 768px) {
  .hanaeri2025-H2_Wrap.frame {
    padding: 80px 0;
  }
}
@media screen and (min-width: 1024px) {
  .hanaeri2025-H2_Wrap.frame {
    margin-bottom: -3rem;
  }
}
.hanaeri2025-H2_Wrap.frame::before, .hanaeri2025-H2_Wrap.frame::after {
  content: "";
  display: block;
  position: absolute;
  width: 90%;
  height: 40px;
  background-size: contain;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 550px) {
  .hanaeri2025-H2_Wrap.frame::before, .hanaeri2025-H2_Wrap.frame::after {
    height: 60px;
  }
}
@media screen and (min-width: 768px) {
  .hanaeri2025-H2_Wrap.frame::before, .hanaeri2025-H2_Wrap.frame::after {
    height: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .hanaeri2025-H2_Wrap.frame::before, .hanaeri2025-H2_Wrap.frame::after {
    width: 768px;
  }
}
.hanaeri2025-H2_Wrap.frame::before {
  background-image: url("https://fortune-jewel.com/wp-content/uploads/2024/12/frame-top.png");
  background-position: top center;
  top: 0;
}
.hanaeri2025-H2_Wrap.frame::after {
  background-image: url("https://fortune-jewel.com/wp-content/uploads/2024/12/frame-bottom.png");
  background-position: bottom center;
  bottom: 0;
}
.hanaeri2025-H2_Wrap.frame h2 {
  padding: 0;
}
.hanaeri2025-H3 {
  text-align: center;
  font-size: 5vw;
  margin-bottom: 3rem;
  font-weight: normal;
}
@media screen and (min-width: 550px) {
  .hanaeri2025-H3 {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 768px) {
  .hanaeri2025-H3 {
    font-size: 2rem;
  }
}
.hanaeri2025-H3 span {
  color: #d658a0;
}
.hanaeri2025-H4 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e0c088;
  text-align: center;
  letter-spacing: 0.1em;
  margin: 5rem 0 3rem;
  line-height: 1.2;
}
@media screen and (min-width: 550px) {
  .hanaeri2025-H4 {
    font-size: 2.5rem;
  }
}
.course1 .hanaeri2025-H4 {
  color: #e0c088;
}
.course2 .hanaeri2025-H4 {
  color: #57a773;
}
.hanaeri2025-H4 span {
  font-size: 0.5em;
  font-weight: normal;
  letter-spacing: 2px;
}
.hanaeri2025-H4 span::before {
  content: "\a";
  white-space: pre;
}
.hanaeri2025-Main {
  position: relative;
}
.hanaeri2025-Inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .hanaeri2025-Inner {
    max-width: 1024px;
    margin: 0 auto;
  }
}
.hanaeri2025-Sentence {
  position: relative;
  z-index: 2;
  max-width: 1024px;
  margin: 0 auto;
}
.hanaeri2025-Section {
  background-color: #fffee9;
  overflow: hidden;
}
.hanaeri2025-Section.pink {
  margin: 0 calc(50% - 50vw);
  background-color: #fef5f6;
}
.hanaeri2025-Section.white {
  margin: 0 calc(50% - 50vw);
  background-color: #ffffff;
}
.hanaeri2025-Section_Inner {
  padding: 2rem 1rem 4rem;
  width: 100%;
  margin: 0 auto;
  max-width: 768px;
}
@media screen and (min-width: 768px) {
  .hanaeri2025-Section_Inner {
    padding: 2rem 2rem 4rem;
  }
}
@media screen and (min-width: 1024px) {
  .hanaeri2025-Section_Inner {
    padding: 5rem 1rem;
  }
}
.hanaeri2025-Section_Image {
  margin: 2rem auto;
  text-align: center;
  letter-spacing: 0.02em;
}
.hanaeri2025-Section_Image img {
  width: 100%;
  border: 2px solid #e0c088;
}
.hanaeri2025-Section_Image.small {
  max-width: 300px;
}
.hanaeri2025-Section_Image.col > div:not(:first-of-type) {
  margin-top: 1.5rem;
}
@media screen and (min-width: 550px) {
  .hanaeri2025-Section_Image.col {
    display: -ms-flexbox;
    display: flex;
    max-width: 960px;
  }
  .hanaeri2025-Section_Image.col > div:not(:first-of-type) {
    margin: 0;
    margin-left: 1rem;
  }
}
.hanaeri2025-Section_Col:not(:first-of-type) {
  margin-top: 2rem;
}
@media screen and (max-width: 549px) {
  .hanaeri2025-Section_Col {
    margin-bottom: 3rem;
  }
  .hanaeri2025-Section_Col_Item {
    margin: 0 auto;
  }
  .hanaeri2025-Section_Col_Item:not(:first-of-type) {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 550px) {
  .hanaeri2025-Section_Col {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .hanaeri2025-Section_Col_Item {
    -ms-flex: 1;
        flex: 1;
  }
  .hanaeri2025-Section_Col_Item:last-of-type {
    margin-left: 1.5rem;
  }
}
.hanaeri2025-Section_Note p {
  display: inline-block;
  color: #e0c088;
  padding: 1rem 1.5rem;
  border: 1px solid #e0c088;
  margin: 3rem auto;
  background-color: #fff;
}
.hanaeri2025-Section_Note p.alt {
  color: #d96d5a;
  border-color: #d96d5a;
}
.hanaeri2025-Section_Note p.alt a {
  color: #d96d5a;
}
.course1 .hanaeri2025-Section_Note p {
  color: #e0c088;
  border-color: #e0c088;
}
.course2 .hanaeri2025-Section_Note p {
  color: #57a773;
  border-color: #57a773;
}
@media screen and (min-width: 550px) {
  .hanaeri2025-Section_Note {
    text-align: center;
  }
  .hanaeri2025-Section_Note p {
    padding: 1rem 2rem;
  }
}
.hanaeri2025-Section section {
  position: relative;
}
.hanaeri2025-Section section:not(:first-of-type) {
  margin-top: 3rem;
}
@media screen and (min-width: 550px) {
  .hanaeri2025-Section section:not(:first-of-type) {
    margin-top: 5rem;
  }
}
.hanaeri2025-Section section h3 {
  text-align: left;
  padding-left: 70px;
  position: relative;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  z-index: 2;
}
.hanaeri2025-Section section h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-position: center left;
  background-size: contain;
  width: 60px;
  height: 60px;
}
.hanaeri2025-Section section h3.one::before {
  background-image: url("https://fortune-jewel.com/wp-content/uploads/2024/12/num1.png");
}
.hanaeri2025-Section section h3.two::before {
  background-image: url("https://fortune-jewel.com/wp-content/uploads/2024/12/num2.png");
}
.hanaeri2025-Section section h3.three::before {
  background-image: url("https://fortune-jewel.com/wp-content/uploads/2024/12/num3.png");
}
@media screen and (min-width: 550px) {
  .hanaeri2025-Section section h3 {
    padding-left: 110px;
    margin-bottom: 3rem;
  }
  .hanaeri2025-Section section h3::before {
    width: 100px;
    height: 100px;
  }
}
.hanaeri2025-Section section .decoration {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  opacity: 0.5;
  height: 200px;
  top: -50px;
  right: -50px;
}
.hanaeri2025-Section section .decoration.alt {
  top: -75px;
  right: -100px;
}
@media screen and (min-width: 550px) {
  .hanaeri2025-Section section .decoration {
    height: 300px;
    top: -50px;
    right: -75px;
  }
  .hanaeri2025-Section section .decoration.alt {
    top: -100px;
    right: -125px;
  }
}
@media screen and (min-width: 1024px) {
  .hanaeri2025-Section section .decoration {
    height: 400px;
    top: -50px;
    right: -150px;
  }
  .hanaeri2025-Section section .decoration.alt {
    top: -100px;
    right: -200px;
  }
}
.hanaeri2025-Bread dl:not(:first-of-type) {
  margin: 3rem 0;
}
.hanaeri2025-Bread dt, .hanaeri2025-Bread li {
  color: #57a773;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .hanaeri2025-Bread dt, .hanaeri2025-Bread li {
    font-size: 1.3rem;
  }
}
.hanaeri2025-Bread dd {
  background-color: rgba(87, 167, 115, 0.1);
  border-radius: 4px;
  padding: 6px 14px;
  margin-bottom: 2rem;
  line-height: 2;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .hanaeri2025-Bread dd {
    font-size: 1rem;
    padding: 8px 16px;
  }
}
.hanaeri2025-Bread + p:last-of-type {
  margin-top: 4.5rem;
}
.hanaeri2025-Bread ul {
  margin: 3rem 0;
}
.hanaeri2025-Bread li {
  margin: 1.5rem 0;
}
.hanaeri2025-Bread p {
  margin-top: 2rem;
  text-align: center;
}
.hanaeri2025-Action {
  padding: 2rem;
  text-align: center;
  background-color: #e0c088;
/*  background-image: url(img/itsukushima2021/wavecut.png);*/
  background-repeat: repeat;
}
@media screen and (min-width: 768px) {
  .hanaeri2025-Action {
    padding: 3rem 2rem;
  }
}
.hanaeri2025-Action_Button {
  color: #FFF;
  text-decoration: none;
  text-align: center;
  display: block;
  padding: 1rem;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.5;
  border-radius: 8px;
  position: relative;
  background-color: #fff;
  color: #e0c088;
  letter-spacing: 4px;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .hanaeri2025-Action_Button {
    padding: 1.5rem 4rem;
    line-height: 1;
    border-radius: 5rem;
  }
}
.hanaeri2025-Action_Button:hover {
  opacity: 0.5;
}
.hanaeri2025-Action_Button span {
  display: block;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .hanaeri2025-Action_Button span {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}
.hanaeri2025-Action_Note {
  color: #fff;
  margin-top: 0.5rem;
  letter-spacing: 1px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .hanaeri2025-Action_Note {
    font-size: 1rem;
  }
}
.hanaeri2025-Credit {
  text-align: center;
  line-height: 2rem;
  font-size: 11px;
  padding-bottom: 66px;
}
.hanaeri2025-Credit a {
  font-size: 11px;
  display: block;
}
@media screen and (min-width: 768px) {
  .hanaeri2025-Credit {
    font-size: 1rem;
    margin: 0 auto;
    line-height: 2rem;
  }
  .hanaeri2025-Credit a {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .hanaeri2025-Credit {
    padding-bottom: 94px;
  }
}
@media screen and (min-width: 1025px) {
  .hanaeri2025-Header {
    padding-top: 3rem;
  }
}
.hanaeri2025-Header img {
  width: 100%;
  border: 2px solid #e0c088;
}
.hanaeri2025-Header .pc {
  display: none;
}
.hanaeri2025-Header .sp {
  display: block;
}
@media screen and (min-width: 1024px) {
  .hanaeri2025-Header .pc {
    display: block;
  }
  .hanaeri2025-Header .sp {
    display: none;
  }
}
.hanaeri2025-Form {
  position: relative;
}
.hanaeri2025-Form::before, .hanaeri2025-Form::after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 50%;
  background-size: contain;
  z-index: 1;
}
.hanaeri2025-Form::before {
  background-image: url("https://fortune-jewel.com/wp-content/uploads/2024/12/form-deco1.png");
  background-position: top left;
  top: 0;
  left: 0;
}
.hanaeri2025-Form::after {
  background-image: url("https://fortune-jewel.com/wp-content/uploads/2024/12/form-deco2.png");
  background-position: bottom right;
  bottom: 0;
  right: 0;
}
.hanaeri2025-Form form {
  position: relative;
  z-index: 2;
  border: 2px solid #e0c088;
  background-color: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  margin-top: 2rem;
}
@media screen and (min-width: 550px) {
  .hanaeri2025-Form form {
    padding: 3rem;
  }
}
.hanaeri2025-Form form dl:not(:first-of-type) {
  margin-top: 1.5rem;
}
.hanaeri2025-Form form dt {
  font-size: 1rem;
  line-height: 1.4;
}
.hanaeri2025-Form form dt span {
  font-size: 0.8em;
}
@media screen and (min-width: 550px) {
  .hanaeri2025-Form form dt {
    font-size: 1.2rem;
  }
}
.hanaeri2025-Form form dd {
  padding-top: 0.25rem;
}
.hanaeri2025-Form form input {
  border: 1px solid #e0c088;
  border-radius: 4px;
  line-height: 1;
  padding: 8px;
  width: 100%;
  font-size: 1rem;
}
.hanaeri2025-Form form select {
  border: 1px solid #e0c088;
  border-radius: 4px;
  line-height: 1;
  padding: 8px;
  width: 80px;
  font-size: 1rem;
}
.hanaeri2025-Form form .birthday {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
}
.hanaeri2025-Form form .birthday span {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.hanaeri2025-Form form .birthday span:not(:first-of-type) {
  margin-left: 1rem;
}
.hanaeri2025-Form form .birthday span:nth-of-type(2) select {
  width: 60px;
}
.hanaeri2025-Form form .birthday span:last-of-type select {
  width: 60px;
}
.hanaeri2025-Form form input[type=submit] {
  display: block;
  background-color: #d658a0;
  border: 2px solid #d658a0;
  color: #fff;
  border-radius: 100px;
  text-align: center;
  letter-spacing: 4px;
  padding: 1rem;
  margin: 3rem 0;
  font-size: 5vw;
  width: 100%;
}
.hanaeri2025-Form form input[type=submit]:hover {
  background-color: transparent;
  color: #d658a0;
}
@media screen and (min-width: 550px) {
  .hanaeri2025-Form form input[type=submit] {
    font-size: 2rem;
  }
}
.hanaeri2025-Form form li {
  font-size: 1em;
  opacity: 0.5;
}
.hanaeri2025-Form form li:not(:last-of-type) {
  margin-bottom: 1rem;
}
.hanaeri2025-Toc li:not(:first-of-type) {
  margin-top: 1rem;
}
.hanaeri2025-Toc a {
  display: block;
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem;
  padding-right: 3rem;
  line-height: 1.4;
  font-size: 1rem;
  position: relative;
}
.hanaeri2025-Toc a::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  color: #d658a0;
}
.hanaeri2025-Toc a:hover {
  color: #d658a0;
}
@media screen and (min-width: 768px) {
  .hanaeri2025-Toc a {
    font-size: 1.2rem;
  }
}
.hanaeri2025-Recommend {
  margin-top: 3rem;
  border: 2px solid #e0c088;
  border-radius: 2rem;
  background-color: #ffffff;
  padding: 1.5rem;
}
@media screen and (min-width: 550px) {
  .hanaeri2025-Recommend {
    padding: 2rem;
  }
}
.hanaeri2025-Recommend_Title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #e0c088;
  letter-spacing: 1px;
}
@media screen and (min-width: 550px) {
  .hanaeri2025-Recommend_Title {
    font-size: 2rem;
  }
}
.hanaeri2025-Recommend li {
  font-size: 1rem;
}
.hanaeri2025-Recommend li:not(:first-of-type) {
  margin-top: 1rem;
}
@media screen and (min-width: 550px) {
  .hanaeri2025-Recommend li {
    font-size: 1.2rem;
  }
}
.hanaeri2025-Profile p {
  font-size: 1rem;
}
.hanaeri2025-Profile img {
  border: 0;
}
.hanaeri2025-Profile_Name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (min-width: 550px) {
  .hanaeri2025-Profile_Name {
    text-align: justify;
  }
}
@media screen and (max-width: 549px) {
  .hanaeri2025-Profile_Col {
    margin-bottom: 3rem;
  }
  .hanaeri2025-Profile_Col p {
    font-size: 1em;
  }
  .hanaeri2025-Profile_Col_Item {
    max-width: 90%;
    margin: 0 auto;
  }
  .hanaeri2025-Profile_Col_Item:first-of-type {
    max-width: 200px;
  }
  .hanaeri2025-Profile_Col_Item:not(:first-of-type) {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 550px) {
  .hanaeri2025-Profile_Col {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .hanaeri2025-Profile_Col_Item:first-of-type {
    width: 200px;
  }
  .hanaeri2025-Profile_Col_Item:last-of-type {
    -ms-flex: 1;
        flex: 1;
    margin-left: 1.5rem;
  }
}
.hanaeri2025-Info {
  text-align: center;
  margin-bottom: 1rem;
}
.hanaeri2025-Info a:last-of-type {
  margin-left: 1rem;
}
.hanaeri2025-Info a:hover {
  text-decoration: underline;
}