@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@700&family=Noto+Sans+JP:wght@400;700&display=swap");
.bcolor2 {
  color: #74b05a;
}

@media screen and (max-width: 599px) {
  .pc { /* 599px以下のとき */
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .sp { /* 600px以上のとき */
    display: none;
  }
}

@media screen and (max-width: 599px) {
  img { /* 599px以下のとき */
    max-width: 100%;
    height: auto;
    width: auto;
  }
}

/* ~~ エレメント / タグセレクター ~~ */
ul, ol, dl { /* ブラウザー間の相違により、リストの余白とマージンをゼロにすることをお勧めします。一貫性を保つために、量をここで指定するか、リストに含まれるリスト項目 (LI、DT、DD) で指定できます。より詳細なセレクターを記述しない限り、ここで指定する内容が .nav リストにも適用されることに注意してください。 */
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0; /* 上マージンを削除すると、マージンを含む div からマージンがはみ出す場合があるという問題を回避できます。残った下マージンにより、後続のエレメントからは離されます。 */
}

a img { /* このセレクターは、一部のブラウザーでイメージをリンクで囲んだ場合にイメージの周囲に表示される初期設定の青いボーダーを削除します。 */
  border: none;
}

/* ~~ サイトのリンクのスタイル付けは、ホバー効果を作成するセレクターグループも含め、この順序にする必要があります。~~ */
a:link {
  color: #42413C;
  text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

a:visited {
  color: #6E6C64;
  text-decoration: underline;
}

a:hover, a:active, a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: none;
}

p {
  margin: 10px 0 0 0;
}

.red {
  color: red;
}

.orange {
  color: #F60;
}

.blue {
  color: #36C;
}

.blue2 {
  color: dodgerblue;
}

.violet {
  color: purple;
}

.green {
  color: green;
}

.brown {
  color: brown;
}

.grey {
  color: gray;
}

.sitecolor {
  color: #5B2D36;
}

.small85 {
  font-size: 85%;
}

.small90 {
  font-size: 90%;
}

.large11 {
  font-size: 1.1em;
}

.large12 {
  font-size: 1.2em;
}

.large14 {
  font-size: 1.4em;
}

.large18 {
  font-size: 1.8em;
}

.large25 {
  font-size: 2.5em;
}

.strong {
  font-weight: bold;
}

.tolist, .tolist02 {
  text-align: right;
  margin-top: 10px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .tolist, .tolist02 { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .tolist, .tolist02 { /* 600px以上のとき */
    width: 1000px;
  }
}

.tolist02 {
  width: 95%;
  margin-top: 30px;
}

.pdfarea {
  width: 90%;
  padding: 15px 10px;
  font-size: 0.9em;
  text-align: left;
  border: 1px #ccc solid;
  margin: 0 auto;
  margin-top: 20px;
}

.link:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f08e"; /*アイコンのユニコード*/
  font: var(--fa-font-solid);
  position: relative; /*絶対位置*/
  font-size: 1.2em; /*サイズ*/
  color: #f00; /*アイコン色*/
  margin: -5px 0 0 5px;
}

.pdf:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f1c1"; /*アイコンのユニコード*/
  font: var(--fa-font-regular);
  position: relative; /*絶対位置*/
  font-size: 1.5em; /*サイズ*/
  color: #f00; /*アイコン色*/
  margin: -5px 0 0 5px;
}

.word:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f1c2"; /*アイコンのユニコード*/
  font: var(--fa-font-regular);
  position: relative; /*絶対位置*/
  font-size: 1.5em; /*サイズ*/
  color: #f00; /*アイコン色*/
  margin: -5px 0 0 5px;
}

.excel:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f1c3"; /*アイコンのユニコード*/
  font: var(--fa-font-regular);
  position: relative; /*絶対位置*/
  font-size: 1.5em; /*サイズ*/
  color: #f00; /*アイコン色*/
  margin: -5px 0 0 5px;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* ~~ その他の float/clear クラス ~~ */
.fltrt { /* このクラスを使用すると、ページ内でエレメントを右にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
  float: right;
  margin-left: 8px;
}

.fltlft { /* このクラスを使用すると、ページ内でエレメントを左にフローティングさせることができます。フローティングさせるエレメントは、ページ内で横に並べて表示するエレメントの前に指定する必要があります。 */
  float: left;
  margin-right: 8px;
}

.clearfloat { /* このクラスは、#footer が #container から削除されているか取り出されている場合に、<br /> または空の div で、フローティングさせる最後の div に続く最後のエレメントとして (#container 内に) 配置できます。 */
  clear: both;
  height: 0;
  font-size: 1px;
  line-height: 0px;
}

.kana {
  ime-mode: active;
}

.rome {
  ime-mode: disabled;
}

.lh20 {
  line-height: 2em;
}

.lh25 {
  line-height: 2.5em;
}

.imgarea {
  width: 100%;
  text-align: center;
  font-size: 1em;
  position: relative;
}

.imgarea02 {
  text-align: center;
  font-size: 1em;
  padding: 20px 0;
}
@media screen and (min-width: 600px) {
  .imgarea02 { /* pc */
    float: left;
    width: 49%;
  }
}
.imgarea02 img {
  padding: 20px;
}

.imgarea03 {
  width: 33%;
  text-align: center;
  font-size: 0.9em;
  float: left;
  margin-top: 20px;
}

.imgarea04 {
  text-align: center;
  display: inline-block;
}
@media screen and (min-width: 600px) {
  .imgarea04 { /* sp */
    width: 420px;
  }
}
@media screen and (max-width: 599px) {
  .imgarea04 { /* mobile */
    width: 320px;
  }
}

.imgarea img, .imgarea02 img, .imgarea03 img {
  padding: 0;
}

/* square */
.square:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c8";
  font-weight: 900;
  margin: -5px 8px 0 5px;
  color: #5B2D36;
}

.shadow01 {
  box-shadow: 0 10px 8px -6px #8d8c8c;
}

.shadow02 {
  display: inline-block;
  position: relative;
  padding: 6px;
  box-shadow: 0 2px 6px #999;
  background-color: #fff;
  margin-bottom: 20px;
}
.shadow02 img {
  padding: 0;
}

.zoom, .zoom08 {
  transform: scale(1);
  transition: 0.3s ease-in-out;
}

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

.zoom08:hover {
  transform: scale(1.05);
}

.gray {
  filter: grayscale(0);
  transition: 0.3s ease-in-out;
}

.gray:hover {
  filter: grayscale(100%);
}

