@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
  line-height: 1.2;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

:root {
  --variable-collection-white: rgba(255, 255, 255, 1);
  --variable-collection-black: rgba(0, 0, 0, 1);
  --variable-collection-gray-silver-sand: rgba(196, 196, 196, 1);
  --variable-collection-gray-bright-gray: rgba(239, 239, 239, 1);
  --variable-collection-gray-ghost-white: rgba(249, 249, 249, 1);
  --variable-collection-denim-blue: rgba(47, 58, 188, 1);
  --variable-collection-gray-spanish-gray: rgba(156, 156, 156, 1);
  --variable-collection-maincolor: rgba(14, 32, 235, 1);
  --variable-collection-browncolor: rgba(67, 5, 5, 1);
  --variable-collection-textcolor: rgba(27, 3, 3, 1);
  --variable-collection-browncolor2: rgba(162, 150, 150, 1);
  --variable-collection-redcolor: rgba(157, 33, 37, 1);
  --variable-collection-greencolor: rgba(40, 140, 30, 1);
  --variable-collection-yellowcolor: rgba(223, 223, 71, 1);
  --variable-collection-light-silver: rgba(217, 217, 217, 1);
}

.sp,
.pc {
  width: 100%;
}


body.active {
  overflow: hidden;
}

body{
  font-family: "Noto Sans JP", sans-serif;
  color: #392809;
  background-color: #FDF9F6;

}


.container{
  padding: calc(100 / 1440 * 100vw) calc(200 / 1440 * 100vw) 0 calc(200 / 1440 * 100vw);
}

h1{
  font-size:2.25rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
}

h2{
  font-size: 1.5rem;
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
}

p{
  font-size: 1rem;
  line-height: 1.5;
}

img{
 display: block;
}

ol,ul {
   list-style: disc;
   padding-left: 1rem;
}

h1,h2,h3{
     margin-top: 1rem;
}

h3 {
    font-size: 120%;
    font-weight: bold;
}
/***spメニュー******/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  /*background-image: url('../img/service/point_bgimg.jpg');*/
  background-image: url('../img/common/bg_p2.jpg');
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 200;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
}
nav .inner ul li a {
  display: block;
  color: #f9f4f1;
  /*color: #392809;*/
  font-size: 0.875rem;
  font-weight: bold;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 768px) {
  nav {
    left: -220px;
    width: 80%;
  }
}
.toggle_btn {
  display: block;
  position: fixed;
  top: 0.75rem;
  right: 0.75rem;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #3928095e;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #3928095e;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #EBEAE5;
  opacity: 0.3;
  z-index: 2;
  cursor: pointer;
}

.sp_menu_contact{
  text-align: center;
  margin-top: 2rem;
}


