/* ##############################################################################

    KEYFRAMES

############################################################################## */

@keyframes bg-slider {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 3840px 0;
  }
}

@media screen and (max-width: 767px) {
  @keyframes bg-slider {
    from {
      background-position: 0 0;
    }
    to {
      background-position: 3040px 0;
    }
  }
}

/* ##############################################################################

    COMMON

############################################################################## */

html {
  height: 100%;
  overflow-y: scroll;
}
body {
  height: 100%;
  padding-top: 118px;
}

@media screen and (max-width: 767px) {
  body {
    padding-top: 56px;
  }
}

/* layout
**************************************** */

/* --- inner --- */
.inner {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}
.inner-sm {
  width: 90%;
  max-width: 900px;
}
.inner-lg {
  max-width: 1200px;
}
.inner-xl {
  max-width: 1366px;
}

/* --- section_pdg --- */
.section_pdg {
  padding-top: 80px;
  padding-bottom: 80px;
}
.section_pdg-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* --- section_deco --- */
.section_deco {
  position: relative;
}
.section_deco::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
}
.section_deco.pt_fabric::before {
  top: -40px;
  height: 40px;
  background-image: url(../images/common/bow_shape_fabric.png);
}
.section_deco.bg-wh.bow_shape_bottom::before {
  bottom: -100px;
  height: 100px;
  background-image: url(../images/common/bow_shape_wh.png);
}

/* --- float --- */
.flt-rgt {
  float: right;
}
.flt-lft {
  float: left;
}

/* --- position --- */
.pos_rel {
  position: relative;
  z-index: 0;
}

/* --- margin --- */
.mgn-btm8 {
  margin-bottom: 8px;
}
.mgn-btm16 {
  margin-bottom: 16px;
}
.mgn-btm24 {
  margin-bottom: 24px;
}
.mgn-btm32 {
  margin-bottom: 32px;
}
.mgn-btm40 {
  margin-bottom: 40px;
}
.mgn-btm48 {
  margin-bottom: 48px;
}
.mgn-btm56 {
  margin-bottom: 56px;
}
.mgn-btm64 {
  margin-bottom: 64px;
}
.mgn-btm72 {
  margin-bottom: 72px;
}
.mgn-btm80 {
  margin-bottom: 80px;
}

/* --- pc or sp --- */
.pc-none,
.pc-none-inline,
.pc-none-table,
.pc-none-flex {
  display: none;
}
.sp-none {
  display: block;
}
.sp-none-inline {
  display: inline;
}
.sp-none-table {
  display: table;
}
.sp-none-flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* --- モーダル --- */
.modal {
  display: none;
}
.modal.active {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;
}
.modal--content {
  width: 80%;
  max-height: 64%;
  overflow-y: scroll;
  padding-left: 12px;
  text-align: center;
}
.modal .close {
  margin-top: 16px;
  color: #fff;
  cursor: pointer;
  transition: all 0.4s ease-out;
}
.modal .close:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .inner {
    width: 86%;
  }
  .section_pdg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .mgn-btm16 {
    margin-bottom: 8px;
  }
  .mgn-btm24 {
    margin-bottom: 16px;
  }
  .mgn-btm32 {
    margin-bottom: 16px;
  }
  .mgn-btm40 {
    margin-bottom: 24px;
  }
  .mgn-btm48 {
    margin-bottom: 24px;
  }
  .mgn-btm56 {
    margin-bottom: 32px;
  }
  .mgn-btm64 {
    margin-bottom: 32px;
  }
  .mgn-btm72 {
    margin-bottom: 40px;
  }
  .mgn-btm80 {
    margin-bottom: 40px;
  }
  .sp-none,
  .sp-none-inline,
  .sp-none-table,
  .sp-none-flex {
    display: none;
  }
  .pc-none {
    display: block;
  }
  .pc-none-inline {
    display: inline;
  }
  .pc-none-table {
    display: table;
  }
  .pc-none-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/* flex
**************************************** */

