@charset "UTF-8";
/* **************************************************
	デフォルトCSSの再定義
************************************************** */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  color: #333;
  font-size: 1.6rem;
  line-height: 2.8rem;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  word-break: break-all;
  -webkit-text-size-adjust: none;
  background-color: #FFF;
}

a {
  color: #333;
  text-decoration: none;
}

figure {
  text-align: center;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  margin: 0 auto;
}

table {
  width: 100%;
}

input,
button,
select,
textarea {
  border: none;
  -moz-appearance: none !important;
       appearance: none !important;
  -webkit-appearance: none !important;
  border-radius: 0;
  /* macOS/iOSのSafariで角丸になるのを修正 */
  line-height: normal;
  /* macOS/iOSのSafariでplaceholderが上にずれるのを修正 */
}

a:hover,
a img:hover,
input[type=button]:hover,
input[type=submit]:hover,
button:hover,
.hover_effect:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  transition: 0.3s;
}

.hover_effect {
  position: relative;
}
.hover_effect > a {
  height: 100%;
  display: block;
  position: absolute;
  width: 100%;
  content: "";
  top: 0;
  left: 0;
  z-index: 10;
}

a:hover, a:visited, a:active, a:focus {
  text-decoration: none;
  color: #333;
}

a:hover, a:visited, a:active, a:focus:not(:focus-visible) {
  outline: none;
}

@media (min-width: 768px) {
  body {
    min-width: 1100px;
    margin: 0 auto;
  }
}
video:focus {
  border: none;
  border-image-width: 0 !important;
  outline-width: 0;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

/* **************************************************
	レイアウト
************************************************** */
.is-hide {
  display: none;
}

/*.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}*/
.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  height: auto;
  overflow: hidden;
}

.aligncenter {
  display: block;
  margin: 10px auto;
}

.alignright {
  float: right;
  margin: 5px 0 5px 10px;
}

.alignleft {
  float: left;
  margin: 5px 10px 5px 0;
}

.inline_block {
  display: inline-block;
}

.disp_line_sp {
  display: inline;
}

.disp_lineb_sp {
  display: inline-block;
}

.disp_line_pc {
  display: none;
}

.disp_lineb_pc {
  display: none;
}

#wrapper {
  display: block;
  width: 100%;
  overflow: hidden;
  /* 固定ヘッダー分 */
}
#wrapper::before {
  display: block;
  content: "";
  width: 100%;
  height: 70px;
}

@media (min-width: 768px) {
  .disp_line_sp {
    display: none;
  }
  .disp_lineb_sp {
    display: none;
  }
  .disp_line_pc {
    display: inline;
  }
  .disp_lineb_pc {
    display: inline-block;
  }
  #wrapper {
    margin: 0 auto;
    padding: 0;
  }
  #wrapper::before {
    height: 0;
  }
}
/* **************************************************
	header
************************************************** */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #009977;
  background-size: cover;
  z-index: 110;
  height: 70px;
}
header .h_inner .h_logo {
  width: 100%;
  max-width: 155px;
  max-height: 70px;
}
header .h_inner .h_logo a {
  display: block;
}

@media (min-width: 768px) {
  header {
    position: relative;
    height: 70px;
  }
  header .h_inner {
    display: flex;
    justify-content: space-between;
    width: 1100px;
    margin: 0 auto;
  }
  header .h_inner .h_logo {
    max-height: 70px;
    flex-shrink: 0;
  }
}
/* メニュー開閉ボタン */
.toggle {
  position: fixed;
  top: 8px;
  right: 8px;
  width: 54px;
  height: 54px;
  z-index: 998;
}
.toggle:has(.menu_trigger.active) {
  background-color: #009977;
}
.toggle .menu_trigger {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.toggle .menu_trigger span {
  position: absolute;
  background: #FFF;
  top: 15px;
  right: 12px;
  transition: all 0.4s;
  border-radius: 3px;
  width: 30px;
  height: 3px;
  -webkit-tap-highlight-color: transparent;
}
.toggle .menu_trigger span:nth-of-type(2) {
  top: 26px;
}
.toggle .menu_trigger span:nth-of-type(2):after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px;
  transition: all 0.4s;
  background: #FFF;
}
.toggle .menu_trigger span:nth-of-type(3) {
  top: 37px;
}
.toggle .menu_trigger.active span:nth-of-type(1) {
  transform: translateY(8px) scale(0);
}
.toggle .menu_trigger.active span:nth-of-type(2) {
  width: 34px;
  transform: rotate(-45deg);
  top: 25px;
  right: 9px;
}
.toggle .menu_trigger.active span:nth-of-type(2):after {
  width: 34px;
  transform: rotate(90deg);
}
.toggle .menu_trigger.active span:nth-of-type(3) {
  transform: translateY(-8px) scale(0);
}
.toggle .menu_trigger:hover {
  filter: alpha(opacity=100);
  opacity: 1;
}

