@charset "utf-8";
/*
Theme Name: サイトタイトル
Theme URI:
Description:
Author:
Version: 1.0
License:
License URI:
Tags:
*/
/*-----------------------------------------------------
@@ Reset
------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
  line-height: 1.5em;
}
html {
  height: 100%;
}
body {
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word;
  overflow-wrap : break-word;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  /*overflow-x: hidden;*/
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
  max-width: 100%;
}
:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #__next {
  isolation: isolate;
}

/* For modern browsers */
.clearfix:before,.clearfix:after,.cf:before,.cf:after{
  content:"";
  display:table;
}
.clearfix:after,.cf:after{clear:both;}
.clearfix,.cf{zoom:1;}/* For IE 6/7 (trigger hasLayout) */

ul{
  padding: 0;
}

/*-----------------------------------------------------
@@ 基本
------------------------------------------------------*/
:root {
  --primary-color: #8c6239;
  --text-color: #333;
  --form-border: #777777;
  --red-color: #ea5504;
  --h2-color: #f8a532;
  
}
a {
  color: var(--text-color);
  text-decoration: none;
  transition-duration: 0.3s;
}
a:hover {
  color: var(--red-color);
}
a:hover img {
  transition-duration: 0.1s;
}

html {
  color: var(--text-color);
  background: white;
  block-size: 100%;
  -webkit-text-size-adjust: none;
}
body {
  font-size: 16px;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', 'メイリオ', sans-serif;
  background-color: white;
  overflow-y: scroll;
  min-height: 100dvh;
}

#layer {
  display: none;
}
@media screen and (max-width: 767.9px) {/* @@ sm xs 767px以下(スマホ) */
  #layer {
      position: fixed;
      /*z-index: 500;*/
      background: #000000;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      filter: alpha(opacity=0);
      opacity: 0.0;
      display: none;
  }
}

/*-----------------------------------------------------
@@ ヘッダ
------------------------------------------------------*/
@media screen and (min-width: 768px) {

  header#page-header {
    width: 1200px;
    margin : 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

  }



  .wrap-headermenu {
  }
  #headermenu {
    max-width: 1200px;
    margin: 0 auto;
  }

  #headermenu-btn {display: none;}

  ul.headermenu-list {
    font-size: 0;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
  }
  ul.headermenu-list > li {
    padding : 5px 40px;
    margin : 35px 0;
    font-size: 16px;
    list-style-type: none;
    font-weight: bold;
  }
  ul.headermenu-list > li > a {
    line-height: 40px;
    text-align: center;
    color: var(--red-color);
    text-decoration: none;
  }
  ul.headermenu-list > li > a:hover {
    text-decoration: underline;
  }
  .menuline{
        border-right: 1px solid var(--red-color);
        border-left: 1px solid var(--red-color);

  }

}/* PC ここまで */
@media screen and (max-width: 767.9px) {

  .wrap-header {
    background-color: white;
  }
  header#page-header {
    z-index: 900;
  }

  header#page-header h1 {
  }
  header#page-header h1 a {
  }
  .wrap-headermenu {
  }

  #headermenu-btn {
    display: block;
    width: 50px;/*★*/
    height: 50px;/*★*/
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    border: 1px solid #a0a0a0;
    border-radius: 6px;
    cursor: pointer;
    margin-bottom: 20px;
    z-index: 1000;
  }
  #headermenu-btn span {
    position: absolute;
    display: block;
    width: 70%;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    left: 0;
    right: 0;
    margin: auto;
    transition: all .3s;
  }
  #headermenu-btn span:first-child {
    top: 22%;
  }
  #headermenu-btn span:nth-child(2) {
    top: 0;
    bottom: 0;
    opacity: 1;
  }
  #headermenu-btn span:nth-child(3) {
    bottom: 22%;
  }
  #headermenu-btn.clicked span:first-child {
    transform: rotate(45deg);/*★*/
    top: 46%;
  }
    #headermenu-btn.clicked span:nth-child(2) {
    opacity: 0;
  }
  #headermenu-btn.clicked span:nth-child(3) {
    transform: rotate(-45deg);/*★*/
    bottom: 46%;
  }

  #headermenu {
    display: none;  /* 最初は非表示 */
    z-index: 1000;
    position: absolute;
    width: 100%;
    background-color: white;
    padding: 1em 0.5em;
    border-bottom: 1px solid #333;
  }

  .headermenu-list {
    font-size: 0;
    list-style-type: none;
    /*width: 320px;*/
    margin: 0;
  }
  .headermenu-list > li {
    font-size: 16px;
    line-height: 1.25;
    border-top: 1px dotted #707070;
    text-align: left;
  }
  .headermenu-list > li:last-child {
    border-bottom: 1px dotted #707070;
  }
  .headermenu-list > li > a {
    display: block;
    padding: 0.5em 1.75em 0.5em 0.5em;
    text-decoration: none;
    color: #333;
    background-color: white;
    position: relative;
  }
  .headermenu-list > li > a:hover {
    background-color: #ccc;
  }
  .headermenu-list > li > a:before {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-top: 3px solid #999;
    border-right: 3px solid #999;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.75em;
    margin: auto;
    transition-duration: 0.3s;
  }
  .headermenu-list > li > a:hover:before {
    right: 0.6em;
  }

}/* スマホ ここまで */


