@charset "UTF-8";
/* ---------------------------------------------
アニメーション
-----------------------------------------------*/
.fadeRightTrigger,
.fadeLeftTrigger,
.fadeUpTrigger, .fadeInTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeUp {
  animation-name: fadeInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.delay02 {
  animation-delay: 0.2s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay06 {
  animation-delay: 0.6s;
}

.delay08 {
  animation-delay: 0.8s;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: source-han-sans-japanese, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6em;
  line-height: 1.6;
  color: #333;
  min-width: 1080px;
  background: #FFFEEA;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

img {
  border: 0;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  /*image-rendering: -webkit-optimize-contrast;*/
}
.safari img {
  image-rendering: inherit;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 768px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  display: block;
  color: #333;
  transition: 0.3s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    /*opacity: $opacity;*/
    color: #FF306A;
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 420px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #333;
  transition: 0.3s;
  will-change: transform;
  letter-spacing: 0.05em;
}
button:focus {
  text-decoration: none;
}

.wrapper {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrapper {
    width: 90%;
  }
}

.min-wrapper {
  width: 620px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .min-wrapper {
    width: 90%;
  }
}

.pc {
  display: block;
}

.sp, .ssp {
  display: none;
}

.pc-tb {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc, .ssp {
    display: none;
  }
  .sp, .pc-tb {
    display: block;
  }
}
@media screen and (max-width: 420px) {
  .sp, .ssp {
    display: block;
  }
  .pc-tb, .pc {
    display: none;
  }
}
/* 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;
}

.splide {
  margin-top: 16rem;
  /* 数字の位置 */
  /* 数字の色やサイズ調整 */
}
@media screen and (max-width: 767px) {
  .splide {
    margin-top: 10rem;
  }
}
.splide .splide_wrapper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  bottom: 0;
  top: auto;
  margin-top: 8rem;
}
.splide .splide_wrapper .splide__arrow {
  background: transparent;
  width: 37px;
  height: 9px;
}
.splide .splide_wrapper .splide__arrow svg {
  width: 100%;
  fill: #333;
}
.splide .splide_wrapper .splide__arrow:hover svg {
  fill: #FF306A;
}
.splide .splide_wrapper .splide__arrow--prev {
  left: 0;
  bottom: 6px;
  top: auto;
  transform: rotate(180deg);
}
.splide .splide_wrapper .splide__arrow--prev:hover {
  left: -5px;
}
.splide .splide_wrapper .splide__arrow--next {
  left: 120px;
  bottom: 3px;
  top: auto;
}
.splide .splide_wrapper .splide__arrow--next:hover {
  left: 125px;
}
.splide .splide_wrapper .all_article {
  position: absolute;
  right: 0;
  left: auto;
  bottom: 0;
  line-height: 25px;
}
.splide .splide_wrapper .all_article span {
  margin-left: 2rem;
  width: 25px;
  height: 25px;
  display: inline-block;
  background: url(../images/all-icon.png) 0/contain no-repeat;
  vertical-align: middle;
  transition: 0.3s;
}
.splide .splide_wrapper .all_article:hover span {
  background-image: url(../images/all-icon-red.png);
}
.splide .pagination {
  bottom: 0;
  left: 60px;
  position: absolute;
  right: auto;
  text-align: center;
  z-index: 1; /* これがないとスライドの下になる */
}
.splide .pagination span {
  color: #333;
  font-size: 1.4rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .splide .pagination span {
    font-size: 1.2rem;
  }
}

/* -----------記事一覧のcss--------- */
.article .article_box .thumbnail {
  overflow: hidden;
  border: 1px solid #333;
  border-radius: 6px;
}
.article .article_box .thumbnail img {
  transition: 0.3s;
  border-radius: 6px;
  object-fit: cover;
  height: 300px;
}
.article .article_box .cate {
  margin-top: 1.8rem;
  font: 600 1.4rem/1.4 "Noto Sans JP", sans-serif;
  border: 1px solid #333;
  width: fit-content;
  padding: 4px 1rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .article .article_box .cate {
    font-size: 1.2rem;
    margin-top: 1.4rem;
    padding: 2px 0.8rem;
  }
}
@media screen and (max-width: 420px) {
  .article .article_box .cate {
    margin-top: 1rem;
    padding: 2px 0.5rem;
  }
}
.article .article_box .article_ttl {
  margin-top: 0.9rem;
  font: 600 1.2vw/1.5 "Noto Sans JP", sans-serif;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .article .article_box .article_ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 420px) {
  .article .article_box .article_ttl {
    font-size: 1.4rem;
  }
}
.article .article_box .article_link:hover .thumbnail {
  border: 1px solid #333;
}
.article .article_box .article_link:hover .thumbnail img {
  transform: scale(1.1);
}
.article .article_box .article_link:hover .cate {
  color: #FF306A;
  border-color: #FF306A;
}
.article .article_box .article_link:hover .article_ttl {
  color: #FF306A;
}
.article .article_box .tag_wrapper {
  margin-top: 0.9rem;
  padding: 7px 0;
  border-top: 1px dashed #555;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.5rem;
  border-bottom: 1px dashed #555;
}
.article .article_box .tag_wrapper .tag {
  font: 400 1.4rem/1.4 "Noto Sans JP", sans-serif;
}
.article .article_box .tag_wrapper .tag:hover {
  color: #352ef9;
}
@media screen and (max-width: 767px) {
  .article .article_box .tag_wrapper .tag {
    font-size: 1.2rem;
  }
}
.article .article_box .date {
  margin-top: 9px;
  text-align: right;
  color: #727272;
  font-size: 1.2rem;
}

/* -----------border--------- */
.section_border {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 0;
  padding-top: 4rem;
  border-bottom: 2px solid #333;
}

/* -----------keyword--------- */
.ttl {
  font: 700 5rem/1.4 "Montserrat Alternates", sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ttl {
    font-size: 3.8rem;
  }
}

.keyword {
  margin: 16rem auto 0;
}
@media screen and (max-width: 767px) {
  .keyword {
    margin-top: 10rem;
  }
}
.keyword .keyword_contents {
  width: 90%;
  max-width: 820px;
  margin: 6.4rem auto 0;
  border: 1px dashed #333;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 1.8rem;
  padding: 5rem 4rem;
}
@media screen and (max-width: 767px) {
  .keyword .keyword_contents {
    margin-top: 4rem;
  }
}
.keyword .keyword_contents .tag {
  color: #666;
  font: 600 1.4rem/1.4 "Noto Sans JP", sans-serif;
}
.keyword .keyword_contents .tag:hover {
  color: #352ef9;
}

/* -----------article_cate--------- */
.article_cate {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .article_cate {
    margin-top: 8rem;
  }
}
.article_cate .cate_container {
  max-width: 820px;
  margin: 6.4rem auto 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .article_cate .cate_container {
    width: 90%;
  }
}
@media screen and (max-width: 420px) {
  .article_cate .cate_container {
    margin-top: 4rem;
  }
}
.article_cate .cate_container .cate {
  border: 1px dashed #333;
  height: 380px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  flex-basis: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .article_cate .cate_container .cate {
    height: 300px;
  }
}
@media screen and (max-width: 420px) {
  .article_cate .cate_container .cate {
    height: 250px;
  }
}
.article_cate .cate_container .cate .cate_word {
  font: 500 3rem/1.2 "Montserrat Alternates", sans-serif;
  position: absolute;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .article_cate .cate_container .cate .cate_word {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 420px) {
  .article_cate .cate_container .cate .cate_word {
    font-size: 1.8rem;
  }
}
.article_cate .cate_container .cate::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.4s;
  opacity: 0;
  background: url(../images/travel_bg.png) 0/cover no-repeat;
  z-index: 0;
}
.article_cate .cate_container .cate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  opacity: 0;
}
.article_cate .cate_container .cate:first-child {
  border-right: none;
}
.article_cate .cate_container .cate .arrow {
  position: absolute;
  bottom: 12rem;
  left: 50%;
  z-index: 12;
  transform: translateX(-50%);
}
.article_cate .cate_container .cate .arrow svg {
  fill: #333;
  transition: 0.3s;
}
@media screen and (max-width: 420px) {
  .article_cate .cate_container .cate .arrow svg {
    width: 43px;
  }
}
@media screen and (max-width: 767px) {
  .article_cate .cate_container .cate .arrow {
    bottom: 7rem;
  }
}
.article_cate .cate_container .cate.nomad::after {
  background-image: url(../images/nomad_bg.png);
}
.article_cate .cate_container .cate:hover .arrow svg {
  fill: #FF306A;
}
.article_cate .cate_container .cate:hover::after, .article_cate .cate_container .cate:hover::before {
  opacity: 1;
}