@media (min-width: 768px) {
  .toggle {
    display: none;
    top: 20px;
    right: 20px;
    background-color: #009977;
  }
}
/* **************************************************
	グローバルナビゲーション
************************************************** */
/* グロナビを開いている間背景を固定するクラス */
.bg_fixed {
  overflow: hidden;
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/* グロナビ */
#sp_menu_wrap {
  opacity: 0;
  transition: 0.3s;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 30px;
  overflow-y: auto;
  z-index: -1;
  background-color: transparent;
  padding: 0;
  flex-wrap: nowrap;
  align-self: stretch;
}
#sp_menu_wrap.active {
  display: block;
  z-index: 997;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
#sp_menu_wrap.active .gns_wrap .gns_inner {
  transform: translateX(0);
}
#sp_menu_wrap li.disable > a {
  opacity: 0.6;
  pointer-events: none;
}
#sp_menu_wrap .gns_wrap {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: stretch;
}
#sp_menu_wrap .gns_wrap .menu_closer {
  flex: 0 1 auto;
  width: 100%;
  position: relative;
  display: block;
}
#sp_menu_wrap .gns_wrap .gns_inner {
  flex: 0 0 auto;
  background-color: #FFF;
  width: 100%;
  height: 100%;
  max-width: 390px;
  overflow-y: auto;
  margin: 0 0 0 auto;
  transition: 0.3s;
  transform: translateX(50px);
  padding: 70px 0 80px;
  position: relative;
}
#sp_menu_wrap {
  /* １階層目 */
}
#sp_menu_wrap #sp_menu > ul {
  padding: 0;
}
#sp_menu_wrap #sp_menu > ul > li {
  border-bottom: solid 1px #CCC;
  position: relative;
}
#sp_menu_wrap #sp_menu > ul > li > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 3px 20px 0;
  color: #333;
  font-size: 1.8rem;
  line-height: 4.8rem;
  font-weight: bold;
}
#sp_menu_wrap #sp_menu > ul > li.menu-item-has-children > button {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  display: block;
  background: transparent;
  width: 55px;
  height: 51px;
  z-index: 10;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
#sp_menu_wrap #sp_menu > ul > li.menu-item-has-children > button:after {
  position: absolute;
  display: block;
  top: 18px;
  right: 16px;
  content: "";
  height: 9px;
  width: 9px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
}
#sp_menu_wrap #sp_menu > ul > li.menu-item-has-children.open > button:after {
  top: 22px;
  border-right: none;
  border-bottom: none;
  border-left: 2px solid #000;
  border-top: 2px solid #000;
}
#sp_menu_wrap {
  /* サブメニュー */
}
#sp_menu_wrap ul.sub-menu {
  display: none;
  padding: 0;
}
#sp_menu_wrap ul.sub-menu li {
  border-top: solid 1px #CCC;
}
#sp_menu_wrap ul.sub-menu li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 7px 15px 7px 30px;
}
#sp_menu_wrap ul.sub-menu li.menu-item-has-children ul.sub-menu li a {
  padding-left: 42px;
}
#sp_menu_wrap ul.sub-menu li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu li a {
  padding-left: 54px;
}