/*-----------------------------------------------------
@@ フッタ
------------------------------------------------------*/
#page-footer{

  width: 100%;
  background-color: #ffffff;  /*フッタ背景色*/
  padding: 30px 0 15px 0;;
  color : var(--primary-color);
}
#page-footer p{
  margin: 0;
}

#page-footer .phone{
  display: inline-block;
  background: url(./images/footericon-phone.png) no-repeat 0 3px;
  padding-left : 16px;
}
#page-footer .mail{
  display: inline-block;
  background: url(./images/footericon-mail.png) no-repeat 0 4px;
  padding-left : 18px;
}

  #page-footer .name , #page-footer .namesub{
    font-weight: bold;
  }


/* PC ここから-------------------------------- */
@media (min-width: 768px) {

  #page-footer .inner{
    width: 1000px;
    margin : 0 auto;
  }
  #page-footer .address{
    font-size: 14px;
  }
  #page-footer .name{
    font-size: 24px;
  }


  .copyright{
      font-size: 12px;
      text-align: center;
      padding-top:20px;
  }

}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {

  #page-footer{
    padding : 20px;
  }
  #page-footer .address{
    font-size: 14px;
  }
  #page-footer .name{
    font-size: 20px;
  }
  .copyright{
      font-size: 12px;
      text-align: center;
      padding-top:20px;
  }
}
/* スマホ ここまで-------------------------------- */







/*	Maas	*/

 .maas span{
  font-size: 18px;
 }

 .maas figure{
  margin : 10px 0;
 }

 .maas h1 span{
  color : var(--primary-color);

 }

/* PC ここから-------------------------------- */
@media (min-width: 768px) {

  .bgpadding{
    padding : 100px 0;
  }
}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {
	.pc{display:none;}

}
/* スマホ ここまで-------------------------------- */

/* Maas  ここまで */





/*	about	*/

/* PC ここから-------------------------------- */
@media (min-width: 768px) {

  .about figure{
    width: 160px;
    float: right;
    margin : -50px 0 5px 30px;
  }
  
}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {

  .about figure{
    width: 60%;
    margin : 0 auto 10px auto;
  }


}
/* スマホ ここまで-------------------------------- */

/* about  ここまで */









/*	activity	*/