/* --- ブロック要素 --- */
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* --- インライン要素 --- */
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* --- 逆向き --- */
.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* --- 縦並び --- */
.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* --- 水平方向揃え --- */
.flex-j-start {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex-j-end {
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flex-j-ctr {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex-j-between {
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex-j-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

/* --- 垂直方向揃え --- */
.flex-a-start {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.flex-a-end {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flex-a-ctr {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex-a-baseline {
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.flex-a-stretch {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/* --- 子要素の折り返し設定 --- */
.flex-c-nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-c-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* --- 子要素の複数行設定 --- */
.flex-c-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.flex-c-start {
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.flex-c-start {
  -webkit-align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.flex-c-end {
  -webkit-align-content: flex-end;
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.flex-c-ctr {
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.flex-c-baseline {
  -webkit-align-content: baseline;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
}
.flex-c-stretch {
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}

.flex .col {
  flex: 1;
}

/* --- ざっくりflexレイアウト --- */
.flex-col2,
.flex-col3,
.flex-col4 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-col2 > * {
  width: 48.5%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.flex-col2:not(.flex-reverse) > *:nth-child(even) {
  margin-right: 0;
}
.flex-col2.flex-reverse > *:nth-child(odd) {
  margin-right: 0;
}
.flex-col3 > * {
  width: 31.33%;
  margin-right: 3%;
  margin-bottom: 3%;
}
.flex-col3 > *:nth-child(3n + 3) {
  margin-right: 0;
}
.flex-col4 > * {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.flex-col4 > *:nth-child(4n + 4) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  /* --- 縦並び - sp --- */
  .flex-sp-block {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-sp-block.flex-col2 > * {
    width: 100%;
    margin-right: 0;
    margin-bottom: 6%;
  }
  .flex-sp-block.flex-col2 > *:last-child {
    margin-bottom: 0;
  }

  /* --- 並び順変更 - sp --- */
  .flex-sp-reverse {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  /* --- ざっくりflexレイアウト - sp --- */
  .flex-col3.flex-sp-block > * {
    width: 100%;
    margin-right: 0;
  }
  .flex-sp-col2 > *,
  .flex-sp-col2.flex-col3 > *:nth-child(3n + 3) {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-sp-col2 > *:nth-child(even) {
    margin-right: 0;
  }
  .flex-sp-col3 > *,
  .flex-sp-col3.flex-col4 > *:nth-child(4n + 4) {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-sp-col3 > *:nth-child(3n + 3) {
    margin-right: 0;
  }
}

/* bg
**************************************** */
.pt_fabric {
  background-image: url(../images/common/pt_fabric.jpg);
}
.pt_beige {
  background-image: url(../images/common/pt_beige_fabric.jpg);
}
.bg-wh {
  background-color: #fff;
}

/* ttl
**************************************** */

/* --- page_ttl --- */
.page_ttl {
  position: relative;
  background-color: #eee;
  padding: 80px 0 112px;
  text-align: center;
  background-position: center;
  background-size: cover;
}
.search_category-medical .page_ttl {
  background-image: url(../images/page_ttl/02_medical_ttl.jpg);
}
.search_category-nursing .page_ttl {
  background-image: url(../images/page_ttl/02_nursing_ttl.jpg);
}
.search_category-disabled .page_ttl {
  background-image: url(../images/page_ttl/02_disabled_ttl.jpg);
}
.search_category-child .page_ttl {
  background-image: url(../images/page_ttl/02_child_ttl.jpg);
}
.search_area-nagara .page_ttl {
  background-image: url(../images/page_ttl/08_nagara_ttl.jpg);
}
.search_area-center .page_ttl {
  background-image: url(../images/page_ttl/08_center_ttl.jpg);
}
.search_area-kanou .page_ttl {
  background-image: url(../images/page_ttl/08_kanou_ttl.jpg);
}
.search_area-kitagata-motosu-mizuho .page_ttl {
  background-image: url(../images/page_ttl/08_kitagata-motosu-mizuho_ttl.jpg);
}
.search_area-terada .page_ttl {
  background-image: url(../images/page_ttl/08_terada_ttl.jpg);
}
.search_service-carehouse .page_ttl {
  background-image: url(../images/page_ttl/04_carehouse_ttl.jpg);
}
.search_service-caresupportprovider .page_ttl {
  background-image: url(../images/page_ttl/04_caresupportprovider_ttl.jpg);
}
.search_service-daycare .page_ttl {
  background-image: url(../images/page_ttl/04_daycare_ttl.jpg);
}
.search_service-dayservice .page_ttl {
  background-image: url(../images/page_ttl/04_dayservice_ttl.jpg);
}
.search_service-dementiadayservice .page_ttl {
  background-image: url(../images/page_ttl/04_dementiadayservice_ttl.jpg);
}
.search_service-grouphome .page_ttl {
  background-image: url(../images/page_ttl/04_grouphome_ttl.jpg);
}
.search_service-healthwelfareservices .page_ttl {
  background-image: url(../images/page_ttl/04_healthwelfareservices_ttl.jpg);
}
.archive-nursingcare-news .page_ttl,
.single-nursingcare-news .page_ttl,
.search_service-homecare .page_ttl {
  background-image: url(../images/page_ttl/04_homecare_ttl.jpg);
}
.search_service-homenursingcare .page_ttl {
  background-image: url(../images/page_ttl/04_homenursingcare_ttl.jpg);
}
.search_service-homereha .page_ttl {
  background-image: url(../images/page_ttl/04_homereha_ttl.jpg);
}
.search_service-multifunctionhomecare .page_ttl {
  background-image: url(../images/page_ttl/04_multifunctionhomecare_ttl.jpg);
}
.search_service-nursingmultifunctionhomecare .page_ttl {
  background-image: url(../images/page_ttl/04_nursingmultifunctionhomecare_ttl.jpg);
}
.search_service-retirementhome .page_ttl {
  background-image: url(../images/page_ttl/04_retirementhome_ttl.jpg);
}
.search_service-specialnursinghome .page_ttl {
  background-image: url(../images/page_ttl/04_specialnursinghome_ttl.jpg);
}
.search_service-shortstay .page_ttl {
  background-image: url(../images/page_ttl/04_shortstay_ttl.jpg);
}
.search_service-communitybaseddayservice .page_ttl {
  background-image: url(../images/page_ttl/04_communitybaseddayservice_ttl.jpg);
}
.search_service-periodicvisitsandoccasionalhomecarenursing .page_ttl {
  background-image: url(../images/page_ttl/04_periodicvisitsandoccasionalhomecarenursing_ttl.jpg);
}
.search_service-nighthomecare .page_ttl {
  background-image: url(../images/page_ttl/04_nighthomecare_ttl.jpg);
}
.search_service-homecareandseverehomecare .page_ttl {
  background-image: url(../images/page_ttl/04_homecareandseverehomecare_ttl.jpg);
}
.search_service-homecareandseverehomecare .page_ttl {
  background-image: url(../images/page_ttl/04_homecareandseverehomecare_ttl.jpg);
}
.search_service-medicalretirementhome .page_ttl {
  background-image: url(../images/page_ttl/04_medicalretirementhome_ttl.jpg);
}
.search_service-clinic .page_ttl {
  background-image: url(../images/page_ttl/03_clinic_ttl.jpg);
}
.search_service-geriatrichealthservicessearch .page_ttl {
  background-image: url(../images/page_ttl/03_geriatrichealthservicesfacility_ttl.jpg);
}
.search_service-hospital .page_ttl {
  background-image: url(../images/page_ttl/03_hospital_ttl.jpg);
}
.search_service-afterschooldayservice .page_ttl {
  background-image: url(../images/page_ttl/05_afterschooldayservice_ttl.jpg);
}
.search_service-childdevelopmentsupport .page_ttl {
  background-image: url(../images/page_ttl/05_childdevelopmentsupport_ttl.jpg);
}
.search_service-consultationsupport .page_ttl {
  background-image: url(../images/page_ttl/05_consultationsupport_ttl.jpg);
}
.search_service-lifecare .page_ttl {
  background-image: url(../images/page_ttl/05_lifecare_ttl.jpg);
}
.search_service-disabledgrouphome .page_ttl {
  background-image: url(../images/page_ttl/05_disabledgrouphome_ttl.jpg);
}
.search_service-supportforcontinuousemploymenttypeb .page_ttl {
  background-image: url(../images/page_ttl/05_supportforcontinuousemploymenttypeb_ttl.jpg);
}
.search_service-childcarecenter .page_ttl {
  background-image: url(../images/page_ttl/06_childcarecenter_ttl.jpg);
}
.search_service-childrenscenter .page_ttl {
  background-image: url(../images/page_ttl/06_childrenscenter_ttl.jpg);
}
.search_service-nursery .page_ttl {
  background-image: url(../images/page_ttl/06_nursery_ttl.jpg);
}
.search_service-sickkidscare .page_ttl {
  background-image: url(../images/page_ttl/06_sickkidscare_ttl.jpg);
}
.search_service-regionexchange .page_ttl {
  background-image: url(../images/page_ttl/07_regionexchange_ttl.jpg);
}
.search_service-trainingcenter .page_ttl {
  background-image: url(../images/page_ttl/07_trainingcenter_ttl.jpg);
}
.search_service-disabled_homecare .page_ttl {
  background-image: url(../images/page_ttl/homecare_ttl.jpg);
}
.search_service-disabled_severehomecare .page_ttl {
  background-image: url(../images/page_ttl/disabled_severehomecare_ttl.jpg);
}
.search_service-lifesupport .page_ttl {
  background-image: url(../images/page_ttl/lifesupport_ttl.jpg);
}
.archive-search.search_icon .page_ttl {
  background-image: url(../images/page_ttl/02_nursing_ttl.jpg);
}
.archive-search.search_icon-nyushonyukyo .page_ttl {
  background-image: url(../images/page_ttl/09_nyushonyukyo_ttl.jpg);
}
.archive-search.search_icon-houmon .page_ttl {
  background-image: url(../images/page_ttl/09_houmon_ttl.jpg);
}
.archive-search.search_icon-caremanagement .page_ttl {
  background-image: url(../images/page_ttl/09_caremanagement_ttl.jpg);
}

.search_service-communitycomprehensivecarecenter .page_ttl {
  background-image: url(../images/page_ttl/07_communitycomprehensivecarecenter_ttl.jpg);
}
.search_service-livelihood-support .page_ttl {
  background-image: url(../images/page_ttl/07_livelihood-support_ttl.jpg);
}
.archive-nursingcare-news .page_ttl,
.single-nursingcare-news .page_ttl {
  background-image: url(../images/page_ttl/04_nursingcare-news_ttl.jpg);
}
.search_area-hokubu .page_ttl {
  background-image: url(../images/page_ttl/08_nagara_ttl.jpg);
}
.search_area-seibu .page_ttl {
  background-image: url(../images/page_ttl/08_terada_ttl.jpg);
}
.search_area-nanbu .page_ttl {
  background-image: url(../images/page_ttl/08_kanou_ttl.jpg);
}
.search_area-ogai .page_ttl {
  background-image: url(../images/page_ttl/08_ogaki_ttl.jpg);
}
.search_service-supportforresidentialcare .page_ttl {
  background-image: url(../images/page_ttl/supportforresidentialcare_ttl.jpg);
}
.search_service-disabled-shortstay .page_ttl {
  background-image: url(../images/page_ttl/02_search_ttl.jpg);
}

.page_ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/common/section_deco.png);
}
.page_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
.single-search .page_ttl::before {
  display: none;
}
.page_ttl-jp,
.page_ttl-en {
  position: relative;
  display: block;
  color: #fff;
}
.page_ttl-jp {
  margin-bottom: 8px;
  font-size: 266%;
  line-height: 1.2;
  font-family: "Hiragino UD Sans W6 JIS2004";
}
.page_ttl-en {
  font-size: 100%;
  text-transform: uppercase;
  font-family: "UDDigiKyoLatin-Bold";
}
@media all and (-ms-high-contrast: none) {
  .page_ttl-en {
    font-family: "Hiragino UD Sans W6 JIS2004";
  }
}
.page-english .page_ttl-en,
.page-vietnamese .page_ttl-en {
  display: none;
}

/* --- section_ttl --- */
.section_ttl {
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
}
.section_ttl .icon,
.section_ttl .jp {
  display: block;
}
.section_ttl .icon {
  margin-bottom: 20px;
}
.section_ttl .jp {
  font-size: 244%;
  line-height: 1.36;
  letter-spacing: normal;
  font-family: "Hiragino UD Sans W6 JIS2004";
}

/* --- heading --- */
.heading-1,
.heading-2,
.heading-3 {
  font-family: "Hiragino UD Sans W6 JIS2004";
}
.heading-1 {
  position: relative;
  font-size: 177%;
  line-height: 1.45;
}
.heading-2 {
  font-size: 133%;
  line-height: 1.5;
}
.heading-3 {
  font-size: 120%;
  line-height: 1.5;
}
.heading-4 {
  font-size: 107%;
}

@media screen and (max-width: 767px) {
  /* --- page_ttl --- */
  .page_ttl-jp {
    font-size: 186%;
  }
  .page_ttl-en {
    font-size: 86%;
    font-family: "Hiragino UD Sans W6 JIS2004";
  }

  /* --- section_ttl --- */
  .section_ttl .jp {
    font-size: 7.4vw;
  }
  .section_ttl .icon {
    margin-bottom: 10px;
  }

  /* --- heading --- */
  .heading-1 {
    font-size: 158%;
  }
  .heading-2 {
    font-size: 139%;
  }
  .heading-3 {
    font-size: 111%;
  }
}

/* breadcrumbs
**************************************** */
.breadcrumbs {
  padding: 16px 0;
  font-family: "Hiragino UD Sans W6 JIS2004";
}
.breadcrumbs a,
.breadcrumbs .breadcrumb_last {
  color: #ff8332;
}

/* txt
**************************************** */
.txt-lg {
  font-size: 107%;
}
.txt-sm {
  font-size: 93%;
}
.txt-red {
  color: red;
}
.txt-ctr,
.txt-ctr-pc {
  text-align: center;
}
.txt-rgt,
.txt-rgt-pc {
  text-align: right;
}
.txt-attention {
  font-size: 88%;
  color: #999;
}
.txt-attention-kome {
  position: relative;
  padding-left: 1.4em;
}
.txt-attention-kome::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.txtarea p:not(:last-child) {
  margin-bottom: 1em;
}
.font-en {
  font-family: "UDDigiKyoLatin-Bold";
}
.strong {
  font-family: "Hiragino UD Sans W6 JIS2004";
}
.page-vietnamese .strong {
  font-family: "Clarimo UD PE Medium";
}

@media screen and (max-width: 767px) {
  .txt-ctr-pc,
  .txt-rgt-pc {
    text-align: left;
  }
}

/* table & list
**************************************** */

table {
  width: 100%;
}

@media screen and (max-width: 767px) {
  table {
    width: auto;
  }
}

/* --- list ---- */
.list {
  list-style-type: none;
}
.list li:not(:last-child) {
  margin-bottom: 16px;
}
.list li {
  position: relative;
  padding-left: 1.4em;
}
.list-disc li::before,
.list-square li::before,
.list-circle li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 6px;
  background-color: #666;
}
/* 数字付きリスト */
.list-num {
  padding-left: 1.4em;
  list-style-type: decimal;
}
.list-num li {
  padding-left: 0;
}
.list-num li::before {
  display: none;
}
/* 白丸付きリスト */
.list-circle li::before {
  border: 1px solid #666;
  background-color: transparent;
}
/* 四角付きリスト */
.list-square li::before {
  border-radius: 0;
  background-color: #666;
}
/* 入れ子のスタイル */
.list li ul {
  margin-top: 16px;
}
.list li ul li::before {
  width: 6px;
  height: 6px;
  top: 0.8em;
}

/* --- dlリスト --- */
.list-dl {
  position: relative;
  border-top: 1px solid #bfbfbf;
}
.list-dl dt {
  position: absolute;
  padding-top: 16px;
  color: #666;
  font-weight: 700;
}
.list-dl dd {
  padding-left: 140px;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #bfbfbf;
}

/* anker
**************************************** */
.anker {
  position: absolute;
  top: -96px;
  left: 0;
}

/* btn
**************************************** */
.btn {
  position: relative;
  display: inline-block;
  min-width: 300px;
  padding: 16px 52px;
  border-radius: 4px;
  color: #fff !important;
  background-color: #524439;
  font-size: 111%;
  text-align: center;
  font-family: "Hiragino UD Sans W6 JIS2004";
  text-decoration: none !important;
}
.page-vietnamese .btn {
  font-family: "Clarimo UD PE Medium";
}
.btn::after {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 80%;
  content: "\e900";
  font-family: "icomoon";
}
.btn-out .btn::after {
  transform: translateY(-55%);
  content: "\e907";
  font-family: "icomoon";
  font-size: 100%;
}
.btn:hover {
  background-color: #2f1a12;
}
.btn-green {
  background-color: #008f4b;
}
.btn-pink {
  background-color: #ffa4a0;
}
.btn-orange {
  background-color: #ff8332;
}
.btn-green:hover {
  background-color: #00763e;
}
.btn-pink:hover {
  background-color: #ff8c87;
}
.btn-orange:hover {
  background-color: #fe6400;
}
.btn .icon-icon_list {
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

.flex > .btn + .btn {
  margin-left: 14px;
}

@media screen and (max-width: 767px) {
  .btn {
    padding: 16px 35px;
  }
  .btn::after {
    right: 10px;
  }
  .flex .btn,
  .flex .btn + .btn {
    margin-top: 4px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* cta
**************************************** */
.cta {
  padding: 156px 0 74px;
}
.cta .inner {
  position: relative;
  border-radius: 4px;
  padding: 0 30px 25px;
  border: 3px solid #ff8332;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}
.cta .inner::before {
  content: "";
  position: absolute;
  top: -93px;
  left: 0;
  right: 0;
  width: 100%;
  height: 120px;
  background-position: center right 38%;
  background-repeat: no-repeat;
  background-image: url(../images/bg_cta_top.png);
}
.cta .section_ttl {
  position: relative;
  margin-top: -108px;
}
.cta .section_ttl .icon {
  margin-bottom: 8px;
}
.cta .section_ttl .jp {
  font-size: 177%;
}
.cta--sub_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 133%;
  font-family: "Hiragino UD Sans W6 JIS2004";
}
.cta--sub_ttl::before,
.cta--sub_ttl::after {
  content: "";
  display: inline-block;
  width: 16px;
  border-bottom: 7px double #008f4b;
}
.cta--sub_ttl span {
  margin: 0 14px;
}
.cat--tel {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 4px;
}
.cat--tel p {
  line-height: 1.4;
}
.cat--tel p:first-child {
  margin-right: 20px;
}
.cat--tel p:last-child {
  background-color: #faf1d8;
}
.cat--tel a {
  padding: 16px 24px;
  border-radius: 4px;
  font-size: 230%;
  line-height: 0;
  font-family: "UDDigiKyoLatin-Bold";
  letter-spacing: -0.03em;
  color: #ff8332;
}
.cat--tel a i {
  display: inline-block;
  margin-right: 8px;
  font-size: 90%;
}
.cat--tel + p a {
  text-decoration: underline;
}
.cat--tel + p a:hover {
  opacity: 0.5;
}
.cta--contact_links {
  margin-bottom: 18px;
}
.cta--contact_links li {
  width: calc(100% / 3 - (12px * 2 / 3));
  margin-right: 12px;
}
.cta--contact_links li:last-child {
  margin-right: 0;
}
.cta--contact_links li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
  background-color: #ff8332;
  border-radius: 4px;
  text-align: center;
  color: #fff;
  font-size: 112%;
  line-height: 1.2;
  font-family: "Hiragino UD Sans W6 JIS2004";
}
.cta--contact_links li:nth-child(3) a {
  padding-right: 10px;
}
.cta--contact_links li a:hover {
  background-color: #fe6400;
}
.cta--contact_links li a::after {
  position: absolute;
  right: 8px;
  content: "\e900";
  font-family: "icomoon";
  font-size: 80%;
}

@media screen and (max-width: 767px) {
  .cta {
    padding: 60px 0;
  }
  .cta .inner {
    padding: 0 20px 16px;
  }
  .cta .inner::before {
    display: none;
  }
  .cta .section_ttl {
    margin-top: -28px;
  }
  .cta .section_ttl .icon {
    margin-bottom: 12px;
  }
  .cat--tel p:first-child {
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 12px;
    border-right: none;
    text-align: center;
  }
  .cat--tel a {
    display: inline-block;
    padding: 0.5em 0.8em;
    font-size: 1.6em;
  }
  .cta--contact_links li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .cta--contact_links li a {
    height: 58px;
  }
}

/* cta-page
**************************************** */
.cta-page {
  padding: 40px 0 60px;
}
.cta-page a:hover {
  opacity: 0.6;
}
.cta-page .imgarea {
  margin-bottom: -18px;
}
.cta-page .heading-2 i {
  display: block;
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .cta-page {
    padding: 40px 0 24px;
  }
  .cta-page .imgarea {
    margin-bottom: 8px;
  }
}

/* search_section
**************************************** */
.search_content {
  background-color: #fff;
  padding: 0 60px 55px;
  border-radius: 4px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.search_content .section_ttl {
  transform: translateY(-34px);
}
.category_list {
  margin-bottom: 30px;
}
.category_list .open_ttl {
  width: calc(100% / 3 - (32px * 2 / 3));
  display: flex;
  align-items: center;
  border-radius: 4px;
  padding-left: 40px;
  background-color: #faf1d8;
  margin-right: 32px;
  font-size: 111%;
  cursor: pointer;
}
@media all and (-ms-high-contrast: none) {
  .category_list .open_ttl {
    margin-right: 31px;
  }
}
.category_list .open_ttl:nth-of-type(1) {
  order: 1;
}
.category_list .open_ttl:nth-of-type(2) {
  order: 2;
}
.category_list .open_ttl:last-of-type {
  order: 3;
  margin-right: 0;
}
.category_list .open_ttl .icon,
.facility_list .open_ttl .icon {
  margin-right: 14px;
}
.category_list .open_ttl span {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 74px;
  background-color: #f4dfaa;
  border-radius: 0 4px 4px 0;
  margin-left: auto;
}
.category_list .open_ttl span::before,
.category_list .open_ttl span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 3px;
  background-color: #333;
  border-radius: 4px;
  transition: all 0.4s ease-out;
}
.category_list .open_ttl span::after {
  transform: rotate(90deg);
}
.category_list .open_ttl.select span::after {
  transform: rotate(0);
}
.category_list--object {
  position: relative;
  display: none;
  order: 4;
  width: 100%;
  margin-top: 8px;
  padding: 24px 40px 6px;
  border-radius: 4px;
  background-color: #faf1d8;
}
.category_list--object#cat {
  display: block;
}
.category_list--object::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 0;
  width: calc(100% / 3 - (21px));
  height: 10px;
  background-color: #faf1d8;
}
.category_list--object#service::before {
  left: auto;
  right: 0;
}
.category_list--object#area::before {
  left: calc(100% / 2.915);
}
.category_list--object .cat_list,
.category_list--object .area_list {
  display: flex;
  flex-wrap: wrap;
}
.category_list--object .cat_list li,
.category_list--object .area_list li {
  width: calc(100% / 4 - (18px * 3 / 4));
  margin-right: 18px;
  margin-bottom: 18px;
}
.category_list--object .cat_list li:nth-child(4n) {
  margin-right: 0;
}
.category_list--object .area_list li {
  width: calc(100% / 3 - (18px * 2 / 3));
}
.category_list--object .service_list > li h3,
.facility_list--object ul > li h3,
.footer--facility_list > li h3 {
  display: flex;
  align-items: center;
  font-size: 113%;
  line-height: 1;
}
.category_list--object .service_list li h3::after,
.facility_list--object .facility_arc li h3::after,
.footer--facility_list > li h3::after {
  content: "";
  display: block;
  flex: 1;
  border-bottom: 2px solid #f4dfaa;
  margin-left: 16px;
}
.facility_list--object .facility_arc li h3::after,
.footer--facility_list > li h3::after {
  border-bottom-color: #ffd4c5;
}
.category_list--object .service_list .child {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.category_list--object .service_list .child li {
  width: calc(100% / 3 - (12px * 2 / 3));
  margin-right: 12px;
  margin-bottom: 12px;
}
.category_list--object .area_list li:nth-child(3n),
.category_list--object .service_list .child li:nth-child(3n) {
  margin-right: 0;
}
.category_list--object .cat_list a,
.category_list--object .area_list a,
.category_list--object .service_list a {
  display: block;
  background-color: #fff;
  padding: 24px 16px 14px;
  height: 100%;
  border-radius: 4px;
  text-align: center;
  font-family: "Hiragino UD Sans W6 JIS2004";
  line-height: 1.5;
}
.category_list--object .cat_list a {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  line-height: 1.35;
}
.category_list--object .service_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.category_list--object .cat_list a:hover,
.category_list--object .area_list a:hover,
.category_list--object .service_list a:hover {
  background-color: #fdfaf3;
}
.category_list--object .cat_list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  width: 58px;
  height: 60px;
}
.facility_list .open_ttl {
  display: flex;
  align-items: center;
  border-radius: 4px;
  padding-left: 40px;
  background-color: #ffd4c5;
  font-size: 111%;
  cursor: pointer;
}
.facility_list .open_ttl .icon {
  line-height: 1;
}
.facility_list .open_ttl span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 60px;
  height: 60px;
  background-color: #ffb59c;
  border-radius: 0 4px 4px 0;
}
.facility_list .open_ttl span::before {
  content: "";
  display: inline-block;
  transition: all 0.4s ease-out;
  transform: rotate(-90deg) translateX(-5px);
  border: 10px solid transparent;
  border-right: 13px solid #333;
  font-size: 0;
}
.facility_list .open_ttl.select span::before {
  transform: rotate(90deg) translateX(-5px);
}
.facility_list--object {
  display: none;
  padding: 32px 42px;
  background-color: #ffefe9;
}
.facility_list--object ul,
.footer--facility_list ul {
  padding-left: 0.5em;
  margin-bottom: 32px;
}
.facility_list--object ul li,
.footer--facility_list ul li {
  line-height: 1.25;
  margin-bottom: 10px;
  font-size: 94%;
}
.facility_list--object li a,
.footer--facility_list li a {
  position: relative;
  display: block;
  padding-left: 1em;
}
.facility_list--object li a:hover,
.footer--facility_list li a:hover {
  color: #ff7e77;
}
.facility_list--object li a::before,
.footer--facility_list li a::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  border: 6px solid transparent;
  border-left: 8px solid #ff7e77;
  margin-right: 8px;
  font-size: 0;
  line-height: 1;
  vertical-align: super;
}
.facility_list--object li a.out_link::after,
.footer--facility_list li a.out_link::after {
  content: "\e907";
  font-family: "icomoon" !important;
  margin-left: 4px;
}

.archive-search .category_list--object#cat,
.archive-search .facility_list--object {
  display: block;
}

@media screen and (max-width: 1280px) {
  .search_content {
    padding-left: 30px;
    padding-right: 30px;
  }
  .category_list .open_ttl {
    padding-left: 24px;
    font-size: 100%;
  }
  .facility_list .open_ttl {
    padding-left: 24px;
  }
  .category_list .open_ttl .icon,
  .facility_list .open_ttl .icon {
    margin-right: 8px;
  }
}
@media screen and (max-width: 767px) {
  .category_list {
    display: block;
    padding-top: 64px;
    margin-top: -64px;
    margin-bottom: 20px;
  }
  #cat_anchor,
  #area_anchor,
  #service_anchor,
  #facility_anchor {
    padding-top: 64px;
    margin-top: -64px;
  }
  .category_list .open_ttl {
    width: 100%;
    margin-top: 16px;
    margin-right: 0;
    margin-bottom: 0;
    padding: 0 0 0 18px;
    border-radius: 4px;
    color: #fff;
    font-family: "Hiragino UD Sans W6 JIS2004";
  }
  .category_list .open_ttl:nth-of-type(1) {
    background-color: #ff7e77;
  }
  .category_list .open_ttl:nth-of-type(2) {
    background-color: #77c693;
  }
  .category_list .open_ttl:nth-of-type(3) {
    background-color: #f7a922;
  }
  .category_list .open_ttl span,
  .facility_list .open_ttl span {
    width: 54px;
    height: 54px;
    background-color: rgba(8, 8, 8, 0.08);
  }
  .category_list .open_ttl span::before,
  .category_list .open_ttl span::after {
    background-color: #fff;
  }
  .category_list--object {
    display: block;
    border-radius: 0 0 4px 4px;
    padding: 14px 14px 6px;
    margin-top: 0;
  }
  .category_list--object::before {
    display: none;
  }
  .category_list--object .cat_list li,
  .category_list--object .area_list li,
  .category_list--object .service_list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .category_list--object .cat_list a,
  .category_list--object .area_list a,
  .category_list--object .service_list a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-align: left;
  }
  .category_list--object#cat .icon {
    margin: 0 9px 0 0;
    width: 40px;
    height: 40px;
    background-color: #ffefe9;
    border-radius: 50%;
  }
  .category_list--object#cat .icon img {
    width: 48%;
  }
  .facility_list .open_ttl {
    padding-left: 14px;
    background-color: #51c6d4;
    color: #fff;
    font-family: "Hiragino UD Sans W6 JIS2004";
  }
  .facility_list .open_ttl span {
    position: relative;
  }
  .facility_list .open_ttl span::before,
  .facility_list .open_ttl span::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: none;
    width: 18px;
    height: 3px;
    background-color: #fff;
  }
  .facility_list .open_ttl span::before {
    transform: rotate(90deg) translateX(0);
  }
  .facility_list .open_ttl.select span::before {
    transform: rotate(0) translateX(0);
  }
  .facility_list--object {
    padding: 16px 12px;
    background-color: #e8f5f7;
  }
  .facility_list--object .facility_arc li,
  .footer--facility li {
    text-indent: -1.2em;
    padding-left: 1.8em;
    line-height: 1.3;
  }
  .facility_list--object .facility_arc li a::before,
  .footer--facility li a::before {
    margin-right: 4px;
    border-left-color: #51c6d4;
  }
  .facility_list--object .facility_arc li {
    width: 100%;
  }
}

/* ##############################################################################

    HEADER

############################################################################## */

/* header
**************************************** */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
  line-height: 1;
  z-index: 9990;
  transition: all 0.2s ease-out;
}
.header--main {
  padding-left: 2%;
}
.header--logo {
  margin-right: 16px;
  flex: 1;
}
.header--logo a:hover,
.footer--logo a:hover {
  opacity: 0.5;
}
.header--sub {
  padding: 5px 12px;
  background-color: transparent;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 2px,
    rgba(255, 239, 229, 0.5) 2px,
    rgba(255, 239, 229, 0.5) 4px
  );
}
.header--sub li:not(:last-child) {
  margin-right: 12px;
}
.header--sub a {
  display: inline-block;
  font-size: 72%;
  color: #524439;
  letter-spacing: normal;
}
.header--sub li a,
.footer--nav .translate a,
.footer--bottom ul li a {
  text-decoration: underline;
}
.header--sub li a:hover,
.footer--nav .translate a:hover,
.footer--bottom ul li a:hover {
  opacity: 0.5;
}
.header--sub li a::before,
.footer--nav .translate a::before,
.footer--bottom ul li a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-45deg) skew(12deg, 12deg) translate(2px, -2px);
  margin-right: 7px;
}

.fix_sns {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 9999;
  transition: all 0.4s ease-out;
}
.fix_sns-sm {
  top: 16%;
}
.fix_sns li:not(:last-child) {
  margin-bottom: 8px;
}
.fix_sns li a {
  display: block;
  width: 54px;
  border-radius: 4px 0 0 4px;
  transform: translateX(14px);
  transition: all 0.2s ease-out;
}
.fix_sns li a:hover {
  transform: translateX(0);
}
.fix_sns li:nth-child(1) a {
  background-color: #1877f2;
  font-size: 120%;
}
.fix_sns li:nth-child(2) a {
  background-color: #cd201f;
}
.fix_sns li:nth-child(3) a {
  background-color: #00b900;
  font-size: 120%;
}
.fix_sns li:nth-child(4) a {
  background-color: #009342;
}
.fix_sns li:nth-child(5) a {
  background-color: #fff;
}
.fix_sns li:nth-child(6) a {
  background-color: #f39800;
}
.fix_sns li img,
.fix_sns li i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 4px 0 0 4px;
}

/* gnav
**************************************** */
.gnav a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 90px;
  padding: 0 8px;
  font-size: 88%;
  letter-spacing: normal;
  background-color: #fff;
  transition: all 0.2s ease-out;
}
.gnav .current a {
  background-color: #faf1d8;
}
.gnav a:hover {
  background-color: #fdfaf3;
}
.gnav--list li {
  position: relative;
}
.gnav .gnav--list li:nth-child(-n + 4) a {
  width: 150px;
  letter-spacing: 0.05em;
}
.gnav .gnav--list li:nth-child(-n + 4) a::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 0;
  width: 0;
  height: 90%;
  border-left: 2px dotted #cecece;
}
.gnav a .icon {
  margin-bottom: 10px;
}
.gnav--contact a,
.gnav--recruit a {
  color: #fff;
  font-family: "Hiragino UD Sans W6 JIS2004";
  letter-spacing: 0.06em;
}
.gnav--contact a,
.gnav--contact.current a {
  background-color: #ff8332;
  border-right: 1px solid;
}
.gnav--recruit a {
  background-color: #008f4b;
}
.gnav--recruit a span {
  display: inline-block;
  padding-left: 0.5em;
}
.gnav--recruit a span::after {
  display: inline-block;
  margin-left: 4px;
  content: "\e907";
  font-family: "icomoon";
}
.gnav--contact a:hover {
  background-color: #fe6400;
}
.gnav--recruit a:hover {
  background-color: #00763e;
}
.snav {
  position: absolute;
  padding-top: 8px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-out;
  width: 13em;
  opacity: 0;
  pointer-events: none;
}
.snav li .snav {
  position: static;
  padding-top: 0;
  transform: translateX(0);
}
.gnav--list > li:hover .snav {
  opacity: 1;
  pointer-events: auto;
}
.snav--list {
  border-radius: 4px;
  box-shadow: 2px 2px 4px rgb(0, 0, 0, 0.2);
  background-color: #fff;
}
.snav li .snav--list {
  border-radius: 0;
  box-shadow: none;
}
.snav--list a {
  display: block;
  width: auto !important;
  height: auto !important;
  padding: 0.8em 1.2em !important;
  line-height: 1.4;
  background-color: transparent;
}
.snav li .snav--list a {
  padding: 0.8em 1.2em 0.8em 2.2em !important;
}
.snav .snav .snav .snav--list a {
  padding-left: 3.2em !important;
}
.snav li .snav--list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-bottom: 2px dotted #cecece;
}
.snav--list li:not(:last-child) a::before {
  top: inherit !important;
  bottom: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 10px) !important;
  height: 2px !important;
  border-bottom: 2px dotted #cecece;
}
.snav--list li:last-child a::before {
  display: none;
}

