@charset "UTF-8";
:root {
  --border-radius-img: 20px;
}

/*****************************************************************
コーポレートサイト ベースレイアウト設定ファイル（common.css）
    - Version: 1.0.0 (2017/09/04)
    - Create:  (2017/09/04)
    - Release: (yyyy/mm/dd)
*****************************************************************/
/*==========================================
/
/ 1■body
/ 2■common
/ 3■header
/ 4■breadcrumbs
/ 5■title
/ 6■footer
/ 7■slider(top)
/ 8■contents
/ 9■news
/ 10■faq
/ 11■free
/
==========================================*/
/******************************************************************
  1■body
*****************************************************************/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.075em;
  font-family: Noto Sans JP, "ヒラギノ角 Pro W3", "Hiragino Kaku Pro W3", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
@media (max-width: 767.98px) {
  body {
    font-size: 1.5rem;
  }
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

.main {
  padding-top: 104px;
}

/******************************************************************
  2■common
*****************************************************************/
a {
  color: #333;
  text-decoration: underline;
  transition: opacity 0.25s linear;
}
a:link {
  color: #333;
  text-decoration: underline;
}
@media (any-hover: hover) {
  a:hover {
    color: #333;
    text-decoration: none;
  }
}
a:focus {
  color: #333;
  outline: none;
  outline-offset: 0;
}
a.link-arrow {
  display: inline-block;
  padding-left: 16px;
  position: relative;
}
a.link-arrow::before, a.link-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-right: 0;
  content: "";
  vertical-align: middle;
  opacity: 1;
}
a.link-arrow::before {
  left: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}
a.blank::after {
  content: url("../img/common/icon-blank.png");
  margin-left: 6px;
}

@media (any-hover: hover) {
  section a:hover {
    opacity: 0.8;
  }
}
a[href^="tel:"] {
  cursor: default;
  text-decoration: none !important;
}
@media (any-hover: hover) {
  a[href^="tel:"]:hover {
    opacity: 1;
  }
}

.btn-02 {
  display: table;
  min-width: 268px;
  margin: 32px auto 0;
}
.btn-02 a {
  display: table-cell;
  border-radius: 1.1em;
  text-align: center;
  vertical-align: middle;
  background-color: #03A24A;
  padding: 0.6em;
  font-size: 2.4rem;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 2px;
}
@media (max-width: 767.98px) {
  .btn-02 a {
    font-size: 2rem;
  }
}

.btn-01 {
  --btn-color: #03A24A;
}
.btn-01 a {
  display: grid;
  align-items: center;
  width: 100%;
  padding: 22px;
  border: 3px solid var(--btn-color);
  border-radius: 50vh;
  background-color: var(--btn-color);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  grid-template: ". text icon" auto/1fr auto 1fr;
  transition: background-color 0.3s, color 0.3s;
  max-width: 400px;
}
@media (max-width: 767.98px) {
  .btn-01 a {
    padding: 12px;
    font-size: 1.6rem;
    max-width: none;
    border-width: 2px;
  }
}
@media (any-hover: hover) {
  .btn-01 a:hover {
    background-color: #fff;
    color: var(--btn-color);
    opacity: 1;
  }
}
.btn-01-text {
  grid-area: text;
}
.btn-01-icon {
  position: relative;
  grid-area: icon;
  justify-self: end;
  width: 32px;
  aspect-ratio: 1;
  border-radius: 50vw;
  background-color: #fff;
  transition: background-color 0.3s;
}
.btn-01-icon::before, .btn-01-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30%;
  height: 2px;
  background-color: var(--btn-color);
  transition: background-color 0.3s;
}
.btn-01-icon::before {
  width: 12px;
}
.btn-01-icon::after {
  top: calc(50% - 1px);
  width: 6px;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}
@media (any-hover: hover) {
  a:hover .btn-01-icon {
    background-color: var(--btn-color);
  }
  a:hover .btn-01-icon::before, a:hover .btn-01-icon::after {
    background-color: #fff;
  }
}
.btn-01 {
  /* オレンジ
  ------------------------------*/
}
.btn-01-orange {
  --btn-color: #F26C13;
}
.btn-01 {
  /* 白（緑の逆パターン）
  ------------------------------*/
}
.btn-01-white a {
  background-color: #fff;
  color: var(--btn-color);
}
.btn-01-white .btn-01-icon {
  background-color: var(--btn-color);
}
.btn-01-white .btn-01-icon::before, .btn-01-white .btn-01-icon::after {
  background-color: #fff;
}
@media (any-hover: hover) {
  .btn-01-white a:hover {
    background-color: var(--btn-color);
    color: #fff;
  }
  .btn-01-white a:hover .btn-01-icon {
    background-color: #fff;
  }
  .btn-01-white a:hover .btn-01-icon::before, .btn-01-white a:hover .btn-01-icon::after {
    background-color: var(--btn-color);
  }
}
.btn-01-center a {
  margin-inline: auto;
}
.btn-01-pdf .btn-01-text {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .btn-01-pdf .btn-01-text {
    gap: 16px;
  }
}
.btn-01-pdf .btn-01-text::before {
  content: "";
  aspect-ratio: 5/6;
  width: 30px;
  background-color: #fff;
  background: url(/csd/img/icon/pdf/pdf-003.png) center/contain;
  flex: 0 0 auto;
}
@media (max-width: 767.98px) {
  .btn-01-pdf .btn-01-text::before {
    width: 26px;
  }
}
.btn-01-wide a {
  max-width: 540px;
  line-height: 1.25;
}

