@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #333;
  background: #fefefe;
  font-family: "Zen Kaku Gothic Antique", "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1em;
}

a {
  color: #901a25;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper {
  overflow: hidden;
}
#wrapper.top {
  overflow: hidden;
}

em {
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
}

.bold {
  font-weight: 600;
}

h2,
h3,
h4 {
  line-height: 1.4;
  font-weight: 600;
}

.mincho {
  font-family: "Shippori Mincho B1", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
  font-weight: 500 !important;
}

.bigger {
  font-size: 1.8rem;
}
@media all and (max-width: 639px) {
  .bigger {
    font-size: 1.25rem;
  }
}

.st1 {
  stroke-miterlimit: 5;
  stroke-width: 1;
  fill: none;
  stroke: #111;
}

.st2 {
  stroke-miterlimit: 5;
  stroke-width: 0.9;
  fill: none;
  stroke: #e57e3c;
}

.st3 {
  stroke-miterlimit: 5;
  stroke-width: 0.9;
  fill: none;
  stroke: #e57e3c;
}

.st4 {
  stroke-miterlimit: 5;
  stroke-width: 0.9;
  fill: none;
  stroke: #e57e3c;
}

/* animation
----------------------------------*/
@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 #A61E2B;
  border-radius: 50%;
  border-right: 1px solid rgba(166, 30, 43, 0.2);
  border-top: 1px solid rgba(166, 30, 43, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.loader.off {
  display: none;
}

@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.gradient {
  background: linear-gradient(45deg, #ccc, #002989, #eee);
  background-size: 600% 600%;
  animation: anim-gradient 10s ease infinite;
}

@keyframes anim-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#l-header {
  width: 100%;
  position: absolute;
  z-index: 200;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.2s ease-in;
}
#l-header .sns-list {
  display: none;
}
#l-header.is-fixed {
  margin: 0px auto;
  right: 0;
  position: fixed;
  padding: 0;
  transition: 0.3s ease;
  background: #fefefe;
}
@media all and (max-width: 896px) {
  #l-header.is-fixed {
    background-color: transparent;
  }
}
#l-header.is-fixed .inner {
  position: relative;
  display: block;
  padding: 20px 40px;
}
#l-header.is-fixed .inner .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#l-header.is-fixed .inner #logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 160px;
}
#l-header.is-fixed .inner #logo .logo1 {
  display: none;
}
#l-header.is-fixed .inner #logo .logo2 {
  display: block;
}
@media all and (max-width: 896px) {
  #l-header.is-fixed .inner #logo {
    width: 80px;
  }
}
@media all and (max-width: 639px) {
  #l-header.is-fixed .inner #logo {
    width: 80px;
  }
}
#l-header.is-fixed #header_nav {
  display: block;
}
#l-header.is-fixed .sns-list {
  display: flex;
  padding-right: 60px;
}
#l-header.is-fixed .sns-list li a {
  color: #494444;
}
#l-header.is-hide {
  transform: translateY(-100%);
}
#l-header .inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
  padding: 40px;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media all and (max-width: 639px) {
  #l-header .inner {
    padding: 20px;
  }
}
#l-header .inner #logo {
  width: 100px;
}
@media all and (max-width: 639px) {
  #l-header .inner #logo {
    width: 80px !important;
  }
}
#l-header .inner #logo .logo2 {
  display: none;
}
#l-header .head-right {
  margin-left: auto;
  margin-right: 5px;
}
@media all and (max-width: 1100px) {
  #l-header .head-right {
    text-align: center;
    margin: 0 auto;
  }
}
@media all and (max-width: 896px) {
  #l-header .head-right {
    display: none;
  }
}
#l-header .head-right_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}
#l-header .head-right_tel a,
#l-header .head-right_mail a {
  display: block;
  padding: 4px 10px;
  transition: all 0.2s ease-in;
  background: rgb(88, 88, 88);
  color: #fff;
  font-size: 1.3rem;
}
#l-header .head-right_tel a:before,
#l-header .head-right_mail a:before {
  margin-right: 5px;
}
#l-header .head-right_tel a {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1.7rem;
  position: relative;
}
@media all and (max-width: 896px) {
  #l-header .head-right_tel a {
    pointer-events: inherit;
  }
}
#l-header .head-right_tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
}
#l-header .head-right_tel a:hover {
  color: #d12636;
}
#l-header .head-right_mail {
  margin: 0 8px;
}
#l-header .head-right_mail a {
  padding-left: 45px;
  position: relative;
  color: #fefefe;
}
#l-header .head-right_mail a span {
  display: block;
  font-size: 12px;
  margin-bottom: -5px;
}
#l-header .head-right_mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  position: absolute;
  left: 15px;
  top: 50%;
  font-size: 1.7rem;
  transform: translateY(-50%);
}
#l-header .head-right_mail a:hover {
  background: #002989;
}
#l-header.type2 {
  background: #fefefe;
}
#l-header.type2 .sns-list {
  display: flex;
}
@media all and (max-width: 639px) {
  #l-header.type2 .sns-list {
    display: none;
  }
}
#l-header.type2 .inner {
  position: relative;
  display: block;
  padding: 20px 40px;
}
@media all and (max-width: 639px) {
  #l-header.type2 .inner {
    padding: 20px;
  }
}
#l-header.type2 .inner #logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 160px;
}
@media all and (max-width: 639px) {
  #l-header.type2 .inner #logo {
    left: 15px;
    transform: none;
    top: 15px;
  }
}
#l-header.type2 .inner .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#l-header.type2 .inner .wrapper .sns-list {
  padding-right: 60px;
}
#l-header.type2 .inner .wrapper .sns-list li a {
  color: #494444;
}
#l-header.type2 #header_nav {
  display: block;
}
@media all and (max-width: 1100px) {
  #l-header.type2 #header_nav {
    display: none;
  }
}

#header_nav {
  position: relative;
  display: none;
}
@media all and (max-width: 896px) {
  #header_nav {
    display: none;
  }
}
#header_nav.is-fixed {
  overflow: hidden;
}
@media all and (max-width: 896px) {
  #header_nav.is-fixed {
    display: none;
  }
}
#header_nav.is-fixed .head-right_tel a {
  color: #005740;
}
@media all and (max-width: 1100px) {
  #header_nav.is-fixed {
    margin: 0 40px 0 auto;
  }
}
#header_nav.is-fixed ul li a {
  color: rgb(0, 0, 0);
  padding: 12px 0 12px;
  text-align: center;
}
#header_nav.is-fixed ul li a::after {
  display: none;
}
#header_nav.is-fixed ul li a span {
  color: rgb(0, 0, 0);
}
#header_nav.is-fixed ul li a.active span, #header_nav.is-fixed ul li a:hover span {
  color: #262626;
}
#header_nav.is-fixed ul li a:hover {
  color: #A61E2B;
}
#header_nav.is-fixed ul li a:hover span {
  color: #A61E2B;
}
#header_nav ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#header_nav ul li {
  position: relative;
  flex: 1 0 auto;
}
#header_nav ul li a {
  display: block;
  color: #494444;
  position: relative;
  line-height: 1.5;
  font-size: 1.5rem;
  padding: 5px 0;
}
#header_nav ul li a span {
  display: block;
  font-size: 1.2rem;
  font-family: "Della Respira", serif;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.1rem;
}
#header_nav ul li a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #A61E2B;
  left: 0;
  bottom: 0px;
  transition: 0.2s width ease-in;
}
@media all and (max-width: 1100px) {
  #header_nav ul li a:after {
    right: 0;
    text-align: center;
    margin: 0 auto;
  }
}
#header_nav ul li a:hover span, #header_nav ul li a.active span {
  color: #A61E2B;
  transition: 0.2s width ease-in;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 45px;
  z-index: 999;
  padding-top: 30px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  margin: 0 0 5px;
  background: #111;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 160px;
  padding: 12px 8px;
  color: #fefefe;
}
#header_nav .dropdown .dropdown-li.foot_only {
  display: none;
}

/* sp_nav */
/* nav-toggle */
#nav-toggle {
  display: block;
  position: fixed;
  top: 60px;
  right: 60px;
  height: 40px;
  cursor: pointer;
  padding: 15px;
}
#nav-toggle.is-fixed {
  top: 18px;
  right: 25px;
}
#nav-toggle.is-fixed span {
  background: #494444;
}
#nav-toggle > div {
  position: relative;
  width: 35px;
}
#nav-toggle > div > p {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 25px;
  font-size: 11px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Della Respira", serif;
  font-weight: 400;
}
#nav-toggle span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 10px;
}
#nav-toggle span:nth-child(3) {
  top: 20px;
}
#nav-toggle:hover span:nth-child(1) {
  top: 0px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 20px;
}
#nav-toggle.type2 {
  top: 18px;
  right: 25px;
}
#nav-toggle.type2 span {
  background: #494444;
}
@media all and (max-width: 639px) {
  #nav-toggle.type2 {
    right: 20px;
  }
}
@media all and (max-width: 639px) {
  #nav-toggle {
    top: 20px !important;
    right: 20px !important;
  }
}

#nav-toggle {
  z-index: 1000;
}

#container {
  z-index: 900;
}

#main {
  float: left;
  width: 76%;
  margin-bottom: 50px;
}
#main .mbox {
  min-height: 300px;
}
@media all and (max-width: 896px) {
  #main .mbox {
    min-height: initial;
  }
}
@media all and (max-width: 896px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}
@media all and (max-width: 896px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

#sp-nav {
  background: #F8F8F2;
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  width: 15%;
}
#sp-nav a {
  display: block;
  color: #232323;
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.4s ease;
  font-weight: 600;
}
#sp-nav a span {
  display: block;
  font-family: "Della Respira", serif;
  font-weight: 400;
}
#sp-nav a:hover {
  color: #666;
}
#sp-nav .dropdown {
  display: none;
}
#sp-nav ul {
  list-style: none;
}
#sp-nav ul li {
  opacity: 0;
  transform: translateX(200px);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
#sp-nav ul li:nth-child(2) {
  transition-delay: 0.1s;
}
#sp-nav ul li:nth-child(3) {
  transition-delay: 0.2s;
}
#sp-nav ul li:nth-child(4) {
  transition-delay: 0.3s;
}
#sp-nav ul li:nth-child(5) {
  transition-delay: 0.4s;
}
#sp-nav ul li:nth-child(6) {
  transition-delay: 0.5s;
}
#sp-nav ul li:nth-child(7) {
  transition-delay: 0.6s;
}

.open #nav-toggle span {
  background: #818181;
}
.open #nav-toggle span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  transform: rotate(-45deg);
}

#nav-toggle {
  z-index: 1000;
}

#container {
  z-index: 900;
}

#sp-nav {
  background: #F8F8F2;
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#sp-nav a {
  display: block;
  color: #232323;
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.4s ease;
  font-weight: 600;
}
#sp-nav a span {
  display: block;
  font-family: "Della Respira", serif;
  font-weight: 400;
}
#sp-nav a:hover {
  color: #666;
}
#sp-nav .dropdown {
  display: none;
}
#sp-nav ul {
  list-style: none;
}
#sp-nav ul li {
  opacity: 0;
  transform: translateX(200px);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
#sp-nav ul li:nth-child(2) {
  transition-delay: 0.1s;
}
#sp-nav ul li:nth-child(3) {
  transition-delay: 0.2s;
}
#sp-nav ul li:nth-child(4) {
  transition-delay: 0.3s;
}
#sp-nav ul li:nth-child(5) {
  transition-delay: 0.4s;
}
#sp-nav ul li:nth-child(6) {
  transition-delay: 0.5s;
}
#sp-nav ul li:nth-child(7) {
  transition-delay: 0.6s;
}

/* open */
.open #sp-nav {
  visibility: visible;
  opacity: 1;
}
.open #sp-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}
@media all and (max-width: 896px) {
  .open {
    overflow: hidden;
  }
}

#fixed-btn {
  position: fixed;
  z-index: 200;
  top: 140px;
  right: 0;
}
#fixed-btn a {
  display: block;
  font-weight: 600;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-size: 1.5rem;
  padding: 10px;
  height: 160px;
  background: #222;
  position: relative;
  transition: background 0.2s ease-in;
}
#fixed-btn a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-bottom: 4px;
  writing-mode: inherit;
}
#fixed-btn a:hover {
  background: #c6c6c6;
}
#fixed-btn a:last-of-type {
  background: #f66009;
}
#fixed-btn a:last-of-type:before {
  font-family: "Font Awesome 5 Free";
  content: "\f086";
  font-weight: 900;
}
#fixed-btn a:last-of-type:hover {
  background: #A61E2B;
}
@media all and (max-width: 896px) {
  #fixed-btn {
    top: auto;
    bottom: 70px;
  }
}
@media all and (max-width: 639px) {
  #fixed-btn {
    display: flex;
    width: 100%;
    bottom: 0;
  }
  #fixed-btn a {
    width: 50%;
    writing-mode: inherit;
    font-size: 1.2rem;
    text-align: center;
    height: auto;
  }
  #fixed-btn a:before {
    margin-bottom: 0;
    margin-right: 5px;
  }
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 250;
}
#page-top a {
  display: block;
  width: 40px;
  text-align: center;
  color: #494444;
}
#page-top a:hover {
  opacity: 0.6;
}
@media all and (max-width: 639px) {
  #page-top {
    bottom: 30px;
  }
  #page-top a {
    width: 30px;
  }
}

/* swiper
----------------------------------*/
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.12);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom-in 11s linear 0s 1 normal both;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 30px !important;
  right: auto;
  background: rgba(166, 30, 43, 0.7);
}
@media all and (max-width: 639px) {
  .swiper-button-prev,
  .swiper-container-rtl .swiper-button-next {
    left: 10px !important;
  }
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 30px !important;
  left: auto;
  background: rgba(166, 30, 43, 0.7);
}
@media all and (max-width: 639px) {
  .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 10px !important;
  }
}

@media all and (max-width: 639px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 17px !important;
    height: 28px !important;
    background-size: 17px 28px !important;
  }
}

.swiper-slide {
  position: relative;
}
.swiper-slide:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background-position: 50%;
  background-size: cover;
  z-index: -1;
}

.slide-img {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  position: relative;
}
.slide-img:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  background: #3a200c;
  opacity: 0.4;
}
.slide-img .img1 {
  -o-object-position: center top;
     object-position: center top;
}
.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 1100px) {
  .slide-img {
    height: 75vh;
  }
}
@media screen and (max-width: 890px) and (orientation: landscape) {
  .slide-img {
    height: 82vh;
  }
}
@media all and (max-width: 639px) {
  .slide-img {
    height: 130vw;
  }
}

.slider {
  width: 100vw;
  height: 85vh;
  position: relative;
  overflow: hidden;
}
.slider > div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  top: 0;
}
.slider > div img.slider-img {
  display: none;
}
.slider > div > div {
  flex: none;
  background-repeat: no-repeat;
}
@media all and (max-width: 1100px) {
  .slider {
    height: 50vh;
  }
}

#slideshow {
  position: relative;
  width: 100%;
}
#slideshow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
#slideshow .vid-box {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  opacity: 0.8;
}
#slideshow .vid-box video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
}
@media all and (max-width: 1367px) {
  #slideshow .vid-box {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  #slideshow .vid-box {
    width: 100%;
  }
}
#slide-wrap {
  position: relative;
}

#catch {
  z-index: 50;
  position: absolute;
  left: 5%;
  bottom: 5%;
  opacity: 0;
  color: #fefefe;
  font-family: "Shippori Mincho B1", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  display: flex;
  align-items: center;
}
#catch h2 {
  font-size: 3rem;
}
#catch h3 {
  font-size: 2rem;
}
#catch .left {
  padding-right: 60px;
}
#catch .right {
  border-left: 1px solid #ddd;
  padding-left: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
}
#catch .btn a {
  display: flex;
  gap: 10px;
  color: #fff;
  font-size: 1.4rem;
  padding: 10px 0;
}
#catch .btn a span {
  display: block;
  width: 30px;
  transition: all 0.5s ease;
}
#catch .btn a:hover span {
  transform: translateX(5px);
}
#catch span {
  display: block;
  font-size: 1rem;
  font-family: "Della Respira", serif;
}
#catch.on {
  opacity: 1;
  transition: 2s;
}
@media all and (max-width: 896px) {
  #catch {
    flex-direction: column;
    align-items: flex-start;
  }
  #catch .left {
    padding-right: 0;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #catch .right {
    padding-left: 0;
    border-left: 0;
  }
}
@media all and (max-width: 639px) {
  #catch h2 {
    font-size: 2.1rem;
  }
  #catch h3 {
    font-size: 1.3rem;
  }
}

