@charset "UTF-8";
.spbr {
  display: none;
}
@media (max-width: 767px) {
  .spbr {
    display: block;
  }
}

@media (max-width: 767px) {
  .pcbr {
    display: none;
  }
}

.js-slick {
  visibility: hidden; /* 初期は非表示 */
}

.js-slick.slick-initialized {
  visibility: visible; /* 初期化後に表示 */
}

/*
  1. より直感的なボックスサイズのモデルを使用
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. デフォルトのマージンを削除
*/
* {
  margin: 0;
}

/*
  3. オーバーフロー設定
*/
html, body {
  width: 100%;
  overflow-x: clip;
}

/*
  タイポグラフィの微調整
  4. アクセシブルなline-heightを追加
  5. テキストのレンダリングを改善
  7. フォントファミリーの設定
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Zen Maru Gothic", serif;
  color: #4C4239;
  font-weight: 500;
}

/*
  7. メディア要素のデフォルトを改善
*/
img, picture, video, canvas, svg {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

img {
  line-height: 5;
}

/*
  8. フォームのfontに関するデフォルトを削除
*/
input, button, textarea, select {
  font: inherit;
}

/*
  9. テキストのオーバーフローを回避
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*
  10. ルートのスタックコンテキストを作成
*/
#root, #__next {
  isolation: isolate;
}

/* 追加 */
a {
  color: #3F6DA2;
}

.l-container {
  width: 100%;
  max-width: 1032px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .l-container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.l-container.is-wide {
  max-width: 1240px;
}
.l-container.is-thin {
  max-width: 960px;
}

.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10000;
  transition: 0.2s;
  padding: 0.5rem 1.25rem;
  height: 96px;
}
@media (max-width: 767px) {
  .l-header {
    height: 70px;
  }
}
.l-header:not(.is-pages).is-scroll {
  background-color: #fff;
}
.l-header:not(.is-pages).is-scroll .l-header_logo img {
  display: none;
}
.l-header:not(.is-pages).is-scroll .l-header_logo img.is-active {
  display: block;
}
.l-header:not(.is-pages).is-scroll .l-header_list_item, .l-header:not(.is-pages).is-scroll .l-header_list_link {
  color: #4C4239;
}
.l-header:not(.is-pages).is-scroll .l-header_list_item::after {
  background: url(../img/arrow_down_bk.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .l-header:not(.is-pages).is-scroll .l-header_list_item::after {
    background: url(../img/ico_add_bk.svg) no-repeat !important;
    background-size: contain;
  }
}
.l-header:not(.is-pages).is-scroll .l-header_list_item.is-active {
  color: #4C4239 !important;
}
@media (max-width: 767px) {
  .l-header:not(.is-pages).is-scroll .l-header_list_item.is-active::after {
    background: url(../img/ico_minus_bk.svg) no-repeat !important;
    background-size: contain;
  }
}
.l-header:not(.is-pages).is-scroll .l-header_time {
  border-color: #4C4239;
}
.l-header:not(.is-pages).is-scroll .l-header_time .hour, .l-header:not(.is-pages).is-scroll .l-header_time .minutes {
  background: #4C4239;
}
.l-header:not(.is-pages).is-scroll .l-header_search {
  background: url(../img/ico_search_bk.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .l-header:not(.is-pages).is-scroll .l-header_menu {
    background: url(../img/ico_menu.svg) no-repeat;
    background-size: contain;
  }
  .l-header:not(.is-pages).is-scroll .l-header_menu.is-active {
    background: url(../img/ico_menu_close.svg) no-repeat;
    background-size: contain;
    rotate: 180deg;
  }
}
.l-header.is-active {
  background: #fff;
}
.l-header.is-active .l-header_logo img {
  display: none;
}
.l-header.is-active .l-header_logo img.is-active {
  display: block;
}
.l-header.is-active .l-header_list_item, .l-header.is-active .l-header_list_link {
  color: #4C4239;
}
.l-header.is-active .l-header_list_item::after {
  background: url(../img/arrow_down_bk.svg) no-repeat;
  background-size: contain;
}
.l-header.is-active .l-header_time {
  border-color: #4C4239;
}
.l-header.is-active .l-header_time .hour, .l-header.is-active .l-header_time .minutes {
  background: #4C4239;
}
.l-header.is-active .l-header_search {
  background: url(../img/ico_search_bk.svg) no-repeat;
  background-size: contain;
}
.l-header.is-pages.is-scroll {
  background-color: #fff;
}
.l-header.is-pages .l-header_logo img {
  display: none;
}
.l-header.is-pages .l-header_logo img.is-active {
  display: block;
}
.l-header.is-pages .l-header_list_item, .l-header.is-pages .l-header_list_link {
  color: #4C4239;
}
.l-header.is-pages .l-header_list_item::after {
  background: url(../img/arrow_down_bk.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .l-header.is-pages .l-header_list_item::after {
    background: url(../img/ico_add_bk.svg) no-repeat !important;
    background-size: contain;
  }
}
.l-header.is-pages .l-header_list_item.is-active {
  color: #4C4239 !important;
}
@media (max-width: 767px) {
  .l-header.is-pages .l-header_list_item.is-active::after {
    background: url(../img/ico_minus_bk.svg) no-repeat !important;
    background-size: contain;
  }
}
.l-header.is-pages .l-header_time {
  border-color: #4C4239;
}
.l-header.is-pages .l-header_time .hour, .l-header.is-pages .l-header_time .minutes {
  background: #4C4239;
}
.l-header.is-pages .l-header_search {
  background: url(../img/ico_search_bk.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .l-header.is-pages .l-header_menu {
    background: url(../img/ico_menu.svg) no-repeat;
    background-size: contain;
  }
  .l-header.is-pages .l-header_menu.is-active {
    background: url(../img/ico_menu_close.svg) no-repeat;
    background-size: contain;
    rotate: 180deg;
  }
}
.l-header_logo {
  margin-right: auto;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}
.l-header_logo img.is-active {
  display: none;
}
@media (max-width: 767px) {
  .l-header_logo {
    order: 2;
    margin-right: 0;
    width: 85px;
  }
}
.l-header_menu {
  width: 24px;
  height: 24px;
  background: url(../img/ico_menu.svg) no-repeat;
  background-size: contain;
  transition: 0.2s;
  order: 3;
}
@media (min-width: 768px) {
  .l-header_menu {
    display: none;
  }
}
@media (max-width: 767px) {
  .l-header_menu {
    background: url(../img/ico_menu_w.svg) no-repeat;
    background-size: contain;
  }
}
.l-header_menu.is-active {
  background: url(../img/ico_menu_close.svg) no-repeat;
  background-size: contain;
  rotate: 180deg;
}
.l-header_conts {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .l-header_conts {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100svh - 70px);
    background: #F9F6F1;
    overflow: auto;
    padding: 1.875rem;
  }
}
.l-header_list {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .l-header_list {
    flex-direction: column;
    gap: 0;
  }
}
.l-header_list_item {
  font-size: 1rem;
  display: flex;
  align-items: center;
  position: relative;
  gap: 5px;
  font-weight: bold;
  margin: 0;
  cursor: pointer;
  color: #fff;
}
@media (max-width: 1259px) {
  .l-header_list_item {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .l-header_list_item {
    width: 100%;
    font-size: 1rem;
    color: #4C4239;
    padding: 1rem 0.5rem;
    border-bottom: 1px solid #4C4239;
    justify-content: space-between;
  }
}
.l-header_list_item::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/arrow_down.svg) no-repeat;
  background-size: contain;
  position: relative;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .l-header_list_item::after {
    background: url(../img/ico_add_bk.svg) no-repeat;
    background-size: contain;
  }
}
.l-header_list_item.is-active {
  color: #3F6DA2 !important;
}
@media (max-width: 767px) {
  .l-header_list_item.is-active {
    color: #4C4239;
  }
}
.l-header_list_item.is-active::after {
  background: url(../img/arrow_up_blue.svg) no-repeat !important;
  background-size: contain;
  rotate: 360deg;
}
@media (max-width: 767px) {
  .l-header_list_item.is-active::after {
    background: url(../img/ico_minus_bk.svg) no-repeat !important;
    background-size: contain;
  }
}
.l-header_list_detail {
  width: 100%;
  position: absolute;
  left: 0;
  top: 96px;
  background: #F9F6F1;
  padding: 3.125rem 3.75rem;
  box-sizing: border-box;
  display: none;
}
@media (max-width: 767px) {
  .l-header_list_detail {
    top: 70px;
    position: relative;
    width: 100%;
    top: initial;
    padding: 0;
    background: #fff;
  }
}
.l-header_list_detail_wrap {
  display: flex;
  gap: 3.125rem;
}
@media (max-width: 767px) {
  .l-header_list_detail_wrap {
    display: block;
    gap: initial;
  }
}
.l-header_list_detail_left {
  width: 25.86%;
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
  position: relative;
}
@media (max-width: 767px) {
  .l-header_list_detail_left {
    width: 100%;
    display: block;
  }
}
.l-header_list_detail_left::after {
  content: "";
  width: 2px;
  height: 100%;
  background: url(../img/dot_line.png) repeat-y;
  position: absolute;
  right: 0;
}
@media (max-width: 767px) {
  .l-header_list_detail_left::after {
    display: none;
  }
}
.l-header_list_detail_left .l-header_list_detail_txtlink {
  width: calc(8em + 2rem);
  justify-content: space-between;
}
@media (max-width: 767px) {
  .l-header_list_detail_left .l-header_list_detail_txtlink {
    width: 100%;
  }
}
.l-header_list_detail_head {
  width: 100%;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .l-header_list_detail_head {
    margin-bottom: 0;
  }
}
.l-header_list_detail_main {
  display: flex;
  gap: 1.875rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .l-header_list_detail_main {
    flex-direction: column;
    gap: 0;
  }
}
.l-header_list_detail_main_item {
  text-decoration: none;
  max-width: 200px;
}
@media (max-width: 767px) {
  .l-header_list_detail_main_item {
    max-width: 100%;
    padding: 0.5rem 0.625rem 0.5rem 1.25rem;
  }
}
.l-header_list_detail_main_item_img {
  width: 100%;
  aspect-ratio: 200/152;
  border-radius: 40px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .l-header_list_detail_main_item_img {
    display: none;
  }
}
.l-header_list_detail_main_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s;
}
.l-header_list_detail_main_item_txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.625rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #4C4239;
  position: relative;
}
@media (max-width: 767px) {
  .l-header_list_detail_main_item_txt {
    margin-top: 0;
    font-size: 0.875rem;
    padding-left: 1.5em;
  }
  .l-header_list_detail_main_item_txt::before {
    content: "└";
    position: absolute;
    left: 0;
    top: 0;
  }
}
.l-header_list_detail_main_item_txt img {
  width: 24px;
}
.l-header_list_detail_main_item:hover .l-header_list_detail_main_item_img img {
  scale: 1.1;
}
.l-header_list_detail_main_item.is-other {
  max-width: 240px;
}
.l-header_list_detail_main_item.is-other .l-header_list_detail_main_item_img {
  aspect-ratio: 240/152;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767px) {
  .l-header_list_detail_main_item.is-other {
    max-width: 100%;
  }
}
.l-header_list_detail_txtlink {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  color: #4C4239;
  font-weight: bold;
  text-decoration: none;
}
@media (max-width: 767px) {
  .l-header_list_detail_txtlink {
    font-size: 0.875rem;
    padding: 0.5rem 0.625rem 0.5rem 1.25rem;
    justify-content: space-between;
  }
  .l-header_list_detail_txtlink img {
    width: 24px;
  }
}
.l-header_list_detail_close {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  padding: 0.5rem;
  max-width: 131px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.875rem;
  background: #E5E5E5;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .l-header_list_detail_close {
    display: none;
  }
}
.l-header_list_link {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 1259px) {
  .l-header_list_link {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .l-header_list_link {
    width: 100%;
    color: #4C4239;
    font-size: 1rem;
    padding: 1rem 0.5rem;
    border-bottom: 1px solid #4C4239;
    justify-content: space-between;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .l-header_list_link::after {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background: url(../img/arrow_right_brown.svg) no-repeat;
    background-size: contain;
  }
}
.l-header_search {
  margin-right: 1.5rem;
  width: 32px;
  height: 32px;
  background: url(../img/ico_search.svg) no-repeat;
  background-size: contain;
  cursor: pointer;
}
@media (max-width: 1259px) {
  .l-header_search {
    margin-right: 0.75rem;
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 767px) {
  .l-header_search {
    order: 1;
    margin-right: 0;
    width: 24px;
    height: 24px;
  }
}
.l-header_search_detail {
  width: 100%;
  position: absolute;
  left: 0;
  top: 96px;
  background: #F9F6F1;
  padding: 3.125rem 3.75rem;
  box-sizing: border-box;
  display: none;
  max-height: calc(100svh - 96px);
  overflow: auto;
}
@media (max-width: 767px) {
  .l-header_search_detail {
    padding: 1.875rem;
    height: calc(100dvh - 70px);
    overflow: auto;
    top: 70px;
  }
}
.l-header_search_detail_inner {
  max-width: 1025px;
  margin-left: auto;
  margin-right: auto;
}
.l-header_search_detail_ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.875rem;
}
@media (max-width: 767px) {
  .l-header_search_detail_ttl {
    margin-bottom: 1.25rem;
    text-align: center;
  }
}
.l-header_search_detail_keyword {
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 1px solid #C4C4C4;
  border-radius: 5px;
  margin-bottom: 1.875rem;
}
.l-header_search_detail_subttl {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
}
.l-header_search_detail_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.625rem;
  margin-bottom: 3.75rem;
  padding: 0.875rem;
  background: #EDEDEC;
  border-radius: 10px;
  width: 100%;
}
@media (max-width: 767px) {
  .l-header_search_detail_tag {
    height: 37dvh;
    overflow: auto;
    margin-bottom: 1.875rem;
    gap: 0.625rem;
  }
}
.l-header_search_detail_tag label input {
  display: none;
}
.l-header_search_detail_tag label input:checked + span {
  background-color: #3F6DA2;
  color: #fff;
}
.l-header_search_detail_tag label span {
  padding: 0.5rem 1rem;
  background: #fff;
  border-radius: 100px;
  color: #3F6DA2;
  font-weight: 500;
  display: inline-block;
}
.l-header_search_detail_btn {
  text-align: center;
}
.l-header_search_detail_close {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  padding: 0.5rem;
  max-width: 131px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.875rem;
  background: #E5E5E5;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .l-header_search_detail_close {
    display: none;
  }
}
.l-header_time {
  width: 46px;
  height: 46px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: relative;
  flex: none;
}
@media (max-width: 1259px) {
  .l-header_time {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 767px) {
  .l-header_time {
    display: none;
  }
}
.l-header_time .hour {
  height: 25%;
  width: 2px;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  transform-origin: bottom center;
  left: 50%;
  bottom: 50%;
}
.l-header_time .minutes {
  height: 40%;
  width: 2px;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  transform-origin: bottom center;
  left: 50%;
  bottom: 50%;
}

.l-footer {
  background: #4C4239;
  position: relative;
  padding-top: 1rem;
  padding-bottom: 3rem;
}
.l-footer::before {
  content: "";
  width: 100%;
  aspect-ratio: 1440/80;
  background: url(../img/footer_top.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: calc(-5.5555555556vw + 1px);
  z-index: 0;
}
@media (max-width: 767px) {
  .l-footer::before {
    aspect-ratio: 390/40;
    background: url(../img/footer_top_sp.png) no-repeat bottom;
    background-size: 100% 100%;
    top: calc(-10.2564102564vw + 1px);
  }
}
.l-footer_wrap {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
@media (max-width: 767px) {
  .l-footer_wrap {
    max-width: 300px;
  }
}
.l-footer_logo {
  margin-bottom: 3rem;
  display: inline-block;
}
@media (max-width: 767px) {
  .l-footer_logo {
    margin-bottom: 1.25rem;
    display: block;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}
.l-footer_main {
  display: flex;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #9E948B;
}
@media (max-width: 767px) {
  .l-footer_main {
    flex-direction: column;
    gap: 0;
    padding-bottom: 0;
    border: none;
  }
}
.l-footer_main_item {
  width: calc(25% - 1.5rem);
}
@media (max-width: 767px) {
  .l-footer_main_item {
    width: 100%;
  }
}
.l-footer_main_item_head {
  padding: 1rem 0.5rem;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  border-bottom: 1px solid #9E948B;
}
@media (max-width: 767px) {
  .l-footer_main_item_head {
    font-size: 0.875rem;
  }
}
.l-footer_main_item_head::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/arrow_right.svg) no-repeat;
  background-size: contain;
}
.l-footer_main_item_head[target=_blank]::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/ico_otherlink_w.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .l-footer_main_item_head.js-sp-footerbtn::after {
    background: url(../img/ico_add.svg) no-repeat;
    background-size: contain;
  }
  .l-footer_main_item_head.js-sp-footerbtn.is-active::after {
    background: url(../img/ico_minus.svg) no-repeat;
    background-size: contain;
  }
}
.l-footer_main_item_sub {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .l-footer_main_item_sub {
    margin-bottom: 1.875rem;
    display: none;
  }
}
.l-footer_main_item_sub_link {
  padding: 0.75rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-decoration: none;
}
.l-footer_main_item_sub_link:first-of-type {
  display: none;
}
@media (max-width: 767px) {
  .l-footer_main_item_sub_link:first-of-type {
    display: flex;
  }
}
@media (max-width: 767px) {
  .l-footer_main_item_sub_link {
    font-size: 0.875rem;
  }
}
.l-footer_main_item_sub_link.is-bold {
  font-weight: bold;
}
.l-footer_main_item_sub_link::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/arrow_right.svg) no-repeat;
  background-size: contain;
}
.l-footer_main_item_sub_link[target=_blank]::after {
  background: url(../img/ico_otherlink_w.svg) no-repeat;
  background-size: contain;
}
.l-footer_yonden {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .l-footer_yonden {
    flex-direction: column;
    gap: 2.5rem;
    padding-bottom: 0;
    margin-bottom: 1.875rem;
  }
}
.l-footer_yonden_sns {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.l-footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .l-footer_bottom {
    flex-direction: column;
    gap: 1rem;
  }
}
.l-footer_bottom_link {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
}
@media (max-width: 767px) {
  .l-footer_bottom_link {
    flex-direction: column;
    gap: 0;
  }
}
.l-footer_bottom_link_item {
  padding: 0.75rem 0.5rem;
  font-weight: bold;
}
.l-footer_bottom_link_item a {
  text-decoration: none;
  color: #fff;
}
.l-footer_bottom_copy {
  font-size: 0.875rem;
}