/* header-sm
**************************************** */
.header-sm {
  transform: translateY(-32px);
}
.header-sm .gnav a {
  height: 62px;
}
.header-sm .gnav .gnav--list li:nth-child(-n + 4) a {
  flex-direction: inherit;
  width: auto;
  padding: 0 12px;
}
.header-sm .gnav .gnav--list li:nth-child(-n + 4) .icon {
  width: 25px;
  margin-right: 6px;
  margin-bottom: 0;
}
.header-sm .gnav .gnav--contact a,
.header-sm .gnav .gnav--recruit a {
  width: 150px;
  flex-direction: row;
}
.header-sm .gnav .gnav--recruit a span {
  padding-left: 0;
}
.header-sm .gnav .gnav--contact a .icon,
.header-sm .gnav .gnav--recruit a .icon {
  width: 34px;
  margin-right: 8px;
  margin-bottom: 0;
}

/* HEADER SP
*************************************************** */
@media screen and (max-width: 767px) {
  .header--sub,
  .fix_sns {
    display: none;
  }
  .header--main {
    padding-left: 0;
  }
  .header--logo {
    max-width: 55%;
    width: 55%;
    margin-right: 0;
  }

  /* ---gnav --- */
  .gnav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    padding: 24px 5% 5%;
    pointer-events: none;
    transition: 0.4s ease-out;
    transform: translateX(100%);
    background-color: #fdfaf3;
    overflow-y: scroll;
  }
  .header.active .gnav {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
  }
  .gnav a {
    flex-direction: initial;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    padding: 12px;
    font-size: 107%;
    letter-spacing: 0.05em;
    border-bottom: 1px dashed #cecece;
    font-family: "Hiragino UD Sans W6 JIS2004";
  }
  .gnav a .icon {
    margin-bottom: 0;
    margin-right: 8px;
  }
  .gnav .gnav--list li:nth-child(-n + 4) a {
    width: 100%;
  }
  .gnav .gnav--list li:nth-child(-n + 4) a::before {
    display: none;
  }
  .gnav--contact {
    margin-top: 24px;
  }
  .gnav--contact a {
    max-width: 100%;
    justify-content: center;
    border-radius: 4px;
    border-bottom: none;
  }
  .gnav .gnav--contact a .icon {
    width: 40px;
    margin-right: 6px;
    margin-bottom: 0;
  }
  .gnav--search h3 {
    font-size: 107%;
  }
  .gnav--search h3 i {
    display: inline-block;
    transform: translateY(-2px);
  }
  .gnav--search .search_cat {
    margin-bottom: 8px;
  }
  .gnav--search .search_cat li {
    width: calc(100% / 3);
  }
  .gnav--search .search_cat li:not(:last-child) {
    border-right: 1px solid #fff;
  }
  .gnav--search .search_cat a,
  .gnav--search .search_facility a {
    display: block;
    padding: 0;
    color: #fff;
    text-align: center;
    line-height: 2.4;
    font-family: "Hiragino UD Sans W6 JIS2004";
    border-bottom: none;
  }
  .gnav--search .search_cat a {
    font-size: 94%;
  }
  .gnav--search .cat a {
    background-color: #ff7e77;
    border-radius: 4px 0 0 4px;
  }
  .gnav--search .area a {
    background-color: #77c693;
  }
  .gnav--search .service a {
    background-color: #f7a922;
    border-radius: 0 4px 4px 0;
  }
  .gnav--search .search_facility a {
    background-color: #51c6d4;
    border-radius: 4px;
    padding: 9px 12px 7px;
  }
  .gnav--search .search_facility a img {
    margin-right: 8px;
    vertical-align: sub;
  }
  .gnav_toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 49px;
    height: 49px;
    transition: all 0.2s ease-out;
  }
  .gnav_toggle.active {
    transform: rotate(180deg);
  }
  .gnav_toggle::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #524439;
    border-right: 2px solid #524439;
    transform: rotate(45deg);
  }
  .snav {
    position: static;
    width: 100%;
    padding-top: 0;
    font-size: 93.33%; /* 14px */
    transform: none;
    transition: none;
    opacity: 1;
    pointer-events: auto;
    display: none;
  }
  .snav--list {
    box-shadow: none;
  }
  .snav--list a {
    color: #867c75;
    padding-left: 44px !important;
    padding-right: 16px;
  }
  .snav--list a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    width: 0.5em;
    height: 1px;
    background-color: #867c75;
  }

  /* ---gnav_btn --- */
  .gnav_btn,
  .contact_btn {
    position: relative;
    width: 64px;
    height: 64px;
    background-color: #fff;
    padding-top: 5px;
    text-align: center;
    transition: all 0.4s ease-out;
  }
  .header.active .gnav_btn {
    background-color: #fdfaf3;
  }
  .gnav_btn::before,
  .contact_btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 90%;
    margin: auto;
    background-color: #ddd;
  }
  .gnav_btn::before {
    left: 0;
  }
  .contact_btn::before {
    right: 0;
  }
  .gnav_btn small,
  .contact_btn small {
    font-size: 66%;
    line-height: 1;
  }
  .gnav_btn--lines,
  .contact_btn .icon {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9c050;
    margin-left: auto;
    margin-right: auto;
  }
  .contact_btn .icon {
    background-color: #ff8332;
  }
  .gnav_btn--lines span {
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .gnav_btn--lines span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 16px;
    height: 2px;
    background-color: #fff;
  }
  .gnav_btn--lines span:nth-of-type(1) {
    top: 12px;
  }
  .gnav_btn--lines span:nth-of-type(2) {
    top: 48%;
  }
  .gnav_btn--lines span:nth-of-type(3) {
    bottom: 12px;
  }
  .header.active .gnav_btn--lines span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-45deg);
    transform: translateY(6px) rotate(-45deg);
  }
  .header.active .gnav_btn--lines span:nth-of-type(2) {
    opacity: 0;
  }
  .header.active .gnav_btn--lines span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
  }

  /* --- header-sm --- */
  .header-sm {
    transform: initial;
  }
  .header-sm .gnav a {
    height: auto;
  }
  .header-sm .gnav .gnav--list li:nth-child(-n + 4) a {
    padding: 12px;
  }
  .gnav .gnav--contact a,
  .header-sm .gnav .gnav--contact a {
    height: 62px;
  }
  .header-sm .gnav .gnav--contact a,
  .header-sm .gnav .gnav--recruit a {
    width: 100%;
  }
}