/* グロナビ PC */
@media (min-width: 768px) {
  .pc_menu_wrap .pc_menu {
    margin: 0 auto;
    position: relative;
    overflow: visible;
    text-align: center;
    padding: 0;
    display: flex;
    align-items: center;
    height: 70px;
  }
  .pc_menu_wrap .pc_menu li.disable > a {
    opacity: 0.6;
    pointer-events: none;
  }
  .pc_menu_wrap .pc_menu > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-items: center;
    gap: 3px 0;
    flex-wrap: wrap;
    width: 900px;
  }
  .pc_menu_wrap .pc_menu > ul > li {
    cursor: pointer;
    position: relative;
  }
  .pc_menu_wrap .pc_menu > ul > li:not(:first-of-type):before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    left: 0;
    width: 1px;
    height: 18px;
    background: #FFF;
    transform: translateY(-50%);
  }
  .pc_menu_wrap .pc_menu > ul > li > a {
    display: grid;
    place-items: center;
    color: #FFF;
    text-decoration: none;
    padding: 0 13px;
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
  .pc_menu_wrap .pc_menu > ul > li > a:hover {
    opacity: 0.7;
  }
  .pc_menu_wrap .pc_menu > ul > li.menu-item-has-children {
    position: relative;
  }
  .pc_menu_wrap .pc_menu > ul > li.menu-item-has-children > a {
    padding-left: 23px;
    padding-right: 15px;
  }
  .pc_menu_wrap .pc_menu > ul > li.menu-item-has-children > a > span {
    position: relative;
    left: -10px;
  }
  .pc_menu_wrap .pc_menu > ul > li.menu-item-has-children > a > span:after {
    position: absolute;
    content: "▼";
    font-size: 1.2rem;
    display: block;
    top: 48%;
    right: -17px;
    transform: translate(0, -50%);
    font-weight: bold;
  }
  .pc_menu_wrap .pc_menu > ul > li {
    /* サブメニュー */
  }
  .pc_menu_wrap .pc_menu > ul > li ul.sub-menu {
    padding: 0;
    z-index: 1000;
    font-weight: normal;
    display: none;
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: rgba(100, 80, 80, 0.9);
    min-width: 100%;
    padding: 10px 0;
  }
  .pc_menu_wrap .pc_menu > ul > li ul.sub-menu li a {
    color: #FFF;
    display: block;
    padding: 4px 20px;
    white-space: nowrap;
    text-decoration: none;
    font-size: 1.4rem;
  }
}
/* **************************************************
	フッター
************************************************** */
/* body:not(.top) footer {
  border-top: 1px solid #333;
} */
footer {
  padding-bottom: 30px;
  background: url(../img/common/bk_footer.jpg) no-repeat center center;
  background-size: auto 100%;
}
footer a,
footer a:hover,
footer a:visited,
footer a:active,
footer a:focus {
  color: #333;
}
footer .f_inner .main_area {
  margin-bottom: 15px;
}
footer .f_inner .main_area .main_area_inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px 15px 30px;
}
footer .f_inner .main_area .main_area_inner .f_company {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
footer .f_inner .main_area .main_area_inner .f_company .f_company_text_wrap .c_name {
  font-size: 2.4rem;
  line-height: 3.8rem;
}
footer .f_inner .main_area .main_area_inner .f_gmap > iframe {
  vertical-align: bottom;
  height: 250px;
}
footer .f_inner .other_area {
  padding: 0 15px;
}
footer .f_inner .other_area #f_nav {
  padding-bottom: 15px;
  font-size: 1.6rem;
  line-height: 2.4rem;
  position: relative;
  overflow: hidden;
}
footer .f_inner .other_area #f_nav > ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
}
footer .f_inner .other_area #f_nav > ul > li {
  position: relative;
}
footer .f_inner .other_area #f_nav > ul > li:first-of-type:before {
  position: absolute;
  display: block;
  content: "｜";
  top: 50%;
  left: -7px;
  transform: translateY(-50%);
}
footer .f_inner .other_area #f_nav > ul > li:not(:last-of-type):after {
  position: absolute;
  display: block;
  content: "｜";
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
}
footer .f_inner .other_area #f_nav > ul > li.fnav_li_add_line::before {
  position: absolute;
  display: block;
  content: "｜";
  top: 50%;
  left: -7px;
  transform: translateY(-50%);
}
footer .f_inner .other_area #f_nav > ul > li a {
  display: block;
  padding: 5px 10px;
}
footer .f_inner .other_area #f_nav > ul > li.menu-item-has-children {
  display: flex;
}
footer .f_inner .other_area #f_nav > ul > li.menu-item-has-children > ul.sub-menu {
  display: flex;
}
footer .f_inner .other_area .f_copy {
  font-size: 12px;
  line-height: 16px;
}

@media (min-width: 768px) {
  footer {
    padding-bottom: 60px;
    background-size: 100% auto;
  }
  footer .f_inner .main_area .main_area_inner {
    width: 1100px;
    padding: 60px 0;
    margin: 0 auto;
    flex-direction: row;
    gap: initial;
    justify-content: space-between;
  }
  footer .f_inner .main_area .main_area_inner .f_company {
    width: 50%;
    padding-right: 25px;
    gap: initial;
    justify-content: space-between;
  }
  footer .f_inner .main_area .main_area_inner .f_gmap {
    width: 50%;
    padding-left: 25px;
  }
  footer .f_inner .main_area .main_area_inner .f_gmap > iframe {
    height: 350px;
  }
  footer .f_inner .other_area {
    width: 1100px;
    padding: 0;
    margin: 0 auto;
  }
}
/* ----------------------------------------
	ページの先頭へ
---------------------------------------- */
#page_top {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  z-index: 100;
  background-color: #009977;
}
#page_top:hover {
  transition: 0.3s;
  opacity: 0.7;
}
#page_top:after {
  position: absolute;
  display: block;
  top: 21px;
  left: 50%;
  content: "";
  height: 15px;
  width: 15px;
  border-left: 2px solid #FFF;
  border-top: 2px solid #FFF;
  transform: translate(-50%, 0) rotate(45deg);
}
#page_top a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  position: relative;
  z-index: 100;
}