.opacity {
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.opacity:hover {
  opacity: 0.5;
}

.e-flash:hover {
  opacity: 1;
  animation: flash 1.5s;
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 599px) {
  html { /* 599px以下のとき */
    position: relative;
    overflow-x: hidden;
  }
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS P Gothic", sans-serif;
  font-weight: 400;
  background-color: #fff;
  margin: 0;
  padding: 0;
  color: #000;
  width: 100%;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  min-width: 1200px;
}
@media screen and (min-width: 600px) {
  body { /* PC */
    background: url("../images/body_bk.jpg") center bottom no-repeat;
  }
}
@media screen and (max-width: 599px) {
  body { /* mobile */
    min-width: initial;
    position: relative;
    left: 0;
    overflow-x: hidden;
    background: url("../images/body_bk_s.jpg") center bottom no-repeat;
  }
}

.bold {
  font-weight: 700;
}

.mplus {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

/* ドロワーメニュー */
.ul_open_h {
  background: #5B2D36;
  color: #fff;
  margin: 0;
  padding: 0;
  list-style: none;
  top: 0;
  height: 100%;
  transition: 0.35s ease-in-out;
  overflow-y: scroll;
  position: fixed;
  z-index: 50;
  padding-top: 50px;
}
.ul_open_h li {
  padding: 5px;
  width: 220px;
  border-bottom: 1px #fff solid;
  font-size: 0.85em;
  font-family: "Noto Sans JP", sans-serif;
}
.ul_open_h li.bottom {
  margin-bottom: 100px;
}
.ul_open_h li a:link {
  color: #fff;
  text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.ul_open_h li a:visited {
  color: #fff;
  text-decoration: underline;
}

.open-sub {
  margin: 0 0 0 20px;
  list-style-position: inside;
  list-style-type: disc;
  font-family: "Noto Sans JP", sans-serif;
}
.open-sub li {
  font-size: 1em;
  border-bottom: none;
  padding-top: 5px;
  line-height: 1.7em;
}

.dmenu {
  padding: 0 0 0 10px;
}

.open-1 {
  right: -100%;
}
.open-1.active {
  right: 0px;
}

.move-1.on.btn {
  position: fixed;
  right: 25px;
  top: 10px;
}

.btn {
  position: absolute;
  width: 35px;
  height: 35px;
  z-index: 90;
}
@media screen and (min-width: 600px) {
  .btn { /* PC */
    top: 30px;
    right: 30px;
  }
}
@media screen and (max-width: 599px) {
  .btn { /* mobile */
    top: 17px;
    right: 18px;
  }
}
.btn:before, .btn:after, .btn span {
  display: block;
  width: 80%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.35s ease-in-out;
}
.btn span {
  height: 3px;
  background-color: #000;
  top: calc(50% - 1.5px);
}
.btn:before {
  content: "";
  border-top: 3px solid #000;
}
@media screen and (min-width: 600px) {
  .btn:before { /* 600px以上のとき */
    top: calc(25% - 3px);
  }
}
@media screen and (max-width: 599px) {
  .btn:before { /* 600px以上のとき */
    top: calc(25% - 3px);
  }
}
.btn:after {
  content: "";
  bottom: calc(25% - 3px);
  border-top: 3px solid #000;
}

.btn.on span {
  display: none;
}
.btn.on:before {
  top: calc(50% - 1.8px);
  transform: rotate(315deg);
  border-top: 5px solid #fff;
}
.btn.on:after {
  bottom: calc(50% - 1.5px);
  transform: rotate(-315deg);
  border-top: 5px solid #fff;
}

/* header */
#t-headwrap, #headwrap {
  width: 100%;
  position: relative;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 600px) {
  #t-headwrap, #headwrap {
    min-width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #t-headwrap, #headwrap {
    min-width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #t-headwrap, #headwrap { /* pc */
    height: 100px;
  }
}
@media screen and (max-width: 599px) {
  #t-headwrap, #headwrap { /* mobile */
    height: 75px;
  }
}

#t-headarea, #headarea {
  margin: 0 auto;
  height: auto;
  position: relative;
  color: #000;
}
@media screen and (max-width: 600px) {
  #t-headarea, #headarea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #t-headarea, #headarea {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #t-headarea, #headarea { /* pc */
    min-height: 100px;
  }
}
@media screen and (max-width: 599px) {
  #t-headarea, #headarea { /* mobile */
    min-height: 75px;
  }
}
@media screen and (min-width: 600px) {
  #t-headarea img.h-logo, #headarea img.h-logo { /* pc */
    position: absolute;
    top: 22px;
    left: 12px;
  }
}
@media screen and (max-width: 599px) {
  #t-headarea img.h-logo, #headarea img.h-logo { /* mobile */
    position: absolute;
    top: 20px;
    left: 20px;
    width: 260px;
  }
}
#t-headarea a:link, #t-headarea a:visited, #headarea a:link, #headarea a:visited {
  text-decoration: none;
}
#t-headarea a:hover, #t-headarea a:active, #t-headarea a:focus, #headarea a:hover, #headarea a:active, #headarea a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: none;
}
#t-headarea .h-buttonarea, #headarea .h-buttonarea {
  position: absolute;
}
@media screen and (min-width: 600px) {
  #t-headarea .h-buttonarea, #headarea .h-buttonarea { /* pc */
    top: 30px;
    right: 70px;
    font-size: 32px;
  }
}
@media screen and (max-width: 599px) {
  #t-headarea .h-buttonarea, #headarea .h-buttonarea { /* mobile */
    display: none;
  }
}
#t-headarea .h-buttonarea div, #headarea .h-buttonarea div {
  float: left;
  padding: 3px 10px;
}
#t-headarea .h-buttonarea .b-line, #headarea .h-buttonarea .b-line {
  color: #3AAE36;
}
#t-headarea .h-buttonarea .b-line a:link, #t-headarea .h-buttonarea .b-line a:visited, #t-headarea .h-buttonarea .b-line a:hover, #t-headarea .h-buttonarea .b-line a:active, #t-headarea .h-buttonarea .b-line a:focus, #headarea .h-buttonarea .b-line a:link, #headarea .h-buttonarea .b-line a:visited, #headarea .h-buttonarea .b-line a:hover, #headarea .h-buttonarea .b-line a:active, #headarea .h-buttonarea .b-line a:focus {
  color: #3AAE36;
}
#t-headarea .h-buttonarea .b-youtube, #headarea .h-buttonarea .b-youtube {
  color: #FF0000;
}
#t-headarea .h-buttonarea .b-youtube a:link, #t-headarea .h-buttonarea .b-youtube a:visited, #t-headarea .h-buttonarea .b-youtube a:hover, #t-headarea .h-buttonarea .b-youtube a:active, #t-headarea .h-buttonarea .b-youtube a:focus, #headarea .h-buttonarea .b-youtube a:link, #headarea .h-buttonarea .b-youtube a:visited, #headarea .h-buttonarea .b-youtube a:hover, #headarea .h-buttonarea .b-youtube a:active, #headarea .h-buttonarea .b-youtube a:focus {
  color: #FF0000;
}
@media screen and (min-width: 600px) {
  #t-headarea .hs-menu, #headarea .hs-menu { /* pc */
    position: absolute;
    top: 60px;
    right: 28px;
    font-size: 12px;
  }
}
@media screen and (max-width: 599px) {
  #t-headarea .hs-menu, #headarea .hs-menu { /* mobile */
    position: absolute;
    top: 45px;
    right: 20px;
    font-size: 12px;
  }
}
@media print {
  #t-headarea .hs-menu, #headarea .hs-menu {
    position: absolute;
    top: 60px;
    right: 28px;
    font-size: 12px;
  }
}

#headwrap {
  border-bottom: 2px #5B2D36 solid;
}
@media screen and (min-width: 600px) {
  #headwrap { /* pc */
    height: 160px;
  }
}
@media screen and (max-width: 599px) {
  #headwrap { /* mobile */
    height: 75px;
  }
}

@media screen and (min-width: 600px) {
  #headarea { /* pc */
    min-height: 160px;
  }
}
@media screen and (max-width: 599px) {
  #headarea { /* mobile */
    min-height: 75px;
  }
}
#headarea .h-menuarea {
  position: absolute;
}
@media screen and (min-width: 600px) {
  #headarea .h-menuarea { /* pc */
    bottom: 15px;
    right: 30px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  #headarea .h-menuarea { /* mobile */
    display: none;
  }
}
#headarea .h-menuarea div {
  float: left;
  padding: 3px 20px;
  font-weight: 500;
}
#headarea .h-menuarea .f {
  border-right: 1px #333 solid;
}
#headarea .h-menuarea a:link, #headarea .h-menuarea a:visited {
  text-decoration: none;
  color: #000;
}
#headarea .h-menuarea a:hover, #headarea .h-menuarea a:active, #headarea .h-menuarea a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: underline;
  color: #000;
}

