@charset "UTF-8";
/* bootstrap */
:root {
  --bs-green: #206A5D;
  --bs-yellow: #f0ca0e;
  --bs-dark-yellow: #d6b220;
  --bs-light-yellow: #F6C90E;
  --bs-dark: #525050;
  --bs-gray: #f1f1f1;
  --bs-dark-gray: #c9caca;
  --bs-white: #fff;
  --bs-white-trasparet: rgba(255, 255, 255, 0.84);
  --bs-font-sans-serif: "Kosugi Maru", sans-serif;
}

* {
  position: relative;
  margin: 0;
  padding: 0;
}

.sp {
  display: none !important;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}
ul {
  padding: 0;
}
ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

p,
li,
th,
td {
  line-height: 2em;
}

body {
  font-family: var(--bs-font-sans-serif);
  letter-spacing: 0.07rem;
  text-align: justify;
  word-break: break-all;
}

/*
main {
	min-height: calc(100vh - (4rem + 5rem));

	@media screen and (max-width: 768px) {
		min-height: calc(100vh - (4rem + 4rem + 309px));
	}
}
*/
h2,
h3 {
  margin: 0;
}

.py-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.pb-6 {
  padding-bottom: 4rem;
}

.pb-7 {
  padding-bottom: 5rem;
}

/* common */
.bg-red {
  background-color: #fa6157;
}

.bg-green {
  background-color: #7cac3e;
}

.border-gray {
  border-color: #9e9e9e !important;
}

.transition {
  transition: all 0.6s;
}
.transition:hover {
  opacity: 0.8;
}

.icon {
  height: 3rem;
  width: auto;
}

.title {
  height: 4rem;
  line-height: 1.75rem;
}
.title-link {
  font-size: 1.25rem;
}

