@charset "utf-8";
/*リセットCSS*/
@import url("https://unpkg.com/sanitize.css");
/*Font Awesome*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
/*Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
/*slick.css*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");
/*css*/
@import url("animation.css");
@import url("inview.css");

/*全体*/
html, body {
  margin: 0;
  padding: 0;
  font-size: 13px;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-text-size-adjust: none;
  letter-spacing: 0.05em;
  background: #fff;
  color: #555;
  line-height: 2;
}

.bold {
  font-weight: 700;
}

.medium {
  font-weight: 500;
}

/*リセット*/
figure {
  margin: 0;
}

dd {
  margin: 0;
}

nav {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

video {
  max-width: 100%;
}

iframe {
  width: 100%;
}

ul, ol {
  margin-bottom: 30px;
}

/*リンクテキスト全般*/
a {
  color: #000;
  transition: 0.3s;
}

a:hover {
  /*opacity: 0.8;*/
  color: #009A59;
}

/*section、詳細ページ*/
section,
main>article {
  margin: 0 auto;
  padding: 4%;
}

/*2カラムブロック（※900px未満で１カラム）*/
/*２カラムを囲むブロック*/
.c2 {
  display: flex;
  flex-direction: column;
}

.c2 h2 {
  font-size: 1.6em;
}

@media screen and (max-width: 640px) {
  .c2 h2 {
    font-size: 1.4em;
  }
}

/*１カラム画像先頭*/
.c2 .image {
  order: -1;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #EDF6F5;
  position: fixed;
  z-index: 1;
  width: 100%;
  padding: 0 3%;
  height: 80px;
}

header a {
  color: #555;
}

header #logo img {
  display: block;
}

header #logo {
  margin: 0;
  width: 110px;
}

/*TOPMV*/
#mainimg {
  width: 100%;
  height: 0;
  padding: 0;
  padding-top: 56.25%;
  position: relative;
  top: 80px;
  /*headerのheightの数値合わせる*/
  overflow: hidden;
  background: url(../images/mainimg.jpg) no-repeat center center / 100%;
  color: #fff;
}

/*menubarブロック初期設定--*/
#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*メニュー非表示*/
#menubar {
  display: none;
}

/*開閉スタイル*/
#menubar.db {
  display: block;
}

#menubar.dn {
  display: none;
}

#menubar a {
  display: block;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 10px;
  font-size: 16px;
}

/*小端末用設定（開閉ブロック）*/
.s #menubar.db {
  position: fixed;
  overflow: auto;
  z-index: 100;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 70px 0;
  background: rgba(246, 255, 250, 0.9);
  color: #000;
  animation: animation1 0.2s both;
  text-align: center;
}

.s #menubar.db a {
  color: #000;
  padding: 20px;
}

/*ドロップダウン*/
#menubar .ddmenu_parent ul {
  display: none;
}

a.ddmenu::before {
  font-family: "Font Awesome 5 Free";
  content: "\f103";
  font-weight: bold;
  margin-right: 0.5em;
}

a.ddmenu {
  cursor: default;
}

.ddmenu_parent ul a {
  background: rgba(255, 255, 255, 0.6);
}

.ddmenu_parent ul a:hover {
  color: #009A59;
  background: rgba(255, 255, 255, 0.9);
}

/*ハンバーガーアイコン*/
#menubar_hdr.db {
  display: flex;
}

#menubar_hdr.dn {
  display: none;
}

#menubar_hdr {
  position: fixed;
  z-index: 101;
  cursor: pointer;
  right: 5px;
  top: 10px;
  padding: 16px 14px;
  width: 46px;
  height: 46px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

#menubar_hdr span {
  display: block;
  transition: 0.3s;
  border-top: 2px solid #fff;
}

#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
  transform-origin: center center;
  width: 20px;
}

#menubar_hdr.ham span:nth-of-type(1) {
  transform: rotate(45deg) translate(3.8px, 5px);
}

#menubar_hdr.ham span:nth-of-type(3) {
  transform: rotate(-45deg) translate(3.8px, -5px);
}

#menubar_hdr.ham span:nth-of-type(2) {
  display: none;
}

/*mainブロック*/
main {
  padding-top: 100px;
}

main h2 {
  margin: 0 0 1em;
  line-height: 1.5;
  font-size: 1.8em;
  text-align: center;
  letter-spacing: 0.2em;
  color: #555;
  font-family: 'Noto Serif JP', serif;
}

main h2 span {
  display: block;
  font-weight: normal;
  color: #777;
  font-size: 13px;
}