.slide-txt {
  position: absolute;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  z-index: 40;
}
@media all and (max-width: 1100px) {
  .slide-txt {
    width: 55%;
  }
}
@media all and (max-width: 639px) {
  .slide-txt {
    width: 90%;
    transform: none;
    top: auto;
    bottom: 10%;
  }
}

#scrolldown {
  position: absolute;
  right: 2%;
  bottom: 0px;
  color: #fefefe;
  font-family: "Della Respira", serif;
  font-weight: 400;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-size: 1.4rem;
  z-index: 100;
  height: 210px;
}
#scrolldown:before, #scrolldown:after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 50%;
}
#scrolldown:before {
  width: 1px;
  height: 100px;
  bottom: 0;
  background: #f0f0f0;
  transform: translateX(-50%);
}
#scrolldown:after {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  top: 100px;
  margin-left: -4px;
  animation: scroll-point 2.3s ease-out infinite;
  animation-fill-mode: both;
}
@media all and (max-width: 896px) {
  #scrolldown {
    display: none;
  }
}

@keyframes scroll-point {
  0% {
    bottom: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    top: 180px;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 210px;
    opacity: 0;
  }
}
/* contact_bnr
----------------------------------*/
.contact_bnr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
@media all and (max-width: 639px) {
  .contact_bnr {
    margin-bottom: 0;
  }
}
.contact_bnr > li {
  width: 48%;
}
@media all and (max-width: 896px) {
  .contact_bnr > li {
    width: 100%;
    margin: 0 auto 15px;
  }
}
.contact_bnr > li .bnr_tel {
  white-space: nowrap;
  position: relative;
}
.contact_bnr > li .bnr_tel:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.contact_bnr > li .bnr_mobile:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3cd";
  font-weight: 900;
}
.contact_bnr > li .bnr_fax {
  background: #fdfdfd;
  color: #A61E2B;
}
.contact_bnr > li .bnr_fax:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ac";
  font-weight: 900;
}
.contact_bnr > li .bnr_mail {
  font-size: 1.6rem;
  padding: 15px 0;
}
.contact_bnr > li .bnr_mail:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
@media all and (max-width: 639px) {
  .contact_bnr > li .bnr_mail {
    font-size: 1.2rem;
  }
}
.contact_bnr > li a,
.contact_bnr > li span {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2rem;
  padding: 12px 0;
  border: 0.9px solid #fff;
}
.contact_bnr > li a:before,
.contact_bnr > li span:before {
  margin-right: 5px;
  position: relative;
  display: inline-block;
}
.contact_bnr > li a:hover,
.contact_bnr > li span:hover {
  color: #ffdf2c;
}
@media all and (max-width: 639px) {
  .contact_bnr > li a,
  .contact_bnr > li span {
    margin: 0 auto;
    white-space: nowrap;
    padding: 10px 0;
    width: 100%;
    font-size: 1.5rem;
  }
  .contact_bnr > li a:before,
  .contact_bnr > li span:before {
    font-size: 1.3rem;
    transform: translateY(-2px);
  }
}

.tel_link {
  font-family: "Lato", sans-serif;
  font-size: 2.8rem;
  margin: 0 10px;
  font-weight: bold;
}
/* footer
----------------------------------*/
#l-footer {
  font-size: 1.4rem;
  position: relative;
  color: #333;
  background: #F8F8F2;
  border-top: 1px solid #ddd;
}
@media all and (max-width: 1367px) {
  #l-footer {
    margin-top: 80px;
  }
}
@media all and (max-width: 896px) {
  #l-footer {
    margin-top: 60px;
  }
}
#l-footer .inner {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  z-index: 3;
}
#l-footer .inner .flogo {
  width: 120px;
}
#l-footer .inner .footer_contact {
  display: flex;
  padding-top: 100px;
}
#l-footer .inner .footer_contact .left,
#l-footer .inner .footer_contact .right {
  width: 50%;
  text-align: center;
}
#l-footer .inner .footer_contact .left .ttl,
#l-footer .inner .footer_contact .right .ttl {
  margin-bottom: 60px;
}
#l-footer .inner .footer_contact .left .btn03 a,
#l-footer .inner .footer_contact .right .btn03 a {
  max-width: 60%;
}
#l-footer .inner .footer_contact .left .btn03 a i,
#l-footer .inner .footer_contact .right .btn03 a i {
  padding-right: 5px;
}
#l-footer .inner .footer_contact .left span,
#l-footer .inner .footer_contact .right span {
  display: block;
}
#l-footer .inner .footer_contact .left .eng,
#l-footer .inner .footer_contact .right .eng {
  font-family: "Della Respira", serif;
  font-size: 1.8rem;
}
#l-footer .inner .footer_contact .left .ja,
#l-footer .inner .footer_contact .right .ja {
  font-size: 1.2rem;
  margin-top: 10px;
}
@media all and (max-width: 896px) {
  #l-footer .inner .footer_contact {
    padding-top: 60px;
  }
}
@media all and (max-width: 639px) {
  #l-footer .inner .footer_contact {
    flex-direction: column;
    gap: 30px;
    padding-top: 30px;
  }
  #l-footer .inner .footer_contact .left,
  #l-footer .inner .footer_contact .right {
    width: 100%;
  }
  #l-footer .inner .footer_contact .left .ttl,
  #l-footer .inner .footer_contact .right .ttl {
    margin-bottom: 20px;
  }
}
#l-footer .inner .footer_bottom {
  padding: 60px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 95%;
  margin: 0 auto;
  border-top: 1px solid #ddd;
}
#l-footer .inner .footer_bottom .wrapper {
  display: flex;
  align-items: center;
}
#l-footer .inner .footer_bottom .wrapper .sns-list li a {
  color: #494444;
}
@media all and (max-width: 896px) {
  #l-footer .inner .footer_bottom {
    padding: 30px 0;
  }
}
@media all and (max-width: 1100px) {
  #l-footer .inner {
    width: 100%;
  }
}
@media all and (max-width: 896px) {
  #l-footer .inner .flogo {
    width: 80px;
  }
}
@media all and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 0;
  }
  #l-footer .inner .flogo {
    width: 50px;
  }
}

.footer-lead {
  margin-bottom: 20px;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-wrap .footer-left {
  width: 35%;
}
.footer-wrap .footer-right {
  width: 62%;
}
@media all and (max-width: 639px) {
  .footer-wrap {
    flex-direction: column;
  }
  .footer-wrap .footer-left,
  .footer-wrap .footer-right {
    width: 100%;
  }
  .footer-wrap .footer-left {
    margin-bottom: 20px;
  }
}

.footer-txt {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
}
.footer-txt em {
  font-style: normal;
  display: block;
  font-family: "Shippori Mincho B1", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
  font-size: 2.2rem;
  color: #F8F8F2;
}
@media all and (max-width: 639px) {
  .footer-txt {
    font-size: 1.2rem;
  }
  .footer-txt em {
    font-size: 1.8rem;
  }
}

.footer-txt2 {
  margin: 20px 0;
}

/* footer_navi
----------------------------------*/
.footer_navi {
  flex-basis: 100%;
  margin: 0 auto;
}
.footer_navi ul {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.footer_navi ul li {
  text-align: center;
}
.footer_navi ul li a {
  color: #494444;
  font-size: 1.3rem;
  position: relative;
  padding-left: 20px;
  font-weight: 600;
}
.footer_navi ul li a:hover {
  color: #ffdf2c;
}
.footer_navi ul li .dropdown {
  display: none;
}
.footer_navi ul li .dropdown .dropdon-li a {
  font-size: 1.2rem;
}

.flogo {
  width: 200px;
  min-height: 0;
}
@media all and (max-width: 639px) {
  .flogo {
    width: 90%;
  }
}

.address {
  color: #fefefe;
  font-size: 12px;
}

.copyright {
  font-size: 1rem;
  position: relative;
  z-index: 2;
  color: #494444;
  white-space: nowrap;
}
@media all and (max-width: 896px) {
  .copyright {
    font-size: 10px;
  }
}

/*----------------------------------
 top-contents
----------------------------------*/
.sec1 .sec1_img1 {
  max-width: 950px;
  height: 550px;
  margin: 0 auto;
  position: relative;
}
.sec1 .sec1_img1::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  background: url(../images/gara01.png) no-repeat center/contain;
  width: 600px;
  height: 490px;
  z-index: -1;
}
.sec1 .sec1_img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec1 .sec1_txt {
  display: flex;
  margin-top: -45px;
  justify-content: center;
  gap: 5%;
}
.sec1 .sec1_txt .sec1_img2 {
  width: 45%;
  margin-top: 88px;
  height: 350px;
  position: relative;
}
.sec1 .sec1_txt .sec1_img2.no_mt {
  margin-top: 0;
}
.sec1 .sec1_txt .sec1_img2.type_gara::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: url(../images/gara03.png) no-repeat center/contain;
  opacity: 0.5;
  width: 400px;
  height: 325px;
  z-index: -1;
}
.sec1 .sec1_txt .sec1_img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec1 .sec1_txt .txt {
  width: 40%;
}
@media all and (max-width: 896px) {
  .sec1 .sec1_txt {
    flex-direction: column;
  }
  .sec1 .sec1_txt .img,
  .sec1 .sec1_txt .txt {
    width: 100%;
  }
  .sec1 .sec1_txt .img > img,
  .sec1 .sec1_txt .txt > img {
    height: 400px;
  }
  .sec1 .sec1_txt .txt {
    padding: 30px 30px 0;
  }
  .sec1 .sec1_txt .sec1_img2 {
    display: none;
  }
}
@media all and (max-width: 639px) {
  .sec1 .sec1_txt {
    flex-direction: column;
  }
  .sec1 .sec1_txt .img img,
  .sec1 .sec1_txt .txt img {
    height: 250px;
  }
}
.sec1.type_white .sec1_img1::after {
  background: url(../images/gara02.png) no-repeat center/contain;
  opacity: 0.5;
  bottom: -50px;
  right: -50px;
}
.sec1.type_white .sec1_txt {
  margin-top: 20px;
}
@media all and (max-width: 896px) {
  .sec1 .sec1_img1 {
    height: 300px;
  }
  .sec1 .sec1_img1::after {
    bottom: -20px;
    width: 400px;
    height: 300px;
  }
  .sec1.type_white .sec1_txt {
    flex-direction: column-reverse;
  }
  .sec1.type_white .sec1_txt.type2 {
    flex-direction: column;
  }
  .sec1.type_white .sec1_img2 {
    display: block;
    width: 100%;
    margin-bottom: 40px;
  }
}
@media all and (max-width: 639px) {
  .sec1 .sec1_img1 {
    height: 200px;
  }
  .sec1 .sec1_img1::after {
    width: 250px;
  }
  .sec1 .sec1_txt .txt {
    padding: 30px 15px 0;
  }
  .sec1 .sec1_txt .sec1_img2 {
    height: 250px;
  }
  .sec1 .sec1_txt .sec1_img2.type_gara::after {
    width: 300px;
    height: 225px;
  }
}

.sec2 .sec2_img1 {
  max-width: 950px;
  height: 350px;
  margin: 0 auto;
  position: relative;
}
.sec2 .sec2_img1::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  background: url(../images/gara01.png) no-repeat center/contain;
  width: 450px;
  height: 350px;
  z-index: -1;
}
.sec2 .sec2_img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec2 .sec2_img2 {
  max-width: 950px;
  height: 350px;
  margin: 0 auto;
  position: relative;
}
.sec2 .sec2_img2::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  background: url(../images/gara01.png) no-repeat center/contain;
  width: 450px;
  height: 350px;
  z-index: -1;
}
.sec2 .sec2_img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec2 .sec2_txt {
  margin-top: -45px;
}
.sec2 .sec2_txt2 {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
}
.sec2 .sec2_txt2.no-mp {
  margin-top: 0;
}
.sec2 .sec2_txt2 .img_area {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media all and (max-width: 639px) {
  .sec2 .sec2_txt2 .img_area {
    display: none;
  }
}
.sec2 .sec2_txt2 .img_area img {
  height: 22.5%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec2 .sec2_txt2 .img_area img:nth-child(2), .sec2 .sec2_txt2 .img_area img:nth-child(4) {
  margin-left: 40px;
}
.sec2 .sec2_txt2 .tbl_timeline {
  width: 70%;
  max-width: 100%;
  margin: 0 0 0 auto;
}
@media all and (max-width: 639px) {
  .sec2 .sec2_txt2 .tbl_timeline {
    width: 93%;
  }
  .sec2 .sec2_txt2 .tbl_timeline .timeline_item p {
    font-size: 1.2rem;
  }
}
.sec2 .sec2_txt2 .txt_area {
  width: 70%;
  max-width: 100%;
  margin: 0 auto 0 0;
}
.sec2 .sec2_txt2 .txt_area .txt1 {
  margin-bottom: 50px;
}
.sec2 .sec2_txt2 .txt_area .txt2 {
  margin-left: 40px;
  margin-bottom: 50px;
}
.sec2 .sec2_txt2 .txt_area .note {
  margin-bottom: 50px;
}
@media all and (max-width: 639px) {
  .sec2 .sec2_img1 {
    height: 250px;
  }
  .sec2 .sec2_img1::after {
    width: 250px;
    height: 150px;
    top: -20px;
  }
  .sec2 .sec2_img2 {
    height: 250px;
  }
  .sec2 .sec2_img2::after {
    width: 250px;
    height: 150px;
    top: -20px;
  }
  .sec2 .sec2_txt2 {
    margin-top: 50px;
  }
  .sec2 .sec2_txt2 .txt_area {
    width: 100%;
  }
  .sec2 .sec2_txt2 .txt_area .txt2 {
    margin-left: 0;
  }
  .sec2 .sec2_txt {
    margin-top: -15px;
  }
}

.sec3 .sec3_img1 {
  width: 90%;
  margin-left: auto;
}
.sec3 .sec3_img1 img {
  border-top-left-radius: 50vh;
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec3 .sec3_txt .mbox.type2 {
  margin-top: -300px;
}
.sec3 .sec3_txt .mbox.type3 {
  margin-top: -100px;
}
.sec3 .sec3_ttl {
  padding-left: 10vw;
  margin-top: -45px;
}
@media all and (max-width: 1100px) {
  .sec3 .sec3_txt .mbox.type2 {
    margin-top: -100px;
  }
}
@media all and (max-width: 896px) {
  .sec3 .sec3_img1 img {
    height: 350px;
  }
}
@media all and (max-width: 639px) {
  .sec3 .sec3_ttl {
    margin-top: -15px;
  }
  .sec3 .sec3_txt .list2.type2 {
    flex-direction: column-reverse;
  }
  .sec3 .sec3_txt .list2 .child img {
    height: 300px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sec3 .sec3_img1 img {
    height: 250px;
  }
}

.sec4 .sec4_txt {
  margin-bottom: 40px;
}
.sec4 .sec4_txt .eng {
  font-size: 3rem;
  font-family: "Della Respira", serif;
  margin-right: 10px;
  display: block;
}
.sec4 .child_img {
  width: 50%;
  text-align: center;
  margin: 0 auto;
}
.sec4 .sec4_img1 .img_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.sec4 .sec4_img1 .img1 {
  grid-area: 1/3/3/4;
}
.sec4 .sec4_img1 .img2 {
  grid-area: 1/1/2/2;
}
.sec4 .sec4_img1 .img3 {
  grid-area: 1/2/2/3;
}
.sec4 .sec4_img1 .img4 {
  grid-area: 2/1/3/2;
}
.sec4 .sec4_img1 .img5 {
  grid-area: 2/2/3/3;
}
.sec4 .sec4_img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec4 .sec4_img2 .img_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.sec4 .sec4_img2 .img1 {
  grid-area: 1/1/3/3;
}
.sec4 .sec4_img2 .img2 {
  grid-area: 1/3/2/4;
}
.sec4 .sec4_img2 .img3 {
  grid-area: 2/3/3/4;
}
.sec4 .sec4_img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .sec4 .sec4_img1 .img_wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
  .sec4 .sec4_img2 .img_wrapper {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
  .sec4 .sec4_txt .list2 {
    flex-direction: column-reverse;
  }
  .sec4 .sec4_txt .list2 .child_img {
    width: 50%;
  }
}

.top-greet-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
@media all and (max-width: 896px) {
  .top-greet-wrap {
    flex-direction: column;
    margin: 0;
  }
}
@media all and (max-width: 639px) {
  .top-greet-wrap {
    justify-content: center;
  }
}
.top-greet-wrap .top-greet-img1 {
  width: 48%;
  position: relative;
  height: 500px;
}
.top-greet-wrap .top-greet-img1::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  background: url(../images/gara01.png) no-repeat center/contain;
  width: 600px;
  height: 490px;
  z-index: -1;
}
.top-greet-wrap .top-greet-img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 1100px) {
  .top-greet-wrap .top-greet-img1::after {
    bottom: -50px;
    left: -250px;
  }
}
@media all and (max-width: 896px) {
  .top-greet-wrap .top-greet-img1 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 300px;
    margin-bottom: 60px;
  }
  .top-greet-wrap .top-greet-img1::after {
    bottom: -20px;
    left: -150px;
    width: 400px;
    height: 300px;
  }
}
@media all and (max-width: 639px) {
  .top-greet-wrap .top-greet-img1 {
    width: calc(100% - 10px);
    height: 250px;
  }
  .top-greet-wrap .top-greet-img1::after {
    width: 250px;
    height: 200px;
  }
}
.top-greet-wrap .top-greet-txt {
  margin: 0 auto 40px;
  order: -1;
  width: 80%;
  max-width: 840px;
}
.top-greet-wrap .top-greet-txt p + p {
  margin-top: 15px;
}
@media all and (max-width: 1100px) {
  .top-greet-wrap .top-greet-txt p + p {
    margin-top: 10px;
  }
}
@media all and (max-width: 639px) {
  .top-greet-wrap .top-greet-txt {
    width: 100%;
  }
}
.top-greet-wrap .top-greet-img-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.top-greet-wrap .top-greet-img-box .img-box1 {
  width: 46%;
  height: 250px;
}
.top-greet-wrap .top-greet-img-box .img-box2 {
  width: 50%;
  height: 250px;
}
.top-greet-wrap .top-greet-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .top-greet-wrap .top-greet-img-box {
    align-items: center;
    order: 2;
  }
  .top-greet-wrap .top-greet-img-box .img-box1 {
    width: 40%;
  }
  .top-greet-wrap .top-greet-img-box .img-box2 {
    width: 54%;
  }
}
.top-greet-wrap.type2 .top-greet-img1 {
  height: 600px;
}
.top-greet-wrap.type2 .top-greet-img1::after {
  bottom: -50px;
  left: -50px;
  background: url(../images/gara02.png) no-repeat center/contain;
  opacity: 0.5;
}

