@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
/*-------------------------------------------
animate.css
----------------------------------------------*/
@keyframes fadeOutLeft {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translateX(-800px);
  }
}
@keyframes fadeOutright {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translateX(800px);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 2%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  opacity: 0;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  animation-delay: 1s;
}

.animated.delay-2s {
  animation-delay: 2s;
}

.animated.delay-3s {
  animation-delay: 3s;
}

.animated.delay-4s {
  animation-delay: 4s;
}

.animated.delay-5s {
  animation-delay: 5s;
}

.animated.fast {
  animation-duration: 800ms;
}

.animated.faster {
  animation-duration: 500ms;
}

.animated.slow {
  animation-duration: 2s;
}

.animated.slower {
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}
@media all and (max-width: 769px) {
  .animated.delay-1s,
  .animated.delay-2s,
  .animated.delay-3s,
  .animated.delay-4s,
  .animated.delay-5s {
    animation-duration: 0.3s;
  }
}
body {
  color: #2b363d;
  font-family: "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.1rem;
  background: #fefefe;
}
body:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 85px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/head-top.svg) no-repeat center top/cover;
  z-index: -10;
}
@media all and (max-width: 800px) {
  body:before {
    bottom: -50px;
  }
}

#nav-toggle,
#sp-nav {
  display: none;
}

a {
  color: #dcaf0f;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

.bold {
  font-weight: 600;
}

h2,
h3 {
  line-height: 1.4;
  font-weight: 400;
}

.mincho {
  font-family: "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}

.ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

#wrapper {
  overflow: hidden;
}

/* animation
----------------------------------*/
@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.fuwafuwa {
  animation-name: fuwafuwa;
  animation-duration: 2s;
  animation-delay: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

.deco-anime2 {
  animation: rotate_anime 1.5s cubic-bezier(0.87, 0.01, 0, 0.99) infinite;
  margin: 0 auto;
}
.deco-anime {
  animation: rotate_anime 1.5s cubic-bezier(0.87, 0.01, 0, 0.99) infinite;
  max-width: 160px;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .deco-anime {
    max-width: 100px;
  }
}
@keyframes rotate_anime {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(0deg);
  }
  30% {
    transform: rotate(5deg);
  }
  85% {
    transform: rotate(5deg);
  }
  90% {
    transform: rotate(0deg);
  }
}
@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.animation {
  opacity: 0;
}

.slideup.on {
  opacity: 1;
  animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.zoomin.on {
  opacity: 1;
  animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
  align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader::after {
  animation: loader 0.5s linear infinite;
  border: 1px solid #f4d35d;
  border-radius: 50%;
  border-right: 1px solid rgba(244, 211, 93, 0.2);
  border-top: 1px solid rgba(244, 211, 93, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.loader.off {
  display: none;
}

@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bounce-anm {
  0% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(0);
  }
  60% {
    transform: translateY(-3px);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#l-header {
  width: 100%;
  position: relative;
  z-index: 200;
  transition: 0.5s all ease;
}
#l-header.is-fixed {
  background: #f4d35d;
  position: fixed;
  left: 0;
  top: 0;
}
#l-header.is-fixed .inner {
  padding: 5px 0;
}
#l-header.is-fixed .inner #logo {
  top: 25px;
}
#l-header.is-fixed .inner #header_nav .nav-img {
  filter: brightness(0.3);
}
#l-header .inner {
  max-width: 1200px;
  margin: 0 auto;
  min-width: 800px;
  position: relative;
  padding: 20px 0 8px;
}
@media all and (max-width: 800px) {
  #l-header .inner {
    min-width: initial;
  }
}

#logo {
  width: 270px;
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  z-index: 10;
  transition: all 0.2s ease-in;
}
@media all and (max-width: 1200px) {
  #logo {
    width: 200px;
  }
}
@media all and (max-width: 800px) {
  #logo {
    position: relative;
  }
}

.header-right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.header-right_contact {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}
@media all and (max-width: 800px) {
  .header-right_contact {
    display: none;
  }
}

.header-right_sns {
  justify-content: flex-end;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media all and (max-width: 800px) {
  .header-right_sns .sns-list {
    position: absolute;
    left: 5px;
    top: 15px;
  }
}

.sns-list {
  display: flex;
  flex-wrap: wrap;
}
.sns-list.type1 {
  justify-content: center;
}
.sns-list li:not(:last-child) {
  margin-right: 10px;
}
.sns-list li a {
  width: 35px;
  height: 35px;
  display: block;
  text-align: center;
  line-height: 35px;
  color: #fff;
  position: relative;
  font-size: 1.8rem;
  border-radius: 50%;
}
.sns-list li a:hover {
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  .sns-list li a {
    font-size: 1.5rem;
  }
}
.sns-list li a.btn-facebook {
  background: #1877f2;
}
.sns-list li a.btn-twitter {
  background: #1da1f2;
}
.sns-list li a.btn-tiktok {
  background: #111;
}
.sns-list li a.btn-instagram {
  overflow: hidden;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}
.sns-list li a.btn-instagram i {
  position: relative;
  z-index: 2;
}
.sns-list li a.btn-instagram:before {
  content: "";
  position: absolute;
  /*絶対配置*/
  top: 18px;
  /*ずらす*/
  left: -10px;
  /*ずらす*/
  width: 50px;
  /*グラデーションカバーの幅*/
  height: 50px;
  /*グラデーションカバーの高さ*/
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  /*グラデーション②*/
}

.translate {
  position: fixed;
  right: 0;
  top: 120px;
  z-index: 200;
  padding: 4px;
  background: rgba(255, 213, 74, 0.4);
}
@media all and (max-width: 639px) {
  .translate {
    top: 80px;
    font-size: 12px;
    padding-right: 0;
  }
}

.header-right_tel a,
.header-right_mail a,
.header-right_reserve a {
  display: block;
  padding: 5px 10px;
  line-height: 1.4;
  text-align: center;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0;
  font-weight: 600;
}
.header-right_tel a span,
.header-right_mail a span,
.header-right_reserve a span {
  padding-right: 5px;
}
.header-right_tel a:hover,
.header-right_mail a:hover,
.header-right_reserve a:hover {
  transition: background-color 0.2s ease-in;
}

.header-right_tel {
  text-align: center;
  margin-right: 5px;
}
.header-right_tel span {
  display: block;
  font-size: 12px;
  margin-top: -10px;
}
.header-right_tel a {
  width: 100%;
  color: #f4d35d;
  font-size: 2rem;
  padding: 5px 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.header-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: bold;
  margin-right: 5px;
  font-size: 1.6rem;
}
.header-right_tel a:hover {
  color: #f1c62d;
}

.header-right_mail a {
  background: #fff;
  border: 1px solid #f4d35d;
  color: #81bb67;
  padding: 6px 10px;
  border-radius: 20px;
}
.header-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: bold;
  margin-right: 5px;
}
.header-right_mail a:hover {
  background: rgba(244, 211, 93, 0.5);
}

.header-right_reserve {
  margin-right: 8px;
}
.header-right_reserve.type1 a {
  background: #fff;
  border: 1px solid #6c472f;
  color: #6c472f;
}
.header-right_reserve a {
  background: #ffd54a;
  color: #222;
  padding: 6px 10px;
  border-radius: 20px;
  width: 180px;
}
.header-right_reserve a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  font-weight: bold;
  margin-right: 5px;
}
@media all and (max-width: 800px) {
  .header-right_reserve {
    display: none;
  }
}

.header-right_fax {
  display: block;
  padding: 6px 15px;
  border-radius: 40px;
  line-height: 1.4;
  font-size: 1.8rem;
  color: #fff;
  max-width: 350px;
  font-weight: 600;
  background: #9ecb8a;
}
.header-right_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: bold;
  margin-right: 5px;
}

#header_nav {
  position: relative;
  flex-basis: 100%;
}
#header_nav ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: space-between;
}
#header_nav ul li {
  position: relative;
  width: calc((100% - 200px) / 6);
  text-align: center;
}
#header_nav ul li a {
  display: block;
  position: relative;
  line-height: 1.3;
  font-size: 1.5rem;
  color: #2b363d;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-weight: 700;
  padding: 12px 0;
  transition: background-color 0.2s ease-in;
}
#header_nav ul li a span {
  display: block;
  color: #205474;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: color 0.2s ease-in;
}
#header_nav ul li a .nav-img {
  width: 40px;
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  text-align: center;
  margin: 0 auto;
  display: block;
  color: #071226;
  margin-bottom: 3px;
  transition: all 0.4s ease;
}
#header_nav ul li a:hover span, #header_nav ul li a.active span {
  color: #e09226;
}
#header_nav ul li a:hover .nav-img, #header_nav ul li a.active .nav-img {
  transform: translateY(-5px);
}
#header_nav ul li:nth-child(2) {
  margin-right: 155px;
}
#header_nav ul li:nth-child(3) {
  margin-left: 155px;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 50%;
  margin-left: -70px;
  top: 55px;
  z-index: 310;
  background: #f0efec;
}
#header_nav .dropdown .dropdown-li {
  padding: 7px 10px;
  margin: 0;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 140px;
  text-align: center;
  font-size: 1.4rem;
  padding: 10px 0;
  border-right: 0;
  color: #555;
  border-radius: 30px;
  background: #fff;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}
#header_nav .dropdown .dropdown-li a:hover {
  transition: all 0.2s ease-in;
  color: #e94c01;
}
#header_nav .dropdown .dropdown-li.foot_only {
  display: none;
}
@media all and (max-width: 1200px) {
  #header_nav ul {
    justify-content: center;
  }
  #header_nav ul li a {
    font-size: 1.3rem;
  }
  #header_nav ul li a .nav-img {
    width: 30px;
    height: 30px;
  }
  #header_nav ul li:nth-child(2) {
    margin-right: 130px;
  }
  #header_nav ul li:nth-child(3) {
    margin-left: 130px;
  }
}

/* page-top
----------------------------------*/
#page-top {
  z-index: 99;
}
#page-top a {
  display: block;
  width: 100%;
  height: 100%;
}
#page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 639px) {
  #page-top {
    bottom: 45px;
  }
}

/* swiper
----------------------------------*/
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
.swiper-slide {
  position: relative;
}
.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.swiper-slide.slide0:before {
  background-image: url(../img/0.jpg);
}
.swiper-slide.slide1:before {
  background-image: url(../img/004.jpg);
}
.swiper-slide.slide2:before {
  background-image: url(../img/011.jpg);
}
.swiper-slide.slide3:before {
  background-image: url(../img/002.jpg);
  background-position: 50% 20%;
}
.swiper-slide.slide4:before {
  background-image: url(../img/012.jpg);
}

.slide-img {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide-img img {
  width: 600px;
}
@media all and (max-width: 1200px) {
  .slide-img {
    height: 50vw;
  }
}
@media all and (max-width: 800px) {
  .slide-img img {
    width: 60%;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 100vw;
  }
}

.slide-txt {
  position: absolute;
  left: 5%;
  bottom: 37%;
  transform: translateY(50%);
  text-align: center;
  z-index: 3;
}

@media all and (max-width: 639px) {
  .slide-txt {
    width: 80%;
  }
}
#slide-bg {
  position: relative;
}

#slideshow {
  width: calc(100% - 150px);
  border-radius: 80px;
  margin: 0 auto;
  overflow: hidden;
}
@media all and (max-width: 1200px) {
  #slideshow {
    width: 95%;
    min-width: initial;
  }
}
@media all and (max-width: 639px) {
  #slideshow {
    margin-top: 15px;
    margin-bottom: 10px;
    width: 95%;
    border-radius: 40px;
  }
}

#mainview-name {
  padding: 40px 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  letter-spacing: 0.2em;
}

#catch {
  z-index: 150;
  position: absolute;
  left: 7%;
  bottom: 10%;
  opacity: 0;
}
#catch.on {
  opacity: 1;
  transition: 2s;
}
@media all and (max-width: 1200px) {
  #catch {
    width: 45%;
  }
}
@media all and (max-width: 639px) {
  #catch {
    width: 85%;
  }
}

.contact_lead {
  font-size: 1.3em;
  color: #6c472f;
  text-align: center;
}
@media all and (max-width: 639px) {
  .contact_lead {
    font-size: 1em;
  }
}