/* PC ここから-------------------------------- */
@media (min-width: 768px) {

  .activity .city{
    width: 15%;
  }

  .activity .area{
    width: 85%;
  }
  .activity figure{
    width: 320px;
    float: right;
    margin : 0px 0 5px 40px;
  }


  .activity .inner{
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .activity .inner .left{
    width: 540px;
  }
  .activity .inner .right{
    width: 300px;
  }
  .activity .inner .right img{
    width: 100%;
  }

  .activity .pj{
    margin-bottom: 50px!important;
  }


}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {

  .activity .city{
    width: 25%;
  }

  .activity .area{
    width: 75%;
  }


  .activity .right{
    margin-bottom: 40px;
  }

  
}
/* スマホ ここまで-------------------------------- */

/* activity  ここまで */







/*	donation	*/

/* PC ここから-------------------------------- */
@media (min-width: 768px) {


  .donation{
    margin : 0 auto 100px auto;
    width: 880px;
    padding : 50px 60px;
    color : var(--primary-color);
    border-radius: 8px;
  }
  .donation{
    background: #fbddcd url(./images/donation_bg.png) 100% 100% no-repeat;
  }

  .donation .ttl{
      color : var(--red-color);
      padding-left : 45px;
      font-size: 28px;
      line-height: 1;
      margin-bottom: 25px;
  }

  .donation .link{
    width: 650px;
    margin : 30px auto auto;
  }
  .donation .link img{
    width: 100%;
  }


}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {

  .donation .ttl{
      color : var(--red-color);
      padding-left : 45px;
      font-size: 22px;
      line-height: 1.3;
      margin-bottom: 25px;
  }
  .donation{
    margin : 0 auto 80px auto;
    width: 100%;
    padding : 25px 30px;
    color : var(--primary-color);
    border-radius: 8px;
  }
  .donation{
    background: #fbddcd url(./images/donation_bg.png) 100% 70% no-repeat;
    background-size: 60% auto;
  }
  
}
/* スマホ ここまで-------------------------------- */

/* donation  ここまで */






/*	alignment	*/

/* PC ここから-------------------------------- */
@media (min-width: 768px) {

  .alignment .inner , .introduction .inner{
    width:100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .alignment .inner .left , .introduction .inner .left {
    width: 500px;
  }
  .alignment .inner .right , .introduction .inner .right{
    width: 320px;
  }


  .alignment-ttl{
    font-size: 18px;
    color : var(--red-color);
    margin-bottom: 30px;
  }


  
}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {

  .alignment-ttl{
    font-size: 18px;
    color : var(--red-color);
    margin-bottom: 10px;
  }
  .alignment .right{
    margin-bottom: 40px;
  }
  
}
/* スマホ ここまで-------------------------------- */

/* alignment  ここまで */

/*-----------------------------------------------------
@@ メイン
------------------------------------------------------*/
.contents-full {
  width: min(100%, 1200px);
  margin: 0 auto;
  text-align: left;
}
.contents-normal {
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
  text-align: left;
}
@media screen and (min-width: 768px) {
}/* PC ここまで */
@media screen and (max-width: 767.9px) {
}/* スマホ ここまで */


/*-----------------------------------------------------
@@ 段落
------------------------------------------------------*/
p{
  margin-bottom: 1em;
}
p.indent1{
  text-indent: -1em;
  margin-left: 1em;
}

p.err-box{
  color: red;
  border: 1px solid red;
  padding: 8px;
}


/*-----------------------------------------------------
@@ IME制御（WinIEのみ）等
------------------------------------------------------*/
.imeon  {ime-mode: active;}
.imeoff {ime-mode: disabled;}


.nowrap {white-space: nowrap;}

@media screen and (min-width: 768px) {
  .sp, .smp {display: none !important;}
}
@media screen and (max-width: 767.9px) {
  .pc {display: none !important;}
}



/*-----------------------------------------------------
@@ レスポンシブ対策
------------------------------------------------------*/
video, object {
  max-width: 100%;
  height: auto;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}
/* YouTube等のiframeを囲む
<div class="video169"><iframe>...</iframe></div> 16:9の場合
<div class="video34"><iframe>...</iframe></div> 4:3の場合
*/
.video169, .video34 {
  width:100%;
  height: auto;
  position: relative;
}
.video169 {aspect-ratio: 16 / 9;}
.video34  {aspect-ratio: 4 / 3;}

.video169 iframe, .video34 iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* @@ Googleマップ */
.gmap {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0 auto 20px;
}
.gmap iframe,.gmap object,.gmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width:767.9px){
  .gmap {
    /*height: 300px;*/
    margin: 0 auto 10px;
  }
}


/*-----------------------------------------------------
@@ 共通
------------------------------------------------------*/
@media (min-width: 768px) {

}/* PC ここまで================================ */
@media screen and (max-width: 767.9px) {

}/* スマホ ここまで============================ */


/* @@ なんか */


/*-----------------------------------------------------
@@ index インデックス トップページ
------------------------------------------------------*/


/*-----------------------------------------------------
@@ 
------------------------------------------------------*/


/*-----------------------------------------------------
@@ 
------------------------------------------------------*/




/*-----------------------------------------------------
@@ フォーム
------------------------------------------------------*/
form {
  vertical-align:baseline;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: white;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"] {
  border: 1px solid var(--form-border);
  padding: 4px;
  margin: 2px 4px 2px 0;
  font-size: 16px;
  line-height: 1.5;
}
select{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  max-width: 100%; 
  padding: 4px 2.5em 4px 4px;
  margin: 2px 4px 2px 0;
  outline: none;
  border: 1px solid var(--form-border);
  background: white url(images/arrow-select.png) no-repeat right 8px top 50%;
  background-size: 15px 15px;
}
select::-ms-expand {
  display: none;
}
select option {
  font-weight: normal;
}

textarea{
  overflow: auto;/* 内容が少ないのに薄くスクロールバーが出る事への対策。IEのみ  */
  resize: vertical;
}

textarea:focus,
select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus {
  border: 1px solid var(--form-border);
  background-color: #ffe9ec;
  /*box-shadow:0px 0px 0px 2px rgba(58, 169, 255, .3);*/
}

input[type="submit"],
input[type="button"],
button {
  border: 1px solid var(--form-border);
  padding: 10px 16px;
  font-size: 16px;
  line-height: 1.2;
  overflow:visible;
  background-color: #eeeeee;
  color: #333;
}
input[type="submit"]:hover,
button:hover {
  cursor: pointer;
}
input[type="submit"]:disabled,
button:disabled {
  cursor: not-allowed;
  color: #ccc;
}

label{
  font-size: 16px;
  margin-right: 1em;
  cursor: pointer;
  position: relative;
}

::placeholder{
  color: #999;
}


/* @@ チェックボックス、ラジオ */
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type='checkbox'],
  input[type='radio'] {
    --active: #eb3434;
    --active-inner: #fff;
    --focus: 2px rgba(58, 169, 255, .3);
    --border: #777777;
    --border-hover: #349beb;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 2px 0;
    padding: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    -webkit-transition: background .3s, border-color .3s, box-shadow .2s;
    transition: background .3s, border-color .3s, box-shadow .2s;
    font-family: Arial;
  }
  input[type='checkbox']:after,
  input[type='radio']:after {
    content: '';
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s), -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
  }
  input[type='checkbox']:checked,
  input[type='radio']:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  input[type='checkbox']:disabled,
  input[type='radio']:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: .9;
  }
  input[type='checkbox']:disabled:checked,
  input[type='radio']:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  input[type='checkbox']:disabled + label,
  input[type='radio']:disabled + label {
    cursor: not-allowed;
  }
  input[type='checkbox']:hover:not(:checked):not(:disabled),
  input[type='radio']:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  /*input[type='checkbox']:focus,
  input[type='radio']:focus {
    box-shadow: 0 0 0 var(--focus);
  }*/
  input[type='checkbox']:not(.switch),
  input[type='radio']:not(.switch) {
    width: 21px;
  }
  input[type='checkbox']:not(.switch):after,
  input[type='radio']:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type='checkbox']:not(.switch):checked,
  input[type='radio']:not(.switch):checked {
    --o: 1;
  }
  input[type='checkbox'] + label,
  input[type='radio'] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    margin-left: 4px;
  }
  input[type='checkbox']:not(.switch) {
    border-radius: 4px;
  }
  input[type='checkbox']:not(.switch):after {
    width: 6px;
    height: 10px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    -webkit-transform: rotate(var(--r, 20deg));
            transform: rotate(var(--r, 20deg));
  }
  input[type='checkbox']:not(.switch):checked {
    --r: 43deg;
  }
  input[type='checkbox'].switch {
    width: 38px;
    border-radius: 11px;
  }
  input[type='checkbox'].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    -webkit-transform: translateX(var(--x, 0));
            transform: translateX(var(--x, 0));
  }
  input[type='checkbox'].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  input[type='checkbox'].switch:disabled:not(:checked):after {
    opacity: .6;
  }

  input[type='radio'] {
    border-radius: 50%;
  }
  input[type='radio']:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    -webkit-transform: scale(var(--s, 0.7));
            transform: scale(var(--s, 0.7));
  }
  input[type='radio']:checked {
    --s: .5;
  }
}