.top-greet-box {
  width: 50%;
  position: relative;
  z-index: 2;
}
.top-greet-box p {
  letter-spacing: 0.15em;
  line-height: 2;
}
@media all and (max-width: 896px) {
  .top-greet-box {
    width: 100%;
    margin: 0 auto;
  }
}
@media all and (max-width: 639px) {
  .top-greet-box {
    width: calc(100% - 10px);
    display: flex;
    flex-wrap: wrap;
  }
  .top-greet-box p {
    line-height: 1.8;
  }
}

.top-txt-area {
  display: flex;
  align-items: center;
}
.top-txt-area .img {
  width: 55%;
}
.top-txt-area .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-txt-area .txt {
  width: 45%;
  padding: 60px;
}
.top-txt-area.type2 {
  flex-direction: row-reverse;
}
@media all and (max-width: 896px) {
  .top-txt-area {
    flex-direction: column;
  }
  .top-txt-area .img,
  .top-txt-area .txt {
    width: 100%;
  }
  .top-txt-area .img img,
  .top-txt-area .txt img {
    height: 400px;
  }
  .top-txt-area .txt {
    padding: 30px 30px 0;
  }
}
@media all and (max-width: 639px) {
  .top-txt-area {
    flex-direction: column;
  }
  .top-txt-area .img img,
  .top-txt-area .txt img {
    height: 250px;
  }
}

.top-txt-area2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
@media all and (max-width: 896px) {
  .top-txt-area2 {
    flex-direction: column;
    margin: 0;
  }
}
@media all and (max-width: 639px) {
  .top-txt-area2 {
    justify-content: center;
  }
}
.top-txt-area2 .img1 {
  width: 48%;
  position: relative;
}
.top-txt-area2 .img1 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 896px) {
  .top-txt-area2 .img1 {
    width: 100%;
    margin-bottom: 2%;
    margin-left: auto;
    margin-right: auto;
  }
  .top-txt-area2 .img1 img {
    height: 400px;
  }
}
@media all and (max-width: 639px) {
  .top-txt-area2 .img1 {
    margin-bottom: 3%;
    width: 100%;
  }
  .top-txt-area2 .img1 img {
    height: 250px;
  }
}
.top-txt-area2 .inner {
  width: 46%;
}
@media all and (max-width: 896px) {
  .top-txt-area2 .inner {
    width: 100%;
  }
}
.top-txt-area2 .txt {
  margin: 3% auto 0;
  order: -1;
  width: 98%;
  max-width: 840px;
}
.top-txt-area2 .txt p + p {
  margin-top: 15px;
}
@media all and (max-width: 1100px) {
  .top-txt-area2 .txt p + p {
    margin-top: 10px;
  }
}
.top-txt-area2 .img-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.top-txt-area2 .img-box .img-box1 {
  width: 46%;
  height: 250px;
}
.top-txt-area2 .img-box .img-box2 {
  width: 50%;
  height: 250px;
}
.top-txt-area2 .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .top-txt-area2 .img-box {
    align-items: center;
    order: 2;
  }
  .top-txt-area2 .img-box .img-box1 {
    width: 43%;
  }
  .top-txt-area2 .img-box .img-box2 {
    width: 54%;
  }
}

.top-txt-area3 {
  max-width: 80%;
  margin: 0 auto;
  padding: 120px 0;
}
.top-txt-area3 .txt {
  display: flex;
  flex-wrap: wrap;
}
.top-txt-area3 .txt .right,
.top-txt-area3 .txt .left {
  width: 50%;
}
@media all and (max-width: 1100px) {
  .top-txt-area3 {
    max-width: 90%;
    padding: 80px 0;
  }
}
@media all and (max-width: 896px) {
  .top-txt-area3 {
    padding: 40px 0;
    max-width: 100%;
  }
}
@media all and (max-width: 639px) {
  .top-txt-area3 {
    padding: 15px;
  }
  .top-txt-area3 .txt {
    flex-direction: column;
    gap: 20px;
  }
  .top-txt-area3 .txt .left,
  .top-txt-area3 .txt .right {
    width: 100%;
  }
}

.entry-area {
  position: relative;
  padding: 200px 0 200px;
  margin: 100px auto 0;
}
.entry-area p {
  max-width: 65%;
  margin: 0 auto;
}
.entry-area::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/bg-img.jpg) no-repeat center/cover;
  z-index: -2;
}
.entry-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #382620;
  opacity: 0.5;
  z-index: -1;
}
.entry-area p {
  color: #fefefe;
}
@media all and (max-width: 1100px) {
  .entry-area {
    padding: 200px 0 190px;
  }
}
@media all and (max-width: 896px) {
  .entry-area {
    margin: 60px auto 0;
    padding: 160px 0 160px;
  }
}
@media all and (max-width: 639px) {
  .entry-area {
    margin: 30px auto 0;
    padding: 100px 0;
  }
}

.entry-area2 {
  max-width: 65%;
  margin: -180px auto 0;
}
.entry-area2 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #333;
  padding: 120px 120px;
  position: relative;
  z-index: 100;
}
.entry-area2 a:hover {
  opacity: 0.97;
}
.entry-area2 a:hover .right-arrow {
  transition: all 0.5s ease;
  transform: translateX(10px);
}
.entry-area2 span {
  color: #fefefe;
}
.entry-area2 .eng {
  font-family: "Della Respira", serif;
  font-size: 3.5rem;
  padding-right: 30px;
}
@media all and (max-width: 1100px) {
  .entry-area2 a {
    padding: 80px 80px;
  }
}
@media all and (max-width: 896px) {
  .entry-area2 {
    max-width: 85%;
    margin: -150px auto 0;
  }
  .entry-area2 a {
    padding: 60px;
  }
}
@media all and (max-width: 639px) {
  .entry-area2 {
    margin: -70px auto 0;
  }
  .entry-area2 a {
    padding: 30px;
  }
  .entry-area2 a p {
    display: flex;
    flex-direction: column;
  }
  .entry-area2 .ja {
    font-size: 1.2rem;
  }
  .entry-area2 .eng {
    font-size: 2.5rem;
  }
  .entry-area2 .right-arrow {
    width: 40px;
  }
}

