@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
/* アニメーションベンダープレフィックス込み指定 */
/********************/
body {
  color: #3b3939;
  background: #FCFAF2;
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-size: 1.58rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: 400;
  letter-spacing: 0.09em;
  position: relative;
}

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

#wrapper {
  position: relative;
}
@media screen and (max-width: 1100px) {
  #wrapper {
    overflow: hidden;
  }
}

#l-main {
  position: relative;
  z-index: 1;
  background: #FCFAF2;
}

em {
  font-style: normal;
}

.number {
  font-family: "Barlow", sans-serif;
  font-weight: 500;
}

.eng {
  font-family: "Cardo", serif;
  font-weight: 400;
}

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

.bold {
  font-weight: 600;
}

h2,
h3,
h4 {
  line-height: 1.4;
  font-weight: 600;
  font-feature-settings: "palt";
}

.kerning {
  font-feature-settings: "palt";
}

.mincho {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  font-weight: 500;
  font-weight: 500 !important;
}

.mini {
  font-size: 80%;
}

.bigger {
  font-size: 1.15em;
  line-height: 1.4;
}
@media screen and (max-width: 639px) {
  .bigger {
    font-size: 1.25rem;
  }
}

.smaller {
  font-size: 13px;
  letter-spacing: 0;
}

.scroll-bar {
  max-height: 450px;
  overflow-y: scroll;
}

/* animation
----------------------------------*/
@keyframes view-zoomin {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes view-blurin {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
  }
}
@keyframes view-borderin {
  0% {
    transform-origin: center;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.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);
}

.blur-in.on {
  opacity: 1;
  animation: view-blurin 1s cubic-bezier(0.2, 1, 0.2, 1);
}

.border-in.on {
  opacity: 1;
  animation: view-borderin 1s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
  align-items: center;
  background: #FCF7EE;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader img {
  width: 500px;
  animation: view-zoomin 15s cubic-bezier(0.2, 1, 0.2, 1);
}
@media screen and (max-width: 639px) {
  .loader img {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.gradient {
  background: linear-gradient(45deg, #ccc, #055d5e, #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%;
  }
}
@keyframes slideIn {
  0%, 60% {
    transform-origin: left;
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in {
  0%, 70% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animation-bar {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100.5%;
    width: 0;
  }
}
@keyframes animation-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation-content.move .animation-bar:before {
  animation: animation-bar 1s ease 0s 1 normal forwards;
}
.animation-content.move .animation-txt {
  animation: animation-txt 0s ease 0.8s 1 normal forwards;
}
.animation-content .animation-box {
  display: block;
  text-align: center;
}
.animation-content .animation-bar {
  position: relative;
  display: block;
  transform: translate3d(0, 0, 0);
}
.animation-content .animation-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-image: linear-gradient(to right, #BC002D, #4c7ba8);
}
.animation-content .animation-txt {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

.js-span-text {
  opacity: 0;
}
.js-span-text.on {
  opacity: 1;
}
.js-span-text.on span {
  display: inline-block;
  opacity: 0;
}
.js-span-text.on span:nth-child(1) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1s forwards;
}
.js-span-text.on span:nth-child(2) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2s forwards;
}
.js-span-text.on span:nth-child(3) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3s forwards;
}
.js-span-text.on span:nth-child(4) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4s forwards;
}
.js-span-text.on span:nth-child(5) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5s forwards;
}
.js-span-text.on span:nth-child(6) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6s forwards;
}
.js-span-text.on span:nth-child(7) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7s forwards;
}
.js-span-text.on span:nth-child(8) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8s forwards;
}
.js-span-text.on span:nth-child(9) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9s forwards;
}
.js-span-text.on span:nth-child(10) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1s forwards;
}
.js-span-text.on span:nth-child(11) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1s forwards;
}
.js-span-text.on span:nth-child(12) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2s forwards;
}
.js-span-text.on span:nth-child(13) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3s forwards;
}
.js-span-text.on span:nth-child(14) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4s forwards;
}
.js-span-text.on span:nth-child(15) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5s forwards;
}
.js-span-text.on span:nth-child(16) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6s forwards;
}
.js-span-text.on span:nth-child(17) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7s forwards;
}
.js-span-text.on span:nth-child(18) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8s forwards;
}
.js-span-text.on span:nth-child(19) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9s forwards;
}
.js-span-text.on span:nth-child(20) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2s forwards;
}
.js-span-text.on span:nth-child(21) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1s forwards;
}
.js-span-text.on span:nth-child(22) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2s forwards;
}
.js-span-text.on span:nth-child(23) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3s forwards;
}
.js-span-text.on span:nth-child(24) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4s forwards;
}
.js-span-text.on span:nth-child(25) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5s forwards;
}
.js-span-text.on span:nth-child(26) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6s forwards;
}
.js-span-text.on span:nth-child(27) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7s forwards;
}
.js-span-text.on span:nth-child(28) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8s forwards;
}
.js-span-text.on span:nth-child(29) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9s forwards;
}
.js-span-text.on span:nth-child(30) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3s forwards;
}
.js-span-text.on span:nth-child(31) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.1s forwards;
}
.js-span-text.on span:nth-child(32) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.2s forwards;
}
.js-span-text.on span:nth-child(33) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.3s forwards;
}
.js-span-text.on span:nth-child(34) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.4s forwards;
}
.js-span-text.on span:nth-child(35) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.5s forwards;
}
.js-span-text.on span:nth-child(36) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.6s forwards;
}
.js-span-text.on span:nth-child(37) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.7s forwards;
}
.js-span-text.on span:nth-child(38) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.8s forwards;
}
.js-span-text.on span:nth-child(39) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.9s forwards;
}
.js-span-text.on span:nth-child(40) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4s forwards;
}
.js-span-text.on span:nth-child(41) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.1s forwards;
}
.js-span-text.on span:nth-child(42) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.2s forwards;
}
.js-span-text.on span:nth-child(43) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.3s forwards;
}
.js-span-text.on span:nth-child(44) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.4s forwards;
}
.js-span-text.on span:nth-child(45) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4.5s forwards;
}

@keyframes text {
  0% {
    opacity: 0;
    transform: translateX(-20px) translateY(-10px) scale(1.3);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.move-anime {
  opacity: 0;
  transform: translate(-20px, 20px) skewY(-5deg);
}
.move-anime.move-anime-on {
  animation: moveanimeon 1s ease-out 0.6s forwards;
}

.move-anime-bg:before {
  opacity: 0;
  transform: translate(-20px, 20px) skewY(-5deg);
}
.move-anime-bg.move-anime-on:before {
  animation: moveanimeon 1s ease-out 0.6s forwards;
}

@keyframes moveanimeon {
  0% {
    opacity: 0;
    transform: translate(-20px, 20px) skewY(-5deg);
  }
  100% {
    opacity: 1;
    transform: translate(0px, 0px) skewY(0deg);
  }
}
@keyframes photoanimeon2 {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}
.txt-anime .txtarea__main__txt {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0 auto 10px;
  text-align: center;
  padding: 4px 40px;
}
.txt-anime .txtarea__main__txt span {
  opacity: 0;
  display: block;
  transform: translateY(20px);
}
.txt-anime .txtarea__main__txt:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background: rgb(126, 193, 252);
  background: linear-gradient(132deg, rgb(126, 193, 252) 0%, rgb(115, 228, 190) 50%, rgb(227, 230, 106) 100%);
  z-index: -1;
}
.txt-anime.txt-anime-on .txtarea__main__txt span {
  animation: txton 0.5s ease-out 0.6s forwards;
}
.txt-anime.txt-anime-on .txtarea__main__txt:before {
  transition: 0.5s;
  width: 100%;
}
.txt-anime.txt-anime-on .txtarea__main__txt.type2 span {
  animation: txton 0.5s ease-out 0.8s forwards;
}
.txt-anime.txt-anime-on .txtarea__main__txt.type2:before {
  transition-delay: 0.4s;
}
.txt-anime.txt-anime-on .txtarea__main__txt.type3 span {
  animation: txton 0.5s ease-out 1s forwards;
}
.txt-anime.txt-anime-on .txtarea__main__txt.type3:before {
  transition-delay: 0.8s;
}
@media screen and (max-width: 639px) {
  .txt-anime .txtarea__main__txt {
    padding: 4px 20px;
    font-size: 14px;
  }
}

@keyframes txton {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
/* header
----------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes anim-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#l-header {
  position: absolute;
  top: 0px;
  left: 50%;
  z-index: 200;
  width: 100%;
  transform: translateX(-50%);
  transition: all 0.2s ease-in;
  padding: 10px;
}
#l-header.is-fixed {
  position: fixed;
  top: 0;
  width: 100%;
}
#l-header.is-fixed .inner #logo {
  width: 240px;
}
#l-header .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 95%;
}
#l-header .inner #logo {
  left: 0px;
  top: 5px;
  width: 260px;
}
#l-header .inner #logo img {
  width: 100%;
}
@media screen and (max-width: 1025px) {
  #l-header .inner #logo {
    width: 200px;
  }
}
#l-header .inner .head-right {
  margin-left: auto;
}

#header_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}
#header_nav ul li {
  position: relative;
}
#header_nav ul li.footer-only {
  display: none;
}
#header_nav ul li a {
  position: relative;
  font-weight: 600;
  color: #BC002D;
  cursor: pointer;
}
#header_nav ul li a .eng {
  display: block;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.3;
  font-family: "Cardo", serif;
  font-weight: 400;
}
#header_nav ul li a .ja {
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  font-size: 1.7rem;
}
#header_nav ul li a:after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 0;
  height: 1px;
  background: #4c7ba8;
  transition: 0.2s width ease-in;
}
#header_nav ul li a:hover:after, #header_nav ul li a.active:after {
  width: 25px;
}
#header_nav .dropdown {
  display: none;
  position: absolute;
  left: 50%;
  top: 35px;
  transform: translateX(-50%);
  z-index: 999;
  padding-top: 30px;
}
#header_nav .dropdown .dropdown-li {
  border-right: 0;
  margin: 0 0 5px 0;
  border: 1px solid #cfd4d5;
  text-align: center;
}
#header_nav .dropdown .dropdown-li a {
  display: block;
  width: 210px;
  padding: 8px;
  color: #222;
  background: #fefefe;
  font-weight: normal;
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
}
#header_nav .dropdown .dropdown-li a:after {
  display: none;
}
#header_nav .dropdown .dropdown-li a:hover {
  background: #f1ede8;
}
#header_nav .dropdown .dropdown-li.foot_only {
  display: none;
}

/* navi */
#header_nav {
  display: none;
}

/* nav-toggle */
#nav-toggle {
  display: block;
  position: fixed;
  top: 10px;
  right: 10px;
  height: 60px;
  cursor: pointer;
  padding: 15px;
  color: #fff;
  background: #BC002D;
}
#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;
}
#nav-toggle span {
  width: 100%;
  height: 2px;
  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;
}

