@charset "UTF-8";
/* ==========================================================================
   変数
========================================================================== */
/*noto
$BODY_FONT_FAM: "Noto Sans JP", sans-serif;
$BODY_FONT_MIN: "Noto Serif JP", serif;
*/
/* ==========================================================================
   リセット
 ========================================================================== */
* {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  list-style: none;
}

img {
  border-style: none;
  vertical-align: bottom;
  max-width: 100%;
}

svg:not(:root) {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: #2D282A;
  transition: 0.5s;
}

/**************************
頻出MIXIN
***************************/
/*明朝*/
/*文字数制限（折り返し）*/
/*文字数制限（行）*/
.ellipsis {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
      font-size
========================================================================== */
html {
  font-size: 62.5%;
}

span,
a,
p,
th,
td,
ul,
ol,
li,
dl,
dt,
dd,
b,
i,
div {
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
}

h1 {
  font-size: clamp(2.6rem, 2.6vw, 4.8rem);
  line-height: 1.4;
  /*font-family: "Yu Gothic Bold", "游ゴシック Bold", "メイリオ", Meiryo, sans-serif;*/
  font-weight: bold;
  font-feature-settings: "palt";
}

h2 {
  font-size: clamp(2.4rem, 2.4vw, 3.6rem);
  /*font-family: "Yu Gothic Bold", "游ゴシック Bold", "メイリオ", Meiryo, sans-serif;*/
  font-weight: bold;
  line-height: 1.4;
}

h3 {
  font-size: clamp(1.8rem, 1.8vw, 2.4rem);
  line-height: 1.4;
  font-weight: 600;
}

h4 {
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  line-height: 1.4;
  font-weight: 600;
}

h5 {
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
  line-height: 1.4;
}

/* ==========================================================================
      common
========================================================================== */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
  color: #2D282A;
  background: #fff;
  letter-spacing: 0;
  line-height: 1.6;
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: normal;
  overflow-x: hidden;
  max-width: 100vw;
  word-wrap: break-word;
}

section {
  padding: clamp(4.4rem, 4.4vw, 8.8rem) 0;
}

.ap_inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.ap_tb_visible {
  display: none;
}

.ap_sm_visible {
  display: none;
}

@media screen and (max-width: 1024px) {
  .ap_tb_visible {
    display: block;
  }
  .ap_tb_hidden {
    display: none !important;
  }
}
@media screen and (max-width: 599px) {
  .ap_sm_hidden {
    display: none !important;
  }
  .ap_sm_visible {
    display: block;
  }
}
/* ==========================================================================
margin_style
========================================================================== */
.mb0 {
  margin-bottom: clamp(0rem, 0vw, 0rem);
}

.mt0 {
  margin-top: clamp(0rem, 0vw, 0rem);
}

.mb4 {
  margin-bottom: clamp(0.4rem, 0.4vw, 0.4rem);
}

.mt4 {
  margin-top: clamp(0.4rem, 0.4vw, 0.4rem);
}

.mb8 {
  margin-bottom: clamp(0.8rem, 0.8vw, 0.8rem);
}

.mt8 {
  margin-top: clamp(0.8rem, 0.8vw, 0.8rem);
}

.mb16 {
  margin-bottom: clamp(1.6rem, 1.6vw, 1.6rem);
}

.mt16 {
  margin-top: clamp(1.6rem, 1.6vw, 1.6rem);
}

.mb24 {
  margin-bottom: clamp(2.4rem, 2.4vw, 2.4rem);
}

.mt24 {
  margin-top: clamp(2.4rem, 2.4vw, 2.4rem);
}

.mb32 {
  margin-bottom: clamp(3.2rem, 3.2vw, 3.2rem);
}

.mt32 {
  margin-top: clamp(3.2rem, 3.2vw, 3.2rem);
}

.mb40 {
  margin-bottom: clamp(4rem, 4vw, 4rem);
}

.mt40 {
  margin-top: clamp(4rem, 4vw, 4rem);
}

.mb48 {
  margin-bottom: clamp(4.8rem, 4.8vw, 4.8rem);
}

.mt48 {
  margin-top: clamp(4.8rem, 4.8vw, 4.8rem);
}

.mb56 {
  margin-bottom: clamp(5.6rem, 5.6vw, 5.6rem);
}

.mt56 {
  margin-top: clamp(5.6rem, 5.6vw, 5.6rem);
}

.mb64 {
  margin-bottom: clamp(6.4rem, 6.4vw, 6.4rem);
}

.mt64 {
  margin-top: clamp(6.4rem, 6.4vw, 6.4rem);
}

.mb72 {
  margin-bottom: clamp(7.2rem, 7.2vw, 7.2rem);
}

.mt72 {
  margin-top: clamp(7.2rem, 7.2vw, 7.2rem);
}

.mb80 {
  margin-bottom: clamp(8rem, 8vw, 8rem);
}

.mt80 {
  margin-top: clamp(8rem, 8vw, 8rem);
}

.mb88 {
  margin-bottom: clamp(8.8rem, 8.8vw, 8.8rem);
}

.mt88 {
  margin-top: clamp(8.8rem, 8.8vw, 8.8rem);
}

.mb96 {
  margin-bottom: clamp(9.6rem, 9.6vw, 9.6rem);
}

.mt96 {
  margin-top: clamp(9.6rem, 9.6vw, 9.6rem);
}

.mb104 {
  margin-bottom: clamp(10.4rem, 10.4vw, 10.4rem);
}

.mt104 {
  margin-top: clamp(10.4rem, 10.4vw, 10.4rem);
}

.mb112 {
  margin-bottom: clamp(11.2rem, 11.2vw, 11.2rem);
}

.mt112 {
  margin-top: clamp(11.2rem, 11.2vw, 11.2rem);
}

.mb120 {
  margin-bottom: clamp(12rem, 12vw, 12rem);
}

.mt120 {
  margin-top: clamp(12rem, 12vw, 12rem);
}

/* ==========================================================================
      font_style
========================================================================== */
.ap_center_text {
  text-align: center !important;
}

.ap_right_text {
  text-align: right !important;
}

.ap_left_text {
  text-align: left !important;
}