.c-btn {
  padding: 1.25rem 3.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: 60px;
  text-decoration: none;
  background: #FCEE3A;
  color: #2C2C2C;
  font-weight: bold;
  line-height: 1;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .c-btn {
    font-size: 0.875rem;
    padding: 0.625rem 1.875rem;
  }
}
.c-btn::after {
  content: "";
  width: 26px;
  height: 26px;
  background: url(../img/arrow_right_bk.svg) no-repeat;
  background-size: contain;
  transition: 0.2s;
}
@media (max-width: 767px) {
  .c-btn::after {
    width: 20px;
    height: 20px;
  }
}
.c-btn[target=_blank]::after {
  background: url(../img/ico_otherlink_dark.svg) no-repeat;
  background-size: contain;
}
.c-btn:hover::after {
  translate: 5px 0;
}
.c-btn.is-white {
  color: #fff;
  font-size: 1rem;
  padding: 0.5rem 1rem 0.5rem 1.5rem;
  border: 2px solid #fff;
  border-radius: 20px;
  transition: 0.2s;
  background: rgba(255, 255, 255, 0);
}
.c-btn.is-white::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/arrow_right.svg) no-repeat;
  background-size: contain;
  transition: 0.2s;
}
.c-btn.is-white:hover {
  background: rgba(255, 255, 255, 0.2);
}
.c-btn.is-white:hover::after {
  translate: 5px 0;
}
.c-btn.is-bk {
  color: #4C4239;
  border: 2px solid #4C4239;
  background: rgba(255, 255, 255, 0);
}
.c-btn.is-bk::after {
  background: url(../img/arrow_right_brown.svg) no-repeat;
  background-size: contain;
}
.c-btn.is-bk[target=_blank]::after {
  background: url(../img/ico_otherlink_bk.svg) no-repeat;
  background-size: contain;
}
.c-btn.is-search {
  color: #fff;
  border: none;
  background: #3F6DA2;
  width: 100%;
  max-width: 324px;
  padding-left: 0;
  padding-right: 0;
  cursor: pointer;
}
.c-btn.is-search::after {
  background: url(../img/ico_search.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .c-btn.is-search {
    font-size: 1.5rem;
    padding: 1.25rem;
  }
}

.c-articleList .slick-track, .c-articleList-pages .slick-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.c-articleList .slick-list, .c-articleList-pages .slick-list {
  overflow: visible;
}
.c-articleList_item, .c-articleList-pages_item {
  width: 33.19vw;
  padding: 0.625rem;
  border-radius: 60px;
  rotate: 1deg;
  text-decoration: none;
  max-width: 478px;
  display: block;
  position: relative;
  background-color: #F9F6F1;
}
@media (max-width: 767px) {
  .c-articleList_item, .c-articleList-pages_item {
    width: 99.2vw;
    max-width: 387px;
  }
}
.c-articleList_item.is-new::before, .c-articleList-pages_item.is-new::before {
  content: "";
  width: 70px;
  height: 47px;
  background: url(../img/ico_new.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 1.25rem;
  top: -0.75rem;
  z-index: 1;
}
.c-articleList_item_thumb, .c-articleList-pages_item_thumb {
  width: 100%;
  border-radius: 60px;
  position: relative;
  margin-bottom: 0.625rem;
  aspect-ratio: 463/308;
  overflow: hidden;
}
.c-articleList_item_thumb::after, .c-articleList-pages_item_thumb::after {
  content: "";
  width: 100%;
  height: 101%;
  position: absolute;
  border: 2px solid #fff;
  left: 3px;
  top: 3px;
  border-radius: 60px;
  rotate: 1deg;
}
.c-articleList_item_thumb iframe, .c-articleList-pages_item_thumb iframe {
  width: 100%;
  aspect-ratio: 280/498;
  height: auto;
  border-radius: 60px;
}
.c-articleList_item_thumb img, .c-articleList-pages_item_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 60px;
}
.c-articleList_item_body, .c-articleList-pages_item_body {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.c-articleList_item_area, .c-articleList-pages_item_area {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: #A28873;
}
@media (max-width: 767px) {
  .c-articleList_item_area, .c-articleList-pages_item_area {
    font-size: 0.9375rem;
    width: 1.75rem;
    height: 1.75rem;
  }
}
.c-articleList_item_txt, .c-articleList-pages_item_txt {
  color: #4C4239;
  font-weight: bold;
}
.c-articleList_item_txt_head, .c-articleList-pages_item_txt_head {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.c-articleList_item_txt_head span, .c-articleList-pages_item_txt_head span {
  border: 2px solid #4C4239;
  padding: 0 0.5rem;
  border-radius: 4px;
  background: #fff;
}
@media (max-width: 767px) {
  .c-articleList_item_txt_head, .c-articleList-pages_item_txt_head {
    font-size: 0.6875rem;
    margin-bottom: 0.25rem;
  }
}
.c-articleList_item_txt_ttl, .c-articleList-pages_item_txt_ttl {
  font-size: 0.9375rem;
}
@media (max-width: 767px) {
  .c-articleList_item_txt_ttl, .c-articleList-pages_item_txt_ttl {
    font-size: 0.6875rem;
  }
}
.c-articleList_item_txt_tags, .c-articleList-pages_item_txt_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 0.5rem;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .c-articleList_item_txt_tags, .c-articleList-pages_item_txt_tags {
    margin-top: 0.25rem;
  }
}
.c-articleList_item_txt_tags_tag, .c-articleList-pages_item_txt_tags_tag {
  color: #3F6DA2;
}
@media (max-width: 767px) {
  .c-articleList_item_txt_tags_tag, .c-articleList-pages_item_txt_tags_tag {
    font-size: 0.625rem;
  }
}
.c-articleList_item.is-video, .c-articleList-pages_item.is-video {
  width: 22.5vw;
  max-width: 324px;
}
@media (max-width: 767px) {
  .c-articleList_item.is-video, .c-articleList-pages_item.is-video {
    width: 67vw;
    max-width: 258px;
  }
}
.c-articleList_item.is-video .c-articleList_item_thumb, .c-articleList-pages_item.is-video .c-articleList_item_thumb {
  aspect-ratio: 280/498;
}
.c-articleList_item.is-video .c-articleList_item_thumb::after, .c-articleList-pages_item.is-video .c-articleList_item_thumb::after {
  height: 100%;
}
.c-articleList_item.area-kochi, .c-articleList-pages_item.area-kochi {
  background-color: #FFE3DB;
}
.c-articleList_item.area-kochi .c-articleList_item_area, .c-articleList-pages_item.area-kochi .c-articleList_item_area {
  background-color: #E5847F;
}
.c-articleList_item.area-ehime, .c-articleList-pages_item.area-ehime {
  background-color: #FFD6BA;
}
.c-articleList_item.area-ehime .c-articleList_item_area, .c-articleList-pages_item.area-ehime .c-articleList_item_area {
  background-color: #FAA770;
}
.c-articleList_item.area-tokushima, .c-articleList-pages_item.area-tokushima {
  background-color: #B9E6FA;
}
.c-articleList_item.area-tokushima .c-articleList_item_area, .c-articleList-pages_item.area-tokushima .c-articleList_item_area {
  background-color: #89BBD2;
}
.c-articleList_item.area-kagawa, .c-articleList-pages_item.area-kagawa {
  background-color: #D6EFBF;
}
.c-articleList_item.area-kagawa .c-articleList_item_area, .c-articleList-pages_item.area-kagawa .c-articleList_item_area {
  background-color: #99C26E;
}
.c-articleList .slick-arrow, .c-articleList-pages .slick-arrow {
  z-index: 1;
}
.c-articleList .slick-prev, .c-articleList-pages .slick-prev {
  width: 48px;
  height: 48px;
  background: url(../img/slide_arrow_prev.svg) no-repeat;
  background-size: contain;
  left: 1rem;
  right: initial;
}
.c-articleList .slick-prev::before, .c-articleList-pages .slick-prev::before {
  display: none;
}
@media (max-width: 767px) {
  .c-articleList .slick-prev, .c-articleList-pages .slick-prev {
    width: 32px;
    height: 32px;
  }
}
.c-articleList .slick-next, .c-articleList-pages .slick-next {
  width: 48px;
  height: 48px;
  background: url(../img/slide_arrow_next.svg) no-repeat;
  background-size: contain;
  right: 1rem;
}
.c-articleList .slick-next::before, .c-articleList-pages .slick-next::before {
  display: none;
}
@media (max-width: 767px) {
  .c-articleList .slick-next, .c-articleList-pages .slick-next {
    width: 32px;
    height: 32px;
  }
}
.c-articleList .slide-dots, .c-articleList-pages .slide-dots {
  position: relative;
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.c-articleList .slide-dots li button, .c-articleList-pages .slide-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: #000;
  opacity: 0.08;
}
.c-articleList .slide-dots li.slick-active button, .c-articleList-pages .slide-dots li.slick-active button {
  opacity: 0.24;
}

.c-articleList-pages .slick-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.c-articleList-pages .c-articleList_item {
  background: #F9F6F1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}

.c-articleList-notslide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .c-articleList-notslide .c-articleList_itemwrap {
    width: calc(33.3333333333% - 1.6666666667rem);
  }
  .c-articleList-notslide .c-articleList_itemwrap .c-articleList_item {
    max-width: 100%;
  }
}
.c-articleList-notslide .slick-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.c-articleList-notslide .c-articleList_item {
  background: #F9F6F1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.c-conts_ttl {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .c-conts_ttl {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-conts_ttl small {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .c-conts_ttl small {
    font-size: 1rem;
    display: inline-block;
    line-height: 1.7;
    margin-top: 0.5rem;
  }
}
.c-conts_ttl.align-center {
  text-align: center;
}
.c-conts_ttl.align-center img {
  margin-left: auto;
  margin-right: auto;
}
.c-conts_txt {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 4rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-conts_txt {
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-conts_txt.align-center {
  text-align: center;
}

.c-breadcrumb {
  padding: 1.5rem 3.125rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .c-breadcrumb {
    display: none;
  }
}
.c-breadcrumb_item {
  color: #4C4239;
  font-weight: bold;
  position: relative;
}
.c-breadcrumb_item a {
  color: #4C4239;
}
.c-breadcrumb_item + .c-breadcrumb_item::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/arrow_right_simple.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: -32px;
  top: calc(50% - 12px);
}

.c-2col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.75rem;
}
@media (max-width: 767px) {
  .c-2col {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.c-2col_img {
  width: calc(var(--w, 590) / 1240 * 100%);
  flex: none;
}
@media (max-width: 767px) {
  .c-2col_img {
    width: 100%;
    order: 1;
  }
}
.c-2col_img figcaption {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-2col_body {
    order: 2;
  }
}
.c-2col_body_ttl {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.c-2col_body_ttl img {
  width: 100%;
  max-width: var(--w);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .c-2col_body_ttl {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .c-2col_body_ttl img {
    max-width: calc(var(--w) / 2);
  }
}
.c-2col_body_txt {
  line-height: 2.3;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-2col_body_txt {
    font-size: 0.875rem;
  }
}
.c-2col_body_txt span {
  font-weight: bold;
}
.c-2col_body_txt + .c-2col_body_txt {
  margin-top: 1em;
}
@media (max-width: 767px) {
  .c-2col_body_btn {
    text-align: center;
  }
}
.c-2col_body .c-btn {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .c-2col_body .c-btn {
    margin-top: 1.5rem;
  }
}

.c-contactArea {
  padding-top: 10vw;
  padding-bottom: 13.8888888889vw;
  position: relative;
  background: #3F6DA2;
}
@media (max-width: 767px) {
  .c-contactArea {
    padding-top: 24.1025641026vw;
    padding-bottom: 25.641025641vw;
  }
}
.c-contactArea::before {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  background: url(../img/contact_head.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: -2px;
}
@media (max-width: 767px) {
  .c-contactArea::before {
    height: 10.2564102564vw;
    background: url(../img/contact_head_sp.png) no-repeat;
    background-size: 100% 100%;
  }
}
.c-contactArea_wrap {
  display: flex;
  gap: 5rem;
}
@media (max-width: 767px) {
  .c-contactArea_wrap {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.c-contactArea_item {
  width: calc(50% - 2.5rem);
  padding: 2.5rem;
  background: #406693;
  border-radius: 80px;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .c-contactArea_item {
    width: 100%;
    border-radius: 60px;
    padding: 2rem 1.5rem;
  }
}
.c-contactArea_item_deco {
  position: absolute;
}
.c-contactArea_item_deco.deco01 {
  width: 25.86%;
  left: -6.89%;
  top: -12.93%;
}
@media (max-width: 767px) {
  .c-contactArea_item_deco.deco01 {
    width: 25.97%;
    left: 3%;
    top: -12.5%;
  }
}
.c-contactArea_item_deco.deco02 {
  width: 32.75%;
  right: -13.1%;
  bottom: -15.51%;
}
@media (max-width: 767px) {
  .c-contactArea_item_deco.deco02 {
    width: 26.53%;
    right: -2.2%;
    bottom: -11%;
  }
}
.c-contactArea_item_ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .c-contactArea_item_ttl {
    font-size: 1.5rem;
    height: auto;
  }
}
.c-contactArea_item_txt {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: #fff;
}
@media (max-width: 767px) {
  .c-contactArea_item_txt {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }
}
.c-contactArea_item .c-btn {
  font-size: 1.25rem;
  line-height: 1.1;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  min-height: 60px;
}
@media (max-width: 767px) {
  .c-contactArea_item .c-btn {
    font-size: 0.875rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    min-height: 40px;
  }
  .c-contactArea_item .c-btn::after {
    width: 16px;
    height: 16px;
  }
}

.c-taglist {
  max-width: 1048px;
  margin-left: auto;
  margin-right: auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 4rem;
  padding: 0;
}
@media (max-width: 767px) {
  .c-taglist {
    gap: 0.5rem;
    flex-wrap: nowrap;
    width: 100%;
    overflow: auto;
    justify-content: flex-start;
    margin-bottom: 2.5rem;
  }
}
.c-taglist_item {
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .c-taglist_item {
    font-size: 1rem;
    white-space: nowrap;
  }
}
.c-taglist_item a {
  padding: 0.625rem 1.5rem;
  background-color: #F2F2F2;
  border-radius: 156px;
  text-decoration: none;
  display: inline-block;
}
@media (max-width: 767px) {
  .c-taglist_item a {
    padding: 0.25rem 0.875rem;
  }
}

.c-pagenation {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.c-pagenation_btn {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  text-decoration: none;
  font-weight: 500;
}
.c-pagenation .c-pagenation_btn:not(a) {
  opacity: 0.6;
  color: #3F6DA2;
}
.c-pagenation_item {
  width: 40px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
}
.c-pagenation_item.is-current {
  background: #3F6DA2;
  color: #fff;
  border-radius: 50%;
}

.c-mededori {
  position: fixed;
  right: -100%;
  bottom: 6rem;
  z-index: 100;
  transition: 0.4s;
  z-index: 100;
}
@media (max-width: 767px) {
  .c-mededori {
    bottom: 4.5rem;
  }
}
.c-mededori#page-mededori {
  position: absolute;
  right: 5%;
  bottom: initial;
  top: -2.5rem;
}
@media (max-width: 767px) {
  .c-mededori#page-mededori {
    bottom: initial;
    top: -4rem;
  }
}
.c-mededori.is-show {
  right: 1.5rem;
}
@media (max-width: 767px) {
  .c-mededori.is-show {
    right: 1rem;
  }
}
.c-mededori_img {
  width: 164px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-mededori_img {
    width: 71px;
  }
}
.c-mededori_txtwrap {
  position: absolute;
  bottom: 75px;
  right: 168px;
  display: none;
}
@media (max-width: 767px) {
  .c-mededori_txtwrap {
    right: 0;
    bottom: 78px;
  }
}
.c-mededori_txt {
  padding: 2.5rem;
  background: rgba(86, 64, 47, 0.95);
  color: #fff;
  border-radius: 60px;
  width: 41vw;
  max-width: 592px;
  min-height: 170px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .c-mededori_txt {
    padding: 1.875rem;
    font-size: 0.875rem;
    min-height: initial;
    max-width: 358px;
    width: 90vw;
  }
}
.c-mededori_txt::after {
  content: "";
  width: 41px;
  height: 53px;
  background: url(../img/mededori_fukidashi.svg) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 40px;
  right: -41px;
}
@media (max-width: 767px) {
  .c-mededori_txt::after {
    width: 31px;
    height: 24px;
    background: url(../img/mededori_fukidashi_sp.svg) no-repeat;
    background-size: contain;
    bottom: -24px;
    right: 59px;
  }
}
.c-mededori_close {
  width: 64px;
  position: absolute;
  right: 0;
  top: -22px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .c-mededori_close {
    width: 40px;
    top: -20px;
  }
}

.c-pagetop {
  position: fixed;
  width: 46px;
  right: 2rem;
  bottom: 2rem;
  z-index: 100;
  display: none;
}
@media (max-width: 767px) {
  .c-pagetop {
    right: 1rem;
    bottom: 1rem;
  }
}

.p-top_hero {
  width: 100%;
  aspect-ratio: 1440/890;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 1.5rem;
  padding-bottom: 32%;
  padding-top: 10.7%;
}
@media (max-width: 767px) {
  .p-top_hero {
    aspect-ratio: 390/635;
    padding-bottom: 30%;
  }
}
.p-top_hero::before {
  content: "";
  width: 100%;
  height: 34%;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.3;
  z-index: 0;
}
.p-top_hero_path {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.p-top_hero_path svg {
  width: 100%;
}
@media (max-width: 767px) {
  .p-top_hero_path svg.pc {
    display: none;
  }
}
.p-top_hero_path svg.sp {
  display: none;
}
@media (max-width: 767px) {
  .p-top_hero_path svg.sp {
    display: block;
  }
}
.p-top_hero_path.is-time01 svg path {
  fill: #FFE791;
}
.p-top_hero_path.is-time02 svg path {
  fill: #FFC891;
}
.p-top_hero_path.is-time03 svg path {
  fill: #87D2EE;
}
.p-top_hero_path.is-time04 svg path {
  fill: #618EC8;
}
.p-top_hero_bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-top_hero_ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #F9F6F1;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-top_hero_ttl {
    font-size: 1.25rem;
  }
}
.p-top_hero_time {
  width: 46px;
  height: 46px;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  right: 12px;
  top: 54%;
}
@media (min-width: 768px) {
  .p-top_hero_time {
    display: none;
  }
}
.p-top_hero_time .hour {
  height: 25%;
  width: 2px;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  transform-origin: bottom center;
  left: 50%;
  bottom: 50%;
}
.p-top_hero_time .minutes {
  height: 40%;
  width: 2px;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  transform-origin: bottom center;
  left: 50%;
  bottom: 50%;
}
.p-top .c-articleList {
  margin-top: -293.7px;
}
@media (max-width: 767px) {
  .p-top .c-articleList {
    margin-top: -190.5px;
  }
}
.p-top_special {
  margin-top: 10rem;
  padding-top: 3rem;
  padding-bottom: 11.5972222222vw;
  background-color: #F9F6F1;
  position: relative;
}
@media (max-width: 767px) {
  .p-top_special {
    margin-top: 5.625rem;
    padding-top: 2.5rem;
    padding-bottom: 34.8717948718vw;
  }
}
.p-top_special::before {
  content: "";
  width: 100%;
  aspect-ratio: 1440/80;
  background: url(../img/tokushu_head.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: calc(-5.5555555556vw + 1px);
}
@media (max-width: 767px) {
  .p-top_special::before {
    aspect-ratio: 390/50;
    top: calc(-12.8205128205vw + 1px);
    background: url(../img/tokushu_head_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
@media (max-width: 767px) {
  .p-top_special .c-conts_ttl, .p-top_special .c-conts_txt {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-top_special_list {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-top_special_list {
    margin-bottom: 2.5rem;
  }
}
.p-top_special_list .slick-track {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media (max-width: 767px) {
  .p-top_special_list .slick-track {
    gap: 0;
  }
}
.p-top_special_list .slick-arrow {
  z-index: 1;
}
.p-top_special_list .slick-prev {
  width: 48px;
  height: 48px;
  background: url(../img/slide_arrow_prev.svg) no-repeat;
  background-size: contain;
  left: 1rem;
  right: initial;
}
.p-top_special_list .slick-prev::before {
  display: none;
}
@media (max-width: 767px) {
  .p-top_special_list .slick-prev {
    width: 32px;
    height: 32px;
    left: 0.5rem;
  }
}
.p-top_special_list .slick-next {
  width: 48px;
  height: 48px;
  background: url(../img/slide_arrow_next.svg) no-repeat;
  background-size: contain;
  right: 1rem;
}
.p-top_special_list .slick-next::before {
  display: none;
}
@media (max-width: 767px) {
  .p-top_special_list .slick-next {
    width: 32px;
    height: 32px;
    right: 0.5rem;
  }
}
.p-top_special_list_item {
  width: 26.18%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 270/179;
  border-radius: 40px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-top_special_list_item {
    width: 84.87%;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
.p-top_special_list_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top_special_btn {
  text-align: center;
}
.p-top_charm {
  position: relative;
  margin-top: -2.5vw;
  padding-bottom: 106px;
  z-index: 1;
  background: linear-gradient(rgba(255, 255, 255, 0) 3.0555555556vw, #D6EFBF 3.0555555556vw);
}
@media (max-width: 767px) {
  .p-top_charm {
    margin-top: -5.1282051282vw;
    padding-bottom: 1.25rem;
    background: linear-gradient(rgba(255, 255, 255, 0) 5.1282051282vw, #D6EFBF 5.1282051282vw);
  }
}
.p-top_charm::before {
  content: "";
  width: 100%;
  aspect-ratio: 1440/80;
  background: url(../img/miryoku_head.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: calc(-2.5vw + 1px);
}
@media (max-width: 767px) {
  .p-top_charm::before {
    aspect-ratio: 390/50;
    top: calc(-7.6923076923vw + 1px);
    background: url(../img/miryoku_head_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-top_charm_deco {
  position: absolute;
  z-index: 1;
}
.p-top_charm_deco.deco01 {
  width: 18.6111%;
  left: 3%;
  top: -5.2vw;
}
@media (max-width: 767px) {
  .p-top_charm_deco.deco01 {
    width: 34.25%;
    left: 3.8%;
    top: -13.84vw;
  }
}
.p-top_charm_deco.deco02 {
  width: 20.694%;
  right: 0;
  top: -5.76vw;
}
@media (max-width: 767px) {
  .p-top_charm_deco.deco02 {
    width: 33.33333%;
    top: -14.1025vw;
  }
}
.p-top_charm_inner {
  position: relative;
  padding-top: 9.861vw;
  background: url(../img/miryoku_bg.png) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .p-top_charm_inner {
    background: url(../img/miryoku_bg_sp.png) no-repeat;
    background-size: 100% auto;
    padding-top: 23.07vw;
  }
}
.p-top_charm_inner .c-conts_ttl {
  position: relative;
}
@media (max-width: 767px) {
  .p-top_charm_inner .c-conts_ttl {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-top_charm_inner .c-conts_ttl::after {
  content: "";
  width: 40px;
  height: 36px;
  background: url(../img/miryoku_ttl_deco.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: -30px;
}
@media (max-width: 767px) {
  .p-top_charm_inner .c-conts_ttl::after {
    width: 25px;
    height: auto;
    aspect-ratio: 40/36;
    top: -17px;
  }
}
.p-top_charm_inner .c-conts_txt {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-top_charm_inner .c-conts_txt {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
}
.p-top_charm_cat {
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .p-top_charm_cat {
    overflow: auto;
    justify-content: flex-start;
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
    margin-bottom: 1.25rem;
    flex-wrap: nowrap;
    overflow: auto;
    justify-content: flex-start;
  }
}
.p-top_charm_cat_item a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  background: #A5856B;
  padding: 0.25rem 1.25rem;
  border-radius: 20px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .p-top_charm_cat_item a {
    white-space: nowrap;
    display: block;
    padding: 0.125rem 1.25rem;
  }
}
.p-top_charm_list {
  margin-bottom: 2.5rem;
}
.p-top_charm_list .slick-track {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .p-top_charm_list .slick-track {
    gap: 0;
  }
}
.p-top_charm_list .slick-arrow {
  z-index: 1;
}
.p-top_charm_list .slick-prev {
  width: 48px;
  height: 48px;
  background: url(../img/slide_arrow_prev_gr.svg) no-repeat;
  background-size: contain;
  left: 1rem;
  right: initial;
}
.p-top_charm_list .slick-prev::before {
  display: none;
}
@media (max-width: 767px) {
  .p-top_charm_list .slick-prev {
    width: 32px;
    height: 32px;
    left: 0.5rem;
  }
}
.p-top_charm_list .slick-next {
  width: 48px;
  height: 48px;
  background: url(../img/slide_arrow_next_gr.svg) no-repeat;
  background-size: contain;
  right: 1rem;
}
.p-top_charm_list .slick-next::before {
  display: none;
}
@media (max-width: 767px) {
  .p-top_charm_list .slick-next {
    width: 32px;
    height: 32px;
    right: 0.5rem;
  }
}
.p-top_charm_list_item {
  background: #fff;
  border-radius: 80px;
  padding: 1.25rem 1.25rem 2rem 1.25rem;
}
@media (max-width: 767px) {
  .p-top_charm_list_item {
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 0.625rem 0.625rem 1.25rem 0.625rem;
    border-radius: 48px;
  }
}
.p-top_charm_list_item_img {
  position: relative;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .p-top_charm_list_item_img {
    margin-bottom: 1.25rem;
  }
}
.p-top_charm_list_item_img::after {
  content: "";
  width: 99%;
  height: 98%;
  position: absolute;
  border: 2px solid #fff;
  left: 0;
  top: 2px;
  border-radius: 60px;
  rotate: -1deg;
}
@media (max-width: 767px) {
  .p-top_charm_list_item_img::after {
    border-radius: 48px;
  }
}
.p-top_charm_list_item_ttl {
  text-align: center;
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .p-top_charm_list_item_ttl {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
}
.p-top_charm_list_item_txt {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .p-top_charm_list_item_txt {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
}
.p-top_charm_list_item_btn {
  text-align: center;
}
.p-top_charm_tags {
  padding-top: 66px;
  padding-bottom: 34px;
  background: url(../img/miryoku_river.png) no-repeat;
  background-size: 100% 100%;
  position: relative;
}
@media (max-width: 767px) {
  .p-top_charm_tags {
    background: url(../img/miryoku_river_sp.png) no-repeat;
    background-size: 100% 100%;
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
.p-top_charm_tags::after {
  content: "";
  width: 145px;
  height: 115px;
  background: url(../img/miryoku_river_bridge.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 26px;
  top: 35px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-top_charm_tags::after {
    width: 106px;
    height: 79px;
    left: 4px;
    bottom: 6px;
    top: initial;
  }
}
.p-top_charm_tags_list {
  list-style: none;
  padding: 0;
}
.p-top_charm_tags_list_item {
  display: inline-block;
}
.p-top_charm_tags_list_item + .p-top_charm_tags_list_item {
  margin-left: 1rem;
}
.p-top_charm_tags_list_item a {
  padding: 0.25rem 1.25rem;
  background-color: #209BA3;
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  text-decoration: none;
}
@media (max-width: 767px) {
  .p-top_charm_tags_list_item a {
    font-size: 1rem;
    padding: 3px 14px;
  }
}
.p-top_area {
  padding-top: 15.2083333333vw;
  padding-bottom: 8.3333333333vw;
  position: relative;
  background: #B9E6FA;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-top_area {
    padding-top: 30.7692307692vw;
    padding-bottom: 13.5897435897vw;
  }
}
.p-top_area::before {
  content: "";
  width: 100%;
  aspect-ratio: 1440/80;
  background: url(../img/miryoku_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-top_area::before {
    aspect-ratio: 390/50;
    background: url(../img/miryoku_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-top_area_deco {
  position: absolute;
}
.p-top_area_deco.deco01 {
  width: 13.54%;
  top: 4.8vw;
  left: 3.75%;
}
@media (max-width: 767px) {
  .p-top_area_deco.deco01 {
    width: 25.1282%;
    top: 9.74vw;
    left: 4.3%;
  }
}
.p-top_area_deco.deco02 {
  width: 17.29%;
  top: 0;
  right: 0.6%;
}
@media (max-width: 767px) {
  .p-top_area_deco.deco02 {
    width: 31.47%;
    top: 3.333vw;
    right: 0;
  }
}
@media (max-width: 767px) {
  .p-top_area .c-conts_ttl, .p-top_area .c-conts_txt {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-top_area_box {
  width: 100%;
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem 0.5rem 1.25rem 0.5rem;
  background: #fff;
  border-radius: 40px;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-top_area_box {
    max-width: 338px;
    border-radius: 20px;
    padding: 0.25rem 0.25rem 1rem 0.25rem;
    margin-bottom: 2.5rem;
  }
}
.p-top_area_mapwrap {
  width: 100%;
  aspect-ratio: 1114/610;
}
@media (max-width: 767px) {
  .p-top_area_mapwrap {
    aspect-ratio: 330/499;
  }
}
.p-top_area_map {
  border-radius: 40px;
  overflow: hidden;
  display: none;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .p-top_area_map {
    border-radius: 20px;
  }
}
.p-top_area_map.is-active {
  display: block;
}
.p-top_area_map iframe {
  width: 100%;
  height: 100% !important;
}
.p-top_area_tab {
  margin-top: 1.25rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-top_area_tab {
    gap: 0.375rem;
  }
}
.p-top_area_tab_btn {
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  border: none;
  border-radius: 40px;
  background: #A5856B;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.2;
  cursor: pointer;
}
@media (max-width: 767px) {
  .p-top_area_tab_btn {
    font-size: 0.875rem;
    padding: 0.25rem;
  }
}
.p-top_area_tab_btn[data-target="#map-kagawa"] {
  background: #99C26E;
}
.p-top_area_tab_btn[data-target="#map-ehime"] {
  background: #FAA770;
}
.p-top_area_tab_btn[data-target="#map-kochi"] {
  background: #E5847F;
}
.p-top_area_tab_btn[data-target="#map-tokushima"] {
  background: #89BBD2;
}
.p-top_area_btn {
  text-align: center;
}
.p-top_medetai {
  background: #3F6DA2;
  padding-top: 13.8888888889vw;
  padding-bottom: 12.2222222222vw;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-top_medetai {
    padding-top: 27.1794871795vw;
    padding-bottom: 28.7179487179vw;
  }
}
.p-top_medetai::before {
  content: "";
  width: 100%;
  aspect-ratio: 1440/80;
  background: url(../img/area_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-top_medetai::before {
    aspect-ratio: 390/50;
    background: url(../img/area_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-top_medetai_deco {
  position: absolute;
}
.p-top_medetai_deco.deco01 {
  width: 17.569%;
  left: 5.76vw;
  top: -5.5555vw;
}
@media (max-width: 767px) {
  .p-top_medetai_deco.deco01 {
    width: 25.128%;
    left: 7.69%;
    top: -10.512vw;
  }
}
.p-top_medetai_deco.deco02 {
  width: 14.93%;
  right: 3.333vw;
  top: 0;
}
@media (max-width: 767px) {
  .p-top_medetai_deco.deco02 {
    width: 27.435%;
    right: 3.07vw;
    top: 0.333333vw;
  }
}
.p-top_medetai .c-conts_ttl, .p-top_medetai .c-conts_txt {
  color: #fff;
}
@media (max-width: 767px) {
  .p-top_medetai .c-conts_ttl, .p-top_medetai .c-conts_txt {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-top_medetai_ig {
  width: 100%;
  max-width: 1032px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-top_medetai_ig {
    gap: 0.25rem;
    max-width: 368px;
    margin-bottom: 2.5rem;
  }
}
.p-top_medetai_ig_item {
  width: calc(33.3333333333% - 1.5rem);
  aspect-ratio: 240/320;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-top_medetai_ig_item {
    width: calc(33.3333333333% - 0.1666666667rem);
  }
}
.p-top_medetai_ig_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s;
}
.p-top_medetai_ig_item:hover img {
  transform: scale(1.1);
}
.p-top_medetai_btn {
  text-align: center;
}
.p-top_medetai_post {
  width: 100%;
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 13.6111111111vw;
  margin-bottom: 5.5555555556vw;
  position: relative;
  background: url(../img/post_bg.png) no-repeat;
  background-size: 100% 100%;
  padding-top: 6.8055555556vw;
  padding-bottom: 6.6666666667vw;
}
@media (max-width: 767px) {
  .p-top_medetai_post {
    margin-top: 18.4615384615vw;
    margin-bottom: 12.3076923077vw;
    padding-top: 13.3333333333vw;
    padding-bottom: 13.3333333333vw;
    background: url(../img/post_bg_sp.png) no-repeat;
    background-size: 100% 100%;
  }
}
.p-top_medetai_post_deco {
  position: absolute;
}
.p-top_medetai_post_deco.deco01 {
  width: 24.91%;
  left: 4.8%;
  top: -13%;
}
@media (max-width: 767px) {
  .p-top_medetai_post_deco.deco01 {
    width: 40%;
    left: 3.3333%;
    top: -10.25vw;
  }
}
.p-top_medetai_post_deco.deco02 {
  width: 8.65%;
  right: 6.258%;
  top: 10%;
}
@media (max-width: 767px) {
  .p-top_medetai_post_deco.deco02 {
    width: 13.58%;
    right: 3.589%;
    top: 7.69vw;
  }
}
.p-top_medetai_post .c-conts_ttl {
  margin-bottom: 2.25rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p-top_medetai_post .c-conts_ttl {
    margin-bottom: 1.5rem;
  }
}
.p-top_medetai_post .c-conts_txt {
  margin-bottom: 3rem;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .p-top_medetai_post .c-conts_txt {
    margin-bottom: 2rem;
  }
}
.p-top_medetai_contact {
  width: 100%;
  max-width: 1028px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background: url(../img/contact_bg.png) no-repeat;
  background-size: 100% 100%;
  padding-top: 6.6666666667vw;
  padding-bottom: 6.6666666667vw;
}
@media (max-width: 767px) {
  .p-top_medetai_contact {
    max-width: 334px;
    padding-top: 13.3333333333vw;
    padding-bottom: 13.3333333333vw;
  }
}
.p-top_medetai_contact_deco {
  position: absolute;
}
.p-top_medetai_contact_deco.deco01 {
  width: 15.56%;
  right: -5.64%;
  top: -21.5%;
}
@media (max-width: 767px) {
  .p-top_medetai_contact_deco.deco01 {
    width: 24.55%;
    right: -5.9%;
  }
}
.p-top_medetai_contact_deco.deco02 {
  width: 29.96%;
  left: -20.52%;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-top_medetai_contact_deco.deco02 {
    width: 28.14%;
    left: -8.38%;
    bottom: -6.8%;
  }
}
.p-top_medetai_contact .c-conts_ttl {
  margin-bottom: 2.25rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p-top_medetai_contact .c-conts_ttl {
    margin-bottom: 1.5rem;
  }
}
.p-top_medetai_contact .c-conts_txt {
  margin-bottom: 3rem;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .p-top_medetai_contact .c-conts_txt {
    margin-bottom: 2rem;
  }
}
.p-top_media {
  background: #EFD886;
  padding-bottom: 8.2638888889vw;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-top_media {
    padding-bottom: 20.7692307692vw;
  }
}
.p-top_media::before {
  content: "";
  width: 100%;
  aspect-ratio: 1440/80;
  background: url(../img/medetai_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: -3.8888888889vw;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-top_media::before {
    aspect-ratio: 390/50;
    background: url(../img/medetai_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
    top: -5.1282051282vw;
  }
}
.p-top_media_deco {
  position: absolute;
  width: 16.3888%;
  right: 4.79%;
  top: -10.13vw;
}
@media (max-width: 767px) {
  .p-top_media_deco {
    width: 30.25%;
    right: 3.84%;
    top: -13.84vw;
  }
}
.p-top_media_inner {
  width: 100%;
  max-width: 1328px;
  margin-left: auto;
  margin-right: auto;
  background: url(../img/media_bg.png) no-repeat top;
  background-size: 100% auto;
  padding-top: 204px;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-top_media_inner {
    background: url(../img/media_bg_sp.png) no-repeat top;
    background-size: 100% auto;
    padding-top: 25.64vw;
  }
}
.p-top_media_inner_deco {
  position: absolute;
}
.p-top_media_inner_deco.deco02 {
  width: 16.56%;
  top: 0;
  left: 2.18%;
}
@media (max-width: 767px) {
  .p-top_media_inner_deco.deco02 {
    width: 28.2%;
    top: 2.82vw;
    left: 2.5%;
  }
}
.p-top_media_inner_deco.deco03 {
  width: 12.65%;
  top: 21.5%;
  right: 3.012%;
}
@media (max-width: 767px) {
  .p-top_media_inner_deco.deco03 {
    width: 21.53%;
    right: 0;
    top: 14.87vw;
  }
}
.p-top_media_inner_deco.deco04 {
  width: 10.165%;
  left: -4.216%;
  bottom: -13%;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-top_media_inner_deco.deco04 {
    width: 20.76%;
    left: 0;
    bottom: -14.35vw;
  }
}
.p-top_media_inner .c-conts_txt {
  margin-bottom: 1.7em;
}
.p-top_media_list {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .p-top_media_list {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-top_media_list_item {
  width: calc(20% - 1.6rem);
}
@media (max-width: 767px) {
  .p-top_media_list_item {
    width: 100%;
  }
}
.p-top_media_btn {
  text-align: center;
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-top_media_btn {
    margin-top: 2.5rem;
  }
}
.p-top_about {
  background: #F8EEDD;
  padding-top: 6.3194444444vw;
  padding-bottom: 10.8333333333vw;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-top_about {
    padding-top: 13.8461538462vw;
    padding-bottom: 20.2564102564vw;
  }
}
.p-top_about::before {
  content: "";
  width: 100%;
  aspect-ratio: 1440/80;
  background: url(../img/media_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-top_about::before {
    aspect-ratio: 390/40;
    background: url(../img/media_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-top_about_deco {
  position: absolute;
}
.p-top_about_deco.deco01 {
  width: 11.4583%;
  left: 2.7777vw;
  top: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-top_about_deco.deco01 {
    width: 21.53%;
    left: 6.15%;
  }
}
.p-top_about_deco.deco02 {
  width: 23.8888%;
  top: -6.59%;
  right: 1.3888%;
}
@media (max-width: 767px) {
  .p-top_about_deco.deco02 {
    width: 36.41%;
    top: -14.615vw;
    right: 0;
  }
}
.p-top_about_inner {
  width: 100%;
  max-width: 1172px;
  background: url(../img/about_bg.png) no-repeat top;
  background-size: 100% auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-top: 11%;
}
@media (max-width: 767px) {
  .p-top_about_inner {
    padding-top: 25.12vw;
    background: url(../img/about_bg_sp.png) no-repeat top;
    background-size: 100% auto;
  }
}
.p-top_about_inner_deco {
  position: absolute;
  width: 17.7474%;
  right: 1.62%;
  top: 2.4%;
}
@media (max-width: 767px) {
  .p-top_about_inner_deco {
    width: 26.666%;
    right: 2.56%;
    top: 3.58%;
  }
}
.p-top_about_inner .c-conts_txt {
  margin-bottom: 6.25rem;
}
@media (max-width: 767px) {
  .p-top_about_inner .c-conts_txt {
    margin-bottom: 1.5rem;
  }
}
.p-top_about_inner_img {
  margin-top: 2.5rem;
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.25rem;
}
@media (max-width: 767px) {
  .p-top_about_inner_img {
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
  }
}
.p-top_about_btn {
  text-align: center;
}

.p-about {
  background: url(../img/about/about_head_bg.svg) no-repeat #F8EEDD;
  background-size: 78% auto;
  padding-top: 96px;
}
@media (max-width: 767px) {
  .p-about {
    padding-top: 70px;
    background-size: 90% auto;
  }
}
.p-about_head {
  padding: 3.75rem 0 calc(3.75rem + 5.5555555556vw);
  position: relative;
}
@media (max-width: 767px) {
  .p-about_head {
    padding: 3.5rem 1.5rem calc(3rem + 10.2564102564vw);
  }
}
.p-about_head_ttl {
  font-size: 3rem;
  font-weight: bold;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-about_head_ttl {
    font-size: 2rem;
  }
}
.p-about_head::after {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  background: url(../img/about/head_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-about_head::after {
    height: 10.2564102564vw;
    background: url(../img/about/head_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-about_main {
  background: #fff;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .p-about_main {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }
}
.p-about_main .c-conts_ttl {
  margin-bottom: 5rem;
}
.p-about_main .c-conts_ttl.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .p-about_main .c-conts_ttl.sp-only {
    display: block;
  }
}
@media (max-width: 767px) {
  .p-about_main .c-conts_ttl {
    margin-bottom: 1.5rem;
  }
}
.p-about_main .c-conts_ttl img {
  margin-bottom: 5rem;
  width: 100%;
  max-width: 600px;
}
@media (max-width: 767px) {
  .p-about_main .c-conts_ttl img {
    margin-bottom: 3.75rem;
  }
}
.p-about_main .c-2col {
  margin-bottom: 7.5rem;
}
@media (max-width: 767px) {
  .p-about_main .c-2col {
    margin-bottom: 5rem;
  }
}
.p-about_main .c-2col:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-about_main .c-2col {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .p-about_main .c-2col .pc-only {
    display: none;
  }
}
.p-about_main .c-2col .sp-only {
  display: none;
}
@media (max-width: 767px) {
  .p-about_main .c-2col .sp-only {
    display: block;
  }
}
.p-about_manage {
  padding-top: 11.1111111111vw;
  padding-bottom: 5.5555555556vw;
  position: relative;
}
@media (max-width: 767px) {
  .p-about_manage {
    padding-top: 17.9487179487vw;
    padding-bottom: 15.3846153846vw;
  }
}
.p-about_manage::before {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  background: url(../img/about/main_bottom.png) no-repeat top;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: -1px;
}
@media (max-width: 767px) {
  .p-about_manage::before {
    height: 10.2564102564vw;
    background: url(../img/about/main_bottom_sp.png) no-repeat top;
    background-size: 100% 100%;
  }
}
.p-about_manage .c-2col {
  margin-bottom: 7.5rem;
}
@media (max-width: 767px) {
  .p-about_manage .c-2col {
    margin-bottom: 5rem;
  }
}
.p-about_manage .c-2col:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-about_manage .c-2col {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .p-about_manage .c-2col .pc-only {
    display: none;
  }
}
.p-about_manage .c-2col .sp-only {
  display: none;
}
@media (max-width: 767px) {
  .p-about_manage .c-2col .sp-only {
    display: block;
  }
}

.p-about_shikoku_head {
  width: 100%;
  max-width: 888px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 6rem;
}
@media (max-width: 767px) {
  .p-about_shikoku_head {
    padding-bottom: 0;
  }
}
.p-about_shikoku_head .c-conts_txt {
  line-height: 2.3;
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .p-about_shikoku_head .c-conts_txt {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.875rem;
    margin-bottom: 1, 5rem;
  }
}
.p-about_shikoku_head_img {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-about_shikoku_head_img {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
.p-about_shikoku_pref_ttl {
  width: 100%;
  aspect-ratio: 1440/632;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.75rem;
  font-weight: bold;
  color: #F9F6F1;
  padding-bottom: 5%;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-about_shikoku_pref_ttl {
    font-size: 2rem;
    aspect-ratio: 390/243;
    padding-bottom: 9.7435897436%;
  }
}
.p-about_shikoku_pref_body {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-about_shikoku_pref_body {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.p-about_shikoku_pref_body::after {
  content: "";
  width: 100%;
  position: absolute;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-about_shikoku_pref_body::after {
    top: 2.5rem;
    width: 95%;
  }
}
.p-about_shikoku_pref_body .c-conts_ttl {
  margin-bottom: 3.75rem;
}
@media (max-width: 767px) {
  .p-about_shikoku_pref_body .c-conts_ttl {
    font-size: 1.375rem;
    margin-bottom: 1.5rem;
    text-align: left;
  }
}
.p-about_shikoku_pref_body .c-conts_txt {
  font-size: 1.5rem;
  line-height: 2.3;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .p-about_shikoku_pref_body .c-conts_txt {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    text-align: left;
  }
}
.p-about_shikoku_pref_body_btn {
  text-align: center;
}
.p-about_shikoku_pref.is-kagawa {
  background: #D6EFBF;
}
.p-about_shikoku_pref.is-kagawa .p-about_shikoku_pref_ttl {
  background: url(../img/about/shikoku_head_kagawa.webp) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-about_shikoku_pref.is-kagawa .p-about_shikoku_pref_ttl {
    background: url(../img/about/shikoku_head_kagawa_sp.webp) no-repeat;
    background-size: 100% 100%;
  }
}
.p-about_shikoku_pref.is-kagawa .p-about_shikoku_pref_body::after {
  max-width: 660px;
  aspect-ratio: 660/509;
  background: url(../img/about/shikoku_bg_kagawa.webp) no-repeat center center;
  background-size: contain;
}
@media (max-width: 767px) {
  .p-about_shikoku_pref.is-kagawa .p-about_shikoku_pref_body::after {
    max-width: 338px;
  }
}
.p-about_shikoku_pref.is-ehime {
  background: #FFD6BA;
}
.p-about_shikoku_pref.is-ehime .p-about_shikoku_pref_ttl {
  background: url(../img/about/shikoku_head_ehime.webp) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-about_shikoku_pref.is-ehime .p-about_shikoku_pref_ttl {
    background: url(../img/about/shikoku_head_ehime_sp.webp) no-repeat;
    background-size: 100% 100%;
  }
}
.p-about_shikoku_pref.is-ehime .p-about_shikoku_pref_body::after {
  max-width: 570px;
  aspect-ratio: 622/622;
  background: url(../img/about/shikoku_bg_ehime.webp) no-repeat center center;
  background-size: contain;
}
@media (max-width: 767px) {
  .p-about_shikoku_pref.is-ehime .p-about_shikoku_pref_body::after {
    max-width: 363px;
  }
}
.p-about_shikoku_pref.is-tokushima {
  background: #B9E6FA;
}
.p-about_shikoku_pref.is-tokushima .p-about_shikoku_pref_ttl {
  background: url(../img/about/shikoku_head_tokushima.webp) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-about_shikoku_pref.is-tokushima .p-about_shikoku_pref_ttl {
    background: url(../img/about/shikoku_head_tokushima_sp.webp) no-repeat;
    background-size: 100% 100%;
  }
}
.p-about_shikoku_pref.is-tokushima .p-about_shikoku_pref_body::after {
  max-width: 566px;
  aspect-ratio: 566/451;
  background: url(../img/about/shikoku_bg_tokushima.webp) no-repeat center center;
  background-size: contain;
}
@media (max-width: 767px) {
  .p-about_shikoku_pref.is-tokushima .p-about_shikoku_pref_body::after {
    max-width: 327px;
  }
}
.p-about_shikoku_pref.is-kochi {
  background: #FFE3DB;
}
.p-about_shikoku_pref.is-kochi .p-about_shikoku_pref_ttl {
  background: url(../img/about/shikoku_head_kochi.webp) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-about_shikoku_pref.is-kochi .p-about_shikoku_pref_ttl {
    background: url(../img/about/shikoku_head_kochi_sp.webp) no-repeat;
    background-size: 100% 100%;
  }
}
.p-about_shikoku_pref.is-kochi .p-about_shikoku_pref_body::after {
  max-width: 748px;
  aspect-ratio: 748/603;
  background: url(../img/about/shikoku_bg_kochi.webp) no-repeat center center;
  background-size: contain;
}
@media (max-width: 767px) {
  .p-about_shikoku_pref.is-kochi .p-about_shikoku_pref_body::after {
    max-width: 347px;
  }
}
.p-about_shikoku .c-contactArea::before {
  background: url(../img/contact_head_pk.png) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-about_shikoku .c-contactArea::before {
    background: url(../img/contact_head_pk_sp.png) no-repeat;
    background-size: 100% 100%;
  }
}

.p-pref .c-breadcrumb_item {
  color: #fff;
}
.p-pref .c-breadcrumb_item a {
  color: #fff;
}
.p-pref .c-breadcrumb_item + .c-breadcrumb_item::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/arrow_right_simple_w.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: -32px;
}
.p-pref_head {
  width: 100%;
  padding-top: 96px;
  aspect-ratio: 1440/482;
}
@media (max-width: 767px) {
  .p-pref_head {
    padding-top: 70px;
    aspect-ratio: 390/448;
    padding-bottom: 20.5128205128%;
    display: flex;
    align-items: flex-end;
  }
}
.p-pref_head_ttl {
  font-size: 3rem;
  color: #fff;
}
@media (max-width: 767px) {
  .p-pref_head_ttl {
    font-size: 2rem;
  }
}
.p-pref_head.is-kagawa {
  background: url(../img/about/pref/kagawa/pref_head.webp) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-pref_head.is-kagawa {
    background: url(../img/about/pref/kagawa/pref_head_sp.webp) no-repeat;
    background-size: 100% 100%;
  }
}
.p-pref_head.is-tokushima {
  background: url(../img/about/pref/tokushima/pref_head.webp) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-pref_head.is-tokushima {
    background: url(../img/about/pref/tokushima/pref_head_sp.webp) no-repeat;
    background-size: 100% 100%;
  }
}
.p-pref_head.is-ehime {
  background: url(../img/about/pref/ehime/pref_head.webp) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-pref_head.is-ehime {
    background: url(../img/about/pref/ehime/pref_head_sp.webp) no-repeat;
    background-size: 100% 100%;
  }
}
.p-pref_head.is-kochi {
  background: url(../img/about/pref/kochi/pref_head.webp) no-repeat;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-pref_head.is-kochi {
    background: url(../img/about/pref/kochi/pref_head_sp.webp) no-repeat;
    background-size: 100% 100%;
  }
}
.p-pref_about {
  padding-top: 5rem;
  padding-bottom: calc(5rem + 5.5555555556vw);
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .p-pref_about {
    padding-top: 2.5rem;
    padding-bottom: calc(3.5rem + 10.2564102564vw);
  }
}
.p-pref_about::after {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-pref_about::after {
    height: 10.2564102564vw;
  }
}
.p-pref_about .c-conts_ttl {
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .p-pref_about .c-conts_ttl {
    max-width: 340px;
    margin-bottom: 1.875rem;
  }
}
.p-pref_about .c-conts_txt {
  line-height: 2.3;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .p-pref_about .c-conts_txt {
    margin-bottom: 1.875rem;
    text-align: left;
  }
}
.p-pref_about_img {
  width: 100%;
  max-width: var(--w);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-pref_about_img {
    width: 90%;
  }
}
.p-pref_about.is-kagawa::after {
  background: url(../img/about/pref/kagawa/about_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-pref_about.is-kagawa::after {
    background: url(../img/about/pref/kagawa/about_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-pref_about.is-tokushima::after {
  background: url(../img/about/pref/tokushima/about_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-pref_about.is-tokushima::after {
    background: url(../img/about/pref/tokushima/about_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-pref_about.is-ehime::after {
  background: url(../img/about/pref/ehime/about_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-pref_about.is-ehime::after {
    background: url(../img/about/pref/ehime/about_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-pref_about.is-kochi::after {
  background: url(../img/about/pref/kochi/about_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-pref_about.is-kochi::after {
    background: url(../img/about/pref/kochi/about_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-pref_charm {
  position: relative;
  padding-top: 5rem;
  padding-bottom: calc(5rem + 5.5555555556vw);
  position: relative;
}
@media (max-width: 767px) {
  .p-pref_charm {
    padding-top: 1.25rem;
    padding-bottom: calc(3rem + 10.2564102564vw);
  }
}
.p-pref_charm::after {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-pref_charm::after {
    height: 10.2564102564vw;
  }
}
.p-pref_charm_deco {
  position: absolute;
}
.p-pref_charm.is-kagawa {
  background: #D6EFBF;
}
.p-pref_charm.is-kagawa::after {
  background: url(../img/about/pref/kagawa/charm_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-pref_charm.is-kagawa::after {
    background: url(../img/about/pref/kagawa/charm_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-pref_charm.is-kagawa .p-pref_charm_deco {
  width: 11.52%;
  right: 5%;
  top: -9vw;
}
@media (max-width: 767px) {
  .p-pref_charm.is-kagawa .p-pref_charm_deco {
    width: 27.95%;
    right: -3%;
    top: -22vw;
  }
}
.p-pref_charm.is-tokushima {
  background: #B9E6FA;
}
.p-pref_charm.is-tokushima::after {
  background: url(../img/about/pref/tokushima/charm_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-pref_charm.is-tokushima::after {
    background: url(../img/about/pref/tokushima/charm_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-pref_charm.is-tokushima .p-pref_charm_deco {
  width: 5.2%;
  right: 8.33333%;
  top: -12.847vw;
}
@media (max-width: 767px) {
  .p-pref_charm.is-tokushima .p-pref_charm_deco {
    width: 7.17%;
    right: 8.2%;
    top: -20.51vw;
  }
}
.p-pref_charm.is-ehime {
  background: #FFD6BA;
}
.p-pref_charm.is-ehime::after {
  background: url(../img/about/pref/ehime/charm_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-pref_charm.is-ehime::after {
    background: url(../img/about/pref/ehime/charm_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-pref_charm.is-ehime .p-pref_charm_deco {
  width: 9.3%;
  right: 5%;
  top: -7.84vw;
}
@media (max-width: 767px) {
  .p-pref_charm.is-ehime .p-pref_charm_deco {
    width: 28.7%;
    right: 4.6%;
    top: -18.7vw;
  }
}
.p-pref_charm.is-kochi {
  background: #FFE3DB;
}
.p-pref_charm.is-kochi::after {
  background: url(../img/about/pref/kochi/charm_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .p-pref_charm.is-kochi::after {
    background: url(../img/about/pref/kochi/charm_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-pref_charm.is-kochi .p-pref_charm_deco {
  width: 9.1666%;
  right: 5%;
  top: -9.09vw;
}
@media (max-width: 767px) {
  .p-pref_charm.is-kochi .p-pref_charm_deco {
    width: 20.76%;
    right: 4.1%;
    top: -22vw;
  }
}
@media (max-width: 767px) {
  .p-pref_charm .c-2col {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-pref_charm .c-2col + .c-2col {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-pref_charm .c-2col + .c-2col {
    margin-top: 2.5rem;
  }
}
.p-pref_season {
  padding-top: 5rem;
  padding-bottom: calc(5rem + 5.5555555556vw);
  position: relative;
}
@media (max-width: 767px) {
  .p-pref_season {
    padding-top: 2.5rem;
    padding-bottom: calc(1.25rem + 10.2564102564vw);
  }
}
.p-pref_season::after {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  background: url(../img/about/pref/season_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-pref_season::after {
    height: 10.2564102564vw;
    background: url(../img/about/pref/season_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-pref_season .c-conts_ttl {
  color: #fff;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .p-pref_season .c-conts_ttl {
    margin-bottom: 2.5rem;
  }
}
.p-pref_season_list {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .p-pref_season_list {
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
    display: block;
  }
}
.p-pref_season_list_item {
  width: calc(25% - 1.875rem);
}
@media (max-width: 767px) {
  .p-pref_season_list_item {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }
}
.p-pref_season_list_item_img {
  margin-bottom: 1.25rem;
}
.p-pref_season_list_item_ttl {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.p-pref_season_list_item_ttl span {
  padding: 0.125rem 0.5rem;
  flex: none;
}
.p-pref_season_list_item_txt {
  color: #fff;
  font-size: 1.375rem;
  line-height: 1.5;
}
.p-pref_season_list_item.is-spring .p-pref_season_list_item_ttl span {
  background: #FFDEE8;
  color: #EE59A1;
}
.p-pref_season_list_item.is-summer .p-pref_season_list_item_ttl span {
  background: #FEEAB3;
  color: #E5910A;
}
.p-pref_season_list_item.is-autumn .p-pref_season_list_item_ttl span {
  background: #FFBD89;
  color: #AE550F;
}
.p-pref_season_list_item.is-winter .p-pref_season_list_item_ttl span {
  background: #C2E6F6;
  color: #5291AD;
}
.p-pref_season_list .slick-arrow {
  z-index: 1;
}
.p-pref_season_list .slick-prev {
  width: 32px;
  height: 32px;
  left: 0.5rem;
  right: initial;
}
.p-pref_season_list .slick-prev::before {
  display: none;
}
.p-pref_season_list .slick-next {
  width: 32px;
  height: 32px;
  right: 0.5rem;
}
.p-pref_season_list .slick-next::before {
  display: none;
}
.p-pref_season_list .slide-dots {
  position: relative;
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.p-pref_season_list .slide-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: #000;
  opacity: 0.08;
}
.p-pref_season_list .slide-dots li.slick-active button {
  opacity: 0.24;
}
.p-pref_season.is-kagawa {
  background: #99C26E;
}
.p-pref_season.is-kagawa .slick-prev {
  background: url(../img/slide_arrow_prev_kagawa.svg) no-repeat;
  background-size: contain;
}
.p-pref_season.is-kagawa .slick-next {
  background: url(../img/slide_arrow_next_kagawa.svg) no-repeat;
  background-size: contain;
}
.p-pref_season.is-tokushima {
  background: #89BBD2;
}
.p-pref_season.is-tokushima .slick-prev {
  background: url(../img/slide_arrow_prev_tokushima.svg) no-repeat;
  background-size: contain;
}
.p-pref_season.is-tokushima .slick-next {
  background: url(../img/slide_arrow_next_tokushima.svg) no-repeat;
  background-size: contain;
}
.p-pref_season.is-ehime {
  background: #FAA770;
}
.p-pref_season.is-ehime .slick-prev {
  background: url(../img/slide_arrow_prev_ehime.svg) no-repeat;
  background-size: contain;
}
.p-pref_season.is-ehime .slick-next {
  background: url(../img/slide_arrow_next_ehime.svg) no-repeat;
  background-size: contain;
}
.p-pref_season.is-kochi {
  background: #E5847F;
}
.p-pref_season.is-kochi .slick-prev {
  background: url(../img/slide_arrow_prev_kochi.svg) no-repeat;
  background-size: contain;
}
.p-pref_season.is-kochi .slick-next {
  background: url(../img/slide_arrow_next_kochi.svg) no-repeat;
  background-size: contain;
}
.p-pref_article {
  padding-bottom: calc(5rem + 5.5555555556vw);
  position: relative;
}
@media (max-width: 767px) {
  .p-pref_article {
    padding-top: 2.5rem;
    padding-bottom: calc(2.5rem + 10.2564102564vw);
  }
}
.p-pref_article::after {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  background: url(../img/about/pref/article_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-pref_article::after {
    height: 10.2564102564vw;
    background: url(../img/about/pref/article_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
@media (max-width: 767px) {
  .p-pref_article .c-conts_ttl {
    margin-bottom: 2.5rem;
  }
}
.p-pref_article_btn {
  margin-top: 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-pref_article_btn {
    margin-top: 3.75rem;
  }
}
.p-pref_article.is-kagawa .slick-prev {
  background: url(../img/slide_arrow_prev_kagawa.svg) no-repeat;
  background-size: contain;
}
.p-pref_article.is-kagawa .slick-next {
  background: url(../img/slide_arrow_next_kagawa.svg) no-repeat;
  background-size: contain;
}
.p-pref_article.is-tokushima .slick-prev {
  background: url(../img/slide_arrow_prev_tokushima.svg) no-repeat;
  background-size: contain;
}
.p-pref_article.is-tokushima .slick-next {
  background: url(../img/slide_arrow_next_tokushima.svg) no-repeat;
  background-size: contain;
}
.p-pref_article.is-ehime .slick-prev {
  background: url(../img/slide_arrow_prev_ehime.svg) no-repeat;
  background-size: contain;
}
.p-pref_article.is-ehime .slick-next {
  background: url(../img/slide_arrow_next_ehime.svg) no-repeat;
  background-size: contain;
}
.p-pref_map {
  background-color: #B9E6FA;
  padding-top: 5rem;
  padding-bottom: calc(5rem + 5.5555555556vw);
  position: relative;
}
@media (max-width: 767px) {
  .p-pref_map {
    padding-top: 2.5rem;
    padding-bottom: calc(2.5rem + 10.2564102564vw);
  }
}
.p-pref_map::after {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  background: url(../img/about/pref/map_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-pref_map::after {
    height: 10.2564102564vw;
    background: url(../img/about/pref/map_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-pref_map .l-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-pref_map .l-container {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .p-pref_map .l-container .c-conts_ttl {
    margin-bottom: 1.5rem;
  }
  .p-pref_map .l-container .c-conts_ttl + .c-btn {
    display: none;
  }
}
.p-pref_map_box {
  border-radius: 56px;
  background: #fff;
  padding: 0.75rem;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-pref_map_box {
    max-width: 90%;
  }
}
.p-pref_map_box iframe {
  border-radius: 56px;
}
.p-pref_map_btn {
  display: none;
}
@media (max-width: 767px) {
  .p-pref_map_btn {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
  }
}
.p-pref_course {
  padding-top: 5rem;
  padding-bottom: calc(5rem + 5.5555555556vw);
  position: relative;
}
@media (max-width: 767px) {
  .p-pref_course {
    padding-top: 1.875rem;
    padding-bottom: calc(1.25rem + 10.2564102564vw);
  }
}
.p-pref_course::after {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  background: url(../img/about/pref/course_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-pref_course::after {
    height: 10.2564102564vw;
    background: url(../img/about/pref/course_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-pref_course_btn {
  margin-top: 4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-pref_course_btn {
    margin-top: 2.5rem;
  }
}
@media (max-width: 767px) {
  .p-pref_course .pref-slide {
    display: block;
    width: calc(100% + 2.5rem);
    margin-left: -1.25rem;
    margin-bottom: 2.25rem;
    visibility: hidden;
  }
  .p-pref_course .pref-slide.slick-initialized {
    visibility: visible;
  }
  .p-pref_course .pref-slide .c-articleList_item {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .p-pref_course .pref-slide .slick-track {
    padding-bottom: 0.5rem;
  }
}
.p-pref_course .pref-slide .slick-arrow {
  z-index: 1;
}
.p-pref_course .pref-slide .slick-prev {
  width: 32px;
  height: 32px;
  left: 1rem;
  right: initial;
}
.p-pref_course .pref-slide .slick-prev::before {
  display: none;
}
.p-pref_course .pref-slide .slick-next {
  width: 32px;
  height: 32px;
  right: 1rem;
}
.p-pref_course .pref-slide .slick-next::before {
  display: none;
}
.p-pref_course .pref-slide .slide-dots {
  position: relative;
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.p-pref_course .pref-slide .slide-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: #000;
  opacity: 0.08;
}
.p-pref_course .pref-slide .slide-dots li.slick-active button {
  opacity: 0.24;
}
.p-pref_course.is-kagawa .slick-prev {
  background: url(../img/slide_arrow_prev_kagawa.svg) no-repeat;
  background-size: contain;
}
.p-pref_course.is-kagawa .slick-next {
  background: url(../img/slide_arrow_next_kagawa.svg) no-repeat;
  background-size: contain;
}
.p-pref_course.is-tokushima .slick-prev {
  background: url(../img/slide_arrow_prev_tokushima.svg) no-repeat;
  background-size: contain;
}
.p-pref_course.is-tokushima .slick-next {
  background: url(../img/slide_arrow_next_tokushima.svg) no-repeat;
  background-size: contain;
}
.p-pref_course.is-ehime .slick-prev {
  background: url(../img/slide_arrow_prev_ehime.svg) no-repeat;
  background-size: contain;
}
.p-pref_course.is-ehime .slick-next {
  background: url(../img/slide_arrow_next_ehime.svg) no-repeat;
  background-size: contain;
}
.p-pref_course.is-kochi .slick-prev {
  background: url(../img/slide_arrow_prev_kochi.svg) no-repeat;
  background-size: contain;
}
.p-pref_course.is-kochi .slick-next {
  background: url(../img/slide_arrow_next_kochi.svg) no-repeat;
  background-size: contain;
}
.p-pref_bottom {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #F8EEDD;
}
@media (max-width: 767px) {
  .p-pref_bottom {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.p-pref_bottom_list {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-pref_bottom_list {
    gap: 1.25rem;
    flex-wrap: wrap;
  }
}
.p-pref_bottom_list_item {
  text-decoration: none;
  max-width: 200px;
}
@media (max-width: 767px) {
  .p-pref_bottom_list_item {
    width: calc(50% - 0.625rem);
  }
}
.p-pref_bottom_list_item_img {
  width: 100%;
  aspect-ratio: 200/152;
  border-radius: 40px;
  overflow: hidden;
}
.p-pref_bottom_list_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s;
}
.p-pref_bottom_list_item_ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.625rem;
  font-size: 1.125rem;
  font-weight: bold;
  color: #4C4239;
}
@media (max-width: 767px) {
  .p-pref_bottom_list_item_ttl {
    margin-top: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.9375rem;
  }
}
.p-pref_bottom_list_item_ttl img {
  width: 24px;
}
.p-pref_bottom_list_item:hover .p-pref_bottom_list_item_img img {
  scale: 1.1;
}

.p-charm {
  background: url(../img/about/about_head_bg.svg) no-repeat #F8EEDD;
  background-size: 78% auto;
  padding-top: 96px;
}
@media (max-width: 767px) {
  .p-charm {
    background: url(../img/charm/head_bg_sp.svg) no-repeat #F8EEDD;
    background-size: 96.666% auto;
    padding-top: 70px;
  }
}
.p-charm .c-breadcrumb {
  margin-bottom: 0;
}
.p-charm .c-conts_ttl.align-center {
  font-size: 4.875rem;
}
@media (max-width: 767px) {
  .p-charm .c-conts_ttl.align-center {
    font-size: 2.5rem;
  }
}
.p-charm_head {
  padding: 3.75rem 0 calc(10rem + 5.5555555556vw);
  position: relative;
}
@media (max-width: 767px) {
  .p-charm_head {
    padding: 3.5rem 1.5rem calc(3.75rem + 10.2564102564vw);
  }
}
.p-charm_head_ttl {
  font-size: 3rem;
  font-weight: bold;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6.25rem;
}
@media (max-width: 767px) {
  .p-charm_head_ttl {
    font-size: 2rem;
  }
}
.p-charm_head::after {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  background: url(../img/charm/head_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-charm_head::after {
    height: 10.2564102564vw;
    background: url(../img/charm/head_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-charm_head .l-container {
  position: relative;
}
.p-charm_head_deco {
  position: absolute;
}
.p-charm_head_deco.deco01 {
  width: 15.32%;
  top: -40%;
  left: 44.5%;
}
@media (max-width: 767px) {
  .p-charm_head_deco.deco01 {
    width: 30.4%;
    top: -20.512vw;
    left: initial;
    right: 0;
  }
}
.p-charm_head_deco.deco02 {
  width: 11.2%;
  bottom: -35%;
  left: -4%;
}
@media (max-width: 767px) {
  .p-charm_head_deco.deco02 {
    width: 23.8%;
    bottom: -13vw;
    left: -3%;
  }
}
@media (max-width: 767px) {
  .p-charm_head .c-2col_img {
    order: 2;
  }
}
@media (max-width: 767px) {
  .p-charm_head .c-2col_body {
    order: 1;
  }
}
@media (max-width: 767px) {
  .p-charm .c-2col {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-charm .c-2col_body_ttl {
  margin-bottom: 1.25rem;
}
.p-charm .c-articleList-pages {
  margin-top: 5rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-charm .c-articleList-pages {
    margin-top: 3.5rem;
    margin-bottom: 3rem;
  }
}
.p-charm_secBtn {
  text-align: center;
}
.p-charm_taste {
  background: #fff;
  position: relative;
  padding-top: 6rem;
  padding-bottom: calc(6rem + 5.5555555556vw);
}
@media (max-width: 767px) {
  .p-charm_taste {
    padding-top: 2.5rem;
    padding-bottom: calc(2.5rem + 10.2564102564vw);
  }
}
.p-charm_taste::after {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  background: url(../img/charm/taste_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-charm_taste::after {
    height: 10.2564102564vw;
    background: url(../img/charm/taste_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-charm_stay {
  background: #F8EEDD;
  position: relative;
  padding-top: 6rem;
  padding-bottom: calc(6rem + 5.5555555556vw);
}
@media (max-width: 767px) {
  .p-charm_stay {
    padding-top: 2.5rem;
    padding-bottom: calc(2.5rem + 10.2564102564vw);
  }
}
.p-charm_stay::after {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  background: url(../img/charm/stay_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-charm_stay::after {
    height: 10.2564102564vw;
    background: url(../img/charm/stay_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-charm_stay .c-taglist_item a {
  background: #fff;
}
.p-charm_buy {
  background: #fff;
  position: relative;
  padding-top: 6rem;
  padding-bottom: calc(6rem + 5.5555555556vw);
}
@media (max-width: 767px) {
  .p-charm_buy {
    padding-top: 2.5rem;
    padding-bottom: calc(2.5rem + 10.2564102564vw);
  }
}
.p-charm_buy::after {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  background: url(../img/charm/buy_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-charm_buy::after {
    height: 10.2564102564vw;
    background: url(../img/charm/buy_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-charm_healing {
  background: #F8EEDD;
  position: relative;
  padding-top: 6rem;
  padding-bottom: calc(6rem + 5.5555555556vw);
}
@media (max-width: 767px) {
  .p-charm_healing {
    padding-top: 2.5rem;
    padding-bottom: calc(2.5rem + 10.2564102564vw);
  }
}
.p-charm_healing::after {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  background: url(../img/charm/healing_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-charm_healing::after {
    height: 10.2564102564vw;
    background: url(../img/charm/healing_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-charm_healing .c-taglist_item a {
  background: #fff;
}
.p-charm_play {
  background: #fff;
  position: relative;
  padding-top: 6rem;
  padding-bottom: calc(6rem + 5.5555555556vw);
}
@media (max-width: 767px) {
  .p-charm_play {
    padding-top: 2.5rem;
    padding-bottom: calc(2.5rem + 10.2564102564vw);
  }
}
.p-charm_play::after {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  background: url(../img/charm/play_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-charm_play::after {
    height: 10.2564102564vw;
    background: url(../img/charm/play_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-charm_connect {
  background: #F8EEDD;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.p-charm_connect .c-taglist_item a {
  background: #fff;
}

.p-yonden {
  background: url(../img/yonden/head_bg.svg) no-repeat #EFD886;
  background-size: 87% auto;
  padding-top: 96px;
}
@media (max-width: 767px) {
  .p-yonden {
    background: url(../img/yonden/head_bg_sp.svg) no-repeat #EFD886;
    background-size: 96.66% auto;
    padding-top: 70px;
  }
}
.p-yonden .c-breadcrumb {
  margin-bottom: 0;
}
.p-yonden_head {
  padding: 3.75rem 0 10rem;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-yonden_head {
    padding: 3.5rem 1.5rem 4rem;
  }
}
.p-yonden_head_ttl {
  font-size: 3rem;
  font-weight: bold;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6.25rem;
}
@media (max-width: 767px) {
  .p-yonden_head_ttl {
    font-size: 2rem;
  }
}
.p-yonden_head_deco {
  position: absolute;
}
.p-yonden_head_deco.deco01 {
  width: 14.58%;
  top: 0;
  right: 9.72222%;
}
@media (max-width: 767px) {
  .p-yonden_head_deco.deco01 {
    width: 30.25%;
    right: 3.84%;
    top: 19.23vw;
  }
}
.p-yonden_head_deco.deco02 {
  width: 10.416%;
  top: 24%;
  right: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .p-yonden_head_deco.deco02 {
    width: 21.53%;
    top: 72.3vw;
  }
}
.p-yonden_head_deco.deco03 {
  width: 12.77777%;
  bottom: 8%;
  left: 2%;
}
@media (max-width: 767px) {
  .p-yonden_head_deco.deco03 {
    width: 28.2%;
    bottom: 4.3vw;
    left: 3.84%;
  }
}
@media (max-width: 767px) {
  .p-yonden_head .c-2col_img {
    order: 2;
  }
}
@media (max-width: 767px) {
  .p-yonden_head .c-2col_body {
    order: 1;
  }
  .p-yonden_head .c-2col_body_txt {
    line-height: 1.7;
  }
}
.p-yonden .c-contactArea::before {
  background: url(../img/yonden/contact_head.png) no-repeat;
  background-size: 100% 100%;
}
.p-yonden_wrap {
  background: #fff;
  padding: 6rem 3.75rem;
  border-radius: 80px;
  margin-bottom: 3.75rem;
}
@media (max-width: 767px) {
  .p-yonden_wrap {
    border-radius: 40px;
    padding: 3.75rem 2rem;
  }
}
.p-yonden_wrap .c-2col_body_ttl {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .p-yonden_wrap .c-2col_body_ttl {
    margin-bottom: 1.5rem;
  }
}
.p-yonden_wrap .c-2col_body_ttl img {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .p-yonden_wrap .c-2col_body_ttl img {
    margin-top: 0.5rem;
  }
}
.p-yonden_wrap .c-2col_body_txt {
  line-height: 2;
}
.p-yonden_item {
  padding-bottom: 5rem;
  border-bottom: 1px dashed #4C4239;
}
@media (max-width: 767px) {
  .p-yonden_item {
    padding-bottom: 2.5rem;
  }
}
.p-yonden_item + .p-yonden_item {
  margin-top: 5rem;
}
@media (max-width: 767px) {
  .p-yonden_item + .p-yonden_item {
    margin-top: 2.5rem;
  }
}
.p-yonden_item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.p-yonden_item .c-2col_body, .p-yonden_item .c-2col_img {
  width: calc(50% - 1.875rem);
}
@media (max-width: 767px) {
  .p-yonden_item .c-2col_body, .p-yonden_item .c-2col_img {
    width: 100%;
  }
}
.p-yonden_item_btn {
  text-align: center;
  margin-top: 3.75rem;
}
@media (max-width: 767px) {
  .p-yonden_item_btn {
    margin-top: 1.5rem;
  }
}

.p-form {
  background: url(../img/form/head_bg.svg) no-repeat #F8EEDD;
  background-size: 78% auto;
  padding-top: 96px;
}
@media (max-width: 767px) {
  .p-form {
    padding-top: 70px;
    background: url(../img/form/head_bg_sp.svg) no-repeat #F8EEDD;
    background-size: 95% auto;
  }
}
.p-form .c-breadcrumb {
  margin-bottom: 0;
}
.p-form_head {
  padding: 3.75rem 0 calc(3.75rem + 5.5555555556vw);
  position: relative;
}
@media (max-width: 767px) {
  .p-form_head {
    padding: 2.25rem 0 calc(2.25rem + 10.2564102564vw);
  }
}
.p-form_head_ttl {
  font-size: 3rem;
  font-weight: bold;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-form_head_ttl {
    font-size: 2rem;
    max-width: 340px;
  }
}
.p-form_head::after {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  background: url(../img/form/head_bottom.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-form_head::after {
    background: url(../img/form/head_bottom_sp.png) no-repeat;
  }
}
.p-form_main {
  background: #fff;
  padding-top: 5rem;
  padding-bottom: calc(5rem + 5.5555555556vw);
}
@media (max-width: 767px) {
  .p-form_main {
    padding-top: 2rem;
    padding-bottom: calc(5rem + 10.2564102564vw);
  }
}
.p-form_main .c-conts_ttl {
  margin-bottom: 3.75rem;
}
@media (max-width: 767px) {
  .p-form_main .c-conts_ttl {
    margin-bottom: 2.5rem;
    font-size: 2rem;
  }
}
.p-form_main .c-conts_txt {
  line-height: 2.3;
}
@media (max-width: 767px) {
  .p-form_main .c-conts_txt {
    margin-bottom: 2.5rem;
  }
}
.p-form_example {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  margin-bottom: 3.75rem;
}
@media (max-width: 767px) {
  .p-form_example {
    gap: 1.875rem;
    flex-direction: column;
  }
}
.p-form_example_item {
  padding: 1.25rem 3.5rem;
  border: 2px solid #99C26E;
  border-radius: 60px;
  line-height: 1.25;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 440px;
}
@media (max-width: 767px) {
  .p-form_example_item {
    font-size: 1.125rem;
    padding: 0.875rem;
    width: 100%;
    text-align: center;
  }
}
.p-form_example_item:nth-of-type(2) {
  border-color: #3F6DA2;
}
.p-form_example_item:nth-of-type(3) {
  border-color: #FAA770;
}
.p-form_example_item:nth-of-type(4) {
  border-color: #E5847F;
}
.p-form_bottom {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.875rem;
}
@media (max-width: 767px) {
  .p-form_bottom {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.p-form_note {
  max-width: 918px;
  margin-left: auto;
  margin-right: auto;
  list-style: none;
  padding: 0;
  margin-bottom: 3.75rem;
}
@media (max-width: 767px) {
  .p-form_note {
    max-width: 300px;
    margin-bottom: 2.5rem;
  }
}
.p-form_note_item {
  font-size: 1.125rem;
  line-height: 2.3;
  padding-left: 1em;
  text-indent: -1em;
}
@media (max-width: 767px) {
  .p-form_note_item {
    font-size: 0.875rem;
    line-height: 2;
  }
}
.p-form_btn {
  text-align: center;
}

.p-articles {
  background: url(../img/articles/head_bg.svg) no-repeat #F9F6F1;
  background-size: 100% auto;
  padding-top: 96px;
  padding-bottom: calc(4rem + 5.5555555556vw);
}
@media (max-width: 767px) {
  .p-articles {
    padding-top: 70px;
    background: url(../img/articles/head_bg_sp.svg) no-repeat #EFDECF;
    background-size: 96% auto;
    padding-bottom: 0;
  }
}
.p-articles_head {
  padding: 3.75rem 0;
  position: relative;
}
@media (max-width: 767px) {
  .p-articles_head {
    padding: 2.5rem 1.875rem;
  }
}
.p-articles_head_ttl {
  font-size: 3rem;
  font-weight: bold;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-articles_head_ttl {
    font-size: 2rem;
  }
}
.p-articles_head_txt {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .p-articles_head_txt {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.p-articles_head.is-2col {
  display: flex;
  align-items: center;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}
.p-articles_head_body .p-articles_head_txt {
  line-height: 2.3;
}
.p-articles_head_img {
  width: 47.58%;
  max-width: 590px;
  flex: none;
}
@media (max-width: 767px) {
  .p-articles_head_img {
    display: none;
  }
}
.p-articles_head_spbtn {
  display: none;
}
@media (max-width: 767px) {
  .p-articles_head_spbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem;
    width: 100%;
    max-width: 197px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.875rem;
    background: #F9F6F1;
    border-radius: 20px;
    font-weight: bold;
    gap: 0.25rem;
    line-height: 1;
    margin-top: 2.5rem;
  }
}
.p-articles_wrap {
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
.p-articles_nav {
  flex: none;
  padding: 4rem 2.5rem;
  border-radius: 80px 0 0 80px;
  background: rgba(244, 233, 224, 0.5);
  -webkit-backdrop-filter: blur(17px);
          backdrop-filter: blur(17px);
  width: 25.37%;
}
.p-articles_nav + .p-articles_main {
  border-radius: 0 80px 80px 0;
}
@media (max-width: 767px) {
  .p-articles_nav + .p-articles_main {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .p-articles_nav {
    display: none;
    width: 100%;
    position: fixed;
    height: 100svh;
    left: 0;
    top: 0;
    z-index: 10001;
    overflow: auto;
    padding: 1.5rem 1.875rem;
    border-radius: 0;
  }
}
.p-articles_nav_back {
  display: none;
}
@media (max-width: 767px) {
  .p-articles_nav_back {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 2.5rem;
  }
  .p-articles_nav_back img {
    rotate: 180deg;
  }
}
.p-articles_nav_head {
  padding: 0.875rem;
  width: 100%;
  background: #F9F6F1;
  border-radius: 40px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 3.75rem;
  border: none;
  color: #4C4239;
}
@media (max-width: 767px) {
  .p-articles_nav_head {
    margin-bottom: 2.5rem;
  }
}
.p-articles_nav_item + .p-articles_nav_item {
  margin-top: 3.75rem;
}
@media (max-width: 767px) {
  .p-articles_nav_item + .p-articles_nav_item {
    margin-top: 2.5rem;
  }
}
.p-articles_nav_item_ttl {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
}
.p-articles_nav_keyword {
  display: flex;
  gap: 0.625rem;
}
.p-articles_nav_keyword input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border: 1px solid #C4C4C4;
  border-radius: 5px;
  width: 100%;
}
.p-articles_nav_keyword_btn {
  flex: none;
  padding: 0.5rem 0.625rem;
  border-radius: 5px;
  background: #3F6DA2;
  border: none;
  cursor: pointer;
}
.p-articles_nav_keyword_btn img {
  width: 24px;
}
.p-articles_nav_checkbox {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.p-articles_nav_checkbox label input {
  display: none;
}
.p-articles_nav_checkbox label input:checked + span::before {
  background-color: #3F6DA2;
  border-color: #3F6DA2;
}
.p-articles_nav_checkbox label input:checked + span::after {
  display: block;
}
.p-articles_nav_checkbox label span {
  width: 100%;
  padding: 0.625rem 1.25rem;
  background: #fff;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  position: relative;
}
.p-articles_nav_checkbox label span::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #4C4239;
}
.p-articles_nav_checkbox label span::after {
  content: "";
  width: 10px;
  height: 8px;
  background: url(../img/ico_check.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: calc(1.25rem + 8px - 5px);
  top: calc(50% - 4px);
  display: none;
}
.p-articles_nav_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 0.625rem;
  max-height: 250px;
  overflow: auto;
}
.p-articles_nav_tag label input {
  display: none;
}
.p-articles_nav_tag label input:checked + span {
  background-color: #3F6DA2;
  color: #fff;
}
.p-articles_nav_tag label span {
  padding: 0.5rem 1rem;
  background: #fff;
  border-radius: 100px;
  color: #3F6DA2;
  font-weight: 500;
  display: inline-block;
  font-size: 0.875rem;
}
.p-articles_nav .c-btn {
  margin-top: 3.75rem;
  margin-bottom: 1.875rem;
}
@media (max-width: 767px) {
  .p-articles_nav .c-btn {
    margin-top: 2.5rem;
  }
}
.p-articles_nav_clear {
  font-size: 0.875rem;
  font-weight: bold;
  background-color: #fff;
  padding: 0.625rem;
  display: block;
  width: 100%;
  max-width: 102px;
  margin-left: auto;
  margin-right: auto;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}
.p-articles_nav_close {
  display: none;
}
@media (max-width: 767px) {
  .p-articles_nav_close {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    font-weight: bold;
    width: 100%;
    max-width: 131px;
    gap: 0.125rem;
    background: #E5E5E5;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.875rem;
  }
}
.p-articles_main {
  background-color: #fff;
  padding: 3.125rem 3.75rem;
  background: #fff;
  border-radius: 80px;
  flex: 1;
}
@media (max-width: 767px) {
  .p-articles_main {
    padding: 2.5rem 1.875rem;
    border-radius: 0;
    padding-bottom: calc(3.75rem + 10.2564102564vw);
  }
}
.p-articles_main_head {
  margin-bottom: 1.5rem;
}
.p-articles_main_head_ttl {
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.p-articles_main_head_txt {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
}
.p-articles_main_count {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Radio Canada Big", "Zen Maru Gothic", serif;
  margin-bottom: 3.75rem;
}
.p-articles_main_count span {
  font-weight: bold;
  font-size: 2.5rem;
  margin-right: 0.75rem;
}
.p-articles_main_count small {
  font-size: 1.25rem;
  font-weight: bold;
  margin-right: 0.75rem;
}
.p-articles_main_list {
  width: 100%;
}
.p-articles_main_list_size {
  width: calc(50% - 20px);
}
@media (max-width: 767px) {
  .p-articles_main_list_size {
    width: 100%;
  }
}
.p-articles_main_list_itemwrap {
  width: calc(50% - 20px);
}
@media (max-width: 767px) {
  .p-articles_main_list_itemwrap {
    width: 100%;
  }
}
.p-articles_main_list_item {
  max-width: 403px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  padding: 0.625rem;
  border-radius: 60px;
  rotate: 1deg;
  text-decoration: none;
  max-width: 478px;
  display: block;
  background: #F9F6F1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}
.p-articles_main_list_item.is-video {
  max-width: 324px;
}
.p-articles_main_list_item.is-video .p-articles_main_list_item_thumb {
  aspect-ratio: 280/498;
}
.p-articles_main_list_item.is-new::before {
  content: "";
  width: 70px;
  height: 47px;
  background: url(../img/ico_new.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 1.25rem;
  top: -0.75rem;
  z-index: 1;
}
.p-articles_main_list_item_thumb {
  width: 100%;
  border-radius: 60px;
  position: relative;
  margin-bottom: 0.625rem;
  aspect-ratio: 463/308;
  overflow: hidden;
}
.p-articles_main_list_item_thumb::after {
  content: "";
  width: 100%;
  height: 101%;
  position: absolute;
  border: 2px solid #fff;
  left: 3px;
  top: 3px;
  border-radius: 60px;
  rotate: 1deg;
}
.p-articles_main_list_item_thumb iframe {
  width: 100%;
  aspect-ratio: 280/498;
  height: auto;
  border-radius: 60px;
}
.p-articles_main_list_item_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 60px;
}
.p-articles_main_list_item_body {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.p-articles_main_list_item_area {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  background: #A28873;
}
.p-articles_main_list_item_txt {
  color: #4C4239;
  font-weight: bold;
}
.p-articles_main_list_item_txt_head {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.p-articles_main_list_item_txt_head span {
  border: 2px solid #4C4239;
  padding: 0 0.5rem;
  border-radius: 4px;
  background: #fff;
}
.p-articles_main_list_item_txt_ttl {
  font-size: 0.9375rem;
}
.p-articles_main_list_item_txt_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1em;
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 0.5rem;
  padding-right: 1rem;
}
.p-articles_main_list_item_txt_tags_tag {
  color: #3F6DA2;
}
.p-articles_main_list_item.is-video {
  width: 22.5vw;
}
@media (max-width: 767px) {
  .p-articles_main_list_item.is-video {
    width: 100%;
  }
}
.p-articles_main_list_item.is-video .p-articles_main_list_item_thumb::after {
  height: 100%;
}
.p-articles_main_list_item.area-kochi .p-articles_main_list_item_area {
  background-color: #E5847F;
}
.p-articles_main_list_item.area-ehime .p-articles_main_list_item_area {
  background-color: #FAA770;
}
.p-articles_main_list_item.area-tokushima .p-articles_main_list_item_area {
  background-color: #89BBD2;
}
.p-articles_main_list_item.area-kagawa .p-articles_main_list_item_area {
  background-color: #99C26E;
}
.p-articles_main_list.is-3col .p-articles_main_list_size, .p-articles_main_list.is-3col .p-articles_main_list_itemwrap {
  width: calc(33.3333333333% - 1.6666666667rem);
}
@media (max-width: 767px) {
  .p-articles_main_list.is-3col .p-articles_main_list_size, .p-articles_main_list.is-3col .p-articles_main_list_itemwrap {
    width: 100%;
  }
}
.p-articles_main_list.is-special {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-articles_main_list.is-special {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-articles_main_list.is-special .p-articles_main_list_size, .p-articles_main_list.is-special .p-articles_main_list_itemwrap {
  width: calc(33.3333333333% - 1.6666666667rem);
}
@media (max-width: 767px) {
  .p-articles_main_list.is-special .p-articles_main_list_size, .p-articles_main_list.is-special .p-articles_main_list_itemwrap {
    width: 100%;
  }
}
.p-articles_main_list.is-special .p-articles_main_list_item {
  border-radius: 50px;
  padding: 0.625rem 0.625rem 3rem 0.625rem;
  margin-bottom: 0;
}
.p-articles_main_list.is-special .p-articles_main_list_item_img {
  border-radius: 34px;
}
.p-articles_main_list.is-special .p-articles_main_list_item_ttl {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.p-single {
  padding-top: 96px;
  padding-bottom: calc(6.25rem + 5.5555555556vw);
  position: relative;
  background: #F9F6F1;
  z-index: 0;
}
@media (max-width: 767px) {
  .p-single {
    padding-top: 89px;
  }
}
.p-single::after {
  content: "";
  width: 100%;
  height: 75vh;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: -1;
  background: url(../img/single/head.png) no-repeat bottom;
  background-size: cover;
}
@media (orientation: portrait) {
  .p-single::after {
    background: url(../img/single/head.png) no-repeat top;
    background-size: 100% auto;
  }
}
@media (max-width: 767px) {
  .p-single::after {
    background: url(../img/single/head.png) no-repeat top;
    background-size: 100% auto;
  }
}
.p-single.is-kagawa::after {
  background: url(../img/single/head_kagawa.png) no-repeat bottom;
  background-size: cover;
}
@media (orientation: portrait) {
  .p-single.is-kagawa::after {
    background: url(../img/single/head_kagawa.png) no-repeat top;
    background-size: 100% auto;
  }
}
@media (max-width: 767px) {
  .p-single.is-kagawa::after {
    background: url(../img/single/head_kagawa.png) no-repeat top;
    background-size: 100% auto;
  }
}
.p-single.is-kochi::after {
  background: url(../img/single/head_kochi.png) no-repeat bottom;
  background-size: cover;
}
@media (orientation: portrait) {
  .p-single.is-kochi::after {
    background: url(../img/single/head_kochi.png) no-repeat top;
    background-size: 100% auto;
  }
}
@media (max-width: 767px) {
  .p-single.is-kochi::after {
    background: url(../img/single/head_kochi.png) no-repeat top;
    background-size: 100% auto;
  }
}
.p-single.is-tokushima::after {
  background: url(../img/single/head_tokushima.png) no-repeat bottom;
  background-size: cover;
}
@media (orientation: portrait) {
  .p-single.is-tokushima::after {
    background: url(../img/single/head_tokushima.png) no-repeat top;
    background-size: 100% auto;
  }
}
@media (max-width: 767px) {
  .p-single.is-tokushima::after {
    background: url(../img/single/head_tokushima.png) no-repeat top;
    background-size: 100% auto;
  }
}
.p-single.is-ehime::after {
  background: url(../img/single/head_ehime.png) no-repeat bottom;
  background-size: cover;
}
@media (orientation: portrait) {
  .p-single.is-ehime::after {
    background: url(../img/single/head_ehime.png) no-repeat top;
    background-size: 100% auto;
  }
}
@media (max-width: 767px) {
  .p-single.is-ehime::after {
    background: url(../img/single/head_ehime.png) no-repeat top;
    background-size: 100% auto;
  }
}
.p-single_wrap {
  display: flex;
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  justify-content: center;
  gap: 6.25rem;
}
@media (max-width: 767px) {
  .p-single_wrap {
    gap: 3.5rem;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.p-single_movie {
  width: 23.25%;
  max-width: 300px;
}
@media (min-width: 768px) and (min-height: 1100px) {
  .p-single_movie {
    position: sticky;
    top: 94px;
  }
}
@media (max-width: 767px) {
  .p-single_movie {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-single_movie_video {
  width: 100%;
  aspect-ratio: 300/534;
  border-radius: 60px;
  margin-bottom: 1.125rem;
  position: relative;
}
.p-single_movie_video iframe {
  width: 100%;
  height: 100%;
  border-radius: 60px;
}
.p-single_movie_video::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border: 2px solid #fff;
  left: 3px;
  top: 3px;
  border-radius: 60px;
  rotate: 1deg;
  pointer-events: none;
}
.p-single_movie_account {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.125rem;
  text-decoration: none;
  color: #4C4239;
}
.p-single_movie_account img {
  width: 44px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.p-single_movie_txt {
  font-size: 0.875rem;
  line-height: 2;
  margin-bottom: 1.25rem;
}
.p-single_movie_btn {
  text-align: center;
}
@media (max-width: 767px) {
  .p-single_movie_btn .c-btn {
    width: 216px;
  }
}
.p-single_article {
  flex: 1;
  max-width: 880px;
  border-radius: 80px;
  background: #fff;
  padding: 2.5rem 5rem;
  position: relative;
}
@media (max-width: 767px) {
  .p-single_article {
    width: 100%;
    padding: 2.875rem 2rem;
    border-radius: 60px;
  }
}
.p-single_article_pref {
  position: absolute;
  left: -40px;
}
@media (max-width: 767px) {
  .p-single_article_pref {
    left: 32px;
    top: -22px;
    display: flex;
    gap: 0.5rem;
  }
}
.p-single_article_pref span {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p-single_article_pref span {
    width: 44px;
    height: 44px;
    font-size: 0.875rem;
  }
}
.p-single_article_pref span + span {
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .p-single_article_pref span + span {
    margin-top: 0;
  }
}
.p-single_article_pref span.is-kochi {
  background-color: #E5847F;
}
.p-single_article_pref span.is-kagawa {
  background-color: #99C26E;
}
.p-single_article_pref span.is-tokushima {
  background-color: #89BBD2;
}
.p-single_article_pref span.is-ehime {
  background-color: #FAA770;
}
.p-single_article_head {
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .p-single_article_head {
    margin-bottom: 1.5rem;
  }
}
.p-single_article_date {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .p-single_article_date {
    font-size: 0.875rem;
  }
}
.p-single_article_date span {
  padding: 0 0.75rem;
  border: 2px solid #4C4239;
  border-radius: 8px;
  display: inline-block;
}
.p-single_article_ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p-single_article_ttl {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}
.p-single_article_tag {
  list-style: none;
  display: flex;
  gap: 0.625rem;
  flex-wrap: wrap;
  padding: 0;
}
@media (max-width: 767px) {
  .p-single_article_tag {
    gap: 0.25rem;
  }
}
.p-single_article_tag_item a {
  text-decoration: none;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-single_article_tag_item a {
    font-size: 0.75rem;
  }
}
.p-single_article_body p {
  line-height: 1.8;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .p-single_article_body p {
    font-size: 0.875rem;
  }
}
.p-single_article_body > .wp-block-list {
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .p-single_article_body > .wp-block-list li {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .p-single_article_body .c-btn {
    width: 216px;
  }
}
.p-single_recommend {
  padding-top: 3.75rem;
  border-top: 1px dashed #4C4239;
  margin-top: 3.75rem;
}
@media (max-width: 767px) {
  .p-single_recommend {
    padding-top: 2.5rem;
    margin-top: 2.5rem;
  }
}
.p-single_recommend_ttl {
  color: #4C4239;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
  padding: 0;
  margin-top: 0;
}
@media (max-width: 767px) {
  .p-single_recommend_ttl {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
.p-single_recommend_list {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .p-single_recommend_list {
    flex-wrap: wrap;
  }
}
.p-single_recommend_list_item {
  width: calc(25% - 1.125rem);
}
@media (max-width: 767px) {
  .p-single_recommend_list_item {
    width: calc(50% - 0.75rem);
  }
}
.p-single_recommend_list_item a {
  text-decoration: none;
  color: #4C4239;
}
.p-single_recommend_list_item_img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.p-single_recommend_list_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s;
}
.p-single_recommend_list_item_ttl {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0;
  color: #4C4239;
}
@media (max-width: 767px) {
  .p-single_recommend_list_item_ttl {
    font-size: 0.8125rem;
  }
}
.p-single_btn {
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .p-single_btn {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.p-single_btn .c-btn {
  width: 360px;
}
@media (max-width: 767px) {
  .p-single_btn .c-btn {
    width: 216px;
  }
}
.p-single_sns {
  text-align: center;
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 5.625rem;
}
@media (max-width: 767px) {
  .p-single_sns {
    padding-bottom: 2.5rem;
    padding-top: 4.5rem;
  }
}
.p-single_sns_ttl {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.875rem;
}
@media (max-width: 767px) {
  .p-single_sns_ttl {
    display: none;
  }
}
.p-single_sns_list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 2rem;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-single_sns_list {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .p-single_sns_list img {
    width: 2rem;
  }
}
.p-single_sns_deco {
  width: 30.138%;
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .p-single_sns_deco {
    width: 41.4%;
    bottom: 0;
    right: -9%;
  }
}

.p-error {
  background: url(../img/about/about_head_bg.svg) no-repeat #F8EEDD;
  background-size: 78% auto;
  padding-top: 96px;
}
@media (max-width: 767px) {
  .p-error {
    padding-top: 70px;
    background-size: 90% auto;
  }
}
.p-error_head {
  padding: 3.75rem 0 calc(3.75rem + 5.5555555556vw);
  position: relative;
}
@media (max-width: 767px) {
  .p-error_head {
    padding: 3.5rem 1.5rem calc(3rem + 10.2564102564vw);
  }
}
.p-error_head_ttl {
  font-size: 3rem;
  font-weight: bold;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .p-error_head_ttl {
    font-size: 2rem;
  }
}
.p-error_head::after {
  content: "";
  width: 100%;
  height: 5.5555555556vw;
  background: url(../img/about/head_bottom.png) no-repeat bottom;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .p-error_head::after {
    height: 10.2564102564vw;
    background: url(../img/about/head_bottom_sp.png) no-repeat bottom;
    background-size: 100% 100%;
  }
}
.p-error_main {
  background: #fff;
  padding-top: 5rem;
  padding-bottom: calc(5rem + 5.5555555556vw);
}
@media (max-width: 767px) {
  .p-error_main {
    padding-top: 2.5rem;
    padding-bottom: calc(3.75rem + 10.2564102564vw);
  }
}
.p-error_wrap {
  display: flex;
  gap: 3.75rem;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-error_wrap {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
  }
}
.p-error_body_ttl {
  margin-bottom: 2.5rem;
}
.p-error_body_txt {
  font-size: 1.5rem;
  line-height: 2.3;
}
@media (max-width: 767px) {
  .p-error_body_txt {
    font-size: 0.875rem;
    line-height: 2;
  }
}
.p-error_img {
  width: 25%;
  flex: none;
}
@media (max-width: 767px) {
  .p-error_img {
    width: 43.5%;
  }
}/*# sourceMappingURL=style.css.map */