main h3 {
  margin: 0 0 1em;
  color: #555;
  font-size: 2em;
}

main p {
  margin: 0 20px 30px;
}

main p+p {
  margin-top: -15px;
}

.green {
  color: #009A59;
  padding-top: 1em;
}

.info {
  width: 65%;
  position: relative;
  padding: 0.5rem 2rem 0rem;
}

.title_inner {
  margin: 1.8rem 0;
}

.bg-maininner {
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width:640px) {
  main h2 {
    font-size: 1.35em;
  }

  .info {
    width: 95%;
    position: relative;
  }
}

.info p {
  padding-top: 15px;
  justify-content: center;
}

.border {
  background-image: linear-gradient(to right, #ccc, #ccc 10px, transparent 5px, transparent 15px);
  background-size: 15px 4px;
  background-position: bottom;
  background-repeat: repeat-x;
  padding-top: 5px;
  width: 65%;
  margin: 0 auto;
}

.center {
  text-align: center;
}

.info .deco_01 {
  position: absolute;
  left: -9.6rem;
  top: 7rem;
  width: 25%;
}

.info .deco_02 {
  position: absolute;
  right: -7rem;
  top: 7rem;
  width: 25%;
}

@media screen and (max-width: 740px) {
  .info .deco_01 {
    width: 28%;
    left: -15px;
    top: inherit;
    bottom: 0;
  }

  .info .deco_02 {
    width: 28%;
    right: -15px;
    top: inherit;
    bottom: 0;
  }
}

/*フッター*/
footer small {
  font-size: 100%;
}

footer {
  font-size: 0.7rem;
  text-align: center;
  padding: 20px;
  background: #009A59;
  color: #fff;
}

footer a:hover {
  color: #E06DAA;
}

footer a {
  text-decoration: none;
  color: #fff;
}

footer .pr {
  display: block;
}

.footer_logo img {
  max-width: 150px;
}

.bg_footer {
  background-image: url(../images/bg_footer.png);
  background-repeat: repeat-x;
  width: auto;
  height: 75px;
}

#flex-container {
  background: #EDF6F5;
  display: flex;
  justify-content: center;
  padding: 2.8rem 0 1rem;
  position: relative;
}

#flex-container:after {
  content: '';
  position: absolute;
  left: 50%;
  width: 60%;
  height: 2px;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #ccc;
}

.flex-item, .flex-item2 {
  padding: 0 1rem;
}

@media screen and (max-width: 900px) {
  #flex-container {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 370px) {
  #footermenu:before {
    width: 70%;
  }
}

/*フッター*/
#footermenu {
  position: relative;
  background: #EDF6F5;
  color: #444;
  font-size: 0.7em;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#footermenu a {
  text-decoration: none;
  color: #444;
}

#footermenu a:hover {
  color: #009A59;
}

#footermenu ul {
  margin: 0;
  padding: 0 0 0 45px;
  flex: 1;
  list-style: none;
}

#footermenu .title {
  font-weight: bold;
  color: #444;
  padding-bottom: 5px;
}

/*listブロック*/
.list-container .list {
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  color: #555;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 20px;
}

.list-container .list h4 {
  margin: 0;
  color: #009A59;
}

.list-container .list h4 a {
  color: #666;
}

.list-container .list p {
  margin: 0;
  font-size: 0.8em;
}

.list-container ul {
  margin: 10px;
}

.list-container li, ol {
  font-size: 0.8em;
  line-height: 1.5;
}

.list-container .list .new {
  font-size: 0.6em;
  background: #ff0000;
  color: #fff;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: -10px;
  top: -10px;
  transform: rotate(-30deg);
}


/*FAQ*/
.faq {
  padding: 0 5px;
}