/* -----------top_about--------- */
.top_about {
  margin-top: 10rem;
}
.top_about .about_btn {
  width: fit-content;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
  margin: 0 auto;
}
.top_about .about_btn .arrow {
  display: block;
  transition: 0.3s;
}
.top_about .about_btn .arrow svg {
  fill: #333;
}
.top_about .about_btn:hover .arrow {
  transform: translateX(1rem);
}
.top_about .about_btn:hover .arrow svg {
  fill: #FF306A;
}

.footer {
  margin-top: 10rem;
  border-top: 2px solid #333;
  padding: 3rem 0;
}
.footer .footer_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer .footer_container {
    flex-direction: column;
    gap: 3rem;
  }
}
.footer .footer_container .footer_left {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  flex-direction: column;
}
.footer .footer_container .footer_left .logo .logo_link {
  width: 138px;
  height: 41px;
  position: relative;
}
.footer .footer_container .footer_left .logo .logo_link::after {
  content: "";
  width: 138.5px;
  height: 41px;
  background: url(../images/logo_pink.svg) 0/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
  opacity: 0;
}
.footer .footer_container .footer_left .logo .logo_link:hover::after {
  opacity: 1;
}
.footer .footer_container .footer_right {
  font: 500 1.2rem/1.2 "Noto Sans JP", sans-serif;
}
.footer .footer_container .footer_right a {
  margin: 0 0 1rem;
}
.footer .cp {
  font-size: 1.2rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .footer .cp {
    display: none;
  }
}

