@charset "UTF-8";
@keyframes bg-color {
  0% {
    background-color: #bf8c00;
  }
  20% {
    background-color: #966300;
  }
  40% {
    background-color: #bf8c00;
  }
  60% {
    background-color: #966300;
  }
  80% {
    background-color: #bf8c00;
  }
  100% {
    background-color: #bf8c00;
  }
}
/* **********
SCROLL BAR
   ********** */
::-webkit-scrollbar {
  width: 10px;
  background: #666;
}

::-webkit-scrollbar-thumb {
  background: #2B2B2A;
  border-radius: 5px;
}

::-webkit-scrollbar-button {
  display: none;
}

::-webkit-scrollbar-thumb:active {
  background: #000;
}

/* **********
SCROLL FADEINDOWN
   ********** */
.animation, .animation__blur {
  visibility: hidden;
}

.fadeInDown {
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-name: fadeInDown;
  visibility: visible !important;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.blur {
  animation-fill-mode: both;
  animation-duration: 0.5s;
  animation-name: blurTo;
  visibility: visible !important;
}
/* **********
ALL
   ********** */
body#l__main {
  background-image: url("../images/main__bg.jpg");
  padding: 70px 0 50px 0;
}

a,
a:focus,
*:focus {
  outline: none !important;
}

ul {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, div, p, a, li {
  font-family: "Noto Sans Japanese", sans-serif;
}

section {
  position: relative;
}

h1::-moz-selection, h2::-moz-selection, h3::-moz-selection, h4::-moz-selection, h5::-moz-selection, p::-moz-selection, a::-moz-selection, li::-moz-selection, span::-moz-selection {
  background: #F0F0F0;
}

h1::selection,
h2::selection,
h3::selection,
h4::selection,
h5::selection,
p::selection,
a::selection,
li::selection,
span::selection {
  background: #F0F0F0;
}

span::-moz-selection {
  background: #F0F0F0;
}

h1::-moz-selection,
h2::-moz-selection,
h3::-moz-selection,
h4::-moz-selection,
h5::-moz-selection,
p::-moz-selection,
a::-moz-selection,
li::-moz-selection,
span::selection {
  background: #F0F0F0;
}

.bold {
  font-weight: 900;
  font-size: 125%;
  border-bottom: solid 5px rgba(55, 25, 12, 0.3);
}

/* **********
   Loader
   ********** */
.load_wait {
  width: 100%;
  height: 100vh;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
}
.load_wait.hidden {
  z-index: -1;
}
.load_wait .top {
  width: 100%;
  height: 100vh;
  background-color: #bf8c00;
  animation: bg-color 5s infinite;
  -webkit-animation: bg-color 5s infinite;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  z-index: 999;
  transition: 0.5s;
}
.load_wait .top img {
  position: absolute;
  top: calc(50vh - 36px);
  left: calc(50% - 139px);
}
.load_wait .top #progressTxt {
  width: 100%;
  color: #FFF;
  text-align: center;
  position: absolute;
  font-weight: 900;
  font-size: 20px;
  top: calc(50vh + 72px);
  left: 0;
}
.load_wait .top.hidden {
  opacity: 0;
  visibility: hidden;
  z-index: -999;
}
.load_wait .top img, .load_wait .top div {
  display: block;
  width: 300px;
  text-align: center;
  position: absolute;
  left: calc(50% - 150px);
}
.load_wait .top img {
  height: auto;
  bottom: 50px;
}
.load_wait .top div {
  font-family: "Noto Sans Japanese", sans-serif;
  font-weight: bold;
  font-size: 13px;
  bottom: 10px;
}
.load_wait .text {
  color: #16C5D8;
  width: 300px;
  height: 25px;
  text-align: center;
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 150px);
}
.load_wait .middle {
  width: 0;
  height: 5px;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.load_wait:hover .middle:before {
  width: 100%;
}

/* **********
  Flex Settings
   ********** */
.f_space {
  display: flex;
  justify-content: space-between;
}

.f_wrap {
  display: flex;
  flex-wrap: wrap;
}

/* **********
  Block Settings
   ********** */
.wrapper {
  width: 100%;
  overflow: hidden;
}
.wrapper .inner {
  width: 100%;
  margin-right: auto !important;
  margin-left: auto !important;
}

/* **********
  Padding Settings
   ********** */
.up__down30 {
  padding: 30px 0;
}

.up__down50 {
  padding: 50px 0;
}

/* **********
  Head Settings
   ********** */
.simple__head {
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 5vw;
  color: #FFF;
  background-image: url("../images/head03.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.simple__head span {
  font-size: 140%;
  padding: 0 5px;
  color: #fff000;
}

.simple__head__large {
  padding: 15px 0 !important;
  height: auto !important;
  line-height: 35px !important;
  text-align: center;
  font-size: 40px;
  color: #FFF;
  background-image: url("../images/head03.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.simple__head__large span {
  display: block;
  font-size: 80%;
}

.numbering_head {
  margin: 0 0 25px 0;
  padding: 15px 15px 15px 85px;
  position: relative;
}
.numbering_head span {
  padding: 5px 10px;
  background-color: #c4a150;
  color: #FFF;
  border-radius: 10px;
  margin-right: 10px;
  font-size: 80%;
  position: absolute;
  left: 15px;
  top: 15px;
}

/* **********
  Header Navigation
   ********** */
#main__header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
#main__header .wrapper .inner {
  display: block;
}
#main__header .left {
  width: 100%;
}
#main__header .left #logo {
  width: 100%;
  height: 70px;
  background-image: url("../images/main__bg.jpg");
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
#main__header .left #logo h1 {
  margin: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#main__header .left #logo h1 a {
  display: block;
  width: 200px;
  height: 60px;
  color: #c4a150;
  font-size: 14px;
  position: relative;
  top: -15px;
  left: 15px;
}
#main__header .left #logo h1 a:after {
  content: "";
  display: block;
  width: 200px;
  height: 60px;
  background-image: url("../images/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
#main__header .right {
  width: 100%;
  height: 7vh;
  background-color: #c4a150;
  position: fixed;
  bottom: 0;
  left: 0;
}
#main__header .right .address {
  display: none;
}
#main__header .right .line {
  width: 25%;
  height: 7vh;
  position: relative;
}
#main__header .right .line:before {
  content: "LINEで予約";
  display: block;
  width: 100%;
  height: 100%;
  line-height: 10vh;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/icons/foot_line.png");
  background-repeat: no-repeat;
  background-position: center 7px;
  background-size: 20%;
}
#main__header .right .line a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 9999;
}
#main__header .right .line img {
  display: none;
}
#main__header .right .reserve {
  display: flex;
  justify-content: space-between;
  width: 50%;
  height: 7vh;
}
#main__header .right .reserve .web_r {
  display: block;
  width: 50%;
  height: 7vh;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#main__header .right .reserve .web_r:before {
  content: "WEBで予約";
  display: block;
  width: 100%;
  height: 100%;
  line-height: 10vh;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/icons/email.png");
  background-repeat: no-repeat;
  background-position: center 7px;
  background-size: 20%;
  text-indent: 0;
  white-space: normal;
  overflow: hidden;
}
#main__header .right .reserve address {
  display: block;
  width: 50%;
  height: 7vh;
  margin: 0;
}
#main__header .right .reserve address a {
  display: block;
  width: 100%;
  height: 7vh;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#main__header .right .reserve address a:before {
  content: "電話予約";
  display: block;
  width: 100%;
  height: 100%;
  line-height: 10vh;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/icons/phone03.png");
  background-repeat: no-repeat;
  background-position: center 7px;
  background-size: 20%;
  text-indent: 0;
  white-space: normal;
  overflow: hidden;
}
#main__header .right .hpb {
  display: block;
  width: 25%;
  height: 7vh;
  margin: 0;
}
#main__header .right .hpb a {
  display: block;
  width: 100%;
  height: 7vh;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#main__header .right .hpb a:before {
  content: "HOT PEPPER";
  display: block;
  width: 100%;
  height: 100%;
  line-height: 10vh;
  text-align: center;
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/icons/hpb.png");
  background-repeat: no-repeat;
  background-position: center 7px;
  background-size: 20%;
  text-indent: 0;
  white-space: normal;
  overflow: hidden;
}

