@charset "utf-8";
/* CSS Document */
/* -------------------- 変数 */ :root {
  --color-text: #1A1A1A;
  --color-primaty: #1ca376;
  --color-primaty-rgb: 28, 163, 118;
}
/* -------------------- メディアクエリ */
/*1280px以上はPCを表示*/
/*タブレット横*/
@media screen and (max-width: 1279px) {}
/*タブレット縦*/
@media screen and (max-width: 1023px) {}
/*スマホ*/
@media screen and (max-width: 767px) {}
/* -------------------- font */
/*Hiragino Sans（ヒラギノ角ゴシック）*/
@font-face {
  font-family: Hiragino Sans;
  font-weight: 400;
  src: local(HiraginoSans-W4), local("Hiragino Sans W4");
}
@font-face {
  font-family: Hiragino Sans;
  font-weight: 500;
  src: local(HiraginoSans-W5), local("Hiragino Sans W5");
}
@font-face {
  font-family: Hiragino Sans;
  font-weight: 700;
  src: local(HiraginoSans-W7), local("Hiragino Sans W7");
}
/* -------------------- 全体 */
* {
  font-size: 100%;
  letter-spacing: 0.05em;
}
html {
  font-size: 62.5%; /*htmlのデフォルトフォントを10px(=1rem)*/
  scroll-padding-top: 40px; /*アンカーリンク位置調整*/
}
@media screen and (max-width: 1279px) {
  html {
    scroll-padding-top: 80px; /*アンカーリンク位置調整*/
  }
}
body {
  color: var(--color-text);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  font-size: 1.6em; /*bodyのデフォルトフォントを1.6em(=16px)*/
  /*line-height: 2;*/
  line-height: 1.8;
  /*-webkit-print-color-adjust: exact;*/ /*背景画像を必ず印刷する*/
  background: #efebe8;
  word-break: break-word; /*長いテキストをはみ出させない*/
}
/* -------------------- menu表示時に背景を固定 */
body.open {
  overflow: hidden;
}
/* -------------------- 解除 */
hr.clear {
  clear: both;
  height: 1px;
  margin: 0;
  border: 0px;
  border: 1px solid transparent;
  color: #fff;
}
/* -------------------- sp */
.pc {}
.sp {
  display: none;
}
/* -------------------- 本文 */
p {
  margin: 1em 0;
}
hr {
  margin: 1em 0;
  color: #ccc;
}
/* -------------------- 画像 */
img {
  max-width: 100%;
  height: auto;
}
/* -------------------- リンク */
a {
  color: #1a73e8;
}
@media (any-hover: hover) {
  a:hover {
    color: #76abf1;
  }
  a:hover img {
    opacity: 0.8;
  }
}
/* -------------------- ボタン */
/*normal*/
#container a.btn {
  display: inline-block;
  position: relative;
  z-index: 0;
  min-width: 240px;
  /*margin: 20px 0;*/
  margin: 8px 0;
  padding: 16px 56px 16px 32px;
  border-radius: 100vh;
  background: var(--color-primaty);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.4;
  transition: all 0.4s;
}
#container a.btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 14px;
  bottom: 0;
  width: 28px;
  height: 28px;
  margin: auto;
  border-radius: 100vh;
  background: #fff url("../img/icon_arrow_green.svg") center center no-repeat;
  background-size: 50% auto;
  transition: all 0.4s;
}
@media (any-hover: hover) {
  #container a.btn:hover {
    opacity: 0.8;
  }
  #container a.btn:hover::before {
    right: 10px;
  }
}
/*file*/
#container a.btn_file {}
/* -------------------- color */
.red {
  color: #ff0000;
}
.green {
  color: var(--color-primaty);
}
/* -------------------- border */
.border {
  border: 1px solid #ccc;
}
/* -------------------- float */
.f_left {
  float: left;
}
.f_right {
  float: right;
}
.clear {
  clear: both;
}
/* -------------------- position */
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
/*----------------------- file */
a[href$=".pdf"]::after {
  display: inline-block;
  padding-right: 20px;
  background-image: url("../img/pdf.svg");
  background-repeat: no-repeat;
  background-position: 2px center;
  content: ".";
  text-indent: -9999px;
}
a[href$=".doc"]::after {
  display: inline-block;
  padding-right: 20px;
  background-image: url(../img/doc.svg);
  background-repeat: no-repeat;
  background-position: 2px center;
  content: ".";
  text-indent: -9999px;
}
a[href$=".docx"]::after {
  display: inline-block;
  padding-right: 20px;
  background-image: url(../img/doc.svg);
  background-repeat: no-repeat;
  background-position: 2px center;
  content: ".";
  text-indent: -9999px;
}
a[href$=".xls"]::after {
  display: inline-block;
  padding-right: 20px;
  background-image: url(../img/xls.svg);
  background-repeat: no-repeat;
  background-position: 2px center;
  content: ".";
  text-indent: -9999px;
}
a[href$=".xlsx"]::after {
  display: inline-block;
  padding-right: 20px;
  background-image: url(../img/xls.svg);
  background-repeat: no-repeat;
  background-position: 2px center;
  content: ".";
  text-indent: -9999px;
}
a[href$=".ppt"]::after, a[href$=".pptx"]::after {
  display: inline-block;
  padding-right: 20px;
  background-image: url(../img/pp.svg);
  background-repeat: no-repeat;
  background-position: 2px center;
  content: ".";
  text-indent: -9999px;
}
/* -------------------- fileアイコンなし */
a.no_icon::after {
  content: none;
}
/* -------------------- 外部リンク */
a.external::after {
  content: ".";
  display: inline-block;
  padding-right: 1em;
  background-image: url(../img/icon_external.svg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 0.8em;
  text-indent: -9999px;
}
/* -------------------- 電話番号リンク無効化（Brava） */
.no-link a {
  pointer-events: none !important;
  color: inherit !important;
  text-decoration: none !important;
}
/* -------------------- header */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*position: fixed;*/
  /*z-index: 99999;*/
  width: 100%;
  height: 80px;
  margin: 0;
  padding: 0 40px;
  background: #fff;
}
#header .header_logo {}
#header .header_logo .logo {
  width: 300px;
  margin: 0;
  line-height: 1;
}
/* -------------------- nav */
nav {
  position: relative;
}
/* -------------------- gnav */
.gnav {
  display: none;
}
.gnav_list {}
.gnav_list > li {}
.gnav_list > li > a {}
/* @media (any-hover: hover) {
  .gnav_list > li > a:hover {}
} */
/* ---------- gnav sp */
@media screen and (max-width: 1279px) {
  .gnav {
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 24px;
    background: var(--color-primaty);
    opacity: 0;
    /*transform: translateY(-100%);*/
    pointer-events: none; /*クリックさせない*/
    overflow-y: scroll;
    transition: opacity 0.3s ease-out;
  }
  /*スクロールバー*/
  nav .gnav::-webkit-scrollbar {
    width: 7px;
  }
  nav .gnav::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 3px;
  }
  nav .gnav::-webkit-scrollbar-track {
    background: rgba(100, 100, 100, .5);
  }
  /*gnav表示時*/
  .gnav.open {
    opacity: 1;
    pointer-events: all;
  }
  /*gnav_list*/
  .gnav_list {
    width: 100%;
  }
  .gnav_list > li {
    text-align: center;
  }
  .gnav_list > li > a {
    display: block;
    position: relative;
    width: 100%;
    margin: 8px 0 0 0;
    padding: 16px 24px;
    border-bottom: 2px dotted #fff;
    color: #fff;
    text-decoration: none;
  }
}
/* -------------------- toggle */
nav .toggle {
  display: none;
}
@media screen and (max-width: 1279px) {
  /* ---------- toggle */
  nav .toggle * {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  nav .toggle {
    display: block;
    position: fixed;
    z-index: 99999;
    /*top: 32px;*/
    top: 26px;
    bottom: 0;
    right: 24px;
    width: 32px;
    height: 16px;
    padding: 0;
    background: none;
    border: none;
    text-align: center;
    letter-spacing: 0.1em;
    cursor: pointer;
    outline: none;
  }
  nav .toggle::before {
    content: "";
    position: fixed;
    top: 0px;
    right: 0px;
    width: 80px;
    height: 80px;
    background: var(--color-primaty);
  }
  nav .toggle .bar01, nav .toggle .bar02, nav .toggle .bar03 {
    display: block;
    position: absolute;
    left: 0;
    width: 32px;
    height: 2px;
    transition: all 0.2s;
    transform-origin: 0% 0%;
    transform: translateY(-50%);
    background: #fff;
  }
  nav .toggle .bar01 {
    top: 0;
  }
  nav .toggle .bar02 {
    top: 50%;
  }
  nav .toggle .bar03 {
    top: 100%;
  }
  nav .toggle.active::before {
    background: transparent;
  }
  nav .toggle.active .bar01, nav .toggle.active .bar02, nav .toggle.active .bar03 {
    width: 35.78px;
    left: 0px;
    background: #fff;
  }
  nav .toggle.active .bar01 {
    transform: rotate(0.4636476090008061rad) translateY(-50%);
    top: 0px;
  }
  nav .toggle.active .bar02 {
    opacity: 0;
  }
  nav .toggle.active .bar03 {
    transform: rotate(-0.4636476090008061rad) translateY(-50%);
    top: calc(100% - 0px);
  }
  /*文字*/
  nav .toggle .txt {
    display: block;
    position: absolute;
    left: -14px;
    bottom: -24px;
    width: 60px;
    font-size: 1.1rem;
    transition: all 0.2s;
  }
  nav .toggle .txt::before {
    content: "MENU";
    color: #fff;
  }
  nav .toggle.active .txt::before {
    content: "閉じる";
    /* color: #ed737f; */
  }
  /* ---------- overlay */
  /*nav .overlay {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, 0.7);
    top: 0;
    left: 0;
  }*/
}
/* -------------------- megamenu */
/* -------------------- subnav */
/* -------------------- main */
#main {
  display: block; /*IE用*/
  position: relative;
  width: 100%;
  padding: 64px 0 96px 0;
  overflow-x: hidden;
}
/*-------------------- container */
#container {}
/*-------------------- common */
.inner_common {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.inner_common .block_common {
  border-radius: 16px;
  background: #fff;
  padding: 40px 32px;
}
/* -------------------- footer */
#footer {
  position: relative;
  width: 100%;
  padding: 65px 0 0 0;
  background: linear-gradient(0deg, rgba(28, 163, 118, 1.00) 0%, 75%, rgba(124, 203, 129, 1.00) 100%);
}
#footer .footer_top {
  display: flex;
  position: absolute;
  top: 0;
  width: 100%;
  height: 65px;
}
#footer .footer_top .bg {
  flex: 1;
  height: 100%;
  background: #efebe8;
}
#footer .footer_top .pic {
  position: relative;
  z-index: 1;
  width: 476px;
  height: 100%;
  margin: 0;
  background: url("../img/footer_bg.svg") center center no-repeat;
}
#footer .footer_top .pic::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 60px;
  left: 0;
  margin: auto;
  width: 55px;
  height: 78px;
  background: url("../img/footer_pic.svg") center center no-repeat;
  background-size: contain;
}
#footer .inner_common {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
#footer .inner {
  padding: 40px 0;
}
#footer .content {
  display: flex;
  justify-content: space-between;
}
#footer .content .box {
  color: #fff;
}
#footer .content .box .title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 500;
}
#footer .content .box .address {
  margin: 24px 0 0 0;
  font-size: 1.4rem;
}
#footer .content .list_link {}
#footer .content .list_link li {
  margin: 12px 0 0 0;
}
#footer .content .list_link li a {
  display: inline-block;
  position: relative;
  min-width: 120px;
  padding: 8px 36px 8px 12px;
  border: 1px solid #fff;
  border-radius: 100vh;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1;
  transition: all 0.4s;
}
#footer .content .list_link li a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  background: url("../img/icon_external.svg") center center no-repeat;
}
#footer .copyright {
  margin: 16px 0 0 0;
  color: #fff;
  text-align: right;
  line-height: 1;
}
#footer .copyright small {
  font-size: 1.2rem;
}
/* -------------------- pagetop */
.pagetop {
  display: none !important;
}
/* -------------------- sample */
/* ---------- sample */
/*sample*/