.ap_primary,
.ap_primary a,
a.ap_primary {
  color: #F74B4B;
}

.ap_secondary,
.ap_secondary a,
a.ap_secondary {
  color: #FFF3E8;
}

.ap_thirdly,
.ap_thirdly a,
a.ap_thirdly {
  color: #FFFBF8;
}

.ap_bg_primary {
  background: #F74B4B;
}

.ap_bg_secondary {
  background: #FFF3E8;
}

.ap_bg_thirdly {
  background: #FFFBF8;
}

/* ==========================================================================
   button_style
========================================================================== */
#header {
  position: relative;
}

.ap_menu_btn_trigger {
  position: relative;
  width: 35px;
  height: 30px;
  cursor: pointer;
}

.ap_menu_btn_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 50px;
}

.ap_menu_btn_trigger,
.ap_menu_btn_trigger span {
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}

.ap_menu_btn_trigger span:nth-of-type(1) {
  top: 0;
}

.ap_menu_btn_trigger span:nth-of-type(2) {
  top: 13.5px;
}

.ap_menu_btn_trigger span:nth-of-type(3) {
  bottom: 0;
}

.ap_menu_btn_trigger.active span:nth-of-type(1) {
  transform: translateY(13.5px) rotate(-45deg);
}

.ap_menu_btn_trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-btn05-bar02 0.8s forwards;
}
@keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
.ap_menu_btn_trigger.active span:nth-of-type(3) {
  transform: translateY(-13.5px) rotate(45deg);
}

/* ==========================================================================
      input_style
========================================================================== */
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select {
  color: #666;
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  display: block;
  padding: 0.7em;
  border: 1px solid #666;
  width: 100%;
  transition: 0.25s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border-radius: 3px;
  min-height: 4rem;
}

input[type=text]:hover,
input[type=email]:hover,
input[type=password]:hover,
input[type=date]:hover,
input[type=tel]:hover,
textarea:hover,
textarea:focus,
select:hover,
select:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=tel]:focus,
input[type=date]:focus {
  transition: 0.25s;
  box-shadow: 0px 0px 10px 0.2px #F74B4B;
  outline: 0;
}
input[type=text]:hover::-moz-placeholder, input[type=email]:hover::-moz-placeholder, input[type=password]:hover::-moz-placeholder, input[type=date]:hover::-moz-placeholder, input[type=tel]:hover::-moz-placeholder, textarea:hover::-moz-placeholder, textarea:focus::-moz-placeholder, select:hover::-moz-placeholder, select:focus::-moz-placeholder, input[type=text]:focus::-moz-placeholder, input[type=email]:focus::-moz-placeholder, input[type=password]:focus::-moz-placeholder, input[type=tel]:focus::-moz-placeholder, input[type=date]:focus::-moz-placeholder {
  font-size: 0;
  color: #fff;
}
input[type=text]:hover::placeholder,
input[type=email]:hover::placeholder,
input[type=password]:hover::placeholder,
input[type=date]:hover::placeholder,
input[type=tel]:hover::placeholder,
textarea:hover::placeholder,
textarea:focus::placeholder,
select:hover::placeholder,
select:focus::placeholder,
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=date]:focus::placeholder {
  font-size: 0;
  color: #fff;
}

/*チェックボックスのCSS*/
input[type=checkbox] {
  position: absolute;
  opacity: 0;
}

input[type=radio] {
  position: absolute;
  opacity: 0;
}

.wpcf7-list-item {
  position: relative;
  display: block;
  margin: 0 0 1rem 0;
}

/*チェックボックスの枠*/
.wpcf7-list-item-label:before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
  top: -3px;
  margin-right: 1rem;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
  background: #fff;
  border: 1px solid #666;
}

/* ==========================================================================
  電話番号
========================================================================== */
@media screen and (min-width: 599px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.ap_flex.between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.grecaptcha-badge {
  visibility: hidden;
}

/***********************************/
/*お問い合わせ
/*オリジナルデザインがある場合は適宜変更してください
/************************************/
.ap_contact_form_wrap input[type=submit] {
  background: #F74B4B;
  border: 2px solid #F74B4B;
  color: #fff;
  padding: 2rem 2rem;
  margin: 2rem 0;
  font-size: 2rem;
  min-width: 30rem;
  border-radius: 1rem;
  transition: 0.5s;
  cursor: pointer;
}
.ap_contact_form_wrap input[type=submit]:hover {
  color: #F74B4B;
  background: #fff;
}

.ap_height_center {
  align-items: center;
  border-bottom: 1px dotted #F74B4B;
  padding: 2rem 0;
  display: flex;
}
.ap_height_center .ap_contact_left {
  width: 30%;
}
.ap_height_center .ap_contact_left p {
  font-weight: bold;
}
.ap_height_center .ap_contact_right {
  width: 70%;
}

.ap_required {
  background: #F74B4B;
  color: #fff;
  font-size: 10px;
  border-radius: 3px;
  padding: 0.5rem;
  margin-left: 1rem;
}

.address_wrap p > span {
  font-size: 14px;
  min-width: 100px;
  text-align: left;
  flex-shrink: 0;
}

.address_wrap > p, .address_wrap label {
  width: 100%;
}

.address_wrap > p {
  margin-bottom: 10px;
}

.wpcf7-spinner {
  display: none;
}

/*チェックアイコン URLは適宜変更*/
input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.3rem;
  left: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("/img/check.png") no-repeat center;
  background-size: contain;
}

input[type=radio]:checked + .wpcf7-list-item-label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.3rem;
  left: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url("/img/check.png") no-repeat center;
  background-size: contain;
}