.open #nav-toggle span:nth-child(1) {
  top: 15px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  transform: rotate(-45deg);
}

.sp-nav-list {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  top: 50%;
  transform: translateY(-50%);
}
.sp-nav-list li.footer-only {
  display: none;
}

#nav-toggle {
  z-index: 1000;
}

#container {
  z-index: 900;
}

#sp-nav {
  position: relative;
  background-color: #BC002D;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: block;
  visibility: hidden;
  width: 100%;
  margin-left: auto;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  text-align: center;
}
#sp-nav .inner {
  position: relative;
  z-index: 990;
  padding: 45px 20px 20px;
  overflow: auto;
  height: 100vh;
}
#sp-nav .inner .sp-logo {
  display: block;
  position: relative;
  margin: 20px auto;
  transform: translateX(-2%);
  text-align: center;
  width: 300px;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 639px) {
  #sp-nav .inner {
    width: 320px;
    padding-top: 30px;
    padding-bottom: 80px;
    margin-inline: auto;
  }
}
#sp-nav .globalNav {
  list-style: none;
  margin: 50px 0;
}
#sp-nav .globalNav > li {
  opacity: 0;
  transform: translateX(200px);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
#sp-nav .globalNav > li a {
  display: block;
  text-decoration: none;
  padding: 20px 0;
  transition: color 0.4s ease;
  color: #fff;
}
#sp-nav .globalNav > li a.sns_link {
  max-width: 100px;
  padding: 10px;
  margin: auto;
}
#sp-nav .globalNav > li a.sns_link:hover img {
  filter: brightness(0) invert(1);
}
#sp-nav .globalNav > li a span {
  display: block;
  text-align: center;
  font-size: 0.8em;
}
#sp-nav .globalNav > li a span.eng {
  font-size: 1.7rem;
  color: #BC002D;
  font-family: "Cardo", serif;
}
#sp-nav .globalNav > li a span.ja {
  font-size: 1.5rem;
}
#sp-nav .globalNav > li a:hover {
  color: #000;
}
#sp-nav .globalNav > li a:hover span {
  opacity: 0.8;
}
#sp-nav .globalNav > li .dropdown {
  display: none;
  padding: 4px 4px 8px;
}
#sp-nav .globalNav > li .dropdown .drop-title {
  display: none;
}
#sp-nav .globalNav > li .dropdown .dropdown-ul {
  display: flex;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 4%;
}
#sp-nav .globalNav > li .dropdown .dropdown-li {
  border-bottom: 0;
  text-align: center;
}
#sp-nav .globalNav > li .dropdown .dropdown-li a {
  display: block;
  position: relative;
  height: 100%;
  padding: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-bottom: 0;
  border-radius: 0 0 8px 0;
  color: #111;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.4;
}
#sp-nav .globalNav > li .dropdown .dropdown-li span {
  display: block;
}
#sp-nav .globalNav > li.btn_contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  margin: 0 auto;
  background: #111;
}
#sp-nav .globalNav > li.btn_contact a i {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: #fff;
}
#sp-nav .globalNav > li.btn_contact a span.ja {
  color: #fff;
}
#sp-nav .globalNav > li.drop-parent {
  width: 100%;
}
#sp-nav .globalNav > li:nth-child(2) {
  transition-delay: 0.1s;
}
#sp-nav .globalNav > li:nth-child(3) {
  transition-delay: 0.2s;
}
#sp-nav .globalNav > li:nth-child(4) {
  transition-delay: 0.3s;
}
#sp-nav .globalNav > li:nth-child(5) {
  transition-delay: 0.4s;
}
#sp-nav .globalNav > li:nth-child(6) {
  transition-delay: 0.5s;
}
#sp-nav .globalNav > li:nth-child(7) {
  transition-delay: 0.6s;
}

/* open */
.open {
  overflow: hidden;
}
.open #sp-nav {
  visibility: visible;
  opacity: 1;
}
.open #sp-nav li {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1s ease, opacity 0.9s ease;
}

#sp-nav .globalNav li a span.ja {
  font-size: 1.2rem;
}

/* page-top
----------------------------------*/
#page-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 250;
}
#page-top a {
  display: block;
  text-align: center;
  color: #BC002D;
  background: #fff;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  line-height: 50px;
}
#page-top a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 639px) {
  #page-top {
    bottom: 50px;
  }
  #page-top a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 1.2rem;
  }
}

/* mainview
----------------------------------*/
#slideshow {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

#main_slider .main_slider .swiper-wrapper .swiper-slide .main_slider__inner:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.1;
  z-index: 1;
}

#main_slider .main_slider .swiper-wrapper .swiper-slide .main_slider__inner img {
  object-position: 50% 90%;
}

@media screen and (max-width: 1025px) {
  #main_slider.slider_wrapper {
    --swiper-wrapper-height: 65vh!important;
  }
}

#catch {
  position: absolute;
  width: 100%;
  z-index: 50;
  left: 0;
  bottom: 3%;
  transform: translate(-50% 50%);
  filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.5));
  opacity: 0;
}
#catch img {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#catch.on {
  opacity: 1;
  animation: fadeIn 3s ease 1s 1 normal backwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-50vh);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1025px) {
  #catch {
    width: 100%;
  }
}

#scrolldown {
  position: absolute;
  right: 15px;
  bottom: 60px;
  color: #fefefe;
  font-family: "Cardo", serif;
  font-weight: 400;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  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 screen and (max-width: 1025px) {
  #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;
  }
}
.container {
  width: 100%;
  overflow: hidden;
  color: #fff;
  margin-bottom: 60px;
}

.spacer {
  width: 100%;
  background: #FCFAF2;
}

.bg-text {
  color: white;
  font-size: 60px;
}
@media screen and (max-width: 1025px) {
  .bg-text {
    font-size: 4rem;
  }
}
@media screen and (max-width: 639px) {
  .bg-text {
    text-align: center;
    font-size: 3rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 320px) {
  .bg-text {
    font-size: 2.8rem;
  }
}

.js-sticky {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}

.slide-box {
  max-width: 850px;
  margin-inline: auto;
}
.slide-box .thumb-item a {
  display: block;
  width: 100%;
  aspect-ratio: 4/2.5;
  overflow: hidden;
}
.slide-box .thumb-item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-box .thumb-item-nav .child {
  display: block;
  height: 100px;
  overflow: hidden;
}
.slide-box .thumb-item-nav .child img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: initial !important;
}

/* footer
----------------------------------*/
.flogo {
  position: relative;
  display: block;
  max-width: 150px;
  margin: 0 auto;
}
.flogo img {
  width: 100%;
}
@media screen and (max-width: 639px) {
  .flogo {
    max-width: 100px;
  }
}

#l-footer {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
}
#l-footer:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #BC002D;
  z-index: -1;
}
#l-footer .inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 45px 10px 35px;
  z-index: 3;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  #l-footer {
    overflow: hidden;
  }
  #l-footer .inner {
    width: 100%;
    padding: 80px 10px 70px;
  }
}
@media screen and (max-width: 639px) {
  #l-footer {
    font-size: 1.2rem;
  }
  #l-footer .inner {
    padding: 30px 10px 10px;
  }
}

/* footer_navi
----------------------------------*/
.sns_link_footer {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
}
.sns_link_footer a:hover {
  filter: brightness(0) invert(1);
}

.footer_navi {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  color: #fff;
}
.footer_navi .globalNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
}
.footer_navi .globalNav > li:not(:last-of-type) {
  margin-right: 50px;
}
.footer_navi .globalNav > li a {
  position: relative;
  display: block;
  text-align: left;
  padding-bottom: 4px;
  color: #fff;
}
.footer_navi .globalNav > li a i {
  display: none;
}
.footer_navi .globalNav > li a span {
  text-align: center;
  display: block;
  font-size: 0.85em;
  color: #fff;
  font-weight: normal;
}
.footer_navi .globalNav > li a span.ja {
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.footer_navi .globalNav > li a:hover {
  color: #ddd;
}
.footer_navi .globalNav > li .dropdown {
  display: none;
}
.footer_navi .globalNav > li .dropdown .dropdown-ul {
  position: relative;
  display: block;
  max-width: 20 0px;
  padding: 8px;
}
.footer_navi .globalNav > li .dropdown .dropdown-ul:before {
  position: absolute;
  content: "";
  left: 8px;
  top: 0;
  width: 1px;
  height: 100%;
  background: #4c7ba8;
}
.footer_navi .globalNav > li .dropdown .drop-title {
  display: none;
}
.footer_navi .globalNav > li .dropdown .dropdown-li {
  position: relative;
  margin-bottom: 4px;
}
.footer_navi .globalNav > li .dropdown .dropdown-li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: #4c7ba8;
}
.footer_navi .globalNav > li .dropdown .dropdown-li figure {
  display: none;
}
.footer_navi .globalNav > li .dropdown .dropdown-li a {
  display: block;
  width: fit-content;
  padding-left: 20px;
  border: none;
  font-size: 13px;
  color: #BC002D;
  line-height: 1.5;
  letter-spacing: 0;
}
.footer_navi .globalNav > li .footer-only {
  display: block;
}
@media screen and (max-width: 639px) {
  .footer_navi {
    display: none;
  }
  .footer_navi .globalNav li {
    width: 30%;
  }
  .footer_navi .globalNav li:not(:last-of-type) {
    margin-right: 0;
  }
}

.address {
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .address {
    font-size: 13px;
  }
}

.copyright {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 20px 0;
  letter-spacing: 0.15em;
  font-size: 1.2rem;
  color: #fff;
}
@media screen and (max-width: 1025px) {
  .copyright {
    font-size: 12px;
  }
}

/* --news--
----------------------------------*/
.top_news {
  position: relative;
  z-index: 10;
}
.top_news .inner {
  position: absolute;
  top: -100px;
  right: 2%;
  margin-bottom: -100px;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.2));
  width: 600px;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  padding: 15px 20px;
  display: flex;
}
.top_news .inner .news-bl {
  padding-right: 15px;
  padding: 10px 8px 5px;
  border-bottom: 0px;
}
.top_news .inner .news-bl dd {
  margin-left: 10px;
}
.top_news .inner .news_ttl {
  background: #BC002D;
  color: #fff;
  border-radius: 30px;
  padding: 2px 10px;
  display: inline;
  font-size: 1.5rem;
  width: auto;
  margin-right: 15px;
}
.top_news .inner .pages {
  display: none;
}
@media screen and (max-width: 1025px) {
  .top_news .inner {
    width: 90vw;
    right: 50%;
    transform: translateX(50%);
  }
}
@media screen and (max-width: 639px) {
  .top_news .inner {
    width: 95vw;
    padding: 10px 10px;
    display: block;
  }
  .top_news .inner .news_ttl {
    font-size: 1.2rem;
  }
  .top_news .inner .news-bl dd {
    margin-left: 20px;
  }
}