/* menu
----------------------------------*/
.top-bnr-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  gap: 15px;
}
.top-bnr-list > li {
  width: 48%;
  position: relative;
  border-radius: 20px;
}
.top-bnr-list > li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.top-bnr-list > li a:hover {
  transition: all 0.2s ease-in;
}
.top-bnr-list > li a:hover .top-bnr-img img {
  transform: scale(1.05);
  filter: blur(5px) grayscale(60%);
}
.top-bnr-list > li .top-bnr-img {
  height: 400px;
}
@media all and (max-width: 896px) {
  .top-bnr-list > li .top-bnr-img {
    height: 300px;
  }
}
@media all and (max-width: 639px) {
  .top-bnr-list > li .top-bnr-img {
    height: 250px;
  }
}
.top-bnr-list > li:nth-child(3), .top-bnr-list > li:nth-child(4), .top-bnr-list > li:nth-child(5) {
  width: 31.5%;
}
@media all and (max-width: 639px) {
  .top-bnr-list > li:nth-child(3), .top-bnr-list > li:nth-child(4), .top-bnr-list > li:nth-child(5) {
    width: 100%;
  }
}
@media all and (max-width: 896px) {
  .top-bnr-list {
    width: 100%;
    margin: 0 auto;
    justify-content: space-around;
    padding-top: 30px;
  }
  .top-bnr-list > li {
    width: 48%;
  }
}
@media all and (max-width: 639px) {
  .top-bnr-list {
    width: 95%;
    padding-top: 0;
  }
  .top-bnr-list > li {
    width: 100%;
    margin-bottom: 0;
  }
}
.top-bnr-list .top-bnr-img {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.top-bnr-list .top-bnr-img::before {
  background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, 0) 40%, rgba(0, 0, 0, 0.6));
  background: linear-gradient(180deg, rgba(73, 68, 68, 0) 0, rgba(73, 68, 68, 0) 40%, rgba(73, 68, 68, 0.6));
  background: #000;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
  transition: all 0.5s ease;
  opacity: 0.3;
}
.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;
}
.top-bnr-list .btn-arrow {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  text-align: center;
  line-height: 60px;
  border: 1px solid #fff;
  border-radius: 100%;
  transition: all 0.2s ease-in;
}
@media all and (max-width: 896px) {
  .top-bnr-list .btn-arrow {
    width: 60px;
    height: 60px;
  }
}
@media all and (max-width: 639px) {
  .top-bnr-list .btn-arrow {
    width: 45px;
    height: 45px;
    bottom: 10%;
  }
}
.top-bnr-list .btn-arrow i {
  display: block;
  position: absolute;
  width: 30px;
  border-bottom: 1px solid #fff;
  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: -1px;
  border-right: 2px solid #fff;
  transform: skew(45deg);
}
.top-bnr-list .top-bnr-title {
  font-weight: 500;
  padding: 15px 0;
  line-height: 1.4;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 5px rgba(92, 64, 49, 0.3));
  white-space: nowrap;
  text-align: center;
}
.top-bnr-list .top-bnr-title .eng {
  font-family: "Della Respira", serif;
  font-weight: 400;
  font-weight: 400;
  font-size: 3.5rem;
  font-family: "Della Respira", serif;
  letter-spacing: 0.1em;
  color: #fff;
  display: block;
  padding-bottom: 10px;
}
.top-bnr-list .top-bnr-title .ja {
  font-size: 1.9rem;
  display: block;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.01em;
  left: 20px;
}
@media all and (max-width: 1100px) {
  .top-bnr-list .top-bnr-title .eng {
    font-size: 1.3rem;
  }
  .top-bnr-list .top-bnr-title .ja {
    font-size: 1.7rem;
  }
}
@media all and (max-width: 639px) {
  .top-bnr-list .top-bnr-title {
    top: 10%;
  }
  .top-bnr-list .top-bnr-title .eng {
    font-size: 1.2rem;
  }
  .top-bnr-list .top-bnr-title .ja {
    font-size: 1.5rem;
  }
}
.top-bnr-list .top-bnr-txt {
  color: #222;
  padding: 10px;
  font-size: 1.4rem;
  font-family: "Zen Kaku Gothic Antique", "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* --news--
----------------------------------*/
.news-box {
  margin: 0 auto 0;
  max-width: 85%;
  position: relative;
  z-index: 10;
  display: flex;
}
@media all and (max-width: 896px) {
  .news-box {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  .news-box {
    flex-direction: column;
  }
}

.news-ttl {
  background: url(../images/ttl_bg.png) no-repeat center/contain;
  height: 147px;
  text-align: center;
  margin-bottom: -50px;
}
.news-ttl.type2 {
  margin-bottom: -20px;
}
.news-ttl .eng {
  background: #fefefe;
  font-size: 5.5rem;
  color: #494444;
  position: relative;
  line-height: 1.5;
  font-family: "Della Respira", serif;
  font-weight: 400;
  padding: 0 40px;
  margin-top: -20px;
  display: inline-block;
  color: #005740;
}
.news-ttl .ja {
  display: block;
}
@media all and (max-width: 639px) {
  .news-ttl {
    height: 70px;
    margin-bottom: 0;
  }
  .news-ttl .eng {
    font-size: 2.5rem;
  }
  .news-ttl.type2 {
    margin-bottom: 0;
  }
}

.news-bottom {
  background: url(../images/ttl_bg.png) no-repeat center/contain;
  height: 147px;
  transform: scale(1, -1);
  margin-top: -50px;
}

.news-box2 {
  margin: 0 auto;
  max-width: 800px;
}

.news-title {
  position: relative;
  padding-right: 60px;
  text-align: center;
}
.news-title span {
  display: block;
  line-height: 1.6;
}
.news-title .eng {
  font-family: "Della Respira", serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 3rem;
  color: #A61E2B;
}
.news-title .ja {
  font-size: 1.8rem;
  position: relative;
  color: #3a200c;
}
@media all and (max-width: 896px) {
  .news-title {
    padding-right: 2s0px;
  }
}
@media all and (max-width: 639px) {
  .news-title {
    padding: 0 0 25px;
    writing-mode: inherit;
    text-align: left;
    border-right: none;
  }
  .news-title span {
    display: inline-block;
  }
  .news-title .eng {
    font-size: 2rem;
    margin-right: 10px;
  }
  .news-title .ja {
    font-size: 1.4rem;
  }
}

.news-right {
  flex: 1;
  margin-left: 80px;
}
.news-right.type2 {
  margin-left: 0;
}
@media all and (max-width: 896px) {
  .news-right {
    margin-left: 0;
  }
}
@media all and (max-width: 639px) {
  .news-right {
    width: 100%;
    margin: 0;
  }
}

/* contents
----------------------------------*/
.single0 {
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
@media all and (max-width: 1367px) {
  .single0 {
    padding: 80px 10px;
  }
}

.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.single.type2 {
  padding: 120px 0 0;
}
@media all and (max-width: 1367px) {
  .single {
    padding: 80px 10px;
    max-width: 95%;
  }
  .single.type2 {
    padding: 80px 10px 0;
  }
}

.single02 {
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 80px 0;
}
.single03 {
  max-width: 1500px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
}
.single03.type2 {
  padding: 120px 0 0;
}
@media all and (max-width: 1367px) {
  .single03 {
    padding: 80px 10px;
    max-width: 95%;
  }
  .single03.type2 {
    padding: 80px 10px 0;
  }
}

.single04 {
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 1100px) {
  .single04 {
    padding: 40px 10px;
  }
}

.single05 .inner {
  margin: 0 auto;
  max-width: 1200px;
  padding: 80px 0;
}

.lsingle,
.rsingle {
  width: 48.44%;
}

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.mbox.transparent {
  background: transparent;
}
.mbox.left {
  margin-left: 0;
}
.mbox.type_b {
  border-top: double 4px #494444;
  border-bottom: double 4px #494444;
}
.mbox.type_b .box_ttl {
  text-align: center;
  margin-top: -55px;
  font-size: 1.8rem;
  margin-bottom: 50px;
  font-size: 2.2rem;
  font-family: "Shippori Mincho B1", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
}
.mbox.type_b .box_ttl span {
  background: #F8F8F2;
  padding: 0 20px;
}
@media all and (max-width: 639px) {
  .mbox.type_b .box_ttl {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 639px) {
  .mbox {
    padding: 15px 10px;
  }
}

.mbox2 {
  padding: 35px 30px;
  border-radius: 5px;
  background: url(../images/body_bg.png);
  background: #F8F8F2;
  position: relative;
  margin-top: 100px;
}
.mbox2 .ttl {
  background: url(../images/body_bg.png);
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  width: 275px;
  height: 175px;
  z-index: -2;
  text-align: center;
  padding-top: 15px;
  border-radius: 80%;
  border: 4px double #f1ede1;
  background: #F8F8F2;
}
.mbox2 .ttl span {
  display: block;
}
.mbox2 .ttl span.eng {
  color: #005740;
}
.mbox2 .ttl span.ja {
  color: #3a200c;
  font-size: 2rem;
}
@media all and (max-width: 639px) {
  .mbox2 .ttl span.ja {
    font-size: 1.5rem;
  }
}
.mbox2.type1 {
  box-shadow: 4px 4px rgba(166, 30, 43, 0.3);
}
@media all and (max-width: 639px) {
  .mbox2 {
    padding: 20px 10px;
    border-radius: 5px;
  }
}

.mbox3 {
  padding: 30px;
  border: 1px solid #aaa;
  margin-bottom: 50px;
}

.small-box {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}
.small-box.type1 {
  max-width: 800px;
}
.small-box.type2 {
  max-width: 650px;
}
.small-box.transparent {
  background: transparent;
}
.small-box.left {
  margin-left: 0;
}

.sentence p + p {
  margin-top: 20px;
}

.vertical-content {
  margin-left: 100px;
  position: relative;
}

.vertical-content.type1 {
  margin-left: 135px;
}

@media all and (max-width: 639px) {
  .vertical-content.type1 {
    margin-left: 0;
  }
}
@media all and (max-width: 639px) {
  .vertical-content {
    margin-left: 0;
  }
}
/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 40px;
  border-bottom: 1px solid #c6c6c6;
  padding-bottom: 40px;
}
.mtitle.big .eng {
  font-size: 8vw;
}
.mtitle.big .ja {
  font-size: 1.9vw;
}
.mtitle .eng {
  font-size: 3.5rem;
  color: #494444;
  position: relative;
  display: inline-block;
  line-height: 1.5;
  font-family: "Della Respira", serif;
  font-weight: 400;
  padding-left: 35px;
}
.mtitle .eng::before {
  content: "";
  position: absolute;
  background: url(../images/ttl_icon.png) no-repeat center/cover;
  width: 30px;
  height: 30px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mtitle .ja {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Shippori Mincho B1", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  padding-left: 35px;
  display: block;
}
.mtitle.white {
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.black {
  color: #333;
}
.mtitle.black span {
  color: #555;
}
.mtitle.black span:after {
  background-color: #555;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left span:after {
  left: 0;
  transform: none;
}
.mtitle.small {
  padding-bottom: 0 !important;
  border-bottom: 0;
  margin-bottom: 10px !important;
}
.mtitle.small .eng {
  font-size: 2.5rem;
}
.mtitle.small .ja2 {
  font-size: 1.8rem !important;
  padding-left: 30px !important;
}
.mtitle.small .ja2::before {
  width: 23px !important;
  height: 23px !important;
}
.mtitle.type2 {
  margin: 0 auto 100px;
}
.mtitle.type3 {
  border-bottom: 0;
  padding-bottom: 0;
}
.mtitle.type3 .eng {
  font-size: 2.5rem;
}
.mtitle.type3 .ja {
  font-size: 1.4rem;
}
.mtitle.type4 {
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.mtitle.type4 .ja2 {
  font-size: 2.3rem;
  position: relative;
  font-size: 2.3rem;
}
.mtitle.type4 .ja2::before {
  content: "";
  position: absolute;
  background: url(../images/ttl_icon.png) no-repeat center/cover;
  width: 30px;
  height: 30px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.mtitle.type-form {
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .mtitle {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .mtitle .eng {
    font-size: 2.5rem;
  }
  .mtitle .ja {
    font-size: 1.3rem;
  }
  .mtitle.type2 {
    margin: 0 auto 50px;
  }
  .mtitle.type4 .ja2 {
    font-size: 1.4rem;
  }
  .mtitle.type4 .ja2::before {
    content: "";
    position: absolute;
    background: url(../images/ttl_icon.png) no-repeat center/cover;
    width: 30px;
    height: 30px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .mtitle.small .ja2 {
    font-size: 1.4rem !important;
  }
}

.mtitle2 {
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: 0.15em;
  position: relative;
}
.mtitle2 .eng {
  font-size: 1.5rem;
  display: block;
  font-family: "Della Respira", serif;
  font-weight: 400;
  line-height: 4.5;
}
.mtitle2 .ja {
  font-size: 3rem;
  padding-bottom: 20px;
}
@media all and (max-width: 639px) {
  .mtitle2 .ja {
    font-size: 2.2rem;
  }
  .mtitle2 .eng {
    line-height: 3.5;
  }
}

.mtitle3 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  position: absolute;
  min-height: 100px;
  top: 20px;
  left: 75px;
}
.mtitle3 .ja {
  display: block;
  font-size: 2rem;
  border-right: 2px solid #A61E2B;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-weight: 400;
}
.mtitle3 .eng {
  display: block;
  font-family: "Della Respira", serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #A61E2B;
  padding-left: 3px;
}
@media all and (max-width: 639px) {
  .mtitle3 {
    position: initial;
    margin-bottom: 30px;
    min-height: auto;
    writing-mode: initial;
  }
  .mtitle3 .ja {
    font-size: 1.6rem;
    border-right: none;
    border-bottom: 2px solid #A61E2B;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
}

.title01 {
  font-weight: 600;
  text-align: center;
  font-size: 2.6rem;
  margin: -80px auto 30px;
  letter-spacing: 0.2em;
  color: #A61E2B;
}
.title01 span {
  display: block;
  font-family: "Della Respira", serif;
  font-weight: 400;
  font-size: 5rem;
  color: #ffdf2c;
}
@media all and (max-width: 639px) {
  .title01 {
    font-size: 2rem;
    margin-top: -40px;
  }
  .title01 span {
    font-size: 2rem;
  }
}

.title02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
}
@media all and (max-width: 639px) {
  .title02 {
    flex-direction: column;
    text-align: center;
  }
}
.title02 .eng {
  font-size: 7rem;
  font-family: "Della Respira", serif;
  font-weight: 400;
  line-height: 1;
  color: rgba(122, 251, 221, 0.4);
}
@media all and (max-width: 639px) {
  .title02 .eng {
    font-size: 4rem;
  }
}
.title02 .ja {
  font-size: 2.2rem;
  flex: 1;
  margin-left: 40px;
  line-height: 2;
  color: #A61E2B;
}
.title02 .ja p {
  font-size: 1.5rem;
  color: #333;
}
@media all and (max-width: 639px) {
  .title02 .ja {
    font-size: 1.5rem;
    margin: 20px auto 0;
  }
  .title02 .ja p {
    font-size: 1.2rem;
  }
}

.title03 {
  margin: 10px 0 40px;
  text-align: center;
}
.title03.type1 {
  text-align: left;
  margin-bottom: 10px;
}
.title03.type1 span {
  font-size: 2rem;
}
@media all and (max-width: 639px) {
  .title03.type1 span {
    font-size: 1.7rem;
  }
}
.title03 span {
  background: #A61E2B;
  padding: 2px 5px;
  font-weight: 600;
  font-size: 2.1rem;
  color: #fff;
}

.title-big {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  font-weight: 600;
  color: #111;
  font-size: 8rem;
  letter-spacing: 0;
  line-height: 1;
}
.title-big span {
  font-size: 3rem;
  text-align: center;
  font-weight: 600;
  display: block;
}
@media all and (max-width: 639px) {
  .title-big {
    font-size: 3rem;
    line-height: 1;
  }
}
.title-big.type1 {
  margin: -60px 0 30px;
  text-align: right;
}

.mtitle_line {
  font-size: 1.7rem;
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-bottom: 25px;
  color: #494444;
  letter-spacing: 0.2rem;
}
.mtitle_line span {
  display: block;
  font-size: 1.4rem;
  color: #A61E2B;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.6;
  background-image: repeating-linear-gradient(-45deg, #ccc, #ccc 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  backface-visibility: hidden;
}
@media all and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 1.2rem;
  }
}

.mtitle4 {
  font-weight: normal;
  text-align: center;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
}
.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
}
.mtitle4 span:before, .mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 2rem;
  background-color: #A61E2B;
}
.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: #ffdf2c;
}
@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 2rem;
  }
}
@media all and (max-width: 320px) {
  .mtitle4 span:before {
    left: -3px;
  }
  .mtitle4 span:after {
    right: -3px;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  font-weight: 600;
  position: relative;
  border-left: 3px solid #A61E2B;
  margin: 8px 0 15px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}
.mtitle_sub .hissu {
  color: #fff;
  background: #d12636;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
}
.mtitle_sub:before {
  position: absolute;
  left: -3px;
  bottom: 0;
  content: "";
  width: 3px;
  height: 50%;
  background-color: #005740;
}

.mtitle_box {
  background: #35383c;
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  padding: 10px;
  margin-bottom: 25px;
  font-weight: 600;
}
.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
  padding-left: 10px;
}
.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  font-weight: 900;
  display: block;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
@media all and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.5rem;
  }
}
.mtitle_box.type1 {
  background: #005740;
}
.mtitle_box.type2 {
  background: #7afbdd;
}

.mtitle_box2 {
  background: #A61E2B;
  font-size: 2.2rem;
  color: #fff;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.1rem;
  box-shadow: 0 8px 8px rgba(166, 30, 43, 0.2);
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
}
.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}
.mtitle_box2:before {
  background-color: #fff;
  content: "";
  display: block;
  transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}
@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: 12px;
  }
  .mtitle_box2:before {
    width: 215px;
    right: -170px;
  }
}

.mtext1 {
  font-size: 2.2rem;
  line-height: 1.6;
}
@media all and (max-width: 639px) {
  .mtext1 {
    font-size: 1.4rem;
  }
}

.mtext2 {
  font-size: 2.8rem;
  line-height: 1.6;
}
@media all and (max-width: 896px) {
  .mtext2 {
    font-size: 2.2rem;
  }
}
@media all and (max-width: 639px) {
  .mtext2 {
    font-size: 1.6rem;
    padding: 4px 8px;
  }
}

.mtext3 {
  font-size: 1.9rem;
  letter-spacing: 0.15em;
}
@media all and (max-width: 639px) {
  .mtext3 {
    font-size: 1.5rem;
  }
}

.sub_txt {
  padding-left: 1em;
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: normal;
  font-family: "Della Respira", serif;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 5px;
  color: #c6c6c6;
}

.point-txt i {
  padding: 0 10px;
  color: rgba(166, 30, 43, 0.5);
  color: #ddd;
}

/* btn
----------------------------------*/
.btn01 a {
  background: #fefefe;
  text-align: center;
  width: 300px;
  margin: 40px 0 0;
  color: #494444;
  display: block;
  padding: 15px 5px;
  font-weight: 600;
  max-width: 90%;
}
.btn01 a:hover {
  opacity: 0.6;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #ffdf2c;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
.btn01.center a {
  margin: 40px auto 0;
}
@media all and (max-width: 639px) {
  .btn01 a {
    width: 100%;
    max-width: 100%;
  }
}

.btn02 {
  margin: 20px auto 20px;
}
.btn02 a {
  display: block;
  position: relative;
  padding: 15px 30px;
  background-color: #A61E2B;
  line-height: 24px;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  color: #ffffff;
}
.btn02 a i {
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  font-size: 2rem;
}
.btn02 a:hover {
  opacity: 0.6;
}
@media all and (max-width: 639px) {
  .btn02 a {
    font-size: 1.4rem;
  }
}

.btn03 a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  max-width: 200px;
  padding: 10px 5px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  font-size: 1.2rem;
}
.btn03 a .img {
  width: 30px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: all 0.5s ease;
  line-height: 1em;
}
.btn03 a .img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto !important;
}
.btn03 a::before {
  position: absolute;
  bottom: 0px;
  left: 50%;
  content: "";
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  transform: translateX(-50%);
}
.btn03 a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #313131;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.btn03 a:hover {
  opacity: 0.7;
}
.btn03 a:hover::after {
  transform: scale(1, 1);
}
.btn03 a:hover .img {
  transform: translateX(5px);
}
.btn03.type2 a {
  max-width: 300px;
}
.btn03.center a {
  margin-right: auto;
}
.btn03.left a {
  margin-left: 0;
}

/* news
----------------------------------*/
.news .news-inner:not(:last-child) {
  margin-bottom: 40px;
}
@media all and (max-width: 639px) {
  .news .news-inner {
    font-size: 13px;
    padding: 10px 4px;
  }
  .news .news-inner:not(:last-child) {
    margin-bottom: 0;
  }
}
.news a {
  background: #fefefe;
  padding: 30px;
  font-size: 1.4rem;
  font-weight: 600;
  display: block;
}
.news a:hover {
  background: rgba(254, 254, 254, 0.6);
}
.news dt {
  color: #494444;
  border-bottom: 1px solid #c6c6c6;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.news dt .category {
  font-size: 13px;
  background: #005740;
  color: #fff;
  padding: 2px 4px;
  margin-left: 8px;
  font-weight: 400;
}
@media all and (max-width: 639px) {
  .news dt {
    width: 100%;
  }
  .news dt .category {
    font-size: 12px;
  }
}
.news dd {
  color: #494444;
}
.news dd a {
  color: #222;
  background-image: linear-gradient(to right, #A61E2B, #ffdf2c);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 600;
}
.news dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
@media all and (max-width: 639px) {
  .news dd {
    width: 100%;
    margin: 5px 0 0;
  }
}

.news-bl {
  overflow: hidden;
}
.news-bl dt {
  float: left;
  width: 8em;
  padding: 5px;
  line-height: 1.3;
  color: #A61E2B;
  text-align: center;
  border: 1px solid #A61E2B;
  border-radius: 30px;
  background: #fff;
  font-size: 1.3rem;
}
@media all and (max-width: 639px) {
  .news-bl dt {
    font-size: 1.2rem;
  }
}
.news-bl dd {
  padding: 0 0 12px 9.2em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}
.news-bl dd a {
  color: #3a200c;
  background-image: linear-gradient(to right, #A61E2B, #002989);
  padding-bottom: 0.25em;
  background-position: 100% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 600;
}
.news-bl dd a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}
.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: 8px 5px;
  }
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.page-title .inner {
  height: 500px;
  width: 85%;
  position: relative;
  background: url(../images/page-ttl.jpg) no-repeat center 70%/cover;
  border-radius: 0 100vh 100vh 0;
  margin-top: 200px;
}
.page-title .inner:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  border-radius: 0 100vh 100vh 0;
}
.page-title .inner .page-lead {
  color: #fefefe;
  font-size: 2.2rem;
  position: relative;
  transform: translateY(-70px);
  mix-blend-mode: plus-lighter;
  padding-left: 2em;
}
.page-title .inner .page-lead .eng {
  display: block;
  font-family: "Della Respira", serif;
  font-weight: 400;
  font-size: 8rem;
  color: #333;
}
.page-title .inner .page-lead .eng::first-letter {
  color: #A61E2B;
}
.page-title .inner .page-lead .ja {
  font-size: 2.4rem;
  color: #333;
}
@media all and (max-width: 896px) {
  .page-title .inner .page-lead .eng {
    font-size: 6rem;
  }
}
@media all and (max-width: 639px) {
  .page-title .inner .page-lead {
    font-size: 1.5rem;
  }
  .page-title .inner .page-lead .eng {
    font-size: 2.5rem;
  }
}
@media all and (max-width: 896px) {
  .page-title .inner {
    height: 350px;
    width: 90%;
    margin-top: 150px;
  }
  .page-title .inner .page-lead {
    transform: translateY(-55px);
  }
}
@media all and (max-width: 639px) {
  .page-title .inner {
    height: 200px;
    margin-top: 100px;
    margin-bottom: 40px;
  }
  .page-title .inner .page-lead {
    transform: translateY(-25px);
  }
  .page-title .inner .page-lead .ja {
    font-size: 1.4rem;
  }
}