/* header */
.logo-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0 60px;
}
.logo-wrap .logo {
  width: 70%;
  max-width: 324px;
  padding-left: 10px;
}
.logo-wrap .logo a {
  display: block;
  width: 100%;
}
.logo-wrap .logo a img {
  width: 100%;
}
@media screen and (max-width: 962px) {
  .logo-wrap {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .logo-wrap {
    padding-bottom: 28px;
  }
}

/* g-navigation */
.nav-link {
  color: var(--bs-dark);
  transition: all 0.6s;
}
.nav-link:hover {
  color: #fa6157 !important;
}

nav {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  nav {
    width: 95%;
  }
}
nav .logo_img {
  width: 47%;
  max-width: 324px;
  margin-right: 2%;
}
nav .logo_img img {
  width: 100%;
}
nav .contact {
  align-items: center;
  justify-content: flex-end;
  width: 53%;
}
nav .contact .navcontact_more01 {
  color: black;
  text-decoration: none;
  margin-right: 5%;
  display: flex;
  align-items: center;
  transition: all 0.6s;
}
nav .contact .navcontact_more01:hover {
  color: #fa6157 !important;
}
nav .contact .navcontact_more01 img {
  margin-right: 5px;
}
@media screen and (max-width: 1200px) {
  nav .contact .navcontact_more01 {
    font-size: 14px;
    margin-right: 6%;
  }
}
nav .contact .navcontact_more02 {
  color: #fa6157;
  border: 3px solid #fa6157;
  border-radius: 30px;
  padding: 10px 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.6s;
  margin-top: 10px;
}
nav .contact .navcontact_more02:hover {
  background-color: #fa6157;
  color: white;
}
nav .contact .navcontact_more02:hover img {
  filter: brightness(500%) saturate(100%);
}
nav .contact .navcontact_more02 img {
  margin-right: 5px;
  transition: all 0.6s;
}
@media screen and (max-width: 1200px) {
  nav .contact .navcontact_more02 {
    font-size: 14px;
  }
}
@media screen and (max-width: 922px) {
  nav .logo_img {
    width: 35%;
  }
  nav .contact {
    width: 75%;
  }
}

/* slider */
.headline {
  z-index: 2;
  letter-spacing: 0.3rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 10%;
  left: 10%;
  font-size: 2.5rem;
  line-height: 2rem;
}

.slider {
  height: calc(100vh - (4.5em + 4rem));
  max-height: 840px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.carousel-item {
  transition: opacity 3s ease-out;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  transition: opacity 0s 3s;
}

/*********************************

DAC 固定用

*********************************/
/* nav */
.nav {
  z-index: 10;
  position: fixed;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  left: 0;
  right: 0;
  top: 120px;
  border-radius: 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  box-shadow: 0px 2px 8px 5px rgba(0, 0, 0, 0.19);
}
@media screen and (max-width: 1200px) {
  .nav {
    width: 95%;
  }
}
.nav.fixed-top {
  top: 20px;
}
.nav li {
  border-width: 2px !important;
  width: 13%;
}
.nav li a {
  text-align: center;
  font-weight: 600;
  padding: 0 3% 0;
}
.nav li a img {
  display: block;
  margin: 0 auto;
}
.nav li.nav_li_tokutyo {
  width: 16%;
}
.nav li.nav_li_kentei {
  width: 16%;
}
.nav li.nav_li_contest {
  width: 16%;
}
@media screen and (max-width: 1200px) {
  .nav li a {
    font-size: 14px;
  }
}

/* slide_box */
.slide_box {
  background-image: url(../images/artclayclub_back_01.jpg);
  padding: 200px 0;
}
.slide_box .slide {
  max-width: 1200px;
  height: 300px;
  overflow: hidden;
  margin: auto;
}

/********************** fooer **********************/
/* fooer */
footer {
  margin-top: 250px;
  /* footer_banner_b */
  /* footer_list_b */
  /* footer_sitemap_tel */
}
footer .footer_banner_b {
  background-color: #8cac62;
}
footer .footer_banner_b ul {
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  padding: 25px 0;
  gap: 10px 2%;
  display: flex;
}
@media screen and (max-width: 1200px) {
  footer .footer_banner_b ul {
    width: 95%;
  }
}
footer .footer_list_b {
  background-color: #e9fad2;
}
footer .footer_list_b ul {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
  gap: 10px 5%;
}
@media screen and (max-width: 1200px) {
  footer .footer_list_b ul {
    width: 95%;
  }
}
footer .footer_list_b ul li a {
  color: black;
  display: flex;
  align-items: center;
}
footer .footer_list_b ul li a:hover {
  color: #61951c;
  text-decoration: underline;
}
footer .footer_list_b ul li a img {
  margin-right: 10px;
}
footer .footer_sitemap_tel {
  max-width: 1200px;
  margin: auto;
  /* footer_tel_b */
}
@media screen and (max-width: 1200px) {
  footer .footer_sitemap_tel {
    width: 95%;
  }
}
footer .footer_sitemap_tel a {
  color: black;
}
footer .footer_sitemap_tel .footer_sitemap {
  display: flex;
  align-items: flex-start;
}
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left {
  width: 48.5%;
}
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right {
  width: 49%;
  margin-left: 2%;
}
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left > ul,
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right > ul {
  flex-wrap: wrap;
}
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left > ul > li,
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right > ul > li {
  width: 48.5%;
  margin-bottom: 40px;
}
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left > ul > li > a,
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right > ul > li > a {
  color: #fa6157;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px #7cac3e dashed;
  padding: 5px 0;
}
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left > ul > li > a img,
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right > ul > li > a img {
  margin-right: 10px;
  transition: all 0.8s;
}
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left > ul > li > a:hover img,
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right > ul > li > a:hover img {
  margin-right: 0;
}
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left > ul > li ul li,
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right > ul > li ul li {
  line-height: 1em;
  position: relative;
  padding-left: 25px;
  margin-top: 5px;
}
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left > ul > li ul li::before,
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right > ul > li ul li::before {
  position: absolute;
  left: 0;
  content: "";
  height: 2px;
  width: 13px;
  background-color: #fa7c57;
  top: 13px;
  transition: all 0.8s;
}
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left > ul > li ul li::after,
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right > ul > li ul li::after {
  position: absolute;
  left: 0;
  content: "";
  width: 0;
  transition: all 0.8s;
}
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left > ul > li ul li:hover::before,
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right > ul > li ul li:hover::before {
  top: 0;
  left: 5px;
  width: 2px;
  height: 100%;
}
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left > ul > li ul li:hover::after,
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right > ul > li ul li:hover::after {
  position: absolute;
  left: 5px;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #fa7c57;
  bottom: 0;
  transition: all 0.8s;
}
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left > ul > li ul li a,
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right > ul > li ul li a {
  font-size: 14px;
  padding: 5px 0;
  display: block;
}
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left > ul > li:nth-of-type(even),
footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right > ul > li:nth-of-type(even) {
  margin-left: 3%;
}
footer .footer_sitemap_tel .footer_tel_b {
  display: flex;
  align-items: flex-start;
  border-top: 2px solid #9bd64d;
}
footer .footer_sitemap_tel .footer_tel_b .footer_access,
footer .footer_sitemap_tel .footer_tel_b .footer_logo_company {
  width: 50%;
}
footer .footer_sitemap_tel .footer_tel_b .footer_access p {
  line-height: 1.4em;
}
footer .footer_sitemap_tel .footer_tel_b .footer_logo_company > div {
  margin-bottom: 30px;
}
footer .footer_sitemap_tel .footer_tel_b .footer_logo_company p {
  display: flex;
  align-items: center;
}
footer .footer_sitemap_tel .footer_tel_b .footer_logo_company p a {
  text-decoration: underline;
  color: #648a32;
  display: flex;
  align-items: center;
}
footer .footer_sitemap_tel .footer_tel_b .footer_logo_company p a img {
  margin-right: 10px;
}
footer .copyright {
  background-color: #324619;
}

/*********************************

スマートフォン

*********************************/
@media screen and (max-width: 768px) {
  p,
  li,
  th,
  td {
    line-height: 1.8em;
  }
  .navbar-nav {
    transition: all 0.6s;
    padding-top: 5rem;
    width: 300px;
    z-index: 1050;
    position: fixed;
    top: 0;
    right: -300px;
  }
  nav.px-0 {
    padding-top: 10px !important;
    padding-right: 70px !important;
  }
  nav .logo_img {
    width: 100%;
    display: block;
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
  }
  nav .logo_img img {
    display: block;
    margin: auto;
    max-width: 324px;
  }
  nav .contact {
    width: 100%;
  }
  nav .contact .navcontact_more02 {
    margin: auto;
  }
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .nav {
    /* btnopen */
  }
  .nav-bg {
    opacity: 0;
    transition: all 0.6s;
    z-index: 1040;
    background-color: var(--bs-dark);
    cursor: pointer;
    visibility: hidden;
  }
  .nav-btn {
    width: 4rem;
    height: 4rem;
    z-index: 1060;
    position: fixed;
    top: 15px;
    right: 10px;
    cursor: pointer;
  }
  .nav-item a {
    color: black !important;
  }
  .nav-line {
    transition: all 0.6s;
    width: 2rem;
    height: 2px;
    left: calc(50% - 1rem);
    background-color: #fff;
    position: absolute;
  }
  .nav-line.one {
    top: calc(1.25rem - 1px);
  }
  .nav-line.two {
    top: calc(2rem - 1px);
  }
  .nav-line.three {
    top: calc(2.75rem - 1px);
  }
  .nav-open.nav-bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open.navbar-nav {
    right: 0;
  }
  .nav-open.navbar-nav li {
    border-bottom: 1px solid #7cac3e;
  }
  .nav-open.navbar-nav li:last-of-type {
    border: none;
  }
  .nav-open.nav-btn .one {
    transform: rotate(45deg);
    top: 2rem;
  }
  .nav-open.nav-btn .two {
    width: 0;
    left: 50%;
  }
  .nav-open.nav-btn .three {
    transform: rotate(-45deg);
    top: 2rem;
  }
  .slider {
    height: calc(100vh - 8rem);
    max-height: 800px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .title-link {
    font-size: 1rem;
  }
  .page-top {
    bottom: 1rem;
    right: calc(50% - 3rem);
  }
  .page-top a:hover {
    width: 6rem;
    height: 6rem;
  }
  /********************** fooer **********************/
  footer {
    margin-top: 140px;
    /* footer_list_b */
    /* footer_sitemap_tel */
  }
  footer .footer_banner_b {
    padding-bottom: 1px;
  }
  footer .footer_banner_b ul {
    gap: 10px 2%;
    padding: 10px 0;
  }
  footer .footer_banner_b ul li {
    width: 49%;
    margin: 0;
  }
  footer .footer_banner_b ul li a img {
    width: 100%;
  }
  footer .footer_list_b ul {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px 0;
  }
  footer .footer_list_b ul li {
    width: 100%;
  }
  footer .footer_sitemap_tel .footer_sitemap {
    flex-direction: column;
    padding-bottom: 0 !important;
  }
  footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left {
    width: 100%;
  }
  footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left > ul > li,
  footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right > ul > li {
    width: 100%;
  }
  footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_left > ul > li:nth-of-type(even),
  footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right > ul > li:nth-of-type(even) {
    margin-left: 0;
  }
  footer .footer_sitemap_tel .footer_sitemap .footer_sitemap_right {
    width: 100%;
    margin: 0;
  }
  footer .footer_sitemap_tel .footer_tel_b {
    flex-direction: column;
    background-color: #fff4e5;
    padding: 15px !important;
    margin-bottom: 10px;
    border: none;
  }
  footer .footer_sitemap_tel .footer_tel_b .footer_access,
  footer .footer_sitemap_tel .footer_tel_b .footer_logo_company {
    width: 100%;
  }
  footer .footer_sitemap_tel .footer_tel_b .footer_logo_company p {
    align-items: flex-start;
    flex-direction: column;
  }
  footer .footer_sitemap_tel .footer_tel_b .footer_logo_company > div {
    background-color: white;
    padding: 10px;
  }
}
/* fadeUpAnimation */
.fade-active {
  animation-name: fade-anime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade-anime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */