@charset "UTF-8";
/* CSS Document */
@font-face {
  font-family: "KaiseiTokumin-Medium";
  src: url("../font/KaiseiTokumin-Medium.ttf");
}
@font-face {
  font-family: "KaiseiTokumin-Bold";
  src: url("../font/KaiseiTokumin-Bold.ttf");
}
@font-face {
  font-family: "KaiseiTokumin-ExtraBold";
  src: url("../font/KaiseiTokumin-ExtraBold.ttf");
}
@font-face {
  font-family: "DelaGothicOne-Regular";
  src: url("../font/DelaGothicOne-Regular.ttf");
}
@font-face {
  font-family: "NotoSansJP-Medium";
  src: url("../font/NotoSansJP-Medium.otf");
}
@font-face {
  font-family: "NotoSansJP-Bold";
  src: url("../font/NotoSansJP-Bold.otf");
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "NotoSansJP-Medium", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1.6rem;
  color: #692b2d;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  padding-bottom: 532px; /*フッターの高さ入力*/
}

main {
  overflow: hidden;
}

header {
  position: fixed;
  width: 100%;
  z-index: 99;
  top: 0;
  left: 0;
}

.fixedmenu {
  background: #fff;
}

header .inner_header {
  position: relative;
  max-width: 1200px;
  margin: auto;
  width: 100%;
  height: 100%;
}

#switch,
.sp_logo,
.display_sp {
  display: none;
}

img {
  width: 100%;
  height: auto;
  pointer-events: none;
  /* SPの長押し禁止 */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
}

a {
  display: block;
}

h1,
h2,
h3 {
  font-weight: bold;
}

/*ヘッダー------------------------------------------*/
header .logo {
  position: absolute;
  top: 1vh;
  left: 0;
  height: 50px;
}
@media (max-width: 768px) {
  header .logo {
    padding: 0 15px;
  }
}

#NavWrap {
  display: none;
  flex-direction: column;
}

header ul.header_menu,
header .link_menu {
  display: flex;
  flex-direction: column;
  margin-right: 0;
  margin-left: auto;
}

header .header_menu li {
  text-align: left;
}

header .header_menu li a {
  display: block;
}

header .link_menu li a {
  display: flex;
  justify-content: center;
  align-items: center;
}

header .link_menu li a .logo_area {
  display: block;
  width: 18px;
  height: 18px;
}

.fixedmenu .header_menu li a {
  color: #333;
}

/*メイン------------------------------------------*/
section {
  position: relative;
  display: block;
}

.relative {
  position: relative;
}

.null {
  position: relative;
  top: -200px;
}