/******************************************************************
  3■header
*****************************************************************/
header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 104px;
  border-top: 4px solid #03A24A;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.9);
  transition: height 0.1s ease;
}
header .container {
  max-width: none;
  width: 100%;
}
@media (min-width: 768px) {
  header .container {
    padding-inline: 40px;
  }
}
header .header-logo {
  display: flex;
  align-items: center;
  height: 100px;
  margin: 0;
  font-size: 1.2rem;
  transition: height 0.2s ease;
  max-width: 258px;
}
@media (min-width: 992px) {
  header .header-logo img {
    width: 100%;
  }
}
header .row {
  position: relative;
}
header .nav {
  display: flex;
  justify-content: flex-end;
}
header .nav li {
  color: #333;
  font-weight: bold;
  font-size: 1.6rem;
}
@media (min-width: 992px) {
  header .nav li {
    padding: 0 16px;
    font-weight: 500;
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  header .nav li {
    padding: 0 30px;
    font-size: 1.8rem;
  }
}
header .nav li a {
  display: flex;
  align-items: center;
  height: 100px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
header .nav li a span {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
header .nav li a span.focus {
  border-bottom-color: #03A24A;
  color: #03A24A;
}
@media (any-hover: hover) {
  header .nav li:not(.contact-btn) a:hover {
    color: #03A24A;
  }
  header .nav li:not(.contact-btn) a:hover span {
    border-bottom-color: #03A24A;
  }
}
header .nav li.contact-btn {
  position: relative;
  text-align: center;
}
@media (min-width: 768px) {
  header .nav li.contact-btn {
    padding-right: 0;
  }
}
header .nav li.contact-btn a {
  flex-direction: column;
}
@media (max-width: 991.98px) {
  header .nav li.contact-btn a {
    background-color: #F26C13;
    border-radius: 4px;
    gap: 4px;
    margin-top: 32px;
    padding: 16px 24px;
  }
}
@media (max-width: 991.98px) {
  header .nav li.contact-btn a::before {
    content: none !important;
  }
}
@media (any-hover: hover) {
  header .nav li.contact-btn a:hover {
    opacity: 0.8;
  }
}
header .nav li.contact-btn .contact-btn-text {
  color: #fff;
  letter-spacing: 0.2em;
  line-height: 1.5;
}
@media (min-width: 992px) {
  header .nav li.contact-btn .contact-btn-text {
    padding: 20px 24px 6px;
    min-width: 200px;
    background: #F26C13;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 0 #C14D00;
  }
}
@media (max-width: 991.98px) {
  header .nav li.contact-btn .contact-btn-text {
    font-size: 1.8rem;
  }
}
header .nav li.contact-btn {
  --move-h:15px;
}
header .nav li.contact-btn .contact-btn-ribbon {
  font-size: 1.3rem;
  color: #F5F525;
}
@media (max-width: 991.98px) {
  header .nav li.contact-btn .contact-btn-ribbon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }
  header .nav li.contact-btn .contact-btn-ribbon::before, header .nav li.contact-btn .contact-btn-ribbon::after {
    content: "";
    background-color: #F5F525;
    height: 1px;
    width: 18px;
  }
  header .nav li.contact-btn .contact-btn-ribbon::before {
    transform: rotate(60deg);
  }
  header .nav li.contact-btn .contact-btn-ribbon::after {
    transform: rotate(-60deg);
  }
}
@media (min-width: 992px) {
  header .nav li.contact-btn .contact-btn-ribbon {
    position: relative;
    display: block;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: bold;
    position: relative;
    top: var(--move-h);
    z-index: 1;
    margin-bottom: 0;
    padding: 4px 18px;
    background: #fff;
    border: 2px solid #F26C13;
    border-radius: 50vw;
    color: #F26C13;
    font-size: 1.2rem;
  }
  header .nav li.contact-btn .contact-btn-ribbon:before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    bottom: -13px;
    border-width: 7px 7px 0;
    border-style: solid;
    border-color: #F26C13 transparent transparent;
  }
  header .nav li.contact-btn .contact-btn-ribbon::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    bottom: -6px;
    border-width: 7px 7px 0;
    border-style: solid;
    border-color: #fff transparent transparent;
    margin: 0;
  }
}
header .nav .drawer-menu,
header .nav .drawer-menu span {
  display: none;
}
@media (min-width: 992px) {
  header.mini-header {
    height: 80px;
    transition: all 0.2s ease;
  }
  header.mini-header .header-logo {
    height: 76px;
  }
  header.mini-header .header-logo img {
    width: 76%;
    transition: width 0.2s ease;
  }
  header.mini-header nav li {
    font-weight: 500;
  }
  header.mini-header nav li a {
    height: 76px;
    padding: 15px 0 7px;
    transition: all 0.2s ease;
    font-size: 1.6rem;
  }
  header.mini-header .contact-btn a {
    padding: 0;
    font-size: 1.4rem;
    line-height: 1;
  }
  header.mini-header .contact-btn-ribbon {
    margin-top: -8px;
  }
}

@media print {
  header {
    position: absolute;
  }
}
@media (max-width: 991.98px) {
  .main {
    padding-top: 50px;
  }
  header {
    height: 50px;
    transition: all 0.2s ease;
  }
  header .container {
    width: 100%;
    padding: 0;
  }
  .sm-header {
    width: 100%;
    padding: 0 24px;
    background-color: #fff;
  }
  header .header-logo {
    height: 50px;
  }
  .header-logo img {
    width: auto;
    height: 28px;
  }
  ul.nav {
    display: none;
    padding: 0 28px;
  }
  .drawer-menu {
    display: block;
    position: absolute;
    top: 16px;
    right: 24px;
    width: 24px;
    height: 17px;
    cursor: pointer;
  }
  .drawer-menu span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    box-sizing: border-box;
    background-color: #03A24A;
    transition: all 0.4s;
  }
  .drawer-menu span:nth-of-type(1) {
    top: 0;
  }
  .drawer-menu span:nth-of-type(2) {
    top: 8px;
  }
  .drawer-menu span:nth-of-type(3) {
    bottom: 0;
  }
  header.open {
    height: 100%;
    background-color: #03A24A;
    transition: all 0.2s ease;
  }
  header.open .drawer-menu span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  header.open .drawer-menu span:nth-of-type(2) {
    opacity: 0;
  }
  header.open .drawer-menu span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  header.open ul.nav {
    display: block;
  }
  header.open ul.nav li {
    display: block;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  header.open ul.nav li a {
    position: relative;
    height: auto;
    padding: 16px 0;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
  }
  header.open ul.nav li a span {
    padding: 0;
    color: #fff;
  }
  header.open ul.nav li a::before {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    content: "";
  }
  header.open ul.nav .contact-btn {
    border-bottom: none;
  }
}
/******************************************************************
  4■breadcrumbs
*****************************************************************/
.breadcrumbs {
  padding: 4px 0;
  background-color: #f1f1f1;
}
.breadcrumbs li {
  display: inline-block;
  position: relative;
  margin-right: 16px;
  padding-right: 16px;
  font-size: 1.4rem;
  color: #999;
}
.breadcrumbs li::before {
  content: "";
  position: absolute;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  top: 50%;
  right: 0;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
}
.breadcrumbs li:last-child::before {
  content: none;
}
@media (max-width: 767.98px) {
  .breadcrumbs .container {
    overflow-x: scroll;
  }
  .breadcrumbs .container ul {
    overflow: hidden;
    display: table;
    width: initial;
    width: auto;
  }
  .breadcrumbs .container ul li {
    display: table-cell;
    white-space: nowrap;
    padding-left: 16px;
  }
  .breadcrumbs .container ul li:first-child {
    padding-left: 0;
  }
}

/******************************************************************
  5■title
*****************************************************************/
.main-img {
  height: 700px;
  position: relative;
}
@media (max-width: 767.98px) {
  .main-img {
    height: 432px;
  }
}
.main-img .kv-img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

.img-text {
  color: #03A24A;
  width: 100%;
  text-align: center;
  font-size: 4vw;
}
@media (max-width: 767.98px) {
  .img-text {
    font-size: 8vw;
  }
}
.img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.img-text.dark-color {
  color: #333;
  text-shadow: 0px 0px 3px #fff;
}
.img-text.bright-color {
  color: #fff;
  text-shadow: 0px 0px 3px #333;
}

.title-box {
  height: 344px;
  position: relative;
  overflow: hidden;
  background-color: #9f9894;
}
@media (max-width: 767.98px) {
  .title-box {
    height: 200px;
  }
}