.faq dt {
  border-radius: 3px;
  margin-bottom: 20px;
  background: linear-gradient(#fff, #f7f7f7);
  text-indent: -2em;
  padding: 5px 1em 5px 3em;
  border: 1px solid #e4e2d7;
}

.faq dt::before {
  font-family: "Font Awesome 5 Free";
  content: "\f059";
  color: #a47e59;
  padding-right: 1em;
}

.faq dd {
  padding: 5px 1em 30px 3em;
}

/*openclose要素のカーソル*/
.openclose {
  cursor: pointer;
}

.faq dt span {
  text-indent: 0;
}

/*icon*/
.icon {
  display: inline-block;
  margin: 1px;
  line-height: 1.5;
  padding: 0px 10px;
  border: 1px solid #999;
  color: #999;
  font-weight: normal;
  font-size: 0.8em;
}

.icon.newicon {
  border-color: transparent;
  background: #f00;
  color: #fff;
}

.icon.upicon {
  border-color: transparent;
  background: #54b1ff;
  color: #fff;
}

/*btn*/
a.btn1, a.btn2 {
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.1em;
  padding: 8px 70px;
  font-size: 1.2em;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
}

a.btn1 {
  background: #DFE166;
  color: #555;
}

a.btn2 {
  background: #a47e59;
  color: #fff;
}

.radius {
  border-radius: 5px 100px 100px 5px;
}

a.btn1 i, a.btn2 i {
  margin-left: 20px;
}

a:hover.btn1, a:hover.btn2 {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.w1200 {
  max-width: 1200px;
  margin: 0 auto;
}

.area {
  padding: 2.5em 0;
}

/*テーブル*/
.ta1 caption {
  padding: 10px 5px;
  background: #eee;
  margin-bottom: 15px;
}

.ta1 {
  background: #fff;
  width: 100%;
  margin: 0 auto 30px;
}

.ta1 tr {
  border-bottom: 1px solid #f2f2f2;
}

.ta1 th, .ta1 td {
  padding: 10px 5px;
  word-break: break-all;
}

.ta1 th {
  width: 30%;
  text-align: left;
  color: #009A59;
}

.c-button {
  display: inline-block;
  border-radius: 5%;
  font-size: 13px;
  text-align: center;
  cursor: pointer;
  padding: 12px 12px;
  background: #ffffff;
  color: #555;
  line-height: 1em;
  transition: .3s;
  box-shadow: 3px 3px 4px #666666;
}

.c-button:hover {
  box-shadow: none;
  opacity: 1;
}

@media screen and (max-width: 400px) {
  .ta1 tr,
  .ta1 th,
  .ta1 td {
    display: block;
    width: auto;
    padding: 1% 6%;
  }
}

/*背景色*/
.bg1 {
  background: #EDF6F5;
}

.bg2 {
  background: #fbefe2;
}

.bg3 h2 {
  color: #555;
}

/*PAGE TOP（↑）*/
.pagetop-show {
  display: block;
}

.pagetop a {
  display: block;
  text-decoration: none;
  text-align: center;
  z-index: 99;
  position: fixed;
  right: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 1.5em;
  background: rgba(0, 0, 0, 0.2);
  width: 60px;
  line-height: 60px;
  border-radius: 50%;
}

/*グーグルマップ*/
.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.gmap iframe {
  position: absolute;
}

/*SDGs*/
.sdgs {
  padding: 5px;
}

.sdgs img {
  max-width: 200px;
  width: 100%;
}

.sdgs h4 {
  text-align: center;
  color: #E06DAA;
}

/*その他*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.color-theme, .color-theme a {
  color: #a47e59 !important;
}

.color-check, .color-check a {
  color: #f00 !important;
}

.c {
  text-align: center !important;
}

.ws {
  width: 95%;
  display: block;
  padding: 0.5em
}

.wl {
  width: 95%;
  display: block;
  padding: 0.5em
}

select {
  width: 95%;
  padding: 0.5em;
  font-size: 14px;
  background-color: #fff;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.look {
  display: inline-block;
  padding: 0px 10px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 2px 0;
  word-break: break-all;
}

.small {
  font-size: 0.6em;
  letter-spacing: normal !important;
}

.large {
  font-size: 1.8em !important;
}

.block {
  display: block !important;
}

.sh {
  display: block;
}

.pc {
  display: none;
}

.hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

/*900px以下*/
@media screen and (max-width:900px) {
  #footermenu {
    position: relative;
    background: #EDF6F5;
    color: #444;
    font-size: 0.8em;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

/*400px以下*/
@media screen and (max-width:400px) {
  a.btn1, a.btn2 {
    padding: 0px 15px;
  }

  a.btn1 i, a.btn2 i {
    margin-left: 10px;
  }

  #footermenu {
    position: relative;
    background: #EDF6F5;
    color: #444;
    font-size: 0.8em;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

}

/*900px以上*/
@media screen and (min-width:900px) {

  html, body {
    font-size: 18px;
  }

  .c2 {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-left: -6%;
    margin-right: -6%;
  }

  .c2 .image {
    width: 60%;
  }

  .c2 .text {
    width: 40%;
    padding: 0 3%;
  }

  .c2 .l {
    order: -1;
  }

  .c2 .image.r {
    overflow: hidden;
    border-radius: 100px 0px 0px 100px;
  }

  .c2 .image.l {
    overflow: hidden;
    border-radius: 0px 100px 100px 0px;
  }

  #mainimg #text {
    width: 50%;
  }

  #menubar {
    font-size: 0.85em;
  }

  #menubar ul {
    display: flex;
  }

  #menubar a {
    padding: 10px 15px;
  }

  #menubar .ddmenu_parent ul {
    position: absolute;
  }

  #menubar_hdr {
    display: none;
  }

  #footermenu {
    font-size: 0.9em;
    padding: 20px 150px;
  }

  .list-container {
    display: flex;
    flex-wrap: wrap;
  }

  .list-container .list {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 32%;
    margin-right: 2%;
  }

  .list-container .list figure {
    margin: 0 auto;
  }

  .list-container .list:nth-of-type(3n) {
    margin-right: 0;
  }

  .list-container .list .text {
    flex: 1;
  }

  .ta1 caption {
    padding: 5px 15px;
  }

  .ta1 th, .ta1 td {
    padding: 20px 15px;
    padding-left: 40px;
  }

  .ta1 th {
    width: 30%;
    padding-left: 100px;
    font-size: 17px;
  }

  /*その他*/
  .ws {
    width: 48%;
    display: inline;
    padding: 0.5em
  }

  .sh {
    display: none;
  }

  .pc {
    display: inline-block;
  }

}