.contact_wrap {
  max-width: 1200px;
  border-top: 3px solid white;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.contact_wrap .contact_left,
.contact_wrap .contact_right {
  width: 49%;
  padding: 20px;
}
.contact_wrap .contact_right {
  text-align: right;
}
.contact_wrap .contact_left {
  margin-right: 2%;
  border-right: 3px solid white;
}
@media all and (max-width: 639px) {
  .contact_wrap {
    margin-top: 30px;
    width: 94%;
    flex-direction: column;
  }
  .contact_wrap .contact_left,
  .contact_wrap .contact_right {
    width: 100%;
    padding: 10px;
    font-size: 0.9em;
    letter-spacing: 0;
    font-weight: normal;
  }
  .contact_wrap .contact_right {
    text-align: left;
  }
  .contact_wrap .contact_left {
    margin-right: auto;
    border-right: 0;
    border-bottom: 3px solid #fff;
  }
}

.contact_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
}
.contact_bnr > li {
  margin-right: 2%;
  margin-bottom: 10px;
}
.contact_bnr > li:last-child {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .contact_bnr > li {
    margin-bottom: 8px;
  }
  .contact_bnr > li:last-child {
    margin-right: auto;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  line-height: 1.1;
  font-size: 2rem;
  background-color: #fff;
  color: #e09226;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: bold;
  font-size: 2.8rem;
  color: #e09226;
}
.contact_bnr > li .bnr_tel:hover {
  background-color: #e09226;
  color: #fff;
}
@media all and (max-width: 800px) {
  .contact_bnr > li .bnr_tel {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_tel {
    font-size: 1.8rem;
  }
  .contact_bnr > li .bnr_tel:before {
    font-size: 1.8rem;
  }
}
.contact_bnr > li .bnr_mobile {
  background: #9ecb8a;
}
.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: bold;
}
.contact_bnr > li .bnr_mobile:hover {
  background: #e94c01;
}
.contact_bnr > li .bnr_free {
  color: #222;
  margin-top: -10px;
  margin-bottom: 10px;
}
.contact_bnr > li .bnr_free:before {
  content: "Free";
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  margin-right: 5px;
}
.contact_bnr > li .bnr_reserve {
  background: #ffd54a;
  color: #111;
}
.contact_bnr > li .bnr_reserve.type1 {
  background: #fff;
  border: 0.9px solid #6c472f;
}
.contact_bnr > li .bnr_reserve:before {
  font-family: "Font Awesome 5 Free";
  content: "\f073";
  font-weight: bold;
  margin-right: 5px;
}
.contact_bnr > li .bnr_reserve:hover {
  background: #ffe17d;
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_reserve {
    font-size: 1.3rem;
    width: 280px;
  }
}
.contact_bnr > li .bnr_mail {
  background: #fff;
  color: #e09226;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: bold;
}
.contact_bnr > li .bnr_mail:hover {
  background: #cf851e;
  color: #fff;
}
.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  border: 1px solid #fff;
  margin: 0 auto;
  color: #fff;
  width: 330px;
  font-weight: bold;
  text-align: center;
  font-size: 1.7rem;
  padding: 8px 0;
  border-radius: 50px;
}
.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
}
@media all and (max-width: 800px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    width: 280px;
  }
}
@media all and (max-width: 639px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    font-size: 1.3rem;
    max-width: 80%;
  }
}
@media all and (max-width: 320px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    max-width: 100%;
  }
}
.contact_bnr.w100 li {
  margin-right: 0;
  margin-bottom: 10px;
}

/* footer
----------------------------------*/
#l-footer {
  font-size: 1.3rem;
  position: relative;
}
#l-footer .footer-dog {
  position: absolute;
  width: 225px;
  height: 180px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  transition: 0.2s all ease;
}
#l-footer .footer-dog a {
  display: block;
}
#l-footer .footer-dog:hover {
  top: -100px;
}
@media all and (max-width: 639px) {
  #l-footer .footer-dog {
    width: 180px;
    height: 140px;
    top: -65px;
  }
  #l-footer .footer-dog:hover {
    top: -80px;
  }
}
#l-footer .inner {
  position: relative;
  z-index: 3;
  max-width: 95%;
  margin: 0 auto;
  padding: 30px 10px 30px;
  background-color: #f4d35d;
  border-radius: 50px 50px 0 0;
}
#l-footer .inner.type2 {
  background: #f4d35d;
}
#l-footer .footer-box {
  margin: 0 auto;
  padding: 40px 20px 0;
}
@media all and (max-width: 639px) {
  #l-footer .footer-box {
    padding: 25px 10px;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 12px;
  }
}

.footer-column-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-column-wrap .footer-column-left {
  width: 30%;
  position: relative;
}
.footer-column-wrap .footer-column-left:before {
  position: absolute;
  content: "";
  background: #e09226;
  width: 2px;
  height: 155px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer-column-wrap .footer-column-middle {
  width: 40%;
  position: relative;
  padding: 0 25px;
}
.footer-column-wrap .footer-column-middle:before {
  position: absolute;
  content: "";
  background: #e09226;
  width: 2px;
  height: 155px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.footer-column-wrap .footer-column-right {
  width: 30%;
  padding-left: 15px;
}
@media all and (max-width: 800px) {
  .footer-column-wrap .footer-column-left,
  .footer-column-wrap .footer-column-middle {
    width: 48%;
  }
  .footer-column-wrap .footer-column-left:before,
  .footer-column-wrap .footer-column-middle:before {
    display: none;
  }
  .footer-column-wrap .footer-column-right {
    width: 100%;
    margin-top: 20px;
    display: none;
  }
}
@media all and (max-width: 639px) {
  .footer-column-wrap {
    flex-direction: column;
  }
  .footer-column-wrap .footer-column-left,
  .footer-column-wrap .footer-column-middle,
  .footer-column-wrap .footer-column-right {
    width: 100%;
  }
}

/* footer_navi
----------------------------------*/
.footer_navi {
  margin: 30px auto 20px;
}
.footer_navi ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.footer_navi li {
  width: 100%;
}
.footer_navi li:last-child {
  border-right: 0;
}
.footer_navi li a {
  color: #2b363d;
  font-size: 1.3rem;
  position: relative;
  font-weight: 600;
  padding-left: 25px;
}
.footer_navi li a:before {
  content: "";
  background-color: #e09226;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: 0;
}
.footer_navi li a span {
  display: none;
}
.footer_navi li a .nav-img {
  display: none;
}
.footer_navi li a:hover {
  color: #e09226;
}
.footer_navi li .dropdown {
  display: none;
}

.footer-insta a {
  width: 35px;
  height: 35px;
  display: block;
  margin: 0 auto;
  text-align: center;
  line-height: 35px;
  border-radius: 100%;
  font-size: 1.8rem;
  background: #222;
  color: #fefefe;
}

.flogo {
  width: 250px;
  margin: 0 auto 10px;
  min-height: 0;
}
.flogo a {
  display: block;
}
@media all and (max-width: 639px) {
  .flogo {
    width: 180px;
  }
}

.copyright {
  padding: 18px 0;
  background: #f4d35d;
  color: #2b363d;
  font-size: 1.2rem;
  width: 95%;
  margin: 0 auto;
}
@media all and (max-width: 800px) {
  .copyright {
    padding-bottom: 65px;
  }
}
@media all and (max-width: 639px) {
  .copyright {
    font-size: 12px;
  }
}

/*hed_side*/
#hed_side {
  position: fixed;
  right: 0;
  bottom: 10%;
  margin: auto;
  z-index: 222;
  transition: 0.2s ease-in all;
}
#hed_side ul li img {
  width: 80px;
}
#hed_side ul li a {
  display: block;
  padding: 5px;
  margin-bottom: 5px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  transition: 0.5s;
  transition: box-shadow 0.3s, transform 0.3s;
}
#hed_side ul li a:hover {
  opacity: 0.8;
  animation: bounce-anm 1s ease infinite;
  animation: bounce-anm 1s ease infinite;
}
#hed_side ul li a:visited {
  opacity: 1;
}

@media all and (max-width: 800px) {
  #hed_side {
    display: none;
    width: 100%;
    height: auto;
    top: auto;
    bottom: 62px;
  }
  #hed_side li {
    border-right: 1px solid #dadada;
  }
  #hed_side li:last-child {
    border-right: none;
  }
}
/*----------------------------------
 --top-contents--
----------------------------------*/
.board-box {
  background: #ccc;
  padding: 20px;
}

.item-list .slick-slide {
  padding: 0px 15px !important;
}
.item-list a {
  display: block;
  width: 100%;
  height: 18vw;
  overflow: hidden;
}
.item-list a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1200px) {
  .item-list a {
    height: 25vw;
  }
}
@media all and (max-width: 639px) {
  .item-list a {
    height: 200px;
  }
}
@media all and (max-width: 639px) {
  .item-list {
    padding: 0 14px;
  }
}

.works-gallery a {
  width: 100%;
  height: 350px;
  display: block;
  overflow: hidden;
}
.works-gallery a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .works-gallery a {
    height: 240px;
  }
}

/* --top-intro--
----------------------------------*/
.top-lead {
  position: relative;
}