.title-bg {
  opacity: 0.7;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

.title-text {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 0;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.title-text > span {
  display: block;
}
.title-text-upper {
  font-size: 4rem;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .title-text-upper {
    font-size: 3rem;
  }
}
.title-text-lower {
  font-size: 2.4rem;
  padding-top: 24px;
}
@media (max-width: 767.98px) {
  .title-text-lower {
    font-size: 2rem;
  }
}

.contents-ttl {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  line-height: 1;
  font-size: 3.6rem;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .contents-ttl {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
.contents-ttl > .en {
  height: 21px;
  font-size: 0;
}
.contents-ttl > .en > img {
  height: 100%;
}
@media (max-width: 767.98px) {
  .contents-ttl > .en {
    height: 16px;
  }
}
.contents-ttl > .ja {
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .contents-ttl.ttl-left {
    align-items: start;
  }
}
.contents-ttl-sub {
  font-size: 2.2rem;
  color: #03A24A;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .contents-ttl-sub {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
}
.contents-ttl-sub-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .contents-ttl-sub-flex {
    flex-direction: column;
  }
}
.contents-ttl-sub-balloon {
  color: #fff;
  background-color: #03A24A;
  border-radius: 50vw;
  padding: 10px 30px;
  line-height: 1;
  font-size: 1.4rem;
}
.contents-ttl-sub-orange {
  color: #F26C13;
}
.contents-ttl-sub-black {
  color: #333;
}

@media (min-width: 768px) {
  .contents-ttl.ttl-left {
    text-align: left;
  }
  .contents-ttl.ttl-left::after {
    left: 0;
    transform: translateX(0);
  }
}
/******************************************************************
  6■footer
*****************************************************************/
footer section {
  background-color: #03A24A;
  margin: 0;
  color: #FFF;
}
footer section a {
  color: #fff;
}
footer section a:link, footer section a:visited {
  text-decoration: none;
  color: #fff;
}
@media (any-hover: hover) {
  footer section a:hover {
    color: #fff;
    opacity: 0.8;
  }
}

.footer-nav-title {
  border-bottom: 1px solid #fff;
  font-size: 1.6rem;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .footer-nav-title {
    font-size: 1.5rem;
    padding: 16px 32px 16px 0;
    margin-bottom: 0;
    position: relative;
  }
  .footer-nav-title a::after {
    content: "";
    position: absolute;
    inset: 0;
  }
  .footer-nav-title a:has(+ .trigger)::after {
    inset: 0 64px 0 0;
  }
  .footer-nav-title .trigger {
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    right: 18px;
    top: 18px;
    cursor: pointer;
  }
  .footer-nav-title .trigger span::after {
    content: "";
    position: absolute;
    inset: -18px -18px -20px;
  }
  .footer-nav-title .trigger::before, .footer-nav-title .trigger::after {
    content: "";
    position: absolute;
    display: block;
    background-color: #fff;
    width: 15px;
    height: 1px;
    top: 7px;
    right: 0;
  }
  .footer-nav-title .trigger::after {
    transition: all 0.4s;
    width: 1px;
    height: 15px;
    top: 0;
    right: 7px;
  }
  .footer-nav-title .trigger.op::after {
    transform: rotate(-90deg);
  }
}

.footer-sub-menu li {
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  .footer-sub-menu li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767.98px) {
  .footer-sub-menu {
    display: none;
    padding-top: 8px;
    padding-left: 16px;
    padding-bottom: 8px;
    font-size: 1.3rem;
    margin-bottom: 0;
  }
  .footer-sub-menu li a {
    position: relative;
  }
  .footer-sub-menu li a::after {
    content: "";
    position: absolute;
    inset: -4px -16px;
  }
}

@media (max-width: 767.98px) {
  footer dl {
    border-bottom: 1px solid #fff;
  }
  footer dl .footer-nav-title {
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  dd.footer-sub-menu {
    display: block !important;
  }
}
.copyright {
  text-align: center;
  margin: 48px 0 0;
}

footer .ga-pdf {
  padding: 8px 0 0 0;
}

.footer-logo {
  width: 276px;
  background-color: #fff;
  border-radius: 4px;
  padding: 12px 45px;
  margin: 0 auto 16px;
  text-align: center;
}
.footer-logo img {
  width: 100%;
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 60px;
  z-index: 100;
  display: none;
}
.pagetop a {
  display: block;
  position: relative;
  right: 0;
  background: #7DCB38;
  width: 40px;
  height: 40px;
  border-radius: 4px;
}
.pagetop a::before {
  content: "";
  position: absolute;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 16px;
  left: 50%;
  margin-left: -8px;
  width: 16px;
  height: 16px;
  transform: rotate(315deg);
}

.sns-box {
  display: flex;
  align-items: center;
  font-size: 0;
}
.sns-box li {
  width: 40px;
  display: block;
  margin-right: 26px;
  height: 40px;
}
.sns-box li a {
  display: block;
}
.sns-box li img {
  width: 100%;
}
.sns-box .x-logo {
  width: 34px;
  height: auto;
}
@media (max-width: 767.98px) {
  .sns-box {
    margin-top: 40px;
    text-align: center;
  }
  .sns-box li {
    margin: 0 13px;
  }
}

/******************************************************************
  7■slider(top)
*****************************************************************/
.mainimg {
  position: relative;
}
.mainimg .no-link {
  cursor: default;
}
.mainimg img {
  width: 100%;
}
.mainimg img.object-fit-img {
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media (max-width: 767px) {
  .mainimg img.object-fit-img {
    height: 432px;
  }
}
.mainimg .slick-dots li {
  margin: 0 8px;
}
.mainimg .slick-dots li button::before {
  font-size: 18px;
}
.mainimg-catch {
  width: clamp(350px, 40vw, 770px);
  position: absolute;
  bottom: clamp(40px, 7.2vw, 140px);
  left: clamp(20px, 4.1vw, 80px);
}
@media (max-width: 767.98px) {
  .mainimg-catch {
    width: clamp(0px, 87vw, 9999px);
    left: 0;
    bottom: 50%;
    transform: translateY(50%);
  }
}
.mainimg-catch img {
  aspect-ratio: 770/254 !important;
}
@media (max-width: 767.98px) {
  .mainimg-catch img {
    aspect-ratio: 327/170 !important;
  }
}

/******************************************************************
  8■contents
*****************************************************************/
section {
  padding: 120px 0 120px;
}
@media (max-width: 767.98px) {
  section {
    padding: 60px 0 60px;
  }
}
section.section-colored {
  background-color: #E7F3E7;
  margin-bottom: 0;
}
section.section-image, section.section-image-dark {
  background-position: center center;
  background-size: cover;
  position: relative;
}
section.section-image::before, section.section-image-dark::before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  background-color: #E7F3E7;
  opacity: 0.8;
  z-index: 1;
}
section.section-image .container, section.section-image-dark .container {
  position: relative;
  z-index: 10;
}
section.contact .tel-number {
  font-size: 2.8rem;
  font-weight: normal;
  vertical-align: middle;
}
section.contact .contact-info {
  margin: 8px auto;
}
@media (any-hover: hover) {
  section.contact a:hover, section.recruit a:hover {
    text-decoration: none;
  }
}
section.contact .btn-02 a, section.recruit .btn-02 a {
  position: relative;
  letter-spacing: 1px;
  border-radius: 0;
  padding-left: 4px;
  background-color: transparent;
  border: 2px solid #fff;
  font-weight: normal;
  color: #fff;
}
section.contact .btn-02 a:link, section.contact .btn-02 a:visited, section.recruit .btn-02 a:link, section.recruit .btn-02 a:visited {
  text-decoration: none;
}
@media (any-hover: hover) {
  section.contact .btn-02 a:hover, section.recruit .btn-02 a:hover {
    background-color: #fff;
    color: #03A24A;
    opacity: 1;
  }
  section.contact .btn-02 a:hover::before, section.recruit .btn-02 a:hover::before {
    border-color: #03A24A;
  }
}
section.contact .btn-02 a::before, section.contact .btn-02 a::after, section.recruit .btn-02 a::before, section.recruit .btn-02 a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-right: 0;
  content: "";
  vertical-align: middle;
  opacity: 1;
}
section.contact .btn-02 a::before, section.recruit .btn-02 a::before {
  right: 24px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.row.flx .flx-box {
  background-clip: content-box;
}
.row.flx .flx-box .flx-box-inner {
  padding: 32px 16px;
}

@media (min-width: 768px) {
  .row.flx {
    display: flex;
  }
}
.m-b-sm {
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .m-b-sm {
    margin-bottom: 8px;
  }
}

.m-b-md {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .m-b-md {
    margin-bottom: 16px;
  }
}

.m-b-lg {
  margin-bottom: 64px;
}
@media (max-width: 767.98px) {
  .m-b-lg {
    margin-bottom: 32px;
  }
}

@media (max-width: 767.98px) {
  .sp-m-b-xs {
    margin-bottom: 8px;
  }
  .sp-m-b-sm {
    margin-bottom: 16px;
  }
  .sp-m-b-md {
    margin-bottom: 24px;
  }
  .sp-m-b-lg {
    margin-bottom: 32px;
  }
}
@media (min-width: 768px) {
  .sm-right-space {
    padding-right: 3%;
  }
  .sm-left-space {
    padding-left: 3%;
  }
}
.font-size-xs {
  font-size: 1.2rem;
}
@media (max-width: 767.98px) {
  .font-size-xs {
    font-size: 1rem;
  }
}

.font-size-sm {
  font-size: 1.4rem;
}
@media (max-width: 767.98px) {
  .font-size-sm {
    font-size: 1rem;
  }
}

.font-size-md {
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  .font-size-md {
    font-size: 1.2rem;
  }
}

.font-size-lg {
  font-size: 2.4rem;
}
@media (max-width: 767.98px) {
  .font-size-lg {
    font-size: 1.6rem;
  }
}

.font-size-xl {
  font-size: 5rem;
}
@media (max-width: 767.98px) {
  .font-size-xl {
    font-size: 3rem;
  }
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.lead {
  line-height: 2;
}

.article {
  line-height: 2;
}

.valign-m {
  vertical-align: middle;
}

.emphasis {
  font-weight: bold;
}
.emphasis-colored {
  color: #03A24A;
}
.emphasis-boldcolored {
  font-weight: bold;
  color: #03A24A;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.h-line {
  border-left: 4px solid #03A24A;
  padding-left: 8px;
}

.label {
  color: #fff;
  background-color: #03A24A;
  padding: 4px 8px;
}

.blockquote {
  position: relative;
  margin: 0 0 16px;
  padding: 0;
  z-index: 1;
}
.blockquote p {
  position: relative;
  z-index: 3;
  padding: 16px;
  font-size: 2.4rem;
  color: #03A24A;
}
.blockquote::before, .blockquote::after {
  content: "“";
  font-size: 60px;
  line-height: 0.8em;
  font-family: "Times New Roman", "ＭＳ Ｐゴシック", sans-serif;
  color: #03A24A;
  position: absolute;
  z-index: 2;
  opacity: 0.5;
}
.blockquote::before {
  left: 0;
  top: 0;
}
.blockquote::after {
  content: "”";
  line-height: 0em;
  right: 0;
  bottom: 0;
}

.colored-box {
  background-color: #E7F3E7;
  border: 1px solid #03A24A;
  padding: 16px;
}

.bg-gray {
  background-color: #ccc;
}

.bg-white {
  background-color: #fff;
}

.bg-colored {
  background-color: #E7F3E7 !important;
}

.no-wrap {
  white-space: nowrap;
}

.inline-block {
  display: inline-block;
}

/* リスト関連 */
.dot-list li {
  position: relative;
  padding-left: 15px;
  margin: 16px 0;
}
.dot-list li::after {
  color: #333;
  content: "・";
  left: 0;
  position: absolute;
  top: 0;
}
.dot-list.lh-sm li {
  margin: 8px 0;
}

.check-list li {
  margin: 16px 0 16px 24px;
  position: relative;
  padding-left: 4px;
}
@media (max-width: 767.98px) {
  .check-list li {
    margin: 8px 0 8px 24px;
  }
}
.check-list li::after {
  opacity: 0.8;
  display: block;
  content: "";
  position: absolute;
  top: 0.2em;
  left: -1.4em;
  width: 16px;
  height: 10px;
  border-left: 4px solid #03A24A;
  border-bottom: 4px solid #03A24A;
  transform: rotate(-45deg);
}
.check-list.lh-sm li {
  margin: 8px 0 8px 24px;
}

/* 画像関連 */
.img-fluid {
  width: 100%;
  height: auto;
}

.img-radius {
  border-radius: 4px;
}

.img-radius-round {
  border-radius: 50%;
}

.img-cadre {
  border: 1px solid #ccc;
  padding: 8px;
}

.img-link {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  opacity: 1;
}
.img-link figure {
  top: 0;
  left: 0;
  background-color: #333;
}
.img-link figure img {
  width: 100%;
  opacity: 0.4;
  transition: transform 0.2s ease;
}
@media (any-hover: hover) {
  .img-link:hover figure img {
    transform: scale(1.08);
  }
}
.img-link .img-link-text {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #fff;
}
.img-link .img-link-text-ttl {
  font-size: 2.8rem;
}
.img-link .box-arrow::before, .img-link .box-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-right: 0;
  content: "";
  vertical-align: middle;
  opacity: 1;
}
.img-link .box-arrow::before {
  right: 24px;
  width: 16px;
  height: 16px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.fukidashi-top {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 8px;
  margin: 16px 0 0;
  border: 1px solid #999;
}
.fukidashi-top::before, .fukidashi-top::after {
  border: 10px solid transparent;
  border-bottom-color: #fff;
  border-top-width: 0;
  position: absolute;
  top: -9px;
  content: " ";
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  z-index: 1;
}
.fukidashi-top::after {
  border-bottom-color: #999;
  top: -10px;
  z-index: 0;
}

/* aspect-ratio */
.aspect-ratio-1x1 {
  --aspect-ratio-sp: 1/1;
  --aspect-ratio-pc: 1/1;
}

.aspect-ratio-2x1 {
  --aspect-ratio-sp: 2/1;
  --aspect-ratio-pc: 2/1;
}

.aspect-ratio-3x2 {
  --aspect-ratio-sp: 3/2;
  --aspect-ratio-pc: 3/2;
}

.aspect-ratio-3x4 {
  --aspect-ratio-sp: 3/4;
  --aspect-ratio-pc: 3/4;
}

.aspect-ratio-4x3 {
  --aspect-ratio-sp: 4/3;
  --aspect-ratio-pc: 4/3;
}

.aspect-ratio-16x9 {
  --aspect-ratio-sp: 16/9;
  --aspect-ratio-pc: 16/9;
}

.aspect-ratio-mv {
  --aspect-ratio-sp: 15/22;
  --aspect-ratio-pc: 12/5;
}

.aspect-ratio-166x42 {
  --aspect-ratio-sp: 166/42;
  --aspect-ratio-pc: 166/42;
}

.aspect-ratio img {
  aspect-ratio: var(--aspect-ratio-sp);
}
@media (min-width: 768px) {
  .aspect-ratio img {
    aspect-ratio: var(--aspect-ratio-pc);
  }
}

/* テーブル関連 */
@media (min-width: 768px) {
  .table-list dl {
    display: table;
    width: 100%;
  }
  .table-list dt,
  .table-list dd {
    display: table-cell;
    vertical-align: middle;
    border-right: 1px solid #bbb;
    border-top: 1px solid #bbb;
    padding: 24px;
  }
  .table-list dt {
    width: 25%;
    text-align: center;
    position: relative;
  }
  .table-list dd {
    display: table-cell;
    width: auto;
    border-right: none;
  }
  .table-list dl:first-child dt,
  .table-list dl:first-child dd {
    border-top: none;
  }
  .table-list.no-v-line dt,
  .table-list.no-v-line dd {
    border-right: none;
  }
  .table-list.time-line dt {
    color: #03A24A;
  }
  .table-list.time-line dt,
  .table-list.time-line dd {
    vertical-align: top;
    border-top: none;
  }
  .table-list.time-line dt::after {
    content: "";
    height: 8px;
    width: 8px;
    background-color: #03A24A;
    position: absolute;
    right: -5px;
    top: 32px;
    border-radius: 4px;
  }
  .table-list.time-line dd p {
    margin-top: 8px;
  }
}
@media (max-width: 767.98px) {
  .table-list dt,
  .table-list dd {
    padding: 8px;
  }
  .table-list dt {
    background-color: #E7F3E7;
  }
  .table-list dd {
    padding-bottom: 16px;
  }
  .table-list dl:first-child dt,
  .table-list dl:first-child dd {
    border-top: none;
  }
  .table-list.time-line dt {
    color: #03A24A;
    background-color: transparent;
    position: relative;
    font-weight: bold;
  }
  .table-list.time-line dt,
  .table-list.time-line dd {
    vertical-align: top;
    border-top: none;
    border-left: 1px solid #bbb;
    padding-left: 16px;
  }
  .table-list.time-line dt::after {
    content: "";
    height: 7px;
    width: 7px;
    background-color: #03A24A;
    position: absolute;
    left: -4px;
    top: 13px;
    border-radius: 4px;
  }
  .table-list.time-line dd {
    padding-top: 0;
  }
  .table-list.time-line dd p {
    margin: 8px 0 0 8px;
  }
}
/* タイムスケジュール
------------------------------*/
@media (min-width: 992px) {
  .list-schedule-wrap {
    padding: 0 48px;
  }
}
@media (max-width: 767.98px) {
  .list-schedule-wrap {
    padding: 0 10px;
  }
}

.list-schedule {
  --timeWidth: 3em;
  --timePadding: 1em;
  --circleWitdh: 1em;
  --circleborder: 4px;
  --lineWitdh: 2px;
  position: relative;
}
@media (min-width: 768px) {
  .list-schedule {
    --timePadding: 1.5em;
    font-size: 1.6rem;
  }
}
.list-schedule::before {
  content: "";
  display: block;
  width: var(--lineWitdh);
  height: calc(100% - (var(--circleWitdh) + var(--circleborder)) / 2 + 1px);
  background: #03A24A;
  position: absolute;
  left: 0;
  top: 0.5em;
}
@media (min-width: 768px) {
  .list-schedule::before {
    left: calc(var(--timeWidth) + var(--timePadding));
  }
}
.list-schedule dt {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5em;
  position: relative;
  letter-spacing: 1px;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .list-schedule dt {
    margin-left: calc(var(--circleWitdh) + var(--circleborder) + 0.5em);
  }
}
.list-schedule dt::before {
  content: "";
  display: block;
  width: calc(var(--circleWitdh) + var(--circleborder));
  height: calc(var(--circleWitdh) + var(--circleborder));
  background: #FFFFFF;
  position: absolute;
  left: calc(-1px - (var(--circleWitdh) + var(--circleborder) + 1em));
  top: 1px;
  border-radius: 100%;
  border: var(--circleborder) solid #222;
}
@media (min-width: 768px) {
  .list-schedule dt::before {
    left: calc(var(--timeWidth) + var(--timePadding) + var(--lineWitdh) - (var(--circleWitdh) + var(--circleborder)) / 2 - 1px);
  }
}
@media (min-width: 768px) {
  .list-schedule dt::after {
    position: absolute;
    top: calc(0.5em + var(--circleborder) / 2);
    left: calc(var(--timeWidth) + var(--timePadding) + var(--circleWitdh) + var(--circleborder));
    display: inline-block;
    content: "";
    width: 37px;
    height: 1px;
    border-top: 2px dashed #3c3f3f;
  }
}
.list-schedule dt .workstyle-time {
  min-width: var(--timeWidth);
  text-align: right;
}
.list-schedule dt .workstyle-tit {
  width: calc(100% - (var(--timeWidth) + var(--timePadding)));
  font-weight: bold;
}
@media (min-width: 768px) {
  .list-schedule dt .workstyle-tit {
    width: calc(100% - (var(--timeWidth) + var(--timePadding) + var(--circleWitdh) + var(--circleborder) + 47px));
  }
}
.list-schedule dd {
  padding-bottom: 2em;
}
@media (max-width: 767.98px) {
  .list-schedule dd {
    margin-left: calc(var(--circleWitdh) + var(--circleborder) + 0.5em);
  }
}
@media (min-width: 768px) {
  .list-schedule dd {
    margin-left: calc(var(--timeWidth) + var(--timePadding) + var(--circleWitdh) + var(--circleborder) + 47px);
    width: calc(100% - (var(--timeWidth) + var(--timePadding) + var(--circleWitdh) + var(--circleborder) + 47px));
  }
}
.list-schedule dd p {
  font-size: 1.6rem;
}

/* その他 */
a.map-link {
  display: inline-block;
  margin-top: 14px;
  padding: 11.5px 37px;
  background-color: #03A24A;
  vertical-align: middle;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  border-radius: 4px;
}
a.map-link::after {
  content: url(../img/common/icon-blank-white.png);
  margin-left: 10px;
}

.g-map {
  border: 0;
  width: 100%;
  height: 320px;
}

.map-responsive {
  position: relative;
  width: 100%;
}
.map-responsive::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
@media (max-width: 767.98px) {
  .map-responsive::before {
    padding-top: 100%;
  }
}
.map #map-canvas {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
}

.image-box .image-box-area {
  width: 100%;
  height: 330px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 767.98px) {
  .image-box .image-box-area {
    height: 200px;
    background-attachment: scroll;
  }
}
.image-box .image-box-area.n-01 {
  background-image: url(../img/top/bg-ph-001.jpg);
}
.image-box .image-box-area.n-02 {
  background-image: url(../img/top/bg-ph-002.jpg);
}

.sliding-box {
  overflow: hidden;
}
.sliding-box .sliding {
  height: 328px;
  animation: slide 80s linear infinite;
  -webkit-animation: slide 80s linear infinite;
  -moz-animation: slide 80s linear infinite;
  background-repeat: repeat-x;
  background-size: cover;
}
@media (max-width: 767.98px) {
  .sliding-box .sliding {
    height: 200px;
  }
}
.sliding-box .sliding.n-01 {
  background-image: url(../img/top/sliding-ph-001.jpg);
}

@keyframes slide {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 2952px 0;
  }
}
.anchor {
  margin-top: -200px;
  padding-top: 200px;
}
@media (max-width: 991.98px) {
  .anchor {
    margin-top: -170px;
    padding-top: 170px;
  }
}
@media (max-width: 767.98px) {
  .anchor {
    margin-top: -110px;
    padding-top: 110px;
  }
}

.guide-link {
  padding: 24px 15px;
}
@media (min-width: 768px) {
  .guide-link {
    padding: 48px 0;
  }
}
.guide-link .link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 0;
}
.guide-link .link-list > li {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #bbb;
}
.guide-link .link-list > li:last-child {
  border-right: 1px solid #bbb;
}
@media (max-width: 767.98px) {
  .guide-link .link-list > li:nth-child(even):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}
.guide-link .link-list > li a {
  position: relative;
  width: 100%;
  padding: 17px 26px 17px 17px;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
}
.guide-link .link-list > li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(135deg);
}
@media (min-width: 768px) {
  .guide-link .link-list > li a::before {
    right: 20px;
  }
}
@media (min-width: 768px) {
  .guide-link .link-list.col-02 > li {
    width: 33.3333333333%;
  }
}
@media (min-width: 992px) {
  .guide-link .link-list.col-02 > li {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .guide-link .link-list.col-03 > li {
    width: 33.3333333333%;
  }
  .guide-link .link-list.col-03 > li:nth-child(3n):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}
@media (min-width: 992px) {
  .guide-link .link-list.col-03 > li {
    width: 25%;
  }
  .guide-link .link-list.col-03:has(> li:nth-child(5)) > li {
    width: calc(25% + 1px);
  }
}
@media (min-width: 768px) {
  .guide-link .link-list.col-04 > li {
    width: 25%;
  }
  .guide-link .link-list.col-04 > li:nth-child(4n):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .guide-link .link-list.col-05 > li {
    width: 33.3333333333%;
  }
  .guide-link .link-list.col-05 > li:nth-child(3n):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .guide-link .link-list.col-05 > li {
    width: 20%;
  }
  .guide-link .link-list.col-05 > li:nth-child(5n):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}

/******************************************************************
  9■news
*****************************************************************/
.news-list {
  padding-top: 70px;
}
@media (max-width: 767.98px) {
  .news-list {
    padding-top: 45px;
  }
}
.news-list ul {
  margin-bottom: 32px;
}
.news-list ul li {
  border-bottom: 1px solid #bbb;
}
.news-list ul li a {
  display: table;
  text-decoration: none !important;
  width: 100%;
  padding: 8px 0;
}
@media (min-width: 768px) {
  .news-list ul li a {
    font-size: 1.4rem;
    height: 96px;
  }
}
@media (any-hover: hover) {
  .news-list ul li a:hover {
    background-color: #E7F3E7;
  }
}
.news-list ul li a .news-date,
.news-list ul li a .news-category,
.news-list ul li a .news-title {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 767.98px) {
  .news-list ul li a .news-date,
  .news-list ul li a .news-category,
  .news-list ul li a .news-title {
    display: inline-block;
    margin: 4px 0;
    font-size: 1.3rem;
  }
}
@media (min-width: 768px) {
  .news-list ul li a .news-date {
    width: 136px;
  }
  .news-list ul li a .news-category {
    width: 168px;
    padding-right: 24px;
  }
  .news-list ul li a .news-category .category-frame {
    width: 100%;
    text-align: center;
  }
}
.news-list ul li a .news-date {
  color: #03A24A;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .news-list ul li a .news-date {
    text-align: left;
    margin-right: 24px;
  }
}
.news-list ul li a .news-category {
  margin: 4px 0;
}
.news-list ul li a .news-category .category-frame {
  padding: 2px 8px;
  background-color: #03A24A;
  color: #fff;
  display: inline-block;
  border-radius: 4px;
}
@media (max-width: 767.98px) {
  .news-list ul li a .news-title {
    display: block;
  }
}
.news-list ul li a .news-text {
  width: 100%;
  color: #333;
}
@media (min-width: 768px) {
  .news-list ul li a .news-text {
    position: relative;
    display: inline-block;
    padding-right: 56px;
  }
  .news-list ul li a .news-text::before, .news-list ul li a .news-text::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    margin: auto;
    margin-right: 0;
    content: "";
    vertical-align: middle;
    opacity: 1;
  }
  .news-list ul li a .news-text::before {
    right: 24px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #03A24A;
    border-right: 1px solid #03A24A;
    transform: rotate(45deg);
  }
}
@media (max-width: 767.98px) {
  .news-list ul li a {
    position: relative;
    display: inline-block;
    padding-right: 24px;
  }
  .news-list ul li a::before, .news-list ul li a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    margin: auto;
    margin-right: 0;
    content: "";
    vertical-align: middle;
    opacity: 1;
  }
  .news-list ul li a::before {
    right: 8px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
  }
}