#main__nav {
  width: 100%;
  height: calc(100vh - 120px);
  position: fixed;
  top: -100vh;
  left: 0;
  z-index: 999;
  background: #b48100; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(180deg, #ccab5e 0%, #aa8127 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#aa8127", endColorstr="#aa8127",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  transition: all 0.4s;
}
#main__nav.open {
  top: 70px;
}
#main__nav ul {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: auto;
}
#main__nav ul li {
  display: block;
  width: 100%;
  padding: 10px 0;
  border-bottom: dashed 1px #FFF;
}
#main__nav ul li a {
  font-family: "Noto Serif Japanese", serif !important;
  display: block;
  text-align: center;
  color: #FFF;
  opacity: 1;
}
#main__nav ul li a span {
  display: block;
  font-size: 70%;
}
#main__nav .is__hiddennav {
  display: none;
}

/* **********
   Trigger Icon
   ********** */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: absolute;
  width: 40px;
  height: 30px;
  right: 20px;
  top: 20px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #c4a150;
  border-radius: 5px;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 14px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(14px) rotate(-315deg);
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-14px) rotate(315deg);
}

/* ******************************
    Main Visual
   ****************************** */
.camp__visual {
  padding: 10px 0;
  overflow: hidden;
  background-image: url("../images/top/main__bg02.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.camp__visual .inner {
  position: relative;
}
.camp__visual .inner a {
  display: block;
  width: 100%;
  height: auto;
}
.camp__visual .inner a h2, .camp__visual .inner a p {
  position: absolute;
  font-family: "Noto Serif Japanese", serif !important;
  color: #64290b !important;
  text-align: center !important;
  font-weight: 900;
}
.camp__visual .inner a h2 {
  width: 100%;
  font-size: 5vw;
  top: 5px;
  left: 0;
  padding: 0;
}
.camp__visual .inner a .botttom {
  width: 100%;
  font-size: 3vw;
  top: 6vh;
}
.camp__visual .inner a .price {
  font-size: 13vw;
  color: #d1022d !important;
  top: 10vh;
  left: 10vw;
  text-shadow: 2px 2px 1px #FFF, -2px 2px 1px #FFF, 2px -2px 1px #FFF, -2px -2px 1px #FFF;
}
.camp__visual .inner a .price:before {
  display: block;
  content: attr(title);
  color: #d1022d;
  -webkit-mask-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  position: absolute;
  top: 0;
  left: 0;
}

/* ******************************
    Top Sections
   ****************************** */
.main__banner {
  position: relative;
}
.main__banner .inner {
  height: 100%;
  background-image: url("../images/top/main__sm.png");
  background-size: 100%;
  background-position: bottom;
  background-repeat: no-repeat;
}
.main__banner .inner h2 {
  font-family: "Noto Serif Japanese", serif !important;
  color: #FFF;
  padding: 5px 20px;
  background: #894f29; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(90deg, #894f29 0%, #cd9256 50%, #64290b 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#894f29", endColorstr="#64290b",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  width: 100%;
  font-size: 3.1vw;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}
.main__banner .inner img {
  display: block;
  width: 100%;
  height: auto;
}

#page__container .content__area .q__worry h2 {
  background: none;
  margin-top: 0;
  color: #37190c;
}