.top-lead-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.top-lead-box.type1 .top-lead-img {
  order: 2;
}
.top-lead-box .top-lead-img {
  width: 55%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.top-lead-box .top-lead-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-lead-box .top-lead-txt {
  width: 44%;
  padding: 10px;
}
.top-lead-box .top-lead-txt .top-lead-catch {
  text-align: center;
  line-height: 2;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  color: #f4d35d;
  font-weight: 600;
}
@media all and (max-width: 800px) {
  .top-lead-box {
    flex-direction: column;
  }
  .top-lead-box .top-lead-img {
    width: 80%;
  }
  .top-lead-box .top-lead-txt {
    width: 80%;
  }
}
@media all and (max-width: 639px) {
  .top-lead-box .top-lead-img {
    width: 100%;
    margin-bottom: 20px;
  }
  .top-lead-box .top-lead-txt {
    width: 100%;
    padding: 0 15px;
  }
  .top-lead-box .top-lead-txt .top-lead-catch {
    font-size: 1.4rem;
  }
}

.sec2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
@media all and (max-width: 800px) {
  .sec2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.sec2-txt-box {
  width: 350px;
  align-self: center;
  letter-spacing: 0.15em;
  position: relative;
}
@media all and (max-width: 800px) {
  .sec2-txt-box {
    margin: 30px auto;
  }
}
@media all and (max-width: 639px) {
  .sec2-txt-box {
    width: 90%;
  }
  .sec2-txt-box .top-animation2 {
    opacity: 0;
  }
  .sec2-txt-box .top-animation2.is-on {
    opacity: 1;
    animation: fadeInUp 0.4s ease-in-out;
    z-index: 2;
  }
}

.sec2-img-box {
  width: calc((100% - 600px) / 2);
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 50px;
}
@media all and (max-width: 1400px) {
  .sec2-img-box {
    width: calc((100% - 400px) / 2);
    -moz-column-gap: 30px;
         column-gap: 30px;
    row-gap: 30px;
  }
}
@media all and (max-width: 800px) {
  .sec2-img-box {
    width: 80%;
  }
}
@media all and (max-width: 639px) {
  .sec2-img-box {
    width: 100%;
  }
}
.sec2-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.sec2-img-box.img-1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media all and (max-width: 639px) {
  .sec2-img-box.img-1 {
    display: none;
  }
}
.sec2-img-box.img-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.sec2-img-box.img-2 .img-2-01 {
  grid-column: 1;
  grid-row: 1/3;
}
.sec2-img-box.img-2 .img-2-02 {
  grid-column: 2;
  grid-row: 1;
}
.sec2-img-box.img-2 .img-2-03 {
  grid-column: 2;
  grid-row: 2;
}

.sp-sec2 {
  display: none;
}
@media all and (max-width: 639px) {
  .sp-sec2 {
    display: block;
    position: relative;
    height: 50px;
    margin-bottom: -40px;
    width: 100%;
  }
  .sp-sec2 .trigger1 {
    content: "";
    position: absolute;
    width: 47%;
    height: 100%;
    left: 0;
    top: 0;
    transition: transform 1s ease-in;
  }
  .sp-sec2 .trigger1 img {
    margin-bottom: 30px;
  }
  .sp-sec2 .trigger1.is-on {
    transform: translateX(-700px);
  }
  .sp-sec2 .trigger2 {
    content: "";
    position: absolute;
    width: 47%;
    height: 100%;
    right: 0;
    top: 0;
    transition: transform 1s ease-in;
  }
  .sp-sec2 .trigger2 img {
    margin-bottom: 30px;
  }
  .sp-sec2 .trigger2.is-on {
    transform: translateX(700px);
  }
}

.img-100 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  height: 350px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 20px;
}
.img-100 .kazari-r {
  position: absolute;
  width: 180px;
  height: 90px;
  right: 0;
  top: 0;
  filter: drop-shadow(2px 2px 0px white);
}
@media all and (max-width: 639px) {
  .img-100 .kazari-r {
    width: 80px;
    height: 45px;
  }
}
.img-100 .kazari-l {
  position: absolute;
  width: 180px;
  height: 90px;
  left: 0;
  top: 0;
  filter: drop-shadow(2px 2px 0px white);
}
@media all and (max-width: 639px) {
  .img-100 .kazari-l {
    width: 80px;
    height: 45px;
  }
}
.img-100 .main {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-100.type1 .main.img01, .img-100.type1 .main.img02 {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .img-100 {
    height: 250px;
  }
  .img-100.type1 .main.img01 {
    display: none;
  }
  .img-100.type1 .main.img02 {
    width: 100%;
  }
}

.icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 20px auto;
  text-align: center;
}
.deco {
  position: relative;
}
.deco:before {
  position: absolute;
  content: "";
}
.deco:before {
  right: -20px;
  top: 0;
  width: 300px;
  height: 172px;
  background: url(../img/deco01.png) no-repeat center/contain;
}
@media all and (max-width: 639px) {
  .deco:before {
    right: -10px;
    width: 170px;
    height: 97px;
    top: 30px;
    opacity: 0.7;
  }
}

.top-menu-bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 30px;
}
@media all and (max-width: 1200px) {
  .top-menu-bnr {
    width: 80%;
  }
}
@media all and (max-width: 639px) {
  .top-menu-bnr {
    width: 75%;
  }
}
.top-menu-bnr li {
  width: 23%;
}
.top-menu-bnr li:nth-child(2n) {
  transform: translateY(25px);
}
@media all and (max-width: 639px) {
  .top-menu-bnr li:nth-child(2n) {
    transform: none;
  }
}
.top-menu-bnr li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in;
}
.top-menu-bnr li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 16px;
  left: 0;
  background: #fff;
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
}
.top-menu-bnr li a:hover {
  transform: translateY(-15px);
}
.top-menu-bnr li a:hover .top-menu-img img {
  transform: scale(1.01);
  opacity: 0.9;
}
.top-menu-bnr li a:hover .top-menu-title .eng {
  color: #ffd54a;
}
@media all and (max-width: 1200px) {
  .top-menu-bnr li {
    width: 47%;
    margin-bottom: 40px;
  }
}
@media all and (max-width: 639px) {
  .top-menu-bnr li {
    width: 90%;
    margin-bottom: 30px;
  }
}
.top-menu-bnr .top-menu-img {
  width: 100%;
  height: 340px;
  overflow: hidden;
  position: relative;
  background-image: linear-gradient(to bottom, #f4d35d, #483b33);
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
}
.top-menu-bnr .top-menu-img img {
  width: 100%;
  height: 100%;
  opacity: 0.9;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transition: all 0.2s ease-in;
  display: block;
  margin: 0 auto;
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  .top-menu-bnr .top-menu-img {
    height: 260px;
  }
}
.top-menu-bnr .top-menu-title {
  position: absolute;
  left: 0;
  bottom: 45px;
  display: block;
  transition: 0.2s ease-in all;
  width: 100%;
  text-align: center;
  z-index: 2;
  font-weight: 600;
  letter-spacing: 0.15em;
}
.top-menu-bnr .top-menu-title .ja {
  font-size: 2rem;
  color: #fff;
  padding: 8px 0;
}
.top-menu-bnr .top-menu-title .eng {
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: 0.2s ease-in all;
  color: #fff;
  border-radius: 15px;
}
@media all and (max-width: 639px) {
  .top-menu-bnr .top-menu-title .ja {
    font-size: 1.6rem;
  }
  .top-menu-bnr .top-menu-title .eng {
    font-size: 1.2rem;
  }
}

/* --top-bnr-list--
----------------------------------*/
.top-bnr-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
}
.top-bnr-list > li {
  width: 31.3%;
}
.top-bnr-list > li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.top-bnr-list > li a:hover {
  transition: all 0.2s ease-in;
}
.top-bnr-list > li a:hover .btn-arrow {
  background: #e94c01;
}
.top-bnr-list > li a:hover .btn-arrow i {
  border-bottom-color: #fefefe;
}
.top-bnr-list > li a:hover .btn-arrow i:before {
  border-right-color: #fefefe;
}
.top-bnr-list > li a:hover .top-bnr-img img {
  transform: scale(1.05);
}
@media all and (max-width: 1200px) {
  .top-bnr-list {
    width: 85%;
    margin: 0 auto;
  }
  .top-bnr-list > li {
    width: 48%;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 639px) {
  .top-bnr-list {
    width: 95%;
  }
  .top-bnr-list > li {
    width: 100%;
  }
}
.top-bnr-list .top-bnr-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 20px;
}
.top-bnr-list .top-bnr-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transition: all 0.2s ease-in;
}
@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-img {
    height: 180px;
  }
}
.top-bnr-list .btn-arrow {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 20px;
  bottom: 30px;
  text-align: center;
  line-height: 60px;
  background: #fefefe;
  border: 2px solid #e94c01;
  border-radius: 100%;
  transition: all 0.2s ease-in;
}
@media all and (max-width: 639px) {
  .top-bnr-list .btn-arrow {
    bottom: 25px;
  }
}
.top-bnr-list .btn-arrow i {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: 2px solid #e94c01;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 5px;
}
.top-bnr-list .btn-arrow i:before {
  position: absolute;
  width: 10px;
  height: 8px;
  content: "";
  right: 3px;
  bottom: -2px;
  border-right: 3px solid #e94c01;
  transform: skew(45deg);
}
.top-bnr-list .top-bnr-title {
  font-weight: 600;
  padding: 15px;
  line-height: 1.4;
}
.top-bnr-list .top-bnr-title .eng {
  font-family: "Maven Pro", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #e94c01;
  display: block;
}
.top-bnr-list .top-bnr-title .ja {
  font-size: 1.7rem;
  display: block;
  color: #333;
}
@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-title {
    padding: 10px 5px;
  }
  .top-bnr-list .top-bnr-title .eng {
    font-size: 1.8rem;
  }
  .top-bnr-list .top-bnr-title .ja {
    font-size: 1.5rem;
  }
}

.top-img-box {
  position: relative;
  background: url(../img/top-bg01.jpg) no-repeat center/cover;
}
.top-img-box:before {
  position: absolute;
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  opacity: 0.8;
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .top-img-box:before {
    width: calc(100% - 20px);
    height: calc(100% - 30px);
  }
}

.top-broadcast {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.top-broadcast .broadcast-left {
  width: 33%;
}
.top-broadcast .broadcast-right {
  width: 63%;
}
@media all and (max-width: 639px) {
  .top-broadcast {
    flex-direction: column;
  }
  .top-broadcast .broadcast-left,
  .top-broadcast .broadcast-right {
    width: 100%;
  }
  .top-broadcast .broadcast-right {
    padding: 0 15px;
    margin-top: 20px;
  }
}

/*
--nintei--
----------------------------------*/
.nintei-box {
  padding: 15px;
  position: relative;
  z-index: 10;
  margin: 0 auto;
  display: flex;
  max-width: 1000px;
  border-radius: 20px;
  padding: 20px;
  align-items: center;
}
@media all and (max-width: 639px) {
  .nintei-box {
    flex-direction: column;
    margin: 20px auto;
    width: 100%;
    padding: 10px;
  }
}

.nintei-title {
  text-align: center;
  font-weight: 600;
  padding: 5px 20px;
  color: #111;
  padding: 10px;
  width: 150px;
  height: 180px;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  background: url(../img/nintei.png) no-repeat 50%/contain;
}
.nintei-title p {
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .nintei-title {
    padding: 5px 10px;
    width: 100%;
    font-size: 1.5rem;
    border-right: 0;
    height: 165px;
  }
  .nintei-title span {
    font-size: 2rem;
  }
}

.nintei-right {
  flex: 1;
  padding: 10px;
  margin-left: 20px;
}
@media all and (max-width: 639px) {
  .nintei-right {
    width: 100%;
    margin: 10px 0 0;
  }
}

/* --news--
----------------------------------*/
.news-box {
  padding: 15px;
  position: relative;
  z-index: 10;
  margin: 0 auto;
  display: flex;
  max-width: 1000px;
}
.news-box.type1 {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}
@media all and (max-width: 639px) {
  .news-box {
    flex-direction: column;
    margin: -10px auto 25px;
    width: 90%;
    padding: 10px;
  }
}

.news-title {
  text-align: center;
  font-weight: 600;
  border-right: 3px solid #f0f0f0;
  padding: 5px 20px;
  color: #111;
}
.news-title span {
  font-size: 2.5rem;
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: -5px;
  color: #f4d35d;
}
@media all and (max-width: 639px) {
  .news-title {
    padding: 5px 10px;
    width: 100%;
    font-size: 1.2rem;
    border-right: 0;
  }
  .news-title span {
    font-size: 2rem;
  }
}

.news-right {
  flex: 1;
  padding: 10px;
  margin-left: 20px;
}
@media all and (max-width: 639px) {
  .news-right {
    width: 100%;
    margin: 10px 0 0;
  }
}

.top-blog {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.top-blog li {
  width: 32%;
  margin: 0 1.5% 10px;
  position: relative;
}
.top-blog li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.top-blog li > a:hover ~ .top-blog_img img {
  transform: scale(1.1);
}
.top-blog li:nth-child(3n) {
  margin-right: 0;
}
.top-blog .top-blog_img {
  margin-bottom: 10px;
  overflow: hidden;
  height: 180px;
}
.top-blog .top-blog_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transition: transform 0.2s ease-in;
}
.top-blog .top-blog_content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.top-blog .top-blog_time {
  background: #f4d35d;
  padding: 8px 5px;
  color: #fff;
  width: 25%;
  text-align: center;
  line-height: 1.2;
}
.top-blog .top-blog_time span {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
}
.top-blog .top-blog_time span.day {
  font-size: 2.5rem;
  font-weight: bold;
}
.top-blog .top-blog_detail {
  flex: 1;
  padding-left: 10px;
}
.top-blog .top-blog_ttl {
  font-size: 1.7rem;
  font-weight: bold;
}
@media all and (max-width: 800px) {
  .top-blog li {
    width: 49%;
    margin-right: 2%;
  }
  .top-blog li:nth-child(3n) {
    margin-right: 2%;
  }
  .top-blog li:nth-child(2n) {
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .top-blog li {
    width: 85%;
    margin: 0 auto 20px;
  }
  .top-blog li:nth-child(2n), .top-blog li:nth-child(3n) {
    margin-right: auto;
  }
  .top-blog .top-blog_time span {
    font-size: 1.1rem;
  }
  .top-blog .top-blog_time span.day {
    font-size: 1.8rem;
  }
  .top-blog .top-blog_ttl {
    font-size: 1.3rem;
  }
}

/*----------------------------------
 --oneday--
----------------------------------*/
.onedayArea {
  margin: 50px auto;
}
.onedayArea .oneday__list {
  position: relative;
  z-index: 1;
}
.onedayArea .oneday__list:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 96%;
  top: 20px;
  left: 70px;
  background-color: #fff;
  z-index: -1;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.onedayArea .oneday__list li {
  position: relative;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 40px;
}
.onedayArea .oneday__list li .list__num__inner {
  width: 140px;
  height: 140px;
  border: 1px solid #8ac9cb;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
}
.onedayArea .oneday__list li .list__num {
  position: relative;
  width: 20%;
  max-width: 160px;
  height: 160px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.onedayArea .oneday__list li .list__num__main {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 2.5rem;
  margin-top: 45px;
}
.onedayArea .oneday__list li .list__num__txt {
  display: inline-block;
  text-align: center;
  background-color: #e28763;
  padding: 6px 20px;
  border-radius: 50px;
  line-height: 1;
  font-size: 1.8rem;
  color: #fff;
}
.onedayArea .oneday__list li .list__photo {
  overflow: hidden;
  width: 300px;
  height: 200px;
}
.onedayArea .oneday__list li .list__photo img {
  border-radius: 20px;
  width: 100%;
  height: 200px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.onedayArea .oneday__list li .list__detail {
  padding-left: 40px;
  display: flex;
  flex-wrap: wrap;
  width: 80%;
}
.onedayArea .oneday__list li .list__detail .list__photo {
  width: 30%;
}
.onedayArea .oneday__list li .list__detail .list__txt {
  width: 70%;
  padding: 20px 0 20px 40px;
  font-weight: bold;
}
.onedayArea .oneday__list li .list__detail .list__txt .txt__main {
  font-size: 2rem;
  font-weight: bold;
}
.onedayArea .oneday__list li .list__detail .list__txt .txt__main span {
  background-color: #fff;
  padding: 5px 20px;
  border-radius: 50px;
}
@media all and (max-width: 800px) {
  .onedayArea .oneday__list li {
    justify-content: space-between;
  }
  .onedayArea .oneday__list li .list__num {
    width: 30%;
  }
  .onedayArea .oneday__list li .list__detail {
    width: 68%;
    margin: 0 0 0 2%;
    padding: 0;
  }
  .onedayArea .oneday__list li .list__detail .list__photo {
    width: 30%;
  }
  .onedayArea .oneday__list li .list__detail .list__txt {
    width: 66%;
    margin: 0 0 0 4%;
    padding: 0px 0;
  }
  .onedayArea .oneday__list li .txt__main span {
    font-size: 1.6rem;
    display: inline-block;
  }
}
@media all and (max-width: 639px) {
  .onedayArea .oneday__list:before {
    left: 34px;
  }
  .onedayArea .oneday__list li {
    justify-content: space-between;
  }
  .onedayArea .oneday__list li .list__num {
    width: 95px;
    max-width: 100px;
    height: 100px;
    margin-left: -8px;
  }
  .onedayArea .oneday__list li .list__num .list__num__inner {
    width: 80px;
    height: 80px;
  }
  .onedayArea .oneday__list li .list__num .list__num__inner .list__num__main {
    font-size: 14px;
    margin-top: 25px;
  }
  .onedayArea .oneday__list li .list__num .list__num__inner .list__num__txt {
    font-size: 12px;
    padding: 6px 10px;
    letter-spacing: 1px;
  }
  .onedayArea .oneday__list li .list__detail {
    width: 68%;
    margin: 0 0 0 2%;
    padding: 0;
    display: block;
  }
  .onedayArea .oneday__list li .list__detail .list__photo {
    width: 100%;
    height: 120px;
    margin: 0 auto 0px;
  }
  .onedayArea .oneday__list li .list__detail .list__photo img {
    height: 120px;
    border-radius: 10px 10px 0 0;
  }
  .onedayArea .oneday__list li .list__detail .list__txt {
    width: 100%;
    margin: 0 auto;
    padding: 0px 0;
    font-size: 1.2rem;
  }
  .onedayArea .oneday__list li .list__detail .list__txt .txt__main {
    font-size: 1.4rem;
  }
  .onedayArea .oneday__list li .list__detail .list__txt .txt__main span {
    font-size: 1.4rem;
    display: block;
    border-radius: 0 0 10px 10px;
    padding: 8px 10px;
  }
}

/*----------------------------------
 --others--
----------------------------------*/
.greet-txt {
  letter-spacing: 0;
  line-height: 2;
  padding: 15px;
  font-weight: normal;
}

.img-gray {
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: filter 0.2s ease-in;
}
.img-gray:hover {
  -moz-filter: grayscale(0);
  -ms-filter: grayscale(0);
  -o-filter: grayscale(0);
  filter: grayscale(0);
}

.article {
  position: relative;
  padding: 100px 0;
}
.article .article-img {
  width: 70%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.article .article-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.article .article-txt {
  background: #fefefe;
  padding: 30px 20px;
  width: 50%;
  position: relative;
  font-weight: 600;
  margin-left: auto;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .article {
    padding: 0;
  }
  .article .article-img {
    position: static;
    width: 100%;
    height: auto;
  }
  .article .article-txt {
    width: 100%;
  }
}

/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 90px 0;
  position: relative;
}
@media all and (max-width: 1200px) {
  .single {
    width: 94%;
  }
}
.single.type1 {
  padding: 90px 0 0;
}
@media all and (max-width: 639px) {
  .single.type1 {
    padding: 50px 0 0;
  }
}

.single02 {
  margin: 0 auto;
  padding: 80px 0;
}

.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 90px 0;
  position: relative;
}

.margin-top {
  margin-top: -80px;
}
@media all and (max-width: 639px) {
  .margin-top {
    margin-top: -30px;
  }
}

.lsingle,
.rsingle {
  width: 48.44%;
}

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 40px 30px;
  max-width: 1200px;
  box-shadow: 3px 3px rgba(108, 71, 47, 0.1);
  border-radius: 15px 0 15px 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.mbox.transparent {
  background: none;
  border: none;
  box-shadow: none;
}
.mbox.transparent:before {
  display: none;
}
.mbox.sd {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 20px 15px;
  }
}

.mbox2 {
  background: rgba(255, 255, 255, 0.8);
  margin-right: auto;
  margin-left: auto;
  border-radius: 15px 0 15px 0;
  padding: 30px;
}
@media all and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}

.mbox3 {
  background: #fff;
  padding: 30px;
  border-top: 5px solid #f4d35d;
  box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.1);
}