.table-news-list .news-box {
  width: 100%;
  border-top: 1px solid #bbb;
}
.table-news-list .news-box a {
  display: block;
  padding: 24px 16px;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .table-news-list .news-box a {
    padding: 16px 0;
  }
}
.table-news-list .news-box a h3 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 16px;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .table-news-list .news-box a h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
.table-news-list .news-box:first-child {
  border-top: none;
}

.news-info {
  font-size: 1.4rem;
}
@media (max-width: 767.98px) {
  .news-info {
    margin-bottom: 8px;
    font-size: 1.3rem;
  }
}
.news-info .news-date {
  margin-right: 16px;
}
.news-info .category-frame {
  border: 1px solid #bbb;
  padding: 2px 8px;
  background-color: #fff;
  display: inline-block;
  text-align: center;
  min-width: 8em;
}

.news-img {
  max-width: 500px;
}

/******************************************************************
10■faq
*****************************************************************/
.faq-container {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.faq-q {
  display: block;
  position: relative;
  margin: 0;
  padding: 20px 60px;
  background: #f1f1f1;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .faq-q {
    padding: 15px 35px 10px;
  }
}
.faq-q:not(:first-child) {
  margin-top: 20px;
}
.faq-q:before {
  content: "Q";
  top: 18px;
}
@media (max-width: 767.98px) {
  .faq-q:before {
    top: 15px;
  }
}
.faq-q:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(135deg);
}
@media (max-width: 767.98px) {
  .faq-q:after {
    right: 10px;
  }
}
.faq-q.open {
  background-color: #03A24A;
  color: white;
}
.faq-q.open::after {
  transform: rotate(-45deg);
  top: 45%;
  border-color: #fff;
}
.faq-q.open i {
  color: #333;
}
.faq-q.active {
  background-color: #03A24A;
  color: white;
}
@media (any-hover: hover) {
  .faq-q:hover i::before, .faq-q:hover i:active {
    color: #333;
  }
  .faq-q:hover {
    background-color: #03A24A;
    color: white;
  }
  .faq-q:hover::after {
    border-color: #fff;
  }
}