.q__worry {
  padding: 15px;
}
.q__worry h2 {
  text-align: center;
  color: #6f3f19;
  font-size: 4.5vw;
  font-weight: 900;
  padding-top: 20px !important;
  position: relative;
}
.q__worry h2:before {
  content: "";
  display: block;
  width: 935px;
  height: 130px;
  background-image: url("../images/head02.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: calc(50% - 467.5px);
}
.q__worry h2 span {
  font-size: 120%;
}
.q__worry ul {
  position: relative;
  padding: 30px 0 150px 80px;
}
.q__worry ul:before, .q__worry ul:after {
  content: "";
  display: block;
  position: absolute;
}
.q__worry ul:before {
  width: 80px;
  height: 220px;
  top: 0;
  left: -10px;
  background-image: url("../images/top/woman01.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.q__worry ul:after {
  width: 100%;
  height: 100px;
  bottom: 0;
  left: 0;
  background-image: url("../images/arrow01.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.q__worry ul li {
  font-size: 15px;
  font-weight: bold;
  color: #111;
  position: relative;
  padding: 0 15px 30px 35px;
}
.q__worry ul li:before, .q__worry ul li:after {
  content: "";
  display: block;
  position: absolute;
}
.q__worry ul li:before {
  background-image: url("../images/icons/checked.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 25px;
  height: 25px;
  top: 5px;
  left: 0;
}
.q__worry ul li:after {
  background-image: url("../images/border02.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: calc(100% - 15px);
  height: 20px;
  bottom: 0;
  left: 0;
}

.solution h2 {
  line-height: 204px;
  text-align: center;
  color: #111;
  text-shadow: 0 2px 1px #fff;
  font-size: 3.5vw;
  position: relative;
  z-index: 999;
  transform: rotate(-5deg);
}
.solution h2 span {
  font-size: 130%;
}
.solution h2:after {
  content: "";
  display: block;
  width: 110%;
  height: 204px;
  background-image: url("../images/head01.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: -5%;
  z-index: -1;
  transform: rotate(5deg);
}
.solution p.head {
  font-family: "Noto Sans Japanese", sans-serif !important;
  color: #111;
  text-align: center;
  font-weight: 900;
  font-size: 3.4vw;
  padding: 0 15px;
}
.solution h3 {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  font-family: "Noto Serif Japanese", serif !important;
  font-size: 3.5vw;
  color: #37190c;
}
.solution h3 span {
  font-family: "Noto Sans Japanese", sans-serif !important;
  font-size: 80%;
  color: #FFF;
  background-color: #37190c;
  border-radius: 5px;
  padding: 3px 10px;
  margin-right: 10px;
}
.solution .exp {
  font-family: "Noto Serif Japanese", serif !important;
  width: 100%;
  padding: 15px;
  margin: 0 auto;
  color: #37190c;
  font-size: 3vw;
  position: relative;
}
.solution h4 {
  text-align: center;
  font-size: 5vw;
  color: #37190c;
  margin-top: 50px;
  padding-top: 50px;
  position: relative;
}
.solution h4:before, .solution h4:after {
  content: "";
  display: block;
  position: absolute;
}
.solution h4:before {
  width: 100%;
  height: 12px;
  background-image: url("../images/border02.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: 0;
  left: 0;
}
.solution h4:after {
  width: 30px;
  height: 40px;
  background-image: url("../images/icons/flash.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: 38px;
  left: 10vw;
}
.solution .f_space {
  display: block;
}
.solution .f_space p {
  width: 100%;
  padding: 15px;
  font-weight: 900;
  position: relative;
}
.solution .f_space p img {
  width: 100%;
  height: auto;
}
.solution .f_space p span {
  padding-left: 40px;
}
.solution .f_space p:after {
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url("../images/icons/success.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  bottom: 10px;
  left: 15px;
}

.flow {
  padding: 0;
}
.flow .inner {
  padding: 15px;
}

.voice .inner {
  display: block;
  padding: 0 15px;
}
.voice .inner .voice__box {
  width: 100%;
  height: 480px;
  background-image: url("../images/voice/voice__back.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 90px 25px 0 25px;
  margin: 0 0 30px 0;
  border-radius: 10px;
}
.voice .inner .voice__box img {
  display: block;
  width: 50%;
  height: auto;
  margin: 0 auto;
  border-radius: 5px;
  margin-bottom: 20px;
}
.voice .inner .voice__box span {
  display: block;
  font-weight: 900;
}
.voice .inner .voice__box span.bottom {
  color: red;
  padding-bottom: 15px;
}

.blog .inner {
  display: block;
}
.blog .inner .one_second {
  width: 100%;
  padding: 15px;
}
.blog .inner .one_second .title {
  width: 100%;
  position: relative;
  background-color: #37190c;
  padding: 15px;
}
.blog .inner .one_second .title h2 {
  color: #FFF;
  margin: 0;
}
.blog .inner .one_second .title a {
  font-size: 13px;
  padding: 3px 5px;
  background-color: #FFF;
  color: #37190c;
  border-radius: 5px;
  position: absolute;
  top: 15px;
  right: 15px;
}
.blog .inner .one_second article {
  width: 100%;
  padding: 20px 0;
  border-bottom: dashed 1px #111;
}
.blog .inner .one_second article:after {
  content: "";
  display: block;
  clear: both;
}
.blog .inner .one_second article .thumb a img {
  width: 80px;
  height: 80px;
  float: left;
  margin-right: 15px;
  overflow: hidden;
}
.blog .inner .one_second article .left {
  float: left;
}
.blog .inner .one_second article header {
  padding-bottom: 15px;
  font-size: 14px;
  padding: 0;
}
.blog .inner .one_second article h3 {
  color: #111;
  margin: 0;
  padding: 5px 0 0 0;
  font-size: 13px;
}

.owner_message .inner {
  position: relative;
  background-color: #FFF;
  padding: 15px 15px 250px 15px;
}
.owner_message .inner h2, .owner_message .inner p {
  color: #37190c !important;
  font-family: "Noto Serif Japanese", serif !important;
}
.owner_message .inner h2 {
  background-image: none !important;
  color: #c4a150 !important;
  border-bottom: solid 1px #c4a150;
  margin-top: 10px !important;
}
.owner_message .inner p {
  padding: 0 20px;
}
.owner_message .inner .title {
  font-weight: bold;
  color: #6f3f19;
  font-size: 130%;
  padding: 30px 20px;
  margin: 0;
}
.owner_message .inner .owner {
  text-align: center;
  position: absolute;
  bottom: 30px;
  right: calc(50% - 80px);
}
.owner_message .inner .owner img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
.owner_message .inner .owner p {
  font-size: 12px;
  font-weight: bold;
  color: #c4a150;
  padding: 0;
}

.simple__list {
  width: 100%;
}
.simple__list .inner {
  width: 100%;
  padding: 15px;
}
.simple__list .inner .lines {
  display: block;
  width: 100%;
}
.simple__list .inner .lines div {
  width: 100%;
}
.simple__list .inner .lines div h2 {
  background-image: none !important;
  text-align: left !important;
  background-color: #37190c;
  padding-left: 15px !important;
  font-size: 20px !important;
  height: 40px !important;
  line-height: 40px !important;
  margin-bottom: 5px;
}
.simple__list .inner .lines div p img {
  width: 100%;
  height: auto;
}

.faq dl {
  display: block;
  width: 90%;
  padding: 15px 0;
  margin: 0 auto;
  border-bottom: dashed 1px #6f3f19;
}
.faq dl dt {
  display: block;
  width: 100%;
  font-family: "Noto Serif Japanese", serif !important;
  font-weight: bold;
  color: #6f3f19;
  text-align: left;
  line-height: 40px;
  font-size: 3.5vw;
  padding-left: 50px;
}
.faq dl dt span {
  position: relative;
}
.faq dl dt span:before {
  content: "";
  display: block;
  width: 30px;
  height: 35px;
  position: absolute;
  top: -3px;
  left: -40px;
  background-image: url("../images/logo05.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.faq dl dd {
  text-align: left;
  font-size: 13px;
}

.feed_insta .box {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.card__wrapper {
  display: block;
  padding: 0 15px;
}
.card__wrapper .card_box {
  width: 100%;
  padding-bottom: 20px;
}
.card__wrapper .card_box.nothing {
  display: none !important;
}
.card__wrapper .card_box .numbering {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 3px !important;
  color: #37190c;
  text-align: center;
  position: relative;
  margin-bottom: 10px;
}
.card__wrapper .card_box .numbering:after {
  content: "";
  width: 50px;
  height: 3px;
  background-color: #37190c;
  position: absolute;
  left: calc(50% - 25px);
  bottom: 45px;
}
.card__wrapper .card_box .numbering span {
  display: block;
  font-size: 35px;
}
.card__wrapper .card_box .thumb {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 100%;
}
.card__wrapper .card_box .thumb img {
  width: 100%;
  height: auto;
}
.card__wrapper .card_box h4 {
  text-align: center;
}
.card__wrapper .card_box .title {
  width: 100%;
  position: relative;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 40px;
  text-align: center;
}
.card__wrapper .card_box .title:after {
  content: "";
  width: 100px;
  height: 1px;
  background-color: #37190c;
  position: absolute;
  left: calc(50% - 50px);
  bottom: -20px;
}
.card__wrapper .card_box p {
  text-align: center;
  font-size: 13px;
}

.one__second__wrapper {
  padding: 0 15px;
  display: block;
}
.one__second__wrapper .thumb {
  width: 100%;
}
.one__second__wrapper .thumb img {
  border-radius: 10px;
}
.one__second__wrapper p {
  width: 100%;
  font-size: 13px;
}

.support__msg {
  padding: 20px 15px;
  margin-top: -50px;
}
.support__msg .top {
  text-align: center;
  font-family: "Noto Serif Japanese", serif !important;
  font-weight: bold;
  font-size: 6vw;
  color: #37190c;
  border-bottom: solid 1px #37190c;
  margin-bottom: 15px;
}
.support__msg .bottom {
  color: #37190c;
  font-size: 5vw;
  font-weight: 900;
}
.support__msg .bottom img {
  width: 30%;
  height: auto;
  float: left;
  margin-right: 15px;
  border-radius: 10px;
}

#page__container .content__area .camp__visual .inner a h2 {
  margin-top: 5px;
  font-size: 5vw;
  padding: 0;
  background: none;
  line-height: normal;
  height: auto;
}

/* ******************************
    Card Settings
   ****************************** */
.card {
  width: 100%;
  height: 450px;
  margin-top: 70px;
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
}
.card:before {
  content: "";
  display: block;
  width: 130%;
  height: 200px;
  background-size: cover;
  position: absolute;
  top: -70px;
}
.card:nth-child(2n-1):before {
  right: -15%;
  background-position-x: right;
  background-position-y: center;
}
.card:nth-child(2n):before {
  left: -15%;
}
.card:nth-child(2n-1) .inner {
  right: 0;
}
.card:nth-child(2n) .inner {
  left: 0;
}
.card.top01:before {
  background-image: url("../images/top/top01.png");
}
.card.top02:before {
  background-image: url("../images/top/top02.png");
}
.card.top03:before {
  background-image: url("../images/top/top03.png");
}
.card.top04:before {
  background-image: url("../images/top/top04.png");
}
.card .inner {
  width: 100%;
  height: 400px;
  position: absolute;
  top: 0;
}
.card .inner i {
  display: block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  color: #af9c5c;
  font-weight: 900;
  font-size: 35px;
  position: relative;
  top: 90px;
  left: 15px;
}
.card .inner i:before {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: url("../images/head05.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: 0;
  left: 0;
}
.card .inner h3 {
  color: #111;
  margin: 100px 0 30px 0;
  padding: 0 15px;
}
.card .inner p {
  margin: 0;
  padding: 0 15px;
  font-size: 14px;
}

/* ******************************
    Box Settings
   ****************************** */
.box {
  width: 100%;
  border: solid 3px #d4d4d4;
  padding: 15px;
  background-color: #FFF;
  margin-bottom: 15px;
}
.box .title {
  color: #c4a150;
  font-size: 5vw;
  position: relative;
  padding-left: 70px;
}
.box .title i {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: #FFF;
  background-color: #af9c5c;
  border-radius: 100%;
  font-weight: 900;
  font-size: 30px;
  position: absolute;
  top: 0;
  left: 0;
}
.box p {
  color: #111;
  font-size: 14px;
  margin: 0;
}
.box p img {
  display: block;
  margin: 0 auto;
  margin-bottom: 15px;
}

/* ******************************
    Red Button
   ****************************** */
.red__btn {
  width: 100%;
  padding: 0 5%;
}
.red__btn a {
  display: block;
  width: 100%;
  height: 90px;
  line-height: 80px;
  color: #FFF;
  font-weight: 900;
  font-size: 5.5vw;
  padding-left: 80px;
  border-bottom: solid 5px #92201b;
  border-radius: 10px;
  background: #c82720; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(180deg, #dd4f49 0%, #c82720 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#dd4f49", endColorstr="#c82720",GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  position: relative;
  transition: all 0.4s;
  text-align: center;
}
.red__btn a:hover {
  border-bottom: solid 0px transparent;
  top: 10px;
  color: #FFF;
}
.red__btn a span {
  display: block;
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  font-size: 10px;
  color: #c82720;
  background-color: #FFF;
  border-radius: 100%;
  position: absolute;
  top: 10px;
  left: 20px;
}
/* ******************************
    LINE Reserve
   ****************************** */
.line__reserve {
  width: 100%;
  background-color: #45b345;
}
.line__reserve .inner {
  display: block;
  padding: 0 15px;
}
.line__reserve .inner .left {
  width: 100%;
}
.line__reserve .inner .left h2 {
  color: #FFF;
  font-size: 7vw;
}
.line__reserve .inner .left h2 span {
  color: #fff000;
}
.line__reserve .inner .left p {
  color: #FFF;
}
.line__reserve .inner .left p span {
  display: block;
  font-weight: 900;
  font-size: 20px;
  padding-bottom: 20px;
}
.line__reserve .inner .right {
  width: 100%;
}
.line__reserve .inner .right p {
  width: 45%;
}
.line__reserve .inner .right p img {
  width: 100%;
  height: auto;
}

/* ******************************
    Page Settings
   ****************************** */
#page__container .head__section {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center center;
  position: relative;
}
#page__container .head__section h1 {
  height: 300px;
  line-height: 250px;
  text-align: center;
  font-weight: 900;
  margin: 0;
  color: #FFF;
  text-shadow: 0 0 4px #000;
  font-size: 5vw;
}
#page__container .head__section .social {
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../images/head03.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#page__container .head__section .social ul {
  display: flex;
  justify-content: space-between;
  width: 210px;
  margin: 0 auto;
}
#page__container .head__section .social ul li {
  display: block;
  width: 70px;
  height: 50px;
}
#page__container .head__section .social ul li a {
  display: block;
  width: 70px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-family: "f_icons" !important;
  color: #FFF;
  font-size: 27px;
}
#page__container .head__section .social ul li a img {
  position: relative;
  top: 3px;
  width: 60px;
  height: auto;
}
#page__container .content__area {
  padding: 30px 0;
}
#page__container .content__area .solution h2 {
  background: none;
  color: #111;
  line-height: 200px;
  font-size: 4vw;
  position: relative;
  top: -100px;
}
#page__container .content__area .box p {
  font-size: 14px;
}
#page__container .content__area .introduction {
  text-align: left;
  padding: 30px 15px;
  font-size: 13px;
}
#page__container .content__area h2 {
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 5vw;
  color: #FFF;
  background-image: url("../images/head03.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 0;
  margin-top: 50px;
}
#page__container .content__area .card__box {
  display: block;
  width: 100%;
  padding: 0 15px;
}
#page__container .content__area .card__box.o_one .item {
  width: 100%;
}
#page__container .content__area .card__box .item {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 30px;
  margin-bottom: 15px;
}
#page__container .content__area .card__box .item h3, #page__container .content__area .card__box .item p {
  color: #37190c;
}
#page__container .content__area .card__box .item .t_strong {
  font-weight: 900;
  margin-bottom: 10px;
  font-size: 18px;
}
#page__container .content__area .card__box .item .t_strong span {
  color: red;
}
#page__container .content__area .card__box .item .list {
  font-size: 20px;
  position: relative;
  padding-left: 70px;
}
#page__container .content__area .card__box .item .list:before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-image: url("../images/logo04.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
#page__container .content__area .card__box .item .list span {
  font-weight: 900;
}
#page__container .content__area .card__box .item .atten {
  font-weight: 900;
  font-size: 120%;
  color: #ff3399;
}
#page__container .content__area .circle__card .item {
  padding: 15px;
}
#page__container .content__area .circle__card .item h3 {
  text-align: center;
  color: #37190c;
  padding: 10px 0;
}
#page__container .content__area .circle__card .item .card__inner {
  width: 100%;
  height: 110vw;
  padding: 0 30px;
  margin-bottom: 30px;
  position: relative;
}
#page__container .content__area .circle__card .item .card__inner .left {
  width: 100%;
}
#page__container .content__area .circle__card .item .card__inner .left img {
  width: 100%;
  height: auto;
}
#page__container .content__area .circle__card .item .card__inner .right {
  width: 100%;
  padding: 15px 30px 15px 15px;
  background-color: #FFF;
  box-shadow: rgba(84, 89, 94, 0.4) 0px 24px 34px 0px;
  border-radius: 10px;
  position: absolute;
  top: 45%;
  right: 0;
  font-size: 14px;
}
#page__container .content__area .circle__card .item .card__inner .right h3 {
  text-align: left;
  font-size: 30px;
}
#page__container .content__area .circle__card .item .card__inner .right .only__text {
  font-weight: 900;
  font-size: 17px;
  color: #111;
}
#page__container .content__area .circle__card .item .card__inner .right img {
  display: block;
  width: 40%;
  height: auto;
  float: left;
  margin: 0 20px 20px 0;
}
#page__container .content__area .circle__card .item .card__inner .right .view__more {
  display: block;
  width: 100%;
  height: 70px;
  line-height: 70px;
  margin-top: 50px;
  color: #FFF;
  font-weight: 900;
  font-size: 25px;
  text-align: center;
  border-bottom: solid 5px #92201b;
  border-radius: 10px;
  background: #c82720;
  background: linear-gradient(180deg, #dd4f49 0%, #c82720 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#dd4f49", endColorstr="#c82720",GradientType=1 );
  position: relative;
  transition: all 0.4s;
}