/* main area */
main {
  min-height: 300px;
}

#topwrap {
  width: 100%;
  text-align: left;
  position: relative;
  bottom: 0;
}

.bg-slider, .s-bg-slider {
  width: 100%;
  min-height: 530px;
  background-position: center center;
  background-size: cover;
  display: block;
  align-items: center;
  justify-content: center;
  position: relative;
}

.s-bg-slider {
  background-position: center top;
  min-height: 253px;
  background-size: cover;
  margin: 0 auto;
}

.toparea {
  margin: 0 auto;
  height: 530px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .toparea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  .toparea {
    width: 1200px;
  }
}

.t-menuarea {
  position: absolute;
}
@media screen and (min-width: 600px) {
  .t-menuarea { /* pc */
    top: 15px;
    right: 30px;
    font-size: 18px;
  }
}
@media screen and (max-width: 599px) {
  .t-menuarea { /* mobile */
    display: none;
  }
}
.t-menuarea div {
  float: left;
  padding: 3px 20px;
  font-weight: 500;
}
.t-menuarea .f {
  border-right: 1px #333 solid;
}
.t-menuarea a:link, .t-menuarea a:visited {
  text-decoration: none;
  color: #000;
}
.t-menuarea a:hover, .t-menuarea a:active, .t-menuarea a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: underline;
  color: #000;
}

@media screen and (min-width: 600px) {
  .top-copy { /* PC */
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-copy { /* mobile */
    position: absolute;
    bottom: 10px;
    right: 0px;
  }
}

/* top page */
#marea, #subarea {
  margin: 0 auto;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 600px) {
  #marea, #subarea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #marea, #subarea {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #marea, #subarea { /* PC */
    min-height: 700px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  #marea, #subarea { /* mobile */
    padding: 0 0 20px 0;
  }
}

#spmenu-wrap {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #D2E6CA;
}
@media screen and (min-width: 600px) {
  #spmenu-wrap { /* pc */
    display: none;
  }
}

.spmenu {
  width: 360px;
  margin: 0 auto;
  margin-top: 20px;
  position: relative;
  padding: 5px 0;
  text-align: center;
  display: block;
  /*   min-height: 160px; */
  min-height: 110px;
  height: auto;
  line-height: 2em;
}
@media screen and (min-width: 600px) {
  .spmenu { /* pc */
    display: none;
  }
}
.spmenu div {
  width: 160px;
  height: 40px;
  line-height: 40px;
  padding: 2px 5px;
  background-color: #fff;
  float: left;
  margin: 5px;
  border-radius: 20px;
}
.spmenu a:link, .spmenu a:visited {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

h1.news, h1.kinkyu {
  margin: 0 auto;
  position: relative;
  color: #ff0000;
  text-align: center;
  font-weight: 700;
  font-family: "M PLUS Rounded 1c", sans-serif;
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  h1.news, h1.kinkyu { /* 600px以上のとき */
    height: 30px;
    background: url("../images/h1_news_bak.png") center top no-repeat;
    line-height: 30px;
  }
}
@media screen and (max-width: 599px) {
  h1.news, h1.kinkyu { /* 599px以下のとき */
    height: 16px;
    line-height: 16px;
    font-size: 20px;
    width: 360px;
    background: url("../images/h1_news_bak_s.png") center top no-repeat;
  }
}
h1.news div, h1.kinkyu div {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0 10px;
}

h1.kinkyu {
  color: #fff;
  box-sizing: border-box;
  margin-top: 20px;
  text-align: left;
}
@media screen and (min-width: 600px) {
  h1.kinkyu { /* 600px以上のとき */
    height: 60px;
    background: url("../images/h1_kinkyu_bak.png") center top no-repeat;
    line-height: 60px;
    padding-left: 150px;
  }
}
@media screen and (max-width: 599px) {
  h1.kinkyu { /* 599px以下のとき */
    height: 47px;
    line-height: 50px;
    font-size: 18px;
    width: 360px;
    background: url("../images/h1_kinkyu_bak_s.png") center top no-repeat;
    padding-left: 80px;
  }
}
h1.kinkyu div {
  background-color: #fff;
  padding: 0 10px;
}

h2.sub {
  position: relative;
  border-bottom: 1px solid #5B2D36;
  padding: 0 0 0.2em 0.7em;
  margin: 0 auto;
  margin-top: 40px;
  margin-bottom: 30px;
  text-align: left;
  box-sizing: content-box;
  font-weight: normal;
}
@media screen and (min-width: 600px) {
  h2.sub { /* 600px以上のとき */
    width: 90%;
    font-size: 22px;
  }
}
@media screen and (max-width: 599px) {
  h2.sub { /* 599px以下のとき */
    width: 320px; /* 幅指定 */
    font-size: 20px;
  }
}
h2.sub:after {
  position: absolute;
  top: 0.2em;
  left: 0;
  content: "";
  width: 5px;
  height: 1.3em;
  background-color: #ef99a8;
}

h2.news, h2.news02 {
  margin: 0 auto;
  position: relative;
  text-align: left;
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0.2em 0 0.2em 2em;
  box-sizing: content-box;
  border-bottom: 2px #5B2D36 dotted;
}
@media screen and (min-width: 600px) {
  h2.news, h2.news02 { /* pc */
    width: 95%;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 599px) {
  h2.news, h2.news02 { /* mobile */
    padding-top: 10px;
  }
}

@media screen and (min-width: 600px) {
  h2.news02 { /* pc */
    width: 90%;
  }
}

h3.sub {
  display: block;
  padding: 5px 0 5px 20px;
  width: 90%;
  margin: 0 auto;
  font-weight: normal;
  font-size: 20px;
  box-sizing: content-box;
  text-align: left;
  margin-top: 30px;
  margin-bottom: 40px;
  border-bottom: 3px solid #5B2D36;
  position: relative;
}
h3.sub:before {
  position: absolute;
  left: 40px;
  bottom: -33px;
  content: "";
  border-width: 16px;
  border-style: solid;
  border-color: #5B2D36 transparent transparent transparent;
}
h3.sub:after {
  position: absolute;
  left: 40px;
  bottom: -29px;
  content: "";
  border-width: 16px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}

h4.sub {
  position: relative;
  display: inline-block;
  padding: 0 40px;
  width: 83%;
  text-align: left;
  font-weight: 400;
  font-size: 20px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 5px;
}

h4.sub:before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 2px;
  border-top: solid 1px #003b90;
  border-bottom: solid 1px #003b90;
}

h4.sub:before {
  left: 0;
}

h5.sub {
  position: relative; /*相対位置*/
  line-height: 1.4; /*行高*/
  text-align: left;
  width: 88%;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 20px;
  padding: 0 0 0 40px;
  font-size: 18px;
  font-weight: 400;
}
h5.sub:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f762"; /*アイコンのユニコード*/
  font: var(--fa-font-solid);
  position: absolute; /*絶対位置*/
  font-size: 1.5em; /*サイズ*/
  left: 0; /*アイコンの位置*/
  top: -5px; /*アイコンの位置*/
  color: #74b05a; /*アイコン色*/
}