.faq-a {
  display: none;
  padding: 30px 20px 30px 60px;
  position: relative;
  background-color: #f1f1f1;
}
@media (max-width: 767.98px) {
  .faq-a {
    padding: 20px 10px 20px 35px;
  }
}
.faq-a:before {
  content: "A";
  top: 28px;
}
@media (max-width: 767.98px) {
  .faq-a:before {
    top: 20px;
  }
}

.faq-q:before,
.faq-a:before {
  position: absolute;
  left: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .faq-q:before,
  .faq-a:before {
    left: 10px;
    font-size: 1.8rem;
  }
}

/******************************************************************
  11■free(その他、独自のスタイルは以下に記述してください)
*****************************************************************/
/* 汎用クラス
------------------------------*/
.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 8px !important;
}
@media (max-width: 767.98px) {
  .mb-1 {
    margin-bottom: 8px !important;
  }
}

.mb-4 {
  margin-bottom: 24px !important;
}
@media (max-width: 767.98px) {
  .mb-4 {
    margin-bottom: 16px !important;
  }
}

@media (max-width: 991.98px) {
  .mb-tab-4 {
    margin-bottom: 16px !important;
  }
}

.mb-5 {
  margin-bottom: 40px !important;
}
@media (max-width: 767.98px) {
  .mb-5 {
    margin-bottom: 24px !important;
  }
}