@media (min-width: 768px) {
  #page_top {
    right: 20px;
    bottom: 20px;
  }
}
/* **************************************************
	共通パーツ
************************************************** */
/* ----------------------------------------
	ページタイトル
---------------------------------------- */
.hl_page_wrap {
  width: 100%;
  background-color: #d0fff5;
  padding: 25px 15px 0;
}
.hl_page_wrap .hl_page {
  font-size: 3.2rem;
  line-height: 4.4rem;
  font-weight: bold;
  text-align: center;
  min-height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  color: #009977;
}
.hl_page_wrap {
  /*  パンくずリスト  */
}
.hl_page_wrap .breadcrumb {
  position: relative;
  padding: 0;
  font-weight: normal;
}
.hl_page_wrap .breadcrumb ul {
  overflow-x: scroll;
  word-break: keep-all;
  white-space: nowrap;
  padding-bottom: 15px;
}
.hl_page_wrap .breadcrumb ul li {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2rem;
  position: relative;
  /*
  &.single_title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 50%;
    margin-bottom: -8px;
  }
  */
}
.hl_page_wrap .breadcrumb ul li:not(:last-of-type) {
  margin-right: 9px;
}
.hl_page_wrap .breadcrumb ul li:not(:last-of-type):after {
  position: absolute;
  content: " > ";
  top: 50%;
  right: -11px;
  font-size: 1rem;
  transform: translateY(-50%);
}
.hl_page_wrap .breadcrumb .bc_scroll_grd {
  transition: 0.3s;
  opacity: 1;
}
.hl_page_wrap .breadcrumb .bc_scroll_grd.left:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(90deg, #d0fff5, rgba(255, 255, 255, 0));
  background-size: contain;
}
.hl_page_wrap .breadcrumb .bc_scroll_grd.right:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(-90deg, #d0fff5, rgba(255, 255, 255, 0));
  background-size: contain;
}

@media (min-width: 768px) {
  .hl_page_wrap {
    padding: 40px 25px 0;
  }
  .hl_page_wrap .hl_page {
    font-size: 3.8rem;
    line-height: 5.2rem;
    padding: 0;
    min-height: 80px;
  }
  .hl_page_wrap .breadcrumb ul {
    padding-bottom: 13px;
    overflow-x: inherit;
    word-break: inherit;
    white-space: inherit;
  }
  .hl_page_wrap .breadcrumb ul li {
    font-size: 1.4rem;
    line-height: 1.9rem;
  }
  .hl_page_wrap .breadcrumb ul li:not(:last-of-type) {
    margin-right: 13px;
  }
  .hl_page_wrap .breadcrumb ul li:not(:last-of-type):after {
    font-size: 1.2rem;
    top: 49%;
    right: -14px;
  }
}
/* ----------------------------------------
	見出し
---------------------------------------- */
.hl_a {
  font-size: 3rem;
  line-height: 4rem;
  color: #009977;
  position: relative;
  font-weight: bold;
  border-left: 10px solid #009977;
  border-bottom: 2px solid #009977;
  padding: 0 0 5px 10px;
  margin-bottom: 30px;
}

/* ----------------------------------------
	ボタン
---------------------------------------- */
.btn_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0;
  width: 100%;
}
.btn_wrap .btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0;
  width: 100%;
  max-width: 250px;
  min-height: 42px;
  background-color: #FFF;
  color: #009977;
  font-weight: bold;
  padding: 4px 15px;
  border: 1px solid #009977;
  border-radius: 999px;
  transition: 0.3s;
  position: relative;
  font-size: 2rem;
  line-height: 2.5rem;
  cursor: pointer;
}
.btn_wrap .btn.submit {
  background-color: #009977;
  color: #fff;
}
.btn_wrap .btn > span {
  display: inline-block;
}
.btn_wrap .btn.arrow {
  padding: 4px 25px;
}
.btn_wrap .btn.arrow:after {
  /* くの字　*/
  position: absolute;
  display: block;
  top: 50%;
  right: 24px;
  content: "";
  height: 12px;
  width: 12px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg) translateY(-74%);
}
.btn_wrap .btn:disabled {
  opacity: 0.5;
  cursor: default;
}

@media (min-width: 768px) {
  .btn_wrap {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }
  .btn_wrap .btn {
    max-width: initial;
    min-width: 180px;
    width: auto;
  }
}
/* ----------------------------------------
	検索ボックス
---------------------------------------- */
form.searchform {
  padding: 0;
}
form.searchform .search {
  position: relative;
}
form.searchform .search input.s {
  padding-right: 40px;
}
form.searchform .search .searchsubmit {
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/common/btn_search.png) no-repeat right 3px center;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  border: none;
  display: inline-block;
  padding: 0;
}

/* ----------------------------------------
	区切り線
---------------------------------------- */
.spl {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border: 0;
  border-bottom: solid 1px #CCC;
}

/* ----------------------------------------
	リスト（ul, li）
---------------------------------------- */
.list_def_01 {
  padding: 0;
  margin: 0;
}
.list_def_01 li {
  position: relative;
  padding: 0 0 0 25px;
  list-style: none;
}
.list_def_01 li:before {
  position: absolute;
  content: "●";
  top: 0;
  left: 5px;
}