.small-box {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.small-box2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  border-top: 4px solid #f7aaa6;
  border-bottom: 4px solid #f7aaa6;
}

.bg-white {
  position: relative;
}
.bg-white:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: -5;
}
.bg-white.type1 {
  background: transparent;
  position: relative;
  margin-top: 50px;
}
.bg-white.type1:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  transform: translate(-50%, -50%);
  background: #fefefe;
  z-index: -1;
}
@media all and (max-width: 800px) {
  .bg-white.type1:after {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.bg-white.type1 .inner {
  position: relative;
  z-index: 3;
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  /* border-top: 1px solid #555;
  border-bottom: 1px solid #555;*/
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-fixed {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  height: 480px;
}
@media all and (max-width: 800px) {
  .bg-fixed {
    background-attachment: scroll;
    height: 270px;
  }
}
.bg-fixed.fixed01 {
  background-image: url(../img/fixed01.jpg);
  background-position: center;
}

.bg-map {
  background: url(../img/map.png) no-repeat right bottom;
}
@media all and (max-width: 639px) {
  .bg-map {
    background-size: auto 200px;
    background-position: right top;
  }
}

#main {
  float: left;
  width: 76%;
}
@media all and (max-width: 800px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}
@media all and (max-width: 800px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* 2column */
#col2-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
#col2-wrap #col2-main {
  width: 78%;
}
@media all and (max-width: 800px) {
  #col2-wrap #col2-main {
    width: 100%;
    margin: 0 auto;
    order: 2;
  }
}
#col2-wrap #col2-side {
  width: 20%;
  padding: 60px 0 0;
}
@media all and (max-width: 800px) {
  #col2-wrap #col2-side {
    width: 95%;
    margin: 0 auto 20px;
    padding-top: 30px;
  }
}

/* mtitle
----------------------------------*/
.mtitle {
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 48px;
  font-size: 3rem;
  position: relative;
  text-align: center;
  letter-spacing: 0.2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.mtitle span {
  display: block;
  font-size: 3rem;
  margin-bottom: 5px;
  color: #e09226;
  line-height: 1.5;
  font-family: "Maven Pro", sans-serif;
  font-weight: 400;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.mtitle.white {
  color: #fff;
}
.mtitle.white:after {
  background-image: linear-gradient(to right, #ddd, #fefefe);
}
.mtitle.white span {
  color: #fefefe;
}
.mtitle.center {
  text-align: center;
}
.mtitle.mtitle_left {
  text-align: left;
}
.mtitle.mtitle_left:after {
  left: 0;
  transform: inherit;
}
@media all and (max-width: 639px) {
  .mtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 30px;
  }
  .mtitle span {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 0px;
  }
}

.mtitles {
  font-size: 5.5rem;
  font-family: "Maven Pro", sans-serif;
  font-weight: 400;
  text-align: center;
  margin-bottom: 6px;
  color: #e09226;
  position: relative;
  font-weight: 600;
  line-height: 1;
  z-index: 5;
}
.mtitles:before {
  content: attr(data-text);
  position: absolute;
  color: #fff;
  -webkit-text-stroke: 1px #e09226;
  padding: 2px;
  z-index: -1;
  font-weight: 500;
}
.mtitles.type1 {
  color: #205474;
}
.mtitles.type1:before {
  -webkit-text-stroke: 1px #205474;
}
@media all and (max-width: 800px) {
  .mtitles {
    font-size: 4rem;
  }
  .mtitles.type1 {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  .mtitles {
    font-size: 3rem;
  }
  .mtitles.type1 {
    margin-top: 0;
  }
}

.mtitles-sub {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}
@media all and (max-width: 800px) {
  .mtitles-sub {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .mtitles-sub {
    font-size: 1.8rem;
  }
}

.mtitle2 {
  font-size: 2rem;
  margin-bottom: 30px;
  position: relative;
  line-height: 1.3;
  font-weight: 600;
  padding-bottom: 5px;
}
.mtitle2:after {
  position: absolute;
  left: 5px;
  bottom: -15px;
  content: "●●●";
  letter-spacing: 0.8em;
  font-size: 10px;
  color: #f4d35d;
}
.mtitle2 .eng {
  font-size: 2.2rem;
  display: block;
  letter-spacing: 0.1rem;
  font-family: "Maven Pro", sans-serif;
  font-weight: 400;
  color: #9ecb8a;
}
.mtitle2 .small {
  font-size: 0.9em;
  color: #e09226;
}
@media all and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.5rem;
    padding-bottom: 5px;
  }
  .mtitle2 .eng {
    font-size: 1.6rem;
    display: block;
  }
}
.mtitle2.white {
  color: #fefefe;
}
.mtitle2.white span {
  color: #faedbd;
}

.mtitle-middle {
  position: relative;
  margin-bottom: 24px;
  padding: 0 0 4px 1em;
  border-bottom: 1px dotted #aaa;
  font-size: 1.3em;
  font-weight: 600;
}
.mtitle-middle:before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0;
  width: 2px;
  height: 50%;
  background: #e09226;
}

.mtitle3 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #9ecb8a;
  margin-bottom: 15px;
}
.mtitle3 span {
  display: block;
  color: #6c472f;
  font-size: 1.4rem;
  margin-top: 4px;
}
@media all and (max-width: 800px) {
  .mtitle3 {
    font-size: 1.4rem;
  }
  .mtitle3 span {
    font-size: 13px;
  }
}

.mtitle-bll {
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 2px solid #c3cbcd;
  position: relative;
  padding-bottom: 5px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #2b363d;
}
.mtitle-bll:after {
  position: absolute;
  content: "";
  display: block;
  bottom: -2px;
  width: 100px;
  height: 2px;
  left: 0;
  background: #205474;
}
@media all and (max-width: 639px) {
  .mtitle-bll {
    font-size: 1.4rem;
  }
}

.mtitle4 {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 3rem;
  background-color: #205474;
}
.mtitle4 span:before {
  left: -11px;
  transform: rotate(-20deg);
}
.mtitle4 span:after {
  right: -11px;
  transform: rotate(20deg);
}
.mtitle4.white span:before, .mtitle4.white span:after {
  background-color: #ffd54a;
}
.mtitle4.type1 {
  margin: -30px auto 30px;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 1.4rem;
  }
  .mtitle4.type1 {
    margin: -20px auto 20px;
  }
}
@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitle5 {
  margin: -79px -30px 40px;
  text-align: center;
  position: relative;
}
.mtitle5:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 100%;
  height: 3px;
  z-index: 1;
  background: #e09226;
  transform: translateY(-50%);
}
.mtitle5 span {
  display: inline-block;
  padding: 8px 15px;
  background: #e09226;
  font-size: 3rem;
  color: #6c472f;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-weight: 600;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .mtitle5 {
    margin: -49px -15px 0px;
  }
  .mtitle5:before {
    left: 50%;
    top: 50%;
    width: 92%;
    transform: translate(-50%, -50%);
  }
  .mtitle5 span {
    font-size: 1.7rem;
    line-height: 1.4;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  border-left: 6px solid #9ecb8a;
  margin: 8px 0 10px;
}
.mtitle_sub:before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #e09226;
}

.mtitle_box {
  background: #e09226;
  color: #fff;
  font-size: 1.7rem;
  position: relative;
  padding: 15px;
  margin-bottom: 20px;
  font-weight: bold;
  border-radius: 40px;
}
.mtitle_box span {
  font-size: 1.4rem;
  color: #ffd54a;
}
.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: bold;
  display: block;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.4rem;
  }
  .mtitle_box span {
    font-size: 1.6rem;
  }
}

.mtitle_box2 {
  background: #f4d35d;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
}
.mtitle_box2 span {
  position: absolute;
  font-size: 5rem;
  opacity: 0.5;
  left: 0;
  top: -75px;
  color: #555;
  letter-spacing: 0.2rem;
}
.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}
@media all and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 10px 10px 15px;
    padding-right: 40px;
  }
  .mtitle_box2 span {
    font-size: 3rem;
    top: -40px;
    opacity: 0.3;
  }
}