/*-----------------------------------------------------
@@ お問い合わせ
------------------------------------------------------*/

input[type="submit"].btn-01, input[type="button"].btn-01, button.btn-01 {
  font-size: 24px;
  line-height: 1;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 14px 40px 15px;
  margin: 0;
  color: var(--text-color);
  background-color: white;
  border: 1px solid var(--text-color);
  text-decoration: none;
}
.btn-01:hover {
  color: var(--text-color);
  background-color: #b4cfd4;
}
.form-btn-01 {
  width: min(100% - 40px, 777px);
  margin: 30px auto;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  column-gap: 8px; /* 横方向の余白 */
  position: relative;
}

.box-btn-01 {
  text-align: center;
}

/*.wpcf7-response-output {
  width: min(100% - 40px, 777px);
  margin: 0 auto !important;
}*/
.wpcf7-list-item input[type='checkbox']{
  margin: 0 4px 0 0;
}
.wpcf7-spinner {
  margin: 0 !important;
  position: absolute !important;
  top: 0;
  right: 0;
}

/*-----------------------------------------------------
@@ 
------------------------------------------------------*/


/*-----------------------------------------------------
@@ 
------------------------------------------------------*/



/*-----------------------------------------------------
@@ WordPress純正のページネーション
------------------------------------------------------*/