.mb-6 {
  margin-bottom: 60px !important;
}
@media (max-width: 767.98px) {
  .mb-6 {
    margin-bottom: 32px !important;
  }
}

@media (max-width: 767.98px) {
  .mb-sp-6 {
    margin-bottom: 32px !important;
  }
}

.mb-7 {
  margin-bottom: 120px !important;
}
@media (max-width: 767.98px) {
  .mb-7 {
    margin-bottom: 60px !important;
  }
}

.font-size-01 {
  font-size: 1.3rem;
}
@media (max-width: 767.98px) {
  .font-size-01 {
    font-size: 1.2rem;
  }
}

@media (max-width: 767.98px) {
  .text-sp-center {
    text-align: center;
  }
}

.bg-colored02 {
  background-color: #FCF8E7 !important;
}

.border-radius-img {
  border-radius: var(--border-radius-img);
}

/* 背景装飾（角丸オブジェクト）
------------------------------*/
.bg-circle {
  --circle-size: 200px;
  --circle-color: #E7F3E7;
}
@media (max-width: 767.98px) {
  .bg-circle {
    --circle-size: 60px;
  }
}
.bg-circle-rt, .bg-circle-lt {
  position: relative;
}
.bg-circle-rt::before, .bg-circle-lt::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  width: var(--circle-size);
  aspect-ratio: 1;
  background: var(--circle-color);
}
.bg-circle-rt {
  border-radius: 0 var(--circle-size) 0 0;
}
.bg-circle-rt::before {
  right: 0;
}
.bg-circle-lt {
  border-radius: var(--circle-size) 0 0 0;
}
.bg-circle-lt::before {
  left: 0;
}
.bg-circle-rb {
  border-radius: 0 0 var(--circle-size) 0;
}