.news-box {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 150px;
}
.news-box dl dt {
  font-family: "Shippori Mincho", "YakuHanMP", "Noto Serif JP", "游明朝 Medium", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, serif;
  white-space: nowrap;
}
.news-box dl dd a {
  color: #3b3939;
}
.news-box dl dd a:hover {
  color: #BC002D;
}
@media screen and (max-width: 1025px) {
  .news-box {
    max-width: 100%;
    display: block;
  }
  .news-box dl .news-bl {
    width: 100%;
  }
}

.news-title {
  position: relative;
  margin-right: 100px;
  z-index: 10;
}
.news-title span {
  display: block;
}
@media screen and (max-width: 1025px) {
  .news-title {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 639px) {
  .news-title {
    text-align: center;
    margin-left: auto;
  }
  .news-title .eng {
    font-size: 2.4rem;
  }
  .news-title .ja {
    font-size: 1.4rem;
  }
}

.news-right {
  flex: 1;
  width: 75%;
}
@media screen and (max-width: 1025px) {
  .news-right {
    width: 100%;
    margin: 0;
  }
}

.map-link {
  font-weight: 600;
  color: #BC002D;
  border-bottom: 1px solid #BC002D;
}
.map-link:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 5px;
}

.news-list li a {
  display: flex;
  align-items: flex-start;
  padding: 14px 8px;
  font-weight: 600;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.news-list li a .date {
  position: relative;
  padding-left: 20px;
  width: 7em;
  font-size: 1.4rem;
  color: #555;
  color: #aaa;
}
.news-list li a .date:before {
  position: absolute;
  content: "";
  left: -14px;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #aaa;
}
.news-list li a .txt {
  flex: 1;
  margin-left: 16px;
  color: #fefefe;
}
.news-list li a:hover {
  background: #fefefe;
  border-radius: 0 0 8px 0;
}
.news-list li a:hover .txt {
  color: #333;
}
.news-list li:not(:last-of-type) {
  margin-bottom: 8px;
}
@media screen and (max-width: 639px) {
  .news-list li a {
    flex-direction: column;
  }
  .news-list li a .date {
    font-size: 1.2rem;
  }
}

.news-bl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  vertical-align: middle;
  padding: 20px 20px;
  background: #fff;
}
@media screen and (max-width: 639px) {
  .news-bl {
    display: block;
  }
}
.news-bl:not(:last-of-type) {
  margin-bottom: 5px;
}
.news-bl dt {
  position: relative;
  display: flex;
  border-radius: 40px;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #BC002D;
}
@media screen and (max-width: 639px) {
  .news-bl dt {
    width: 4.5em;
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}
.news-bl dd {
  flex: 1;
  margin-left: 30px;
  line-height: 1.6;
  font-size: 1.6rem;
}
.news-bl dd a {
  color: #4b382d;
  background-image: linear-gradient(to right, #BC002D, #055d5e);
  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);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.news-bl dd a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 639px) {
  .news-bl dd {
    margin-left: 0;
    font-size: 1.15rem;
  }
}

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 300px;
}
@media screen and (max-width: 1025px) {
  #main .mbox {
    min-height: initial;
  }
}
@media screen and (max-width: 1025px) {
  #main {
    float: none;
    width: 100%;
  }
}

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

/* contents
----------------------------------*/
.single0 {
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 3;
}
.single0.type1 {
  padding-bottom: 0;
  z-index: 1;
}

.single {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1440px) {
  .single {
    padding: 80px 10px;
  }
}
.single.phalf {
  padding: 40px 0;
}
.single.type1 {
  padding-bottom: 0;
  z-index: 1;
}

.single02 {
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1100px) {
  .single02 {
    padding: 80px 10px;
  }
}
.single02.type1 {
  padding-top: 0;
  z-index: 1;
}
.single02.type2 {
  padding-bottom: 0;
  z-index: 1;
}

.single03 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 3;
}
.single03.phalf {
  padding: 40px 0;
}
.single03.type1 {
  padding-bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .single03 {
    padding: 80px 10px;
  }
}

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

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.mbox {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
.mbox.type1 {
  border-radius: 20px;
}
.mbox.shadow {
  box-shadow: 2px 4px 6px -1px rgba(0, 0, 0, 0.15);
  border: 1px solid #ddd;
}
.mbox.transparent {
  background: transparent;
}
@media screen and (max-width: 639px) {
  .mbox {
    padding: 20px 8px;
  }
}

.mbox2 {
  border: 8px solid rgba(76, 123, 168, 0.4);
  padding: 35px 30px;
}
@media screen and (max-width: 639px) {
  .mbox2 {
    padding: 15px;
  }
}
.mbox2.type1 {
  background: #fffaf4;
}

.mbox3 {
  background: #fefefe;
  padding: 35px 30px;
  position: relative;
  z-index: 3;
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
}
.mbox3.type1 {
  border: 3px solid #BC002D;
}
.mbox3.shadow {
  box-shadow: rgba(75, 56, 45, 0.1) 0px 18px 50px -10px;
}
.mbox3.transparent {
  background: transparent;
}
@media screen and (max-width: 639px) {
  .mbox3 {
    padding: 15px 10px;
  }
}

.small-box {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}
.small-box.mini {
  max-width: 640px;
}
.small-box.type_fit {
  width: fit-content;
}

.sentence p + p {
  margin-top: 20px;
}
.sentence.type_mb {
  letter-spacing: 0;
  font-size: 1.5rem;
}
@media screen and (max-width: 639px) {
  .sentence.type_mb {
    font-size: 1.1rem;
  }
}
.sentence.type_mb p {
  margin-bottom: 30px;
}

.sentence2 p + p {
  margin-top: 10px;
}

.note {
  padding: 15px;
  margin-top: 10px;
  background: #D2BFB7;
}
.note.type1 {
  background: #fefefe;
}

.box1 {
  position: relative;
  z-index: 4;
  margin-inline: auto;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
}
@media screen and (max-width: 639px) {
  .box1 {
    padding: 15px;
  }
}
.box1.type1 {
  margin-top: -20px;
  max-width: 700px;
}
@media screen and (max-width: 639px) {
  .box1.type1 {
    max-width: 90%;
  }
}

.box2 {
  font-weight: 600;
  margin-top: 30px;
  background: rgba(5, 93, 94, 0.6);
  padding: 20px;
  color: #fff;
}

/* background
----------------------------------*/
.bg-grid {
  background-image: linear-gradient(90deg, transparent 95%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3)), linear-gradient(0deg, transparent 95%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3));
  background-size: 20px 20px;
  background-repeat: repeat;
  position: relative;
}
.bg-grid.type1 .bg-grid:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 110px);
}

.bg-gradient {
  position: relative;
}
.bg-gradient:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(226, 226, 226, 0.94) 0%, rgba(241, 241, 241, 0) 100%);
}

.bg-01 {
  background: linear-gradient(-180deg, #fff 0%, rgba(199, 202, 130, 0.2) 100%);
}

.bg-pattern {
  position: relative;
}
.bg-pattern:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-pattern.jpg);
  background-size: 1000px;
  opacity: 0.7;
}

.bg-base {
  position: relative;
}
.bg-base:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(188, 0, 45, 0.1);
}
.bg-base.type_service:before {
  top: -65px;
  height: calc(100% + 65px);
  z-index: -2;
}
.bg-base.type1 {
  position: relative;
}
.bg-base.type1:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 50px);
  height: calc(100% - 40px);
  transform: translate(-50%, -50%);
  background: url(../img/zara.png) #eceff3;
  background-size: 100px;
  opacity: 0.5;
}
@media screen and (max-width: 1440px) {
  .bg-base.type1:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.bg-base.type2 .inner {
  position: relative;
  z-index: 3;
}
.bg-base.type2:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 50px);
  height: calc(100% - 40px);
  transform: translate(-50%, -50%);
  background: #fefefe;
  border-radius: 15px;
}
@media screen and (max-width: 1440px) {
  .bg-base.type2:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.bg-base.type3 {
  position: relative;
}
.bg-base.type3:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  transform: translate(-50%, -50%);
  background: #4c7ba8;
  opacity: 0.2;
}
@media screen and (max-width: 1100px) {
  .bg-base.type3:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

.bg-gray {
  position: relative;
}
.bg-gray:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(236, 239, 243, 0.5);
  z-index: -2;
}
.bg-gray.type1:before {
  background: #eceff3;
  mask-image: linear-gradient(to right top, #000 0%, #000 64%, rgba(0, 0, 0, 0.4) 80%, rgba(0, 0, 0, 0.2) 100%);
}
.bg-gray.bg-half-bottom {
  background: transparent;
  background-image: linear-gradient(to bottom, transparent 0%, transparent 50%, #eceff3 50.1%, #eceff3 100%);
}
.bg-gray.bg-half-upper {
  background: transparent;
  background-image: linear-gradient(to bottom, #eceff3 0%, #eceff3 50%, transparent 50.1%, transparent 100%);
}

.bg-beige {
  background: #D2BFB7;
}
.bg-beige.type1 {
  background: transparent;
  position: relative;
}
.bg-beige.type1:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: #D2BFB7;
  z-index: -1;
}

.bg-base2 {
  position: relative;
}
.bg-base2:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #BC002D;
  z-index: -1;
}

/* mtitle
----------------------------------*/
.mtitle {
  margin: 0 auto 30px;
  text-align: center;
  line-height: 1.8;
}
.mtitle .eng {
  position: relative;
  display: block;
  line-height: 1.5;
  font-family: "Cardo", serif;
  font-weight: 400;
  color: #BC002D;
  font-size: 1.8rem;
}
.mtitle .ja {
  font-weight: 500;
  font-size: 3rem;
}
.mtitle.white {
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white span {
  color: #fff;
}
.mtitle.white .ja::before {
  background: url(../img/ttl_icon2.png) no-repeat center/contain;
}
.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: 20px;
}
.mtitle.small .eng {
  font-size: 2.5rem;
}
.mtitle.type2 {
  padding-left: 20px;
}
@media screen and (max-width: 639px) {
  .mtitle {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  .mtitle .eng {
    font-size: 2.5rem;
  }
  .mtitle .ja {
    font-size: 1.3rem;
    padding-left: 0px;
  }
  .mtitle .ja::before {
    width: 30px;
    height: 20px;
  }
}

.mtitle2 {
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
  font-size: 2.3rem;
  display: block;
  line-height: 1.5;
  margin-top: 5px;
  position: relative;
  padding-left: 0.8em;
  color: #BC002D;
}
.mtitle2 span {
  font-size: 1.3rem;
  padding-left: 15px;
}
.mtitle2 span:before {
  content: "/";
  padding: 0 5px 0 0;
}
.mtitle2:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  content: "";
  width: 5px;
  height: 1em;
  background: #BC002D;
  border-radius: 100px;
}
@media screen and (max-width: 639px) {
  .mtitle2 {
    font-size: 1.6rem;
  }
}

.mtitle3 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  position: relative;
}
.mtitle3 .ja {
  display: block;
  font-size: 3rem;
  letter-spacing: 0.2em;
  padding-right: 5px;
  font-weight: 400;
}
.mtitle3 .eng {
  display: block;
  font-family: "Cardo", serif;
  font-weight: 400;
  font-size: 1.8rem;
  color: #BC002D;
  padding-left: 3px;
}
@media screen and (max-width: 1025px) {
  .mtitle3 {
    text-align: center;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
  }
}
@media screen and (max-width: 639px) {
  .mtitle3 .ja {
    font-size: 1.6rem;
  }
  .mtitle3 .eng {
    font-size: 1.3rem;
  }
}

