@charset "UTF-8";
/* ==========================================================================
   変数
========================================================================== */
/* ==========================================================================
   リセット
 ========================================================================== */
* {
  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: #1a1a1a;
  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(14px, 1.3vw, 1.6rem);
}

h1 {
  font-size: clamp(3rem, 5vw + 1rem, 6rem);
  line-height: 1.4;
  font-family: "Jost", sans-serif;
  font-weight: bold;
}

h2 {
  font-size: clamp(2.4rem, 2vw + 1rem, 3.6rem);
  font-family: "Jost", sans-serif;
  font-weight: bold;
  line-height: 1.4;
}

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

h4 {
  font-size: clamp(1.35rem, 1.1vw + 1rem, 2rem);
  line-height: 1.5;
  font-weight: 600;
}

h5 {
  font-size: clamp(1.2rem, 0.9vw + 1rem, 1.8rem);
  line-height: 1.6;
}

.big-text {
  font-size: clamp(1.4rem, 1vw + 0.5rem, 1.8rem);
}

.text {
  font-size: clamp(1.2rem, 0.8vw + 0.5rem, 1.6rem);
}

.small-text {
  font-size: clamp(1.2rem, 0.8vw + 0.5rem, 1.4rem);
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.2rem, 0.8vw + 0.5rem, 1.6rem);
  color: #1a1a1a;
  background: #fff;
  letter-spacing: 0;
  line-height: 1.6;
  font-weight: 600;
  overflow-wrap: break-word;
  word-break: normal;
  overflow-x: hidden;
  max-width: 100vw;
  word-wrap: break-word;
}

section {
  padding: clamp(5rem, 5vw, 8rem) 0;
}

.ap_inner {
  width: 95%;
  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);
}

.mb5 {
  margin-bottom: clamp(0.25rem, 0.5vw, 0.5rem);
}

.mt5 {
  margin-top: clamp(0.25rem, 0.5vw, 0.5rem);
}

.mb10 {
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.mt10 {
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.mb15 {
  margin-bottom: clamp(0.75rem, 1.2vw, 1.5rem);
}

.mt15 {
  margin-top: clamp(0.75rem, 1.2vw, 1.5rem);
}

.mb20 {
  margin-bottom: clamp(1rem, 1.5vw, 2rem);
}

.mt20 {
  margin-top: clamp(1rem, 1.5vw, 2rem);
}

.mb25 {
  margin-bottom: clamp(1.25rem, 2vw, 2.5rem);
}

.mt25 {
  margin-top: clamp(1.25rem, 2vw, 2.5rem);
}

.mb30 {
  margin-bottom: clamp(1.5rem, 2.5vw, 3rem);
}

.mt30 {
  margin-top: clamp(1.5rem, 2.5vw, 3rem);
}

.mb35 {
  margin-bottom: clamp(1.75rem, 3vw, 3.5rem);
}

.mt35 {
  margin-top: clamp(1.75rem, 3vw, 3.5rem);
}

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

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

.mb45 {
  margin-bottom: clamp(2.25rem, 4vw, 4.5rem);
}

.mt45 {
  margin-top: clamp(2.25rem, 4vw, 4.5rem);
}

.mb50 {
  margin-bottom: clamp(2.5rem, 4.5vw, 5rem);
}

.mt50 {
  margin-top: clamp(2.5rem, 4.5vw, 5rem);
}

.mb55 {
  margin-bottom: clamp(2.75rem, 5vw, 5.5rem);
}

.mt55 {
  margin-top: clamp(2.75rem, 5vw, 5.5rem);
}

.mb60 {
  margin-bottom: clamp(3rem, 5.5vw, 6rem);
}

.mt60 {
  margin-top: clamp(3rem, 5.5vw, 6rem);
}

.mb65 {
  margin-bottom: clamp(3.25rem, 6vw, 6.5rem);
}

.mt65 {
  margin-top: clamp(3.25rem, 6vw, 6.5rem);
}

.mb70 {
  margin-bottom: clamp(3.5rem, 6.5vw, 7rem);
}

.mt70 {
  margin-top: clamp(3.5rem, 6.5vw, 7rem);
}

.mb75 {
  margin-bottom: clamp(3.75rem, 7vw, 7.5rem);
}

.mt75 {
  margin-top: clamp(3.75rem, 7vw, 7.5rem);
}

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

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

.mb85 {
  margin-bottom: clamp(4.25rem, 8vw, 8.5rem);
}

.mt85 {
  margin-top: clamp(4.25rem, 8vw, 8.5rem);
}

.mb90 {
  margin-bottom: clamp(4.5rem, 8.5vw, 9rem);
}

.mt90 {
  margin-top: clamp(4.5rem, 8.5vw, 9rem);
}

.mb95 {
  margin-bottom: clamp(4.75rem, 9vw, 9.5rem);
}

.mt95 {
  margin-top: clamp(4.75rem, 9vw, 9.5rem);
}

.mb100 {
  margin-bottom: clamp(5rem, 9.5vw, 10rem);
}

.mt100 {
  margin-top: clamp(5rem, 9.5vw, 10rem);
}

/* ==========================================================================
      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: #666;
}

.ap_secondary,
.ap_secondary a,
a.ap_secondary {
  color: #4d93e5;
}

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

.ap_bg_primary {
  background: #666;
}

.ap_bg_secondary {
  background: #4d93e5;
}

.ap_bg_thirdly {
  background: #f4f9ff;
}

/* ==========================================================================
   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 #666;
  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_contact_form_wrap input[type=submit] {
  background: #666;
  border: 2px solid #666;
  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: #666;
  background: #fff;
}

.ap_height_center {
  align-items: center;
  border-bottom: 1px dotted #666;
  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: #666;
  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: 3rem;
  min-height: 3rem;
  color: #c3c3c3;
  display: block;
  text-align: center;
  margin: 0 0.8rem;
  padding: 0 1rem;
}

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

.prev.page-numbers, .next.page-numbers {
  min-width: 5rem;
  min-height: 5rem;
  border-radius: 5px;
  background: #F6F6F6;
  color: #666;
  border: 1px solid #c3c3c3;
  line-height: 5rem;
  padding: 0;
  font-size: 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: #666;
  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: #666;
}

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

.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: #fff; /*適宜変更*/
  padding: 8rem 3rem; /*適宜変更*/
}

.ap_menu_box ul {
  overflow: auto;
}

/*トグルメニューの初期レイアウト*/
.ap_menu_box ul li {
  text-align: left;
}

.ap_menu_box ul li a {
  display: inline-block;
  padding: 0.5rem 0;
  text-align: left;
  position: relative;
  font-size: 14px;
}

@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: 1rem 0;
  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 #959595;
  padding: 1.5rem 0;
}
.ap_news_flex a {
  color: #666;
  text-decoration: underline;
}