@media screen and (max-width: 1024px) {
  .ap_height_center {
    display: block;
  }
  .ap_height_center .ap_contact_left {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .ap_height_center .ap_contact_right {
    width: 100%;
  }
}
/***********************************/
/*初期ページャ*/
/*オリジナルデザインがある場合は適宜変更してください*/
/************************************/
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links a, .nav-links span {
  min-width: clamp(1.6rem, 1.6vw, 3.2rem);
  min-height: clamp(1.6rem, 1.6vw, 3.2rem);
  color: #c3c3c3;
  display: block;
  text-align: center;
  margin: 0 clamp(0.4rem, 0.4vw, 0.8rem);
  padding: 0 clamp(0.4rem, 0.4vw, 0.8rem);
}

.nav-links span {
  color: #F74B4B;
}

.prev.page-numbers, .next.page-numbers {
  min-width: clamp(2rem, 2vw, 4rem);
  min-height: clamp(2rem, 2vw, 4rem);
  border-radius: 5px;
  background: #F6F6F6;
  color: #F74B4B;
  border: 1px solid #c3c3c3;
  line-height: clamp(2rem, 2vw, 4rem);
  padding: 0;
  font-size: clamp(1.4rem, 1.4vw, 2rem);
  font-weight: bold;
  text-decoration: none !important;
}

/*お知らせシングルのページャー*/
.news_pager > div {
  width: 30%;
}

.news_pager > a {
  width: 30%;
}

.news_pager > p {
  width: 30%;
}

.news_pager .end {
  text-align: right;
}

.news_pager {
  justify-content: space-between;
}
.news_pager .ap_flex, .news_pager a, .news_pager p {
  color: #F74B4B;
  text-decoration: underline;
}
.news_pager a {
  text-align: center;
}
.news_pager .end {
  justify-content: flex-end;
}

.ap_news_pager_title {
  text-align: center;
}
.ap_news_pager_title h2 {
  font-size: 3rem;
  color: #F74B4B;
}

/***********************************/
/*初期メニュー*/
/*オリジナルデザインがある場合は適宜変更してください*/
/************************************/
/*トグルメニューの位置*/
.ap_menu {
  display: none;
  transition: 0.5s;
  position: fixed;
  z-index: 999;
  right: 0;
  top: 0;
  background: #F74B4B;
  padding: 1.5rem;
  border-radius: 0 0 0 4px;
}

.ap_menu_btn_trigger span {
  background: #fff;
}

/*トグルメニューの中身*/
.ap_menu_box {
  position: fixed;
  width: 100vw;
  transition: 0.5s;
  height: 0;
  overflow: auto;
  top: 0;
  opacity: 0;
  display: none;
  z-index: -1;
  background: #F74B4B; /*適宜変更*/
  padding-top: clamp(5.6rem, 5.6vw, 11.2rem);
  padding-bottom: 10rem;
}

.ap_menu_box ul {
  overflow: auto;
  max-width: 500px;
  margin: 0 auto;
  width: 90%;
}
.ap_menu_box ul .ap_common_arrow {
  width: 2rem;
  height: 2rem;
  background: #F74B4B;
}
.ap_menu_box ul .ap_common_arrow::before {
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
}

.ap_menu_box li a {
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: space-between;
  padding: 0.8rem;
}

.ap_menu_box .parent {
  font-weight: 600;
  border-bottom: 1px solid #fff;
  margin-top: 1.6rem;
}

@media screen and (max-width: 1024px) {
  .ap_menu_box {
    display: block;
  }
  .ap_menu {
    display: block;
  }
}
.ap_menu_box.opacity {
  opacity: 1;
}

.ap_menu_box.open {
  height: 100vh;
  z-index: 999;
}

/***********************************/
/*初期アニメーション*/
/*オリジナルデザインがある場合は適宜変更してください*/
/************************************/
/*スクロールでフェードイン*/
.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/*ロード時にフェードイン　上の方の要素に*/
.top_fadein_auto {
  opacity: 0;
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
    transform: translatey(20px);
  }
  100% {
    opacity: 1;
    transform: translatey(0);
  }
}
/*hoverで画像ズーム*/
.zoom {
  position: relative;
  overflow: hidden;
  display: block;
  width: 50%; /*各画像のdivクラスでサイズは変更すること*/
}

.zoom img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  transition: 0.5s;
}

.zoom:hover img {
  transform: scale(1.1);
}