.mtitle_maru {
  text-align: center;
}
.mtitle_maru span {
  height: 3em;
  display: block;
  position: relative;
  font-size: 2rem;
  line-height: 3em;
  color: #BC002D;
}
.mtitle_maru span:before {
  background-color: rgba(210, 191, 183, 0.3);
  border-radius: 50%;
  content: "";
  display: block;
  height: 100%;
  left: -20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3em;
  z-index: -1;
}
@media screen and (max-width: 639px) {
  .mtitle_maru span {
    font-size: 1.6rem;
  }
}

.mtitle_line {
  font-size: 2.2rem;
  padding-bottom: 20px;
  position: relative;
  font-weight: 600;
  margin-bottom: 25px;
  color: #BC002D;
  letter-spacing: 0.2rem;
}
.mtitle_line span {
  display: block;
  font-size: 1.4rem;
  color: #BC002D;
}
.mtitle_line:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  opacity: 0.6;
  background-image: repeating-linear-gradient(-45deg, #BC002D, #BC002D 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (max-width: 639px) {
  .mtitle_line {
    font-size: 1.4rem;
  }
  .mtitle_line span {
    font-size: 1.2rem;
  }
}

.mtitle_balloon {
  font-size: 2.4rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.mtitle_balloon span {
  position: relative;
  display: inline-block;
  padding: 0 10px 16px;
  overflow: hidden;
  line-height: 1.3em;
}
.mtitle_balloon span:before, .mtitle_balloon span:after {
  content: "";
  display: block;
  border-bottom: 3px solid #efc770;
  position: absolute;
  width: 50%;
  bottom: 6px;
}
.mtitle_balloon span:before {
  left: -5px;
}
.mtitle_balloon span:after {
  right: -5px;
}
.mtitle_balloon span i {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #efc770;
  border-right: 3px solid #efc770;
  transform: rotate(135deg);
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 2px;
}
.mtitle_balloon .eng {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 5rem;
}
.mtitle_balloon.center {
  text-align: center;
}
.mtitle_balloon.white span:before {
  border-bottom-color: #fefefe;
}
.mtitle_balloon.white span:after {
  border-bottom-color: #fefefe;
}
.mtitle_balloon.white span i {
  border-color: #fefefe;
}
@media all and (max-width: 639px) {
  .mtitle_balloon {
    font-size: 1.7rem;
  }
  .mtitle_balloon .eng {
    font-size: 2.4rem;
  }
}

.mtitle_sub {
  padding-left: 0.5em;
  position: relative;
  border-left: 4px solid #BC002D;
  margin: 8px 0 10px;
  font-size: 1.1em;
  line-height: 1.4;
  text-align: left;
}

.mtitle_top {
  position: relative;
  font-size: 2.8rem;
  padding-bottom: 5px;
  border-bottom: 1px solid #e6e3e1;
  margin-bottom: 30px;
  color: #BC002D;
}
.mtitle_top span a {
  padding-left: 30px;
  font-size: 2rem;
}
.mtitle_top span a:hover {
  color: #4c7ba8;
}

@media screen and (max-width: 639px) {
  .mtitle_top {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.mtitle_box {
  background: #4c7ba8;
  font-size: 1.7rem;
  position: relative;
  padding: 10px 15px;
  margin-bottom: 25px;
  font-weight: 600;
  color: #4b382d;
}
.mtitle_box a {
  color: #fff;
}
.mtitle_box .num {
  display: inline-block;
  margin-right: 8px;
  font-family: "Cardo", serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: #BC002D;
}
.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 screen and (max-width: 639px) {
  .mtitle_box {
    font-size: 1.3rem;
  }
}
.mtitle_box.type1 {
  background: #4c7ba8;
  color: #fefefe;
}
.mtitle_box.type2 {
  background: #BC002D;
}

.mtitle_box2 {
  background: #BC002D;
  font-size: 2.8rem;
  color: #fff;
  position: relative;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.3rem;
  padding: 10px 10px 10px 20px;
  margin-bottom: 25px;
}
.mtitle_box2 .small-cap {
  font-weight: normal;
  font-size: 14px;
}
.mtitle_box2:before {
  background-color: #407059;
  content: "";
  display: block;
  transform: rotate(60deg);
  position: absolute;
  bottom: -10px;
  right: -150px;
  width: 300px;
  height: 280px;
}
@media screen and (max-width: 639px) {
  .mtitle_box2 {
    font-size: 1.3rem;
    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;
  }
}

.mtitle_small {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
  color: #BC002D;
  font-weight: 600;
}
.mtitle_small:before {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #BC002D;
  position: absolute;
  left: 0;
  bottom: -1px;
}
@media screen 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: #BC002D;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 600;
}
.mtitle_category:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ca";
  font-weight: 900;
  margin-right: 8px;
  color: #BC002D;
}
@media screen and (max-width: 639px) {
  .mtitle_category {
    font-size: 1.5rem;
  }
}

.mtext1 {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 639px) {
  .mtext1 {
    font-size: 1.4rem;
  }
}

.mtext2 {
  font-size: 3rem;
  line-height: 1.6;
}
.mtext2.type_border span {
  position: relative;
  display: block;
  width: fit-content;
  padding-bottom: 5px;
  margin-inline: auto;
}
.mtext2.type_border span:before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-image: linear-gradient(90deg, #91e4b2 0, #38ad6d 64%, #2a8e52);
  opacity: 0.8;
}
@media screen and (max-width: 639px) {
  .mtext2 {
    font-size: 1.6rem;
    padding: 4px 8px;
  }
}

.mtext3 {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 639px) {
  .mtext3 {
    font-size: 1.4rem;
  }
}

/* btn
----------------------------------*/
.btn_wrap {
  display: flex;
  justify-content: center;
}

.btn01 a {
  background: #BC002D;
  text-align: center;
  width: 300px;
  margin: 15px auto;
  color: #fff;
  display: block;
  padding: 8px 5px;
  border-radius: 35px;
  max-width: 90%;
}
.btn01 a:hover {
  background: rgb(137, 0, 32.7925531915);
  color: #fefefe;
}
.btn01.mail {
  flex-basis: 100%;
}
.btn01.mail a {
  background: #ffd803;
  margin: 15px auto 25px;
}
.btn01.mail a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 5px;
}
@media screen and (max-width: 639px) {
  .btn01 a {
    width: 60%;
  }
}

.btn02 {
  margin-top: 30px;
}
.btn02 a {
  display: table;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
  color: #BC002D;
  border: 1px solid #BC002D;
  padding: 5px 15px;
  border-radius: 30px;
}
.btn02 a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  margin-left: 8px;
}
.btn02 a:hover {
  background: #BC002D;
  color: #fff;
}
.btn02.right a {
  margin-right: 0;
}
.btn02.left a {
  margin-left: 0;
}
@media screen and (max-width: 639px) {
  .btn02 {
    margin-top: 20px;
  }
  .btn02 a {
    padding: 3px 20px;
    font-size: 1.4rem;
  }
  .btn02.left a {
    margin-left: auto;
    margin-right: auto;
  }
}

.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.1em;
}
.btn03 a .img {
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: all 0.5s ease;
  line-height: 1em;
}
.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.center a {
  margin-right: auto;
}
.btn03.left a {
  margin-left: 0;
}
.btn03.white a {
  color: #fff;
}
.btn03.white a::before {
  background: #fff;
}