/* ******************************
    Contact Form
   ****************************** */
#contact_form .top__exp {
  padding: 30px 15px;
}
#contact_form .top__exp a {
  text-decoration: underline;
  color: #3498db;
  font-weight: 900;
}
#contact_form .form__step {
  width: 100%;
}
#contact_form .form__step li {
  display: block;
  width: 33.333333%;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background-color: #37190c;
  color: #FFF;
  font-size: 12px;
  opacity: 0.6;
  position: relative;
}
#contact_form .form__step li.current {
  opacity: 1;
  font-size: 13px;
  font-weight: 900;
}

.contact__wrapper {
  padding: 30px 15px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}
.contact__wrapper .error {
  font-weight: bold;
  color: red;
  font-size: 130%;
}
.contact__wrapper dl {
  display: block;
  width: 100%;
  margin-bottom: 25px;
}
.contact__wrapper dl dt {
  display: block;
  width: 100%;
}
.contact__wrapper dl dt label span {
  background-color: #c4a150;
  color: #FFF;
  padding: 2px 5px;
  border-radius: 5px;
  margin-right: 5px;
}
.contact__wrapper dl dd {
  display: block;
  width: 100%;
  margin: 0;
}
.contact__wrapper dl dd input, .contact__wrapper dl dd select, .contact__wrapper dl dd textarea {
  display: block;
  width: 100%;
}
.contact__wrapper .view__more {
  display: block;
  width: 100%;
  height: 90px;
  line-height: 80px;
  padding: 0;
  color: #FFF;
  font-weight: 900;
  font-size: 8vw;
  text-align: center;
  border-bottom: solid 5px #92201b;
  border-radius: 10px;
  background: #c82720;
  background: linear-gradient(180deg, #dd4f49 0%, #c82720 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#dd4f49", endColorstr="#c82720",GradientType=1 );
  position: relative;
  opacity: 1;
  transition: all 0.4s;
}
.contact__wrapper .view__more:hover {
  opacity: 0.5;
  background: #c82720;
  background: linear-gradient(180deg, #dd4f49 0%, #c82720 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#dd4f49", endColorstr="#c82720",GradientType=1 );
}
.contact__wrapper .view__more.back {
  background: #777;
  border-bottom: solid 5px #333;
  height: 65px;
  font-size: 6vw;
  line-height: 65px;
  margin-top: 20px;
}

/* ******************************
    Single Setting
   ****************************** */
.single__area .inner {
  width: 100%;
  padding: 15px;
  font-size: 17px;
}
.single__area .inner img {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
}

/* ******************************
Information List
****************************** */
html[lang=ja] .text__inner {
  width: 100%;
  padding: 7em 0;
  background: #FFF;
}
html[lang=ja] .text__inner span {
  display: block;
  width: 100%;
  text-align: center;
  color: #b48100;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px !important;
  padding-bottom: 30px;
}
html[lang=ja] .text__inner .eng {
  width: 100%;
  text-align: center;
  position: relative;
  font-weight: 900;
  font-size: 30px;
  color: #000;
}
html[lang=ja] .text__inner .eng:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #b48100;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 30px);
}

.card__list {
  width: 100%;
  background: #FFF;
  padding: 50px 20px;
}
.card__list .inner {
  width: 100%;
}
.card__list .inner .card__item {
  width: 100%;
}
.card__list .inner .card__item article {
  width: calc(100% - 2px);
  border-right: solid 1px #FFF;
  border-left: solid 1px #FFF;
  background-color: #FFF;
  transition: all 0.4s;
}
.card__list .inner .card__item article:hover {
  background-color: #f7f2e5;
}
.card__list .inner .card__item article header {
  display: block;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}
.card__list .inner .card__item article header a {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.card__list .inner .card__item article footer {
  width: 100%;
  height: calc(49.5vh - 60px);
  padding: 30px 0;
  text-align: center;
}
.card__list .inner .card__item article footer .time {
  color: #888b98;
  font-size: 11px;
  letter-spacing: 2px !important;
}
.card__list .inner .card__item article footer h2 {
  font-size: 17px;
  padding: 0 1.5em;
  line-height: 1.15em;
  margin-bottom: 0;
  margin-top: 1em;
  min-height: 4.75em;
}
.card__list .inner .card__item article footer .rm {
  text-transform: uppercase;
  line-height: 1.6em;
  letter-spacing: 0.2em;
  font-size: 12px;
  display: inline-block;
  margin-top: 2.4em;
  color: #b48100;
  font-weight: 700;
  letter-spacing: 2px !important;
}

/* ******************************
    Footer
   ****************************** */
#global__footer {
  background-image: url("../images/footer__bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
#global__footer .inner {
  padding: 3rem 5% 3rem;
}
#global__footer .left {
  width: 60%;
}
#global__footer .left div {
  color: #FFF;
  text-align: center;
  font-size: 12px;
  margin-top: 0.5rem;
}
#global__footer .right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2.5rem;
}
#global__footer .right div {
  width: 48%;
  margin-top: 1rem;
}
#global__footer ul a {
  color: #FFF;
  font-size: 14px;
  letter-spacing: 1px !important;
}
#global__footer ul li {
  margin-top: 0.5rem;
}
#global__footer h2 {
  color: #FFF;
  font-family: "Noto Serif Japanese", serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px !important;
}