.ap_news_flex_data {
  display: flex;
  align-items: center;
}

.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: #666;
}

.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
***********************/
.ap_common_btn {
  background: #1a1a1a;
  color: #fff;
  padding: 1.5rem 2rem;
  min-width: 200px;
  display: inline-block;
  text-align: center;
}
.ap_common_btn:hover {
  background: #666;
}

.ap_link {
  color: #0b4ebd;
  text-decoration: underline;
}

.ap_header_mt {
  margin-top: 10rem;
}

/************************
header
***********************/
.ap_pc_header {
  display: flex;
  align-items: center;
  height: 8rem;
  background: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  justify-content: space-between;
  padding-left: clamp(1.5rem, 1.5vw, 3rem);
}
.ap_pc_header h1 {
  line-height: 0;
  width: 14%;
}
.ap_pc_header ul {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 1.5vw, 3rem);
}
.ap_pc_header ul a:hover {
  color: #666;
}
.ap_pc_header .btn a {
  color: #fff;
  background: #1a1a1a;
  display: flex;
  height: 8rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1.5rem, 1.5vw, 3rem);
}
.ap_pc_header .btn a:hover {
  color: #FFF;
  background: #666;
}

.ap_child_header {
  height: clamp(10rem, 10vw, 25rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap_child_header h1 {
  font-size: clamp(3rem, 7vw + 1rem, 8rem);
}

.top_pankuzu {
  z-index: 1;
  color: #ccc;
  padding: 1rem 1rem;
  font-size: 12px;
  border-top: 1px solid;
}

@media screen and (max-width: 1024px) {
  .ap_pc_header ul {
    display: none;
  }
  .ap_pc_header h1 {
    width: 20%;
    min-width: 200px;
  }
  .ap_pc_header {
    background: transparent;
  }
}
/************************
fv
***********************/
.ap_fv {
  width: 95%;
  margin: 13rem auto 0 auto;
  padding: 0;
}

@media screen and (max-width: 1024px) {
  .ap_fv {
    margin: 8rem auto 0 auto;
  }
}
/***********************
top
***********************/
.ap_title_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .ap_title_flex .ap_common_btn {
    display: none;
  }
}
.ap_news_flex a {
  color: #1a1a1a;
  text-decoration: none;
}
.ap_news_flex a:hover {
  color: #666;
}
.ap_news_flex .data {
  margin-right: 1.5rem;
  color: #666;
}

.ap_fv02 {
  padding-top: 0;
}

.ap_fv02_flex {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(2.5rem, 2.5vw, 5rem);
}
.ap_fv02_flex .ap_fv02_left {
  flex: 5;
}
.ap_fv02_flex .ap_fv02_right {
  flex: 5;
}

.ap_fv02 h2 {
  border-bottom: 1px solid;
  padding-bottom: 1rem;
}

.ap_fv02_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2.5rem, 2.5vw, 5rem);
}
.ap_fv02_grid .ap_fv02_grid_box {
  border: 1px solid #666;
  padding: clamp(1.5rem, 1.5vw, 3rem);
}