.mtext1 {
  font-size: 2.2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-weight: bold;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

.mtext2 {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 1.4;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.8rem;
  }
  .mtext2 sapn {
    font-size: 1.4rem;
  }
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: bold;
  margin-right: 5px;
  color: #e09226;
}

/* btn
----------------------------------*/
.btn01 a {
  background: #fefefe;
  border: 1px solid #205474;
  text-align: center;
  width: 300px;
  margin: 20px auto;
  color: #fff;
  display: block;
  padding: 8px 5px;
  font-weight: bold;
  border-radius: 35px;
  background-color: #205474;
}
.btn01 a:hover {
  background: #fff;
  color: #f4d35d;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 95%;
  }
}
.btn01.type1 a {
  margin: 20px 0;
}
.btn01.spb {
  display: none;
}
@media all and (max-width: 639px) {
  .btn01.spb {
    display: block;
  }
}

.btn02 {
  width: 350px;
  margin: 20px auto 20px;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 0;
  background-color: #f4d35d;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #ffffff;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 50px;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.btn02 a:hover i {
  width: 34px;
}
@media all and (max-width: 639px) {
  .btn02 {
    width: 280px;
  }
  .btn02 a {
    font-size: 1.2rem;
  }
}

.btn-img01 {
  margin: 15px auto;
  text-align: center;
}

/* news
----------------------------------*/
.news {
  display: flex;
  flex-wrap: wrap;
}
.news dt {
  width: 7em;
  padding: 5px;
  text-align: center;
  background: #fff;
  font-weight: 600;
  padding: 20px 0;
}
.news dd {
  padding: 5px;
  padding: 20px 0;
  width: calc(100% - 8em);
  margin-left: 10px;
  line-height: 1.6;
}
.news dd a {
  color: #333;
}
.news dt:not(:last-of-type),
.news dd:not(:last-of-type) {
  margin-bottom: 5px;
}

.news-bl {
  position: relative;
}
.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px 5px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  font-size: 0.9em;
  background: #205474;
  color: #fff;
  border-radius: 20px;
}
.news-bl dd {
  padding: 3px 0 10px 9.5em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}
.news-bl dd a {
  color: #2b363d;
  font-weight: 700;
}
.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    float: none;
  }
  .news-bl dd {
    padding: 5px;
  }
}

.risu {
  position: relative;
}
.risu .risu-img {
  position: absolute;
  width: 90px;
  height: 90px;
  right: -30px;
  bottom: -10px;
}
@media all and (max-width: 639px) {
  .risu .risu-img {
    width: 40px;
    height: 40px;
    right: 0;
  }
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
  background-color: rgba(244, 211, 93, 0.2);
}
.page-title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../img/004.jpg) no-repeat 50% 50%/cover;
  opacity: 0.6;
}
.page-title.type1 {
  background: url(../img/page-title.jpg) no-repeat center/cover;
}
.page-title .inner {
  margin: 10px auto 0;
  padding: 60px 0 60px;
  max-width: 1200px;
}
.page-title .page-lead {
  margin: 0 auto;
  padding: 20px 0;
  position: relative;
}
.page-title .page-lead span {
  display: block;
  text-align: center;
  color: #fff;
}
.page-title .page-lead span.ja {
  font-size: 2.4rem;
  color: #6c472f;
}
.page-title .page-lead span.eng {
  font-size: 5.5rem;
  font-family: "Maven Pro", sans-serif;
  font-weight: 400;
  text-align: center;
  margin-bottom: 6px;
  color: #e09226;
  position: relative;
  font-weight: 600;
  line-height: 1;
  z-index: 5;
}
.page-title .page-lead span.eng:before {
  content: attr(data-text);
  position: absolute;
  color: #fff;
  -webkit-text-stroke: 1px #e09226;
  padding: 2px;
  z-index: -1;
  font-weight: 500;
}
@media all and (max-width: 800px) {
  .page-title {
    background-attachment: scroll;
  }
  .page-title .inner {
    width: 99%;
    height: auto;
    padding: 30px 0 30px !important;
    margin-bottom: 20px;
  }
  .page-title .page-lead {
    width: 90%;
    padding: 0;
  }
  .page-title .page-lead span.eng {
    font-size: 3rem;
  }
  .page-title .page-lead span.ja {
    font-size: 2rem;
  }
}
@media all and (max-width: 639px) {
  .page-title .page-lead {
    padding: 20px 0 0;
  }
  .page-title .page-lead span.eng {
    font-size: 2.5rem;
  }
  .page-title .page-lead span.ja {
    font-size: 1.8rem;
  }
}

.sub-page-title {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
}
@media all and (max-width: 800px) {
  .sub-page-title {
    max-width: calc(100% - 15px);
  }
}
.sub-page-title:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: url(../img/taiken0.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.sub-page-title.type1:before {
  background-image: url(../img/image/011.jpg);
}
@media all and (max-width: 800px) {
  .sub-page-title {
    height: 200px;
  }
  .sub-page-title:before {
    background-attachment: scroll;
  }
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
}
.list-btn li {
  width: 48%;
  margin: 0 2% 10px 0 !important;
}
.list-btn li a {
  display: block;
  background: #205474;
  color: #fff;
  font-weight: 700;
  padding: 5px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0;
  border-radius: 20px;
  border: 1px solid #205474;
}
.list-btn li:hover {
  transition: all 0.2s ease-in;
}
.list-btn li:hover a {
  background-color: #fff;
  color: #205474;
}
.list-btn li .top-bnr-img {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.list-btn li .top-bnr-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  transition: all 0.2s ease-in;
}
@media all and (max-width: 639px) {
  .list-btn li .top-bnr-img {
    height: 200px;
  }
}
.list-btn li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list-btn li {
    width: 90%;
    margin: 0 auto 10px;
  }
  .list-btn li a {
    font-size: 1.2rem;
  }
  .list-btn li:nth-child(3n) {
    margin-right: auto;
  }
}
.list-btn.type1 {
  max-width: 1000px;
  margin: 0 auto 20px;
  justify-content: center;
}
.list-btn.type1 li a {
  background: #f4d35d;
  border: 1px solid #f1c62d;
}
.list-btn.type1 li a:hover {
  background: #bbdbad;
}
.list-btn.type1 li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f13a";
  font-weight: bold;
  margin-right: 5px;
}

.sub-title {
  text-align: center;
  margin: -45px auto 0;
  position: relative;
  z-index: 10;
  line-height: 2.5;
}
.sub-title span {
  background-color: #fff;
  padding: 10px 20px;
  font-size: 2.8rem;
  font-weight: 600;
}
@media all and (max-width: 800px) {
  .sub-title span {
    font-size: 2rem;
    padding: 5px 17px;
  }
}
@media all and (max-width: 639px) {
  .sub-title span {
    font-size: 1.6rem;
    padding: 5px 7px;
  }
}

.bg-01 {
  background: url(../img/bg-01.jpg) no-repeat center bottom/cover;
}

.bg-02 {
  position: relative;
}
.bg-02:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  background: url(../img/bg-haikei.png) repeat 50%/cover;
  opacity: 0.65;
  z-index: -1;
}
@media all and (max-width: 639px) {
  .bg-02:before {
    opacity: 0.5;
  }
}

.bg-dog {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  background-image: url(../img/site_bg.svg);
  background-size: 13px;
}
.bg-dog:before {
  content: "";
  position: absolute;
  width: 320px;
  height: 200px;
  right: 0%;
  bottom: -5%;
  background: url(../img/dog01.gif) no-repeat 50%/contain;
  z-index: -1;
  filter: drop-shadow(2px 2px 0px white);
  z-index: 1;
}
.bg-dog:after {
  content: "";
  position: absolute;
  width: 320px;
  height: 200px;
  left: 0%;
  bottom: -5%;
  background: url(../img/anime-dog2.gif) no-repeat 50%/contain;
  filter: drop-shadow(2px 2px 0px white);
  z-index: 1;
}
@media all and (max-width: 1200px) {
  .bg-dog:before, .bg-dog:after {
    width: 300px;
    height: 150px;
  }
}
@media all and (max-width: 800px) {
  .bg-dog:before, .bg-dog:after {
    width: 100px;
    height: 80px;
  }
}

.chosei {
  margin-bottom: 130px;
}

.bg-gradient {
  background-image: linear-gradient(to bottom, rgba(244, 211, 93, 0.5) 0%, #fcfcfc 100%);
}

.bg-contents {
  position: relative;
}
.bg-contents:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  z-index: -1;
  background: #e09226;
  opacity: 0.8;
}
@media all and (max-width: 800px) {
  .bg-contents:before {
    height: 78%;
    opacity: 0.5;
    bottom: 2%;
  }
}

.bg-maru1 {
  background: #f4d35d;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  margin: 50px auto;
  border-radius: 20px;
}
@media all and (max-width: 800px) {
  .bg-maru1 {
    max-width: calc(100% - 15px);
  }
}
@media all and (max-width: 639px) {
  .bg-maru1 {
    border-radius: 10px;
  }
}

.bg-maru2 {
  position: relative;
  margin: 50px auto;
}
.bg-maru2:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: calc(100% - 60px);
  height: 100%;
  z-index: -1;
  transform: translateX(-50%);
  background: #f0efec;
  opacity: 0.7;
}
@media all and (max-width: 639px) {
  .bg-maru2:before {
    width: 100%;
  }
}

.bg-base {
  position: relative;
}
.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f4d35d;
  opacity: 0.5;
  z-index: -2;
}

.bg-nikukyuu {
  position: relative;
}

.nikukyuu-r {
  position: absolute;
  top: -50px;
  right: -60px;
  width: 230px;
  height: 250px;
  transform: rotate(345deg);
  z-index: 100;
}
@media all and (max-width: 639px) {
  .nikukyuu-r {
    width: 130px;
    height: 150px;
  }
}

.nikukyuu-l {
  position: absolute;
  bottom: -50px;
  left: -60px;
  width: 230px;
  height: 250px;
  z-index: 100;
}
@media all and (max-width: 639px) {
  .nikukyuu-l {
    width: 130px;
    height: 150px;
  }
}

.bg-yellow {
  background: #ffd54a;
}

.bg-sub {
  position: relative;
}
.bg-sub:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #e09226;
}

.bg-sub2 {
  position: relative;
}
.bg-sub2:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #e09226;
}
.bg-sub2:after {
  position: absolute;
  content: "";
  width: 110%;
  height: 190px;
  top: -1%;
  left: 0;
  background: url(../img/bottom-kusa.png) no-repeat 50%/110% 190px;
  z-index: 10;
  opacity: 1;
}

.contact-animal {
  position: relative;
  background: #fefefe;
  padding: 50px 30px 40px;
  max-width: 1200px;
  box-shadow: 3px 3px rgba(108, 71, 47, 0.1);
  border-radius: 15px 0 15px 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.contact-animal .animal {
  position: absolute;
  width: 250px;
  height: 115px;
  left: 50%;
  transform: translateX(-50%);
  top: -80px;
}
@media all and (max-width: 800px) {
  .contact-animal {
    margin-top: 50px;
  }
}
@media all and (max-width: 639px) {
  .contact-animal {
    margin-top: 100px;
  }
}

.bg-blue {
  background: rgba(32, 84, 116, 0.1);
}

.bg-gray {
  position: relative;
  background: rgba(240, 239, 236, 0.7);
}
.bg-gray.bg-half {
  position: relative;
  margin-bottom: 40px;
  background: transparent;
}
.bg-gray.bg-half:after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  height: 60%;
  bottom: 0;
  background: #edf1ef;
  opacity: 0.7;
  z-index: -2;
}
@media all and (max-width: 639px) {
  .bg-gray.bg-half:after {
    height: 80%;
    width: calc(100% - 30px);
  }
}

.bg-gray2 {
  background: #555;
}

.bg-beige {
  background: #f2f0d4;
}

.bg-beige2 {
  background: #f2f0d4;
  max-width: calc(100% - 50px);
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  margin-bottom: 50px;
}
@media all and (max-width: 800px) {
  .bg-beige2 {
    max-width: calc(100% - 15px);
  }
}
@media all and (max-width: 639px) {
  .bg-beige2 {
    border-radius: 10px;
  }
}