/* page-title
----------------------------------*/
.page-title {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 200px;
  margin-left: auto;
  margin-right: auto;
}
.page-title .inner {
  width: 100%;
  height: 100%;
  margin: auto;
  position: relative;
  border-bottom: 1px solid #BC002D;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-title .page-lead {
  color: #BC002D;
  position: relative;
  z-index: 10;
  padding: 20px;
  text-align: center;
}
.page-title .page-lead .ja {
  display: block;
}
.page-title .page-lead .eng {
  font-size: 3em;
  line-height: 1.3;
  font-family: "Cardo", serif;
  font-weight: 400;
}
@media screen and (max-width: 1100px) {
  .page-title {
    margin-top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 639px) {
  .page-title {
    height: 150px;
  }
  .page-title .page-lead .eng {
    font-size: 2em;
  }
}

.mask {
  position: relative;
  clip-path: circle(1%);
  transition: 0.6s ease-in all;
}
.mask.on {
  clip-path: circle(120%);
}

/* tbl
----------------------------------*/
.tbl-company {
  width: 100%;
}
.tbl-company th,
.tbl-company td {
  padding: 20px;
  vertical-align: top;
  border-bottom: 1px rgba(221, 221, 221, 0.7) solid;
}
.tbl-company th {
  width: 20%;
  font-weight: 600;
  text-align: left;
}
@media screen and (max-width: 639px) {
  .tbl-company th,
  .tbl-company td {
    padding: 20px 0;
  }
  .tbl-company th {
    width: 25%;
  }
}

.tbl_normal {
  width: 100%;
}
.tbl_normal.type1 th {
  width: 30%;
  font-size: 2rem;
  line-height: 1;
}
@media screen and (max-width: 639px) {
  .tbl_normal.type1 th {
    font-size: 1.6rem;
    width: 35%;
  }
}
.tbl_normal.type1 td {
  text-align: left;
  font-size: 0.9em;
}
.tbl_normal th,
.tbl_normal td {
  padding: 4px 5px;
  vertical-align: middle;
  border-bottom: 0.9px solid #ccc;
}
.tbl_normal th {
  width: 70%;
  text-align: left;
}
.tbl_normal td {
  text-align: right;
}

.tbl {
  width: 100%;
}
.tbl thead th {
  text-align: center;
}
.tbl thead th.th01 {
  background: rgba(188, 0, 45, 0.6);
}
.tbl thead th.th02 {
  background: #f9f1dd;
}
.tbl th,
.tbl td {
  padding: 15px;
  vertical-align: middle;
  border: 1px solid #ddd;
  background: #fefefe;
}
.tbl th {
  background: #eee;
  text-align: left;
}
.tbl th span {
  font-size: 1.4rem;
}
.tbl th.item1 {
  width: 260px;
}
@media screen and (max-width: 639px) {
  .tbl th.item1 {
    width: 220px;
  }
}
.tbl .fs_xs {
  font-size: 0.8em;
}
.tbl .cell01 {
  width: 45%;
}
.tbl .cell02 {
  width: 30%;
}
@media screen and (max-width: 639px) {
  .tbl th {
    text-align: left;
  }
  .tbl th,
  .tbl td {
    padding: 10px 8px;
    letter-spacing: 0;
  }
}

.tbl_new {
  width: 100%;
}
.tbl_new.type-mini {
  font-size: 1.5rem;
}
.tbl_new.type-mini tr th,
.tbl_new.type-mini tr td {
  padding: 10px;
}
.tbl_new tr:nth-child(odd) th, .tbl_new tr:nth-child(odd) td {
  background: #eceff3;
}
.tbl_new th,
.tbl_new td {
  vertical-align: middle;
  padding: 20px;
}
.tbl_new th {
  width: 18%;
  padding-left: 25px;
  text-align: left;
  letter-spacing: 0;
  font-weight: inherit;
}
@media screen and (max-width: 639px) {
  .tbl_new th {
    width: 25%;
    padding-left: 10px;
  }
}
.tbl_new th.th-long {
  width: 100%;
  text-align: center;
  background: #BC002D;
  color: #fff;
  letter-spacing: 0.15em;
  font-size: 1.1em;
}

.tbl-border {
  width: 100%;
}
.tbl-border.tbl-mini th,
.tbl-border.tbl-mini td {
  padding: 6px 10px;
  border-width: 1px;
  font-size: 14px;
  letter-spacing: 0.1rem;
}
.tbl-border th,
.tbl-border td {
  padding: 15px;
  border-bottom: 2px solid #fff;
  vertical-align: middle;
}
@media screen and (max-width: 639px) {
  .tbl-border th,
  .tbl-border td {
    padding: 10px;
    font-size: 1.2rem;
  }
}
.tbl-border .small {
  font-size: 0.9em;
  background: #fff;
  color: #4c7ba8;
  margin-right: 5px;
  padding: 0px 4px;
}
.tbl-border th {
  width: 22%;
  text-align: left;
  font-weight: 600;
  border-bottom-color: #BC002D;
}
.tbl-border th.th-1 {
  width: 45%;
}
@media screen and (max-width: 639px) {
  .tbl-border th {
    width: 30%;
  }
}

.price {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #bc0926;
}
@media screen and (max-width: 639px) {
  .price {
    font-size: 1.4rem;
  }
}

.tbl0 {
  width: 100%;
  font-size: 1.4rem;
}
.tbl0 th,
.tbl0 td {
  padding: 5px;
  border: 0;
  color: #333;
  border-bottom: 0.9px solid #ddd;
}
.tbl0 th {
  padding-left: 0;
  text-align: left;
  background: none;
  width: 5em;
}
.tbl0 th:after, .tbl0 th:before {
  display: none;
}
.tbl0.type1 th {
  width: 10em;
}
@media screen and (max-width: 639px) {
  .tbl0 {
    font-size: 1.1rem;
  }
  .tbl0 th,
  .tbl0 td {
    display: block;
    width: 100%;
  }
  .tbl0 th {
    border-bottom: 0;
  }
  .tbl0.type1 th,
  .tbl0.type1 td {
    display: table-cell;
    width: auto;
  }
  .tbl0.type1 th {
    width: 130px;
    border-bottom: 0.9px solid #ddd;
  }
}

/* ggmap
----------------------------------*/
.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}
.ggmap.type1 {
  padding-bottom: 50%;
}
.ggmap.type2 {
  padding-bottom: 52%;
  border-radius: 20px;
}
.ggmap.youtube {
  padding-bottom: 56.25%;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 639px) {
  .ggmap {
    padding-bottom: 65.25%;
  }
}

/* list
----------------------------------*/
.list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 4%;
}
@media screen and (max-width: 639px) {
  .list2 {
    grid-template-columns: 1fr;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
}
.list2.ai-center {
  align-items: center;
}
.list2.jc-center {
  justify-content: center;
}
.list2 > li,
.list2 .child {
  position: relative;
}
.list2 > li.child-100,
.list2 .child.child-100 {
  grid-column: 2fr;
}

.list3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 4%;
}
.list3.type1 li,
.list3.type1 .child {
  background: #fefefe;
  padding: 15px;
  border-radius: 8px;
  line-height: 1.6;
  font-size: 1.1em;
}
@media screen and (max-width: 639px) {
  .list3.type1 li,
  .list3.type1 .child {
    padding: 20px 10px 10px;
  }
}
.list3 li {
  position: relative;
}
@media screen and (max-width: 639px) {
  .list3 {
    width: 95%;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    gap: 25px 0;
  }
}

.list4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 2%;
}
@media screen and (max-width: 1025px) {
  .list4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 639px) {
  .list4 {
    grid-template-columns: 1fr;
  }
}

.list5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 5%;
}
@media screen and (max-width: 1100px) {
  .list5 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1025px) {
  .list5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 639px) {
  .list5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.column2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.column2.row_r {
  flex-direction: row-reverse;
}
.column2.tp {
  align-items: flex-start;
}
.column2.js-arun {
  justify-content: space-around;
}
.column2 .child {
  width: 48%;
}
.column2 .child01 {
  width: 40%;
}
.column2 .child02 {
  width: 55%;
}
.column2 .child03 {
  width: 35%;
}
.column2 .child04 {
  width: 60%;
}
.column2 .child05 {
  width: 25%;
}
.column2 .child06 {
  width: 70%;
}
.column2 .child-txt {
  position: absolute;
  width: 55%;
  right: 0;
  padding: 35px 30px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  border-radius: 10px;
}
.column2 .child-txt.type1 {
  right: auto;
  left: 0;
}
.column2 .child-img {
  width: 50%;
  border-radius: 10px;
  overflow: hidden;
}
.column2 .child-img.type1 {
  margin-left: auto;
}
.column2 .child-img.type2 {
  margin-left: 10%;
  margin-right: auto;
}
.column2 .child-img .child-img_deco img {
  aspect-ratio: 1100/600;
}
.column2 .child-img .child-img_deco::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -50px;
  background: #f5f1e9;
  width: 66%;
  height: 90%;
  z-index: -2;
}
@media screen and (max-width: 765px) {
  .column2 .child-img .child-img_deco::after {
    right: 0;
  }
}
@media screen and (max-width: 765px) {
  .column2 {
    flex-direction: column;
  }
  .column2 .child,
  .column2 .child01,
  .column2 .child02,
  .column2 .child03,
  .column2 .child04,
  .column2 .child-img {
    width: 100%;
  }
  .column2 .child.bm10,
  .column2 .child01.bm10,
  .column2 .child02.bm10,
  .column2 .child03.bm10,
  .column2 .child04.bm10,
  .column2 .child-img.bm10 {
    margin-bottom: 10px;
  }
  .column2 .child.bm20,
  .column2 .child01.bm20,
  .column2 .child02.bm20,
  .column2 .child03.bm20,
  .column2 .child04.bm20,
  .column2 .child-img.bm20 {
    margin-bottom: 20px;
  }
  .column2 .child.column2-img,
  .column2 .child01.column2-img,
  .column2 .child02.column2-img,
  .column2 .child03.column2-img,
  .column2 .child04.column2-img,
  .column2 .child-img.column2-img {
    order: -1;
    margin-bottom: 30px;
  }
  .column2 .child img,
  .column2 .child01 img,
  .column2 .child02 img,
  .column2 .child03 img,
  .column2 .child04 img,
  .column2 .child-img img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .column2 .child-txt {
    position: relative;
    width: 100%;
    margin: 0 auto !important;
    padding: 20px 15px !important;
    border-radius: 0 0 10px 10px;
  }
  .column2 .child-img {
    order: -1;
    margin: auto !important;
    border-radius: 10px 10px 0 0;
  }
}

.column3 {
  display: flex;
  flex-wrap: wrap;
}
.column3.type1 {
  align-items: center;
}
.column3 .child {
  width: 32%;
  margin-right: 2%;
}
.column3 .child:nth-child(3n) {
  margin-right: 0;
}
.column3.type2 .child {
  margin-bottom: 30px;
  padding: 15px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.05));
}
.column3.type2 .child .mtitle-bll {
  letter-spacing: 0;
}
.column3.type2 .child:nth-child(2n) .mtitle-bll::after {
  background: #4c7ba8;
}
.column3.type2 .child:nth-child(3n) .mtitle-bll::after {
  background: #4c7ba8;
}
@media screen and (max-width: 1025px) {
  .column3 .child {
    width: 48%;
  }
  .column3 .child.bm20 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 639px) {
  .column3 .child {
    width: 98%;
  }
}

.list_common li {
  padding-bottom: 5px;
  padding-left: 1rem;
  margin-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.list_common.common_big li {
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.list_check.type1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 4%;
}
.list_check.type1 li {
  background: #BC002D;
  padding: 12px 8px 12px 24px;
  color: #fff;
}
.list_check li {
  padding: 4px;
  padding-left: 30px;
  font-weight: 600;
  font-size: 1.1em;
  position: relative;
  margin-bottom: 5px;
}
.list_check li a {
  color: #BC002D;
  border-bottom: 1px dotted #BC002D;
}
.list_check li:before {
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
  width: 10px;
  height: 2px;
  background: #4c7ba8;
}
@media screen 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;
  margin-bottom: 4px;
  border-bottom: 1px solid #ccc;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #BC002D;
}
.list_check2 li a {
  color: #111;
}
.list_check2 li a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  margin-left: 4px;
  font-size: 0.8em;
  color: #4b382d;
}
.list_check2.type1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
}
@media screen and (max-width: 639px) {
  .list_check2.type1 {
    grid-template-columns: 1fr;
    gap: 5px 0;
  }
}
.list_check2.type_blue li:before {
  color: #4c7ba8;
}

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

