@charset "utf-8";
@import url("destyle.css");

/* ----------------------------------------------- font */
/*ZenKakuGothic（日本語）*/
@font-face {
  font-family: 'ZenKakuGothic';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/ZenKakuGothicNew-Regular.woff2") format('woff2'), url("../font/ZenKakuGothicNew-Regular.woff") format('woff');
}
@font-face {
  font-family: 'ZenKakuGothic_Bold';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/ZenKakuGothicNew-Bold.woff2") format('woff2'), url("../font/ZenKakuGothicNew-Bold.woff") format('woff');
}
/*ZenMaruGothic（日本語）*/
@font-face {
  font-family: 'ZenMaruGothic';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/ZenMaruGothic-Medium.woff2") format('woff2'), url("../font/ZenMaruGothic-Medium.woff") format('woff');
}
@font-face {
  font-family: 'ZenMaruGothic_Bold';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/ZenMaruGothic-Bold.woff2") format('woff2'), url("../font/ZenMaruGothic-Bold.woff") format('woff');
}
/*Roboto*/
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../font/Roboto-Regular.woff2") format('woff2'), url("../font/Roboto-Regular.woff") format('woff');
}

/* ----------------------------------------------- */
* {
  color: #46423c;
  line-height: 170%;
  box-sizing: border-box;
  font-family: 'ZenMaruGothic', sans-serif;
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.8rem;
  -webkit-print-color-adjust: exact;
  -webkit-text-size-adjust: 100%;
  background-color: #f7f5f2;
}
/* ----------------------------------------------- link */
a {
  text-decoration: underline;
  transition: all 0.3s ease 0s;
  color: #0b5394
}
::before,
::after {
  transition: all 0.3s ease 0.2s;
}
/*a:hover {
  opacity: 0.5;
}*/
/* ----------------------------------------------- color */
.red {
  color: #FF0000;
}
/* ----------------------------------------------- position */
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
/* ----------------------------------------------- file */
a[href$=".pdf"]:after,
a[href$=".doc"]:after,
a[href$=".docx"]:after,
a[href$=".xls"]:after,
a[href$=".xlsx"]:after {
  display: inline-block;
  padding: 1px 26px 1px 0;
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: 5px center;
  content: ".";
  bottom: 0;
  text-indent: -9999px;
}
a[href$=".pdf"]:after {
  background-image: url(../img/pdf.svg);
}
a[href$=".doc"]:after {
  background-image: url(../img/doc.svg);
}
a[href$=".docx"]:after {
  background-image: url(../img/doc.svg);
}
a[href$=".xls"]:after {
  background-image: url(../img/xls.svg);
}
a[href$=".xlsx"]:after {
  background-image: url(../img/xls.svg);
}
/* 画像の場合はアイコンを削除 */
a.remove-img-icon {
  border:none;
}
a.remove-img-icon::after {
  content: none;
}
/* ----------------------------------------------- hr */
hr.clear {
  clear: both;
  height: 1px;
  border: 0px;
  border: 1px solid transparent;
  color: #fff;
}
/* ----------------------------------------------- wrapper */
#wrapper {
  width: 100%;
  overflow-x: hidden;
}
/* ----------------------------------------------- header */
header {
  display: flex;
  position: relative;
  justify-content: space-between;
  padding-bottom: 20px;
}
header::before {
  position: absolute;
  z-index: -1;
  content: '';
  width: 390px;
  height: 175px;
  background-image: url("../img/logo_back.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
}
header h1 {}
header h1 img {
  margin: 40px 0 0 30px;
}
header h1 a:hover {
  opacity: 1;
}
/* -------------------------------------------------- nav */
#nav {}
.overlay {}
#nav .txt {
  display: none;
}
nav {}
nav p {
  display: none;
}
nav .toggle {
  display: none;
}
nav ul {
  display: flex;
  width: 570px;
  margin-right: 10px;
}
nav ul li {
  position: relative;
  width: 20%;
  text-align: center;
}
nav ul li::before {
  position: absolute;
  content: '';
  width: 3px;
  height: 90%;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../img/navi_side.png");
  background-repeat: repeat-y;
  background-position: right;
}
nav ul li:last-child::before {
  background: none;
}
nav ul li a {
  padding-top: 57px;
  display: block;
  background-repeat: no-repeat;
  background-position: 50% 8px;
}
nav ul li:nth-child(1) a {
  background-image: url("../img/nav_icon1.png");
}
nav ul li:nth-child(2) a {
  background-image: url("../img/nav_icon2.png");
}
nav ul li:nth-child(3) a {
  background-image: url("../img/nav_icon3.png");
}
nav ul li:nth-child(4) a {
  background-image: url("../img/nav_icon4.png");
}
nav ul li:nth-child(5) a {
  background-image: url("../img/nav_icon5.png");
}
nav ul li a:link,
nav ul li a:active,
nav ul li a:visited {
  font-family: "ZenMaruGothic_Bold";
  font-size: 1.8rem;
  color: #46423c;
  text-decoration: none;
}
nav ul li a:hover {
  opacity: 1;
  color: #ffba25;
  background-position: 50% 0;
}
nav ul li.on {
  background-image: url("../img/nav_on_back.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
nav ul li.on a:link {
  color: #ffba25;
}
nav p {
  display: none;
}
/* ----------------------------------------------- footer */
footer {
  overflow: hidden;
  text-align: center;
  padding-top: 150px;
}
footer .box_c {
  border-radius: 3000px 3000px 0 0 / 300px 300px 0 0;
  padding-bottom: 100px;
  background-color: #fff5de;
}
footer .footer_inner {
  position: relative;
  margin-top: -20px;
  padding-bottom: 50px;
  text-align: center;
  background-color: #fff5de;
}
footer .footer_inner .logo {
  width: 1200px;
  max-width: 95%;
  margin: 0 auto 30px auto;
  text-align: left;
}
footer .footer_inner .footer_main {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  max-width: 95%;
  margin: 0 auto;
  text-align: left;
}
/**/
footer .footer_inner .footer_main .info {}
footer .footer_inner .footer_main .info address {
  padding-bottom: 20px;
}
footer .footer_inner .footer_main .info address br {
  display: none;
}
footer .footer_inner .footer_main .info address .map {
  position: relative;
  display: inline-block;
  background-color: #8fd054;
  border: 2px solid #8fd054;
  margin-left: 10px;
  padding: 2px 15px 1px 25px;
  border-radius: 30px;
}
footer .footer_inner .footer_main .info address .map:hover {
  background-color: rgba(143,208,84,0.7)
}
footer .footer_inner .footer_main .info address .map::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  width: 11px;
  height: 15px;
  background: url("../img/footer_map_icon.png");
}
footer .footer_inner .footer_main .info address .map:link,
footer .footer_inner .footer_main .info address .map:active,
footer .footer_inner .footer_main .info address .map:visited {
  font-family: 'ZenKakuGothic_Bold';
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
}
footer .footer_inner .footer_main .info .tel {
  display: inline-block;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 25px 15px 70px;
  font-family: "Roboto";
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #46423c;
  text-decoration: none;
  background-image: url("../img/footer_tel_icon.png");
  background-repeat: no-repeat;
  background-position: 20px 50%;
}
/**/
footer .footer_inner .footer_main .navi {}
footer .footer_inner .footer_main .navi ul {
  width: 450px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .footer_inner .footer_main .navi ul li {
  display: inline-block;
  padding-bottom: 10px;
}
footer .footer_inner .footer_main .navi ul a {
  position: relative;
  padding: 0 20px 0 25px;
  font-size: 1.7rem;
  color: #46423c;
  text-decoration: none;
  vertical-align: text-top;
}
footer .footer_inner .footer_main .navi ul a::before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #ffc63a;
  border: 2px solid #ffc63a;
}
footer .footer_inner .footer_main .navi ul a:hover::before {
  background-color: #fff;
}
footer .footer_inner .footer_main .navi ul a::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 4px;
  margin: auto;
  width: 6px;
  height: 6px;
  border: 2px solid #fff;
  border-bottom: none;
  border-left: none;
  border-radius: 3px;
  transform:rotate(45deg);
}
footer .footer_inner .footer_main .navi ul a:hover::after {
  left: 6px;
  border-color: #ffc63a;
}
footer .footer_inner .footer_main .navi p {
  padding: 15px 0;
  text-align: right;
  font-size: 1.3rem;
}
footer .footer_inner .footer_main .navi p a {
  position: relative;
  display: inline-block;
}
footer .footer_inner .footer_main .navi p a:link,
footer .footer_inner .footer_main .navi p a:active,
footer .footer_inner .footer_main .navi p a:visited {
  color: #46423c;
  text-decoration: none;
}
footer .footer_inner .footer_main .navi p a::before {
  position: absolute;
  content: '';
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #46423c;
}
footer .footer_inner .footer_main .navi p a:hover::before {
  width: 100%;
}
/*parts*/
footer .footer_inner .parts_footer1 {
  position: absolute;
  top: -100px;
  right: 20px;
  z-index: 1000;
}
footer .footer_inner .parts_footer2 {
  position: absolute;
  top: -60px;
  right: -5px;
  z-index: 1000;
}