/* ドキドキしたアニメーション効果用css */
.dokidoki {
  animation-name: dokidoki;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes dokidoki {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
/*******************
pankuzu
*********************/
.top_pankuzu {
  z-index: 1;
  color: #ccc;
  padding: 1.6rem;
  font-size: 12px;
}
.top_pankuzu span {
  font-size: 12px;
  color: #ccc;
}
.top_pankuzu a span {
  font-size: 12px;
  color: #ccc;
  text-decoration: underline;
}

@media screen and (max-width: 599px) {
  .top_pankuzu {
    width: 100%;
    white-space: nowrap;
    overflow: auto;
    font-size: 10px;
  }
  .top_pankuzu span {
    font-size: 10px;
  }
  .top_pankuzu a span {
    font-size: 10px;
  }
}
/**********************
初期ニュースアーカイブ
***********************/
/*お知らせコンテンツ（共通)*/
.ap_news_flex {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 1.6rem 0;
}
.ap_news_flex a:hover {
  color: #F74B4B;
  text-decoration: underline;
}

.ap_news_flex_data {
  display: flex;
  align-items: center;
  margin-right: 0.8rem;
}

.cat-item {
  width: 180px;
  padding: 0.5rem 1rem;
  color: #fff;
  margin: 0 1.5rem;
  text-align: center;
  border-radius: 50px;
  background: #666;
}

.cat-item.cat01 {
  background: #F74B4B;
}

.cat-item.cat02 {
  background: #ff3300;
}

.cat-item.cat03 {
  background: #ff9900;
}

.cat-item.cat04 {
  background: #99ff00;
}

.cat-item.cat05 {
  background: #00cccc;
}

.cat-item.cat06 {
  background: #0033ff;
}

.ap_news_flex a {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

@media screen and (max-width: 1024px) {
  .ap_news_flex {
    display: block;
  }
  .ap_news_flex_data {
    margin-bottom: 0.5rem;
  }
  .cat-item {
    width: 120px;
  }
}
/************************
GMAP
***********************/
.gmap {
  aspect-ratio: 16/9;
  position: relative;
}

.gmap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/***************************
common
***************************/
.link {
  text-decoration: underline;
  color: #F74B4B;
  transition: 0.3s;
}
.link:hover {
  opacity: 0.7;
}

/*共通タイトル*/
.ap_top_title h2 {
  font-size: clamp(2.6rem, 2.6vw, 4.8rem);
  margin-bottom: clamp(1.6rem, 1.6vw, 3.2rem);
}
.ap_top_title .en {
  color: #F74B4B;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.6rem, 1.6vw, 2rem);
}
.ap_top_title.center {
  text-align: center;
}

/*ボタン*/
.ap_common_btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #F74B4B;
  color: #fff;
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: clamp(0.8rem, 0.8vw, 1.6rem) clamp(3.2rem, 3.2vw, 6.4rem);
}
.ap_common_btn.blue {
  background: #4EB3F2;
}
.ap_common_btn.green {
  background: #6EBC33;
}
.ap_common_btn.white {
  background: #FFF;
  color: #F74B4B;
}
.ap_common_btn.grad {
  background-image: linear-gradient(90deg, #f74b4b, #ff654a);
}
.ap_common_btn.yellow {
  background: #FFF3E8;
  color: #2D282A;
}
.ap_common_btn img {
  margin-left: 0.4rem;
}

.ap_common_btn:hover {
  box-shadow: inherit;
  transform: translate(3px, 3px);
}

/*やじるし部分*/
.ap_common_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.8rem;
  background-color: #ffffff;
  color: #F74B4B;
  border-radius: 50%;
  padding: 0.3rem;
  font-size: 14px;
  font-weight: bold;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 1;
}

.ap_common_arrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #F74B4B;
  border-bottom: 2px solid #F74B4B;
  transform: rotate(315deg);
  margin-left: -3px;
}

.blue .ap_common_arrow::before, .blue.ap_common_arrow::before {
  border-right: 2px solid #4EB3F2;
  border-bottom: 2px solid #4EB3F2;
}

.green .ap_common_arrow::before, .green.ap_common_arrow::before {
  border-right: 2px solid #6EBC33;
  border-bottom: 2px solid #6EBC33;
}

.yellow .ap_common_arrow::before {
  border-right: 2px solid #2D282A;
  border-bottom: 2px solid #2D282A;
}

.white .ap_common_arrow {
  background: #F74B4B;
  color: #F74B4B;
}
.white .ap_common_arrow::before {
  border-right: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
}

.gray.ap_common_arrow::before {
  border-right: 2px solid #c3c3c3;
  border-bottom: 2px solid #c3c3c3;
}

.ap_common_arrow.under {
  transform: rotate(90deg);
}

/*チャイルドヘッダー*/
.ap_child_header {
  background-color: #FFFBF8;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(30rem, 30vw, 50rem);
  background-image: url(/img/child_img.webp);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
.ap_child_header h2 {
  color: #F74B4B;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.6rem, 1.6vw, 2rem);
}
.ap_child_header > div {
  margin-top: clamp(4rem, 4vw, 4rem);
}

@media screen and (max-width: 1024px) {
  .ap_child_header {
    height: 20rem;
  }
}
@media screen and (max-width: 599px) {
  .ap_child_header {
    height: 20rem;
    background-position: -3rem bottom;
    background-size: auto 55%;
  }
}
@media screen and (max-width: 340px) {
  .ap_child_header {
    background-image: none;
  }
}
/************************************
header
***********************************/
header {
  position: relative;
}

/*logo*/
.ap_pc_logo {
  text-align: center;
}
.ap_pc_logo h1 {
  font-size: clamp(1.8rem, 1.8vw, 2.4rem);
  color: #F74B4B;
}
.ap_pc_logo h2 {
  font-size: clamp(1.3rem, 1.3vw, 1.6rem);
  color: #2D282A;
}

/*header*/
.ap_pc_header {
  display: flex;
  background: #fff;
  width: 95%;
  position: fixed;
  top: 1.6rem;
  box-shadow: 0 0 0.8rem #969696;
  left: 2.5%;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.8rem, 0.8vw, 1.6rem) clamp(2.4rem, 2.4vw, 4.8rem);
  border-radius: 4px;
  height: 10rem;
  transition: transform 0.3s ease;
  z-index: 999;
}
.ap_pc_header li a:hover {
  color: #F74B4B;
}

.ap_pc_header.hide {
  transform: translateY(-120%);
}

.ap_pc_header_menu {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 1.6vw, 3.2rem);
}

.ap_pc_header_menu > ul {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 1.6vw, 3.2rem);
}
.ap_pc_header_menu > ul .parent > a {
  display: flex;
  align-items: center;
}
.ap_pc_header_menu > ul .parent .ap_common_arrow {
  margin-left: 0.4rem;
}

/*header_child*/
.ap_pc_header_menu .child {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  z-index: -999;
}

.ap_pc_header_menu .child.open {
  max-height: 500px; /* 必要に応じて大きめにしておく */
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.ap_pc_header_menu .child_menu {
  background: #fff;
  width: 100%;
  position: absolute;
  left: 0;
  top: 11rem;
  box-shadow: 0 0 0.8rem #969696;
  border-radius: 4px;
  padding: clamp(1.2rem, 1.2vw, 2.4rem) clamp(2.4rem, 2.4vw, 4.8rem);
  min-height: 16rem;
  display: flex;
  align-items: center;
}
.ap_pc_header_menu .child_menu ul {
  display: grid;
  gap: clamp(0.8rem, 0.8vw, 1.6rem) clamp(1.6rem, 1.6vw, 3.2rem);
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.ap_pc_header_menu .child_menu ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 1280px) {
  .ap_pc_header_menu > ul {
    gap: clamp(0.8rem, 0.8vw, 3.2rem);
  }
}
@media screen and (max-width: 1024px) {
  .ap_pc_header_menu {
    display: none;
  }
  .ap_pc_header {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    position: fixed;
    left: 0rem;
    top: 0rem;
    text-shadow: 0 0 1px #fff;
    border-radius: 0 0 4px 0;
    width: auto;
    height: inherit;
  }
}
/************************
footer
**************************/
.ap_support_wrap {
  background: #F74B4B;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  padding: 0;
  gap: clamp(6rem, 12.8vw, 25.6rem);
  align-items: stretch;
  padding-left: 5%;
}

.ap_support_wrap_content {
  max-width: 566px;
  margin-left: auto;
  display: flex;
  align-items: center;
  padding-top: clamp(4.4rem, 4.4vw, 8.8rem);
  padding-bottom: clamp(4.4rem, 4.4vw, 8.8rem);
}
.ap_support_wrap_content h2, .ap_support_wrap_content p {
  color: #fff;
}
.ap_support_wrap_content h2 {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 0.8vw, 1.6rem);
}
.ap_support_wrap_content img {
  width: 5rem;
}