.head {
  padding-left: 10px;
}

.head::before {
  content: '';
  display: inline-block;
  background: url("../images/icon_01.png");
  vertical-align: middle;
  width: 30px;
  height: 30px;
  background-size: contain;
  margin-right: 10px;
}

#flex-img {
  display: flex;
}

#flex-img .item {
  width: 33%;
  flex-direction: column;
}

@media screen and (min-width: 900px) {
  .right {
    float: right;
    width: 33%;
    padding-right: 3%
  }

  .left {
    float: left;
    width: 64%;
  }
}

@media screen and (min-width: 900px) {
  .left2 {
    float: left;
    width: 33%;
    padding-left: : 3%
  }

  .right2 {
    float: right;
    width: 64%;
  }
}

/*下部のお問い合わせ*/
.max-w1200 {
  max-width: 1200px;
  padding: 2%;
}

.max-w1200 h2 span {
  display: block;
  font-weight: normal;
  color: #777;
  font-size: 15px;
}

#contact {
  height: auto;
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}

#contact img {
  width: 38px;
  height: auto;
}

@media screen and (max-width: 900px) {
  #contact {
    flex-direction: column;
  }
}

#contact p {
  font-weight: 600;
  font-size: 1.3em;
  line-height: 1.5;
  margin: 0 0.7em;
}

.tel, .mail {
  min-width: 450px;
  margin: 0.4em;
  padding: 0.6em;
  border: dotted 3px #E06DAA;
}

.tel, .mail {
  min-width: 450px;
  margin: 0.4em;
  padding: 0.6em;
  border: dotted 3px #E06DAA;
  color: #555;
}

.tel a {
  color: #555;
  text-decoration: none;
}

@media(min-width: 900px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width:900px) {
  .tel, .mail {
    margin: 0.5em 0;
  }
}

@media screen and (max-width:500px) {
  .tel, .mail {
    min-width: 100%;
  }
}

.mail {
  position: relative;
  transition: 0.3s ease-in-out;
  z-index: 0;
  color: #555;
  text-decoration: none;
}

.mail :before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  background: #E06DAA;
  transition: .3s;
  left: 0;
}

.mail ::after {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: bold;
  font-size: 32px;
  position: absolute;
  top: 0%;
  left: 50%;
}

@media screen and (max-width:900px) {
  .mail ::after {
    left: 47%;
  }
}

.fa-phone {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: bold;
  font-size: 32px;
}

.mail :hover {
  color: #FFF;
}

.mail :hover:before {
  width: 100%;
  z-index: -1;
}

.list-container img {
  max-height: 200px;
}

/*改行*/
.sma {
  display: none;
}

@media screen and (max-width:900px) {
  .sma {
    display: block;
  }
}

/*非表示*/
@media screen and (max-width: 900px) {
  .sma-erase {
    display: none !important;
  }
}

/*LINE*/
.qrcode {
  height: auto;
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0.4em;
}

/*お問い合わせフォーム*/
.c-form_text {
  color: #c02828;
  font-size: 10px;
  font-weight: 400;
}

.required_right {
  color: #c02828;
  font-size: 12px;
  font-weight: 400;
  text-align: right;
}