#fix_bnr {
  position: fixed;
  right: 0;
  top: calc(16% + 260px);
  z-index: 190;
  padding-left: 10px;
  transform: translateX(100%);
  transition: all 0.2s ease-out;
}
#fix_bnr a {
  background-color: #fcd593;
  display: block;
  padding: 0 18px 10px 20px;
  border-radius: 8px 0 0 8px;
}
#fix_bnr a:hover {
  background-color: #f6ac00;
}
#fix_bnr img {
  transform: translateY(-18px);
}
#fix_bnr .close,
#fix_bnr .open i.fa-angle-left {
  font-size: 164%;
  line-height: 30px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  background-color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
  border: 1px solid #ddd;
}
#fix_bnr .close {
  transform: translateX(160px) translateY(22px);
}
#fix_bnr .open i {
  text-indent: -0.03em;
}
#fix_bnr .close:hover {
  background-color: #ddd;
}
#fix_bnr .open {
  position: absolute;
  top: 36px;
  left: auto;
  right: 0;
  display: block;
  transition: all 0.2s ease-out;
  transform: translateX(100%);
  border-radius: 28px 0 0 28px;
  padding: 4px 10px 4px 5px;
  background-color: #fcd593;
}
#fix_bnr .open:hover i.fa-angle-left {
  background-color: #f18a07;
  border-color: #f18a07;
  color: #fff;
}
#fix_bnr.show {
  transform: translateX(0);
}
#fix_bnr.show .close {
  transform: translateX(-10px) translateY(22px);
  display: flex;
  justify-content: center;
  align-items: center;
}
#fix_bnr svg.close--icon {
  width: 16px;
}
#fix_bnr.show.hide,
#fix_bnr.hide {
  transform: translateX(100%);
}
#fix_bnr.show.hide .close,
#fix_bnr.hide .close {
  transform: translateX(160px) translateY(22px);
}
#fix_bnr.hide.show .open {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}

@media screen and (max-width: 767px) {
  #fix_bnr {
    display: none;
  }
}

/* ##############################################################################

    FOOTER

############################################################################## */
.sns {
  margin-bottom: 40px;
}
.sns .inner {
  width: 94%;
}
#sns_slide li {
  margin: 0 4px;
}
#sns_slide .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
#sns_slide .slick-dots button {
  -webkit-appearance: none;
  border: none;
  font-size: 0;
  background-color: #ddd;
  display: block;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}
#sns_slide .slick-dots .slick-active button {
  background-color: #ff8332;
}
.footer {
  padding-top: 58px;
}
.footer--logo {
  margin-bottom: 40px;
  font-family: "Hiragino UD Sans W6 JIS2004";
}
.footer--nav {
  margin-bottom: 60px;
}
.footer--nav .translate {
  font-size: 88%;
}
.footer--nav .translate li {
  margin: 0 8px;
}
.footer--nav .pages {
  width: calc(100% / 3);
  padding: 8px 20px;
  border-left: 1px dotted #777;
}
.footer--nav .pages:nth-child(3n) {
  border-right: 1px dotted #777;
}
.footer--nav .pages a {
  display: block;
  line-height: 1.6;
}
.footer--nav .pages a:hover {
  color: #ff8332;
}
.footer--nav .pages > li > a,
.footer--nav .pages .sub-menu li:not(:last-child) {
  margin-bottom: 12px;
}
.footer--nav .pages .sub-menu {
  padding-left: 0.4em;
}
.footer--nav .pages .sub-menu a {
  position: relative;
  padding-left: 26px;
  line-height: 1.35;
}
.footer--nav .pages .sub-menu a::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  display: block;
  width: 18px;
  height: 1px;
  background-color: #514439;
}

.footer--info {
  margin-bottom: 40px;
}
.footer--info li {
  width: 50%;
  padding: 14px 0;
  text-align: center;
}
.footer--info li:first-child {
  border-right: 2px dotted #ff8332;
}
.footer--info h3,
.footer--facility h3 {
  font-family: "Hiragino UD Sans W6 JIS2004";
  font-size: 111%;
}
.footer--facility h3 {
  font-size: 120%;
}
.footer--info .tel a,
.footer--info .fax {
  color: #ff8332;
  font-family: "UDDigiKyoLatin-Bold";
}
.footer--info .tel span,
.footer--info .fax span {
  display: inline-block;
  width: 50px;
  height: 26px;
  border-radius: 4px;
  margin-right: 8px;
  background-color: #fff;
  font-size: 88%;
}
.footer--facility {
  margin-bottom: 60px;
  padding: 50px 42px;
  background-color: #fff;
  border-radius: 4px;
}

.gmap {
  overflow: hidden;
  max-width: 1366px;
  width: 90%;
  height: 608px;
  margin: 0 auto 60px;
}
.gmap iframe {
  width: 100%;
  margin-top: -54px;
}

/* footer--bottom
*************************************************** */
.footer--bottom {
  padding: 18px 0;
  background-color: #fff;
}
.footer--bottom ul {
  font-size: 80%;
}
.footer--bottom ul li {
  margin-right: 18px;
}
.footer--bottom .pbl {
  text-align: right;
  line-height: 1.25;
  font-size: 80%;
}
.footer--bottom .pbl a {
  opacity: 0.5;
}

/* pagetop
*************************************************** */
.pagetop {
  width: 56px;
  height: 56px;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  background-color: #000;
  border-radius: 50%;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
}
.pagetop:hover {
  transform: translateY(-4px);
}
.pagetop::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: translateY(2px) rotate(-45deg);
}

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

/* FOOTER SP
*************************************************** */
@media screen and (max-width: 767px) {
  .footer--nav {
    margin-bottom: 22px;
  }
  .footer--nav .pages {
    width: 100%;
    flex-wrap: wrap;
    border-left: none;
  }
  .footer--nav .pages > li {
    width: 100%;
    padding: 8px 0;
    border-left: none;
  }
  .footer--nav .pages > li > a,
  .footer--nav .pages .sub-menu li:not(:last-child) {
    margin-bottom: 6px;
  }
  .footer--nav .pages:nth-child(3n) {
    border-right: none;
  }
  .footer--nav .pages li:last-child {
    border-right: none;
  }
  .footer--nav .pages a {
    padding: 0;
  }
  .footer--nav .pages a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #000;
    margin-right: 6px;
    vertical-align: middle;
    transform: translateY(-2px);
  }
  .footer--info {
    margin-bottom: 20px;
  }
  .footer--info li {
    width: 100%;
  }
  .footer--info li:first-child {
    border-right: none;
    border-bottom: 2px dotted #ff8332;
  }
  .footer--info li .add {
    margin-bottom: 8px;
  }
  .footer--info .tel,
  .footer--info .fax {
    font-size: 166%;
  }
  .footer--info .tel span,
  .footer--info .fax span {
    height: 32px;
    line-height: 36px;
    font-size: 70%;
    vertical-align: middle;
    transform: translateY(-2px);
  }
  .gmap,
  .gmap iframe {
    height: 420px;
    margin-bottom: 0;
  }
  .footer--bottom ul {
    margin-bottom: 12px;
  }
}

/* ##############################################################################

    INDEX

############################################################################## */

/* hero
*************************************************** */
.hero {
  position: relative;
  height: 720px;
  animation: bg-slider 200s linear infinite;
  background-position: center;
  background-size: cover;
}
.hero .post--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.hero--catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -95%);
  font-size: 422%;
  color: #fff;
  text-align: center;
  font-family: "Hiragino UD Sans W6 JIS2004";
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  z-index: 100;
}
.hero--catch_img {
  position: absolute;
  margin: auto;
  inset: 0;
  z-index: 1;
}
.hero--catch_img.hero_full {
  width: 100vw;
}
.hero--catch_img.hero_full img {
  width: 100%;
}
.hero--catch_img.hero_img_hgt img {
  height: 100%;
}
.hero--catch_img.hero_full.hero_img_hgt img {
  object-fit: cover;
}
.hero--catch_img img {
  object-fit: contain;
  object-position: center;
}
.hero--catch small {
  font-size: 89%;
}