/*dog-box*
----------------------------------*/
.dog-box {
  position: relative;
  background-color: #fefefe;
  z-index: 0;
  padding: 30px 0 0;
  border-radius: 30px 0;
}
.dog-box:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../img/007.jpg) no-repeat 50% 10%/cover;
  opacity: 0.8;
  z-index: -1;
  border-radius: 30px 0;
}
@media all and (max-width: 639px) {
  .dog-box:before {
    opacity: 0.2;
  }
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #333;
  font-size: 1.4rem;
}
.tbl th {
  background: #8ac9cb;
  text-align: left;
  color: #2b363d;
  width: 20%;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl th.th-1 {
  width: 25%;
}
.tbl th.cell02 {
  width: 20%;
}
.tbl th.cell03 {
  width: 22.5%;
}
.tbl td {
  background: rgba(255, 255, 255, 0.8);
}
.tbl td.td-1 {
  width: 25%;
  line-height: 1.5;
}
.tbl .circle {
  font-weight: 900;
  font-size: 1.1em;
  color: #e94c01;
}
.tbl .cross {
  font-weight: 700;
  font-size: 1.1em;
  color: #205474;
}
@media all and (max-width: 639px) {
  .tbl th,
  .tbl td {
    padding: 10px;
    font-size: 12px;
  }
}
.tbl .cell01 {
  width: 45%;
}
.tbl .cell02 {
  width: 25%;
}

.tbl-border {
  width: 100%;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 2px solid #eee;
}
.tbl-border th {
  width: 20%;
  text-align: left;
  color: #e09226;
  border-bottom-color: #e09226;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 15px 10px;
  vertical-align: middle;
}
.company th {
  text-align: left;
  width: 25%;
  position: relative;
  background: #333;
  color: #e09226;
  font-weight: bold;
}
.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #f9f9f9;
  border-width: 10px;
  border-left-color: #333;
  margin-top: -10px;
}
.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.tbl0 {
  width: 100%;
}
.tbl0 th,
.tbl0 td {
  padding: 3px 5px;
  border: 0;
  border-bottom: 1px dashed #ddd;
}
.tbl0 th {
  padding-left: 0;
  background: none;
  text-align: left;
  width: 35%;
  color: #111;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
@media all and (max-width: 639px) {
  .tbl0 th {
    width: 60%;
  }
}

.tbl_new {
  width: 100%;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}
.tbl_new tr th {
  font-weight: 700;
  width: 25%;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 40%;
  }
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: rgba(224, 146, 38, 0.2);
}

/* map / video
----------------------------------*/
.google-txt {
  margin-bottom: 20px;
  letter-spacing: 0;
  font-size: 1.2em;
  font-weight: 600;
  text-align: center;
}
.google-txt span {
  color: #176bef;
}

.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 10px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* list
----------------------------------*/
.list_common.caution li {
  position: relative;
  padding-left: 1.5em;
  color: #66a54a;
}
.list_common.caution li:before {
  content: "※";
  color: #f4d35d;
  position: absolute;
  left: 0;
  top: 1px;
}
.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 8px;
  border-bottom: 1px dotted #cccccc;
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.list_common li .check_num {
  width: 30px;
  height: 30px;
  background: #f4d35d;
  color: #fff;
  border-radius: 100px;
  line-height: 30px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  margin-right: 10px;
}

.list_check li {
  padding-bottom: 8px;
  font-weight: bold;
}
.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(242, 240, 212, 0.2);
  margin-top: 10px;
}
.list_check li:not(:last-child) {
  margin-bottom: 8px;
  border-bottom: 1px dashed #e09226;
}
.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: bold;
  margin-right: 8px;
  color: #dad586;
}
@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}

.list_check2 {
  display: flex;
  flex-wrap: wrap;
}
.list_check2 li {
  width: 48%;
  padding: 5px 5px 5px 22px;
  margin-bottom: 5px;
  margin-right: 4%;
  position: relative;
}
.list_check2 li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list_check2 li:nth-child(2n) {
    margin-right: auto;
  }
}
.list_check2 li:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 3px;
  top: 14px;
  left: 0;
  background: #f4d35d;
}
@media all and (max-width: 639px) {
  .list_check2 li {
    width: 100%;
    margin: 0 auto 5px;
  }
}

.list_disc.type1 li:before {
  content: "・";
  color: #6c472f;
  font-size: inherit;
  margin-right: 0;
}
.list_disc.type1 li span {
  font-size: 90%;
}
.list_disc.type2 li:not(:last-of-type) {
  margin-bottom: 0px;
  border-bottom: 0px dashed #ccc;
}
.list_disc.sbc li:before {
  color: #e09226;
}
.list_disc li {
  padding: 5px 0;
}
.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
.list_disc li:before {
  content: "●";
  margin-right: 8px;
  color: #f4d35d;
  font-size: 0.5em;
}

.ol-list {
  counter-reset: number;
  /* 名前を付けたカウンターをリセット */
  list-style: none;
  /* olが数字を付けることをキャンセル */
  padding: 10px;
}
.ol-list > li {
  line-height: 2;
  border-bottom: 1px dashed #eee;
  margin-bottom: 18px;
  padding: 5px 0 8px;
  padding-left: 50px;
  font-weight: bold;
  position: relative;
  line-height: 1.2;
  font-weight: bold;
  font-size: 1.8rem;
}
.ol-list > li .small {
  font-weight: normal;
  display: block;
  padding-top: 10px;
  line-height: 1.6;
  font-size: initial;
}
.ol-list > li:before {
  counter-increment: number;
  content: counter(number);
  background: #e09226;
  position: absolute;
  width: 2em;
  height: 2em;
  text-align: center;
  font-family: "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2rem;
  line-height: 2em;
  color: #fefefe;
  left: 0;
  top: 0px;
  border-radius: 100%;
}
@media all and (max-width: 639px) {
  .ol-list > li {
    font-size: 1.3rem;
  }
  .ol-list > li span {
    font-size: 0.9em;
  }
  .ol-list > li:before {
    font-size: 1.8rem;
  }
}

.list-type1 li {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 10px;
  font-weight: 600;
  letter-spacing: 0.2rem;
  margin-bottom: 10px;
}
.list-type1 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: bold;
  margin-right: 5px;
  color: #205474;
}

.list-inline li {
  display: inline-block;
  padding: 3px;
}
.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #e09226;
  font-weight: normal;
}

/* blog
----------------------------------*/
.blog-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
.blog-wrap * {
  transition: 0.3s;
}
.blog-wrap > li {
  width: 32%;
  margin: 0 0.5% 3%;
  background: #fefefe;
  position: relative;
}
@media all and (max-width: 800px) {
  .blog-wrap > li {
    width: 48%;
    margin: 0 1% 3%;
  }
}
.blog-wrap > li > a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.blog-wrap > li > a:hover ~ .blog-img img {
  opacity: 1;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .blog-wrap > li {
    width: 80%;
    margin: 0 auto 3%;
  }
}

.blog-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.blog-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.blog-img:hover img {
  opacity: 1 !important;
  transform: scale(1.2);
}

.blog-date {
  color: #205474;
  display: block;
  font-size: 13px;
}
.blog-date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: bold;
  margin-right: 5px;
}

.blog-date2 {
  color: #e09226;
  font-size: 0.9em;
  margin-bottom: 5px;
  margin-right: 5px;
}
.blog-date2:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  margin-right: 5px;
}

.blog-detail {
  padding: 10px;
}
@media all and (max-width: 639px) {
  .blog-detail {
    padding: 10px;
  }
}

.blog-title {
  font-weight: bold;
  margin-bottom: 10px;
  color: #111;
  line-height: 1.5;
}

.blog-txt {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}
@media all and (max-width: 639px) {
  .blog-txt {
    font-size: 12px;
  }
}

.pages {
  text-align: center;
  margin-top: 30px;
}
.pages .page_next,
.pages .page_prev {
  display: inline;
  margin: 0 20px;
}
.pages .page_next a,
.pages .page_prev a {
  color: #dcaf0f;
  padding: 3px 5px;
  background: #fff;
}

.category_nav {
  border: 1px solid #dddddd;
}
.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}
.category_nav li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: bold;
  margin-right: 5px;
}
.category_nav li a:hover {
  background: #f0efec;
}
.category_nav li:last-child a {
  border-bottom: none;
}

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.br_tablet {
  display: none;
}
@media all and (max-width: 800px) {
  .br_tablet {
    display: block;
  }
}

.round-box {
  border-radius: 20px;
  overflow: hidden;
}

.bigger {
  font-size: 1.1em;
}

.sentence p + p {
  margin-top: 20px;
}

.color1 {
  color: #f2cd45;
}

.color2 {
  color: #8ac9cb;
}

.color3 {
  color: #6c472f;
}

.num {
  text-align: center;
}
.num a {
  color: #205474;
  font-weight: bold;
  font-size: 3.5rem;
}
.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f095";
  font-weight: bold;
  margin-right: 5px;
}
.num a:hover {
  color: #e09226;
}
@media all and (max-width: 639px) {
  .num a {
    font-size: 2.4rem;
  }
}

.telbox {
  max-width: 700px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #eee;
}
.telbox .inner {
  background: #fff;
  padding: 10px;
}

.telbnr {
  max-width: 700px;
  margin: 30px auto 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.telbnr li {
  width: 48%;
  border: 3px solid #e09226;
  padding: 10px 10px;
  text-align: center;
  border-radius: 50px;
}
.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ff9d1d;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: bold;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #205474;
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 98%;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 0px;
  }
  .telbnr li:last-of-type {
    margin-left: auto;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.telbnr-ttl {
  font-weight: 700;
  font-size: 1.8rem;
  color: #6c472f;
  margin-top: -30px;
}
.telbnr-ttl span {
  background: #f9f9f9;
  padding: 0 20px;
}
@media all and (max-width: 639px) {
  .telbnr-ttl {
    font-size: 1.5rem;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 30px;
  font-size: 12px;
  font-weight: 400;
  position: relative;
  z-index: 5;
}
.breadcrumb li {
  display: inline;
  color: #6c472f;
}
.breadcrumb li a {
  color: #f4d35d;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}

/* form
----------------------------------*/
.total-box {
  max-width: 400px;
  margin: 30px auto 50px;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 20px 15px;
  background: url(../img/body_bg.png);
  justify-content: center;
}
.total-box .textarea {
  width: 60% !important;
}
.total-box span {
  color: #6c472f;
  font-weight: 700;
  margin-right: 10px;
}

.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: bold;
  color: #6c472f;
}
.form dl dt span {
  color: #fff;
  background: #e09226;
  padding: 5px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #f4d35d;
}
.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}
.form dl dd:last-child {
  border-bottom: none;
}
.form .textarea,
.form textarea {
  border: 0;
  padding: 15px;
  background: #f3f3f3;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}
.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}
.form .textarea02:last-child {
  margin-right: 0;
}
.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}
.form .textarea04 {
  width: 20%;
  margin-right: 1%;
}
.form button {
  cursor: pointer;
  display: block;
  color: #111;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
  font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto, "Droid Sans", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 8px 5px;
  margin: 0 auto;
  width: 250px;
  background: #205474;
  border: 1px solid #205474;
  border-radius: 25px;
  color: #fff;
}
.form button:hover {
  background: #fff;
  color: #f4d35d;
}
.form button:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: bold;
  margin-right: 10px;
}
.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
  padding-top: 8px;
}
.form .select-wrap select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: bold;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #f4d35d;
}
.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}
.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #f4d35d;
  z-index: 1;
}
.form label.radio_text input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
}
.form label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
.form label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #eeebda;
}
.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #f4d35d;
  border-bottom: 3px solid #f4d35d;
  transform: rotate(45deg);
  z-index: 1;
}
.form label.checkbox_text input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}
.form label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
.form label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
.form label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}
.form input[type=text],
.form textarea {
  font-size: 16px;
}
@media all and (max-width: 639px) {
  .form input[type=text],
  .form textarea {
    transform: scale(0.9);
    margin-left: -5px;
  }
}

.select-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.select-group p {
  margin: 0 5px;
}
@media all and (max-width: 639px) {
  .select-group .select-wrap {
    margin-top: 8px;
  }
}

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.select-content {
  display: flex;
  align-items: center;
}
.select-content .select-txt {
  padding: 0 5px;
}
@media all and (max-width: 639px) {
  .select-content {
    display: block;
    /*.select-wrap, .select-txt{
     display: inline-block;
    }*/
  }
}

.form-txt {
  font-size: 0.9em;
  margin-bottom: 5px;
}

.memo {
  background: rgba(224, 146, 38, 0.2);
  padding: 15px;
}

.thanks {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  background: url(../img/body_bg.png);
  border: 4px double #e6e2ad;
}
@media all and (max-width: 639px) {
  .thanks {
    max-width: 90%;
    padding: 30px 20px;
  }
}