.list-inline2 {
  text-align: center;
}
.list-inline2 li {
  display: inline-block;
  padding: 4px 15px;
  background: #fefefe;
  border: 1px solid #cfd4d5;
  font-weight: 600;
  border-radius: 30px;
}
.list-inline2 li:not(:last-child) {
  margin-right: 8px;
}
.list-inline2.type_left {
  text-align-last: left;
}

.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 {
  margin-bottom: 10px;
  font-weight: 600;
}
.ol-list li:before {
  position: relative;
  counter-increment: number;
  content: counter(number);
  background: #4c7ba8;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 5px;
  line-height: 22px;
  text-align: center;
  font-size: 0.9em;
  color: #fff;
  border-radius: 100%;
}
@media screen 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: 12px;
  }
}

.list_disc li {
  padding: 5px 0;
}
.list_disc li a {
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.list_disc li:before {
  content: "●";
  margin-right: 5px;
  color: #BC002D;
  font-size: 1rem;
  display: inline-block;
  transform: translateY(-3px);
}
.list_disc.type_fit {
  width: fit-content;
}
.list_disc.type1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
}
.list_disc.type1 li {
  margin-bottom: 5px;
  border-bottom: 1px dashed #ccc;
}
@media screen and (max-width: 320px) {
  .list_disc.type1 {
    grid-template-columns: 1fr;
    gap: 5px 0;
  }
}

.faq-dl .faq-inner {
  padding: 10px;
  margin-bottom: 20px;
  counter-increment: title;
}
.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 20px 10px 64px;
}
.faq-dl .faq-inner dt:before,
.faq-dl .faq-inner dd:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 45px;
  height: 45px;
  border-radius: 0 0 10px 0;
  font-size: 2.6rem;
  font-family: "Cardo", serif;
  font-weight: 400;
  line-height: 45px;
  text-align: center;
}
@media screen and (max-width: 639px) {
  .faq-dl .faq-inner dt,
  .faq-dl .faq-inner dd {
    padding: 8px 10px 8px 54px;
  }
  .faq-dl .faq-inner dt:before,
  .faq-dl .faq-inner dd:before {
    font-size: 2.2rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.faq-dl .faq-inner dt {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1.1em;
}
.faq-dl .faq-inner dt:before {
  content: "Q" counter(title);
  color: #fff;
  background: #BC002D;
}
.faq-dl .faq-inner dd:before {
  content: "A" counter(title);
  color: #BC002D;
  background: rgba(249, 241, 221, 0.7);
}

.history {
  position: relative;
}
.history:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 20px;
  height: 100%;
  background-image: linear-gradient(to top, #BC002D, #BC002D);
  opacity: 0.7;
  border-radius: 20px;
}
.history .history-inner {
  position: relative;
  padding-left: 70px;
}
.history .history-inner:before {
  position: absolute;
  content: "";
  left: 12px;
  top: 15px;
  width: 40px;
  height: 1px;
  background: #BC002D;
}
.history .history-inner:after {
  position: absolute;
  content: "";
  left: 6px;
  top: 10px;
  width: 10px;
  height: 10px;
  background: #055d5e;
  border-radius: 50%;
}
@media screen and (max-width: 639px) {
  .history .history-inner {
    padding-left: 45px;
  }
  .history .history-inner:before {
    width: 25px;
  }
}
.history .history-inner:not(:last-of-type) {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(170, 170, 170, 0.5);
}
.history .history-inner dt {
  font-weight: 600;
  color: #BC002D;
  font-size: 1.15em;
}
.history .history-inner dt span {
  font-size: 1.5rem;
  padding: 0 3px;
}
.history .history-inner dt span:before {
  content: "(";
}
.history .history-inner dt span:after {
  content: ")";
}
@media screen and (max-width: 639px) {
  .history .history-inner dt {
    font-size: 1.2em;
  }
  .history .history-inner dt span {
    font-size: 1.1rem;
  }
}
.history .history-inner dd {
  padding: 14px 18px;
}
@media screen and (max-width: 639px) {
  .history .history-inner dd {
    padding: 12px;
  }
}

/* blog
----------------------------------*/
#main .blog-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 4%;
}
@media screen and (max-width: 639px) {
  #main .blog-wrap {
    grid-template-columns: 1fr;
  }
}

.blog-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 4%;
}
.blog-wrap a {
  display: block;
  position: relative;
  height: 100%;
}
.blog-wrap a:hover .morebtn {
  background: #333;
  color: #bca259;
}
@media screen and (max-width: 639px) {
  .blog-wrap {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

.pages {
  margin-top: 35px;
  overflow: hidden;
}
.pages > div {
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 10px;
  width: 45%;
}
.pages > div:first-child {
  padding-right: 20px;
  float: left;
}
.pages > div:last-of-type {
  padding-left: 20px;
  border-left: 1px solid #ccc;
  float: right;
}
@media screen and (max-width: 639px) {
  .pages > div {
    width: 100%;
    font-size: 1.3rem;
  }
  .pages > div:last-of-type {
    border: none;
  }
}
.pages > div a {
  display: block;
}

.blog-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.6/1;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 639px) {
  .blog-img {
    width: 90%;
    margin-inline: auto;
  }
}

.blog-month {
  margin-bottom: 10px;
}
.blog-month ul li {
  width: 100%;
  padding: 5px 0;
  margin-bottom: 5px;
  letter-spacing: 0;
}
.blog-month ul li a {
  display: inline-block;
  color: #BC002D;
  text-align: center;
}
.blog-month ul li a:hover {
  color: #4c7ba8;
}

.blog-title {
  line-height: 1.5;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .blog-title {
    font-size: 1.2rem;
  }
}

.blog-date {
  display: inline-block;
  padding: 8px 0 8px;
  line-height: 1;
  color: #BC002D;
}
.blog-date .year-time {
  display: inline-block;
  margin-right: 4px;
  color: #777;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 639px) {
  .blog-date .year-time {
    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: #eceff3;
}
.category_nav li:last-child a {
  border-bottom: none;
}

.blog-detail {
  padding: 15px 10px;
}

.blog-page-detail {
  display: flex;
}
.blog-page-detail .blog-date2 {
  font-weight: 600;
  color: #BC002D;
  margin-bottom: 20px;
}

.btn-more {
  margin-top: 20px;
  position: relative;
  z-index: 4;
}
.btn-more a {
  display: block;
  width: 11em;
  text-align: center;
  font-family: "Cardo", serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #fff;
  padding: 8px 10px;
  background: #BC002D;
  border-radius: 40px;
  margin-left: auto;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.btn-more a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  font-weight: 900;
  margin-left: 4px;
  display: inline-block;
  position: relative;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.btn-more a:hover {
  background: #BC002D;
}
.btn-more a:hover:after {
  transform: translateX(4px);
}
@media screen and (max-width: 639px) {
  .btn-more {
    margin-right: 10px;
  }
  .btn-more a {
    font-size: 13px;
  }
}

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

.hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.spbr {
  display: none;
}

.color1 {
  color: #BC002D;
}

.color2 {
  color: #4c7ba8;
}

.brown {
  color: #4b382d;
}

.num {
  font-weight: 600;
}
.num a {
  color: #BC002D;
  font-size: 2.8rem;
  text-align: center;
  margin-left: 5px;
}
@media screen 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: #fd7c31;
}

.txt-link {
  font-weight: 600;
  text-decoration: underline;
}
.txt-link:hover {
  text-decoration: none;
}
.txt-link.map:before {
  font-family: "Font Awesome 5 Free";
  content: "\f3c5";
  font-weight: 900;
  margin-right: 4px;
}

.shadow {
  box-shadow: rgba(75, 56, 45, 0.1) 0px 18px 50px -10px;
}

.img-cover {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}

.fukidashi {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto 20px;
}
.fukidashi.type1 {
  margin-top: 0;
}
.fukidashi span {
  position: relative;
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: 12px 20px;
  border-radius: 40px;
  background: #eceff3;
  font-size: 2.6rem;
  color: #7c232a;
  line-height: 1.2;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  .fukidashi span {
    font-size: 1.8rem;
  }
}
.fukidashi span:before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 20px 0 20px;
  border-color: #eceff3 transparent transparent transparent;
  transform: translateX(-50%);
  z-index: -1;
}

.arrow {
  font-size: 5rem;
  color: #bc0926;
}

/* breadcrumb
----------------------------------*/
.breadcrumb {
  max-width: 1100px;
  margin: 20px auto 20px;
  font-size: 1.2rem;
  text-align: center;
}
.breadcrumb li {
  display: inline;
  color: #777;
}
.breadcrumb li a {
  color: #BC002D;
}
.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}
@media screen and (max-width: 639px) {
  .breadcrumb {
    font-size: 12px;
  }
}

/* gallery(photobox)
----------------------------------*/
.gallery_ul {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-bottom: -4%;
}
@media screen 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%;
  object-fit: contain;
  font-family: "object-fit:contain;";
  object-position: 50% 50%;
}
@media screen and (max-width: 1025px) {
  .gallery_ul > li {
    width: 48%;
  }
}
@media screen and (max-width: 639px) {
  .gallery_ul > li {
    width: 85%;
    margin: 0 auto 30px;
  }
  .gallery_ul > li .photobox-wrap {
    height: 180px;
  }
}

.comment {
  font-size: 1.4rem;
  letter-spacing: 0;
  padding: 0 5px;
}
@media screen and (max-width: 639px) {
  .comment {
    font-size: 12px;
  }
}