/* background
----------------------------------*/
.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-wall {
  background: url(../images/bg-wall.jpg);
}

.bg-01 {
  background: url(../images/bg-01.jpg) no-repeat center/cover;
}
@media all and (max-width: 639px) {
  .bg-01 {
    padding-top: 70px;
  }
}

.bg-02 {
  background: url(../images/bg-02.jpg) no-repeat center/cover;
}

.bg-gradient {
  position: relative;
  background: rgba(255, 223, 44, 0.3);
  overflow: hidden;
}
.bg-gradient:before {
  content: "";
  position: absolute;
  bottom: -160px;
  left: 0;
  width: 100%;
  height: 320px;
  background: #ffdf2c;
  transform: skewY(4deg);
  opacity: 0.6;
}
.bg-gradient:after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: 0;
  width: 100%;
  height: 260px;
  background: #e2efda;
  transform: skewY(-3deg);
  opacity: 0.6;
}

.bg-ki {
  position: relative;
  overflow: hidden;
}
.bg-ki:before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 400px;
  height: 260px;
  background: url(../images/s.png) no-repeat 50%/contain;
  opacity: 0.5;
}
@media all and (max-width: 896px) {
  .bg-ki:before {
    display: none;
  }
}
.bg-ki:after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  background: url(../images/g.png) no-repeat 50%/contain;
  width: 400px;
  height: 260px;
  opacity: 0.5;
}
@media all and (max-width: 896px) {
  .bg-ki:after {
    display: none;
  }
}

.bg-pattern {
  background: url(../images/back01.gif);
  background-size: 400px;
}

.bg-base {
  position: relative;
}
.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, #fefefe, #A61E2B);
  background: #A61E2B;
  z-index: -2;
}
.bg-base.type1 {
  position: relative;
}
.bg-base.type1:before {
  background-image: linear-gradient(to right, #c6c6c6, #005740);
  opacity: 0.9;
}
.bg-base.type2 .inner {
  position: relative;
  z-index: 3;
}
.bg-base.type2:before {
  position: absolute;
  content: "";
  left: 0;
  top: auto;
  bottom: 0;
  width: 80%;
  height: 70%;
  background: #A61E2B;
  opacity: 0.1;
}
.bg-green {
  background: #e2efda;
}

.bg-gray {
  position: relative;
  background: #f4f4f4;
  margin: 100px 0;
}
.bg-gray.type1 {
  background: #c6c6c6;
}
.bg-gray.bg-half-bottom {
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #c6c6c6 50.1%, #c6c6c6 100%);
}
.bg-gray.bg-half-upper {
  background: transparent;
  background-image: linear-gradient(to bottom, #f4f4f4 0%, #f4f4f4 50%, transparent 50.1%, transparent 100%);
}

.bg-gray2 {
  background-image: linear-gradient(to bottom, transparent, #f4f4f4);
}

.bg-blue {
  background: rgba(0, 41, 137, 0.2);
}
.bg-blue.bg-half {
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #0038bc 50.1%, #0038bc 100%);
}

.bg-beige {
  background: #F8F8F2;
}
.bg-beige.type1 {
  background: transparent;
  position: relative;
}
.bg-beige.type1:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #F8F8F2;
  z-index: -1;
}
.bg-beige.type-blog {
  margin: 0 auto -100px;
}
@media all and (max-width: 896px) {
  .bg-beige {
    margin: 60px auto;
  }
}
@media all and (max-width: 639px) {
  .bg-beige {
    margin: 30px auto;
  }
  .bg-beige.type-blog {
    margin: 0 auto -30px;
  }
}

.bg-beige2 {
  background: rgba(202, 199, 172, 0.4);
}

.bg-base2 {
  background: repeating-linear-gradient(45deg, rgba(166, 30, 43, 0.1) 0, rgba(166, 30, 43, 0.1) 20px, #fefefe 20px, #fefefe 40px);
}

/* tbl
----------------------------------*/
.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ddd;
}
.tbl th {
  color: #A61E2B;
  background: #f4f4f4;
  width: 25%;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl .cell01 {
  width: 25%;
}
@media all and (max-width: 639px) {
  .tbl th {
    width: 35%;
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 10px;
  }
}

.tbl_new {
  width: 100%;
}
.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 15px 10px;
}
.tbl_new tr th {
  font-weight: 600;
  width: 20%;
  color: #A61E2B;
  text-align: left;
  padding-left: 30px;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .tbl_new tr th {
    width: 25%;
    padding-left: 10px;
  }
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: #f0f0f0;
}

.tbl-border {
  width: 100%;
}
.tbl-border th,
.tbl-border td {
  padding: 10px 5px;
  border-bottom: 1px solid #e3e5e4;
  vertical-align: middle;
}
@media all and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border th {
  width: 18%;
  text-align: left;
  font-weight: 600;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media all and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.price {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #A61E2B;
}
@media all and (max-width: 639px) {
  .price {
    font-size: 1.4rem;
  }
}

.price2 {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}
.company th,
.company td {
  padding: 10px 10px;
  vertical-align: middle;
}
.company th {
  text-align: left;
  width: 25%;
  position: relative;
  background: #e2efda;
  color: #fff;
  font-weight: 600;
}
.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: #e2efda;
  margin-top: -10px;
}
.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.tbl0 {
  width: 100%;
}
.tbl0 th,
.tbl0 td {
  padding: 3px 5px;
  border: 0;
}
.tbl0 th {
  padding-left: 0;
  font-weight: normal;
  background: none;
  width: 25%;
  color: #111;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
@media all and (max-width: 639px) {
  .tbl0 th {
    width: 40%;
  }
}

.tbl_timeline {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .tbl_timeline {
    width: 95%;
  }
}
.tbl_timeline .timeline_item {
  padding: 3em 2em 2em;
  position: relative;
  color: rgba(0, 0, 0, 0.7);
  border-left: 2px solid rgba(0, 0, 0, 0.3);
}
.tbl_timeline .timeline_item p {
  font-size: 1.4rem;
}
.tbl_timeline .timeline_item::before {
  content: attr(data_ttl);
  position: absolute;
  left: 2em;
  font-weight: bold;
  top: 1em;
  display: block;
  font-weight: 700;
  font-size: 1.6rem;
  color: #A61E2B;
}
.tbl_timeline .timeline_item::after {
  width: 10px;
  height: 10px;
  display: block;
  top: 1em;
  position: absolute;
  left: -6px;
  border-radius: 10px;
  content: "";
  border: 2px solid rgba(0, 0, 0, 0.3);
  background: white;
}
.tbl_timeline .timeline_item:last-child {
  -o-border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0)) 1 100%;
     border-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0)) 1 100%;
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 25.25%;
  height: 0;
  overflow: hidden;
  margin: 100px 0;
}
@media all and (max-width: 896px) {
  .ggmap {
    margin-top: 60px;
  }
}
@media all and (max-width: 639px) {
  .ggmap {
    margin-top: 30px;
    margin-bottom: 0;
  }
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.ggmap2 {
  position: relative;
  padding-bottom: 34.25%;
  height: 0;
  overflow: hidden;
}
.ggmap2 iframe,
.ggmap2 object,
.ggmap2 embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}
@media all and (max-width: 639px) {
  .ggmap2 {
    padding-bottom: 46.25%;
  }
}

/* list
----------------------------------*/
.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 5px;
  border-bottom: 1px dotted #cccccc;
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list-policy {
  background: rgba(255, 255, 255, 0.7);
  padding: 25px;
  margin-bottom: 40px;
}
.list-policy li {
  font-family: "Shippori Mincho B1", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2rem;
  padding-bottom: 5px;
  margin-bottom: 6px;
  font-weight: 600;
}
.list-policy li .num {
  color: #005740;
  font-family: "Della Respira", serif;
  font-size: 4rem;
  padding-right: 20px;
}
@media all and (max-width: 639px) {
  .list-policy {
    padding: 15px;
  }
  .list-policy li {
    font-size: 1.4rem;
  }
}

.list-policy2 {
  width: 90%;
  margin: 0 auto;
  justify-content: center;
}
.list-policy2 > li {
  display: flex;
  flex-direction: column;
  background: #F8F8F2;
  padding: 30px;
}
.list-policy2 > li .num {
  margin: 0 auto;
  width: 50px;
  margin-top: -50px;
  margin-bottom: 20px;
}
.list-policy2 > li .num img {
  width: 100%;
}
.list-policy2 > li .ja {
  flex: 1;
  font-size: 1.8rem;
}
@media all and (max-width: 896px) {
  .list-policy2 {
    width: 100%;
  }
  .list-policy2 > li {
    width: 46% !important;
  }
}
@media all and (max-width: 639px) {
  .list-policy2 > li {
    margin: 0 auto !important;
    width: 100% !important;
  }
  .list-policy2 > li:not(:last-child) {
    margin: 0 auto 40px !important;
  }
  .list-policy2 > li .num img {
    width: 70%;
  }
  .list-policy2 > li .ja {
    font-size: 1.2rem;
  }
}

.list_check.type1 {
  display: flex;
  flex-wrap: wrap;
}
.list_check.type1 li {
  background: #333;
  color: #fff;
  padding: 12px 8px;
  width: 48%;
}
.list_check.type1 li:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check li {
  padding: 4px;
  padding-left: 30px;
  font-weight: 600;
  font-family: "Shippori Mincho B1", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 600;
  font-size: 1.1em;
  position: relative;
  margin-bottom: 5px;
}
.list_check li span {
  font-weight: normal;
  font-size: 0.9em;
  display: block;
  padding: 10px;
  background: rgba(248, 248, 242, 0.2);
  margin-top: 10px;
}
.list_check li a {
  color: #A61E2B;
  border-bottom: 1px dotted #A61E2B;
}
.list_check li:before {
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
  width: 10px;
  height: 2px;
  background: #005740;
}
@media all and (max-width: 639px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.3rem;
  }
}

.list_check2 li {
  padding: 8px;
  font-weight: 600;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #A61E2B;
}
.list_check2 li:not(:last-child) {
  margin-bottom: 4px;
  border-bottom: 1px solid #ccc;
}

.list-inline2 {
  text-align: center;
}
.list-inline2 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #c6c6c6;
  font-weight: 600;
  border-radius: 30px;
}
.list-inline2 li:not(:last-child) {
  margin-right: 8px;
}

.list-inline li {
  display: inline-block;
  padding: 3px;
}
.list-inline li:not(:last-of-type):after {
  content: "/";
  margin: 0 5px;
  color: #A61E2B;
  font-weight: normal;
}
@media all and (max-width: 639px) {
  .list-inline li {
    display: block;
    padding: 0;
  }
  .list-inline li:before {
    content: "-";
    color: #A61E2B;
  }
  .list-inline li:not(:last-of-type):after {
    display: none;
  }
}

.ol-list {
  counter-reset: number;
  list-style: none;
  padding: 5px;
}
.ol-list.type1 {
  display: flex;
  flex-wrap: wrap;
}
.ol-list.type1 > li {
  width: 48%;
}
.ol-list.type1 > li:nth-child(2n) {
  margin-left: 4%;
}
.ol-list li {
  line-height: 2;
  color: #3a200c;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-weight: 600;
}
.ol-list li span {
  font-weight: normal;
  display: block;
  padding: 10px;
  line-height: 1.6;
}
.ol-list li:before {
  counter-increment: number;
  content: counter(number);
  background: rgba(166, 30, 43, 0.6);
  display: inline-block;
  width: 2em;
  height: 2em;
  text-align: center;
  font-family: "Shippori Mincho B1", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 2rem;
  color: #222;
  margin-right: 10px;
  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_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: 5px;
  color: #A61E2B;
}

.list-btn {
  display: flex;
  flex-wrap: wrap;
}
.list-btn.type1 {
  justify-content: center;
}
.list-btn li {
  width: 32%;
  margin: 0 1.995% 10px 0;
}
.list-btn li a {
  display: block;
  background: #002989;
  font-weight: 600;
  padding: 20px 3px;
  text-align: center;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  font-size: 1.8rem;
  letter-spacing: 0;
  color: #fff;
}
.list-btn li a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f358";
  font-weight: 900;
  margin-left: 5px;
}
@media all and (max-width: 896px) {
  .list-btn li a {
    font-size: 1.5rem;
  }
}
.list-btn li:nth-child(even) a {
  background: #005740;
}
.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;
  }
}

.menu_link_list li a {
  border-radius: 100%;
  aspect-ratio: 1/1;
  display: block;
  width: 90%;
  position: relative;
}
.menu_link_list li a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #A61E2B;
  opacity: 0.2;
  border-radius: 100%;
  transition: all 0.5s ease;
}
.menu_link_list li a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  z-index: -1;
  filter: blur(3px);
  transition: all 0.5s ease;
}
.menu_link_list li a:hover::after {
  opacity: 0;
}
.menu_link_list li a:hover::before {
  opacity: 1;
}
.menu_link_list li a .ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-family: "Della Respira", serif;
  color: #fff;
  text-shadow: #494444 1px 0 10px;
}
.menu_link_list li .ttl_eng {
  margin-top: 60px;
}
.menu_link_list li:nth-child(2) a::after {
  background: url(../images/menu01.jpg);
}
.menu_link_list li:nth-child(3) a::after {
  background: url(../images/menu02.jpg);
}
.menu_link_list li:nth-child(4) a::after {
  background: url(../images/menu03.jpg);
}
.menu_link_list li:nth-child(5) a::after {
  background: url(../images/menu04.jpg);
}
.menu_link_list li:nth-child(6) a::after {
  background: url(../images/menu05.jpg);
}
.menu_link_list li:nth-child(7) a::after {
  background: url(../images/menu06.jpg);
}
.menu_link_list li:nth-child(8) a::after {
  background: url(../images/menu07.jpg);
}
@media all and (max-width: 896px) {
  .menu_link_list {
    justify-content: center;
  }
  .menu_link_list > li {
    width: 31% !important;
    text-align: center;
  }
  .menu_link_list > li a {
    margin: 0 auto;
  }
  .menu_link_list > li:first-child {
    width: 100% !important;
  }
  .menu_link_list > li:first-child .ttl_eng {
    margin-top: 0;
  }
}
@media all and (max-width: 639px) {
  .menu_link_list > li {
    width: 48% !important;
    text-align: center;
  }
  .menu_link_list > li a .ttl {
    font-size: 2rem;
  }
}