.bg-colored.bg-circle {
  --circle-color: #fff;
}

/* 共通パーツ
------------------------------*/
.white-box {
  --border-radius: 50px;
}
@media (max-width: 767.98px) {
  .white-box {
    --border-radius: 20px;
  }
}
.white-box {
  padding: 60px;
  border-radius: var(--border-radius);
  background-color: #fff;
}
@media (max-width: 767.98px) {
  .white-box {
    padding: 32px 15px;
  }
}

/* logo-card-list（ロゴ＋名称＋説明文のカードグリッド／汎用）
------------------------------*/
.logo-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 767.98px) {
  .logo-card-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
.logo-card-list-2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media (max-width: 767.98px) {
  .logo-card-list-2col {
    grid-template-columns: repeat(1, 1fr);
  }
}
.logo-card-list-item {
  text-align: center;
}
.logo-card-list-item a {
  text-decoration: none;
}
.logo-card-list-item-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
@media (max-width: 767.98px) {
  .logo-card-list-item-logo {
    margin-bottom: 16px;
  }
}
.logo-card-list-item-logo img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--border-radius-img, 0);
}
.logo-card-list-item-name {
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .logo-card-list-item-name {
    font-size: 1.7rem;
  }
}
.logo-card-list-item-txt {
  line-height: 1.8;
  text-align: left;
}

.shiht-box {
  --shift: 60px;
}
@media (max-width: 767.98px) {
  .shiht-box {
    --shift: 32px;
  }
}
.shiht-box {
  background-color: #F9F9F9;
  position: relative;
  top: calc(-1 * var(--shift));
  margin-bottom: calc(-1 * var(--shift));
  margin-inline: 40px;
  font-size: 1.9rem;
  line-height: 2;
  padding-inline: 48px;
}
@media (max-width: 767.98px) {
  .shiht-box {
    font-size: 1.7rem;
    padding-inline: 15px;
    margin-inline: 15px;
  }
}
.shiht-box-white {
  background-color: #fff;
}

/* トップページ 事業紹介・店舗紹介・会社情報（左右分割レイアウト）
------------------------------*/
.index-split {
  --border-radius: 100px;
}
@media (max-width: 767.98px) {
  .index-split {
    --border-radius: 60px;
  }
}
@media (min-width: 992px) {
  .index-split {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.index-split-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 992px) {
  .index-split-inner {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
@media (min-width: 992px) {
  .index-split-textarea {
    display: grid;
    flex: 0 0 50%;
    place-content: center;
    padding: 0 clamp(64px, 5.3vw, 180px);
  }
}
@media (min-width: 992px) {
  .index-split-text-inn {
    max-width: 600px;
  }
}
@media (max-width: 991.98px) {
  .index-split-mediaarea {
    margin-right: calc((100vw - 750px) / -2 - 15px);
  }
}
@media (max-width: 767.98px) {
  .index-split-mediaarea {
    width: calc(100vw - 15px);
    margin: 0;
  }
}
@media (min-width: 992px) {
  .index-split-mediaarea {
    flex: 0 0 50%;
  }
}
.index-split-mediaarea img {
  width: 100%;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}
@media (min-width: 992px) {
  .index-split-reverse .index-split-inner {
    flex-direction: row-reverse;
  }
}
@media (max-width: 991.98px) {
  .index-split-reverse .index-split-mediaarea {
    margin-left: calc((100vw - 750px) / -2 - 32px);
    margin-right: 0;
  }
}
@media (max-width: 767.98px) {
  .index-split-reverse .index-split-mediaarea {
    margin-left: -15px;
  }
}
.index-split-reverse .index-split-mediaarea img {
  width: 100%;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* トップページ グループ会社採用情報
------------------------------*/
.group-recruit {
  padding: 60px 0;
  background: #edf5ee;
}
@media (min-width: 992px) {
  .group-recruit {
    padding: 100px 0;
  }
}
.group-recruit-lead {
  margin-bottom: 48px;
  color: #03A24A;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767.98px) {
  .group-recruit-lead {
    margin-bottom: 24px;
  }
}

/* トップページ 採用情報
------------------------------*/
.recruit {
  background-repeat: no-repeat, no-repeat;
  background-position: left bottom, right bottom;
  background-image: url(../img/top/recruitment-bg-pc-001.png), url(../img/top/recruitment-bg-pc-002.png);
}
@media (max-width: 767.98px) {
  .recruit {
    background-position: center bottom;
    background-image: url(../img/top/recruitment-bg-sp.png);
    background-size: contain;
  }
}
.recruit .recruit-imgarea {
  height: 480px;
}
@media (max-width: 767.98px) {
  .recruit .recruit-imgarea {
    height: 250px;
  }
}
.recruit .recruit-imgarea img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit .recruit-box {
  --shift: 100px;
}
@media (max-width: 767.98px) {
  .recruit .recruit-box {
    --shift: 60px;
  }
}
.recruit .recruit-box {
  position: relative;
  top: calc(-1 * var(--shift));
  margin-bottom: calc(-1 * var(--shift));
}

/* トップページ 店舗紹介
------------------------------*/
.shop {
  position: relative;
}
.shop .shop-btns-box {
  --col: 3;
  --gap: 32px;
}
@media (max-width: 991.98px) {
  .shop .shop-btns-box {
    --col: 2;
    --gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .shop .shop-btns-box {
    --col: 1;
    --gap: 16px;
  }
}
.shop .shop-btns-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
}
.shop .shop-btns-box > * {
  width: calc((100% - var(--gap) * (var(--col) - 1)) / var(--col));
}

/* トップページ お問い合わせ
------------------------------*/
.contact {
  background: url(../img/top/contact-bg.jpg) center center/cover;
}
.contact .contents-ttl-sub {
  color: #333;
}

/* トップページ お知らせ
------------------------------*/
.news-list {
  overflow: hidden;
}
.news-list-box {
  position: relative;
}
.news-list-box::before, .news-list-box::after {
  content: "";
  position: absolute;
  width: clamp(100px, 19.4vw, 238px);
  aspect-ratio: 238/200;
}
@media (max-width: 767.98px) {
  .news-list-box::before, .news-list-box::after {
    width: 95px;
  }
}
.news-list-box::before {
  top: 0;
  right: 0;
  background: url(../img/top/news-pic-001.png) no-repeat center/contain;
  transform: translate(50%, -38%);
}
@media (max-width: 767.98px) {
  .news-list-box::before {
    transform: translate(15%, -58%);
  }
}
.news-list-box::after {
  left: 0;
  bottom: 0;
  background: url(../img/top/news-pic-002.png) no-repeat center/contain;
  transform: translate(-50%, 38%);
}
@media (max-width: 767.98px) {
  .news-list-box::after {
    transform: translate(-15%, 68%);
  }
}

/* 下層ページ　共通パーツ
------------------------------*/
.subpage-ttl-01 {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  padding-bottom: 24px;
  letter-spacing: 0.15em;
}
@media (max-width: 767.98px) {
  .subpage-ttl-01 {
    padding-bottom: 14px;
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.subpage-ttl-01::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  background-color: #03A24A;
  width: 80px;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767.98px) {
  .subpage-ttl-01::after {
    height: 3px;
  }
}

.subpage-ttl-02 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  background-color: #03A24A;
  line-height: 1.25;
  margin-bottom: 40px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.subpage-ttl-02::before {
  content: "";
  aspect-ratio: 1;
  width: 17px;
  border-radius: 4px;
  background-color: #7DCB38;
}
@media (max-width: 767.98px) {
  .subpage-ttl-02 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding: 12px;
    gap: 12px;
  }
}

.subpage-ttl-03 {
  position: relative;
  font-size: 2rem;
  padding-bottom: 12px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 40px;
  line-height: 1.25;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  .subpage-ttl-03 {
    margin-bottom: 24px;
    font-size: 1.8rem;
  }
}
.subpage-ttl-03::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
  content: "";
  width: 30%;
  height: 1px;
  background-color: #03A24A;
}

/* 店舗紹介ページ
------------------------------*/
#shop-01-box {
  --ttl-bg-color:#E7F3E7;
  --ttl-icon-color:#7DCB38;
  --map-btn-color:#03A24A;
}

#shop-03-box {
  --ttl-bg-color: #EEE1BD;
  --ttl-icon-color: #EBBB38;
  --map-btn-color: #B88D10;
}

#shop-02-box {
  --ttl-bg-color: #D5E4EF;
  --ttl-icon-color: #77C1F6;
  --map-btn-color: #217CBF;
}