/*photoギャラリー*/
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 3%;
}
@media screen and (max-width: 639px) {
  .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
.gallery li a {
  background: rgba(210, 191, 183, 0.2);
  display: block;
  text-align: center;
  padding: 0px;
  height: 240px;
}
.gallery li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
  /*IE対策*/
}
.gallery li .ttl {
  color: #BC002D;
  font-size: 0.95em;
  margin-top: 10px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.gallery li .concept {
  letter-spacing: 0.08em;
  font-size: 0.9em;
  line-height: 1.4;
}

@media screen and (max-width: 1025px) {
  .gallery li a {
    height: 200px;
  }
  .gallery li p {
    font-size: 12px;
  }
}
.prv dt {
  color: #BC002D;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

/* anchor link
----------------------------------*/
#a01,
#a02,
#a03,
#a04,
#a05,
#a06,
#a07,
#a08,
#a09,
#a10,
#a11,
#a12,
#contact,
.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}
@media screen and (max-width: 639px) {
  #a01,
  #a02,
  #a03,
  #a04,
  #a05,
  #a06,
  #a07,
  #a08,
  #a09,
  #a10,
  #a11,
  #a12,
  #contact,
  .anchor {
    padding-top: 0;
    margin-top: 0;
  }
}

/* slider
----------------------------------*/
.slide_list,
.slide_list2 {
  gap: 30px;
  text-align: center;
}
.slide_list img,
.slide_list2 img {
  height: 300px;
  width: 300px;
  border-radius: 30px;
  object-fit: cover;
  filter: grayscale(0.4);
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
}
.slide_list img:hover,
.slide_list2 img:hover {
  filter: grayscale(0);
}
@media screen and (max-width: 1100px) {
  .slide_list img,
  .slide_list2 img {
    height: 300px;
    width: 300px;
  }
}

.slide_list2 {
  gap: 0;
}
.slide_list2 img {
  border-radius: 0;
  width: 600px;
  height: 500px;
  filter: brightness(0.5);
}
.slide_list2 img:hover {
  filter: brightness(0.5);
}
@media screen and (max-width: 1025px) {
  .slide_list2 img {
    height: 300px;
    width: 33.3vw;
  }
}
@media screen and (max-width: 639px) {
  .slide_list2 img {
    width: 50vw;
    height: 300px;
  }
}

.slide_wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.slide_wrapper .slide_txt {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide_wrapper .slide_txt .btn01 a {
  margin-bottom: 0;
}
.slide_wrapper .slide_txt span {
  color: #fefefe;
  display: block;
  text-align: center;
  font-family: "Cardo", serif;
}
.slide_wrapper .slide_txt span:first-child {
  font-size: 5rem;
}
@media screen and (max-width: 1025px) {
  .slide_wrapper .slide_txt span:first-child {
    font-size: 3rem;
  }
}

/* contact form
---------------------------------*/
#form-box {
  min-height: 300px;
  margin-bottom: 20px;
}
#form-box .form-pattern-2 {
  width: 100% !important;
  padding: 0 !important;
  background: none !important;
}
#form-box .form-pattern-2 form dl dt {
  font-weight: 400;
  width: 210px;
}
@media screen and (max-width: 1025px) {
  #form-box .form-pattern-2 form dl dt {
    float: none !important;
    width: auto !important;
  }
}
#form-box .form-pattern-2 form dl dt span.required:before {
  background: #BC002D;
  margin-right: 8px;
}
#form-box .form-pattern-2 form dl dd:not(.pattern-exclusion) {
  padding-left: 220px;
}
@media screen and (max-width: 1025px) {
  #form-box .form-pattern-2 form dl dd:not(.pattern-exclusion) {
    padding-left: 0 !important;
    padding-top: 0 !important;
  }
}
#form-box .form-pattern-2 form dl dd .mtitle_sub {
  font-weight: 400;
  font-size: 0.9em;
}
#form-box .form-pattern-2 form dl dd .textarea,
#form-box .form-pattern-2 form dl dd textarea {
  border: 0;
  height: auto !important;
  padding: 15px;
  width: 100%;
  -webkit-appearance: none;
  background: #eee;
}
#form-box .form-pattern-2 .form-thanks-msg {
  box-shadow: 0 0 0 2px #ddd !important;
  background: rgba(255, 255, 255, 0.8) !important;
}
#form-box .form-pattern-2 .form-thanks-msg .back-home-btn a {
  border: 1px solid #3b3939;
  color: #3b3939 !important;
}
#form-box .form-pattern-2 .form-thanks-msg .back-home-btn a:hover {
  background: rgba(76, 123, 168, 0.2);
}
#form-box .form-pattern-2 .select-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#form-box .form-pattern-2 .select-group p {
  margin: 0 5px;
  font-weight: 600;
}
@media screen and (max-width: 639px) {
  #form-box .form-pattern-2 .select-group .select-wrap {
    margin-top: 8px;
  }
}
#form-box .form-pattern-2 input[type=text],
#form-box .form-pattern-2 textarea {
  font-size: 16px;
}
@media screen and (max-width: 639px) {
  #form-box .form-pattern-2 input[type=text],
  #form-box .form-pattern-2 textarea {
    transform: scale(0.9);
    margin-left: -5px;
  }
}
#form-box .form-pattern-2 input[type=radio] {
  margin: 7px 3px 10px 7px !important;
}
#form-box .form-pattern-2 .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 13em;
  background-color: #ffffff;
  font-size: 1.7rem;
  color: #333;
}
#form-box .form-pattern-2 .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;
  font-weight: 600;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}
#form-box .form-pattern-2 .submit-btn {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  transition: all 0.2s ease-in-out;
  border: 1px solid #BC002D;
  font-weight: 600;
  padding: 18px 5px;
  margin: 0 auto;
  width: 250px;
  background: #BC002D;
  border-radius: 40px;
  font-size: 15px;
  font-family: "Noto Sans JP", "YakuHanJP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
#form-box .form-pattern-2 .submit-btn:hover {
  background: #fff;
  color: #BC002D;
}
#form-box .form-pattern-2 .submit-btn:before {
  font-weight: normal;
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-weight: 900;
  margin-right: 10px;
}
#form-box .form-pattern-2 .select-down:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0ab";
  font-weight: 900;
  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: #BC002D;
}

label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}
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;
}
label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 2px;
  top: 4px;
  background-color: #BC002D;
  z-index: 1;
}
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;
}
label.radio_text input[type=radio]:checked {
  box-shadow: none;
}
label.radio_text input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #eeebda;
}
label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
}
label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
}
label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #BC002D;
  border-bottom: 3px solid #BC002D;
  transform: rotate(45deg);
  z-index: 1;
}
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;
}
label.checkbox_text input[type=checkbox]:checked {
  box-shadow: none;
}
label.checkbox_text input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}
label.checkbox_text input[type=checkbox]:focus {
  box-shadow: 41px 0px #eee;
}

.pass_submit {
  border: 0;
  border-radius: 0;
  color: inherit;
  appearance: none;
  font-size: 1em;
  line-height: 1.2;
  padding: 0.5em var(--padding-x);
  border-width: 2px;
  border-style: solid;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-color: transparent;
  background: #BC002D;
  color: #fff;
  font-weight: 600;
  --padding-x: 1.2em;
}

.textarea,
textarea {
  border: 0;
  padding: 15px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  background: #eee;
  border-bottom: 1px solid rgba(207, 212, 213, 0.4);
}

.pass-box {
  max-width: 600px;
  margin: 20px auto;
}
.pass-box form {
  display: flex;
}
.pass-box form .textarea {
  flex: 1;
  margin-right: 10px;
}

.service-anchor-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
}
.service-anchor-list li:not(:last-of-type) {
  margin-right: 10px;
}
.service-anchor-list li a {
  position: relative;
  display: block;
  padding: 8px 30px 8px 16px;
  background: #fff;
  border-radius: 50px;
  font-size: 1.4rem;
  color: #BC002D;
  font-weight: 600;
  transition: 0.3s all cubic-bezier(0.18, 0.06, 0.23, 1);
}
.service-anchor-list li a:after {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  content: "\f063";
  font-weight: 900;
  color: #BC002D;
  font-size: 0.8em;
}
.service-anchor-list li a:hover {
  background: #055d5e;
  color: #fff;
}
@media screen and (max-width: 639px) {
  .service-anchor-list {
    justify-content: space-between;
    max-width: 90%;
    margin-inline: auto;
  }
  .service-anchor-list li {
    width: 48%;
  }
  .service-anchor-list li:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .service-anchor-list li a {
    font-size: 1.2rem;
  }
}

.name {
  display: flex;
  align-items: center;
}
.name .role {
  margin-right: 8px;
}
.name .ja {
  font-weight: 600;
  font-size: 1.3em;
  color: #4c7ba8;
}
@media screen and (max-width: 639px) {
  .name {
    justify-content: center;
  }
}

.thanks {
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 639px) {
  .thanks {
    max-width: 95%;
    padding: 30px 20px;
  }
}

.policy {
  padding: 30px;
  background: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  letter-spacing: 0;
}
.policy .inner {
  padding-right: 40px;
}
@media screen and (max-width: 639px) {
  .policy {
    font-size: 1.15rem;
  }
  .policy .inner {
    padding-right: 15px;
  }
}