@media screen and (max-width: 599px) {
  .ap_fv02_grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.ap_fv03 {
  padding-top: 0;
}

.ap_fv03_flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2.5rem, 2.5vw, 5rem);
}
.ap_fv03_flex .ap_fv03_box {
  width: 100%;
  position: relative;
}
.ap_fv03_flex .ap_fv03_box span {
  background: #1a1a1a;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 1rem 1.5rem;
}

@media screen and (max-width: 599px) {
  .ap_fv02_flex {
    flex-direction: column-reverse;
  }
  .ap_fv02_flex .ap_fv02_left {
    margin-bottom: clamp(2.5rem, 2.5vw, 5rem);
  }
}
@media screen and (max-width: 810px) {
  .ap_fv03_flex {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 420px) {
  .ap_fv03_flex {
    grid-template-columns: repeat(1, 1fr);
  }
}
.ap_fv04 {
  background: url(/img/img08.webp);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.ap_fv04_bg {
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: clamp(4rem, 4vw, 8rem);
}

/***************************
footer
***************************/
footer {
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.5rem, 1.5vw, 3rem);
}
footer h1 {
  line-height: 0;
  width: 14%;
}
footer ul {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 1.5vw, 3rem);
}
footer ul a {
  color: #fff;
}
footer ul a:hover {
  color: #666;
}

@media screen and (max-width: 1024px) {
  footer, footer ul {
    display: block;
  }
  footer h1 {
    line-height: 0;
    width: 20%;
    min-width: 200px;
    margin: clamp(2rem, 2vw, 4rem) 0;
  }
}
.ap_default_page .inner {
  max-width: 1000px;
  margin: 0 auto;
}

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

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

/*タイトル*/
.ap_default_page h1 {
  font-size: clamp(3rem, 5vw + 1rem, 6rem);
  color: #666;
  margin-bottom: clamp(1rem, 1vw, 4rem);
  border-top: 5px solid #666;
  padding-top: 1rem;
}

.ap_default_page h2 {
  font-size: clamp(2.4rem, 2vw + 1rem, 3.6rem);
  margin-bottom: clamp(1.5rem, 1.5vw, 3rem);
  border-bottom: 1px solid;
  padding-bottom: clamp(0.5rem, 1vw, 1rem);
}

.ap_default_page h3 {
  margin: 2.5rem 0 1.5rem 0;
  padding-bottom: 0;
  border-left: 4px solid #CCC;
  font-size: clamp(1.8rem, 1.5vw + 1rem, 2.4rem);
  padding-left: 1rem;
}

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

.ap_default_page h5 {
  font-size: clamp(1.2rem, 0.9vw + 1rem, 1.8rem);
}

/*リスト*/
.ap_default_page li {
  display: flex;
  align-items: flex-start;
  margin: 0.5rem 0;
}

.ap_default_page li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #666;
  border-radius: 50px;
  margin-right: 0.5rem;
  flex-shrink: 0;
  margin-top: 0.8rem;
}

/*テーブル*/
.ap_default_page table {
  border-collapse: collapse;
  width: 100%;
  line-height: 2em;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.ap_default_page th {
  font-weight: bold;
  padding: 1.5rem 0;
  border-bottom: 1px solid #ccc;
  text-align: left;
  width: 25%;
}

.ap_default_page td {
  padding: 1.5rem 0;
  border-bottom: 1px solid #ccc;
  width: 75%;
}

/*box*/
.box {
  background-color: #4d93e5;
  padding: clamp(1rem, 1vw + 1rem, 3rem);
  margin: clamp(2rem, 2vw + 1rem, 5rem) 0;
}

@media (max-width: 599px) {
  .ap_default_page th {
    display: block;
    width: 100%;
  }
  .ap_default_page td {
    display: block;
    width: 100%;
    padding: 0 0 1.5rem 0;
  }
  .ap_default_page th {
    border-bottom: none;
    padding: 1.5rem 0 0 0;
  }
  /*スペース*/
  .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;
  }
}/*# sourceMappingURL=style.css.map */