.menu-wrapper {
  display: flex;
  margin-bottom: 60px;
  width: 100%;
  justify-content: space-between;
}
.menu-wrapper .img {
  height: 350px;
  width: 25%;
  margin-right: 40px;
}
.menu-wrapper .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu-wrapper .inner {
  order: 1;
  width: 70%;
}
.menu-wrapper.last {
  margin-bottom: 0;
}
.menu-wrapper .list_sub_read {
  position: relative;
  margin-bottom: 20px;
}
.menu-wrapper .list_sub_read span {
  display: table;
  background: #F8F8F2;
  background: #fefefe;
  padding-right: 30px;
  z-index: 2;
  position: relative;
  font-family: "Shippori Mincho B1", "YakuHanMP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #A61E2B;
}
.menu-wrapper .list_sub_read .eng {
  font-family: "Della Respira", serif;
}
.menu-wrapper .list_sub_read::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #A61E2B;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
@media all and (max-width: 639px) {
  .menu-wrapper .list_sub_read span {
    font-size: 1.5rem;
  }
}
@media all and (max-width: 1100px) {
  .menu-wrapper .img {
    height: 250px;
  }
}
@media all and (max-width: 896px) {
  .menu-wrapper {
    flex-direction: column;
  }
  .menu-wrapper .img {
    height: 250px;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .menu-wrapper .img.type1 {
   height: auto;
  }

  .menu-wrapper .img img {
    -o-object-position: 50% 20%;
       object-position: 50% 20%;
  }
  .menu-wrapper .inner {
    width: 100%;
  }

  .menu-wrapper.type0 .img {
  height: initial;
}
}
@media all and (max-width: 639px) {
  .menu-wrapper {
    margin-bottom: 40px;
  }
}

.menu-wrapper2 {
  margin-bottom: 60px;
}
.menu-wrapper2.last {
  margin-bottom: 0;
}
.menu-wrapper2 .inner {
  display: flex;
  justify-content: center;
}
.menu-wrapper2 .inner .menu_left {
  width: 300px;
  margin-right: 40px;
}
.menu-wrapper2 .inner .menu_left img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu-wrapper2 .inner .menu_right {
  flex: 1;
}
@media all and (max-width: 1100px) {
  .menu-wrapper2 .inner {
    flex-wrap: wrap;
  }
  .menu-wrapper2 .inner .menu_left,
  .menu-wrapper2 .inner .menu_right {
    width: 100%;
  }
  .menu-wrapper2 .inner .menu_left {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.menu-wrapper3 {
  width: 90%;
  margin: 0 auto;
}
.menu-wrapper3 > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.menu-wrapper3 > ul > li {
  width: 30%;
}
.menu-wrapper3 > ul > li .img {
  margin-bottom: 10px;
}
.menu-wrapper3 > ul > li .sub_ttl {
  font-weight: bold;
  margin-bottom: 10px;
  height: 4em;
}
.menu-wrapper3 > ul > li .ttl {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
@media all and (max-width: 1100px) {
  .menu-wrapper3 {
    width: 100%;
  }
}
@media all and (max-width: 896px) {
  .menu-wrapper3 > ul > li {
    width: 47%;
  }
  .menu-wrapper3 > ul > li .right {
    white-space: nowrap;
  }
}
@media all and (max-width: 639px) {
  .menu-wrapper3 > ul > li {
    width: 100%;
  }
  .menu-wrapper3 > ul > li .img img {
    height: 250px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.menu-list {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.menu-list.type1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.menu-list.type1 li {
  width: 48%;
  margin: 5px auto;
}
.menu-list > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px;
}
.menu-list > li:not(:last-child) {
  margin-bottom: 5px;
}
.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 1em;
}
@media all and (max-width: 639px) {
  .menu-list > li:before {
    margin: 0 5px;
  }
}
.menu-list > li .info {
  flex-basis: 100%;
  font-size: 80%;
  color: #3a200c;
  margin-top: 5px;
  padding: 5px;
}
.menu-list > li .info.capt {
  border-radius: 2px;
}
.menu-list > li .info.capt2 {
  border-radius: 2px;
}
.menu-list > li .left {
  order: -1;
  max-width: 70%;
  line-height: 1.3;
  position: relative;
}
.menu-list > li .left span {
  font-size: 85%;
}
.menu-list > li .left:after {
  content: ".";
  display: inline-block;
  width: 0;
  color: transparent;
  pointer-events: none;
}
@media all and (max-width: 639px) {
  .menu-list > li .left {
    letter-spacing: 0.05em;
  }
}
.menu-list > li .right {
  max-width: 30%;
  text-align: right;
  font-family: "Lato", sans-serif;
  font-size: 2rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.menu-list > li .right span {
  font-family: "Zen Kaku Gothic Antique", "YakuHanJP", Lato, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
}
@media all and (max-width: 639px) {
  .menu-list > li .right {
    font-size: 1.5rem;
  }
  .menu-list > li .right span {
    font-size: 1rem;
  }
}
@media all and (max-width: 639px) {
  .menu-list > li .right {
    flex-direction: column;
    white-space: nowrap;
  }
  .menu-list > li .right.type2 {
    padding-left: 40px;
  }
}

.bnr_box > li a {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #005740;
  padding: 20px;
}
.bnr_box > li a:hover {
  opacity: 0.6;
}
.bnr_box > li a.no_link {
  pointer-events: none;
}

/* blog
----------------------------------*/
.top-blog .pages {
  display: none;
}

#main .blog-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 4%;
}
@media all and (max-width: 639px) {
  #main .blog-wrap {
    grid-template-columns: 1fr;
  }
}

.blog-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 2.5%;
  margin-bottom: 40px;
}
@media all and (max-width: 896px) {
  .blog-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 2.5%;
  }
}
@media all and (max-width: 639px) {
  .blog-wrap {
    margin-bottom: 20px;
  }
}
.blog-wrap li {
  position: relative;
}
.blog-wrap li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
  overflow: hidden;
}
.blog-wrap li a:hover .morebtn {
  border-bottom-color: #005740;
  color: #005740;
}
.blog-wrap li a:hover .blog-img img {
  transform: scale(1.2);
}
.blog-wrap li .blog-date {
  display: inline-block;
  color: #494444;
  font-size: 1.2rem;
  background: transparent;
}
@media all and (max-width: 639px) {
  .blog-wrap li .blog-date {
    font-size: 12px;
  }
}
.blog-wrap li .blog-img {
  overflow: hidden;
  position: relative;
  height: 200px;
}
.blog-wrap li .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s ease-in all;
  -o-object-position: center top;
     object-position: center top;
}
.blog-wrap li .blog-img figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: #A61E2B;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  font-weight: 600;
  letter-spacing: 0;
}
@media all and (max-width: 1100px) {
  .blog-wrap li .blog-img {
    height: 230px;
  }
}
@media all and (max-width: 639px) {
  .blog-wrap li .blog-img {
    height: 150px;
  }
}
.blog-wrap li .blog-detail {
  padding: 0;
}
@media all and (max-width: 639px) {
  .blog-wrap li .blog-detail {
    padding: 10px;
  }
}
.blog-wrap li .blog-title {
  overflow: hidden;
  line-height: 1.5;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  color: #333;
  margin: 5px 0 0;
}
@media all and (max-width: 639px) {
  .blog-wrap li .blog-title {
    font-size: 1.2rem;
    margin: 0;
  }
}
.blog-wrap li .blog-txt {
  font-size: 1.3rem;
  margin-top: 8px;
  letter-spacing: 0;
  margin-bottom: 15px;
  color: #222;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  /*IE対策*/
  line-height: 1.8em;
  max-height: 3.6em;
}
@media all and (max-width: 639px) {
  .blog-wrap li .blog-txt {
    font-size: 12px;
    margin-bottom: 25px;
  }
}
.blog-wrap li .morebtn {
  position: absolute;
  right: 10px;
  bottom: 0;
  color: #A61E2B;
  border-bottom: 1px solid #A61E2B;
  font-size: 12px;
  font-weight: 700;
  transition: 0.2s ease-in all;
  letter-spacing: 0;
}
@media all and (max-width: 639px) {
  .blog-wrap li .morebtn {
    font-size: 11px;
  }
}
.blog-wrap.type1 {
  display: block;
}
.blog-wrap.type1 > li {
  width: 100%;
}
.blog-wrap.type1 > li:not(:last-of-type) {
  margin-bottom: 20px;
}
.blog-wrap.type1 > li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog-wrap.type1 > li a .blog-img {
  width: 250px;
}
@media all and (max-width: 639px) {
  .blog-wrap.type1 > li a .blog-img {
    width: 80px;
  }
}
.blog-wrap.type1 > li a .blog-detail {
  width: calc(100% - 200px);
  padding: 15px;
}
@media all and (max-width: 639px) {
  .blog-wrap.type1 > li a .blog-detail {
    width: calc(100% - 80px);
    padding: 15px 15px 30px;
  }
}
.blog-wrap.type2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 40px;
}
@media all and (max-width: 639px) {
  .blog-wrap.type2 {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 30px;
  }
}

.blog-img {
  width: 100%;
  height: 430px;
  overflow: hidden;
  box-sizing: border-box;
}
.blog-img.type1 {
  height: 300px;
}
.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-detail {
  padding: 20px;
}

.blog-category {
  display: inline-block;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  color: #251408;
  font-size: 12px;
  letter-spacing: 0;
}

.blog-date {
  background: #F8F8F2;
  line-height: 1.3;
  text-align: center;
  display: inline-block;
  color: #3a200c;
  border-radius: 30px;
  font-size: 12px;
}

.blog-page-detail {
  padding-bottom: 3px;
  border-bottom: 2px solid #f4f4f4;
  margin-bottom: 50px;
  color: #c6c6c6;
}
@media all and (max-width: 639px) {
  .blog-page-detail {
    margin-bottom: 20px;
  }
}

.page_prev {
  text-align: center;
  padding: 30px 0 !important;
}
.page_prev a {
  color: #c6c6c6 !important;
}

.blog-date2 {
  color: #3a200c;
  font-size: 0.9em;
  margin-bottom: 50px;
  margin-right: 5px;
}

.blog-title {
  font-weight: normal;
  line-height: 1.3;
  margin: 15px 0 30px;
  font-size: 2rem;
}
@media all and (max-width: 639px) {
  .blog-title {
    font-size: 1.3rem;
  }
}

.more {
  position: absolute;
  font-size: 1.8rem;
  border: 0.9px solid #ccc;
  color: #ccc;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 30px;
  display: block;
  right: 0;
  bottom: -10px;
  font-weight: 700;
  border-radius: 0 0 20px 0;
  transition: all 0.2s ease-in;
}

.blogtxt {
  line-height: 1.5;
  color: #333;
  font-size: 13px;
}

.blogtitle {
  color: #A61E2B;
  margin-bottom: 5px;
  font-size: 1.4rem;
  line-height: 1.4;
}
@media all and (max-width: 639px) {
  .blogtitle {
    font-size: 1.2rem;
  }
}

.blog-info {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-top: 1px solid #eee;
  padding: 8px;
  text-align: right;
  font-size: 1.4rem;
}

.blog-category {
  background: #A61E2B;
  color: #fff;
  padding: 2px 4px;
  margin-right: 8px;
}

.blogtime {
  font-family: "Della Respira", serif;
  font-weight: 400;
  color: #005740;
}
@media all and (max-width: 639px) {
  .blogtime {
    font-size: 12px;
  }
}

.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: 900;
  margin-right: 5px;
}
.category_nav li a:hover {
  background: #f4f4f4;
}
.category_nav li:last-child a {
  border-bottom: none;
}

.works-img img {
  margin: 5px;
}

/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1;
}

.ttl_eng {
  mix-blend-mode: screen;
}
.ttl_eng img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 150px !important;
}
.ttl_eng.ttl_right {
  text-align: right;
}
.ttl_eng.ttl_right p {
  padding-right: 1.5em;
}
@media all and (max-width: 896px) {
  .ttl_eng img {
    height: 100px !important;
  }
}
@media all and (max-width: 639px) {
  .ttl_eng img {
    height: 70px !important;
  }
}

.al-c {
  align-items: center;
}

.al-end {
  align-items: flex-end;
}

.flex_img {
  display: flex;
  width: 100%;
  margin-top: 20px;
}
.flex_img img {
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.flex_img img {
  margin-right: 20px;
}
@media all and (max-width: 639px) {
  .flex_img img {
    height: 250px;
    width: 100%;
    margin-top: 20px;
  }

  .flex_img {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .flex_img img {
    margin-right: 0;
  }
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

@media all and (max-width: 639px) {
  .pcbr {
    display: none;
  }
}

.color1 {
  color: #A61E2B;
}

.color2 {
  color: #005740;
}

.relative {
  position: relative;
}

.name {
  width: 200px;
  margin: -20px auto 20px;
  position: relative;
  z-index: 2;
  background: #fff;
  color: #3a200c;
  font-weight: 600;
  text-align: center;
  padding: 15px 6px;
  box-shadow: 0 0 8px rgba(58, 32, 12, 0.05);
  line-height: 1.5;
  font-size: 1.6rem;
}
.name .small {
  font-size: 0.8em;
}

.num {
  font-weight: 600;
}
.num a {
  color: #A61E2B;
  font-size: 2.8rem;
  text-align: center;
  margin-left: 5px;
}
@media all and (max-width: 639px) {
  .num a {
    font-size: 2rem;
  }
}
.num a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.num a:hover {
  color: #f66009;
}

.telbox {
  max-width: 600px;
  margin: 0 auto 20px;
  padding: 20px;
  background: #333;
  text-align: center;
}
.telbox .inner {
  background: #fff;
  padding: 10px;
}

.txt-link {
  font-weight: 600;
  text-decoration: underline;
}
.txt-link:hover {
  text-decoration: none;
}

.telbnr a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 30px auto 60px;
  border-bottom: 1px solid #c6c6c6;
  border-top: 1px solid #c6c6c6;
  padding: 20px 0;
  color: #333;
  gap: 40px;
}
.telbnr a p:last-child {
  font-size: 3rem;
  color: #494444;
}
@media all and (max-width: 639px) {
  .telbnr a p:last-child {
    font-size: 2.2rem;
  }
}
.telbnr a:hover {
  background: rgba(248, 248, 242, 0.5);
}
.telbnr li {
  width: 47%;
  border: 3px solid #ccc;
  padding: 10px 10px;
  text-align: center;
  border-radius: 50px;
}
.telbnr li.telbnr-mail a {
  font-size: 2rem;
  padding-top: 5px;
}
.telbnr li.telbnr-mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
}
@media all and (max-width: 639px) {
  .telbnr li.telbnr-mail a {
    font-size: 1.4rem;
    padding: 0;
  }
}
.telbnr li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  color: #A61E2B;
}
.telbnr li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  font-weight: 900;
  margin-right: 5px;
}
.telbnr li a:hover {
  color: #A61E2B;
}
@media all and (max-width: 639px) {
  .telbnr {
    max-width: 90%;
    margin: 0 auto;
  }
  .telbnr a {
    gap: 10px;
    flex-direction: column;
  }
  .telbnr li {
    width: 100%;
    margin: 0 auto 30px;
  }
  .telbnr li a {
    font-size: 2rem;
  }
}