@media screen and (max-width: 767px) {
  .hero {
    height: 400px;
    margin-bottom: 40px;
    background-size: auto 100%;
    background-image: url(../images/hero_sp.jpg);
  }
  .hero--catch {
    font-size: 12vw;
  }

  /* --- cta --- */
  .search_section + .cta {
    display: none;
  }
}

/* important_news 大切なお知らせ
*************************************************** */
.important_news {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 120px;
  background-color: #fff;
  border-radius: 6px;
  font-family: "Hiragino UD Sans W6 JIS2004";
}
.important_news--status {
  border-radius: 6px 0 0 6px;
  padding: 14px 28px 14px 0;
  background-color: #ff4d00;
  color: #fff;
  font-size: 111%;
}
.important_news--status .icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  font-size: 135%;
  background-color: #fff;
  border-radius: 50%;
  color: #ff4d00;
  border: 2px solid;
  text-align: center;
  line-height: 34px;
  margin-left: -14px;
  margin-right: 14px;
  vertical-align: middle;
  transform: translateY(-3px);
}
.important_news--status.important {
  background-color: #ff534a;
}
.important_news--status.important .icon {
  color: #ff534a;
}
.important_news--status.news-release {
  background-color: #0bb9ce;
}
.important_news--status.news-release .icon {
  color: #0bb9ce;
}
.important_news--status.guide {
  background-color: #00733c;
}
.important_news--status.guide .icon {
  color: #00733c;
}
.important_news .post {
  flex: 1;
  width: 70%;
  padding: 0 32px;
}
.important_news .post--date {
  margin-right: 18px;
  color: #ff534a;
}
.important_news .post--ttl {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.important_news .post .cat_list {
  display: none;
}
.important_news a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .important_news {
    width: 92%;
    bottom: 20px;
  }
  .important_news--status {
    border-radius: 6px 6px 0 0;
    padding: 9px 0 7px 10px;
  }
  .important_news--status .icon {
    width: 32px;
    height: 32px;
    font-size: 126%;
    line-height: 28px;
    margin-left: 0;
    margin-right: 6px;
    transform: translateY(-2px);
  }
  .important_news .post {
    width: 100%;
    padding: 15px 14px;
  }
  .important_news .post--date {
    margin-right: 8px;
    font-size: 94%;
  }
  .important_news .post--ttl {
    flex: 1;
    line-height: 1.5;
    font-size: 94%;
  }
}

/* home_search 施設を探す
*************************************************** */
#home_search {
  padding-bottom: 32px;
}

/* home_thought 和光会の想い
*************************************************** */
.home_thought {
  padding-top: 20px;
}
.home_thought .video_wrap {
  max-width: 960px;
  width: 100%;
  margin-top: 42px;
  margin-bottom: 54px;
  margin-left: auto;
  margin-right: auto;
}
.home_thought .video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.home_thought .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home_thought--links {
  margin-top: 100px;
}
.home_thought--links li {
  width: calc(100% / 4 - (24px * 3 / 4));
  margin-right: 24px;
}
.home_thought--links li:last-child {
  margin-right: 0;
}
.home_thought--links a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  border-radius: 4px;
  background-color: #f7a922;
  line-height: 1.5;
  color: #fff;
  font-size: 132%;
  font-family: "Hiragino UD Sans W6 JIS2004";
}
.home_thought--links a::before {
  content: "";
  position: absolute;
  top: -5%;
  left: 0;
  width: 9%;
  height: 110%;
  background-color: #fde5bc;
  opacity: 0.3;
  border-radius: 0 50% 50% 0;
  transition: all 0.4s ease-out;
}
.home_thought--links a:hover::before {
  width: 100%;
  border-radius: 0;
}
.home_thought--links a::after {
  content: "\e900";
  position: absolute;
  right: 12px;
  font-family: "icomoon";
  font-size: 70%;
}
.home_thought--links a span {
  width: 140px;
  text-align: center;
  border-bottom: 2px dotted;
}

@media screen and (max-width: 767px) {
  .home_thought {
    padding-bottom: 0;
  }
  .home_thought .video_wrap {
    margin-top: 26px;
    margin-bottom: 28px;
  }
  .home_thought--links {
    margin-top: 32px;
  }
  .home_thought--links li {
    width: 100%;
    margin-right: 0;
  }
  .home_thought--links li:not(:last-child) {
    margin-bottom: 14px;
  }
  .home_thought--links a {
    height: 76px;
  }
}

/* home_feature 和光会の特徴
*************************************************** */
.home_feature {
  background-position: center;
  background-size: cover;
  background-image: url(../images/bg_feature.jpg);
}
.home_feature .inner {
  position: relative;
}
.home_feature--list li {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
  padding: 30px 40px 30px 46px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}
.home_feature--list li .ttl {
  padding-left: 66px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 2px solid #ff9250;
  line-height: 1.45;
  font-family: "Hiragino UD Sans W6 JIS2004";
}
.home_feature--list li .num {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  padding-top: 10px;
  width: 90px;
  height: 64px;
  background-color: #f7a922;
  font-family: "UDDigiKyoLatin-Bold";
  font-size: 211%;
  text-align: center;
  color: #fff;
  border-radius: 4px 0 4px 0;
}
.home_feature--list li .ttl strong {
  font-size: 177%;
  color: #f7a922;
}
.home_feature--list li .ttl small {
  font-size: 133%;
}

@media screen and (max-width: 767px) {
  .home_feature--list li {
    padding: 0 24px 24px;
  }
  .home_feature--list li .ttl {
    padding-left: 0;
    padding-bottom: 14px;
    margin-bottom: 16px;
    text-align: center;
  }
  .home_feature--list li .num {
    position: static;
    display: block;
    padding-top: 8px;
    width: 88px;
    height: 52px;
    margin: 0 auto 8px;
    border-radius: 0 0 4px 4px;
  }
  .home_feature--list li .ttl strong {
    line-height: 1.8;
  }
  .home_feature--list li .ttl small {
    font-size: 120%;
    line-height: 1.25;
  }
}

/* home_know 和光会の取り組み
*************************************************** */
.home_know--list .img {
  background-color: #77c693;
}
.home_know--list li {
  flex: 1;
}
.home_know--list li:not(:last-child) .img {
  border-right: 1px solid #fff;
}
.home_know--list .img img {
  transition: all 0.4s ease-out;
}
.home_know--list a:hover .img img {
  opacity: 0.7;
}
.home_know--list .ttl {
  margin-top: 6px;
  height: 120px;
  font-size: 133%;
  text-align: center;
  font-family: "Hiragino UD Sans W6 JIS2004";
}
.home_know--list li:not(:last-child) .ttl {
  border-right: 1px solid #cecece;
}
.home_know--list .ttl .icon,
.home_know--list .ttl strong {
  display: block;
  transition: all 0.4s ease-out;
  transform: translateY(-60px);
}
.home_know--list .ttl .icon {
  margin-bottom: 8px;
}
.home_know--list a:hover .ttl .icon,
.home_know--list a:hover .ttl strong {
  transform: translateY(-68px);
}

@media screen and (max-width: 767px) {
  .home_know--list {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
  .home_know--list .img {
    position: relative;
    overflow: hidden;
    height: 200px;
  }
  .home_know--list li:not(:last-child) .img {
    border-right: none;
  }
  .home_know--list .img img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    transform: translateY(-40%);
  }
  .home_know--list li:not(:last-child) .ttl {
    border-right: none;
  }
  .home_know--list .ttl .icon,
  .home_know--list .ttl strong {
    transform: translateY(-20px);
  }
  .home_know--list .icon img {
    max-width: 70px;
  }
}

/* home_links
*************************************************** */
.home_snsiconwrap {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 120px;
  width: fit-content;
  margin-inline: auto;
}
.home_snswrap,
.other_cont {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}
.other_cont .sns_links {
  grid-row: 2;
}

.home_links .other_cont .sns_links li {
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .home_snsiconwrap {
    grid-template-columns: 100%;
    row-gap: 40px;
  }
}

.home_links {
  padding-bottom: 94px;
}
.home_links > .inner {
  padding: 46px 40px 54px;
  background-color: #fdfbf4;
  border-radius: 8px;
}
.home_links .blog_links {
  margin-bottom: 40px;
  text-align: center;
}
.home_links .sns_links li {
  text-align: center;
  width: 120px;
}
.home_links .sns_links li:not(:last-child) {
  margin-right: 40px;
}
.home_links .sns_links li i,
.home_links .sns_links li img {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 230%;
  color: #fff;
  line-height: 80px;
}
.home_links .sns_links li i.fa-facebook-f {
  background-color: #1877f2;
  font-size: 200%;
}
.home_links .sns_links li i.fa-instagram {
  background-color: #d93177;
}
.home_links .sns_links li i.fa-instagram2 {
  background-color: #d93161;
}
.home_links .sns_links li i.fa-twitter {
  background-color: #1da1f2;
}
.home_links .sns_links li i.fa-youtube {
  background-color: #cd201f;
}
.home_links .sns_links li i.fa-line {
  background-color: #00b900;
}
.home_links .sns_links li img {
  background-color: #fff;
}
.home_links .sns_links li span {
  display: block;
  margin-top: 8px;
  font-size: 80%;
  font-family: "Hiragino UD Sans W6 JIS2004";
  letter-spacing: 0.05em;
}
/*.home_links .sns_links li:nth-child(1) span { color: #1877f2; }
  .home_links .sns_links li:nth-child(2) span { color: #D93177; }
  .home_links .sns_links li:nth-child(3) span { color: #1DA1F2; }
  .home_links .sns_links li:nth-child(4) span { color: #cd201f; }*/
.home_links a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .home_links .blog_links li:not(:last-child) {
    margin-right: 24px;
  }
}
@media screen and (max-width: 767px) {
  .home_links > .inner {
    padding: 34px 21px 38px;
    border-radius: 4px;
  }
  .home_links .sns_links {
    width: 306px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
  }
  .home_links .sns_links li {
    width: calc(100% / 3 - (8px * 2 / 3));
    margin-bottom: 8px;
  }
  .home_links .sns_links li:not(:last-child) {
    margin-right: 8px;
  }
  .home_links .sns_links li i,
  .home_links .sns_links li img {
    display: inline-block;
    width: 50px;
    height: 50px;
    font-size: 160%;
    line-height: 50px;
  }
  .home_links .sns_links li i.fa-facebook-f {
    font-size: 140%;
  }
  .home_links .sns_links li span {
    margin-top: 5px;
  }
  .home_links .blog_links li:not(:last-child) {
    margin-bottom: 24px;
  }
}

/* home_pickup　ピックアップ
*************************************************** */
#home_pickup .search_content {
  transform: translateY(-48px);
}

.home_pickup .btn {
  min-width: 360px;
  padding: 19px 32px;
  font-size: 118%;
}
.pickup_list .post {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 16px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}
@media all and (-ms-high-contrast: none) {
  .pickup_list .post {
    display: block;
  }
}
.pickup_list .post .post--link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.pickup_list .post .img {
  position: relative;
  max-width: 400px;
  width: 100%;
  height: 270px;
  margin-bottom: 16px;
  background-size: cover;
  background-position: center;
}
.pickup_list .post .img::before,
.pickup_list .post .img::after {
  position: absolute;
  color: #fff;
  opacity: 0;
  transition: all 0.4s ease-out;
}
.pickup_list .post .img::before {
  content: "詳しく見る";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 38px;
  background-color: rgba(0, 0, 0, 0.5);
}
.pickup_list .post .img::after {
  top: 38%;
  left: 0;
  right: 0;
  margin: auto;
  content: "+";
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid;
  text-align: center;
  line-height: 31px;
  font-size: 150%;
}
.pickup_list .post:hover .img::before,
.pickup_list .post:hover .img::after {
  opacity: 1;
}
.pickup_list .post .txt {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 8px;
}
.pickup_list .post .ttl {
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 2px solid #ff9250;
  font-family: "Hiragino UD Sans W6 JIS2004";
  font-size: 111%;
  line-height: 1.6;
}
.pickup_list .post p {
  margin-bottom: 16px;
  line-height: 1.7;
}
.pickup_list .cat_list {
  margin-top: auto;
  margin-bottom: 8px;
}
.pickup_list .cat_list li {
  margin-right: 6px;
  margin-bottom: 6px;
}
.pickup_list .cat_list a {
  display: inline-block;
  border-radius: 4px;
  padding: 0 18px;
  min-width: 80px;
  background-color: #f4dfaa;
  font-size: 87%;
  text-align: center;
}
.pickup_list .post .date {
  color: #ff9250;
}

@media screen and (max-width: 767px) {
  .home_pickup .inner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .home_pickup--list {
    display: block;
    width: 100%;
  }
  .home_pickup--list .slick-list {
    width: 92%;
    margin-right: auto;
    margin-left: auto;
  }
  .pickup_list .post {
    margin: 0 8px;
  }
  .pickup_list .post .img {
    height: 174px;
  }
  .home_pickup--list .slick-dots {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  .home_pickup--list .slick-dots li {
    display: inline-block;
    margin: 0 4px;
  }
  .home_pickup--list .slick-dots button {
    -webkit-appearance: none;
    border: none;
    font-size: 0;
    width: 8px;
    height: 12px;
    display: inline-block;
    background-color: #999;
    border-radius: 50%;
    outline: 0;
  }
  .home_pickup--list .slick-dots .slick-active button {
    background-color: #000;
  }
  .home_pickup .btn {
    min-width: 90%;
  }
}

/* home_news お知らせ
*************************************************** */
.home_news--list {
  padding: 40px 60px;
  background-color: #fdfbf4;
}
.home_news .arc_link i,
.homenursingcare_news .arc_link i {
  margin-right: 14px;
  color: #51c6d4;
  font-size: 88%;
}
.home_news .arc_link a:hover,
.homenursingcare_news .arc_link a:hover {
  opacity: 0.5;
}
.home_news .btn img {
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .home_news--list {
    padding: 8px 12px 24px;
    margin-left: -2%;
    margin-right: -2%;
  }
  .home_news .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
    line-height: 1.4;
  }
  .home_news .btn img {
    margin-right: 16px;
  }
}