#page__container #main__footer .left .inner .title ul {
  position: relative;
  padding-top: 50px;
}
#page__container #main__footer .left .inner .title ul:before {
  content: "";
  display: block;
  width: 100%;
  height: 60px;
  background-image: url("../images/logo02.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: -40px;
  left: 0;
}

#main__footer {
  display: block;
  padding: 15px;
}
#main__footer .left {
  width: 100%;
  padding: 30px 0;
}
#main__footer .left .inner {
  width: 100%;
}
#main__footer .left .inner .title {
  width: 100%;
}
#main__footer .left .inner .title .logo {
  display: none;
}
#main__footer .left .inner .title ul {
  width: 100%;
  margin: 0;
}
#main__footer .left .inner .title ul li {
  display: block;
  width: 100px;
}
#main__footer .left .inner .title ul li a {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin: 0 auto;
  font-family: "f_icons" !important;
  font-size: 27px;
  color: #FFF;
  background-color: #6f3f19;
  border-radius: 100%;
}
#main__footer .left .inner address {
  padding: 20px 0;
  font-weight: 900;
  margin: 0;
  color: #111;
}
#main__footer .left .inner address span {
  display: block;
  padding-top: 10px;
  font-size: 20px;
}
#main__footer .left .inner .call {
  font-weight: 900;
  color: #111;
}
#main__footer .left .inner .call span {
  display: block;
  font-size: 40px;
  position: relative;
  padding-left: 60px;
  position: relative;
}
#main__footer .left .inner .call span:before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("../images/icons/phone02.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
#main__footer .right {
  width: 100%;
  height: auto;
}
#main__footer .right #map_canvas {
  width: 100%;
  height: 100%;
}
#main__footer .right #map_canvas img {
  width: 100%;
  height: auto;
}
#main__footer .right #map_canvas a {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: #E80112;
  color: #FFF;
  text-align: center;
}