#shop-04-box {
  --ttl-bg-color: #F2DCE8;
  --ttl-icon-color: #EF8CC3;
  --map-btn-color: #BE6196;
}

#shop-05-box {
  --ttl-bg-color: #DBF0F1;
  --ttl-icon-color: #5DD8D9;
  --map-btn-color: #279D9E;
}

#shop .guide-link {
  position: relative;
  z-index: 100;
}
#shop .shop-box .subpage-ttl-01::after {
  background-color: var(--map-btn-color);
}
#shop .shop-box .subpage-ttl-02 {
  background-color: var(--ttl-bg-color);
  color: #333;
}
#shop .shop-box .subpage-ttl-02::before {
  background-color: var(--ttl-icon-color);
}
#shop .map-link {
  background-color: var(--map-btn-color);
}
#shop .shop-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 767.98px) {
  #shop .shop-list {
    gap: 32px;
  }
}
#shop .shop-list-photo {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  #shop .shop-list-photo {
    margin-bottom: 24px;
  }
}
#shop .shop-list-photo img {
  width: 100%;
}
#shop .shop-list-qr {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 40px);
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  #shop .shop-list-qr {
    gap: 16px;
  }
}
#shop .shop-list-qr li {
  text-align: center;
}
#shop .shop-list-qr img {
  max-width: clamp(80px, 8vw, 132px);
  margin-bottom: 4px;
}
#shop .shop-list-qr p {
  font-weight: bold;
}
#shop .shop-list-info dl {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  #shop .shop-list-info dl {
    margin-bottom: 14px;
  }
}
#shop .shop-list-info dt {
  position: relative;
  padding-left: 20px;
  font-weight: bold;
  margin-bottom: 4px;
}
@media (max-width: 767.98px) {
  #shop .shop-list-info dt {
    margin-bottom: 0;
  }
}
#shop .shop-list-info dt::before {
  content: "■";
  position: absolute;
  left: 0;
}
#shop .shop-box:not(:first-of-type) {
  padding-top: 0;
}

/* 会社情報ページ
------------------------------*/
#about .about-message {
  background-color: #E7F3E7;
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right bottom;
  background-image: url(../img/about/message-bg-001.png), url(../img/about/message-bg-002.png);
}
#about .about-message-box {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 767.98px) {
  #about .about-message-box {
    flex-direction: column;
    gap: 24px;
  }
}
#about .about-message-box-img {
  flex: 0 0 175px;
}
@media (max-width: 767.98px) {
  #about .about-message-box-img {
    max-width: 250px;
  }
}
#about .about-message-box-ttl {
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: start;
}
@media (max-width: 767.98px) {
  #about .about-message-box-ttl {
    font-size: 1.7rem;
  }
}
#about .about-message-box-ttl::before {
  content: "";
  height: 21px;
  aspect-ratio: 83/21;
  background: no-repeat url(../img/about/message-txt-001.png) center/contain;
}
@media (max-width: 767.98px) {
  #about .about-message-box-ttl {
    font-size: 1.7rem;
  }
}
#about .about-message-box:nth-of-type(2) .about-message-box-ttl::before {
  background-image: url(../img/about/message-txt-002.png);
  aspect-ratio: 90/21;
}
#about .about-message-box:nth-of-type(3) .about-message-box-ttl::before {
  background-image: url(../img/about/message-txt-003.png);
  aspect-ratio: 90/21;
}
#about .about-message-box:nth-of-type(4) .about-message-box-ttl::before {
  background-image: url(../img/about/message-txt-004.png);
  aspect-ratio: 90/21;
}
#about .about-company {
  background: no-repeat url(../img/about/bg-company.jpg) top center/cover;
}

/* 事業情報ページ
------------------------------*/
#business .pharmacy-pharmacy-box-item {
  flex: 1 0 auto;
}
#business .pharmacy-pharmacy-box-item p {
  margin-bottom: 8px;
}
#business .pharmacy-pharmacy-box-item a {
  width: 100%;
  text-align: center;
  display: block;
}
#business .pharmacy-pharmacy-box-item img {
  max-width: 236px;
}
#business .pharmacy-pharmacy-box-flex {
  --col: 3;
  --gap: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
@media (max-width: 767.98px) {
  #business .pharmacy-pharmacy-box-flex {
    --col: 1;
    --gap: 20px;
  }
}
#business .pharmacy-pharmacy-box-flex__item {
  width: calc((100% - var(--gap) * (var(--col) - 1)) / var(--col));
}
#business .pharmacy-pharmacy-box-item-line {
  --width: 70px;
  display: flex;
  align-items: center;
  gap: calc(var(--width) / 2);
  justify-content: center;
}
@media (max-width: 767.98px) {
  #business .pharmacy-pharmacy-box-item-line {
    --width: 40px;
  }
}
#business .pharmacy-pharmacy-box-item-line div {
  flex: 0 0 var(--width);
}
#business .pharmacy-pharmacy-box-item-line-txt {
  flex: 0 0 auto !important;
}
#business .pharmacy-pharmacy-box-item-line-txt p {
  background-color: #EEEEEE;
  padding: 8px 12px;
  font-size: 1.2rem;
  display: inline-block;
  margin-bottom: 0;
}
#business .pharmacy-pharmacy-box-img {
  max-width: 440px;
  margin-inline: auto;
}
#business {
  /* pharmacy-merchandise-box
  ------------------------------*/
}
#business .pharmacy-merchandise-box-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  #business .pharmacy-merchandise-box-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (min-width: 768px) {
  #business .pharmacy-merchandise-box-grid--2col {
    grid-template-columns: 1fr 2fr;
  }
}
#business .pharmacy-merchandise-box-ttl {
  font-size: 1.8rem;
}
@media (max-width: 767.98px) {
  #business .pharmacy-merchandise-box-ttl {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=common.css.map */