ul.page-numbers {
  font-size: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 4px; /* 横方向の余白 */
  row-gap: 4px; /* 縦方向の余白 */
  margin: 0 auto 60px;
}
.page-numbers > li {
  font-size: 14px;
  line-height: 1;
  margin: 2px 0;
}
.page-numbers > li > a,
.page-numbers > li > span {
  border-radius: 4px;
  padding: 3px 8px;
  display: block;
  text-decoration: none;
  padding: 0.5em 0.75em 0.6em;
}
.page-numbers > li > a {
  border: 1px solid var(--text-color);
  font-weight: 500;
  color: white;
  background-color: var(--text-color);
}
.page-numbers > li > a:hover {
  opacity: 0.8;
}
.page-numbers > li > span {
  border: 1px solid var(--text-color);
  font-weight: 700;
  background-color: white;
  color: var(--text-color);
}
.page-numbers > li > span.current {
  border: 1px solid #f9642c;
  font-weight: 700;
  background-color: #f9642c;
  color: white;
}

/*-----------------------------------------------------
@@ for WordPress
http://hijiriworld.com/web/wp-native-css/
------------------------------------------------------*/
.single-waku strong { font-weight: bold; }
.single-waku em { font-style: italic; }
.single-waku blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}
.alignright { float: right; }
.alignleft { float: left; }

img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}

.entry p{
  line-height: 2;
}


/* ｛All in One SEO」の管理バーへの表示を隠す */
#wp-admin-bar-aioseo-main {
  display: none !important;
}

/*-----------------------------------------------------
@@ ページトップへ戻る
------------------------------------------------------*/
#page_top {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 0;
  bottom: -100%;/* 表示領域の外（下）へ */
  opacity: 0.8;
}
#page_top a {
  display: block;
  width: 40px;
  height: 40px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: var(--primary-color) url(images/arrow02.png) no-repeat 50% 50%;
  background-size: contain;
}

/*-----------------------------------------------------
@@ Google ReCAPTCHA
------------------------------------------------------*/
.grecaptcha-badge { visibility: hidden; }
.p-recaptcha {
  font-size: 13px;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .p-recaptcha {
    text-align: left;
  }
}























.bg{
  background:#fcf9e3;
}


.headermenu-bg{
  background:#f8e6db;

}

h1{
  border-left : 5px solid var(--red-color);
  color : var(--primary-color);
  padding-left : 10px;
  line-height: 1;
}
.h1-20{
  margin-bottom: 20px!important;

}

h2{
  color : var(--h2-color);
  padding-left : 10px;
  line-height: 1;
  height: 30px;
}

h2 span{
  color : var(--primary-color);
  font-size : 18px;
  font-weight: normal;
}

h3{
  color : var(--red-color);
  font-size: 18px;
  line-height: 1;
  margin-bottom: 10px;
}

.icon{
  padding-left : 35px;
}

.icon_aisatsu{
  background: url(./images/icon/aisatsu_icon.png) 0 0 no-repeat;
  background-size: auto 30px;
}
.icon_hospital{
  background: url(./images/icon/hospital_icon.png) 0 0 no-repeat;
  background-size: auto 30px;
}
.icon_soshiki{
  background: url(./images/icon/soshiki_icon.png) 0 0 no-repeat;
  background-size: auto 30px;
}
.icon_akusyu{
  background: url(./images/icon/akusyu_icon.png) 0 0 no-repeat;
  background-size: auto 30px;
}
.icon_syorui{
  background: url(./images/icon/syorui_icon.png) 0 0 no-repeat;
  background-size: auto 30px;
}
.icon_ichi{
  background: url(./images/icon/ichi_icon.png) 0 0 no-repeat;
  background-size: auto 30px;
}
.icon_book{
  background: url(./images/icon/book_icon.png) 0 0 no-repeat;
  background-size: auto 30px;
}