.flex-box {
  display: flex;
  justify-content: space-between;
}
.flex-box .left {
  width: 25%;
}
.flex-box .right {
  width: 70%;
}
@media all and (max-width: 896px) {
  .flex-box {
    flex-direction: column;
  }
  .flex-box .inner {
    margin-bottom: 60px;
  }
  .flex-box .left,
  .flex-box .right {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .flex-box .inner {
    margin-bottom: 30px;
  }
}
.flex-box.type-b {
  border-bottom: 1px solid #e3e5e4;
}
.flex-box.type-b p {
  padding: 20px;
}
@media all and (max-width: 896px) {
  .flex-box.type-b {
    flex-direction: row;
  }
  .flex-box.type-b .left {
    width: 20%;
  }
  .flex-box.type-b .right {
    width: 78%;
  }
}
@media all and (max-width: 639px) {
  .flex-box.type-b .left {
    width: 25%;
  }
  .flex-box.type-b p {
    padding: 15px;
  }
}
.flex-box.type-st .left .inner {
  position: sticky;
  top: 80px;
}

.side-navi {
  margin-bottom: 60px;
}
.side-navi > li a {
  color: #494444;
  display: block;
}
.side-navi > li a i {
  padding-right: 20px;
  color: #c6c6c6;
}
.side-navi > li a:hover {
  color: #A61E2B;
}
.side-navi > li:not(:last-child) {
  margin-bottom: 30px;
}
@media all and (max-width: 896px) {
  .side-navi {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}
@media all and (max-width: 639px) {
  .side-navi {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .side-navi > li {
    width: 40%;
  }
  .side-navi > li:not(:last-child) {
    margin-bottom: 10px;
  }
  .side-navi.type2 {
    width: 80%;
    margin: 0 auto;
  }
  .side-navi.type2 > li {
    width: 100%;
  }
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1200px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
}
.breadcrumb li {
  display: inline;
  color: #999;
}
.breadcrumb li a {
  color: #ffdf2c;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media all and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* form
----------------------------------*/
.form {
  margin: 0 auto;
  width: 90%;
}
.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
  font-weight: 600;
}
.form dl dt span {
  color: #fff;
  background: #A61E2B;
  padding: 5px 8px;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 20px;
  position: relative;
  top: -2px;
}
.form dl dt span.nini {
  background: #ffdf2c;
  color: #3a200c;
}
.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;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #f0f0f0;
}
.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 .textarea04 {
  width: 20%;
  margin-right: 1%;
}
.form button {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
  border: 1px solid #A61E2B;
  font-weight: 600;
  padding: 12px 5px;
  margin: 0 auto;
  width: 250px;
  background: #A61E2B;
  border-radius: 25px;
}
.form button:hover {
  background: #fff;
  color: #A61E2B;
}
.form button:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
.form .select-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.form .select-group p {
  margin: 0 5px;
}
@media all and (max-width: 639px) {
  .form .select-group .select-wrap {
    margin-top: 8px;
  }
}
.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;
}
.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;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  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: #A61E2B;
}
.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: #A61E2B;
  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 #A61E2B;
  border-bottom: 3px solid #A61E2B;
  transform: rotate(45deg);
  z-index: 1;
}
@media all and (max-width: 639px) {
  .form label.checkbox_text:after {
    margin-top: -18px;
  }
}
.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;
  }
}

.fm-txt {
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 5px;
}

.thanks {
  padding: 40px;
  border: 3px solid #fefefe;
  background: #F8F8F2;
  margin: 0 auto;
}
@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: 30px;
  background: rgba(255, 255, 255, 0.4);
}