.l-nav {
  display: none;
}
@media screen and (max-width: 420px) {
  .is-fixed .l-nav {
    opacity: 1;
    pointer-events: all;
  }
  .l-nav-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: spvw(100);
  }
  .l-nav__button {
    width: calc(100% - 3.5em);
    height: spvw(100);
    margin: 0 auto;
  }
  .l-nav__button a {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #a79280;
    color: #ffffff;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

.header {
  padding: 2rem 3rem 1.6rem;
  border-bottom: 2px solid #333;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  height: 8rem;
  width: 100%;
}
.header .header_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .header_container .header_left {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 1rem;
}
.header .header_container .header_left .logo .logo_link {
  width: 138px;
  height: 41px;
  position: relative;
}
.header .header_container .header_left .logo .logo_link::after {
  content: "";
  width: 138.5px;
  height: 41px;
  background: url(../images/logo_pink.svg) 0/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
  opacity: 0;
}
.header .header_container .header_left .logo .logo_link:hover::after {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .header .header_container .header_left .logo .logo_link {
    width: 100px;
    height: 32px;
  }
}
.header .header_container .header_left .cp {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .header .header_container .header_left .cp {
    display: none;
  }
}
.header .header_container .header_right {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.3vw;
}
.header .header_container .header_right .nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3vw;
}
.header .header_container .header_right .nav .nav_list {
  font: 600 1.4rem/1.4 "Montserrat Alternates", sans-serif;
}
.header .header_container .header_right .nav .nav_list:hover {
  color: #FF306A;
}

.search {
  width: 18rem;
  position: relative;
}
.search .search-label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(../images/search-icon.png) 0/contain no-repeat;
  cursor: pointer; /* ポインター表示 */
}
.search .search-field {
  padding-left: 38px; /* アイコンの右にスペースを確保 */
  height: 32px;
  font-size: 14px;
  border: 1px solid #333;
  border-radius: 6px;
  box-sizing: border-box;
  width: 100%;
}