.ap_support_wrap_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ap_footer_inner {
  max-width: 1480px;
  padding: clamp(4.4rem, 4.4vw, 8.8rem) 0;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 90%;
}

.ap_footer_logo {
  text-align: left;
}
.ap_footer_logo .ap_pc_logo {
  text-align: left;
}
.ap_footer_logo .ap_pc_logo {
  margin-bottom: clamp(1.6rem, 1.6vw, 3.2rem);
}

.ap_footer_menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(1.6rem, 1.6vw, 3.2rem);
}
.ap_footer_menu .parent a {
  font-weight: 600;
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
  margin-bottom: clamp(0.8rem, 0.8vw, 1.6rem);
}
.ap_footer_menu a {
  display: flex;
  align-items: center;
  font-size: clamp(1.3rem, 1.3vw, 1.6rem);
}
.ap_footer_menu li a:hover {
  color: #F74B4B;
}

.copy {
  text-align: center;
  font-size: clamp(1.3rem, 1.3vw, 1.6rem);
  padding: clamp(0.8rem, 0.8vw, 1.6rem);
}

.ap_footer_menu_banner {
  display: flex;
  justify-content: end;
  gap: clamp(0.8rem, 0.8vw, 1.6rem);
}

@media screen and (max-width: 1024px) {
  .ap_support_wrap_content {
    max-width: 320px;
  }
  .ap_footer_inner {
    display: block;
  }
  .ap_footer_logo {
    margin-bottom: clamp(1.6rem, 1.6vw, 3.2rem);
  }
}
@media screen and (max-width: 599px) {
  .ap_support_wrap_img {
    display: none;
  }
  .ap_support_wrap_content {
    padding-right: 5%;
  }
  .ap_support_wrap_content {
    max-width: inherit;
  }
  .ap_footer_menu {
    display: block;
  }
  .ap_footer_menu ul {
    margin-top: clamp(0.8rem, 0.8vw, 1.6rem);
  }
}
/*********************************
FV
**********************************/
.ap_fv {
  position: relative;
  padding: 0;
  height: 92vh;
  overflow: hidden;
}

.ap_fv_title {
  background: #F74B4B;
  position: absolute;
  width: 30%;
  left: 5%;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  min-width: 400px;
}
.ap_fv_title > div {
  max-width: 337px;
  margin-top: clamp(3.2rem, 3.2vw, 3.2rem);
}

.ap_fv_title_h1 {
  font-size: clamp(4.4rem, 6.4vw, 8.8rem);
  color: #fff;
  margin-bottom: clamp(1.6rem, 1.6vw, 3.2rem);
}

.ap_fv_title_h2 {
  font-size: clamp(2.4rem, 2.4vw, 3.6rem);
  color: #F74B4B;
  background: #fff;
  display: inline-block;
  padding: clamp(0.4rem, 0.4vw, 0.8rem);
  margin-bottom: clamp(0.8rem, 0.8vw, 1.6rem);
  white-space: nowrap;
}

/*画像*/
.ap_fv {
  overflow: hidden;
}

.ap_fv_inner {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: flow 35s linear infinite;
  height: 92vh;
  align-items: center;
}

.ap_fv_img {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}

.ap_fv_img > div {
  display: flex;
  margin-right: 5rem;
  align-items: center;
}

.ap_fv_img_02,
.ap_fv_img_04 {
  flex-direction: column;
  align-items: center;
}

.ap_fv_img_02 > img:nth-child(1) {
  transform: translateY(-2.5rem);
}

.ap_fv_img_02 > img:nth-child(2) {
  transform: translateY(2.5rem);
}

.ap_fv_img_04 > img:nth-child(1) {
  transform: translateY(-2.5rem);
}

.ap_fv_img_04 > img:nth-child(2) {
  transform: translateY(2.5rem);
}

@keyframes flow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 1024px) {
  .ap_fv {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }
  .ap_fv_title {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    height: auto;
    display: inline-block;
    min-width: inherit;
  }
  .ap_fv_title > div {
    max-width: inherit;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
  .ap_fv_inner {
    height: auto;
  }
  /*画像調整*/
  .ap_fv_img_02 > img:nth-child(1) {
    transform: translateY(-0.5rem);
  }
  .ap_fv_img_02 > img:nth-child(2) {
    transform: translateY(0.5rem);
  }
  .ap_fv_img_04 > img:nth-child(1) {
    transform: translateY(-0.5rem);
  }
  .ap_fv_img_04 > img:nth-child(2) {
    transform: translateY(0.5rem);
  }
  .ap_fv_img > div {
    max-width: 300px;
    margin-right: 1rem;
  }
  .ap_fv_img .ap_fv_img_01, .ap_fv_img .ap_fv_img_03 {
    max-width: 450px;
  }
}
/*****************************
トップ
********************************/
.ap_top01 {
  position: relative;
}
.ap_top01::after {
  width: 100%;
  height: 40%;
  content: "";
  display: block;
  background: #F74B4B;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  border-radius: 0 0 8px 8px;
}

.ap_top01_white_bg {
  background: #fff;
  width: 90%;
  margin: 0 auto;
  border-radius: 8px 8px 0 0;
}

/*news*/
.ap_news_wrap {
  display: flex;
  gap: 5%;
  justify-content: space-between;
  padding: clamp(4.4rem, 4.4vw, 8.8rem) 0;
}

.ap_news_wrap_title {
  flex-shrink: 0;
  width: 10%;
}
.ap_news_wrap_title h2 {
  font-size: clamp(1.6rem, 1.6vw, 2rem);
}

.ap_news_wrap_content {
  width: 85%;
}

/*活動内容*/
.ap_top_activity_content a {
  transition: 0.3s;
}
.ap_top_activity_content a:hover {
  opacity: 0.7;
}

.ap_top_activity_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ap_top_activity_title h2 {
  margin-bottom: inherit;
}

.ap_top_activity_wrap {
  display: grid;
  gap: clamp(1.6rem, 1.6vw, 3.2rem);
  grid-template-columns: repeat(3, 1fr);
}

.ap_activity_cat_wrap {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 0.4vw, 0.8rem);
  margin-top: clamp(0.8rem, 0.8vw, 1.6rem);
}
.ap_activity_cat_wrap .activity_cat {
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  flex-shrink: 1;
}
.ap_activity_cat_wrap .activity_tag {
  font-size: 12px;
  color: #959595;
}