.shadow {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.policy {
  padding: 20px;
  background: rgba(244, 211, 93, 0.2);
}

.mtitle_small {
  position: relative;
  font-size: 1.7rem;
  color: #e09226;
  margin-bottom: 20px;
  font-weight: 700;
}
.mtitle_small:before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #e09226;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.mtitle_small.type1 {
  color: #205474;
}
.mtitle_small.type1:before {
  background-color: #205474;
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-weight: bold;
  color: #e09226;
}
.mtitle_small2:not(:first-of-type) {
  margin-top: 20px;
}
.mtitle_small2:before {
  content: "";
  background-color: #9ecb8a;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}
.mtitle_small2.type1 {
  color: #205474;
}
.mtitle_small2.type1:before {
  background-color: #8ac9cb;
}

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.gallery_ul li {
  margin: 0 2% 2.5% 0;
  width: 32%;
}
.gallery_ul li:nth-child(3n) {
  margin: 0 0 2.5% 0;
}
.gallery_ul li .photobox-wrap {
  width: 100%;
  height: 350px;
  text-align: center;
  overflow: hidden;
  background: rgba(224, 146, 38, 0.1);
  margin-bottom: 8px;
}
.gallery_ul li .photobox-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
  /*IE対策*/
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media all and (max-width: 639px) {
  .gallery_ul li .photobox-wrap {
    height: 280px;
  }
}

/* gallery(lightbox)
----------------------------------*/
.product-gallery {
  display: flex;
  flex-wrap: wrap;
}
.product-gallery:not(:last-of-type) {
  margin-bottom: 40px;
}
.product-gallery li {
  width: 24%;
  margin-right: 1.3333333333%;
  margin-bottom: 25px;
}
.product-gallery li:nth-child(4n) {
  margin-right: 0;
}
.product-gallery li a {
  background: rgba(0, 0, 0, 0.3);
  display: block;
  text-align: center;
  padding: 0px;
  height: 200px;
}
.product-gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.product-gallery li p {
  line-height: 1.4;
  margin-top: 5px;
}
@media all and (max-width: 639px) {
  .product-gallery li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 30px;
  }
  .product-gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .product-gallery li a {
    height: 180px;
  }
}

.gallery {
  display: flex;
  justify-content: initial;
  flex-wrap: wrap;
}
.gallery li {
  width: 22%;
  margin: 0 3.495% 25px 0;
}
.gallery li:nth-child(4n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(0, 0, 0, 0.3);
  display: block;
  text-align: center;
  padding: 0px;
  height: 250px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  line-height: 1.4;
  margin-top: 5px;
}

@media all and (max-width: 800px) {
  .gallery li {
    width: 48%;
    margin: 0 4% 20px 0;
  }
  .gallery li:nth-child(3n) {
    margin: 0 4% 20px 0;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 1.1rem;
  }
}
.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2 .child {
  width: 48%;
}
.column2 .child img {
  border-radius: 20px;
}
@media all and (max-width: 639px) {
  .column2 {
    flex-direction: column;
  }
  .column2 .child {
    width: 100%;
  }
  .column2 .child.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
}

.list2 {
  display: flex;
  flex-wrap: wrap;
  margin-top: -45px;
}
@media all and (max-width: 639px) {
  .list2 {
    margin-top: -30px;
  }
}
.list2 > li,
.list2 .child {
  width: 48%;
  margin: 45px 4% 0 0;
}
.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-right: auto;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 30px auto 0;
  }
}
.list2 > li.order,
.list2 .child.order {
  order: 2;
}
@media all and (max-width: 639px) {
  .list2 > li.order,
  .list2 .child.order {
    order: 0;
  }
}
.list2.type1 .child {
  overflow: hidden;
  background: #f0f0f0;
  border-radius: 20px;
}
.list2.type1 .child .inner {
  padding: 15px;
}

.fig-list2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.fig-list2 li {
  width: 48%;
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
}
.fig-list2 li .fig-ttl {
  text-align: center;
  margin: -30px auto 20px;
  font-weight: 600;
  font-size: 2rem;
}
.fig-list2 li figure {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.fig-list2 li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media all and (max-width: 639px) {
  .fig-list2 li {
    width: 90%;
    margin: 0 auto 40px;
  }
  .fig-list2 li:last-child {
    margin: 0 auto 0;
  }
  .fig-list2 li figure {
    width: 140px;
    height: 140px;
  }
}

.title-bg {
  background: #b9761a;
  color: #fefefe;
  text-align: center;
  padding: 8px 5px;
  font-weight: 600;
  font-size: 1.7rem;
}

.list3 {
  display: flex;
  flex-wrap: wrap;
}
.list3 > li {
  width: 31%;
  margin: 0 3% 15px 0;
}
.list3 > li:nth-child(3n) {
  margin-right: 0;
}
.list3 > li figure {
  width: 100%;
  height: 250px;
}
.list3 > li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.list4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.list4 li {
  width: 23%;
  margin: 0 2.5% 20px 0;
}
.list4 li figure {
  width: 100%;
  height: 170px;
}
.list4 li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.list4 li:nth-child(4n) {
  margin-right: 0;
}
@media all and (max-width: 800px) {
  .list4 li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 20px;
    text-align: center;
  }
  .list4 li img {
    width: 100%;
  }
  .list4 li:nth-child(2n) {
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .list4 li {
    width: 80%;
    margin: 0 auto 20px;
  }
  .list4 li:nth-child(2n) {
    margin-right: auto;
  }
}

.list5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 20px auto 50px;
}
.list5 li {
  width: 19%;
}
.list5 li .inner {
  padding-top: 100%;
  background-color: rgba(224, 146, 38, 0.54);
  border-radius: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.list5 li .inner .ttl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  font-size: 2rem;
}
@media all and (max-width: 639px) {
  .list5 {
    max-width: 95%;
  }
  .list5 li {
    width: 48%;
    margin-bottom: 15px;
  }
  .list5 li .inner .ttl {
    font-size: 1.5rem;
  }
}

.term-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: 60px auto 30px;
}
.term-list li {
  width: 23%;
  margin: 0 2.5% 20px 0;
}
.term-list li:nth-child(4n) {
  margin-right: 0;
}
.term-list li .inner {
  position: relative;
  height: 200px;
  padding: 50px 16px 0;
}
.term-list li .inner:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #F0E7DC;
  border-radius: 20px;
}
.term-list li .inner .term-ttl {
  padding: 8px 25px;
  background-color: #1a936f;
  font-size: 1.6rem;
  color: #fff;
  /* margin: -30px auto 0; */
  display: inline-block;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: -20px;
  border-radius: 15px;
  margin-bottom: 20px;
}
.term-list li .inner .term-box {
  max-width: 150px;
  margin: 0 auto;
  align-items: center;
  position: relative;
}
.term-list li .inner .term-box .first {
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}
.term-list li .inner .term-box .first::first-letter {
  color: #6F1315;
}
.term-list li .inner .term-box .first.type1::first-letter {
  color: #8DC63E;
}
.term-list li .inner .term-box .first.type2::first-letter {
  color: #EE1C23;
}
.term-list li .inner .term-box .first.type3::first-letter {
  color: #F7931D;
}
.term-list li .inner .term-box p {
  text-align: center;
}
@media all and (max-width: 800px) {
  .term-list {
    margin: 50px auto 0;
  }
  .term-list li .inner .term-ttl {
    font-size: 1.5rem;
    padding: 10px 13px;
  }
  .term-list li .inner .term-box .first {
    font-size: 2rem;
    margin-bottom: 9px;
  }
}
@media all and (max-width: 639px) {
  .term-list {
    max-width: 600px;
  }
  .term-list li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 50px;
    text-align: center;
  }
  .term-list li .inner {
    padding: 35px 16px 0;
    height: 160px;
  }
  .term-list li img {
    width: 100%;
  }
  .term-list li:nth-child(2n) {
    margin-right: 0;
  }
  .term-list li .inner .term-ttl {
    font-size: 1.3rem;
    padding: 5px 8px;
  }
  .term-list li .inner .term-box .first {
    font-size: 1.6rem;
    margin-bottom: 9px;
  }
}

.year-box {
  padding: 40px 0;
  margin-bottom: 40px;
}
@media all and (max-width: 639px) {
  .year-box {
    margin-bottom: 0;
  }
}

.note {
  padding: 15px;
  margin-top: 10px;
  background: rgba(242, 240, 212, 0.6);
}

.flow-dl {
  display: flex;
  flex-wrap: wrap;
}
.flow-dl .flow-inner {
  display: flex;
  flex-wrap: wrap;
  width: 48%;
  margin-right: 4%;
  margin-bottom: 25px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 15px;
}
.flow-dl .flow-inner:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .flow-dl .flow-inner {
    width: 100%;
    margin: 0 auto 25px;
  }
  .flow-dl .flow-inner:nth-child(2n) {
    margin-right: auto;
  }
}
.flow-dl dt {
  color: #e09226;
  width: 60px;
  text-align: center;
  margin-right: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  padding-top: 8px;
}
.flow-dl dt span {
  font-size: 3.5rem;
  display: block;
  line-height: 1;
  color: #e09226;
}
.flow-dl dd {
  width: calc(100% - 80px);
}
.flow-dl dt:not(:last-child),
.flow-dl dd:not(:last-child) {
  margin-bottom: 20px;
}
@media all and (max-width: 639px) {
  .flow-dl dt {
    font-size: 1.3rem;
  }
  .flow-dl dt span {
    font-size: 2.2rem;
  }
}

.txt1 {
  padding-left: 10px;
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-month ul li {
  background: #e09226;
  width: 45%;
  padding: 3px 0;
  margin-bottom: 5px;
  font-size: 12px;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 5px;
}
.blog-month ul li:nth-child(even) {
  margin-left: 1%;
}
.blog-month ul li a {
  color: #fff;
}
@media all and (max-width: 639px) {
  .blog-month ul li {
    width: 44%;
  }
}

#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#entry {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.menu-list {
  margin-bottom: 30px;
}
.menu-list > li {
  display: flex;
  align-items: center;
  padding: 8px 4px;
}
.menu-list > li p {
  display: inline-block;
  line-height: 1.5;
}
.menu-list > li:before {
  background: radial-gradient(#aaa 20%, transparent 0) center center/8px 8px;
  content: "";
  display: inline-block;
  flex: 1;
  height: 4px;
  margin: 0 1.2em;
}
@media all and (max-width: 639px) {
  .menu-list > li:before {
    margin: 0 5px;
  }
}
.menu-list > li .left {
  order: -1;
  max-width: 60%;
}
.menu-list > li .left .small {
  color: #e09226;
  padding-left: 5px;
  display: block;
}
.menu-list > li .left .small:before {
  content: "[";
}
.menu-list > li .left .small:after {
  content: "]";
}
@media all and (max-width: 639px) {
  .menu-list > li .left {
    max-width: 65%;
  }
}
.menu-list > li .right {
  max-width: 35%;
  text-align: right;
}

.price {
  font-weight: bold;
  color: #81bb67;
  font-size: 1.3em;
}

.price2 {
  text-align: center;
  margin: 8px 0;
}
.price2 span {
  font-weight: 600;
  color: #e09226;
  font-size: 1.1em;
}

.list-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.list-center li {
  max-width: 250px;
}
.list-center li:not(:last-child) {
  margin: 0 5px 5px;
}
@media all and (max-width: 639px) {
  .list-center li {
    width: 220px;
  }
  .list-center li:not(:last-child) {
    margin: 0 0 5px;
  }
}

.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 25px;
}
.faq-dl dt,
.faq-dl dd {
  padding: 15px 15px 15px 60px;
  position: relative;
}
.faq-dl dt:before,
.faq-dl dd:before {
  position: absolute;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  left: 15px;
  top: 0;
}
@media all and (max-width: 639px) {
  .faq-dl dt,
  .faq-dl dd {
    padding: 10px 10px 10px 50px;
  }
  .faq-dl dt:before,
  .faq-dl dd:before {
    font-size: 2rem;
  }
}
.faq-dl dt {
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 600;
  color: #6c472f;
}
.faq-dl dt:before {
  content: "Q.";
  color: #f4d35d;
}
.faq-dl dd {
  margin-left: auto;
  border-radius: 5px 0 5px 0;
  background: rgba(240, 239, 236, 0.7);
  border-radius: 10px;
}
.faq-dl dd:before {
  content: "A.";
  color: #ff9d1d;
}
.faq-dl dd:not(:last-child) {
  margin-bottom: 50px;
}