.icon_kihu{
  background: url(./images/icon/kihu_icon.png) 0 0 no-repeat;
  background-size: auto 30px;
}
.icon_douga{
  background: url(./images/icon/douga_icon.png) 0 0 no-repeat;
  background-size: auto 30px;
}
.icon_radio{
  background: url(./images/icon/radio_icon.png) 0 0 no-repeat;
  background-size: auto 30px;
}

.icon_mail{
  background: url(./images/icon/mail_icon.png) 0 0 no-repeat;
  background-size: auto 30px;
}
.icon_pencil{
  background: url(./images/icon/pencil_icon.png) 0 0 no-repeat;
  background-size: auto 30px;
}
.icon_maas{
  background: url(./images/icon/maas_icon.png) 0 0 no-repeat;
  background-size: auto 30px;
}
.icon_iryou{
  background: url(./images/icon/iryou_icon.png) 0 0 no-repeat;
  background-size: auto 30px;
}
.icon_file{
  background: url(./images/icon/file_icon.png) 0 0 no-repeat;
  background-size: auto 30px;
}

.icon_notice{
  background: url(./images/icon/notice_icon.png) 0 50% no-repeat;
  background-size: auto 40px;
  font-size : 32px;
  padding-left : 45px;
  color : var(--primary-color);
  margin-bottom: 30px;
}




.bg p{
  color : var(--primary-color);
  line-height : 1.7;
}


.about a , .maas a , #app a{
  color : var(--red-color);
  text-decoration: none;
}
.about a:hover , .maas a:hover , #app a:hover{
  text-decoration: underline;
}

.activity .city , .activity .area{
  padding : 2px 8px;
  display: inline-block;
  margin-bottom: 15px;
}

.activity .city{
  background:var(--red-color);
  color : #ffffff;
  text-align: center;
}

.activity .area{
  background:#fde8dd;
  color : var(--red-color);
}



  .alignment span , .inquiry span , .maas span{
    color : var(--red-color);
  }




















/*	article	*/

/* PC ここから-------------------------------- */
@media (min-width: 768px) {

  .article-inner{
    width: 1040px;
    background:#ffffff;
    margin : 0 auto;
    padding : 100px 190px;
  }

  .bg-article{
    background:#fcf9e3;
    padding : 100px 0;
  }

    .article-newsindex-date{
      font-size: 24px;
      color : var(--primary-color);
      margin-bottom: 30px;
    }



    .article-newsindex-ttl{
      font-size: 32px;
      color : var(--h2-color);
      margin-bottom: 60px;
    }
    .article-newsindex-txt{
      color: var(--primary-color);
      font-size: 16px;
      margin : 50px auto;
    }

}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {
  .article-inner{
    width: 100%;
    background:#ffffff;
    margin : 0 auto;
    padding : 15px;
  }

  .bg-article{
    background:#fcf9e3;
    padding : 10px 15px;
  }
    .article-newsindex-date{
      font-size: 20px;
      color : var(--primary-color);
      margin-bottom: 5px;
    }

    .article-newsindex-ttl{
      font-size: 24px;
      color : var(--h2-color);
      margin-bottom: 20px;
    }
    .article-newsindex-txt{
      color: var(--primary-color);
      font-size: 16px;
      margin : 20px auto;
    }
}
/* スマホ ここまで-------------------------------- */

/* article  ここまで */
