.table .line {
  border-top: solid 1px;
}
.table .line:last-child {
  border-bottom: solid 1px;
}
.table .line div {
  width: 10%;
  line-height: 30px;
  text-align: center;
  font-weight: 900;
}
.table .line div:first-child {
  width: 30%;
  text-align: left;
  font-size: 3vw;
}

p.copy {
  text-align: center;
  margin: 0;
  background-color: #37190c;
  color: #FFF;
  font-size: 2.3vw;
  line-height: 35px;
}

/* ------------------------------
    SERVICE
  ------------------------------ */
@keyframes borderDown {
  0% {
    transform: scaleY(0);
    transform-origin: center top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: center top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: center bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: center bottom;
  }
}
.scroll-animation {
  position: absolute;
  bottom: 0;
  right: 5vw;
  width: 2rem;
  display: flex;
  justify-content: space-between;
}
.scroll-animation .is__border {
  position: relative;
  width: 7px;
  height: 4.5rem;
}
.scroll-animation .is__border::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FFF;
  opacity: 0.45;
}
.scroll-animation .is__border::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #FFF;
  transform: scaleY(0);
  animation-name: borderDown;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.scroll-animation span {
  color: #FFF;
  letter-spacing: 0.1vw;
  writing-mode: vertical-rl;
  line-height: 1.8;
  font-size: 0.75rem;
}

#service__mv {
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 0 5%;
}
#service__mv .inner {
  margin: 8rem 0;
}
#service__mv .is___eng {
  color: #FFF;
  font-family: "Noto Serif Japanese", serif;
  font-size: 1.1rem;
}
#service__mv h2 {
  color: #FFF;
  font-family: "Noto Serif Japanese", serif;
  padding: 0.2em 0 0;
  font-size: 2rem;
  font-weight: 400;
}
#service__mv p {
  color: #FFF;
  margin: 3rem 0 0;
  font-size: 1rem;
  width: 100%;
  line-height: 2;
}

#service-nav {
  background-image: url("../images/service__nav.jpg");
  box-shadow: 0 0 1.5vw rgba(17, 17, 17, 0.2);
  padding: 1.5rem 5vw;
  background-size: cover;
  background-repeat: no-repeat;
}
#service-nav ul {
  display: flex;
  margin-bottom: 0;
}
#service-nav li {
  width: auto;
  height: auto;
  margin-right: 1rem;
  background: #FFF;
  border-radius: 2rem;
}
#service-nav li:nth-last-child(1) {
  margin-right: 0;
}
#service-nav li span {
  font-weight: 700;
  font-size: 0.9rem;
  margin-right: 1rem;
}
#service-nav a {
  display: flex;
  align-items: center;
  color: #2A0001;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
}
#service-nav a:hover {
  color: #2A0001;
}
#service-nav i {
  font-size: 1rem;
}

#service-trouble {
  padding-top: 4rem;
}
#service-trouble img {
  width: 15rem;
  margin-top: 1rem;
}
#service-trouble .trouble__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}
#service-trouble .trouble {
  line-height: 1.8;
  color: #FFF;
  border-radius: 4rem;
  font-weight: 700;
  background: #37190c;
  font-size: 0.9rem;
  padding: 0.8rem 2rem;
  text-align: center;
}

.head__common {
  position: relative;
  text-align: center;
  padding-top: 2.5rem;
}
.head__common::before {
  content: "";
  position: absolute;
  top: 0;
  background: url("../images/icon01.svg") center center/contain no-repeat;
  width: 5rem;
  height: 3rem;
  left: calc(50% - 2.5rem);
}
.head__common h2 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  font-size: 3rem;
  font-weight: 500 !important;
  color: #37190c;
  margin-bottom: 0;
}
.head__common h2 span {
  font-size: 120%;
}
.head__common .desc {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 0.3rem;
}
.head__common.mv::before {
  background: url("../images/icon09.svg") center center/contain no-repeat;
}
.head__common.mv h2 {
  color: #FFF;
}
.head__common.mv .desc {
  color: #FFF;
  font-family: "Noto Serif Japanese", serif;
}

#service-strength {
  position: relative;
  background-image: url("../images/service__strength__bg.jpg");
  padding-top: 6rem;
  background-size: 100% 92%;
  background-repeat: no-repeat;
}
#service-strength .is__border {
  position: absolute;
  top: 0;
  left: calc(50% - 1.5px);
  width: 3px;
  height: 3.5rem;
  background: #7CA3F0;
}
#service-strength .solution {
  position: relative;
  color: #FFF;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  height: 2.5rem;
}
#service-strength .solution::before {
  position: absolute;
  display: inline-block;
  content: "";
  background-image: url("../images/text__decoration.png");
  top: -0.3rem;
  left: calc(50% - 9rem);
  width: 18rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.2, 2);
}
#service-strength .head__common {
  margin-top: 3rem;
}
#service-strength .head__common h2 {
  color: #FFF;
}
#service-strength .head__common .desc {
  color: #FFF;
}
#service-strength.notexist {
  background-size: 100% 100%;
  padding-bottom: 4rem;
}
#service-strength.nottrouble {
  padding-bottom: 0;
  padding-top: 0;
}
#service-strength.nottrouble .solution {
  display: none;
}
#service-strength.nottrouble .is__border {
  display: none;
}