#header.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  animation: DownAnime 0.5s forwards;
  padding: 1rem 2rem;
  background: #FFFEEA;
  height: auto;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-170px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.burger-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  .burger-btn {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 999;
    border: none;
    margin: 0 0 0 auto;
    border-radius: 50%;
  }
  .burger-btn .bar {
    width: 20px;
    height: 2px;
    border-radius: 1rem;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
  }
  .burger-btn .bar_top {
    top: 15px;
  }
  .burger-btn .bar_mid {
    top: 20px;
  }
  .burger-btn .bar_bottom {
    top: 25px;
  }
  .burger-btn.close .bar_top {
    transform: translate(-50%, 4px) rotate(45deg);
    transition: transform 0.3s;
  }
  .burger-btn.close .bar_mid {
    opacity: 0;
    transition: opacity 0.3s;
  }
  .burger-btn.close .bar_bottom {
    transform: translate(-50%, -6px) rotate(-45deg);
    transition: transform 0.3s;
  }
  #nav-header-menu {
    width: 80%;
    height: 100vh;
    top: 6.3rem;
    right: -120%;
    position: fixed;
    z-index: 500;
    transition: 0.3s;
    border: none;
    padding: 0;
    min-width: auto;
    overflow-y: scroll;
    padding-bottom: 4rem;
    border-left: 1px solid #333;
    background: #FFFEEA;
    flex-direction: column;
  }
  #nav-header-menu .nav {
    flex-direction: column;
    padding: 12rem 2rem 2rem 5rem;
    width: 100%;
  }
  #nav-header-menu .nav li {
    width: 100%;
    text-align: center;
  }
  #nav-header-menu .nav a {
    padding: 2rem 0;
  }
  #nav-header-menu .nav .joinBtn {
    width: 100%;
    margin-top: 4rem;
  }
  #nav-header-menu.panelactive {
    right: 0;
  }
  .container_innav {
    display: grid;
    width: 70%;
    margin: 0 auto;
    margin-top: 1rem;
    gap: 5px;
  }
  .container_innav .box_last {
    width: 100%;
  }
}
.about_site {
  margin-top: 16rem;
}
.about_site.second {
  margin-top: 8rem;
}
.about_site .page_ttl {
  font: 600 6.4rem/1.2 "Montserrat Alternates", sans-serif;
}
@media screen and (max-width: 767px) {
  .about_site .page_ttl {
    font-size: 4rem;
  }
}
.about_site .page_ttl span {
  color: #FFFEEA;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: black;
  margin-right: 2.4rem;
  display: inline-block;
}
.about_site .site_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .about_site .site_container {
    flex-direction: column-reverse;
  }
}
.about_site .site_container .site_img {
  flex-basis: 40%;
  border-radius: 6px;
}
.about_site .site_container .site_img img {
  border-radius: 6px;
  border: 1px solid #333;
  height: 455px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .about_site .site_container .site_img img {
    height: 400px;
  }
}
.about_site .site_container .site_img figcaption {
  font-size: 1.4rem;
  margin-top: 5px;
}
.about_site .site_container .site_txt {
  flex-basis: 55%;
}
.about_site .site_container .site_txt p {
  font-size: 1.4rem;
  margin-top: 1rem;
}
.about_site .site_container.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .about_site .site_container.reverse {
    flex-direction: column-reverse;
  }
}
.about_site .site_container.reverse .site_img {
  flex-basis: 25%;
}
.about_site .site_container.reverse .site_img img {
  height: 350px;
}
@media screen and (max-width: 767px) {
  .about_site .site_container.reverse .site_img {
    width: 100%;
  }
  .about_site .site_container.reverse .site_img img {
    height: 300px;
  }
}
.about_site .site_container.reverse .site_txt {
  flex-basis: 70%;
}
.about_site .site_container.reverse .site_txt p {
  font-size: 1.4rem;
}

/* ------------ 記事一覧 ------------ */
.article_contents {
  width: 95%;
  margin: 16rem auto 0;
}
.article_contents .article_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .article_contents .article_container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 420px) {
  .article_contents .article_container {
    gap: 4rem 1rem;
  }
  .article_contents .article_container .article_box .thumbnail img {
    height: 200px;
  }
}