.w1200 {
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.w744 {
  max-width: 744px;
  margin: auto;
  position: relative;
}

.flex_warp {
  display: flex;
  justify-content: space-between;
}

.map {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 15px;
}

/*フッター------------------------------------------*/
footer {
  max-width: 1200px;
  width: 97.5%;
  margin: 0 auto 50px;
  position: sticky;
  top: 100vh;
  z-index: -1;
}

footer .footer_wrap {
  margin: 0 0 0 50%;
  padding: 40px 15px;
  width: 32.5%;
  max-width: 390px;
  background: #361617;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
}

footer .footer_wrap .deco {
  display: block;
  margin-bottom: 15px;
}

footer .footer_wrap dl {
  display: flex;
  margin-bottom: 8px;
  font-family: "KaiseiTokumin-Medium";
  font-size: clamp(1rem, 1vw, 1.2rem);
  color: #d6a455;
  line-height: 1.6;
}

footer .footer__policy a {
  font-family: "KaiseiTokumin-Medium";
  font-size: clamp(1rem, 1vw, 1.2rem);
  color: #d6a455;
  padding-left: 0.8rem;
}

footer .footer_wrap dl dt {
  font-weight: normal;
}

/*フォーム内*/
.form-group {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 60px;
  color: #707070;
  font-weight: bold;
}

.form-group label,
.form-group p {
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.form-group.radio .flex_warp {
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
}

.form-group.radio label {
  border-bottom: none;
  margin: 0 30px 0 0;
  padding: 0;
  font-weight: 400;
}

.form-group .input_box {
  width: 100%;
  height: 50px;
}

.form-group .input_box input {
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  font-weight: normal;
  border: solid 1px #111;
}

.form-group .input_box input:focus-visible {
  outline: none;
}

.form-group .text_box {
  width: 100%;
  box-sizing: border-box;
}

.form-group .text_box textarea {
  width: 100%;
  box-sizing: border-box;
  font-weight: normal;
  padding: 10px;
  border: solid 1px #111;
}

.form-group .text_box textarea:focus-visible {
  outline: none;
}

.form-group.center_item {
  justify-content: center;
  align-items: center;
  background: #eeeeee;
}

.form-group.center_item label {
  width: auto;
  line-height: 1;
}

.form-group .required {
  display: inline-block;
  background: #e42128;
  color: #fff;
  font-size: 1.2rem;
  margin-left: 10px;
  padding: 2px 5px;
  line-height: 1;
}

.form-group .checkbox {
  width: 30px;
  height: 30px;
  outline: none;
  margin-right: 20px;
}

.form-group.submit_btn {
  background: none;
  padding-top: 49px;
}

.form-group.submit_btn input {
  width: 168px;
  color: #fff;
  background: #111;
  text-align: center;
  font-weight: 500;
  padding: 10px;
  transition: 0.3s;
  border: solid 1px #111;
}

.form-group.submit_btn input:hover {
  background: #fef00d;
  color: #111;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: auto;
  appearance: auto;
  background: #fff;
}

input[type=submit],
input[type=button] {
  -webkit-appearance: none;
}

.form-group .input_box input#age {
  width: 12%;
}

.policy h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}

.policy .section_policy div {
  margin-bottom: 50px;
  line-height: 1.8;
}

.policy .section_policy div h2 {
  font-size: 1.8rem;
  padding-bottom: 10px;
  border-bottom: solid 1px #111;
  margin-bottom: 10px;
}

.policy .section_policy ul li {
  list-style: inside;
}

.policy .section_policy .indent {
  text-indent: -1em;
  padding-left: 1em;
  margin: 20px 0;
}

.policy footer {
  width: 100%;
  max-width: 100%;
  background: #361617;
}

.policy footer .footer_wrap {
  width: 100%;
  max-width: 744px;
  margin: auto;
  box-shadow: none;
  padding: 40px 0;
}

.policy footer .footer_wrap .deco {
  max-width: 390px;
}