.feature__list {
  margin: 0 5%;
}
.feature__list.flow {
  position: relative;
}
.feature__list.flow ul {
  flex-wrap: unset;
  margin: 0 0 2rem;
}
.feature__list.flow li {
  margin-right: 0;
  margin-top: 5rem;
}
.feature__list .flow__title {
  font-size: 1.12rem;
  font-weight: 500;
  margin-top: 3rem;
  font-family: "Noto Serif Japanese", serif;
  text-align: center;
  display: inline-block;
  width: 100%;
}
.feature__list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.feature__list li {
  position: relative;
  width: 100%;
  margin-right: 0;
  margin-top: 6rem;
  background: #FFF;
  border-radius: 0.5rem;
  padding: 1rem 1.3rem 2.5rem;
}
.feature__list .is__point {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #bb8537;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background-image: url("../images/feature__point.png");
  background-size: 120%;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.feature__list .is__point div {
  color: #FFF;
}
.feature__list .is__point div:nth-child(1) {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  letter-spacing: 0.1vw !important;
}
.feature__list .is__point div:nth-child(2) {
  font-family: serif;
  font-size: 3rem;
  line-height: 0.8;
  margin-bottom: 1rem;
}
.feature__list .img__wrapper {
  background: #D8D9D8;
  border-radius: 0.5rem;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.feature__list .img__wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.feature__list .text__wrapper {
  color: #37190c;
  margin: 1.8rem 0 0;
}
.feature__list h3 {
  color: #37190c;
  text-align: center;
  font-size: 0.97rem;
  margin-bottom: 1.5rem;
}
.feature__list p {
  color: #37190c;
  margin-bottom: 0;
}

#service-course {
  padding: 0 5%;
}
#service-course .head__common {
  margin: 4rem 0 3rem;
}
#service-course .course {
  position: relative;
  background: #FFF;
  border-radius: 0.3rem;
  padding: 1.3rem 1.5rem 1.5rem;
  margin-bottom: 1.5rem;
}
#service-course .course.open {
  background: #37190c;
}
#service-course .course.open .copy {
  color: #FFF;
}
#service-course .course.open h3 {
  color: #FFF;
}
#service-course .course.open .price::before {
  background: #FFF;
}
#service-course .course.open .price.bg::before {
  background: #e369bd;
}
#service-course .course.open .price.bg .title {
  background: #e369bd;
  color: #FFF;
}
#service-course .course.open .title {
  background: #FFF;
  color: #37190c;
}
#service-course .course.open .num {
  color: #FFF;
}
#service-course .course.open .detail__title {
  color: #FFF;
}
#service-course .course.open p {
  color: #FFF;
}
#service-course .course .icon {
  position: absolute;
  top: 27vw;
  right: -1rem;
  border-radius: 0.5rem;
  background: #37190c;
  width: 4rem;
  height: 4rem;
}
#service-course .course .icon::before {
  position: absolute;
  content: "";
  top: calc(50% - 0.7rem);
  left: calc(50% - 1.5px);
  width: 3px;
  height: 1.4rem;
  background: #FFF;
}
#service-course .course .icon::after {
  position: absolute;
  content: "";
  top: calc(50% - 1.5px);
  left: calc(50% - 0.7rem);
  width: 1.4rem;
  height: 3px;
  background: #FFF;
}
#service-course .course .icon.close {
  background: #FFF;
}
#service-course .course .icon.close::before {
  transform-origin: center;
  transform: rotate(45deg);
  background: #37190c;
}
#service-course .course .icon.close::after {
  transform-origin: center;
  transform: rotate(45deg);
  background: #37190c;
}
#service-course .course .course__inner {
  display: flex;
  flex-direction: column;
}
#service-course .course .img__wrapper {
  border-radius: 0.3rem;
  width: 100%;
  aspect-ratio: 5/4;
  background: #D8D9D8;
  margin-right: 3rem;
  overflow: hidden;
}
#service-course .course .img__wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: top;
}
#service-course .course .title__wrapper {
  display: flex;
  flex-direction: column;
  color: #37190c;
  width: 100%;
}
#service-course .course .copy {
  font-weight: 700;
  font-size: 3vw;
  margin-top: 1.6rem;
}
#service-course .course h3 {
  font-family: "Noto Serif Japanese", serif;
  font-size: 6vw;
  margin: 1rem 0 0;
  padding-top: 0;
  font-weight: 400;
  color: #37190c;
}
#service-course .course h3 span {
  font-size: 70%;
  margin-left: 0.8rem;
}
#service-course .course .price__wrapper {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}
#service-course .course .price {
  position: relative;
  display: flex;
  align-items: end;
}
#service-course .course .price::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 90%;
  height: 4px;
  background: #37190c;
  border-radius: 1rem;
}
#service-course .course .price.bg {
  margin-right: 0;
  margin-bottom: 0.5rem;
}
#service-course .course .price.bg::before {
  background: #e369bd;
}
#service-course .course .price.bg .title {
  background: #e369bd;
}
#service-course .course .title {
  background: #37190c;
  color: #FFF;
  border-radius: 0.3rem;
  padding: 0.3rem 1rem;
  font-size: 3vw;
  margin-right: 1rem;
}
#service-course .course .num {
  font-weight: 700;
  font-size: 4.2vw;
  margin-right: 2rem;
}
#service-course .course .num span {
  font-size: 130%;
}
#service-course .course .detail {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  width: 100%;
  margin-left: auto;
}
#service-course .course .detail__title {
  font-weight: 700;
  font-size: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #FFF;
}
#service-course .course p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 1rem;
}
#service-course .course.nodesc {
  pointer-events: none;
}
#service-course .course.nodesc .icon {
  display: none;
}

#service-flow {
  margin-top: 5rem;
  overflow: hidden;
}
#service-flow .swiper-slide {
  box-sizing: border-box;
  height: auto;
}
#service-flow .swiper-button-prev, #service-flow .swiper-button-next {
  top: 18rem;
  border-radius: 0.5rem;
  background: #37190c;
  width: 4rem;
  height: 4rem;
}
#service-flow .swiper-button-prev::after, #service-flow .swiper-button-next::after {
  content: none;
}
#service-flow .swiper-button-prev svg, #service-flow .swiper-button-next svg {
  fill: #FFF;
}
#service-flow .swiper-button-prev {
  left: -1rem;
}
#service-flow .swiper-button-next {
  right: -1rem;
}
#service-flow .swiper-button-disabled {
  display: none;
}
#service-flow.reserve {
  margin-top: 0;
  margin-bottom: 2rem;
}

#service-voices {
  margin-top: 5rem;
}
#service-voices .voice__list {
  margin-top: 1rem;
}
#service-voices .voice__list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 5% 1.5rem;
}
#service-voices .voice__list li {
  position: relative;
  width: 100%;
  margin-right: 0;
  background: #37190c;
  border-radius: 0.5rem;
  padding: 1rem 1.3rem 2.5rem;
  margin-top: 3rem;
}
#service-voices .voice__list li:nth-last-child(1) {
  margin-right: 0;
}
#service-voices .voice__list li::before, #service-voices .voice__list li::after {
  position: absolute;
  content: "";
  bottom: 0.3rem;
  width: 2.5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
}
#service-voices .voice__list li::before {
  background-image: url("../images/icon04.svg");
  left: 0.3rem;
}
#service-voices .voice__list li::after {
  background-image: url("../images/icon03.svg");
  right: 0.3rem;
}
#service-voices .voice__list .is__top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -70%);
  width: 12rem;
  height: 3rem;
}
#service-voices .voice__list .img__wrapper {
  background: #D8D9D8;
  border-radius: 0.5rem;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
#service-voices .voice__list .img__wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: top;
}
#service-voices .voice__list .text__wrapper {
  color: #FFF;
  margin-top: 1.8rem;
}
#service-voices .voice__list h3 {
  color: #FFF;
  font-size: 1.1rem;
}
#service-voices .voice__list p {
  color: #FFF;
  margin-bottom: 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

#service__other {
  margin-top: 5rem;
  position: relative;
  background-image: url("../images/service__strength__bg.jpg");
  padding: 4rem 0;
  background-size: cover;
  background-repeat: no-repeat;
}
#service__other .head__common {
  margin: 0 5%;
}
#service__other .head__common h2 {
  color: #FFF;
}
#service__other .head__common .desc {
  color: #FFF;
  font-size: 0.84rem;
}