@media screen and (max-width: 1024px) {
  .ap_top01_white_bg {
    width: 97.5%;
  }
  .ap_news_wrap_title {
    width: 15%;
  }
  .ap_news_wrap_content {
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  .ap_news_wrap {
    display: block;
  }
  .ap_news_wrap_title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .ap_news_wrap_content {
    width: 100%;
  }
  .ap_top_activity_title {
    text-align: center;
    display: block;
  }
  .ap_top_activity_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .ap_top_activity_content .ap_activity_cat_wrap .activity_tag {
    display: none;
  }
  .ap_activity_cat_wrap .activity_cat {
    font-size: 10px;
    color: #959595;
  }
  .ap_message_wrap_content .ap_activity_cat_wrap {
    display: block;
  }
}
@media screen and (max-width: 375px) {
  .ap_top_activity_wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*活動内容詳細*/
.ap_top02 {
  background: #FFFBF8;
}

.ap_top02_flex {
  display: flex;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  max-width: 1400px;
  gap: clamp(4.4rem, 4.4vw, 8.8rem);
}

.ap_top02_flex_content, .ap_top02_flex_img {
  flex: 5;
}

.ap_top_title {
  flex: 5;
}

.ap_top03 {
  background: #FFFBF8;
}

.ap_top03_flex {
  display: flex;
  align-items: center;
  gap: clamp(4.4rem, 4.4vw, 8.8rem);
  margin-bottom: clamp(4.4rem, 4.4vw, 8.8rem);
}
.ap_top03_flex.reverse {
  flex-direction: row-reverse;
}

.ap_top03_flex_text {
  flex: 5;
}
.ap_top03_flex_text .ap_common_btn {
  margin-top: clamp(1.6rem, 1.6vw, 3.2rem);
}

.ap_top03_flex_img {
  flex: 5;
}

.ap_top03_flex_text_vision {
  background: #FFDBD4;
  display: flex;
  align-items: center;
  margin: clamp(1.6rem, 1.6vw, 3.2rem) 0;
  padding: 1.6rem 3.2rem;
  gap: clamp(0.8rem, 0.8vw, 1.6rem);
}
.ap_top03_flex_text_vision h3 {
  color: #F74B4B;
  margin-bottom: clamp(0.4rem, 0.4vw, 0.8rem);
}

.blue .ap_top03_flex_text_vision {
  background: #D8F0FF;
}
.blue .ap_top03_flex_text_vision h3 {
  color: #4EB3F2;
}

.green .ap_top03_flex_text_vision {
  background: #E3F3D7;
}
.green .ap_top03_flex_text_vision h3 {
  color: #6EBC33;
}

@media screen and (max-width: 810px) {
  .ap_top02_flex {
    display: block;
  }
  .ap_top02_flex_img {
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .ap_top02_flex {
    flex-direction: column-reverse;
  }
  .ap_top03_flex {
    flex-direction: column-reverse !important;
  }
}
/*プロフィール*/
.ap_top04 {
  padding-right: 5%;
}

.ap_top04_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4.4rem, 4.4vw, 8.8rem);
  max-width: 1560px;
  margin-right: auto;
  margin-left: 0;
}

.ap_top04_flex_img {
  flex: 5;
}

.ap_top04_flex_content {
  margin-left: 0;
  margin-right: auto;
  flex: 5;
}

.ap_top_title_profile_flex {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 0.8vw, 1.6rem);
}

.ap_top_title_sns {
  display: flex;
  align-items: center;
  gap: clamp(0.4rem, 0.4vw, 0.8rem);
}

.ap_top04_link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.8rem, 0.8vw, 1.6rem);
  margin-top: clamp(1.6rem, 1.6vw, 3.2rem);
}
.ap_top04_link .ap_common_btn {
  padding: clamp(0.8rem, 0.8vw, 1.6rem) clamp(1.6rem, 1.6vw, 3.2rem);
}