/* PC ここから-------------------------------- */
@media (min-width: 768px) {
	.smp , .sp{display:none;}

  h1{
    margin-bottom: 65px;
    font-size: 26px;
  }
  h2{
    font-size: 22px;
    height: 30px;
  }
  .h2-10{
    margin-bottom: 10px!important;
  }

  .mainimage{
    width: 1200px;
    margin : 0 auto;
  }

  header#page-header .headerlogo img{
    width: 470px;
  }
  header#page-header .link , header#page-header .snsicon{
    padding-top : 60px;

    }

  .snsicon{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-right : 60px;
    width: 200px;
  }

  .snsicon img{
    height : 33px;
  }

  section{
    margin-bottom: 95px;
  }



  .news{
    padding : 90px 0;
    width: 900px;
    margin : 0 auto;
  }
  .about , .activity , .alignment , .introduction , .inquiry , .maas{
    padding : 90px 80px 5px 80px;
    width: 1040px;
    margin : 0 auto 100px auto;
    background:#ffffff;
  }


  .inquiry{
    margin-bottom: 200px!important;
  }


  .soshikizu{
    margin : 45px 0;
  }
  .member{
    margin-top : 45px;
  }

  .youtubebt{

  }

  .sns_bn{
    width: 30%;
  }
  .mailmg{
    margin : 30px 0;
  }
  

}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {
	.pc{display:none;}


  h1 , h2 , h3{
        line-height: 1.4;
  }  
  h1{
    font-size: 22px;
    margin-bottom: 35px;
  }
  h2{
    font-size: 18px;
    height: 30px;
    margin-bottom: 25px;
  }

  .pj figure{
    margin-bottom: 40px;
  }


  .about , .activity , .alignment , .introduction , .inquiry , .maas{
    padding : 15px;
    width: 100%;
    margin : 0 auto 100px auto;
    background:#fff;
  }

  header#page-header .link{
    font-size : 12px;
    text-align: center;
  }
  header#page-header .headerlogo img{
    width: calc(100% - 90px);
  }

  .snsicon{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin : 5px auto;
    width: 70%;
  }

  .snsicon img{
    height : 25px;
  }

  section{
    margin-bottom: 50px;
  }


  .youtubebt{
    margin-bottom: 10px;
  }
  .sns_bn img{
    margin-bottom: 10px;

  }
  
}
/* スマホ ここまで-------------------------------- */























































































/* お知らせ用 */



    #menu a{
      display: inline-block;
      margin-right: 10px;
      background:#e7e0d8;
      padding : 2px 12px;
      text-decoration : none;
      color : #8c6239;
    }

    .newsindex-wrap{
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin : 0 auto;
    }
    .newsindex-date , .newsindex-date2{
      font-size: 90%;
      color : var(--primary-color);
    }
    .newsindex-ttl , .newsindex-ttl2{
      line-height : 1.2;
      color : var(--red-color);
    }

    .tgtyear{
      background: #8c6239 !important;
      color: #fff !important;
    }

/* PC ここから-------------------------------- */
@media (min-width: 768px) {
	.smp , .sp{display:none;}

    .thumbnailimage{
      width:150px;
      height:150px;
      object-fit: cover;
    }


    #menu{
      margin-bottom: 20px;
    }
    .newsindex-date{
      margin : 15px 0;
    }
    .newsindex-date2{
      display: inline-block;
      width: 10em;
      font-size: 16px;
    }
    .newsindex-list{
      padding-bottom: 5px;
      margin-bottom: 5px;
      border-bottom: 1px dashed var(--primary-color);
    }

    .newsindex{
      width: 150px;
    }
    .newsindex a{
      text-decoration: none;
      color: var(--primary-color);
    }
    .newsindex a:hover{
      color : #f5a200;
    }

  .newsimg{
    width: 500px;
    margin : 0 auto 10px auto;
  }


  .bold{font-weight: bold;}



    .news-wrap img{
      width: 100%;
    }
    .news-wrap .txt{
     margin: 20px 0;
    }

    .pdficon{
      width: 80px;
    }

}
/* PC ここまで-------------------------------- */


/* スマホ ここから-------------------------------- */
@media screen and (max-width: 767px) {
	.pc{display:none;}
  img{width: 100%;}


  .bg{
    padding : 10px 15px;
  }

    .newsindex-wrap{
      width: 100%;
    }
    .newsindex-wrap a{
      display: block;
      width : 48%;
    }


    .news-wrap{
      width: 100%;
      margin : 0 auto;
    }


    .thumbnailimage{
      width : 100%;
      height : auto;
      object-fit: cover;
      aspect-ratio: 1/1;
    }

    .newsindex-date{
      margin : 5px 0;
    }
    .newsindex-ttl{
      margin-bottom: 20px;
    }

    #menu{
      margin-bottom: 10px;
    }

    .newsindex-date2{
      display: block;

    }

  .newsindex-ttl2{
    display: block;
    margin-bottom: 10px;
  }


  }
/* スマホ ここまで-------------------------------- */



    .back{
      margin : 80px 0 0 0;
      text-align: center;
    }



    