/* category_tab
----------------------------------*/
.category_tab {
  position: relative;
  display: flex;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.category_tab li {
  width: 49.5%;
  border: 1px solid #cfd4d5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category_tab li span {
  cursor: pointer;
  display: block;
  position: relative;
  padding: 16px 8px;
  font-weight: 400;
}
.category_tab li.active {
  background: rgba(76, 123, 168, 0.1);
}
.category_tab.type2 {
  margin-bottom: 0;
}
.category_tab.type2 li {
  width: 48%;
}
@media screen and (max-width: 639px) {
  .category_tab li {
    width: 48%;
  }
}

.category_contents {
  display: none;
  padding: 0 20px;
}
@media screen and (max-width: 639px) {
  .category_contents {
    padding: 0;
  }
}

/* accordion
----------------------------------*/
.accordion {
  overflow: hidden;
}
.accordion dt,
.accordion dd {
  position: relative;
  padding: 1em;
}
.accordion dt {
  border: 1px solid #cfd4d5;
  cursor: pointer;
  letter-spacing: 0.05em;
}
.accordion dt span {
  font-size: 1.4rem;
}
.accordion dt:after {
  position: absolute;
  content: "＋";
  right: 20px;
  top: 50%;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.accordion dt.on:after {
  transform: translateY(-50%) rotate(45deg);
}
.accordion dd {
  display: none;
  padding: 30px;
  background: rgba(255, 255, 255, 0.6);
  border-left: 1px solid #cfd4d5;
  border-right: 1px solid #cfd4d5;
  border-bottom: 1px solid #cfd4d5;
  border-radius: 10px;
}
.accordion.faq dt {
  border: 1px solid #fff;
  color: #fff;
}
.accordion.faq dt span {
  font-family: "Cardo", serif;
  padding-right: 0.5em;
  font-size: 1.5em;
}
.accordion.faq dd {
  border-radius: 0;
}
@media screen and (max-width: 639px) {
  .accordion {
    margin-top: 30px;
    border-radius: 5px;
  }
  .accordion dt,
  .accordion dd {
    padding: 0.8em 0.6em;
  }
  .accordion dt {
    font-size: 1.4rem;
  }
  .accordion dt span {
    font-size: 1.1rem;
  }
  .accordion dt:after {
    right: 8px;
  }
  .accordion dd {
    padding: 15px;
  }
  .accordion.faq {
    margin-top: 10px;
    border-radius: 0;
  }
  .accordion.faq dt {
    padding-right: 2em;
  }
}

.img_r {
  border-radius: 10px;
}

.top_menu {
  position: relative;
}
.top_menu .ttl {
  font-size: 3rem;
  line-height: 1.4em;
  letter-spacing: 0;
  font-weight: 600;
  margin-top: 20px;
  color: #BC002D;
}
@media screen and (max-width: 639px) {
  .top_menu .ttl {
    font-size: 2.2rem;
    line-height: 1.4em;
    letter-spacing: 0;
    font-weight: 600;
    margin-top: 10px;
  }
}
.top_menu .ttl span {
  color: #4c7ba8;
}
.top_menu .main {
  margin-top: 20px;
  letter-spacing: 0;
  font-weight: 500;
}
.top_menu a {
  display: block;
  width: 250px;
  background: #4c7ba8;
  color: #fff;
  transition: 0.4s;
  text-align: center;
  border-radius: 100px;
  padding: 10px 0;
  letter-spacing: 0;
  font-weight: 500;
  margin-top: 40px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.4s;
}

.merit {
  display: flex;
  box-shadow: 2px 4px 6px -1px rgba(0, 0, 0, 0.15);
  border: 1px solid #ddd;
}
.merit .merit_ttl {
  background: #BC002D;
  color: #fff;
  padding: 20px;
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.merit .detail {
  width: 80%;
  padding: 20px;
}
@media screen and (max-width: 639px) {
  .merit {
    display: block;
  }
  .merit .merit_ttl {
    width: 100%;
    padding: 10px;
  }
  .merit .detail {
    width: 100%;
  }
}

.prof_image {
  text-align: center;
  margin-bottom: 30px;
}
.prof_image img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: contain;
}
@media screen and (max-width: 639px) {
  .prof_image {
    margin-bottom: 20px;
  }
  .prof_image img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: contain;
  }
}

#fix-contants {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 1025px) {
  #fix-contants {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
    padding: 0;
  }
}
#fix-contants #fixed_side {
  width: 280px;
  position: sticky;
  left: 0;
  top: 0px;
  margin-bottom: 40px;
  padding-top: 80px;
}
@media screen and (max-width: 1025px) {
  #fix-contants #fixed_side {
    position: none;
    margin: 0 auto;
  }
}
#fix-contants #fixed_main {
  flex: 1;
  margin-left: 50px;
  padding-top: 80px;
}
@media screen and (max-width: 1025px) {
  #fix-contants #fixed_main {
    flex: 0 1 auto;
    margin: 0;
    width: 100%;
  }
}

.sidenavi_wrap {
  margin-top: 50px;
  background: #fff;
  padding: 0 10px;
  overflow: hidden;
  box-shadow: 2px 2px 15px -5px rgba(75, 56, 45, 0.1);
}
.sidenavi_wrap .title-mini a {
  display: block;
  background: #D2BFB7;
  color: #111;
  text-align: center;
  padding: 4px 0;
  margin: 0 -10px;
}
.sidenavi_wrap .title-mini a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-weight: 900;
  margin-left: 4px;
  font-size: 14px;
  color: #BC002D;
}
.sidenavi_wrap .title-mini2 {
  background: #BC002D;
  color: #fff;
  padding: 4px 0;
  margin: 0 -10px;
  text-align: center;
  font-size: 110%;
}
.sidenavi_wrap .side-navi {
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 10px 0;
}
.sidenavi_wrap .side-navi > li a {
  display: block;
  color: #4b382d;
  position: relative;
  padding: 8px 0;
  transition: all 1s ease;
}
.sidenavi_wrap .side-navi > li a span {
  font-size: 90%;
}
.sidenavi_wrap .side-navi > li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  margin-right: 10px;
  color: #4c7ba8;
  font-size: 0.8em;
}
.sidenavi_wrap .side-navi > li a:hover {
  background: #f9f1dd;
}
.sidenavi_wrap .side-navi > li a:hover:before {
  color: #BC002D;
}
.sidenavi_wrap .side-navi > li:not(:last-of-type) {
  border-bottom: 1px solid #e9e9e9;
}

.tcenter {
  text-align: center;
}

.title-big {
  position: relative;
  text-align: center;
  margin-bottom: 48px;
  z-index: 3;
}
.title-big.white {
  color: #fff;
}
.title-big.white:before {
  color: #fff;
}
.title-big.b-m0 {
  margin-bottom: 0;
}
.title-big:before {
  position: relative;
  content: attr(data-title);
  display: block;
  width: fit-content;
  margin-inline: auto;
  font-size: 2.8em;
  font-family: "Cardo", serif;
  font-weight: 400;
  color: #BC002D;
  line-height: 1.2;
  white-space: nowrap;
}
.title-big.type-left {
  text-align: left;
}
.title-big.type-left:before {
  margin-left: 0;
}
.title-big.type-left .ja {
  justify-content: flex-start;
}
@media screen and (max-width: 1025px) {
  .title-big.type-left {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
.title-big.type1:before {
  color: #fd7c31;
}
.title-big.type2 {
  color: #121212;
}
.title-big.type2 .ja {
  width: fit-content;
  background: #fff;
  margin-inline: auto;
  padding: 0 6px;
}
.title-big.type2:before {
  color: transparent;
  background-image: radial-gradient(circle, #BC002D 0%, #BC002D 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
}
.title-big.type-white:before {
  color: #D2BFB7;
}
.title-big.type-white .ja {
  color: #fff;
}
.title-big .ja {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  font-size: 2rem;
  font-weight: 600;
}
.title-big .small {
  font-size: 0.7em;
}
@media screen and (max-width: 1100px) {
  .title-big .ja {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 639px) {
  .title-big:before {
    font-size: 2.2em;
  }
  .title-big .ja {
    font-size: 1.2rem;
  }
  .title-big .ja:after {
    width: 12px;
    height: 12px;
    margin-right: 10px;
  }
  .title-big .eng {
    font-size: 2.6rem;
  }
}

.menu_list .inner {
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 639px) {
  .menu_list .inner {
    display: block;
  }
}
.menu_list .inner .item {
  position: relative;
  width: calc((100% - 30px) / 2);
}
.menu_list .inner .item:nth-child(2)::before {
  position: absolute;
  background-color: currentcolor;
  content: "";
  display: block;
  height: 100%;
  left: -10px;
  top: 0px;
  width: 1px;
}
.menu_list .inner .item a {
  padding: 30px 40px;
  display: block;
  transition: all 0.3s ease;
}
.menu_list .inner .item a .ttl {
  color: #3b3939;
  font-size: 2.2rem;
}
.menu_list .inner .item a .eng {
  font-family: "Cardo", serif;
  font-size: 1.5rem;
  color: #BC002D;
  padding-left: 15px;
}
.menu_list .inner .item a .more_txt {
  text-align: right;
}
.menu_list .inner .item a img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}
.menu_list .inner .item a:hover {
  background: rgba(76, 123, 168, 0.4);
  border-radius: 10px;
}
@media screen and (max-width: 1100px) {
  .menu_list .inner .item a {
    padding: 20px 15px;
  }
}
@media screen and (max-width: 1025px) {
  .menu_list .inner .item a .ttl {
    font-size: 2.8rem;
  }
  .menu_list .inner .item a img {
    height: 180px;
  }
}
@media screen and (max-width: 639px) {
  .menu_list {
    border-top: 0px solid #000;
    border-bottom: 0px solid #000;
  }
  .menu_list .inner .item {
    width: 100%;
    border-bottom: 1px solid #000;
  }
  .menu_list .inner .item:nth-child(2)::before, .menu_list .inner .item:nth-child(3)::before {
    display: none;
  }
  .menu_list .inner .item:nth-child(1) {
    border-top: 1px solid #000;
  }
  .menu_list .inner .item a img {
    margin-bottom: 0;
  }
  .menu_list .inner .item a .ttl {
    font-size: 2.5rem;
  }
}

.profile .item {
  margin-bottom: 50px;
}
.profile .item:last-child {
  margin-bottom: 0;
}
.profile .name_prof {
  font-size: 3rem;
  text-align: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
.profile .name_prof span {
  display: block;
  font-size: 1.6rem;
}
.profile .name_prof .eng {
  color: #BC002D;
  display: inline;
}
.profile .name_prof .eng_sub {
  font-size: 1.5rem;
  color: #646464;
}
.profile .history2 li {
  display: flex;
  letter-spacing: 0.05em;
}
.profile .year {
  white-space: nowrap; /* これで「年」が途中で改行されなくなります */
  margin-right: 1em; /* 年とテキストの間に余白を作ると綺麗です */
  flex-shrink: 0;
}
@media screen and (max-width: 639px) {
  .profile .name_prof {
    font-size: 2rem;
  }
  .profile .name_prof span {
    font-size: 1.2rem;
  }
  .profile .name_prof span.eng_sub {
    font-size: 1rem;
  }
}

.lang_eng {
  font-size: 0.85em;
  color: #646464;
}
.lang_eng .sentence p + p {
  margin-top: 10px;
}

.about_1_photos {
  max-width: 1200px;
  margin: 50px auto 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.about_1_photos img {
  display: block;
  width: 100%;
}
.about_1_photos .about_1_photos-1 {
  width: 28%;
  padding-top: 50px;
}
.about_1_photos .about_1_photos-2 {
  width: 38%;
  margin-left: 2%;
}
.about_1_photos .about_1_photos-2 img {
  margin-bottom: 40px;
}
.about_1_photos .about_1_photos-2 img.top_image {
  height: 400px;
  object-fit: cover;
}
.about_1_photos .about_1_photos-3 {
  width: 28%;
  margin-left: 2%;
  padding-top: 50px;
}
@media screen and (max-width: 639px) {
  .about_1_photos {
    margin: 30px auto 0;
    display: block;
  }
  .about_1_photos .about_1_photos-1,
  .about_1_photos .about_1_photos-2,
  .about_1_photos .about_1_photos-3 {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    margin-bottom: 10px;
  }
  .about_1_photos .about_1_photos-2 img {
    margin-bottom: 10px;
  }
  .about_1_photos .about_1_photos-2 img.top_image {
    height: 100%;
    object-fit: cover;
  }
  .about_1_photos .about_1_photos-3 img {
    margin-bottom: 0;
  }
}