/* home_recruit 採用情報
*************************************************** */
.home_recruit {
  display: flex;
}
.home_recruit::before,
.home_recruit::after {
  content: "";
  min-height: 100%;
  background-position: center;
  background-size: cover;
  flex: 1%;
}
.home_recruit::before {
  background-image: url(../images/bg_recruit_l.jpg);
}
.home_recruit::after {
  background-image: url(../images/bg_recruit_r.jpg);
}
.home_recruit--inner {
  max-width: 720px;
  width: 100%;
  min-height: 600px;
  margin: 0 auto;
  background-image: url(../images/common/pt_beige_fabric.jpg);
}
.home_recruit .btn {
  min-width: 360px;
}
.home_recruit .btn-green {
  padding: 24px 32px;
  font-size: 118%;
}
.home_recruit .btn-green::after {
  transform: translateY(-55%);
  content: "\e907";
  font-size: 100%;
}

@media screen and (max-width: 767px) {
  .home_recruit--inner {
    min-height: auto;
  }
  .home_recruit .btn {
    min-width: 90%;
  }
}

/* home_chara 和光会グループ公式キャラクターのご紹介
*************************************************** */
.home_chara {
  padding-top: 60px;
  padding-bottom: 40px;
}
.home_chara .section_ttl .jp {
  font-size: 111%;
  padding-bottom: 40px;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-image: url(../images/home_chara_txt.png);
}

@media screen and (max-width: 767px) {
  .home_chara .section_ttl .jp {
    width: 85%;
    margin: 0 auto;
    background-size: 100%;
  }
}

/* ##############################################################################

    PAGE

############################################################################## */

/* flow
*************************************************** */
.page-flow .main_column {
  padding-bottom: 80px;
}
.flow-lists {
  counter-reset: num 0;
}
.flow-list {
  position: relative;
  border: solid 1px #000;
  counter-increment: num;
}
.flow-list:not(:last-child) {
  margin-bottom: 80px;
}
.flow-list:not(:last-child)::before,
.flow-list:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
}
.flow-list:not(:last-child)::before {
  width: 1px;
  height: 24px;
  background: #0c0431;
  bottom: -52px;
}
.flow-list:not(:last-child)::after {
  width: 17px;
  height: 17px;
  bottom: -50px;
  border-top: 1px solid #0c0431;
  border-right: 1px solid #0c0431;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.flow-list .imgarea {
  width: 320px;
  background-size: cover;
  background-position: center;
}
#flow-01 .imgarea {
  background-image: url(https://via.placeholder.com/600x600.png?text=DUMMY);
}
#flow-02 .imgarea {
  background-image: url(https://via.placeholder.com/600x600.png?text=DUMMY);
}
#flow-03 .imgarea {
  background-image: url(https://via.placeholder.com/600x600.png?text=DUMMY);
}
#flow-04 .imgarea {
  background-image: url(https://via.placeholder.com/600x600.png?text=DUMMY);
}
#flow-05 .imgarea {
  background-image: url(https://via.placeholder.com/600x600.png?text=DUMMY);
}
.flow-list .txtarea {
  width: calc(100% - 320px);
  padding: 64px;
}
.flow-list .txtarea h3::before {
  content: counter(num, decimal-leading-zero) ". ";
}

/* --- fixside --- */
.fixside li {
  counter-increment: num;
}
.fixside a::before {
  content: counter(num, decimal-leading-zero) ". ";
}
.fixside a.active {
  color: #de6800;
  transform: translateX(8px);
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .page-flow .main_column,
  .page-flow .side_column {
    padding-bottom: 40px;
  }
  .flow-list .imgarea {
    width: 100%;
    height: 200px;
  }
  .flow-list .txtarea {
    width: 100%;
    padding: 24px;
  }
}

/* search
*************************************************** */
.archive-search .search_content {
  box-shadow: none;
  padding: 0;
  max-width: 100%;
  width: 100%;
}
.archive-search .search_content .section_ttl {
  transform: translateY(0);
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .archive-search .category_list--object#service .child {
    display: block;
  }
  .archive-search .category_list--object#service .child li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .archive-search .category_list--object#service a {
    justify-content: flex-start;
  }
  .archive-search .facility_list--object ul {
    margin-bottom: 18px;
  }
  .archive-search .facility_list--object li {
    text-indent: 0;
    padding-left: 0;
  }
  .archive-search .category_list--object#service > li h3,
  .archive-search .facility_list--object > li h3 {
    margin-bottom: 16px;
  }
  .facility_list--object .facility_arc li h3::after {
    border-bottom-color: #c9e7ea;
  }
  .archive-search .facility_list--object li a::before {
    top: 2px;
  }
}

/* contact
*************************************************** */
.page-medical .page_ttl,
.page-care .page_ttl,
.page-disabled .page_ttl,
.page-child .page_ttl {
  padding-top: 50px;
  padding-bottom: 60px;
}
.page-contact .cta--contact_links li {
  width: calc(100% / 2 - (22px * 1 / 2));
  margin-bottom: 18px;
}
.page-contact .cta--contact_links li:nth-child(2n) {
  margin-right: 0;
}
.page-contact .cat--tel {
  margin-bottom: 24px;
}
.contact--txt,
.contact--tel,
.contact--tel a {
  color: #fff;
  position: relative;
}
.contact--tel {
  margin-bottom: 24px;
}
.contact--tel .tel_txt {
  font-size: 200%;
}
.contact--form {
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .page-contact .cta--contact_links li {
    width: 100%;
    margin-bottom: 12px;
  }
}

/* thanks
*************************************************** */
.page-thanks .page_ttl,
.page-404 .page_ttl {
  padding: 80px 0 112px;
  background-color: #faf1d8;
}
@media screen and (max-width: 767px) {
  .page-thanks .inner.txt-ctr {
    text-align: left;
  }
}

/* 404
*************************************************** */
.page-404 .content-404 p {
  margin-bottom: 40px;
  font-size: 115%;
}
@media screen and (max-width: 767px) {
  .page-404 .content-404 p {
    margin-bottom: 24px;
    font-size: 100%;
  }
}

/* sitemap
*************************************************** */
.sitemap a:hover {
  color: #fe6400;
}
.sitemap--menu {
  column-count: 3;
  gap: 5%;
}
.sitemap .pages > li {
  margin-bottom: 1rem;
  page-break-inside: avoid;
  break-inside: avoid;
}
.sitemap .pages > li:not(:last-child) {
  margin-right: 10%;
}
.sitemap .pages > .page_item > a {
  margin-bottom: 12px;
  display: inline-block;
}
.sitemap .pages .children li {
  margin-bottom: 8px;
  font-size: 93%;
}
.sitemap .pages .children a,
.sitemap .posts ul li a,
.sitemap .service li a {
  position: relative;
  display: inline-block;
  padding-left: 24px;
}
.sitemap .pages .children a::before,
.sitemap .posts ul li a::before,
.sitemap .service li a::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 16px;
  height: 1px;
  background-color: #ccc;
  display: inline-block;
}
.sitemap .posts,
.sitemap .service {
  padding: 0 18px;
}
.sitemap .posts .heading-4 {
  background-color: #f5f5f5;
  padding: 8px 16px 8px 12px;
  border-left: 4px solid #aaa;
}
.sitemap .posts > li {
  margin-bottom: 20px;
}
.sitemap .posts ul li,
.sitemap .service li {
  margin-bottom: 14px;
  font-size: 93%;
}
.sitemap .posts ul li a,
.sitemap .service li a {
  display: inline-block;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .sitemap--menu {
    column-count: 2;
  }
}

/* SDGs
*************************************************** */
#talk-slider {
  width: 1200px;
}
#talk-slider .slick-arrow {
  position: absolute;
  top: 50%;
  left: -70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-60%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: #ff8332;
  transition: all 0.4s ease-out;
}
#talk-slider .slick-arrow:hover {
  opacity: 0.7;
}
#talk-slider .slick-arrow::before {
  content: "";
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(135deg);
}
#talk-slider .slick-next {
  left: auto;
  right: -70px;
}
#talk-slider .slick-next::before {
  transform: rotate(-45deg);
}
#talk-slider .post {
  position: relative;
  margin: 0 16px;
  transition: all 0.4s ease-out;
}
#talk-slider .post:hover {
  opacity: 0.7;
}
#talk-slider .post--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#talk-slider .post .img {
  height: 230px;
  background-position: center;
  background-size: cover;
}
#talk-slider .post .heading-2 small {
  display: block;
  margin-bottom: 8px;
  color: #ff7e77;
  text-align: center;
  font-size: 100%;
}

@media screen and (max-width: 767px) {
  #talk-slider {
    width: 100%;
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  #talk-slider .slick-arrow {
    left: 0;
  }
  #talk-slider .slick-next {
    left: auto;
    right: 0;
  }
  #talk-slider .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #talk-slider .slick-dots li {
    padding: 0;
    margin: 0 4px;
  }
  #talk-slider .slick-dots li::before {
    display: none;
  }
  #talk-slider .slick-dots button {
    border-radius: 50%;
    border: none;
    padding: 0;
    width: 12px;
    height: 12px;
    background-color: #ddd;
    font-size: 0;
  }
  #talk-slider .slick-dots .slick-active button {
    background-color: #ff8332;
  }
  #talk-slider .post {
    margin: 0;
  }
  #talk-slider .post .img {
    height: 200px;
  }
}

/* ##############################################################################

    ARCHIVE

############################################################################## */

/* main_column
**************************************** */
.main_column {
  flex: 1;
  margin-right: 60px;
}

@media screen and (max-width: 1100px) {
  .main_column {
    width: 100%;
    margin-right: 0;
  }
}

/* side_column
**************************************** */
.side_column {
  width: 284px;
}
.side_section:not(:last-child) {
  margin-bottom: 64px;
}
.side--ttl {
  font-size: 120%;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 16px;
}
.side--ttl small {
  font-size: 62%;
  opacity: 0.5;
  letter-spacing: 0.15em;
  display: block;
  line-height: 1;
  margin-top: 8px;
}

/* --- post --- */
.posts-side .post:not(:last-child) {
  margin-bottom: 16px;
}
.posts-side .post--img {
  margin-right: 16px;
  border-radius: 3px;
  width: 64px;
  height: 64px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.posts-side .txtarea {
  flex: 1;
}
.posts-side .post--date {
  margin-bottom: 0;
}
.posts-side .post--ttl {
  line-height: 1.4;
}

/* --- archive --- */
.side_column .archive_list--ttl {
  margin-bottom: 4px;
  cursor: pointer;
}
.side_column .archive_list--ttl::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: translateY(-2px) rotate(135deg);
  transition: 0.4s ease-out;
}
.side_column .archive_list--ttl.active::after {
  transform: translateY(2px) rotate(-45deg);
}
.side_column .archive_month {
  display: none;
}

@media screen and (max-width: 1100px) {
  .side_column {
    width: 100%;
  }
}

/* --- archive-pulldown --- */
.archive-pulldown {
  position: relative;
  margin-left: auto;
  z-index: 1;
}
.archive-pulldown .archive_list {
  position: relative;
  font-size: 92%;
}
.archive-pulldown .archive_list:not(:last-child) {
  margin-right: 24px;
}
.archive-pulldown .archive_list a {
  display: block;
  padding: 2px 16px;
  text-align: left;
}
.archive-pulldown .archive_list a:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.archive-pulldown .archive_list--label {
  margin-right: 8px;
}
.archive-pulldown .archive_list--btn {
  cursor: pointer;
  border: none;
  outline: none;
  appearance: none;
  padding: 8px 54px 8px 32px;
  background-color: #fff;
  border: 1px solid #ccc;
}
.archive-pulldown .archive_list--btn::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 10px;
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  transition: 0.2s ease-out;
  transform-origin: 50% 50%;
}
.archive-pulldown .active .archive_list--btn::after {
  top: 14px;
  transform: rotate(225deg);
}
.archive-pulldown .archive_list--menu {
  position: absolute;
  z-index: 1;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-out;
}
.archive-pulldown .active .archive_list--menu {
  visibility: visible;
  opacity: 1;
}

/* news
**************************************** */

.archive-news .page_ttl,
.single-news .page_ttl {
  background-image: url(../images/page_ttl/01_search_ttl.jpg);
}

/* --- news--archive --- */
.news--archive {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #111;
}
.news--archive li {
  margin-left: 8px;
  margin-right: 8px;
}
.news--archive a {
  color: #fff;
}