/* ------------ 記事詳細 ------------ */
.article_detail {
  margin-top: 16rem;
}
@media screen and (max-width: 420px) {
  .article_detail {
    margin-top: 12rem;
  }
}
.article_detail .thumbnail {
  margin-top: 4rem;
}
.article_detail .thumbnail img {
  height: 310px;
  object-fit: cover;
}
@media screen and (max-width: 420px) {
  .article_detail .thumbnail img {
    height: 300px;
  }
}
.article_detail .detail_ttl {
  font: 600 3.6rem/1.5 "Noto Sans JP", sans-serif;
  margin-top: 1rem;
}
@media screen and (max-width: 420px) {
  .article_detail .detail_ttl {
    font-size: 2.8rem;
  }
}
.article_detail .cate {
  margin-top: 1.8rem;
  font: 600 1.4rem/1.4 "Noto Sans JP", sans-serif;
  border: 1px solid #333;
  width: fit-content;
  padding: 4px 1rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .article_detail .cate {
    font-size: 1.2rem;
    margin-top: 1.4rem;
    padding: 2px 0.8rem;
  }
}
@media screen and (max-width: 420px) {
  .article_detail .cate {
    margin-top: 1rem;
    padding: 2px 0.5rem;
  }
}
.article_detail .tag_wrapper {
  margin-top: 1.4rem;
  padding: 7px 0;
  border-top: 1px dashed #555;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  border-bottom: 1px dashed #555;
}
.article_detail .tag_wrapper .tag {
  font: 400 1.4rem/1.4 "Noto Sans JP", sans-serif;
}
.article_detail .tag_wrapper .tag:hover {
  color: #352ef9;
}
@media screen and (max-width: 767px) {
  .article_detail .tag_wrapper .tag {
    font-size: 1.2rem;
  }
}
.article_detail .date {
  margin-top: 9px;
  text-align: right;
  color: #727272;
}
@media screen and (max-width: 767px) {
  .article_detail .date {
    font-size: 1.2rem;
  }
}
.article_detail .detail_contents {
  margin: 4rem 0;
}
.article_detail .detail_contents #toc_container {
  width: 100%;
  margin: 2rem auto;
  border-radius: 10px;
  border: 1px dashed;
  padding: 4rem;
}
.article_detail .detail_contents #toc_container .toc_list li a {
  position: relative;
  padding-left: 2.5rem;
  padding: 0.3rem 0 0.3rem 2.4rem;
  font-weight: 600;
  font-size: 1.3rem;
  color: #333;
}
.article_detail .detail_contents #toc_container .toc_list li a::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background-color: #ffd2d3;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.article_detail .detail_contents h2 {
  margin: 5.4rem 0 2.4rem;
  font: 600 3rem/1.4 "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 420px) {
  .article_detail .detail_contents h2 {
    font-size: 2rem;
  }
}
.article_detail .detail_contents h3 {
  margin: 2.4rem 0;
  font: 600 2rem/1.4 "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 420px) {
  .article_detail .detail_contents h3 {
    font-size: 1.8rem;
  }
}
.article_detail .detail_contents p {
  margin: 2rem 0;
  font: 400 1.8rem/1.8 "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 420px) {
  .article_detail .detail_contents p {
    font-size: 1.5rem;
  }
}
.article_detail .detail_contents img {
  max-width: 100%;
  margin: 3rem 0 1.4rem;
  object-fit: cover;
  height: 450px;
}
@media screen and (max-width: 420px) {
  .article_detail .detail_contents img {
    height: 260px;
  }
}
.article_detail .detail_contents a {
  color: #FF306A;
  font-weight: 700;
}
.article_detail .detail_contents .wp-block-image {
  text-align: center;
}
.article_detail .detail_contents .wp-element-caption {
  margin-top: 0;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 4rem;
}
.article_detail .detail_contents .span {
  font-size: 1.5rem;
}
.article_detail .detail_contents .l-size {
  font-size: 2.4rem;
  font-weight: 600;
}
.article_detail .detail_contents .m-size {
  font-size: 2rem;
  font-weight: 600;
}
.article_detail .detail_contents iframe {
  width: 100%;
  height: auto;
  height: 300px;
}
@media screen and (max-width: 420px) {
  .article_detail .detail_contents iframe {
    height: 250px;
  }
}
.article_detail .detail_contents ul {
  margin: 2rem 0;
}
.article_detail .detail_contents ul li {
  list-style: inside;
  font: 400 1.8rem/1.8 "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 420px) {
  .article_detail .detail_contents ul li {
    font-size: 1.5rem;
  }
}