.fukidashi {
  margin: 0.5em auto 45px;
  padding: 15px;
  text-align: center;
  max-width: 600px;
  border-radius: 10px;
  font-size: 1.8rem;
  background: #ffd54a;
  position: relative;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-weight: 500;
}
.fukidashi a {
  color: #a71017;
}
.fukidashi a:hover {
  color: #e94c01;
}
.fukidashi:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #ffd54a;
  z-index: 2;
}
@media all and (max-width: 639px) {
  .fukidashi {
    font-size: 1.25rem;
    padding: 10px 15px;
    max-width: 90%;
  }
}

.info-txt {
  width: 95%;
  margin: 10px auto 0;
  background: rgba(224, 146, 38, 0.3);
  padding: 10px;
  border-radius: 10px;
}

.iframe {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

.frames {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 6px;
}
.frames:before, .frames:after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 85px;
  height: 50px;
  background: #fff;
  transform: rotate(-30deg);
}
.frames:before {
  box-shadow: 0 10px 8px -12px rgba(108, 71, 47, 0.6);
  top: -24px;
  bottom: auto;
  right: auto;
  left: -26px;
}
.frames:after {
  box-shadow: 0 -10px 10px -10px rgba(108, 71, 47, 0.4);
  top: auto;
  bottom: -22px;
  right: -25px;
  left: auto;
}

.feature-list li {
  padding: 4px 4px 4px 8px;
  font-weight: 600;
  margin-bottom: 8px;
  border-bottom: 1px dotted #aaa;
}
.feature-list li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1b0";
  font-weight: bold;
  margin-right: 5px;
  color: #e09226;
}

/* vertical contents
----------------------------------*/
.mtitle-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-size: 1.8rem;
  font-weight: 600;
  color: #555;
}
.mtitle-vertical span {
  display: block;
  font-size: 4rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #f4d35d;
}
@media all and (max-width: 639px) {
  .mtitle-vertical {
    writing-mode: inherit;
    font-size: 1.3rem;
  }
  .mtitle-vertical span {
    font-size: 2.5rem;
  }
}

.vertical-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media all and (max-width: 639px) {
  .vertical-box {
    flex-direction: column;
  }
}

.vertical-content {
  flex: 1;
  margin-left: 10%;
}
@media all and (max-width: 639px) {
  .vertical-content {
    flex: 1 0 auto;
    margin: 15px 0 0;
  }
}

.link-txt {
  font-weight: 600;
  border-bottom: 1px dashed #6c472f;
  color: #6c472f;
}

.lead01 {
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.4;
  font-weight: 600;
  font-size: 1.1em;
  margin-bottom: 15px;
}
.lead01 span {
  background: #72b355;
  color: #fff;
  padding: 2px 4px;
  font-size: 1.8rem;
  font-weight: 600;
}
.lead01 span em {
  font-style: normal;
  font-family: "Maven Pro", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  padding-right: 5px;
}

.lead02 {
  font-weight: 600;
  margin-top: 15px;
  line-height: 1.5;
}

.lead03 {
  margin-bottom: 20px;
}
.lead03 span {
  padding: 2px 5px;
  background: #ece9c0;
  color: #6c472f;
  font-size: 2rem;
  font-weight: 600;
}
.lead03:before {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: bold;
  margin-right: 5px;
}
@media all and (max-width: 639px) {
  .lead03 span {
    font-size: 1.4rem;
  }
}

.title01 {
  font-weight: 700;
  color: #6c472f;
  font-size: 2rem;
  margin-bottom: 25px;
}
.title01 .small {
  display: block;
  font-size: 1.4rem;
  color: #9ecb8a;
}
@media all and (max-width: 639px) {
  .title01 {
    font-size: 1.4rem;
  }
  .title01 .small {
    font-size: 13px;
  }
}

.title02 {
  margin-bottom: 10px;
}
.title02 span {
  display: inline-block;
}
@media all and (max-width: 639px) {
  .title02 span:not(.lead) {
    display: block;
  }
}
.title02 .lead {
  background: #f4d35d;
  display: inline-block;
  color: #fff;
  padding: 15px 20px;
  font-weight: 600;
  line-height: 1.8;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
@media all and (max-width: 639px) {
  .title02 .lead {
    padding: 8px 15px;
  }
}

.top-service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-service-list li {
  width: 19%;
  font-weight: 600;
  text-align: center;
  color: #81bb67;
}
.top-service-list .top-service-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 10px;
}
.top-service-list .top-service-img img {
  border-radius: 50%;
}
@media all and (max-width: 639px) {
  .top-service-list {
    justify-content: flex-start;
  }
  .top-service-list li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 15px;
  }
  .top-service-list li:nth-child(2n) {
    margin-right: 0;
  }
}

.box1 {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: -15px;
}
@media all and (max-width: 639px) {
  .link-list {
    padding: 0 10px;
  }
}
.link-list li {
  width: 15%;
  margin-top: 15px;
  border: 1px solid #f0f0f0;
  background: #fff;
  padding: 4px 0;
}
.link-list li img {
  width: 100%;
}
@media all and (max-width: 639px) {
  .link-list li {
    width: 31%;
  }
}

.box-line {
  background-image: linear-gradient(to right, #6c472f, #6c472f 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%), linear-gradient(to right, #6c472f, #6c472f 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%), linear-gradient(to bottom, #6c472f, #6c472f 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%), linear-gradient(to bottom, #6c472f, #6c472f 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%);
  background-size: 8px 1px, 8px 1px, 1px 8px, 1px 8px;
  background-position: left top, left bottom, left top, right top;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  padding: 25px;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
}
.box-line:before {
  position: absolute;
  content: "";
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  top: 50%;
  left: 50%;
  background: #205474;
  opacity: 0.1;
  transform: translate(-50%, -50%);
}
@media all and (max-width: 639px) {
  .box-line {
    max-width: 95%;
    padding: 15px;
  }
}

.top-btn-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0;
}
.top-btn-box a {
  display: block;
  width: 350px;
}
.top-btn-box a:first-of-type {
  margin-right: 40px;
}
@media all and (max-width: 800px) {
  .top-btn-box a {
    width: 45%;
  }
}
@media all and (max-width: 639px) {
  .top-btn-box a {
    width: 90%;
  }
  .top-btn-box a:first-of-type {
    margin: 0 auto 20px;
  }
}

.slide_list,
.slide_list2 {
  margin-top: 40px;
}
.slide_list li,
.slide_list2 li {
  margin-right: 1%;
}
.slide_list img,
.slide_list2 img {
  border-radius: 10px;
  width: 330px;
  height: 240px;
}
@media all and (max-width: 639px) {
  .slide_list img,
  .slide_list2 img {
    height: 200px;
  }
}

.price-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.price-box .price-video {
  width: 30%;
}
.price-box .price-txt {
  width: 65%;
}
.price-box .tbl_new tr th {
  width: 30%;
  padding-left: 10px;
}
@media all and (max-width: 800px) {
  .price-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .price-box .price-video {
    width: 200px;
    margin-bottom: 20px;
  }
  .price-box .price-txt {
    width: 80%;
  }
  .price-box .tbl_new tr th {
    width: 50%;
  }
}
@media all and (max-width: 639px) {
  .price-box .price-txt {
    width: 100%;
  }
}

.what-inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: space-between;
  align-items: center;
}
.what-inner.m-b0 {
  margin-bottom: 0;
}
.what-inner .in-left {
  width: 40%;
  padding: 10px;
}
.what-inner .in-left .read {
  color: #db7780;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 30px;
  letter-spacing: 0.1em;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 1.4em;
  text-align: center;
}
.what-inner .in-left .read span {
  display: table;
  margin: 0;
  font-size: 23px;
  letter-spacing: 0.1em;
  line-height: 1em;
  color: #deafb0;
  margin-top: 10px;
}
.what-inner .in-left .kodomo {
  text-align: center;
  position: relative;
  margin: 20px auto -12px;
}
.what-inner .in-right {
  width: 55%;
}
@media all and (max-width: 639px) {
  .what-inner .in-left {
    width: 100%;
  }
  .what-inner .in-left .btn01 {
    display: none !important;
  }
  .what-inner .in-left .read {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .what-inner .in-left .read span {
    font-size: 18px;
  }
  .what-inner .in-right {
    width: 100%;
  }
}

.kiritori {
  height: 1px;
  border-top: 1px solid #c3cbcd;
  margin: 40px 0;
  display: block;
}

/* 動き
----------------------------------*/
/*印象編　4-9、4-10　背景色が伸びて出現（左から・右から）　*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*印象編　4-9 背景色が伸びて出現（左から）*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  /*伸びる背景色の設定*/
  background-image: linear-gradient(to right, rgba(244, 211, 93, 0.5), rgba(244, 211, 93, 0.2));
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  51% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*印象編　4-9 背景色が伸びて出現（右から）*/
.bgRLextend::before {
  animation-name: bgRLextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f4d35d;
  /*伸びる背景色の設定*/
}

@keyframes bgRLextendAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0);
  }
  50% {
    transform-origin: right;
    transform: scaleX(1);
  }
  51% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgUDextendTrigger,
.bgDUextendTrigger,
.bgRLextendTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/*子犬情報*/
/*puppy*/
.puppy-list {
  display: flex;
  flex-wrap: wrap;
}
.puppy-list > li {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 25px;
  position: relative;
  border: 0.9px solid #e09226;
  border-radius: 8px;
  overflow: hidden;
}
.puppy-list > li a {
  display: block;
  position: relative;
  padding-bottom: 65px;
  background: #fff;
}
.puppy-list > li a:hover .more {
  background: #f4d35d;
  color: #fff;
}
.puppy-list > li:nth-child(4n) {
  margin-right: 0;
}
.puppy-list > li figure {
  width: 100%;
  height: 280px;
}
.puppy-list > li figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.puppy-list > li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 1200px) {
  .puppy-list {
    padding: 0 10px;
  }
}
@media all and (max-width: 800px) {
  .puppy-list > li {
    width: 48%;
    margin-right: 4%;
  }
  .puppy-list > li:nth-child(2n) {
    margin-right: 0;
  }
}
@media all and (max-width: 639px) {
  .puppy-list {
    width: 90%;
    margin: 0 auto;
  }
  .puppy-list > li {
    width: 100%;
    margin: 0 auto 25px;
  }
  .puppy-list > li:nth-child(2n) {
    margin-right: auto;
  }
  .puppy-list > li figure {
    height: 180px;
  }
}

.puppy-dl {
  display: flex;
  flex-wrap: wrap;
  padding: 0 15px;
  margin-top: 10px;
}
.puppy-dl dt, .puppy-dl dd {
  border-bottom: 0.9px solid #ccc;
  padding: 8px 4px;
  font-size: 1.4rem;
  color: #131313;
}
.puppy-dl dt {
  width: 90px;
  letter-spacing: 0;
}
.puppy-dl dd {
  width: calc(100% - 90px);
}
.puppy-dl dd.price {
  font-size: 1.1em;
}
@media all and (max-width: 639px) {
  .puppy-dl dt, .puppy-dl dd {
    font-size: 13px;
  }
  .puppy-dl dt {
    width: 85px;
  }
  .puppy-dl dd {
    width: calc(100% - 85px);
  }
}

.more {
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 80%;
  background: #fcb91d;
  padding: 4px;
  border-radius: 30px;
  font-weight: 600;
  color: #111;
  transition: all 0.2s ease-in;
  text-align: center;
  transform: translateX(-50%);
}

.thumb-item li {
  width: 100%;
}
.thumb-item li a {
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: block;
}
@media all and (max-width: 639px) {
  .thumb-item li a {
    height: 280px;
  }
}
.thumb-item li img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

.thumb-item-nav li {
  overflow: hidden;
  height: 100px;
}
.thumb-item-nav li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .thumb-item-nav li {
    height: 80px;
  }
}

.sp_side{
  display: none;
}
@media all and (max-width: 639px) {
  #hed_side.sp_side{
    display: block;
    left: 73%;
  }
  #hed_side ul li a{
    display: inline-block;}

}

.form-pattern-1 dl dt:not(.pattern-exclusion) span.required::before {
	content: '必須' !important;
	color: #fff !important;
	background: #e09226 !important;
}
.form-pattern-1 .submit-btn {
	color: #fff !important;
	background: #205474 !important;
	border: 1px solid #205474 !important;
	border-image: initial !important;
	border-radius: 25px !important;
}
.form-pattern-1 .submit-btn:hover {
  background: #e09226 !important;
  color: #fff !important;
  border: 1px solid #e09226 !important;
}