.menu__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 3rem 5% 0;
}
.menu__wrapper .menu {
  position: relative;
  width: 100%;
  background: #FFF;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.menu__wrapper a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem 1rem 1rem;
  z-index: 1;
  position: relative;
}
.menu__wrapper .left__content {
  display: flex;
  align-items: center;
  width: 85%;
  padding-left: 0.5rem;
}
.menu__wrapper .img__wrapper {
  background: #D8D9D8;
  border-radius: 0.5rem;
  width: 8rem;
  aspect-ratio: 21/13;
  overflow: hidden;
  margin-right: 1rem;
  display: none;
}
.menu__wrapper .img__wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.menu__wrapper .img__wrapper.reserve {
  display: block;
  width: 36vw;
  margin-right: 0;
}
.menu__wrapper .text__wrapper {
  transition: color 200ms ease;
}
.menu__wrapper .text__wrapper div {
  color: #37190c;
  font-family: "Noto Serif Japanese", serif;
  font-size: 0.7rem;
}
.menu__wrapper .text__wrapper .title {
  color: #37190c;
  font-family: "Noto Serif Japanese", serif;
  font-size: 1rem;
  padding-top: 0.2rem;
  margin-bottom: 0;
  font-weight: 400;
}
.menu__wrapper .arrow {
  fill: #37190c;
  width: 2rem;
  transition: fill 200ms ease;
}
.menu__wrapper .top__right, .menu__wrapper .top__left, .menu__wrapper .bottom__right, .menu__wrapper .bottom__left {
  position: absolute;
  width: 1.5rem;
}
.menu__wrapper .top__right, .menu__wrapper .top__left {
  top: 0.3rem;
}
.menu__wrapper .bottom__right, .menu__wrapper .bottom__left {
  bottom: 0.3rem;
}
.menu__wrapper .top__left, .menu__wrapper .bottom__left {
  left: 0.3rem;
}
.menu__wrapper .top__right, .menu__wrapper .bottom__right {
  right: 0.3rem;
}
.menu__wrapper.course .menu {
  margin-bottom: 3rem;
  transition: background-color 200ms ease;
}
.menu__wrapper.course .menu:hover {
  background: #37190c;
}
.menu__wrapper.course .menu:hover .text__wrapper div {
  color: #FFF;
}
.menu__wrapper.course .menu:hover .text__wrapper .title {
  color: #FFF;
}
.menu__wrapper.course .menu:hover .arrow__wrapper {
  background: #FFF;
}
.menu__wrapper.course .menu:hover .arrow__wrapper span {
  color: #37190c;
}
.menu__wrapper.course .menu:hover .arrow {
  fill: #37190c;
}
.menu__wrapper.course .title {
  padding-top: 0.4rem;
  font-size: 1.3rem;
}
.menu__wrapper.course .arrow__wrapper {
  background: #37190c;
  border-radius: 2rem;
  padding: 0.4rem 0.6rem 0.4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 200ms ease;
}
.menu__wrapper.course .arrow__wrapper span {
  white-space: nowrap;
  color: #FFF;
  font-size: 0.7rem;
  margin-right: 0.5rem;
  transition: color 200ms ease;
}
.menu__wrapper.course a {
  flex-direction: column;
  padding: 1.5rem 1.2rem 1.1rem;
  height: 100%;
}
.menu__wrapper.course a.reserve {
  padding: 1.5rem 1.2rem 1.5rem 1rem;
}
.menu__wrapper.course .top__wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 0.5rem;
}
.menu__wrapper.course .top__wrapper.reserve {
  padding-right: 0;
  padding-left: 1rem;
}
.menu__wrapper.course .left__content {
  width: 78%;
}
.menu__wrapper.course .arrow {
  fill: #FFF;
  width: 1.2rem;
}
.menu__wrapper.course ul {
  width: 100%;
  margin: 1.5rem 0 0;
}
.menu__wrapper.course li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #EAE5D2;
  border-radius: 0.5rem;
  padding: 0.8rem 1rem;
  margin-bottom: 0.5rem;
}
.menu__wrapper.course li h3 {
  color: #37190c;
  font-size: 1rem;
  margin: 0;
  font-weight: 700;
}
.menu__wrapper.course li div {
  color: #37190c;
  font-size: 1rem;
  text-align: right;
  width: 100%;
  margin-top: 0.5rem;
}

#archive__mv {
  position: relative;
  height: 30vh;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center;
}

#course__list {
  margin-bottom: 5rem;
}
#course__list.reserve {
  margin-bottom: 2rem;
}

#access__info {
  background: linear-gradient(to bottom, transparent 11%, #FFF 11%, #FFF 100%);
}
#access__info .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3rem;
}
#access__info .img__wrapper {
  overflow: hidden;
  width: 90%;
  height: 48vw;
}
#access__info .img__wrapper img {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
#access__info .detail__wrapper {
  color: #37190c;
  width: 90%;
  margin-top: 3rem;
}
#access__info .is__eng {
  font-family: "Noto Serif Japanese", serif;
  font-size: 1rem;
}
#access__info .title__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
#access__info h2 {
  color: #37190c;
  font-size: 1.8rem;
  font-family: "Noto Serif Japanese", serif;
  margin-bottom: 0;
}
#access__info .sns {
  display: flex;
  align-items: center;
}
#access__info .sns a {
  color: #37190c;
  font-size: 1.5rem;
  margin-right: 1rem;
}
#access__info .sns a:last-child {
  margin-right: 0;
}
#access__info dl {
  padding: 1.5rem;
  display: flex;
  border-radius: 10px;
  box-shadow: 0.4vw 0.4vw 2vw rgba(17, 17, 17, 0.2);
  margin-bottom: 1rem;
  font-family: "Noto Sans Japanese", sans-serif;
}
#access__info dl.reserve__btn {
  color: #FFF;
  background: #EB5F5E;
  display: flex;
  align-items: center;
}
#access__info dl.reserve__btn dd {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#access__info dl.reserve__btn svg {
  fill: #FFF;
  width: 2rem;
}
#access__info dt {
  width: 20%;
  font-size: 14px;
}
#access__info dd {
  margin: 0;
  font-size: 14px;
}
#access__info dd p {
  margin: 0 0 1rem;
}
#access__info dd a {
  color: #37190c;
  display: flex;
  align-items: center;
}
#access__info dd a svg {
  width: 1.8rem;
  fill: #37190c;
  margin-right: 0.2rem;
}
#access__info dd a span {
  position: relative;
  font-size: 14px;
}
#access__info dd a span::before {
  position: absolute;
  content: "";
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #37190c;
}
#access__info iframe {
  display: block;
  margin-bottom: 0;
  margin-top: 3rem;
}

.__headCv {
  position: fixed;
  z-index: 1000000;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  background: #37190c;
  color: white;
  line-height: 1;
}
.__headCv::before, .__headCv::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
}
.__headCv::before {
  background-image: url("../images/icon05.png");
  top: 6px;
  right: 3px;
}
.__headCv::after {
  background-image: url("../images/icon06.png");
  top: 6px;
  left: 3px;
}
.__headCv .__headCvInner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 23px 0;
  fill: white;
  font-size: 3vm;
}
.__headCv .__headCvInner::before, .__headCv .__headCvInner::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
}
.__headCv .__headCvInner::before {
  background-image: url("../images/icon07.png");
  bottom: 6px;
  right: 3px;
}
.__headCv .__headCvInner::after {
  background-image: url("../images/icon08.png");
  bottom: 6px;
  left: 3px;
}
.__headCv svg {
  width: 26px;
  height: auto;
  margin-right: 10px;
}
.__headCv .__text {
  font-weight: 700;
}/*# sourceMappingURL=common_sm.css.map */