.mtitle_small {
  position: relative;
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #111;
  font-weight: 600;
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
}
.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media all and (max-width: 639px) {
  .mtitle_small {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.mtitle_small2 {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
}
.mtitle_small2:before {
  content: "";
  background-color: #A61E2B;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

/* gallery
----------------------------------*/
.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery li {
  width: 24%;
  margin: 0 1.3333333333% 25px 0;
}
.gallery li:nth-child(4n) {
  margin-right: 0;
}
.gallery li a {
  background: rgba(248, 248, 242, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 200px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li p {
  font-size: 14px;
  margin: 3px 0 10px;
}

.gallery_ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-bottom: -4%;
}
@media all and (max-width: 639px) {
  .gallery_ul {
    margin-left: auto;
    margin-right: auto;
  }
}
.gallery_ul > li {
  width: 31.33%;
  margin-left: 2%;
  margin-bottom: 4%;
  font-weight: 600;
}
.gallery_ul > li .photobox-wrap {
  width: 100%;
  height: 220px;
  text-align: center;
  overflow: hidden;
  background: #aaa;
  margin-bottom: 10px;
}
.gallery_ul > li .photobox-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit:contain;";
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media all and (max-width: 896px) {
  .gallery_ul > li {
    width: 48%;
  }
}
@media all and (max-width: 639px) {
  .gallery_ul > li {
    width: 85%;
    margin: 0 auto 30px;
  }
  .gallery_ul > li .photobox-wrap {
    height: 180px;
  }
}

@media all and (max-width: 896px) {
  .gallery li {
    width: 48%;
    margin: 0 1% 20px;
  }
  .gallery li:nth-child(2n) {
    margin-right: 0;
  }
  .gallery li a {
    height: 120px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
/*slide_list*/
.slide_wrapper {
  position: relative;
  padding: 60px 0 0;
  display: flex;
  justify-content: space-between;
}
.slide_wrapper .ttl-box {
  width: 25%;
}
.slide_wrapper .ttl-box p {
  margin-bottom: 60px;
}
.slide_wrapper .inner {
  width: 70%;
}
.slide_wrapper::before {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: -10%;
  right: -7%;
  transform: scale(-1, 1);
  width: 300px;
  height: 225px;
}
@media all and (max-width: 896px) {
  .slide_wrapper {
    flex-direction: column;
  }
  .slide_wrapper::before {
    width: 150px;
    height: 187px;
    bottom: -25%;
  }
  .slide_wrapper .ttl-box {
    width: 100%;
    margin-bottom: 30px;
  }
  .slide_wrapper .inner {
    width: 100%;
  }
}
@media all and (max-width: 639px) {
  .slide_wrapper {
    padding: 0 !important;
  }
  .slide_wrapper .ttl-box p {
    margin-bottom: 30px;
  }
}

.slide_wrapper {
  position: relative;
  padding: 60px 0 0;
}
.slide_wrapper::before {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: -10%;
  right: -7%;
  transform: scale(-1, 1);
  width: 300px;
  height: 225px;
  background: url(../images/bg-img02.png) no-repeat center/contain;
}
@media all and (max-width: 896px) {
  .slide_wrapper::before {
    width: 150px;
    height: 187px;
    bottom: -25%;
  }
}

.slide_list,
.slide_list2 {
  gap: 30px;
  text-align: center;
}
.slide_list img,
.slide_list2 img {
  height: 400px;
  width: 400px;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(0.4);
  transition: filter 0.2s ease-in;
}
.slide_list img:hover,
.slide_list2 img:hover {
  filter: grayscale(0);
}
@media all and (max-width: 1100px) {
  .slide_list img,
  .slide_list2 img {
    height: 300px;
    width: 300px;
  }
}
@media all and (max-width: 639px) {
  .slide_list img,
  .slide_list2 img {
    height: 250px;
    width: 250px;
  }
}

.slide_list2 {
  margin-top: 20px;
  gap: 0;
}
.slide_list2 img {
  border-radius: 0;
  width: 1000px;
  height: 600px;
  filter: brightness(0.5);
}
.slide_list2 img:hover {
  filter: brightness(0.5);
}
@media all and (max-width: 896px) {
  .slide_list2 img {
    width: 800px;
    height: 450px;
  }
}
@media all and (max-width: 639px) {
  .slide_list2 img {
    width: 700px;
    height: 350px;
  }
}

.slide_wrapper {
  position: relative;
}
.slide_wrapper .slide_txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide_wrapper .slide_txt span {
  color: #fefefe;
  display: block;
  text-align: center;
  font-family: "Della Respira", serif;
}
.slide_wrapper .slide_txt span:first-child {
  font-size: 5rem;
}
@media all and (max-width: 896px) {
  .slide_wrapper .slide_txt span:first-child {
    font-size: 3rem;
  }
}

/* list
----------------------------------*/
.list2 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1500px;
  margin-top: -50px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 639px) {
  .list2 {
    margin-top: -25px;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
}
.list2 > li,
.list2 .child {
  width: 48%;
  margin-top: 50px;
}
.list2 > li:nth-child(2n),
.list2 .child:nth-child(2n) {
  margin-left: 4%;
}
@media all and (max-width: 639px) {
  .list2 > li:nth-child(2n),
  .list2 .child:nth-child(2n) {
    margin-left: auto;
  }
}
@media all and (max-width: 639px) {
  .list2 > li,
  .list2 .child {
    width: 100%;
    margin: 25px auto 0;
  }
}
.list2 .child01 {
  width: 35%;
}
.list2 .child02 {
  width: 60%;
}
.list2 .child03 {
  width: 45%;
}
.list2 .child04 {
  width: 50%;
}
@media all and (max-width: 639px) {
  .list2 .child01,
  .list2 .child02 {
    width: 100%;
  }
}

.list3 {
  display: flex;
  flex-wrap: wrap;
}
.list3.type1 li {
  background: #fefefe;
  padding: 15px;
  border-radius: 8px;
}
.list3.type2 li  img {
 aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  object-position: center 30%;
}
.list3.works li {
  border: 2px solid #aaa;
}
.list3.works li a {
  width: 100%;
  height: 100%;
  display: block;
  color: #333;
}
.list3.works li a:hover {
  opacity: 0.8;
}
.list3.works li img {
  margin-bottom: 10px;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 639px) {
  .list3.works li img {
    height: 200px;
  }
}
.list3.works._top li img {
  height: 315px;
}
.list3 > li {
  width: 31%;
  position: relative;
  margin: 0 3.495% 30px 0;
}
.list3 > li:nth-child(3n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list3 > li {
    width: 95%;
    margin: 0 auto 20px;
  }
  .list3 > li:nth-child(3n) {
    margin-right: auto;
  }
}
.list3 > li .list-title {
  font-size: 2rem;
  font-weight: 600;
}

.list4 {
  display: flex;
  flex-wrap: wrap;
}
.list4 li {
  width: 24%;
  margin: 0 1.3333333333% 25px 0;
}
.list4 li:nth-child(4n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .list4 li:nth-child(4n) {
    margin-right: auto;
  }
}
@media all and (max-width: 639px) {
  .list4 li {
    width: 95%;
    margin: 0 auto 20px;
  }
}

.zumen-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.zumen-list > li {
  width: 31%;
}
.zumen-list > li a:hover img {
  transition: all 0.5s ease;
  filter: sepia(40%);
}

.note {
  padding: 60px;
  margin-top: 40px;
  font-size: 1.4rem;
  background: #F8F8F2;
}
.note.type2 {
  padding: 30px;
}
@media all and (max-width: 896px) {
  .note {
    padding: 30px;
  }
}
@media all and (max-width: 639px) {
  .note {
    font-size: 12px;
    padding: 10px;
  }
  .note.type2 {
    padding: 10px;
  }
}

.note2 {
  padding: 15px;
  border: 1px solid #494444;
  font-size: 1.4rem;
  margin: 20px auto;
}
@media all and (max-width: 639px) {
  .note2 {
    font-size: 12px;
  }
}

.flow-dl .flow-inner {
  padding: 8px;
}
.flow-dl .flow-inner:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: solid 1px #aaa;
}
.flow-dl .flow-inner dt {
  font-size: 1.6rem;
  font-weight: 600;
  color: #002989;
}
.flow-dl .flow-inner dt .eng {
  font-family: "Della Respira", serif;
  font-weight: 400;
  font-size: 2.5rem;
  color: #7afbdd;
  margin-right: 8px;
}
.flow-dl .flow-inner dd {
  margin-top: 5px;
  padding-left: 40px;
}
@media all and (max-width: 639px) {
  .flow-dl .flow-inner {
    padding: 6px;
  }
  .flow-dl .flow-inner dt {
    font-size: 1.25rem;
  }
  .flow-dl .flow-inner dt .eng {
    font-size: 1.7rem;
  }
  .flow-dl .flow-inner dd {
    padding-left: 30px;
  }
}

.fee-box {
  margin: 10px 0 20px;
  font-weight: 600;
  background: lemonchiffon;
  padding: 5px;
}
.fee-box span {
  display: block;
  font-weight: normal;
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul {
  display: flex;
  flex-wrap: wrap;
}
.blog-month ul li {
  width: 49%;
  padding: 5px 0;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 0;
  border-bottom: 1px solid #c6c6c6;
}
.blog-month ul li:nth-child(2n) {
  margin-left: 2%;
}
.blog-month ul li a {
  color: #333;
  font-size: 12px;
}
.blog-month ul li a:hover {
  color: #A61E2B;
}

.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 20px;
}
.faq-dl .faq-inner:not(:last-of-type) {
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 3px solid #eee;
}
.faq-dl .faq-inner dt,
.faq-dl .faq-inner dd {
  position: relative;
  padding: 10px 10px 10px 55px;
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  left: 0;
  top: 0;
  font-family: "Della Respira", serif;
  font-weight: 400;
}
.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-weight: 600;
}
.faq-dl .faq-inner dt:before {
  content: "Q";
  color: #A61E2B;
  font-size: 3rem;
  background: rgba(166, 30, 43, 0.2);
}
.faq-dl .faq-inner dd:before {
  content: "A";
  color: #f66009;
  font-size: 3rem;
  background: rgba(255, 223, 44, 0.2);
}

.bnr-list {
  text-align: center;
}
.bnr-list > li {
  width: 33%;
}
@media all and (max-width: 896px) {
  .bnr-list > li {
    width: 48%;
    margin-right: 4%;
  }
  .bnr-list > li:nth-child(2n) {
    margin-right: 0;
  }
}
.bnr-list a {
  display: block;
  text-align: center;
  background: #fefefe;
  padding: 8px 5px;
  font-size: 1.3rem;
  height: 100%;
}
.bnr-list a img {
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
@media all and (max-width: 639px) {
  .bnr-list a {
    font-size: 12px;
    line-height: 1.5;
  }
  .bnr-list a img {
    height: 30px;
  }
}
.bnr-list li.bnr-txt {
  font-size: 2rem;
  font-weight: 600;
  line-height: 60px;
  background: #fefefe;
}
@media all and (max-width: 639px) {
  .bnr-list li.bnr-txt {
    font-size: 1.5rem;
  }
}

.sns-list {
  display: flex;
}
.sns-list.center {
  justify-content: center;
  margin: 15px 0;
}
@media all and (max-width: 896px) {
  .sns-list.center2 {
    justify-content: center;
  }
}
.sns-list.type2 {
  gap: 20px;
}
@media all and (max-width: 896px) {
  .sns-list.type2 {
    justify-content: center;
  }
}
.sns-list.type2 li {
  width: 20%;
}
.sns-list.type2 a {
  color: #333;
  width: auto;
  height: auto;
  font-size: 3rem;
}
.sns-list.type2 a span {
  display: block;
  font-size: 1.2rem;
}
.sns-list li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 25px;
  color: #fefefe;
  display: block;
  border-radius: 100%;
  text-align: center;
  transition: all 0.2s ease-in;
  position: relative;
  font-weight: 600;
  padding-left: 1px;
}
.sns-list li a:hover {
  opacity: 0.7;
}
.sns-list li a.btn-facebook {
  background: #1877f2;
}
.sns-list li a.btn-twitter {
  background: #1da1f2;
}
.sns-list li a.btn-line {
  background: #06c755;
  line-height: 1;
  padding-top: 8px;
}
.sns-list li a.btn-line img {
  width: 18px;
}
.sns-list li a.btn-youtube {
  background: #c4302b;
}
.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%);
  /*グラデーション②*/
}
@media all and (max-width: 896px) {
  .sns-list li:not(:last-child) {
    margin-right: 5px;
    margin-bottom: 0;
  }
}
.sns-list .btn_x .fa-twitter:before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
}

.flow-list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.flow-list.type1 {
  display: block;
}
.flow-list.type1 > li {
  width: 90%;
}
.flow-list.type1 > li:nth-child(2) {
  margin-left: 2%;
}
.flow-list.type1 > li:nth-child(3) {
  margin-left: 4%;
}
.flow-list.type1 > li:nth-child(4) {
  margin-left: 6%;
}
.flow-list.type1 > li:nth-child(5) {
  margin-left: 8%;
}
.flow-list.type1 > li .flow-title {
  margin-bottom: 10px;
}
@media all and (max-width: 639px) {
  .flow-list.type1 > li {
    width: 100%;
  }
  .flow-list.type1 > li:nth-child(2), .flow-list.type1 > li:nth-child(3), .flow-list.type1 > li:nth-child(4), .flow-list.type1 > li:nth-child(5) {
    margin-left: 0;
  }
}
.flow-list > li {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 30px;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  background: #f4f4f4;
  border-radius: 10px;
  font-weight: 600;
}
.flow-list > li.type100 {
  flex-basis: 100%;
  margin-right: 0;
}
.flow-list > li:nth-child(2n) {
  margin-right: 0;
}
@media all and (max-width: 639px) {
  .flow-list > li {
    width: 90%;
    margin: 0 auto 30px;
  }
  .flow-list > li:nth-child(2n) {
    margin-right: auto;
  }
}
.flow-list > li .flow-num {
  color: #500e15;
  font-size: 3.5rem;
  border-right: 1px solid #A61E2B;
  padding-right: 15px;
  align-self: flex-start;
  line-height: 1.2;
  font-family: "Della Respira", serif;
  font-weight: 400;
}
.flow-list > li .flow-num span {
  font-size: 1.3rem;
  display: block;
  text-align: center;
}
.flow-list > li .txt {
  flex: 1;
  margin-left: 35px;
}
.flow-list > li .flow-title {
  color: #A61E2B;
  border-bottom: 1px solid #A61E2B;
  padding-bottom: 4px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}
@media all and (max-width: 639px) {
  .flow-list > li {
    flex-direction: column;
  }
  .flow-list > li .flow-num {
    font-size: 2.2rem;
    text-align: center;
    border-right: 0;
    padding: 0 0 4px;
    border-bottom: 1px solid #005740;
  }
  .flow-list > li .flow-title {
    font-size: 1.3rem;
  }
  .flow-list > li .txt {
    margin: 20px auto 0;
  }
}

.price-dl dt {
  background: #efefe1;
  padding: 14px 20px;
  color: #3a200c;
  border-top: 1px solid #005740;
  border-bottom: 1px solid #005740;
}
.price-dl dd {
  padding: 20px;
  margin-bottom: 25px;
}

.kiritori {
  height: 1px;
  border-top: 1px solid rgba(166, 30, 43, 0.4);
  margin: 25px auto;
  width: 95%;
  display: block;
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2 .child {
  width: 48%;
}
@media all and (max-width: 639px) {
  .column2 {
    flex-direction: column;
  }
  .column2 .child {
    width: 100%;
  }
  .column2 .child.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2 .child {
  width: 48%;
}
@media all and (max-width: 639px) {
  .column2 {
    flex-direction: column;
  }
  .column2 .child {
    width: 100%;
  }
  .column2 .child.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
}
.column2.type1 {
  flex-direction: row-reverse;
}
@media all and (max-width: 639px) {
  .column2.type1.re {
    flex-direction: column-reverse;
  }
}

.menu_box {
  align-items: center;
  margin-bottom: 100px;
  max-width: 95%;
  margin: 0 auto;
}
.menu_box.no-mb {
  margin-bottom: 0;
}
.menu_box .txt {
  padding: 40px 0 35px;
  border-top: double 4px #fff;
  border-bottom: double 4px #fff;
}
.menu_box .txt .ttl {
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
.menu_box .txt .ttl .sub {
  display: inline-block;
  font-size: 1.5rem;
  background: #fff;
  color: #A61E2B;
  border-radius: 20px;
  padding: 3px 20px;
  margin-bottom: 10px;
}
.menu_box .txt .detail {
  margin-top: 30px;
  text-align: center;
}
.menu_box .txt .detail .price {
  color: #fff;
}
.menu_box .img {
  text-align: center;
}
.menu_box .img img {
  height: 400px;
}
@media all and (max-width: 639px) {
  .menu_box {
    flex-wrap: wrap;
  }
  .menu_box.type2 {
    flex-direction: column-reverse;
  }
  .menu_box .txt,
  .menu_box .img {
    width: 100%;
  }
  .menu_box .img img {
    height: 200px;
  }
  .menu_box .txt {
    padding: 20px 0 15px;
  }
  .menu_box .txt .detail {
    margin-top: 15px;
  }
  .menu_box .txt .ttl {
    font-size: 1.4rem;
  }
}

/* ancor
----------------------------------*/
#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#a09,
#a10,
#a11,
#a12,
#contact {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

/* image box
----------------------------------*/
.img-box img {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 896px) {
  .img-box img {
    height: 300px;
  }
}
@media all and (max-width: 639px) {
  .img-box img {
    height: 250px;
  }
}
.img-box.type2 img {
  -o-object-fit: contain;
     object-fit: contain;
}
.img-box.type3 {
  margin: 40px auto;
}
.img-box.type3 img {
  height: 350px;
}

.fixed-img {
  background: url(../images/fixed-img.jpg) no-repeat center/cover;
  background-attachment: fixed;
}
@media all and (max-width: 1100px) {
  .fixed-img {
    background-attachment: scroll;
  }
}
@media all and (max-width: 896px) {
  .fixed-img {
    padding-top: 30px;
  }
}

.ieniwa-txt {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}
.ieniwa-txt .title {
  flex: 1;
}
.ieniwa-txt .title .mtitle {
  margin: 0 auto 40px;
  text-align: left;
}
.ieniwa-txt .title .mtitle .eng {
  font-size: 8rem;
  color: #111;
  position: relative;
  display: block;
  line-height: 1.2;
  font-family: "Della Respira", serif;
  font-weight: 400;
}
.ieniwa-txt .title .mtitle .eng:first-letter {
  color: #005740;
}
.ieniwa-txt .title .mtitle .ja {
  font-size: 1.8rem;
  color: #A61E2B;
  font-weight: 500;
}
.ieniwa-txt .text {
  width: 310px;
  line-height: 1.9;
}
@media all and (max-width: 896px) {
  .ieniwa-txt {
    display: block;
  }
  .ieniwa-txt .title {
    flex: auto;
  }
  .ieniwa-txt .title .mtitle .eng {
    font-size: 10vw;
  }
  .ieniwa-txt .title .mtitle .ja {
    font-size: 2.9vw;
  }
  .ieniwa-txt .text {
    width: 100%;
  }
}

.concept-txt {
  max-width: 700px;
  background: #fff;
  padding: 40px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
@media all and (max-width: 896px) {
  .concept-txt {
    padding: 20px;
  }
}
@media all and (max-width: 639px) {
  .concept-txt {
    padding: 20px;
    max-width: 90%;
    margin-top: -20px;
  }
}

.autoplay li {
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 5px;
}

.autoplay li a img {
  max-width: 100%;
  height: 100%;
}

.slick-prev,
.slick-next {
  background: rgba(255, 255, 255, 0.8) !important;
  width: 35px !important;
  height: 35px !important;
  z-index: 20 !important;
  border-radius: 50% !important;
  border: 1px solid #aaa !important;
  top: 40%;
  transition: all 0.2s ease-in;
}
.slick-prev:before,
.slick-next:before {
  color: #333 !important;
}
.slick-prev:hover,
.slick-next:hover {
  background: #f4f4f4;
}

.slick-prev {
  left: 0 !important;
}

.slick-next {
  right: 0 !important;
}

.swiper-container2 {
  padding: 0 20px;
}
.swiper-container2 .swiper-wrapper {
  padding: 30px 0;
}
.swiper-container2 .swiper-wrapper .swiper-slide {
  width: 300px;
  height: 300px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2);
}
.swiper-container2 .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media all and (max-width: 639px) {
  .swiper-container2 .swiper-wrapper {
    padding: 0 0 30px;
  }
  .swiper-container2 .swiper-wrapper .swiper-slide {
    width: 280px;
    height: 260px;
  }
}

.about_img {
  display: flex;
  justify-content: center;
}
.about_img img {
  width: 23%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_img img:nth-child(1), .about_img img:nth-child(3) {
  margin-right: 20px;
}
.about_img img:nth-child(2) {
  margin-right: 20px;
  margin-top: -80px;
}
.about_img img:nth-child(1) {
  margin-left: 20px;
}
@media all and (max-width: 896px) {
  .about_img img {
    height: 200px;
  }
  .about_img img:nth-child(2) {
    margin-top: -20px;
  }
}

.about_img2 {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.about_img2 img {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 896px) {
  .about_img2 img {
    height: 350px;
  }
}
@media all and (max-width: 639px) {
  .about_img2 img {
    height: 250px;
  }
}

.about_txt {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
}
.about_txt .img {
  display: flex;
}
.about_txt .img img {
  width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_txt .img img:nth-child(1) {
  margin-right: 20px;
}
.about_txt .img2 img {
  width: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about_txt .txt {
  flex: 1;
  padding: 20px 40px;
}
@media all and (max-width: 1100px) {
  .about_txt .txt {
    width: 100%;
  }
  .about_txt .img {
    justify-content: space-between;
  }
  .about_txt .img img {
    width: 48%;
    height: 100%;
  }
  .about_txt.type2 {
    flex-direction: column;
  }
  .about_txt.type2 .img2 {
    text-align: center;
  }
  .about_txt.type2 .img2 img {
    width: 70%;
  }
}
@media all and (max-width: 639px) {
  .about_txt .txt {
    padding: 20px 0px;
  }
}

@media all and (max-width: 896px) {
  .about_txt_box {
    flex-direction: column;
  }
  .about_txt_box .child {
    width: 100%;
  }
}

/* works gallery
----------------------------------*/
.grid {
  position: relative;
  margin: 0 auto !important;
  padding: 0 !important;
  width: 100% !important;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.grid-item {
  padding: 10px;
  background: #fefefe;
  transition: 0.3s ease-in-out;
  width: calc(33.3% - 7px) !important;
}
.grid-item .gallery {
  width: 100%;
  height: 200px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  position: relative;
}
.grid-item:nth-child(3n) {
  margin-right: 0px;
}
.grid-item a {
  display: block;
  text-align: center;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #fff;
}
.grid-item * {
  transition: 0.3s;
}
.grid-item h5 {
  font-size: 1.4rem;
  text-align: center;
  color: #3a200c;
  font-weight: 400;
  letter-spacing: 0.2em;
}
.grid-item img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-item .ttl {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  opacity: 0;
  color: #3a200c;
  letter-spacing: 0.2em;
  font-size: 13px;
}
.grid-item .ttl span {
  margin-top: 5px;
  font-family: "Della Respira", serif;
  font-weight: 400;
  font-size: 11px;
  display: inline;
  background: #3a200c;
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
}
.grid-item a:hover .ttl {
  opacity: 1;
}
.grid-item a:hover img {
  opacity: 0.2;
  transform: scale(1.2);
}
@media all and (max-width: 639px) {
  .grid-item {
    margin-bottom: 0;
  }
}

@media all and (max-width: 1100px) {
  .grid-item {
    width: calc(50% - 0px) !important;
  }
  .grid-item:nth-child(2n) {
    margin-right: 0px;
  }
  .grid-item .gallery {
    height: 180px;
  }
  .grid-item .gallery a {
    height: 180px;
  }
}
/*----------------------------------
contact-form
----------------------------------*/
.form-contents {
  width: 100% !important;
  height: auto !important;
  padding: 35px 30px !important;
  border-radius: 15px 15px 0 0 !important;
}
.form-contents dl dd {
  border-bottom: none !important;
}
@media all and (max-width: 1100px) {
  .form-contents {
    padding: 15px !important;
  }
}
.form-contents button {
  border: 1px solid #005740 !important;
}
.form-contents .required::before {
  background: transparent !important;
  padding: 5px 10px !important;
  content: "*" !important;
  color: #c90d0d !important;
  font-size: 18px !important;
}
.form-contents input[type=text],
.form-contents input[type=email],
.form-contents textarea {
  background-color: rgba(248, 248, 242, 0.6) !important;
}
.form-contents .textarea {
  background-color: rgba(248, 248, 242, 0.6) !important;
  border: none !important;
  padding: 30px 15px !important;
}
.form-contents label {
  display: block;
}
.form-contents input[type=text],
.form-contents textarea {
  font-size: 16px;
}
.form-contents input[type=radio] {
  margin: 0.5em 0.2em 0.5em 0.5em !important;
}
.form-contents .submit-btn {
  background-color: #494444 !important;
  border: 1px solid #494444 !important;
  color: #fefefe !important;
  border-radius: 0 !important;
}
.form-contents .submit-btn:hover {
  color: #494444 !important;
  background-color: #fefefe !important;
  border: 1px solid #494444 !important;
}
.form-contents .submit-btn:hover:before {
  background-color: #494444 !important;
}
.form-contents .custom-area p {
  padding: 10px 0;
}

@media all and (max-width: 639px) {
  .form-contents {
    padding: 0 10px !important;
  }
  .form-contents dl {
    margin: 10px 0 !important;
  }
  .form-contents dl dt {
    float: none !important;
    padding-top: 15px !important;
  }
  .form-contents dl dd {
    padding-left: 0 !important;
    padding-bottom: 15px !important;
    padding-top: 10px !important;
    line-height: 20px !important;
  }
  .form-contents .submit-btn {
    width: 250px !important;
  }
}
/* category_tab
----------------------------------*/
.innerB {
  width: 100%;
  margin: auto;
  background: #fff;
  padding: 50px 50px;
  box-shadow: 0 6px 15px rgba(36, 37, 38, 0.04);
  box-sizing: border-box;
  border: 1px solid #eee;
}
.innerB.innerB_news {
  border-top: none;
  border-radius: 0 0 8px 8px;
}
.innerB.innerB_news .category_contents {
  height: 525px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.innerB.innerB_news .category_contents.type2 {
  height: auto;
  overflow-y: auto;
  overflow-x: auto;
}
.innerB.innerB_news .category_contents .acc_img {
  width: 350px;
}
.innerB.innerB_news .category_contents::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 5, 56, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}
.innerB.innerB_news .category_contents::-webkit-scrollbar {
  width: 6px;
  background-color: #F5F5F5;
}
.innerB.innerB_news .category_contents::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 5, 56, 0.3);
  background-color: #A61E2B;
}
@media all and (max-width: 639px) {
  .innerB {
    padding: 30px 20px;
  }
}

.category_tab {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
}
.category_tab li {
  position: relative;
  width: 50%;
  box-sizing: border-box;
  background: #A61E2B;
  color: #FFFFFF;
  padding: 10px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.category_tab li:not(:last-child) {
  border-right: 1px dashed #fff;
}
.category_tab li:first-child {
  border-top-left-radius: 8px;
}
.category_tab li:last-child {
  border-top-right-radius: 8px;
}
.category_tab li.active {
  background: #FFFFFF;
  color: #555;
}
.category_tab li.active:before {
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: #FFFFFF;
}
@media all and (max-width: 639px) {
  .category_tab li {
    margin-left: 2px;
    padding: 5px;
    font-size: 13px;
  }
  .category_tab li:last-child {
    margin-right: 0px;
  }
}

.panel {
  display: none;
}
.facebook i {
 font-size: 30px;
}

/*# sourceMappingURL=basis.css.map */







/* ブログ */

.blog_topics {
  width: 100%;
  border-top: 1px solid #999
}

.blog_topics li {
  border-bottom: 1px solid #999;
  background: rgba(255,255,255,0.6);
}

.blog_topics li a {
  display: block;
  color: #fff;
  padding: 15px;
  -webkit-transition: 0.3s ease-in all;
  transition: 0.3s ease-in all
}

.blog_topics li a:hover {
  background-color: rgba(119, 119, 119, 0.5)
}

.blog_topics li a .topics_detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
}

.blog_topics li a .topics_detail .imgbox {
  overflow: hidden;
  width: 28%;
  height: 130px
}

.blog_topics li a .topics_detail .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s ease-in all;
  transition: 0.3s ease-in all
}

.blog_topics li a .topics_detail .textbox {
  width: 72%;
  padding-left: 20px;
  line-height: 1.5;
}

.blog_topics li a .topics_detail .textbox h3 {
  margin: 5px 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1
}

.blog_topics li a .topics_detail .textbox p {
  font-size: 1.3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1
}

.blog_topics li a .time_date {
  display: inline-block;
  font-size: 1.2rem;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: #000;
  color: #fff;
  padding: 4px 15px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.blog_topics li a .time_date:before {
  font-family: "Font Awesome 5 Free";
  content: "\f017";
  font-weight: 900;
  margin-right: 5px
}

@media all and (max-width: 639px) {
  .blog_topics li a {
      padding: 10px 5px
  }

  .blog_topics li a .topics_detail .imgbox {
      width: 30%;
      height: 100px
  }

  .blog_topics li a .topics_detail .textbox {
      width: 70%;
      padding-left: 10px;
      line-height: 1.5
  }

  .blog_topics li a .topics_detail .textbox p {
      font-size: 1rem
  }

  .blog_topics li a .time_date {
      font-size: 0.9rem
  }
}

#top-news .pages {
  display: none;
}

#news-wrap .pages {
  margin-top: 20px;
}
#news-wrap .page_prev a {
  color: #901a25!important;
}
#news-wrap .page_prev a {
  color: #901a25!important;
}

.menu-wrapper .img img.obj-contain-top {
  object-fit: contain;
  object-position: top;
}