@media screen and (max-width: 785px) {
  .form-group {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
  .form-group label {
    width: 100%;
    margin-bottom: 0;
  }
  .form-group.radio .flex_warp {
    padding: 0;
  }
  .form-group .text_box {
    width: 100%;
  }
  .form-group .input_box {
    width: 100%;
    height: 40px;
  }
  .form-group.check_wrap {
    flex-direction: row;
    padding: 15px 0;
  }
  .form-group.radio label {
    margin: 0;
  }
  .form-group .checkbox {
    width: auto;
    height: auto;
    margin-right: 10px;
  }
  .form-group.check_wrap label {
    margin-bottom: 0;
  }
}
/*フォーム内ここまで*/
@media screen and (max-width: 1200px) {
  .w1200 {
    padding: 0 15px;
    box-sizing: border-box;
  }
  .w744 {
    padding: 0 15px;
    box-sizing: border-box;
  }
  header .inner_header {
    padding: 0 15px;
  }
  .policy footer .footer_wrap {
    padding: 40px 15px 60px 15px;
  }
}
@media screen and (max-width: 1080px) {
  /*ヘッダー--------------------------------------*/
  body {
    padding-bottom: 0; /*フッターの高さ入力*/
  }
  header .header_wrap {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 0 1.25% 0 auto;
    width: 42%;
    height: 60px;
    max-width: 360px;
    z-index: 999;
    background: #361617;
    border-radius: 10px 10px 0 0;
  }
  #switch ~ label {
    width: 40px;
    height: 40px;
    position: absolute;
    box-sizing: border-box;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    z-index: 999;
    background: #361617;
    border-radius: 5px;
  }
  #switch:checked ~ label {
    background: #d6a455;
  }
  #switch ~ label span {
    display: inline-block;
    transition: all 0.2s; /*アニメーションの設定*/
    position: absolute;
    left: 8px;
    height: 1px;
    background: #f7ebd5;
    width: 60%;
  }
  #switch ~ label span:nth-of-type(1) {
    top: 9px;
  }
  #switch ~ label span:nth-of-type(2) {
    top: 14px;
  }
  #switch ~ label span:nth-of-type(3) {
    top: 20px;
  }
  #switch ~ label span:last-child {
    color: #f7ebd5;
    font-size: 0.65rem;
    left: 0;
    right: 0;
    margin: auto;
    background-color: transparent !important;
    width: 77%;
  }
  #switch ~ label span.menu_text span:first-child {
    display: inline-block;
    background-color: transparent !important;
    top: 27px;
    width: 100%;
    right: 0;
    left: 0;
    text-align: center;
  }
  #switch ~ label span.menu_text span:last-child {
    display: none;
  }
  #switch:checked ~ label span:nth-of-type(1) {
    top: 8px;
    left: 9px;
    transform: translateY(6px) rotate(-30deg);
    width: 60%;
  }
  #switch:checked ~ label span:nth-of-type(2) {
    opacity: 0;
  }
  #switch:checked ~ label span:nth-of-type(3) {
    top: 20px;
    left: 9px;
    transform: translateY(-6px) rotate(30deg);
    width: 60%;
  }
  #switch:checked ~ label span.menu_text span:first-child {
    display: none;
    background: none;
  }
  #switch:checked ~ label span.menu_text span:last-child {
    display: inline-block;
    opacity: 1;
    top: 27px;
    text-align: center;
  }
  #switch:checked ~ #NavWrap {
    display: block;
    opacity: 1;
    visibility: visible;
    bottom: 70px;
    right: 1.25%;
    box-sizing: border-box;
  }
  #NavWrap {
    padding-top: 30px;
    padding-bottom: 20px;
    position: fixed;
    bottom: 60px;
    right: 1.25%;
    width: 27%;
    background: #f7ebd5;
    transition: all 0.3s;
    box-sizing: border-box;
    display: block;
    opacity: 0;
    visibility: hidden;
    font-family: "KaiseiTokumin-Medium";
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.16);
  }
  header ul.header_menu {
    width: 60%;
    flex-direction: column;
    margin: 0 auto;
  }
  header nav .header_menu li a {
    display: block;
    padding-left: 12px;
    margin-bottom: 1em;
    font-size: clamp(1rem, 1.7vw, 1.6rem);
    color: #361617;
    transition: all 0.3s;
    position: relative;
  }
  header nav .header_menu li a:hover {
    color: #bd3525;
  }
  header nav .header_menu li a:before {
    content: "";
    position: absolute;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #bd3525;
  }
  header nav .link_menu {
    display: flex;
    flex-wrap: nowrap;
    width: 60%;
    margin: 0 auto;
  }
  header nav .link_menu li a {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 10.5px 0;
    margin-bottom: 1em;
    border-top: solid 2px #361617;
    border-bottom: solid 2px #361617;
    color: #361617;
    font-size: clamp(1.2rem, 1.1vw, 1.4rem);
    text-align: center;
    transition: all 0.3s;
    position: relative;
  }
  header nav .link_menu li a:hover {
    transform: translateY(-0.15em);
    color: #bd3525;
  }
  header nav .link_menu li a:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #361617;
  }
  header nav .link_menu li a:after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #361617;
  }
  header nav .link_menu li a .logo_area {
    display: inline-block;
    width: 12.5%;
  }
  header nav .link_menu li.pamphlet a {
    background: #361617;
    color: #f7ead4;
    border-top: solid 2px transparent;
    border-bottom: solid 2px transparent;
  }
  header nav .link_menu li.pamphlet a:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #f7ead4;
  }
  header nav .link_menu li.pamphlet a:after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #f7ead4;
  }
  .fix_menu,
  .fixedmenu {
    background: none;
  }
  .fixedmenu .header_menu li a {
    color: #fff;
  }
  #fixed-text,
  .midnightInner {
    height: 100%;
  }
  body .black .midnightInner .bar {
    background: #333 !important;
  }
  /*メイン--------------------------------------*/
  header .inner_header {
    width: 100%;
  }
  .display_pc {
    display: none;
  }
  .display_sp {
    display: block;
  }
  .null {
    position: relative;
    top: -150px;
  }
  h2 {
    font-size: 1.8rem;
  }
  /*フッター--------------------------------------*/
  footer .footer_wrap {
    margin: 0 0 0 auto;
    width: 43%;
    max-width: 360px;
    padding-bottom: 60px;
  }
  footer .footer_wrap .deco {
    display: block;
    margin-bottom: 15px;
  }
  footer .footer_wrap dl {
    display: flex;
    margin-bottom: 8px;
    font-family: "KaiseiTokumin-Medium";
    font-size: clamp(1rem, 1vw, 1.2rem);
    color: #d6a455;
  }
}
@media (max-width: 768px) {
  header .header_wrap {
    margin: 0 auto;
    width: 93%;
    max-width: 390px;
    right: 50%;
    transform: translate(50%);
  }
  #NavWrap {
    width: 60%;
  }
  header nav .header_menu li a {
    font-size: clamp(1rem, 4.1vw, 1.6rem);
  }
  header nav .link_menu li a {
    font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  }
  footer .footer_wrap {
    margin: 0 auto;
    width: 93%;
    max-width: 390px;
  }
  footer .footer_wrap dl {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
  .section_policy {
    margin-top: 100px;
  }
}
@media (max-width: 600px) {
  header .header_wrap {
    width: 100%;
    max-width: none;
  }
  #NavWrap {
    width: 61%;
  }
  footer {
    width: 100%;
    margin: 0;
  }
  footer .footer_wrap {
    margin: 0 auto 50px;
    width: 100%;
    max-width: none;
  }
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*WP-navigation*/
.navigation {
  width: 100%;
  margin-bottom: 60px;
}

.wp-pagenavi {
  clear: both;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: auto;
}

.navigation .pages {
  display: none;
}

.navigation .page {
  margin-right: 10px;
}

.navigation .page.smaller {
  color: #361617;
  background-color: #e5c795;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
}

.navigation .page.larger {
  color: #361617;
  background-color: #e5c795;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
}

.wp-pagenavi span.current {
  color: #f7ebd5;
  background-color: #bd3525;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100%;
  margin-right: 10px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  white-space: nowrap;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  line-height: 40px;
  color: #361617;
}

.previouspostslink {
  margin-right: 10px;
}

@media screen and (max-width: 785px) {
  .policy .section_policy div h2 {
    font-size: 1.4rem;
  }
  .policy .section_policy div p {
    font-size: 1.4rem;
  }
  .policy .section_policy div ul {
    font-size: 1.4rem;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.popupTrigger,
.fadeupTrigger,
.fadeinTrigger {
  opacity: 0;
}

.popup {
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeIn {
  animation-name: fadeIntAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}

.delay03 {
  animation-delay: 0.3s;
}

.delay06 {
  animation-delay: 0.6s;
}