/******/
.sp_m_c_btn a{
 /*background: linear-gradient(-20deg, #DBB400 0%, #EDD773 50%, #DBB400 100%);*/
 padding: 0.5rem 1rem;
 color:#392809;
 font-size:0.875rem;
/* border-radius: 50px;*/
 
 font-family: "Shippori Mincho", serif;
 border: 2px solid;
        border-image: linear-gradient(to right, #DBB400, #EDD773) 1;
        background-color: #fef9f7;
  position: relative;
  z-index: 1;
  transition: .3s;
}
.sp_m_c_btn a::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  background: linear-gradient(-20deg, #DBB400 0%, #EDD773 50%, #DBB400 100%);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.sp_m_c_btn a:hover::before{
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.sp_m_c_btn a {
 padding: 0.5rem 1rem;
  color: #392809;
  font-size: 0.875rem;
  font-weight: bold;
  font-family: "Shippori Mincho", serif;
 border: 2px solid #815a2b;
        /*border-image: linear-gradient(to right, #DBB400, #EDD773) 1;*/
        background-color: #fef9f7;
  background: transparent;
  background-color: #fef9f7;
  position: relative;
  z-index: 1;
  transition: .3s;
}
.sp_m_c_btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(-20deg, #DBB400 0%, #EDD773 50%, #DBB400 100%);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.sp_m_c_btn a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.sp_m_c_btn a:hover {
  background: transparent;
  position: relative;
  z-index: 1;
  transition: .3s;
}

.sp_m_c_btn {
    text-align: center;
    margin-top: 2rem;
}

/*****/

/***spメニューここまで*****/

.move_btn{
  text-align: center;
  padding-top:3rem;
}
.move_btn a{
  display: inline-block;
  padding: 0.875rem 2rem;
  font-weight: bold;
  /*background: linear-gradient(-20deg, #DBB400 0%, #EDD773 50%, #DBB400 100%);
  border-radius: 50px;*/
  border: 2px solid #815a2b;;
  /*border-image: linear-gradient(to right, #DBB400, #EDD773) 1;*/
  background-color: #fef9f7;
  color: #392809;

  cursor: pointer;
    position: relative;
    z-index: 1;
    transition: .3s;
    /*overflow: hidden;*/
}

.move_btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #815a2b;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.move_btn a:hover {
  color: #ffffff;
}
.move_btn a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.top .headerbutton a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(-20deg, #DBB400 0%, #EDD773 50%, #DBB400 100%);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

.top .headerbutton a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}


/*
.move_btn a::before {
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    transition: .5s;
    content: '';
}

.move_btn a:hover::before {
    animation: flash .75s;
}

@keyframes flash {
    100% {
        left: 120%;
    }
}
    */


.contact_area{
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-image: url('../img/common/bg_p3.jpg');
}

.contact_img{
  /*background-color: #DAD0C2;*/
  padding: calc(100 / 1440 * 100vw) calc(200 / 1440 * 100vw);
}

.contact_img img{
  width: 100%;
  transition: .3s ease-in-out;
}

.contact_img:hover img {
  filter: brightness(1.1);
}

.kaisou{
  background-color: #FEFCF7;
}

.wrap_kaisou{
  padding: 1rem 2rem;
  color: #D9D9D9;
}

.wrap_kaisou a{
  color: #D9D9D9;
}

.wrap_kaisou a.kaisou_active{
  color:#392809;
}

.kaisou_active{
  color:#392809;
}

.post_hidden{
 display: none;
}
.ma_grid{
 display: grid;
 grid-template-columns: 1fr 1fr 1fr;
 gap: 3.75rem 1.25rem;
 padding-top: 3.75rem;
}

.post_thum{
 width: 100%;
 position: relative;
 padding-top: 75%;
 overflow: hidden;
 border-radius: 10px 10px 0 0;
}

.post_thum img{
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
}


.post_c_text_area {
  color: #392809;
  padding:0.5rem;

}

.post_c_area{
 border-radius: 10px;
 box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
 background-color: #ffffff;
}

.post_cat{
 font-size: 0.75rem;
 background-color: #F9F9F7;
 padding: 0.4rem 0.5rem;
 width:fit-content
}

.post_c_title{
 font-family: "Shippori Mincho", serif;
 font-size: 1rem;
 font-weight: bold;
 margin: 0.5rem 0;
}

.post_c_excerpt{
 font-size: 0.875rem;
 margin-bottom: 0.5rem;
}

.more_btn{
 margin:  5.4rem auto;
 text-align: center;
}

.sns_share_btn{
 margin-top: 2.5rem ;
}


.more_btn_hidden{
 display: none;
}

.no_post_text_hidden{
 display: none;
}

.single_page_top{
     padding-top: calc(100vw * 0.098);
}


.pp_container{
 padding: calc(100 / 1440 * 100vw) calc(200 / 1440 * 100vw);
 background-image:  url('../img/common/bg_p3.jpg');
}

.area_2_wwo{
 background-color: #ffffff;
 padding: calc(100 / 1440 * 100vw) calc(40 / 1440 * 100vw);
 line-height: 1.5;
}

.pp_cont{
 border-bottom: 1px solid #EFEFEF;
 padding: 4rem 0;
}

.pp_con_1{
 padding-top: 0;
}

.pp_c_title{
 background: linear-gradient(90deg, #DBB400 0%, #EDD773 50%, #DBB400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

table.table_pp {
    text-align: left;
}

table.table_pp td{
    padding: 1rem;
}

table.table_pp th{
    padding: 1rem;
}

.footer{
 background-color: #897E6D;
 padding: 4rem 2rem;
 font-family: "Shippori Mincho", serif;
}

.footer a{
 color: #ffffff;
}



.fo_sns{
 text-align: end;
}

.fo_content{
 margin: 0 0.75rem;
 font-size: 0.75rem;
}

.fo_sns i{
 font-size:2rem;
 padding: 0 0.25rem;
}

.fo_c{
 font-size: 0.625rem;
 color: #ffffff;
 text-align: center;
 margin-top:1rem;
}

.top header a{
 font-family: "Shippori Mincho", serif !important;
}

.sp_menu_list a{
 font-family: "Shippori Mincho", serif !important;
}

video {
    display: block;
}

div#news__btn img {
    text-align: center;
    margin: 0 auto;
}

.fo_logo img{
 width: 4rem;
filter: drop-shadow(2px 2px 0px #ffffff);

}


.s_ms_c_bg{
     background-color: #f1ecea;
     padding: 1rem;
    border-radius: 10px;
}

.no_post_bg{
     background-color: #f1ecea;
     padding: 1rem;
    border-radius: 10px;
}

/****************/
@media (min-width: 769px) {

  .pc{
    display: block;
  }
  .sp{
    display: none;
  }

  .fo_con_list{
   display: flex;
   justify-content: flex-end;
   margin: 2rem 0;
  }
}


@media (max-width: 768px) {

  .pc{
    display: none;
  }
  .sp{
    display: block;
  }

  .c-hamburger-menu {
  position: relative;
  }
  .c-hamburger-menu__list {
    background: linear-gradient(90deg, rgb(209, 171, 170), rgb(235, 215, 210));
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 2rem; /* カスタマイズしてください */
    position: absolute;
    transform: translateX(-100%);
    transition: 0.3s; /* カスタマイズしてください */
    top: 100%;
    width: 100%;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }

  .c-hamburger-menu__input {
  display: none;
  }

  .c-hamburger-menu__bg {
  background-color: #000; /* カスタマイズしてください */
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; /* カスタマイズしてください */
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  }

  #hamburger:checked ~ .c-hamburger-menu__bg {
    display: block;
  }

  .c-hamburger-menu__button {
    display: none;
  }
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px; /* カスタマイズしてください */
    height: 32px; /* カスタマイズしてください */
    justify-content: center;
    width: 32px; /* カスタマイズしてください */
  }

  .c-hamburger-menu__button-mark {
  background-color: #000; /* カスタマイズしてください */
  display: block;
  height: 1px; /* カスタマイズしてください */
  transition: 0.3s; /* カスタマイズしてください */
  width: 20px; /* カスタマイズしてください */
  }

  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu__button
    .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); /* カスタマイズしてください */
    transform-origin: 0%; /* カスタマイズしてください */
  }

  li.c-header__list-item {
    padding-bottom: 2rem;
  }

  a.c-header__list-link {
    color: #392809;
  }

  a.c-header__list-link.sp_menu_contact {
    background: linear-gradient(-20deg, #DBB400 0%, #EDD773 50%, #DBB400 100%);
    border-radius: 100px;
    padding: 0.5rem 1rem;
  }


  /***********/
 .container{
  padding: 1.25rem 1rem 0 1rem;
 }
 body{
   font-size: 0.75rem;
   line-height: 1.5;
 }
 h1 {
    font-size: 1.5rem;
 }
 h2 {
    font-size: 1.2rem;
 }

 p{
  font-size:0.75rem;
 }

 .contact_img {
    padding: 3rem 1rem;
 }

 .sp_logo{
  position: relative;
 }
 .sp_logo img{
  position: absolute;
  top:0.75rem;
  left:0.75rem;
  z-index: 100;
  width: 38px;
 }

 .fv_img img {
    padding-top: 0 !important;
 }
 
 .wrap_kaisou {
    padding: 0.5rem 1rem;
    color: #D9D9D9;
 }

 .single_page_top {
    padding-top: calc(100vw * 0.16);
 }

 .post_c_title {
    margin: 0.2rem 0;
 }


 .fv_img.pp_top {
    padding-top: 3rem;
 }

 .pp_container {
    padding: 3rem 1rem 6rem 1rem;
 }
 .area_2_wwo {
  padding: 1.5rem 1rem;
 }
 .pp_c_title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
 }
 .pp_cont {
    padding: 1rem 0;
 }

 .fo_con_list{
  width:fit-content;
  margin: 2rem 0 2rem auto;
 }
 .fo_content {
    margin: 1rem 0;
    font-size: 0.875rem;
 }

 .fo_c {
    margin-top: 2rem;
 }

 .sp_menu_logo{
      margin-bottom: 1.5rem;
 }

 .img-wrapper.sp_menu_logo img {
    width: 48px;
    filter: drop-shadow(2px 2px 0px #ffffff);
}

}