/* ----------------------------------------------- address */
.copyright {
  text-align: center;
  padding: 20px;
  font-family: 'ZenKakuGothic_Bold';
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: #fff;
  background-image: url("../img/copy_back.png");
}

/* ----------------------------------------------- carousel */
.introduction_carousel .slider_carousel li,
.event_carousel .slider_carousel li {
  position: relative;
  margin: 15px 0;
}
.introduction_carousel .slider_carousel li::before,
.event_carousel .slider_carousel li::before {
  position: absolute;
  content: '';
  background-repeat: no-repeat;
}
.introduction_carousel .slider_carousel li:nth-of-type(1)::before,
.introduction_carousel .slider_carousel li:nth-of-type(10n + 1)::before,
.event_carousel .slider_carousel li:nth-of-type(1)::before,
.event_carousel .slider_carousel li:nth-of-type(10n + 1)::before {
  top: -5%;
  left: -20px;;
  width: 100px;
  height: 60px;
  background-image: url("../../img/carousel_parts3.png");
}
.introduction_carousel .slider_carousel li:nth-of-type(2)::before,
.introduction_carousel .slider_carousel li:nth-of-type(10n + 2)::before,
.event_carousel .slider_carousel li:nth-of-type(2)::before,
.event_carousel .slider_carousel li:nth-of-type(10n + 2)::before {
  top: 6%;
  left: 20px;;
  width: 60px;
  height: 72px;
  background-image: url("../../img/carousel_parts2.png");
}
.introduction_carousel .slider_carousel li:nth-of-type(3)::before,
.introduction_carousel .slider_carousel li:nth-of-type(10n + 3)::before,
.event_carousel .slider_carousel li:nth-of-type(3)::before,
.event_carousel .slider_carousel li:nth-of-type(10n + 3)::before {
  top: -4%;
  right: -20px;;
  width: 65px;
  height: 71px;
  background-image: url("../../img/carousel_parts1.png");
}
.introduction_carousel .slider_carousel li:nth-of-type(4)::before,
.introduction_carousel .slider_carousel li:nth-of-type(10n + 4)::before,
.event_carousel .slider_carousel li:nth-of-type(4)::before,
.event_carousel .slider_carousel li:nth-of-type(10n + 4)::before {
  top: 15%;
  right: -30px;;
  width: 61px;
  height: 47px;
  background-image: url("../../img/carousel_parts5.png");
}
.introduction_carousel .slider_carousel li:nth-of-type(5)::before,
.introduction_carousel .slider_carousel li:nth-of-type(10n + 5)::before,
.event_carousel .slider_carousel li:nth-of-type(5)::before,
.event_carousel .slider_carousel li:nth-of-type(10n + 5)::before {
  top: -5%;
  right: -15px;;
  width: 38px;
  height: 85px;
  background-image: url("../../img/carousel_parts4.png");
}
.introduction_carousel .slider_carousel li:nth-of-type(6)::before,
.introduction_carousel .slider_carousel li:nth-of-type(10n + 6)::before,
.event_carousel .slider_carousel li:nth-of-type(6)::before,
.event_carousel .slider_carousel li:nth-of-type(10n + 6)::before {
  top: 60%;
  left: -20px;;
  width: 100px;
  height: 60px;
  background-image: url("../../img/carousel_parts3.png");
}
.introduction_carousel .slider_carousel li:nth-of-type(7)::before,
.introduction_carousel .slider_carousel li:nth-of-type(10n + 7)::before,
.event_carousel .slider_carousel li:nth-of-type(7)::before,
.event_carousel .slider_carousel li:nth-of-type(10n + 7)::before {
  top: -4%;
  right: -20px;;
  width: 60px;
  height: 72px;
  background-image: url("../../img/carousel_parts2.png");
}
.introduction_carousel .slider_carousel li:nth-of-type(8)::before,
.introduction_carousel .slider_carousel li:nth-of-type(10n + 8)::before,
.event_carousel .slider_carousel li:nth-of-type(8)::before,
.event_carousel .slider_carousel li:nth-of-type(10n + 8)::before {
  top: 30%;
  right: -20px;;
  width: 65px;
  height: 71px;
  background-image: url("../../img/carousel_parts1.png");
}
.introduction_carousel .slider_carousel li:nth-of-type(9)::before,
.introduction_carousel .slider_carousel li:nth-of-type(10n + 9)::before,
.event_carousel .slider_carousel li:nth-of-type(9)::before,
.event_carousel .slider_carousel li:nth-of-type(10n + 9)::before {
  top: -5%;
  left: -30px;;
  width: 61px;
  height: 47px;
  background-image: url("../../img/carousel_parts5.png");
}
.introduction_carousel .slider_carousel li:nth-of-type(10)::before,
.introduction_carousel .slider_carousel li:nth-of-type(10n + 10)::before,
.event_carousel .slider_carousel li:nth-of-type(10)::before,
.event_carousel .slider_carousel li:nth-of-type(10n + 10)::before {
  top: 30%;
  left: -15px;;
  width: 38px;
  height: 85px;
  background-image: url("../../img/carousel_parts4.png");
}
.introduction_carousel .slider_carousel li img,
.event_carousel .slider_carousel li img {
  width: 300px;
  height: auto;
  border-radius: 30px;
}
.introduction_carousel .slider_carousel li:nth-child(even) img,
.event_carousel .slider_carousel li:nth-child(even) img {
  margin-top: 50px;
}