.toptolist, .toptolist-k {
  position: absolute;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: center;
  background: #fff; /* BOXの背景色         */
  border: 1px #5B2D36 solid;
  color: #5B2D36;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .toptolist, .toptolist-k { /* 600px以上のとき */
    bottom: 12px;
    right: 470px;
    width: 150px; /* BOXの幅             */
    height: 36px; /* BOXの高さ           */
    border-radius: 18px; /* 角丸の指定          */
    line-height: 36px;
  }
}
@media screen and (max-width: 599px) {
  .toptolist, .toptolist-k { /* 599px以下のとき */
    bottom: 12px;
    right: 100px;
    width: 150px; /* BOXの幅             */
    height: 28px; /* BOXの高さ           */
    border-radius: 15px; /* 角丸の指定          */
    line-height: 28px;
  }
}
.toptolist:hover, .toptolist-k:hover {
  background-color: #5B2D36;
  text-decoration: none;
  color: #fff;
}
.toptolist a:link, .toptolist-k a:link, .toptolist a:visited, .toptolist-k a:visited {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.toptolist a:hover, .toptolist-k a:hover, .toptolist a:active, .toptolist-k a:active, .toptolist a:focus, .toptolist-k a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: none;
}

.toptolist-k {
  border: 1px #fff solid;
}
@media screen and (min-width: 600px) {
  .toptolist-k { /* 600px以上のとき */
    right: 70px;
    bottom: 15px;
  }
}
@media screen and (max-width: 599px) {
  .toptolist-k { /* 599px以下のとき */
    right: 10px;
    bottom: 7px;
    width: 130px;
  }
}

#newsarea, #sub-newsarea {
  position: relative;
  padding-bottom: 50px;
}
@media screen and (min-width: 600px) {
  #newsarea, #sub-newsarea { /* 600px以上のとき */
    width: 1100px;
    margin: 0 auto;
    min-height: 120px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  #newsarea, #sub-newsarea { /* 599px以下のとき */
    width: 360px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 600px) {
  #sub-newsarea { /* pc */
    width: 90%;
  }
}
@media screen and (max-width: 599px) {
  #sub-newsarea { /* mobile */
    width: 360px;
  }
}

#albumarea {
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 5px;
  min-height: 300px;
  height: auto;
  text-align: center;
  position: relative;
  padding-bottom: 70px;
}
@media screen and (min-width: 600px) {
  #albumarea { /* PC */
    width: 1088px;
  }
}
@media screen and (max-width: 599px) {
  #albumarea { /* mobile */
    width: 360px;
  }
}

@media screen and (min-width: 600px) {
  #subarea { /* pc */
    margin-top: 20px;
    display: flex;
    display: -webkit-flex;
    background-color: transparent;
  }
}
@media screen and (max-width: 599px) {
  #subarea { /* mobile */ }
}

.kohoarea {
  width: 90%;
  margin: 0 auto;
  padding: 10px;
  box-sizing: content-box;
  text-align: left;
}
.kohoarea .imarea {
  width: 300px;
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 600px) {
  .kohoarea .imarea { /* pc */
    float: right;
  }
}
@media screen and (max-width: 599px) {
  .kohoarea .imarea { /* mobile */
    margin: 0 auto;
  }
}

@media screen and (min-width: 600px) {
  #rside-wrap { /* pc */
    width: 250px;
  }
}
@media screen and (max-width: 599px) {
  #rside-wrap { /* mobile */
    width: 360px;
  }
}

.rside {
  border-right: 1px #ccc solid;
  border-left: 1px #ccc solid;
  background-color: #fff;
}
@media screen and (min-width: 600px) {
  .rside { /* pc */
    width: 240px; /*float:right;*/
    position: sticky;
    top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .rside { /* mobile */
    width: 360px;
  }
}
.rside .rttl1, .rside .rttl2 {
  padding: 0.5em 1em;
  box-sizing: border-box;
  border-top: 1px #ccc solid;
  text-align: left;
  background-color: rgba(239, 176, 187, 0.6901960784);
}
@media screen and (max-width: 599px) {
  .rside .rttl1, .rside .rttl2 { /* 599px以下のとき */
    width: 360px;
  }
}
@media screen and (min-width: 600px) {
  .rside .rttl1, .rside .rttl2 { /* 600px以上のとき */
    width: 240px;
  }
}
.rside .rttl2 {
  border-top: none;
}
.rside ul.right {
  margin: 0;
  list-style-type: none;
  font-weight: normal;
  border-top: 1px #ccc solid;
}
.rside ul.right li {
  font-size: 1em;
  margin: 0;
  font-weight: normal;
  padding: 0.8em 0 0.8em 0.8em;
  border-bottom: 1px #ccc solid;
  text-align: left;
}
.rside ul.rsub {
  margin: 0 0 0 0.8em;
  font-weight: normal;
  border: none;
  list-style-type: disc;
  list-style-position: inside;
}
.rside ul.rsub li {
  font-size: 1em;
  margin: 0;
  font-weight: normal;
  padding: 0.3em 0;
  text-align: left;
  border: none;
}

#lside {
  display: block;
  position: relative;
}
@media screen and (min-width: 600px) {
  #lside { /* pc */
    width: 920px;
    margin: 0 0 30px 20px;
    min-height: 900px;
  }
}
@media screen and (max-width: 599px) {
  #lside { /* mobile */
    width: 360px;
    margin: 0 0 30px 0;
    min-height: 300px;
  }
}

.sarea, .sarea2 {
  text-align: center;
  position: relative;
  line-height: 1.5em;
}
@media screen and (min-width: 600px) {
  .sarea, .sarea2 { /* PC */
    width: 33%;
    float: left;
    margin: 20px 0;
  }
}
@media screen and (max-width: 599px) {
  .sarea, .sarea2 { /* mobile */
    width: 360px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.sarea img.view, .sarea2 img.view {
  width: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 600px) {
  .sarea2 { /* PC */
    width: 50%;
  }
}
.sarea2 img.view {
  width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

.ctag {
  margin: 0 5px;
  min-width: 30px;
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 20px;
  padding: 2px 10px;
  display: inline-block;
  background: #5B2D36; /* BOXの背景色         */
}

.new {
  margin: 0 5px;
  color: #ff0000;
  font-size: 16px;
  padding: 2px 0;
  display: inline-block;
  font-weight: 700;
}

.local, .rent, .vol, .sonota, .soudan, .service {
  border: 3px #ff0000 solid;
  position: relative;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 600px) {
  .local, .rent, .vol, .sonota, .soudan, .service { /* pc */
    width: 305px;
    background: url(../images/localBtn.png) left top no-repeat;
    height: 135px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 599px) {
  .local, .rent, .vol, .sonota, .soudan, .service { /* mobile */
    width: 325px;
    margin: 0 auto;
    margin-bottom: 15px;
    background: url(../images/localBtn_s.png) left top no-repeat;
    height: 65px;
    border-radius: 10px;
  }
}
.local:hover, .rent:hover, .vol:hover, .sonota:hover, .soudan:hover, .service:hover {
  background-color: #ef99a8;
  text-decoration: none;
}
.local a:link, .rent a:link, .vol a:link, .sonota a:link, .soudan a:link, .service a:link, .local a:visited, .rent a:visited, .vol a:visited, .sonota a:visited, .soudan a:visited, .service a:visited {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.local a:hover, .rent a:hover, .vol a:hover, .sonota a:hover, .soudan a:hover, .service a:hover, .local a:active, .rent a:active, .vol a:active, .sonota a:active, .soudan a:active, .service a:active, .local a:focus, .rent a:focus, .vol a:focus, .sonota a:focus, .soudan a:focus, .service a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: none;
}
.local .b-txt, .rent .b-txt, .vol .b-txt, .sonota .b-txt, .soudan .b-txt, .service .b-txt {
  position: relative;
  margin: 0 auto;
  text-align: right;
  line-height: 135px;
  font-size: 20px;
}
@media screen and (min-width: 600px) {
  .local .b-txt, .rent .b-txt, .vol .b-txt, .sonota .b-txt, .soudan .b-txt, .service .b-txt { /* pc */
    width: 250px;
    height: 135px;
    line-height: 135px;
  }
}
@media screen and (max-width: 599px) {
  .local .b-txt, .rent .b-txt, .vol .b-txt, .sonota .b-txt, .soudan .b-txt, .service .b-txt { /* mobile */
    width: 250px;
    height: 65px;
    line-height: 60px;
  }
}
.local .b-txt a:link, .rent .b-txt a:link, .vol .b-txt a:link, .sonota .b-txt a:link, .soudan .b-txt a:link, .service .b-txt a:link, .local .b-txt a:visited, .rent .b-txt a:visited, .vol .b-txt a:visited, .sonota .b-txt a:visited, .soudan .b-txt a:visited, .service .b-txt a:visited {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.local .b-txt a:hover, .rent .b-txt a:hover, .vol .b-txt a:hover, .sonota .b-txt a:hover, .soudan .b-txt a:hover, .service .b-txt a:hover, .local .b-txt a:active, .rent .b-txt a:active, .vol .b-txt a:active, .sonota .b-txt a:active, .soudan .b-txt a:active, .service .b-txt a:active, .local .b-txt a:focus, .rent .b-txt a:focus, .vol .b-txt a:focus, .sonota .b-txt a:focus, .soudan .b-txt a:focus, .service .b-txt a:focus { /* このセレクターグループは、キーボードを使用するユーザーに対し、マウスを使用するユーザーと同じホバー効果を提供します。 */
  text-decoration: none;
}

@media screen and (min-width: 600px) {
  .service { /* pc */
    background: url(../images/serviceBtn.png) left top no-repeat;
  }
}
@media screen and (max-width: 599px) {
  .service { /* mobile */
    background: url(../images/serviceBtn_s.png) left top no-repeat;
  }
}
.service .b-txt {
  line-height: 1.4em;
}
@media screen and (min-width: 600px) {
  .service .b-txt { /* pc */
    height: 40px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 599px) {
  .service .b-txt { /* mobile */
    height: 40px;
    padding-top: 5px;
  }
}

@media screen and (min-width: 600px) {
  .soudan { /* pc */
    background: url(../images/soudanBtn.png) left top no-repeat;
  }
}
@media screen and (max-width: 599px) {
  .soudan { /* mobile */
    background: url(../images/soudanBtn_s.png) left top no-repeat;
  }
}

@media screen and (min-width: 600px) {
  .sonota { /* pc */
    background: url(../images/sonotaBtn.png) left top no-repeat;
  }
}
@media screen and (max-width: 599px) {
  .sonota { /* mobile */
    background: url(../images/sonotaBtn_s.png) left top no-repeat;
  }
}

@media screen and (min-width: 600px) {
  .vol { /* pc */
    background: url(../images/volBtn.png) left top no-repeat;
  }
}
@media screen and (max-width: 599px) {
  .vol { /* mobile */
    background: url(../images/volBtn_s.png) left top no-repeat;
  }
}

@media screen and (min-width: 600px) {
  .rent { /* pc */
    background: url(../images/rentBtn.png) left top no-repeat;
  }
}
@media screen and (max-width: 599px) {
  .rent { /* mobile */
    background: url(../images/rentBtn_s.png) left top no-repeat;
  }
}

.carea {
  margin: 0 auto;
  margin-top: 20px;
}
@media screen and (min-width: 600px) {
  .carea { /* PC */
    width: 1000px;
  }
}
@media screen and (max-width: 599px) {
  .carea { /* mobile */
    width: 360px;
  }
}
.carea .c-list, .carea .c-list03, .carea .c-list02 {
  font-size: 1.4em;
  text-align: center;
  float: left;
  padding: 10px 0;
  background: #ef99a8;
  display: inline-block;
}
@media screen and (min-width: 600px) {
  .carea .c-list, .carea .c-list03, .carea .c-list02 { /* PC */
    width: 225px;
    margin: 0 0 20px 20px;
  }
}
@media screen and (max-width: 599px) {
  .carea .c-list, .carea .c-list03, .carea .c-list02 { /* mobile */
    width: 170px;
    margin: 0 0 20px 5px;
  }
}
.carea .c-list02 {
  font-size: 1.2em;
  width: 140px;
}
@media screen and (min-width: 600px) {
  .carea .c-list03 { /* PC */
    width: 200px;
    font-size: 1em;
  }
}
@media screen and (max-width: 599px) {
  .carea .c-list03 { /* mobile */
    font-size: 0.9em;
  }
}
.carea .c-list:hover, .carea .c-list03:hover, .carea .c-list02:hover {
  box-shadow: 0 5px 10px #666;
  transform: translate(0, -3px);
}

.n-title, .n-title02 {
  display: block;
  list-style: none;
}
@media screen and (min-width: 600px) {
  .n-title, .n-title02 { /* PC */
    width: 980px;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 5px;
    text-align: left;
  }
}
@media screen and (max-width: 599px) {
  .n-title, .n-title02 { /* mobile */
    width: 320px;
    margin: 20px 0 0 10px;
    text-align: left;
  }
}
.n-title a:link, .n-title02 a:link, .n-title a:visited, .n-title02 a:visited {
  text-decoration: underline; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}

@media screen and (min-width: 600px) {
  .n-title02 { /* PC */
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .n-title02 { /* mobile */
    width: 340px;
  }
}

.tolistBtn {
  position: relative;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 20px;
}

.tobutton {
  padding: 0.75em 2em;
  text-align: center;
  text-decoration: none;
  color: #5B2D36;
  border: 2px solid #5B2D36;
  font-size: 16px;
  display: inline-block;
  width: 200px;
  border-radius: 35px;
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
  margin: 0 10px;
  transition: all 0.3s ease;
}
.tobutton:hover {
  background-color: #5B2D36;
  text-decoration: none;
  color: #fff;
}

.next {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  margin: 20px 0 0 0;
}

.toprev:before {
  font-family: "Font Awesome 5 Free";
  content: "\f100";
  font-weight: 900;
  font-size: 1.2em;
  color: #393a34;
}

.tonext:after {
  font-family: "Font Awesome 5 Free";
  content: "\f101";
  font-weight: 900;
  font-size: 1.2em;
  color: #393a34;
}

.kiji {
  margin: 0 auto;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .kiji { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .kiji { /* 600px以上のとき */
    width: 800px;
  }
}
.kiji:before {
  clear: both;
}

/* 相談事業・ボランティア */
.copyarea {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 30px 0 20px 0;
  background-color: rgba(186, 229, 167, 0.6078431373);
}
@media screen and (max-width: 599px) {
  .copyarea { /* for smartphone */
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .copyarea { /* for pc */
    width: 90%;
  }
}
.copyarea .copyttl {
  background-color: #74b05a;
  color: #fff;
  padding: 0.2em 0;
  font-size: 1.4em;
  margin-bottom: 20px;
}
.copyarea .csubarea {
  width: 85%;
  text-align: left;
  margin: 0 auto;
}

.copyarea2 {
  width: 90%;
  padding: 10px;
  box-sizing: border-box;
  background-color: rgba(186, 229, 167, 0.6078431373);
  margin-left: 70px;
}

/* ボランティア */
.flowarea {
  margin: 0 auto;
  padding: 20px 10px;
  box-sizing: content-box;
  text-align: left;
  line-height: 1.2em;
}
@media screen and (min-width: 600px) {
  .flowarea { /* for pc */
    width: 80%;
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .flowarea { /* for smartphone */
    width: 100%;
    font-size: 16px;
  }
}
.flowarea .numer {
  position: absolute;
  top: 10px;
}
.flowarea .arrow, .flowarea .bokin-flow .arrow2, .bokin-flow .flowarea .arrow2 {
  width: 50%;
  padding: 20px 0 20px 100px;
  color: #74b05a;
  font-size: 30px;
}

table.price {
  width: 80%;
  margin: 0 auto;
  border: 1px #333 solid;
  font-size: 1.2em;
  border-right: none;
}
table.price th, table.price td {
  padding: 0.5em 0.5em;
  text-align: center;
  border-right: 1px #333 solid;
  font-weight: normal;
}
table.price td {
  border-top: 1px #333 solid;
}

table.price2 {
  width: 80%;
  margin: 0 auto;
  border: 1px #333 solid;
  font-size: 1.2em;
  border-right: none;
  border-bottom: none;
}
table.price2 th, table.price2 td {
  padding: 0.5em 0.5em;
  text-align: center;
  border-right: 1px #333 solid;
  border-bottom: 1px #333 solid;
  font-weight: normal;
}

/* QandA */
dl.qa {
  list-style-type: none;
  margin: 0 auto;
  margin-top: 10px;
  list-style-position: inside;
  display: block;
}
@media screen and (max-width: 599px) {
  dl.qa { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.qa { /* 600px以上のとき */
    width: 90%;
  }
}
dl.qa dt {
  margin: 5px 0 0 0;
  position: relative;
  float: left;
  line-height: 1.5em;
  text-align: left;
}
@media screen and (min-width: 600px) {
  dl.qa dt { /* for pc */
    width: 10%;
  }
}
@media screen and (max-width: 599px) {
  dl.qa dt { /* for smartphone */
    width: 80%;
  }
}
dl.qa dd {
  float: left;
  margin: 3px 0 15px 0;
  position: relative;
  line-height: 1.8em;
  text-align: left;
}
@media screen and (max-width: 599px) {
  dl.qa dd { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.qa dd { /* 600px以上のとき */
    width: 88%;
  }
}
dl.qa .ans {
  padding-bottom: 30px;
  border-bottom: 1px #74b05a solid;
}

/* その他事業　共同募金 */
.bokin-flow {
  width: 80%;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px 10px;
  box-sizing: content-box;
  text-align: center;
  line-height: 1em;
  font-size: 16px;
}
.bokin-flow .b1 {
  padding: 10px 0;
  line-height: 1.5em;
}
.bokin-flow .b2, .bokin-flow .b3 .b3-1, .bokin-flow .b3 .b3-2 {
  display: inline-block;
  padding: 15px 20px 20px 0;
  border: 2px red solid;
  border-radius: 20px;
}
.bokin-flow .b3 {
  position: relative;
  display: flexbox;
}
.bokin-flow .b3 .b3-1, .bokin-flow .b3 .b3-2 {
  width: 40%;
  line-height: 1.5em;
  padding: 10px;
}
.bokin-flow .arrow, .bokin-flow .arrow2 {
  width: 100%;
  padding: 20px 0;
  color: #74b05a;
  font-size: 30px;
}
.bokin-flow .arrow2 {
  position: relative;
}
.bokin-flow .arrow2 .a2 {
  width: 300px;
  display: inline-block;
}

/* その他事業 */
table.sonota-tbl {
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
  border: 1px #000 solid;
  border-right: none;
}
@media screen and (min-width: 600px) {
  table.sonota-tbl { /* 600px以上のとき */
    width: 700px;
  }
}
@media screen and (max-width: 599px) {
  table.sonota-tbl { /* 599px以下のとき */
    width: 360px;
  }
}
table.sonota-tbl th {
  box-sizing: border-box;
  padding: 0.5em;
  border-bottom: 1px #000 solid;
  border-right: 1px #000 solid;
  width: 50%;
}
table.sonota-tbl td {
  box-sizing: border-box;
  padding: 0.5em;
  text-align: left;
  border-right: 1px #000 solid;
  vertical-align: top;
}
table.sonota-tbl td img {
  width: 80%;
}

/* お問合せ先 */
.contactarea {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 80px;
  padding: 10px 0 20px 0;
  background-color: rgba(239, 176, 187, 0.6901960784);
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .contactarea { /* for smartphone */
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .contactarea { /* for pc */
    width: 90%;
  }
}
.contactarea .ttl {
  padding: 0.2em 2em;
  background-color: #fff;
  box-sizing: content-box;
  font-size: 1.2em;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: left;
}
.contactarea .ctxt {
  width: 85%;
  text-align: left;
  margin: 0 auto;
}
.contactarea ul.caddr {
  width: 80%;
  margin: 0 auto;
  list-style-type: none;
}

/* privacy policy */
ol.policy {
  margin-top: 20px;
  margin-bottom: 20px;
  list-style-position: outside;
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 599px) {
  ol.policy { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  ol.policy { /* 600px以上のとき */
    width: 88%;
  }
}
ol.policy li {
  margin: 0 0 30px 0;
  padding: 0 0 0 20px;
  text-align: left;
}

/* youtube */
.fimgarea {
  width: 100%;
  text-align: center;
  font-size: 1em;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.fimgarea div {
  width: 45%;
  text-align: center;
  margin: 10px 0;
}
@media screen and (max-width: 599px) {
  .fimgarea div { /* 599px以下のとき */
    width: 100%;
  }
}
.fimgarea .movie {
  width: 400px;
  height: 220px;
}
@media screen and (max-width: 599px) {
  .fimgarea .movie { /* 599px以下のとき */
    width: 100%;
  }
}

/* common */
.txt, .txt03, .txt02 {
  margin: 0 auto;
  line-height: 1.5em;
  font-size: 1em;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .txt, .txt03, .txt02 { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  .txt, .txt03, .txt02 { /* 600px以上のとき */
    width: 1000px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.txt .indent, .txt03 .indent, .txt02 .indent {
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (min-width: 600px) {
  .txt02 { /* 600px以上のとき */
    width: 90%;
  }
}

.txt03 {
  width: 92%;
  float: right;
  margin-top: 10px;
  margin-bottom: 10px;
}
.txt03 p.indent {
  margin: 0;
}

ul.sub, ul.sub-02, ul.sub02, ul.sub02-02, ul.sub02-03, ol.sub {
  margin-top: 20px;
  margin-bottom: 20px;
  list-style: none;
  list-style-position: outside;
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 599px) {
  ul.sub, ul.sub-02, ul.sub02, ul.sub02-02, ul.sub02-03, ol.sub { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  ul.sub, ul.sub-02, ul.sub02, ul.sub02-02, ul.sub02-03, ol.sub { /* 600px以上のとき */
    width: 90%;
  }
}
ul.sub li, ul.sub-02 li, ul.sub02 li, ul.sub02-02 li, ul.sub02-03 li, ol.sub li {
  margin: 0 0 30px 0;
  text-align: left;
}

ul.sub-02 {
  margin-top: 0;
  margin-bottom: 0;
}
ul.sub-02 li {
  margin: 0 0 10px 0;
  text-align: left;
}

ul.sub02, ul.sub02-02, ul.sub02-03 {
  list-style-type: none;
  list-style-position: inside;
  width: 85%;
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  ul.sub02, ul.sub02-02, ul.sub02-03 { /* 600px以上のとき */
    margin-left: 80px;
  }
}
@media screen and (max-width: 599px) {
  ul.sub02, ul.sub02-02, ul.sub02-03 { /* 599px以下のとき */
    margin-left: 30px;
  }
}
ul.sub02 li, ul.sub02-02 li, ul.sub02-03 li {
  margin: 0 0 10px 0;
  text-align: left;
  position: relative;
}
ul.sub02 li:after, ul.sub02-02 li:after, ul.sub02-03 li:after {
  display: block;
  content: "";
  position: absolute;
  top: 0.8em;
  left: -1em;
  width: 6px;
  height: 6px;
  background-color: #74b05a;
  border-radius: 100%;
}

ul.sub02-02 {
  margin-top: 0;
}
ul.sub02-02 li {
  margin: 0;
}

ul.sub02-03 {
  margin-top: 0;
  margin-left: 20px;
}
ul.sub02-03 li {
  margin: 0;
}

ol.sub {
  margin-top: 10px;
  list-style: decimal;
}
@media screen and (max-width: 599px) {
  ol.sub { /* 599px以下のとき */
    width: 340px;
  }
}
@media screen and (min-width: 600px) {
  ol.sub { /* 600px以上のとき */
    width: 90%;
  }
}
ol.sub li {
  margin: 0 0 5px 0;
}
ol.sub li:after {
  display: none;
}

dl.sub, dl.sub02,
dl.sub-fl, dl.sub-fl02,
dl.sub-fl03, dl.sub-fl04 {
  list-style-type: none;
  margin: 0 auto;
  margin-top: 10px;
  list-style-position: inside;
  display: block;
}
@media screen and (max-width: 599px) {
  dl.sub, dl.sub02,
  dl.sub-fl, dl.sub-fl02,
  dl.sub-fl03, dl.sub-fl04 { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.sub, dl.sub02,
  dl.sub-fl, dl.sub-fl02,
  dl.sub-fl03, dl.sub-fl04 { /* 600px以上のとき */
    width: 95%;
  }
}
dl.sub dt, dl.sub02 dt,
dl.sub-fl dt, dl.sub-fl02 dt,
dl.sub-fl03 dt, dl.sub-fl04 dt {
  margin: 5px 0 0 0;
  position: relative;
  width: 100%;
  line-height: 1.5em;
  text-align: left;
}
dl.sub dt:after, dl.sub02 dt:after,
dl.sub-fl dt:after, dl.sub-fl02 dt:after,
dl.sub-fl03 dt:after, dl.sub-fl04 dt:after {
  display: block;
  content: "";
  position: absolute;
  top: 0.7em;
  left: -1em;
  width: 6px;
  height: 6px;
  background-color: #74b05a;
  border-radius: 100%;
}
dl.sub dd, dl.sub02 dd,
dl.sub-fl dd, dl.sub-fl02 dd,
dl.sub-fl03 dd, dl.sub-fl04 dd {
  margin: 3px 0 15px 0;
  position: relative;
  line-height: 1.8em;
  text-align: left;
}
@media screen and (max-width: 599px) {
  dl.sub dd, dl.sub02 dd,
  dl.sub-fl dd, dl.sub-fl02 dd,
  dl.sub-fl03 dd, dl.sub-fl04 dd { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.sub dd, dl.sub02 dd,
  dl.sub-fl dd, dl.sub-fl02 dd,
  dl.sub-fl03 dd, dl.sub-fl04 dd { /* 600px以上のとき */
    width: 100%;
  }
}
dl.sub dd ol, dl.sub02 dd ol,
dl.sub-fl dd ol, dl.sub-fl02 dd ol,
dl.sub-fl03 dd ol, dl.sub-fl04 dd ol {
  list-style-position: outside;
  margin-left: 1.5em;
}

dl.sub02 {
  list-style-type: none;
  margin: 0 auto;
  margin-top: 10px;
  list-style-position: inside;
  display: block;
}
dl.sub02 dt {
  margin: 5px 0 0 0;
  position: relative;
  width: 100%;
  line-height: 1.5em;
  text-align: left;
}
dl.sub02 dt:after {
  display: none;
}
dl.sub02 dd {
  margin: 3px 0 15px 50px;
}
@media screen and (max-width: 599px) {
  dl.sub02 dd { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.sub02 dd { /* 600px以上のとき */
    width: 95%;
  }
}

@media screen and (min-width: 600px) {
  dl.sub-fl, dl.sub-fl02, dl.sub-fl03, dl.sub-fl04 { /* 600px以上のとき */
    width: 80%;
  }
}
dl.sub-fl dt, dl.sub-fl02 dt, dl.sub-fl03 dt, dl.sub-fl04 dt {
  float: left;
}
@media screen and (min-width: 600px) {
  dl.sub-fl dt, dl.sub-fl02 dt, dl.sub-fl03 dt, dl.sub-fl04 dt { /* 600px以上のとき */
    width: 35%;
  }
}
@media screen and (max-width: 599px) {
  dl.sub-fl dt, dl.sub-fl02 dt, dl.sub-fl03 dt, dl.sub-fl04 dt { /* 599px以下のとき */
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  dl.sub-fl dt.long, dl.sub-fl02 dt.long, dl.sub-fl03 dt.long, dl.sub-fl04 dt.long { /* 600px以上のとき */
    width: 60%;
  }
}
dl.sub-fl dd, dl.sub-fl02 dd, dl.sub-fl03 dd, dl.sub-fl04 dd {
  float: left;
  margin: 3px 0 3px 0;
  line-height: 1.5em;
}
@media screen and (max-width: 599px) {
  dl.sub-fl dd, dl.sub-fl02 dd, dl.sub-fl03 dd, dl.sub-fl04 dd { /* 599px以下のとき */
    width: 320px;
  }
}
@media screen and (min-width: 600px) {
  dl.sub-fl dd, dl.sub-fl02 dd, dl.sub-fl03 dd, dl.sub-fl04 dd { /* 600px以上のとき */
    width: 63%;
  }
}
dl.sub-fl dd .small, dl.sub-fl02 dd .small, dl.sub-fl03 dd .small, dl.sub-fl04 dd .small {
  font-size: 0.8em;
  line-height: 1.2em;
}
@media screen and (min-width: 600px) {
  dl.sub-fl dd.long, dl.sub-fl02 dd.long, dl.sub-fl03 dd.long, dl.sub-fl04 dd.long { /* 600px以上のとき */
    width: 35%;
  }
}

dl.sub-fl02 dt {
  float: left;
}
@media screen and (min-width: 600px) {
  dl.sub-fl02 dt { /* 600px以上のとき */
    width: 25%;
  }
}
@media screen and (max-width: 599px) {
  dl.sub-fl02 dt { /* 599px以下のとき */
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  dl.sub-fl02 dd { /* 600px以上のとき */
    width: 73%;
  }
}

dl.sub-fl03 dt {
  float: left;
}
@media screen and (min-width: 600px) {
  dl.sub-fl03 dt { /* 600px以上のとき */
    width: 80%;
  }
}
@media screen and (max-width: 599px) {
  dl.sub-fl03 dt { /* 599px以下のとき */
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  dl.sub-fl03 dd { /* 600px以上のとき */
    width: 18%;
  }
}

dl.sub-fl04 dt {
  float: left;
}
@media screen and (min-width: 600px) {
  dl.sub-fl04 dt { /* 600px以上のとき */
    width: 50%;
  }
}
@media screen and (max-width: 599px) {
  dl.sub-fl04 dt { /* 599px以下のとき */
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  dl.sub-fl04 dd { /* 600px以上のとき */
    width: 45%;
  }
}

.view {
  width: 600px;
  -o-object-fit: cover;
  object-fit: cover;
}

.view2 {
  width: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

@keyframes sheen {
  0% {
    transform: skewY(-45deg) translateX(0);
  }
  100% {
    transform: skewY(-45deg) translateX(12.5em);
  }
}
/* mail */
@media screen and (min-width: 600px) {
  .formarea { /* 600px以上のとき */
    width: 1000px;
    margin: 30px 0 0 100px;
  }
}
@media screen and (max-width: 599px) {
  .formarea { /* 600px以下のとき */
    width: 320px;
    margin: 0 auto;
  }
}

.hissu {
  display: inline-block;
  background-color: #FD080C;
  color: #fff;
  min-width: 30px;
  width: auto;
  font-size: 0.8em;
  border-radius: 20%;
  text-align: center;
  padding: 1px 3px;
  font-family: "Noto Sans JP", sans-serif;
}

form {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
}

form ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

form dl {
  margin: 0 0 0.25em 0;
  clear: both;
  display: inline-block;
  margin: 0 auto;
  list-style-type: none;
}
@media screen and (min-width: 600px) {
  form dl { /* 600px以上のとき */
    width: 800px;
  }
}
@media screen and (max-width: 599px) {
  form dl { /* 600px以下のとき */
    width: 320px;
  }
}

form dt {
  text-align: left;
}
@media screen and (min-width: 600px) {
  form dt { /* 600px以上のとき */
    float: left;
    width: 25%;
  }
}
@media screen and (max-width: 599px) {
  form dt { /* 600px以下のとき */
    width: 100%;
  }
}

form dd {
  margin: 0 0 2em 0;
  text-align: left;
  width: 72%;
  display: block;
}
@media screen and (min-width: 600px) {
  form dd { /* 600px以上のとき */
    float: left;
  }
}
@media screen and (max-width: 599px) {
  form dd { /* 600px以下のとき */
    width: 100%;
  }
}

form dd.order {
  margin: 0 0 0.8em 0;
  text-align: left;
  display: block;
}
@media screen and (min-width: 600px) {
  form dd.order { /* 600px以上のとき */
    float: left;
    width: 70%;
  }
}
@media screen and (max-width: 599px) {
  form dd.order { /* 600px以下のとき */
    width: 100%;
  }
}

label {
  margin: 0 0 0.5em 0;
  font-size: pxtoem(16, 16);
}

input {
  margin: 0 0 0.5em 0;
  border: 1px solid grey;
  padding: 6px 10px;
  color: dark_grey;
  font-size: pxtoem(16, 16);
}

textarea {
  border: 1px solid grey;
  padding: 6px 10px;
  width: 100%;
  color: dark_grey;
}

select {
  min-width: 100px;
  margin: 5px 0px;
  padding: 6px 10px;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  -ms-word-break: normal;
  word-break: normal;
}

/* common */
@media screen and (max-width: 599px) {
  #navi { /* 599px以下のとき */
    display: none;
  }
}
@media screen and (min-width: 600px) {
  #navi { /* 600px以上のとき */
    width: 1150px;
    margin: 0 auto;
    text-align: right;
    padding-top: 30px;
  }
}

@media print {
  body {
    zoom: 0.6;
  }
  .sp {
    display: none;
  }
}
/* ~~ フッター ~~ */
@media screen and (min-width: 600px) {
  footer { /* 600px以上のとき */
    background-color: rgba(255, 255, 255, 0.4);
  }
}
@media screen and (max-width: 599px) {
  footer {
    background: url("./images/footer_bk.jpg") center bottom no-repeat;
    min-height: 150px;
  }
}

#fwrap {
  width: 100%;
  display: block;
  text-align: center;
  height: auto;
  border-top: 2px #5B2D36 solid;
}

#farea {
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  #farea {
    width: 360px;
  }
}
@media screen and (min-width: 599px) {
  #farea {
    width: 1200px;
  }
}
@media screen and (min-width: 600px) {
  #farea { /* 600px以上のとき */
    padding-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  #farea {
    padding-top: 5px;
  }
}

.footer1 {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 600px) {
  .footer1 { /* PC */
    width: 100%;
    min-height: 100px;
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .footer1 {
    width: 100%;
    min-height: 150px;
  }
}
.footer1 .f-logo {
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 600px) {
  .footer1 .f-logo { /* 600px以上のとき */ }
}
@media screen and (max-width: 599px) {
  .footer1 .f-logo {
    font-size: 28px;
    padding-top: 5px;
    text-align: center;
  }
}
.footer1 .f-logo a:link, .footer1 .f-logo a:visited {
  text-decoration: none; /* 非常に特殊な表示方法でリンクをスタイル付けする場合を除き、一目で見分けられるように下線を指定することをお勧めします。 */
}
.footer1 .f-addr {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 600px) {
  .footer1 .f-addr { /* pc */
    font-size: 16px;
    float: left;
  }
}
@media screen and (max-width: 599px) {
  .footer1 .f-addr {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
  }
}
.footer1 .f-buttonarea {
  margin: 0 auto;
  width: 70%;
  font-size: 26px;
}
@media screen and (min-width: 600px) {
  .footer1 .f-buttonarea { /* pc */
    display: none;
  }
}
.footer1 .f-buttonarea div {
  float: left;
  width: 80px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer1 .f-buttonarea .b-line {
  color: #3AAE36;
}
.footer1 .f-buttonarea .b-line a:link, .footer1 .f-buttonarea .b-line a:visited, .footer1 .f-buttonarea .b-line a:hover, .footer1 .f-buttonarea .b-line a:active, .footer1 .f-buttonarea .b-line a:focus {
  color: #3AAE36;
}
.footer1 .f-buttonarea .b-youtube {
  color: #FF0000;
}
.footer1 .f-buttonarea .b-youtube a:link, .footer1 .f-buttonarea .b-youtube a:visited, .footer1 .f-buttonarea .b-youtube a:hover, .footer1 .f-buttonarea .b-youtube a:active, .footer1 .f-buttonarea .b-youtube a:focus {
  color: #FF0000;
}

.footer2 {
  padding: 0 0 20px 0;
  text-align: center;
  position: relative;
  height: auto;
  width: 90%;
  margin: 0 auto;
  font-size: 15px;
}
.footer2 .f-home {
  margin: 20px 0 0 20px;
  float: right;
}
.footer2 .fmenu1, .footer2 .fmenu2 {
  float: left;
  margin: 10px 0 0 60px;
  text-align: left;
  display: block;
  height: auto;
  padding: 0 50px 0 0;
  line-height: 2em;
  min-width: 180px;
}
.footer2 .fmenu1 a:link, .footer2 .fmenu2 a:link, .footer2 .fmenu1 a:visited, .footer2 .fmenu2 a:visited, .footer2 .fmenu1 a:hover, .footer2 .fmenu2 a:hover, .footer2 .fmenu1 a:active, .footer2 .fmenu2 a:active, .footer2 .fmenu1 a:focus, .footer2 .fmenu2 a:focus {
  color: #000;
  text-decoration: underline;
}
.footer2 .fmenu1 ul, .footer2 .fmenu2 ul {
  list-style-position: outside;
  margin-left: 40px;
}
.footer2 .fmenu1 ul li, .footer2 .fmenu2 ul li {
  line-height: 1.7em;
}
.footer2 .fmenu2 {
  margin: 10px 0 0 30px;
  padding: 0 30px 0 0;
}

#fcopy {
  background-color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  padding: 0 0 8px 0;
  border-top: 2px #5B2D36 solid;
}
@media screen and (min-width: 600px) {
  #fcopy { /* pc */
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  #fcopy {
    margin-top: 5px;
  }
}
#fcopy div {
  margin: 0 auto;
  min-height: 15px;
  height: auto;
  position: relative;
  font-size: 0.85em;
}/*# sourceMappingURL=style.css.map */