.goback {
  width: fit-content;
  margin: 5rem auto 0;
  font-weight: 500;
}
.goback .arrow {
  margin-left: 1rem;
}
.goback .arrow svg {
  transition: 0.3s;
  fill: #333;
  width: 40px;
  height: 25px;
}
.goback:hover {
  color: #FF306A;
}
.goback:hover .arrow svg {
  fill: #FF306A;
}

.pripoli .detail_ttl span {
  font-size: 1.4rem;
}
.pripoli .detail_contents a {
  color: #333;
  text-decoration: underline;
}

/* ---- SEARCH PAGE---- */
.no_article.searchword {
  text-align: center;
  margin: 6rem auto;
  line-height: 2;
}

/* ---- 404 PAGE---- */
.page_404 p {
  margin: 6rem auto 0;
  text-align: center;
}
.page_404 .goback {
  font-weight: 700;
}

/* ----------- contact ------------*/
.contact_lead {
  margin-top: 4rem;
}

@media screen and (max-width: 420px) {
  .contact {
    padding: 8rem 0;
  }
}
.contact .contact-form {
  padding: 5.4rem 2%;
}
@media screen and (max-width: 420px) {
  .contact .contact-form {
    margin-top: 0;
  }
}
.contact .contact-form form {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 420px) {
  .contact .contact-form form {
    width: 100%;
  }
}
.contact .contact-form form div {
  padding: 1.35rem 0;
  display: flex;
  flex-direction: column;
  row-gap: 1.8rem;
}
.contact .contact-form form div span {
  font-size: 1rem;
  color: red;
  margin-left: 0.4rem;
  vertical-align: top;
}
@media screen and (max-width: 420px) {
  .contact .contact-form form div {
    row-gap: 1rem;
    padding: 5px 0;
  }
}
.contact .contact-form form label {
  flex-basis: 20%;
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 420px) {
  .contact .contact-form form label {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}
.contact .contact-form form input, .contact .contact-form form textarea, .contact .contact-form form select {
  background: #fff;
  box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.12);
  padding: 1.6rem 2rem;
  border-radius: 6px;
  font-size: 1.6rem;
  width: 100%;
  color: #333;
}
@media screen and (max-width: 420px) {
  .contact .contact-form form input, .contact .contact-form form textarea, .contact .contact-form form select {
    font-size: 1.5rem;
  }
}
.contact .contact-form form textarea {
  resize: none;
  flex-basis: 70%;
}
.contact .contact-form form input::placeholder, .contact .contact-form form textarea::placeholder {
  color: #909090;
}
.contact .contact-form form .submitBtn {
  position: relative;
  width: 90%;
  margin: 6.4rem auto 0;
  border-radius: 6px;
  transition: 0.3s;
  display: block;
  padding: 0;
}
@media screen and (max-width: 420px) {
  .contact .contact-form form .submitBtn {
    width: 100%;
    margin-top: 4rem;
  }
}
.contact .contact-form form .submitBtn .wpcf7-submit:disabled {
  background-color: #ccc;
}
.contact .contact-form form .submitBtn input[type=submit] {
  padding: 2.4rem 0;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
  background: #333;
  cursor: pointer;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 420px) {
  .contact .contact-form form .submitBtn input[type=submit] {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
}
.contact .contact-form form .submitBtn:hover {
  transform: scale(0.97);
  opacity: 1;
}
.contact .contact-form p {
  font-weight: 500;
  font-size: 1.4rem;
}
.contact .contact-form a {
  display: inline-block;
  text-decoration: underline;
}
.contact .contact-form .policy_txt {
  margin-top: 24px;
}