.ap_instagram {
  background: url(/img/bg.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}

.ap_instagram_area {
  background: #ccc;
  height: 60rem;
  margin-top: 8rem;
}

@media screen and (max-width: 1536px) {
  .ap_top_title_profile_flex {
    display: block;
    margin-bottom: clamp(1.6rem, 1.6vw, 3.2rem);
  }
}
@media screen and (max-width: 810px) {
  .ap_top04_flex {
    display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .ap_top_title_profile {
    margin-top: clamp(1.6rem, 1.6vw, 3.2rem);
  }
  .ap_top04 {
    padding-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .ap_top04_link {
    grid-template-columns: repeat(1, 1fr);
  }
}
/************************
ACTIVITY
**************************/
.ap_activity_archive h2 {
  margin-bottom: clamp(1.6rem, 1.6vw, 3.2rem);
}

.ap_activity_page > .ap_inner {
  display: flex;
  gap: clamp(4rem, 4vw, 8rem);
}
.ap_activity_page > .ap_inner .ap_main {
  flex: 7.5;
}
.ap_activity_page > .ap_inner .ap_side {
  flex: 2.5;
}
.ap_activity_page > .ap_inner .ap_side h3 {
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
  color: #F74B4B;
}
.ap_activity_page > .ap_inner .ap_side a {
  font-size: clamp(1.3rem, 1.3vw, 1.6rem);
}

.ap_activity_page_data {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 0.8vw, 1.6rem);
}
.ap_activity_page_data .cat {
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  flex-shrink: 1;
}
.ap_activity_page_data .tag {
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  color: #959595;
}

.data {
  font-size: clamp(1.2rem, 1vw, 1.4rem);
}

@media screen and (max-width: 599px) {
  .ap_activity_page_data {
    display: block;
  }
  .ap_activity_page > .ap_inner {
    display: block;
  }
  .ap_side {
    padding: clamp(4.4rem, 4.4vw, 8.8rem) 0;
  }
}
/*******************************:
こさかだより
********************************/
.ap_message_wrap_content {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 1.6rem 0;
  gap: clamp(0.8rem, 0.8vw, 1.6rem);
  align-items: center;
}
.ap_message_wrap_content img {
  width: clamp(10rem, 10vw, 16rem);
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  aspect-ratio: 1.5;
}
.ap_message_wrap_content a:first-child {
  flex-shrink: 0;
}

/*****************************
supporter募集
*****************************/
.ap_activity_page_support {
  background: #FFF3E8;
  padding: clamp(2.4rem, 2.4vw, 4.8rem);
  margin-top: clamp(4.4rem, 4.4vw, 8.8rem);
}
.ap_activity_page_support h2 {
  color: #F74B4B;
  text-align: center;
  border-left: none !important;
}

.rooting_btn {
  background: #fff;
  display: flex;
  align-items: center;
  padding: clamp(0.8rem, 0.8vw, 1.6rem) clamp(2.4rem, 2.4vw, 4.8rem);
  margin-bottom: clamp(0.8rem, 0.8vw, 1.6rem);
  justify-content: space-between;
}

#supportBtn {
  display: inline-flex;
  align-items: center;
  background-image: linear-gradient(90deg, #f74b4b, #ff654a);
  color: #fff;
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: clamp(0.8rem, 0.8vw, 1.6rem) clamp(3.2rem, 3.2vw, 6.4rem);
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
#supportBtn img {
  display: none;
}

#supportBtn:hover {
  box-shadow: inherit;
  transform: translate(3px, 3px);
}

#supportCount {
  color: #F74B4B;
  font-size: clamp(2.4rem, 2.4vw, 3.6rem);
  margin: 0 0.8rem;
}

.ap_activity_page_support_btn_wrap {
  display: flex;
  align-items: stretch;
  gap: clamp(0.8rem, 0.8vw, 1.6rem);
  justify-content: space-between;
}
.ap_activity_page_support_btn_wrap .btn_wrap {
  background: #fff;
  display: flex;
  align-items: center;
  padding: clamp(0.4rem, 0.4vw, 0.8rem);
  justify-content: center;
  gap: clamp(0.8rem, 0.8vw, 1.6rem);
}
.ap_activity_page_support_btn_wrap .btn_wrap h3 {
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
}
.ap_activity_page_support_btn_wrap .btn_wrap:first-child {
  flex: 5;
}
.ap_activity_page_support_btn_wrap .btn_wrap:last-child {
  flex: 5;
}
.ap_activity_page_support_btn_wrap .btn_wrap .link {
  color: #F74B4B;
}
.ap_activity_page_support_btn_wrap .btn_wrap img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}

.ap_supporter_page .parent {
  background: #FFF3E8;
  padding: clamp(0.8rem, 0.8vw, 1.6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(0.8rem, 0.8vw, 1.6rem);
  border-radius: 4px;
}
.ap_supporter_page .parent span {
  background: #F74B4B;
  color: #FFF;
  padding: clamp(0.2rem, 0.2vw, 0.4rem) clamp(0.4rem, 0.4vw, 0.8rem);
  border-radius: 2px;
}
.ap_supporter_page .child {
  display: grid;
  gap: clamp(0.8rem, 0.8vw, 1.6rem);
  grid-template-columns: repeat(3, 1fr);
}
.ap_supporter_page .child > div {
  background: #FFF3E8;
  padding: clamp(0.8rem, 0.8vw, 1.6rem);
  text-align: center;
  border-radius: 4px;
}

.ap_supporter_page.gray .child > div {
  background: #e9e9e9;
}
.ap_supporter_page.gray .parent {
  background: #e9e9e9;
}
.ap_supporter_page.gray .parent span {
  background: #666;
}

.ap_supporter_foam_wrap {
  padding: clamp(1rem, 1vw, 2rem) 0;
}
.ap_supporter_foam_wrap h2 {
  font-size: clamp(1.6rem, 1.6vw, 2rem) !important;
}
.ap_supporter_foam_wrap input[type=submit] {
  background: linear-gradient(90deg, #f74b4b, #ff654a);
  border: 2px solid #F74B4B;
  color: #fff;
  padding: clamp(0.8rem, 0.8vw, 1.6rem) clamp(3.2rem, 3.2vw, 6.4rem);
  margin-top: clamp(1.6rem, 1.6vw, 3.2rem);
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  min-width: 30rem;
  border-radius: 4px;
  transition: 0.5s;
  cursor: pointer;
}
.ap_supporter_foam_wrap input[type=submit]:hover {
  color: #F74B4B;
  background: #fff;
}

.ap_supporter_itiran {
  display: grid;
  gap: clamp(1.6rem, 1.6vw, 2.4rem);
  grid-template-columns: repeat(3, 1fr);
}
.ap_supporter_itiran > div {
  text-align: center;
}
.ap_supporter_itiran > div h2, .ap_supporter_itiran > div p {
  text-align: left;
}

.ap_default_page .what_supporter {
  display: none;
}

.ap_supporter_foam_content_flex .wpcf7-form-control {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1vw, 2rem);
}

.ap_supporter_foam_content h3 {
  font-size: clamp(1.4rem, 1.4vw, 1.8rem) !important;
  margin-top: clamp(1.6rem, 1.6vw, 3.2rem);
  margin-bottom: clamp(0.8rem, 0.8vw, 1.6rem);
  border-left: 4px solid #F74B4B !important;
  padding-left: 0.8rem;
  text-align: left;
  color: #2D282A !important;
}

/*ポップアップまわり*/
/* 背景のグレーオーバーレイ */
.rooting_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

/* ポップアップ本体 */
.rooting_btn_popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  background: #fff;
  padding: clamp(3.2rem, 3.2vw, 6.4rem) clamp(1.6rem, 1.6vw, 3.2rem);
  border-radius: 4px;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  max-height: 85vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: 0.3s;
}
.rooting_btn_popup h2 {
  color: #2D282A;
  margin-bottom: clamp(0.4rem, 0.4vw, 0.8rem);
  font-size: clamp(1.8rem, 1.8vw, 2.4rem) !important;
}