/* ----------------------------------------
	フォーム系の基本デザイン
---------------------------------------- */
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
select,
textarea {
  width: 100%;
  border: 1px solid #CCC;
  border-radius: 4px;
  padding: 5px 10px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
select {
  height: 40px;
}

select {
  background: url("../img/common/select_icon.png") no-repeat right 11px center;
  background-size: 10px 7px;
  background-color: #FFF;
  padding-right: 30px;
  cursor: pointer;
}

textarea {
  resize: vertical;
  height: 200px;
}

/* placeholder */
/* placeholder, -ms-input-placeholder, -webkit-input-placeholder はまとめて CSS を記述せず、分離すること */
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #969696;
}
input::placeholder,
textarea::placeholder {
  color: #969696;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #969696;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #969696;
}

label.l_cbox, label.l_radio {
  display: block;
  width: 100%;
}
label.l_cbox:not(:last-of-type), label.l_radio:not(:last-of-type) {
  margin: 0 0 13px;
}

input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  padding-left: 33px;
}
input[type=checkbox] + span:before {
  position: absolute;
  content: "";
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  border: solid 1px #CCC;
  border-radius: 4px;
}
input[type=checkbox] + span:after {
  position: absolute;
  content: "";
  top: 7px;
  left: 5px;
  width: 14px;
  height: 8px;
  border-left: 2px solid #CCC;
  border-bottom: 2px solid #CCC;
  transform: rotate(-45deg);
}

input[type=checkbox]:checked + span:before {
  border: solid 1px #333;
  background-color: #333;
}
input[type=checkbox]:checked + span:after {
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
}

input[type=radio] + span {
  position: relative;
  display: inline-block;
  padding-left: 33px;
}
input[type=radio] + span:before {
  position: absolute;
  content: "";
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  border: solid 1px #CCC;
  border-radius: 12px;
}

input[type=radio]:checked + span:before {
  border: solid 2px #333;
}
input[type=radio]:checked + span:after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 6px;
  left: 5px;
  background: #333;
  border-radius: 50%;
}

@media (min-width: 768px) {
  select {
    width: initial;
  }
  label.l_cbox, label.l_radio {
    display: inline-block;
    width: auto;
  }
  label.l_cbox:not(:last-of-type), label.l_radio:not(:last-of-type) {
    margin: 0 35px 0 0;
  }
}
/* ----------------------------------------
	文字の装飾
---------------------------------------- */
.txt_red {
  color: #009977;
}

.txt_note {
  display: block;
  padding-left: 16px;
  position: relative;
}
.txt_note:before {
  position: absolute;
  display: block;
  content: "※";
  top: 0;
  left: 0;
}

.txt_under {
  text-decoration: underline;
}

.txt_inblock {
  display: inline-block;
}

.txt_block {
  display: block;
}

.senja_r {
  font-weight: normal;
}

/* ----------------------------------------
	ローディング
---------------------------------------- */
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0px;
  background-color: #fff;
  z-index: 999;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -16px;
  margin-top: -50px;
}