/* --- news_list --- */
.news_list .post {
  padding: 16px 28px;
  margin-bottom: 0;
  border-bottom: 1px solid #dedede;
}
.news_list .cat_list {
  margin-right: 16px;
}
.news_list .cat_list li:not(:last-child) {
  margin-bottom: 8px;
}
.news_list .cat_list a,
.news--info .cat_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 30px;
  border-radius: 4px;
  background-color: #eee;
  font-size: 88%;
  line-height: 1;
  letter-spacing: normal;
}
.news_list .cat_list a.info,
.news--info .cat_list a.info {
  background-color: #ffbfbc;
}
.news_list .cat_list a.event,
.news--info .cat_list a.event {
  background-color: #cfe3e5;
}
.news_list .cat_list a.recruit,
.news--info .cat_list a.recruit {
  background-color: #cddbb2;
}
.news_list .cat_list a.training,
.news--info .cat_list a.training {
  background-color: #f4dfaa;
}
.news_list .cat_list a.sdgs,
.news--info .cat_list a.sdgs {
  background-color: #ffca96;
}
.news_list .post--date {
  width: 160px;
  margin-right: 8px;
}
.news_list .post--ttl {
  flex: 1;
  font-family: "Hiragino UD Sans W6 JIS2004";
}
.news_list a[href="javascript:void(0);"],
.news_list a[href="javascript:void(0);"]::before {
  color: inherit;
  cursor: inherit;
  opacity: 1;
  text-decoration: none;
}
.news_list a {
  display: inline-flex;
  align-items: center;
}
.news_list a:hover {
  opacity: 0.5;
}
.news_list a[target="_blank"]::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-new_tab.png);
}

@media screen and (max-width: 767px) {
  .news_list .post {
    flex: auto;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 16px 8px;
  }
  .news_list .post--date {
    width: auto;
    margin-right: 0;
    margin-bottom: 8px;
  }
  .news_list .cat_list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-right: 0;
  }
  .news_list .cat_list li:not(:last-child) {
    margin-right: 4px;
  }
  .news_list .cat_list a,
  .news--info .cat_list a {
    width: auto;
    height: 25px;
    font-size: 79%;
    padding: 0 14px;
  }
  .news_list .post--ttl {
    flex: auto;
    width: 100%;
    margin-top: 8px;
  }
}

/* search
**************************************** */
.archive-search .cat_nav li {
  width: calc(100% / 5 - (12px * 4 / 5));
}
.archive-search .cat_nav li:not(:last-child) {
  margin-right: 12px;
}
.archive-search .cat_nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 24px;
  border-radius: 28px;
  background-color: #514439;
  color: #fff;
  text-align: center;
}
.archive-search .cat_nav li a::after {
  content: "\e902";
  display: inline-block;
  font-family: "icomoon";
}
.archive-search .cat_nav li a:hover {
  background-color: #2f1a12;
}
.posts-facility .post {
  position: relative;
  padding: 24px;
  background-color: #faf1d8;
  border-radius: 6px;
  transition: all 0.4s ease-out;
}
.posts-facility .post:hover,
.posts-facility .post:hover a {
  color: #ff8332;
}
.posts-facility .post:not(:last-child) {
  margin-bottom: 24px;
}
.posts-facility .img {
  position: relative;
  width: 400px;
  height: 280px;
  background-position: center;
  background-size: cover;
  background-color: #fff;
  border-radius: 6px;
}
.posts-facility .img.no-img {
  background-size: auto;
  background-repeat: no-repeat;
  background-image: url(../images/common/no-img.png);
}
.posts-facility .txt {
  flex: 1;
  margin-left: 24px;
}
.posts-facility .more_btn {
  margin-top: auto;
}
.posts-facility .more_btn a {
  color: #ff8332;
}
.posts-facility .more_btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.posts-facility .more_btn a::after {
  content: "";
  display: inline-block;
  border: 6px solid transparent;
  border-left: 8px solid;
  margin-left: 8px;
  vertical-align: baseline;
}
.posts-facility .more_btn.out_link a::after {
  content: "\e907";
  font-family: "icomoon";
  border: none;
  border-left: none;
  margin-left: 5px;
  font-size: 111%;
  line-height: 1;
  vertical-align: middle;
  transform: translateY(-2px);
}
.posts-facility .heading-1 {
  flex: 1;
  margin-bottom: 8px;
  font-size: 200%;
  line-height: 1.35;
}
.posts-facility table {
  width: 100%;
  margin-bottom: 16px;
}
.posts-facility table tr {
  border-bottom: 2px dotted #fbbe2f;
}
.posts-facility table th,
.posts-facility table td {
  padding: 10px 8px;
  line-height: 1.4;
}
.posts-facility table th {
  width: 160px;
  text-align: left;
}
.posts-facility table th i {
  margin-right: 2px;
  vertical-align: bottom;
}
.posts-facility .icons li {
  padding: 4px 12px;
  background-color: #77c693;
  border-radius: 4px;
  margin-right: 4px;
  margin-bottom: 4px;
  font-size: 93%;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .archive-search .cat_nav {
    justify-content: flex-start;
  }
  .archive-search .cat_nav li {
    width: calc(100% / 2 - (12px * 1 / 2));
    margin-bottom: 12px;
  }
  .archive-search .cat_nav li:nth-child(2n) {
    margin-right: 0;
  }
  .archive-search .cat_nav li a {
    padding: 12px 10px 12px 16px;
  }
  .posts-facility .post {
    padding: 18px 16px 16px;
  }
  .posts-facility .post .flex {
    align-items: flex-start;
  }
  .posts-facility .img {
    width: 100%;
    height: 45vw;
    margin-bottom: 8px;
  }
  .posts-facility .heading-1 {
    font-size: 5.5vw;
    margin-bottom: 8px;
  }
  .posts-facility table {
    width: 100%;
    margin-left: 0;
  }
  .posts-facility table th,
  .posts-facility table td {
    padding: 8px 5px;
  }
  .posts-facility table th {
    width: auto;
    white-space: nowrap;
  }
  .posts-facility table th i {
    width: 21px;
    display: inline-block;
  }
  .posts-facility table td {
    padding-left: 0;
  }
  .posts-facility .icons li {
    padding: 2px 9px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
  .posts-facility .txt {
    margin-left: 0;
    height: auto;
  }
}

/* talk
**************************************** */
.posts-talk .post {
  position: relative;
  display: flex;
  flex-direction: column;
}
.posts-talk .post .post--link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
}
.posts-talk .post:hover .post--link {
  opacity: 0.5;
}
.posts-talk .post .heading-2 + p {
  margin-bottom: 10px;
}
.posts-talk .post .more {
  color: #ff8332;
  margin-top: auto;
}
.posts-talk .post .more::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid;
  border-bottom: 2px solid;
  transform: rotate(-45deg) translateY(-4px);
  margin-right: 4px;
}

@media screen and (max-width: 767px) {
  .posts-talk .post .heading-2 br {
    display: none;
  }
}

/* ##############################################################################

    SINGLE

############################################################################## */

/* wp-pagenavi
**************************************** */
.wp-pagenavi {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
}
.wp-pagenavi .pages {
  width: 100%;
  margin-bottom: 8px;
  text-align: center;
}
.wp-pagenavi .current,
.wp-pagenavi a {
  position: relative;
  max-width: 42%;
  display: inline-block;
  vertical-align: top;
  color: #fff;
  background-color: #524439;
  line-height: 1.4;
  padding: 8px 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 8px;
  margin-bottom: 8px;
}
.wp-pagenavi .current {
  color: #514439;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-bottom: 40px;
  }
}

/* facility
**************************************** */
.single-search .page_ttl {
  padding: 0;
  background-color: transparent;
  text-align: left;
}
.single-search .page_ttl .page_ttl-jp {
  margin-top: 8px;
  margin-bottom: 32px;
  text-align: center;
  color: #524439;
}
.single-search .page_ttl .cat_list li:not(:last-child) {
  margin-right: 8px;
}
.single-search .page_ttl .cat_list a,
.single-search .page_ttl .cat_list .target span {
  display: inline-block;
  border-radius: 28px;
  background-color: #524439;
  padding: 0.2em 1.5em;
  color: #fff;
}
.single-search .page_ttl .service_list a {
  background-color: #008f4b;
}
.single-search .page_ttl .cat_list .target span {
  background-color: #ff8332;
}
.single-search .page_ttl .icon_list {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.single-search .page_ttl .icon_list li {
  margin: 0 8px;
  text-align: center;
}
.single-search .page_ttl .icon_list span {
  display: block;
  margin-top: 6px;
  font-size: 88%;
  letter-spacing: 0.02em;
  color: #524439;
  font-family: "Hiragino UD Sans W6 JIS2004";
}
.single-search .page_ttl .slick-slide img.pc-none {
  display: none;
}

.facility_info .column + .img_and_txt,
.facility_info .img_and_txt + .column {
  margin-top: 56px;
}

/* --- 目次 --- */
.anchor_list {
  padding: 32px 8px 18px;
  background-color: #ffebea;
}
.anchor_list li {
  margin-bottom: 14px;
  line-height: 1;
}
.anchor_list li:not(:last-child) {
  border-right: 1px solid;
}
.anchor_list li a {
  padding: 0 24px;
  font-family: "Hiragino UD Sans W6 JIS2004";
}

/* --- サービス概要 --- */
.service--col {
  position: relative;
  padding: 40px 0;
  border-radius: 6px;
}
.service--col:not(:last-child) {
  margin-bottom: 56px;
}
.service--col .icon {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-block;
  transform: translateY(-45%) translateX(-50%);
}
.service--col .txt {
  flex: 1;
  margin-left: 32px;
}
.service--col .txt p:not(.editor-ttl3) {
  margin-bottom: 0;
  line-height: 1.8;
}
.service--col .txt:only-child {
  padding-top: 24px;
}
.service--col .txt:only-child .editor-ttl3 {
  text-align: center;
}

/* --- ご利用料金 --- */
.fee--contents .cel .ttl {
  font-size: 200%;
  text-align: center;
  color: #ff9250;
  font-family: "Hiragino UD Sans W6 JIS2004";
  border-bottom: 2px solid;
  margin-bottom: 38px;
  padding-bottom: 18px;
  line-height: 1.3;
}
.fee--contents .cel .btn {
  min-width: 400px;
  font-size: 123%;
}

/* --- よくある質問 --- */
.faq--contents dt,
.faq--contents dd {
  position: relative;
  padding-top: 18px;
  padding-left: 100px;
  padding-right: 70px;
  padding-bottom: 15px;
}
.faq--contents dt {
  background-color: #ffbfbc;
  font-size: 155%;
  font-family: "Hiragino UD Sans W6 JIS2004";
  border-radius: 6px 6px 0 0;
  margin-top: 24px;
  line-height: 1.35;
}
.faq--contents dt::after {
  content: "";
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  border: 14px solid transparent;
  border-left: 18px solid #333;
  font-size: 0;
}
.faq--contents dd {
  padding-top: 24px;
  padding-bottom: 24px;
  border: 1px solid #ffa4a0;
  border-radius: 0 0 6px 6px;
  line-height: 1.5;
}
.faq--contents dt::before,
.faq--contents dd::before {
  position: absolute;
  top: 0;
  left: 22px;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 56px;
  height: 56px;
  background-color: #fff;
  border-radius: 50%;
  font-family: "UDDigiKyoLatin-Bold";
  line-height: 59px;
  font-size: 122%;
  text-align: center;
}
.faq--contents dt::before {
  content: "Q";
  color: #ff7e77;
  border: 1px solid;
  background-color: #fff;
  font-family: "UDDigiKyoLatin-Bold";
}
.faq--contents dd::before {
  content: "A";
  background-color: #ff7e77;
  color: #fff;
  font-size: 177%;
}

/* --- 概要・アクセス --- */
.overview_contents {
  margin-bottom: 64px;
}
.overview_contents table {
  flex: 1;
  width: calc(100% - 440px);
  margin: 0 40px 0 0 !important;
}
.overview_contents table.table_only {
  width: 100%;
  margin: 0 !important;
}
.overview_contents table td p {
  margin-bottom: 0;
}
.access_contents .access_table th.access_table--cel span {
  display: inline-block;
  font-size: 150%;
  color: #333;
  line-height: 70px;
}
.access_contents .access_table th.access_table--cel img {
  max-width: 70px;
  margin-right: 14px;
}
.access_contents .map {
  margin-top: 64px;
  height: 600px;
  border-radius: 6px;
  overflow: hidden;
}
.access_contents .map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  /* --- ページ上部 --- */
  .single-search .page_ttl .cat_list li {
    width: 100%;
  }
  .single-search .page_ttl .cat_list li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 8px;
  }
  .single-search .page_ttl .cat_list li a,
  .single-search .page_ttl .cat_list .target span {
    display: block;
    width: 100%;
    padding: 8px;
    text-align: center;
  }
  .single-search .page_ttl .cat_list .target {
    margin-bottom: 8px;
  }
  .single-search .page_ttl .icon_list {
    flex-wrap: wrap;
  }
  .single-search .page_ttl .icon_list li {
    width: calc(100% / 3 - (16px * 2 / 3));
    margin-left: 0;
    margin-right: 16px;
    margin-bottom: 16px;
  }
  .single-search .page_ttl .icon_list li:nth-child(3n) {
    margin-right: 0;
  }
  .single-search .page_ttl .icon_list li img {
    max-width: calc(120px / 1.5);
  }
  .single-search .page_ttl .icon_list span {
    line-height: 1.3;
  }
  .single-search .page_ttl .slick-slide img.sp-none {
    display: none;
  }
  .single-search .page_ttl .slick-slide img.pc-none {
    display: block;
  }
  .single-search .page_ttl::after {
    display: none;
  }
  .facility_info .about p br {
    display: none;
  }

  /* --- 目次 --- */
  .anchor_list {
    padding: 24px 14px 8px;
  }
  .anchor_list li {
    width: 100%;
    margin-bottom: 14px;
    border-bottom: 2px dotted rgba(255, 125, 119, 0.3);
  }
  .anchor_list li:not(:last-child) {
    border-right: 0;
  }
  .anchor_list li a {
    padding: 0 6px 14px;
    display: block;
  }
  .anchor_list li a::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid #ff7e77;
    border-bottom: 1px solid #ff7e77;
    transform: rotate(-45deg) translate(2px, -2px);
    margin-right: 8px;
  }

  /* --- 概要 --- */
  .service--col .img {
    margin-top: 8px;
    margin-bottom: 16px;
  }
  .service--col .txt {
    width: 100%;
    margin-left: 0;
  }
  .service--col .txt .editor-ttl3 {
    text-align: center;
  }

  .facility_info .column + .img_and_txt,
  .facility_info .img_and_txt + .column {
    margin-top: 24px;
  }

  /* --- ご利用料金 --- */
  .fee--contents .cel .btn {
    min-width: 90%;
  }

  /* --- よくある質問 --- */
  .faq--contents dt,
  .faq--contents dd {
    padding-top: 14px;
    padding-left: 54px;
    padding-right: 32px;
    padding-bottom: 14px;
  }
  .faq--contents dt {
    padding-top: 16px;
    font-size: 107%;
  }
  .faq--contents dd {
    padding-top: 16px;
    padding-bottom: 14px;
  }
  .faq--contents dt::before,
  .faq--contents dd::before {
    top: 11px;
    left: 12px;
    bottom: auto;
    width: 32px;
    height: 32px;
    line-height: 34px;
  }
  .faq--contents dt::before,
  .faq--contents dd::before {
    font-size: 120%;
  }
  .faq--contents dt::after {
    right: 3px;
    width: 0;
    height: 8px;
    border: 8px solid transparent;
    border-left: 12px solid #333;
  }

  /* --- アクセス・概要 --- */
  .access_contents .box-wh.inner {
    width: 100%;
  }
  .overview_contents table {
    width: 100%;
    margin: 0 0 24px !important;
  }
  .access_contents > table.access_table {
    width: 100%;
  }
  .overview_contents table th,
  .overview_contents table td,
  .access_contents .access_table th.access_table--cel,
  .access_contents .access_table td.access_table--cel {
    display: block;
    padding: 16px 8px !important;
  }
  .overview_contents table th,
  .access_contents .access_table th.access_table--cel {
    padding-bottom: 0 !important;
  }
  .overview_contents table td,
  .access_contents .access_table td.access_table--cel {
    padding-top: 0.5em !important;
  }
  .access_contents .access_table th.access_table--cel img {
    max-width: 46px;
    margin-right: 4px;
  }
  .access_contents .access_table th.access_table--cel span {
    line-height: 1.5;
    vertical-align: middle;
  }
  .access_contents .map {
    height: 310px;
  }
}