.rooting_btn_title span {
  font-size: clamp(1.8rem, 1.8vw, 2.4rem);
}

/* 閉じるボタン（右上） */
.rooting_close_btn {
  position: absolute;
  top: clamp(1rem, 1vw, 2rem);
  right: clamp(1.6rem, 1.6vw, 3.2rem);
  font-size: clamp(2.4rem, 2.4vw, 3.2rem);
  cursor: pointer;
  color: #F74B4B;
}

@media screen and (max-width: 1024px) {
  .rooting_btn {
    display: block;
    text-align: center;
  }
  .rooting_btn h3 {
    margin-bottom: 0.8rem;
  }
  .ap_activity_page_support_btn_wrap {
    flex-direction: column;
  }
  .ap_activity_page_support_btn_wrap img {
    width: 30px;
  }
  .btn_wrap {
    min-height: 40px;
  }
}
@media screen and (max-width: 599px) {
  .ap_activity_page_support {
    padding: clamp(2.4rem, 2.4vw, 4.8rem) 1rem;
  }
  .rooting_btn_popup {
    width: 90%;
  }
  .ap_supporter_foam_content_flex .wpcf7-form-control {
    display: block;
  }
  .ap_supporter_page .parent {
    flex-direction: column;
  }
  .ap_supporter_page .child {
    grid-template-columns: repeat(2, 1fr);
  }
  .ap_supporter_itiran {
    grid-template-columns: repeat(2, 1fr);
  }
  .ap_activity_page_support_btn_wrap .btn_wrap img {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 375px) {
  .ap_supporter_page .child {
    grid-template-columns: repeat(1, 1fr);
  }
  .ap_supporter_itiran {
    grid-template-columns: repeat(1, 1fr);
  }
}
.ap_default_page .inner {
  max-width: 1000px;
  margin: 0 auto;
}

.ap_default_page p > a {
  color: #F74B4B;
  text-decoration: underline;
}

.ap_default_page .box a {
  color: #F74B4B;
  text-decoration: underline;
}

/*タイトル*/
.ap_default_page h1 {
  border-bottom: 4px solid #e4e4e4;
  position: relative;
  margin: clamp(1.6rem, 1.6vw, 3.2rem) 0;
  padding-bottom: 1.6rem;
}

.ap_default_page h1::before {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 16%;
  height: 4px;
  background: #F74B4B;
}

.ap_default_page h2 {
  font-size: clamp(1.8rem, 1.8vw, 2.4rem);
  margin-top: clamp(1.6rem, 1.6vw, 3.2rem);
  margin-bottom: clamp(0.8rem, 0.8vw, 1.6rem);
  border-left: 4px solid #F74B4B;
  padding-left: 0.8rem;
}

.ap_default_page h3 {
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  display: inline-block;
}

.ap_default_page h4 {
  font-weight: 600;
  color: #F74B4B;
  margin: 1rem 0;
  font-size: clamp(1.6rem, 1.6vw, 2rem);
}

.ap_default_page h5 {
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
}

/*リスト*/
.ap_default_page li {
  margin: 0.5rem 0;
}

.ap_default_page li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #F74B4B;
  border-radius: 50px;
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
}

/*テーブル*/
.ap_default_page table {
  border-collapse: collapse;
  width: 100%;
}
.ap_default_page table tr:first-child th, .ap_default_page table tr:first-child td {
  border-top: 1px solid #ccc;
}

.ap_default_page th {
  font-weight: bold;
  padding: clamp(0.8rem, 0.8vw, 1.6rem);
  border-bottom: 1px solid #ccc;
  text-align: left;
  width: 25%;
  background: #FFF3E8;
}

.ap_default_page td {
  padding: clamp(0.8rem, 0.8vw, 1.6rem);
  border-bottom: 1px solid #ccc;
  width: 75%;
  background: #fff;
}

.ap_default_page strong {
  color: #F74B4B;
}

.wrap {
  overflow: hidden;
}

/*box*/
.box {
  position: relative;
  padding: clamp(2.4rem, 2.4vw, 4.8rem) 0;
}
.box::before {
  width: 120vw;
  content: "";
  left: -20vw;
  background: #FFFBF8;
  display: block;
  height: 100%;
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
}
.box h1 {
  border-bottom: none !important;
  text-align: center;
  margin-bottom: clamp(1.6rem, 1.6vw, 3.2rem);
  font-size: clamp(1.8rem, 1.8vw, 2.4rem);
}
.box h1::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4px;
  background: #F74B4B;
  margin: 0.8rem auto;
}
.box h1::before {
  display: none;
}

.wp-block-image img {
  margin: clamp(1rem, 1vw, 2rem) 0;
}

.wp-block-image {
  text-align: center;
}

.white_box {
  display: grid;
  gap: clamp(0.8rem, 0.8vw, 1.6rem) clamp(1.6rem, 1.6vw, 3.2rem);
  grid-template-columns: repeat(3, 1fr);
}
.white_box > div {
  background: #fff;
  padding: clamp(0.8rem, 0.8vw, 1.6rem);
}
.white_box > div h3 {
  text-align: center;
  display: block;
  margin-bottom: clamp(0.8rem, 0.8vw, 1.6rem);
}

@media (max-width: 599px) {
  .white_box {
    grid-template-columns: repeat(2, 1fr);
  }
  .ap_default_page th {
    display: block;
    width: 100%;
    text-align: left;
  }
  .ap_default_page td {
    display: block;
    width: 100%;
  }
  .ap_default_page .ap_top04_flex {
    width: 100%;
  }
  /*スペース*/
  .wp-block-spacer[style*="height:100px"] {
    height: 50px !important;
  }
  .wp-block-spacer[style*="height:50px"] {
    height: 25px !important;
  }
  /* img*/
  .wp-block-image {
    text-align: center;
  }
}
@media (max-width: 375px) {
  .white_box {
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=style.css.map */