@media (min-width: 768px) {
  #loader-bg {
    /*top: 142px;*/
    top: 0;
  }
  #loader {
    /*margin-top: -142px;*/
    margin-top: 0;
  }
}
/* **************************************************
	背景
************************************************** */
.container {
  width: 100%;
  margin: 0 auto;
  /* 画像を背景として表示する場合
  padding: 0 0 119px;
  &:not(.front-page) {
    background: url('../img/common/page_end_sp.png') no-repeat center bottom;
    background-size: contain;
  } */
}
.container .main_content_wrap {
  padding: 60px 15px 60px;
}
.container .main_content_wrap .main_content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.container .main_content_wrap.contain_sidebar {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.container .main_content_wrap.contain_sidebar .main_content {
  order: 2;
}
.container .main_content_wrap.contain_sidebar .page_sidebar {
  order: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 768px) {
  .container .main_content_wrap {
    padding: 90px 0 90px;
    width: 1100px;
    margin: 0 auto;
  }
  .container .main_content_wrap.contain_sidebar {
    flex-direction: row;
    gap: initial;
    justify-content: space-between;
  }
  .container .main_content_wrap.contain_sidebar .main_content {
    order: 1;
    width: 760px;
  }
  .container .main_content_wrap.contain_sidebar .page_sidebar {
    order: 2;
    width: 260px;
  }
}
/* **************************************************
	ブログコンテンツ
************************************************** */
/* ----------------------------------------
	レイアウト
---------------------------------------- */
.blog_contents .main_column {
  padding-bottom: 60px;
  width: 100%;
}
.blog_contents .side_column > div:last-of-type ul {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .blog_contents {
    width: 1100px;
    margin: 0 auto;
  }
  .blog_contents .main_column {
    float: left;
    width: 780px;
    padding-bottom: 0;
  }
  .blog_contents .side_column {
    float: right;
    width: 240px;
    padding-top: 3px;
    padding-bottom: 0;
  }
}
/* ----------------------------------------
	記事
---------------------------------------- */
article.entry {
  padding-bottom: 60px;
  border-bottom: solid 1px #CCC;
}
article.entry:not(:first-of-type) {
  padding-top: 60px;
}
article.entry .post_img_wrap {
  width: 100%;
  margin-bottom: 20px;
}
article.entry .post_img_wrap > ul {
  list-style: none;
  padding: 0;
}
article.entry .post_img_wrap > ul > li .trim_b {
  background-color: #e9e9e9;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
article.entry .post_img_wrap > ul > li .trim_b:before {
  content: "";
  display: block;
  padding-top: 68.9%;
}
article.entry .post_img_wrap > ul > li .trim_b img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
article.entry .post_img_wrap.left {
  float: left;
}
article.entry .post_head {
  padding-bottom: 20px;
}
article.entry .post_head .post_date {
  padding-bottom: 0;
}
article.entry .post_head .post_cat span {
  display: inline-block;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #FFF;
  text-align: center;
  min-width: 80px;
  min-height: 20px;
  padding: 2px 8px;
  margin-right: 10px;
  background-color: #009977;
}
article.entry .post_head .hl {
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 3.4rem;
  padding-bottom: 10px;
}
article.entry .post_body {
  line-height: 1.6;
}
article.entry .post_body iframe {
  max-width: 100% !important;
}
article.entry .post_body h1, article.entry .post_body h2, article.entry .post_body h3, article.entry .post_body h4, article.entry .post_body h5, article.entry .post_body h6 {
  font-weight: bold;
  padding: 20px 0 10px;
}
article.entry .post_body {
  /*
  h1 {
    font-size: 3.2rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  h3 {
    font-size: 1.87rem;
  }
  h4 {
    font-size: 1.6rem;
  }
  h5 {
    font-size: 1.33rem;
  }
  h6 {
    font-size: 1.07rem;
  }
  */
}
article.entry .post_body p {
  padding-bottom: 10px;
}
article.entry .post_body img {
  margin-bottom: 10px;
  height: auto;
}
article.entry .post_body ul {
  list-style: inherit;
  padding-left: 20px;
  padding-bottom: 15px;
}
article.entry .post_body ol {
  list-style: decimal;
  padding-left: 20px;
  padding-bottom: 15px;
}
article.entry .post_body b, article.entry .post_body strong {
  font-weight: bold !important;
}
article.entry .post_body i, article.entry .post_body em {
  font-style: italic !important;
}
article.entry .post_body .movie {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
article.entry .post_body a {
  text-decoration: underline;
}
article.entry .post_body a.btn {
  text-decoration: none;
}
article.entry .post_body table {
  margin-bottom: 20px;
  border: 1px solid #BCBCBC;
  vertical-align: middle;
}
article.entry .post_body table tr:nth-child(odd) {
  background: #EFEFEF;
}
article.entry .post_body table tr th, article.entry .post_body table tr td {
  border: 1px solid #BCBCBC;
  vertical-align: middle;
}
article.entry .post_body table tr th {
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  padding: 5px 10px;
  background: #999;
  color: #FFF;
}
article.entry .post_body table tr td {
  line-height: 1.2;
  padding: 5px 10px;
}
article.entry .post_body .btn_wrap {
  padding: 10px;
}
article.entry .post_body .btn_wrap .btn {
  max-width: initial;
  font-size: 20px;
}
article.entry .clear_float {
  clear: both;
}
article.entry .post_foot {
  text-align: right;
}
article.entry .post_foot .more {
  width: 100px;
  height: 30px;
  margin: 10px 0 0 auto;
  border: solid 1px #9acfe5;
  line-height: 30px;
  text-align: center;
  border-radius: 15px;
}
article.entry .post_foot .more a {
  display: block;
  width: 100%;
  height: 100%;
}

.no_post {
  padding: 30px 0;
  text-align: center;
}

@media (min-width: 768px) {
  article.entry .post_img_wrap {
    width: 484px;
    margin: 0 15px 10px 0;
  }
  article.entry .post_img_wrap > ul > li .trim_b:before {
    padding-top: 346px;
  }
  article.entry .post_head .date_cats_wrap {
    display: flex;
    gap: 20px;
    width: 100%;
  }
  article.entry .post_head .post_date {
    flex: 0 0 auto;
    width: auto;
  }
  article.entry .post_body {
    /* .movie {
      width: 560px;
    } */
  }
  article.entry .post_body .btn_wrap .btn {
    max-width: 250px;
    min-width: initial;
  }
  article.entry .post_foot .more {
    margin: 20px 0 0 auto;
  }
  .no_post {
    padding: 100px 0;
  }
}
/* 記事フッタ
---------------------------------------- */
.article_foot {
  margin: 0;
  padding: 15px 0;
}
.article_foot .paging {
  display: flex;
  justify-content: space-between;
  padding: 0 0 14px 0;
  margin-bottom: 6px;
  text-align: justify;
  text-justify: inter-character;
}
.article_foot .paging .next,
.article_foot .paging .prev {
  position: relative;
  width: 50%;
  min-height: 90px;
  /* 削除すれば文字数連動になる */
}
.article_foot .paging .next a,
.article_foot .paging .prev a {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: bold;
}
.article_foot .paging .next a span.date,
.article_foot .paging .prev a span.date {
  display: block;
  font-weight: bold;
  padding: 0;
  vertical-align: top;
}
.article_foot .paging .next:before {
  /* くの字　*/
  position: absolute;
  display: block;
  top: 7px;
  left: 2px;
  content: "";
  height: 15px;
  width: 15px;
  border-top: 2px solid #333;
  border-left: 2px solid #333;
  transform: rotate(-45deg);
}
.article_foot .paging .next a {
  padding: 6px 25px 10px 19px;
  border-right: solid 1px #CCC;
}
.article_foot .paging .prev {
  margin-left: auto;
}
.article_foot .paging .prev:after {
  /* くの字　*/
  position: absolute;
  display: block;
  top: 7px;
  right: 2px;
  content: "";
  height: 15px;
  width: 15px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
}
.article_foot .paging .prev a {
  padding: 6px 19px 10px 25px;
  border-left: solid 1px #CCC;
  text-align: right;
}
.article_foot .paging .next + .prev a {
  border-left: none;
}

@media print, screen and (min-width: 768px) {
  .article_foot {
    padding: 30px 0 0;
  }
  .article_foot .paging {
    padding: 0 0 30px 0;
    margin-bottom: 0;
  }
}
/* ----------------------------------------
	ページネーション
---------------------------------------- */
.pagination_pc {
  display: none;
}

.pagination_sp {
  width: 100%;
  text-align: center;
  padding: 0 7px;
}
.pagination_sp .pagenum {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px 0 13px;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}
.pagination_sp .pager {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.pagination_sp .pager .prev,
.pagination_sp .pager .next {
  width: 48%;
  width: calc((100% - 15px) / 2);
  min-height: 40px;
  border-radius: 999px;
  background-color: #009977;
}
.pagination_sp .pager .prev a,
.pagination_sp .pager .next a {
  width: 100%;
  height: 100%;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  display: grid;
  place-items: center;
  position: relative;
  font-size: 1.4rem;
  line-height: 2rem;
}
.pagination_sp .pager .prev {
  margin-right: auto;
}
.pagination_sp .pager .prev a {
  padding: 5px 10px 5px 35px;
}
.pagination_sp .pager .prev a:after {
  /* くの字　*/
  position: absolute;
  display: block;
  top: 50%;
  left: 22px;
  content: "";
  height: 9px;
  width: 9px;
  border-bottom: 2px solid #FFF;
  border-left: 2px solid #FFF;
  transform: rotate(45deg) translateY(-74%);
}
.pagination_sp .pager .next {
  margin-left: auto;
}
.pagination_sp .pager .next a {
  padding: 5px 35px 5px 10px;
}
.pagination_sp .pager .next a:after {
  /* くの字　*/
  position: absolute;
  display: block;
  top: 50%;
  right: 22px;
  content: "";
  height: 9px;
  width: 9px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg) translateY(-74%);
}

@media (min-width: 768px) {
  .pagination_sp {
    display: none;
  }
  .pagination_pc {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
  }
  .pagination_pc ul li {
    display: inline-block;
    padding: 0;
    vertical-align: top;
  }
  .pagination_pc ul li a {
    display: block;
    width: 40px;
    height: 30px;
    margin: 0 5px;
    line-height: 30px;
    font-weight: bold;
    text-align: center;
    background: #FFF;
    border: solid 1px #CCC;
    border-radius: 4px;
    color: #333;
  }
  .pagination_pc ul li a.page-numbers.prev {
    position: relative;
    border: none;
    width: 30px;
    height: 30px;
    margin: 0;
  }
  .pagination_pc ul li a.page-numbers.prev:after {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 5px;
    transform: translate(0, -50%) rotate(45deg);
    height: 15px;
    width: 15px;
    border-bottom: 2px solid #009977;
    border-left: 2px solid #009977;
  }
  .pagination_pc ul li a.page-numbers.next {
    position: relative;
    border: none;
    width: 30px;
    height: 30px;
    margin: 0;
  }
  .pagination_pc ul li a.page-numbers.next:after {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    left: 5px;
    transform: translate(0, -50%) rotate(45deg);
    height: 15px;
    width: 15px;
    border-top: 2px solid #009977;
    border-right: 2px solid #009977;
  }
  .pagination_pc ul li span.current {
    display: block;
    width: 40px;
    height: 30px;
    margin: 0 5px;
    line-height: 30px;
    font-weight: bold;
    text-align: center;
    background: #009977;
    border-radius: 4px;
    color: #FFF;
  }
  .pagination_pc ul li span.dots {
    display: block;
    width: 40px;
    height: 30px;
    margin: 0;
    padding: 0;
    line-height: 30px;
    text-align: center;
  }
}
/* ----------------------------------------
	ウィジェットエリア（サイドカラム）
---------------------------------------- */
div.wgarea_side_area .f_company_contact .c_contact_tel > span {
  font-size: 2.6rem;
}
div.wgarea_side_area ul.section_titles {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 30px;
}
div.wgarea_side_area ul.section_titles > li > a, div.wgarea_side_area ul.section_titles > li span {
  display: block;
  position: relative;
  padding: 5px 0 5px 20px;
}
div.wgarea_side_area ul.section_titles > li > a:before, div.wgarea_side_area ul.section_titles > li span:before {
  position: absolute;
  content: "▶";
  color: #009977;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  div.wgarea_side_area ul.section_titles {
    flex-direction: column;
    gap: 0;
  }
  div.wgarea_side_area ul.section_titles > li > a, div.wgarea_side_area ul.section_titles span {
    padding: 10px 0 10px 20px;
  }
}
/* ----------------------------------------
	ウィジェットエリア（お知らせ_サイドカラム）
---------------------------------------- */
div.wgarea_info_side_area {
  font-weight: bold;
}
div.wgarea_info_side_area:not(:last-of-type) {
  margin-bottom: 30px;
}
div.wgarea_info_side_area[id*=custom-post-type-search] > h3 {
  display: none;
}
div.wgarea_info_side_area:has(form.searchform) {
  display: none;
}
div.wgarea_info_side_area > h3 {
  padding-bottom: 5px;
  border-bottom: solid 2px #333;
}
div.wgarea_info_side_area ul li {
  border-bottom: 1px solid #CCC;
  line-height: 24px;
}
div.wgarea_info_side_area ul li.cat-item {
  line-height: 27px;
}
div.wgarea_info_side_area ul li a {
  display: inline-block;
  padding: 13px 10px 12px;
}
div.wgarea_info_side_area ul li .children {
  padding: 0 0 0 10px;
  border-top: 1px solid #CCC;
}
div.wgarea_info_side_area ul li .children > li {
  padding-left: 0;
  padding-right: 0;
}
div.wgarea_info_side_area ul li .children > li:last-of-type {
  border-bottom: 0;
}

@media (min-width: 768px) {
  div.wgarea_info_side_area:has(form.searchform) {
    display: block;
  }
}
/* **************************************************
	404
************************************************** */
.not_found {
  padding: 30px 20px;
}
.not_found > p {
  padding: 0 0 30px 0;
}

@media (min-width: 768px) {
  .not_found > p {
    text-align: center;
  }
}
/* **************************************************
	固定ページ
************************************************** */
/* **************************************************
	Light Box 対応
**********************************F**************** */
@media (min-width: 768px) {
  .figure_lightbox {
    position: relative;
  }
  .figure_lightbox:hover {
    position: relative;
    opacity: 0.7;
    transition: 0.3s;
  }
  .figure_lightbox > a {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .figure_lightbox > a:after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/common/icon_zoom.png) no-repeat right bottom;
    background-size: 40px 40px;
  }
}
/* **************************************************
	モーダルウィンドウ（共通）
************************************************** */
.js-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.js-modal .modal_bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.js-modal .modal_content {
  position: absolute;
  width: calc(100vw - 30px);
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFF;
  margin: 15px;
  padding: 20px;
}
.js-modal .js-modal-close {
  cursor: pointer;
}

.js-modal-open {
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .js-modal .modal_content {
    margin: 0;
    width: 1100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
/* **************************************************
	お問い合わせに関する案内ボックス（共通）
************************************************** */
.f_company_contact {
  padding: 10px;
  background-color: #009977;
  color: #FFF;
}
.f_company_contact .c_contact_title {
  font-size: 2.2rem;
  line-height: 3.2rem;
  padding-bottom: 5px;
}
.f_company_contact .c_contact_desc, .f_company_contact .c_contact_tel, .f_company_contact .c_contact_time {
  text-align: center;
}
.f_company_contact .c_contact_desc > span {
  display: inline-block;
}
.f_company_contact .c_contact_tel {
  padding: 5px 0;
}
.f_company_contact .c_contact_tel > span {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  font-size: 3rem;
  line-height: 4.2rem;
}
.f_company_contact .c_contact_tel > span:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  background: url(../img/common/icon_phone.png) no-repeat center center;
  background-size: cover;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .f_company_contact:hover {
    opacity: 1;
  }
}
/* **************************************************
	固定ページ　パーツレイアウト対応（テーブル、リスト）
************************************************** */
body.page #wrapper .container .main_content table {
  margin-bottom: 20px;
  border: 1px solid #BCBCBC;
  vertical-align: middle;
}
body.page #wrapper .container .main_content table tr:nth-child(odd) {
  background: #EFEFEF;
}
body.page #wrapper .container .main_content table tr th, body.page #wrapper .container .main_content table tr td {
  border: 1px solid #BCBCBC;
  vertical-align: middle;
}
body.page #wrapper .container .main_content table tr th {
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  padding: 5px 10px;
  background: #999;
  color: #FFF;
}
body.page #wrapper .container .main_content table tr td {
  line-height: 1.2;
  padding: 5px 10px;
}
body.page #wrapper .container .main_content ul {
  list-style: inherit;
  padding-left: 20px;
  padding-bottom: 15px;
}