/* talk
**************************************** */
.single-talk .page_ttl {
  height: 680px;
}
.single-talk .page_ttl::before {
  background-color: rgba(0, 0, 0, 0.25);
}
.single-talk .page_ttl-jp {
  margin-bottom: 28px;
}
.single-talk .page_ttl-jp + p {
  position: relative;
  color: #fff;
}
.talk_profile {
  position: relative;
  margin-top: 62px;
  padding: 40px 20px;
  background-color: #fff;
}
.talk_profile li {
  flex: 1;
  text-align: left;
}
.talk_profile li:not(:last-child) {
  margin-right: 38px;
}
.talk_profile .txt {
  flex: 1;
}
.talk_profile .name {
  font-size: 111%;
}
.talk_profile li p {
  line-height: 1.3;
  font-size: 78%;
}
.talk_profile .img {
  width: 140px;
  height: 140px;
  margin-right: 14px;
  border-radius: 50%;
  background-position: center;
}
.talk_section:not(:last-child) {
  padding-bottom: 0;
}
.talk_section .talk:nth-child(even) {
  flex-direction: row-reverse;
}
.talk_section .talk:not(:last-of-type) {
  margin-bottom: 32px;
}
.talk_section .talk dt {
  width: 140px;
  margin-right: 18px;
  text-align: center;
  line-height: 1;
}
.talk_section .talk dt > * {
  display: block;
  margin: 0 auto;
}
.talk_section .talk dt .thumbnail {
  overflow: hidden;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 12px;
  border: none;
  background-position: center;
}
.talk_section .talk dt .name {
  font-size: 88%;
}
.talk_section .talk dd {
  flex: 1;
  background-color: rgba(157, 120, 96, 0.15);
  border: 1px solid rgba(157, 120, 96, 0.1);
  border-radius: 2px;
  padding: 34px;
  margin-right: 157px;
  line-height: 1.7;
}
.talk_section .talk:nth-child(even) dd {
  background-color: rgba(157, 120, 96, 0.08);
  margin-left: 157px;
  margin-right: 0;
}
.talk_section--img {
  margin-top: 80px;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .single-talk .page_ttl {
    height: 390px;
  }
  .talk_profile {
    margin-top: 20px;
    padding: 0 8%;
  }
  .talk_profile > .inner {
    width: 100%;
  }
  .talk_profile li {
    width: 100%;
  }
  .talk_profile li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 18px;
  }
  .talk_profile li p {
    font-size: 100%;
  }
  .talk_profile .img {
    width: 100px;
    height: 100px;
    background-size: cover;
  }
  .talk_section .talk:nth-child(even) {
    flex-direction: column;
  }
  .talk_section .talk:not(:last-of-type) {
    margin-bottom: 12px;
  }
  .talk_section .talk dt {
    display: flex;
    align-items: center;
    width: 100%;
    margin-right: 0;
    background-color: rgba(157, 120, 96, 0.15);
    border-top: 1px solid rgba(157, 120, 96, 0.1);
    border-left: 1px solid rgba(157, 120, 96, 0.1);
    border-right: 1px solid rgba(157, 120, 96, 0.1);
    border-radius: 2px 2px 0 0;
    text-align: left;
    padding: 20px 20px 0;
  }
  .talk_section .talk:nth-child(even) dt {
    background-color: rgba(157, 120, 96, 0.08);
  }
  .talk_section .talk dt .thumbnail {
    width: 60px;
    height: 60px;
    background-size: cover;
    margin: 0 12px 0 0;
  }
  .talk_section .talk dt .name {
    font-size: 100%;
    margin: 0;
  }
  .talk_section .talk dd {
    width: 100%;
    padding: 20px;
    margin-right: 0;
    border-top: 0;
    border-radius: 0 0 2px 2px;
  }
  .talk_section .talk:nth-child(even) dd {
    margin-left: 0;
  }
  .talk_section--img {
    height: 140px;
  }
}

/* pass
**************************************** */
.single .pass {
  width: 100%;
}
.single .pass p:first-child {
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .single .pass p:first-child {
    text-align: left;
  }
}

/* ##############################################################################

    FORMY

############################################################################## */
#formy_form table {
  width: 100%;
}
#formy_form th,
#formy_form td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: solid 1px #eee;
}
#formy_form tr:last-of-type th,
#formy_form tr th[rowspan="6"],
#formy_form tr th[rowspan="10"],
#formy_form tr:last-of-type td {
  border-bottom: none;
}
#formy_form th {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
  width: 34%;
  font-family: "Hiragino UD Sans W6 JIS2004";
}
#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form table textarea {
  width: 100%;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  vertical-align: bottom;
}
#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form select,
#formy_form textarea {
  margin: 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 100%;
}
#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"] {
  height: 54px;
}
#formy_form textarea {
  height: 200px;
}
#formy_form select {
  height: 54px;
}
#formy_form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#formy_form input:hover {
  opacity: 0.7;
}
#formy_form textarea:hover {
  opacity: 0.7;
}
#formy_form input:focus {
  outline: none;
}
#formy_form .parsley-validated {
  background-color: #eee;
}
#formy_form .parsley-error {
  background-color: #fee;
}
#formy_form .parsley-success {
  background-color: #fff;
}
.help_text {
  font-size: 87%;
  color: #999;
}
.hidden_help {
  display: none;
}
.formy_privacy div {
  overflow-y: scroll;
  height: 140px;
  border: solid 1px #ccc;
  font-size: 87%;
  padding: 8px 16px;
}
.requiredIcon {
  background: #d00;
  color: #fff;
  margin: 0 0 0 1em;
  font-size: 80%;
  padding: 2px 5px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  float: right;
}
#formy_btn {
  padding-top: 32px;
  text-align: center;
}
#formy_btn input {
  min-width: 400px;
  padding: 24px 32px;
  margin-right: 4px;
  margin-left: 4px;
  border: none;
  border-radius: 40px;
  color: #fff;
  font-size: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-color: #ff8332;
  transition: all 0.4s ease-out;
  font-family: "Hiragino UD Sans W6 JIS2004";
  letter-spacing: 0.08em;
}
#formy_form ul li input[type="radio"],
#formy_form ul li input[type="checkbox"] {
  display: none !important;
}
#formy_form ul li label {
  height: 40px;
  line-height: 40px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 8px 0 40px;
  cursor: pointer;
}
#formy_form ul li label:hover {
  opacity: 0.7;
}
#formy_form ul li label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #788b93;
  left: 16px;
  top: 12px;
}
#formy_form ul li input[type="radio"] + label::before {
  border-radius: 10px;
}
#formy_form ul li input[type="radio"]:checked + label,
#formy_form ul li input[type="checkbox"]:checked + label {
  color: #e75f5f;
  font-weight: bold;
}
#formy_form ul li input[type="radio"]:checked + label::before,
#formy_form ul li input[type="checkbox"]:checked + label::before {
  border-color: #e75f5f;
}
#formy_form ul li input[type="radio"]:checked + label::after,
#formy_form ul li input[type="checkbox"]:checked + label::after {
  content: "";
  width: 10px;
  height: 18px;
  top: 4px;
  left: 20px;
  border-right: 2px solid #e75f5f;
  border-bottom: 2px solid #e75f5f;
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.formy_confirm {
  background-color: #4dbaff;
}
.formy_submit_disabled {
  background-color: #ccc;
}
#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}
.autoConfirmBack {
  background-color: #aaa;
}
.formy_send {
  background-color: #ff8332;
}
#total_required {
  padding: 16px;
  color: #ff9426;
  text-align: center;
}

/* --- contact form 7 --- */
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item {
  position: relative;
  display: block;
  margin-left: 0;
  margin-bottom: 10px;
  padding-left: 34px;
  line-height: 1.4;
}
.wpcf7-checkbox .wpcf7-list-item input[type="checkbox"],
.wpcf7-radio .wpcf7-list-item input[type="radio"] {
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 21px;
  height: 21px;
  margin: 0 4px 0 0;
}
#formy_form .has-free-text .wpcf7-free-text {
  margin-top: 8px;
  width: 100%;
  height: 44px;
}

/* --- お問い合わせ --- */
.page-contact.page-care #formy_form th,
.page-contact.page-disabled #formy_form th,
.page-contact.page-child #formy_form th {
  width: auto;
}
#formy_form .form_q {
  border-bottom: 2px solid #aaa;
  padding-left: 4px;
  padding-bottom: 4px;
  margin-bottom: 18px;
  font-family: "Hiragino UD Sans W6 JIS2004";
  font-size: 118%;
}
#formy_form .form_q .requiredIcon {
  font-size: 74%;
}
#formy_form .form_a {
  padding: 0 16px;
  margin-bottom: 40px;
}

/* --- ボランティア募集 --- */
.inline-check .wpcf7-checkbox .wpcf7-list-item {
  display: inline-block;
  width: 49%;
}
.inline-check .wpcf7-checkbox .wpcf7-list-item.has-free-text {
  width: 100%;
}
.inline-check.time .wpcf7-checkbox .wpcf7-list-item {
  width: 33.3%;
}
.page-volunteer #formy_form td .your-age {
  vertical-align: -webkit-baseline-middle;
}
.page-volunteer #formy_form td .your-age input[type="text"] {
  display: inline-block;
  width: 200px;
}

.wpcf7-response-output {
  display: none;
}

.recaptcha_policy {
  padding: 0;
  margin: 24px 0 0;
  text-align: center;
  font-size: 11px !important;
  color: #444 !important;
}
.recaptcha_policy a {
  font-size: 11px !important;
  color: #111 !important;
  text-decoration: underline;
}
.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (max-width: 767px) {
  #formy_form {
    padding: 0 16px;
  }
  #formy_form th,
  #formy_form td {
    display: block;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }
  #formy_form th {
    border-bottom: none;
    padding-bottom: 6px;
    white-space: normal;
    font-weight: bold;
  }
  #formy_form td {
    padding-top: 0;
  }
  #formy_btn {
    padding-top: 8px;
  }
  #formy_btn input {
    min-width: 100%;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    background-size: contain;
    background-position: center;
  }
  .autoConfirmBack {
    margin-bottom: 8px;
  }
  #formy_form table input[type="text"],
  #formy_form table input[type="email"],
  #formy_form table input[type="tel"],
  #formy_form table input[type="date"],
  #formy_form table input[type="password"],
  #formy_form select,
  #formy_form textarea {
    font-size: 16px; /* iOSでズーム防止 */
  }

  #formy_form .form_q {
    position: relative;
    padding-right: 42px;
    padding-bottom: 8px;
    line-height: 1.3;
  }
  #formy_form .form_q .requiredIcon {
    position: absolute;
    top: 1px;
    right: 0;
  }
}
