/*
  Theme Name:   serenity meadow
  Theme URI:    https://thewppress.com/theme/how-to-create-the-basic-wordpress-theme/
  Description:  SMA theme
  Author:       Rena Hirayabu
  Author URI:   thewppress.com
  Version:      1.0
*/
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #22667B!important;
}

* {
 margin: 0;
 padding: 0;
}

html,
body {
  height: 100%;
  margin: 0;
  padding:0;
}

html {
  font-size: 100%;
}

body {
  color:#333333;
  background-color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  object-fit: cover;
  height: auto;
}

li {
  list-style: none;
}

p {
  line-height:unset;
}

small {
  font-size: 9px;
}

.br-pc {
  display: block;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 4%;
}

.page-id-24 .logo{
  padding-top:2.1875vw;
  padding-left: 3.7656vw;
  position: absolute;
  width:10.9375vw;
}

.fixed #logo_image {
  width: 7.421vw;
}

.logo{
 position: absolute;
 width: 7.421vw;
 padding-top: 5px;
}

.sec-title{
  text-align: center;
}
.sec-title .en {
  font-size: 40px;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 100;
  font-style: normal;
  text-align: center;
  color: #22667B;
}

.en::after {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #22667B;
  display: block;
  margin: 0 auto;
}


.sec-title .ja {
  display: block;
  font-size: 16px;
  margin-top:15px;
  margin-bottom: 60px;
  color: #22667B;
  font-weight: 300;
}

.content-title {
  margin-bottom: 45px;
  padding-bottom: 15px;
  font-size: 25px;
  border-bottom:  1px solid #22667B;
  font-family: "Zen Old Mincho", serif;
}

.btn{
  color: #22667B;
  font-size: 16px;
  display: inline-block;
  text-align: center;
  position: relative;
  float: right;
  min-width: 300px;
  display: flex;
}

.btn-right{
  display: inline-block;
  position: relative;
  width: 100px;
  z-index: 1;  
}

.btn-right::before { 
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: 3px;
  width: 100px;
  height: 1px;
  background: #22667B;
}
 
.btn-right::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 78px;
  width: 18px;
  height: 20px;
  border: 1px solid;
  border-color: transparent transparent #22667B ;
  transform: rotate(-135deg);
}


  
.br-sp {
  display: none;
}
#header{
  height: 75px;
  width:100%;
  background-color:#fff;
}

#header.fixed{
  position: fixed;
  z-index: 999;
  top:0;
  left:0;
}

.headerWrap{
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-left: 2rem;
}
 nav{
  display: block;
  float: right;
 }

 .ul {
  display: flex;
  align-items: center;
  gap: 25px;
}

.ul ul {
  display: block;
  list-style-type: disc;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 20px;
}

li {
  display: list-item;
  text-align: -webkit-match-parent;
}

li a {
  color: #515151;
}
  
.form{
  width: 180px;
  height: 75px;
  line-height: 75px;
  background-color: #e2e6c9;
  font-size: 16px;
  display: inline-block;
  text-align: center;
}

.dli-chevron-down {
  display: inline-block;
  color: #333;
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  margin-left: 5px;
  margin-top: 7px;
}
 
.dropbtn {
  display: flex;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  margin-left: 10px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 300px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}


.dropdown:hover .dropdown-content {display: block;}


.dropdown:hover .dropbtn {background-color: #fff;}

.drawer_hidden {
  display: none;
  }
  
  .hamburger-menu {
    display: none;
    width: 50px;
    height: 50px;
    position: relative;
    border: none;
    background: transparent;
    appearance: none;
    padding: 0;
    cursor: pointer;
  }
  
  .hamburger-menu__bar {
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #22667B;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
    z-index: 100;
  }
  
  .hamburger-menu--open .hamburger-menu__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
    display: none;
  }
  
  .hamburger-menu--open .hamburger-menu__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  
  .hamburger-menu--open .hamburger-menu__bar {
    top: 50%;
  }
  .hamburger-menu__bar:first-child {
    top: 30px;
  }
  
  .hamburger-menu__bar:nth-child(2) {
    top: 38px;
  }
  .hamburger-menu__bar:last-child {
    bottom: 2px;
  }
 .form-mark{
  display: none;
 }
  #mainvisual{
    overflow: hidden;   
    margin-bottom: 120px;
    position: relative;
  }
  
 .main-content{
  position: absolute;
  top:17.2656vw;
  left:3.906vw;
  z-index: 2;
  font-family: "Zen Old Mincho", serif;
 }

 .top-title{
  font-size: 1.59722vw;
  letter-spacing: .65em;
  line-height: 2.4;
  margin-bottom: 3.375vw;
 }

 .subtitle{
  font-size: 1.09375vw;
  font-family: "BIZ UDGothic", sans-serif;
  letter-spacing: .3em;
  line-height: 2.8;
}

  .img-frame{
    float: right;
    position: relative;
    width: 78.9843vw;
    height:60vw;
    overflow: hidden;
 }

 @media screen and (max-width: 767px){
 .img-frame{
    width: 100%;
    height:153.06vw;
 }

 .top-responsive{
  width: 100%;
  height:153.06vw;
  position: relative;
 }

 }
 .img-01, .img-02, .img-03, .img-04, .img-05{
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.img-01{
  animation: slide-animation-01 24s infinite;
}
.img-02{
  animation: slide-animation-02 24s infinite;
}
.img-03{
  animation: slide-animation-03 24s infinite;
}

.img-04{
  animation: slide-animation-04 24s infinite;
}
.img-05{
  animation: slide-animation-05 24s infinite;
}

@keyframes slide-animation-01 {
  0% {opacity: 1; transform: scale(1.0);}
20% {opacity: 1;}
30% {opacity: 0; transform: scale(1.15);}
90% {opacity: 0}
100% {opacity: 1; transform: scale(1.0);}
}
@keyframes slide-animation-02 {
  0% {opacity: 0;}
20% {opacity: 0; transform: scale(1.1);}
30% {opacity: 1;}
40% {opacity: 1;}
50% {opacity: 0; transform: scale(1.0);}
100% {opacity: 0;}
}
@keyframes slide-animation-03 {
  0% {opacity: 0;}
40% {opacity: 0;  transform: scale(1.0);}
50% {opacity: 1;}
60% {opacity: 1;}
70% {opacity: 0;}
100% {opacity: 0; transform: scale(1.1);}
}

@keyframes slide-animation-04 {
  0% {opacity: 0;}
60% {opacity: 0; transform: scale(1.1);}
70% {opacity: 1;}
80% {opacity: 1;}
90% {opacity: 0; transform: scale(1.0);}
100% {opacity: 0;}
}
@keyframes slide-animation-05 {
  0% {opacity: 0;}
80% {opacity: 0;  transform: scale(1.0);}
90% {opacity: 1;}
100% {opacity: 0; transform: scale(1.1);}
}


.scroll_down {
  position: absolute;
  bottom: 0;
  left: 2.7343vw;
}

.scroll_down:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg,rgba(#000, 0) 0, rgba(#000, .8) 80%, rgba(#000, .8) 100%);
  }

.scroll_down a {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 13px;
  padding: 10px 10px 5.593vw;
  color: #22667B;
  font-size: 1.09375vw;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: .2s;
  overflow: hidden;
  margin: auto;
}

.scroll_down a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 4.8125vw;
  background: #ddd;
}

.scroll_down a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 4.8125vw;
  background: #22667B;
}

.scroll_down a:hover {
  opacity: .5;
}

#type01 a:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


#information{
  margin-bottom: 200px;
  padding: 3em;
  margin: 0 auto;
  border: solid 1px #22667B;
  width: 65.3125vw;
}

#information dl {
  display: flex;
  margin-bottom: 20px;
}
#information dt {
  width: 20%;
  padding: 15px;
  font-weight: bold;
  text-align: right;
}
#information dd {
  width: 80%;
  padding: 15px;
}

.info-title {
  font-weight: bold;
  margin-bottom: 15px;
  vertical-align: top;
}
#concept{
  margin-bottom: 200px;
  text-align: center;
}

#concept h2{
  margin-top: 180px;
}

.concept-text{
  margin: 0 auto;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  margin-bottom: 50px;
}

#concept p{
  margin-bottom: 20px;
}


#menu{
  margin-bottom: 120px;
}

#menu_sec-title{
  text-align: center;
}
#menu_sec-title .en {
  font-size: 40px;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 100;
  font-style: normal;
  text-align: center;
  color: #22667B;
}
#menu_sec-title .ja {
  display: block;
  font-size: 16px;
  margin-top:15px;
  margin-bottom: 60px;
  color: #22667B;
  font-weight: 300;
}

#menu img{
  border-radius: 20px;
}

.menu-img{
  position: relative;
}
.menu-img .img-big{
  width: 100%;
  margin-bottom: 80px;
}

.menu-img .leaf2{
  position: absolute;
  top:310px;
  left: -80px;
  width: 350px;
}

.menu-img .leaf3{
  position: absolute;
  top:310px;
  right: -80px;
  width: 350px;
}

.menu-img .leaf4{
  position: absolute;
  top:180px;
  right: -50px;
  width: 180px;
  z-index: 99;
}

.menu-content{
  overflow: hidden;
  margin-bottom: 80px;
}
.menu-content ul {
margin-bottom: 35px;
}

.menu-content ul li{
  font-family: "Zen Old Mincho", serif;
  margin-bottom: 15px;
  font-size: 20px;
}

.details{
  font-size: 16px;
}

.half{
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  margin-bottom: 35px;
}
.menu-text{
  font-size: 14px;
  margin-bottom: 80px;
}



#cristal{
  background-color: #e2e6c9;
  margin-bottom: 100px;
}

#cristal h3{
  padding-top: 140px;
  border-bottom: none;
  margin-bottom: 50px;
  padding-bottom: 0;
}

.cristal-content{
  display: flex;
  justify-content: space-between;
  padding-left: 10.156vw;
  padding-right: 10.156vw;

}

#cristal .cristal-text{
  margin-right: 10.906vw;
  width: 37.5vw;
}

.cristal-img img{
  padding: 74px 0;
}


#blog{
  text-align: center;
  margin-bottom: 170px;
  overflow: hidden;
}

#blog .entry-list{
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 0;
}

#blog .img{
  width: 200px;
}

#blog .article{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
}

#blog .article:after {
  content: "";
  display: block;
  width: 32%; 
  height: 0;
}
.entry-thumbnail{
 width: 300px;
 height: 200px;
 margin-bottom: 10px;
}

.article-card{
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(122, 122, 122, 0.1);
  position: relative;
  margin-bottom: 30px;
}

.article-card .time{
  color: #1C2C64;
  font-size: 12px;
  font-weight: bold;
  margin-left:15px;
  padding-top: 10px;
}
.article-card img{
  position: absolute;
  top: 0;
  left: 0;
}

.title{
  font-size: 18px;
  padding: 0 0 10px 15px;
}

.article .btn{
  float: right;
}

#access{
  margin-bottom: 170px;
  overflow: hidden; 
}
#access .sec-title .ja {
  margin-bottom: 170px;
}

.access-content{
  position: relative;
  display: flex;
  float: right;
  width: 80.234vw;
  background-color: #e2e6c9;
  padding: 5.859vw 0 3.906vw 7.421vw;
  border-radius: 70px 0 0 0;
}

.access-text{
  width: 25vw;
}


#access img{
  position: absolute;
  right: 100px;
  top: -7.8125vw;
  width: 32.5vw;
}
.address{
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: bold;
}


#contact {
  background-image:url(./img/contact.png); 
  margin-bottom: 45px;
  text-align: center;
}

#contact h2{
  padding-top: 83px;
}

#contact p{
  margin-bottom: 63.76px;
  padding:0 4%;
}

#contact ul{
  display: flex;
  justify-content: center;
  padding-bottom: 80px;
}

.leftbtn{
  display: inline-block;
  background-color: #F9F8F6;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  padding: 25px 0px;
  width: 300px;
}

.leftbtn a{
  width: 300px;
}


.rightbtn{
  display: inline-block;
  background-color: #F9F8F6;
  margin-left: 70px;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  padding: 25px 0px;
  width: 300px;
}

.rightbtn a{
  width: 300px;
}

#footer {
  margin-top: 0;
  text-align: center;
}

.privacy {
  color: #000;
  font-size: 13px;
  margin-bottom: 8px;
}

#footer img {
  width: 44px;
  height: 44px;
}

#copyright {
  text-align: center;
}
@media screen and (max-width: 960px) {

  #header {
    height: 70px;
    padding: 0;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
}
body {
    margin-top: 70px;
}

  .br-sp {
    display: none;
}
  .page-id-24 .logo{
    padding-top:4px;
    padding-left: 3.7656vw;
    position: absolute;
    width:48px;
  }
  
  .fixed #logo_image {
    width: 48px;
  }
  
  .logo{
    padding-top:3px;
    padding-left: 3.7656vw;
    position: absolute;
    width: 48px;
  }
  

  #header {
    height: 70px;
    padding: 0;
  }
  .headerWrap{
    align-items: center;
    justify-content: space-between;
    padding:0 10px ;
  }
     
  .headerWrap img{
    flex-shrink: 0;
    width: 100px;
  }
  .menu--open .sp_menu {
    right: 0;
   }
  
  .sp_menu {
  display: block;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 100;
  width: 100%;
  height: 100vh;
  font-size: 14px;
  }
  .sp_menu .ul {
    flex-direction: column;
    padding-top: 200px;
   }

   .menu--open .hamburger-menu__bar:first-child {
    top: 24px;
    }

  .hamburger-menu {
    display: block;  
    float: right;
    flex-shrink: 0;
    width: 25px;
    }


  
  .btn-burger {
    display: none; 
  }

  .hwrapper .drawer {
    margin-left: 10px;
  }

   .drawer-open {
  display: none;
   }

  .drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  cursor: pointer;
 }
    
  .dropbtn {
  font-size: 14px;
 }

  .dropdown-content {
  width: 100%;
  }

 .dropdown-content a {
  padding: 10px 16px;
  font-size: 14px;
 }

 .form{
  background-color: transparent;
  font-size: 14px;
}
.responsive-menu{
  display: flex;
  justify-content: end;
  height: 70px;
}
.form-mark{
  display: block;
  margin-right: 10px;
  margin-top: 28px;
 }

 .menu-img .leaf2{
  top:32.218vw;
  left: -5.25vw;
  width: 29.343vw;
  }

  .menu-img .leaf3{
    top:32.218vw;
    right: -5.25vw;
    width: 29.343vw;
    }


}
  

@media screen and (max-width: 768px) {

  body {
    font-size: 13.132px;
   }
   
  p {
     line-height:25px;
   }

  main {
    margin: 0;
    width: 100%;
   }
   
   .br-pc {
    display: none;
  }
  .sec-title .en {
    font-size: 24px;
  }
  
  .en::after {
    width: 40px;
  }
  
  .sec-title .ja {
    font-size: 10px;
    margin-top:10px;
    margin-bottom: 20px;
  }
  
  .content-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    font-size: 18px;
  }


   .btn{
    font-size: 13px;
    justify-content: right;
  }
  
  .btn-right{
    display: inline-block;
    position: relative;
    width: 70px;
    z-index: 1;  
  }
  
  
  
  .btn-right::before { 
    content: "";
    display: block;
    position: absolute;
    top: 16px;
    left: 3px;
    width: 70px;
    height: 1px;
    background: #22667B;
  }
   
  .btn-right::after {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left:48px;
    width: 18px;
    height: 20px;
    border: 1px solid;
    border-color: transparent transparent #22667B ;
    transform: rotate(-135deg);
  }
  
    #mainvisual{
      margin-bottom: 80px;
    }
  .main-img{
    width: 100%;
  }

  .main-content{
    top:95.88vw;
    left:3.906vw;
    font-family: "Zen Old Mincho", serif;
   }

   .top-small{
    width: 34.3125vw;
  }

  .top-title{
    margin-bottom: 4.375vw;
    font-size: 4.05vw;
    letter-spacing: .55em;
    line-height: 2;
   }
  
  
   .subtitle{
    font-size: 3.11vw;
    line-height: 2;
    letter-spacing: .25em;
   }


  .scroll_down {
    display: none;
  }
  
  #type01 a:after {
    animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
  }
  
  
  #information{
    padding: 2em 1em;
    width: 80%;
  }
  
  #information dl {
    display: block;
    margin-bottom: 0px;
  }
  #information dt {
    width: 100%;
    padding:  0 0 0 10px;
    text-align:left;
  }
  #information dd {
    width: 95%;
    padding: 10px 10px 0 10px;
  }
  
  .info-title {
    margin-bottom: 10px;
  }
  #concept{
    margin-bottom: 80px;
  }
  #concept h2{
    margin-top: 80px;
  }


  .concept-text{
    font-size: 13px;
    text-align: left;
    width: 90%;
    margin: 0 auto;
  }
  
  #menu{
    margin-bottom: 80px;
  }
  
  #menu_sec-title .en {
    font-size: 24px;
  }
  #menu_sec-title .ja {
    font-size: 10px;
    margin-top:10px;
    margin-bottom: 20px;
  }
  
  .menu-img .img-big {
    margin-bottom: 30px;
}

  
  .menu-content ul {
  margin-bottom: 20px;
  }
  
  .menu-content ul li{
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  .details{
    font-size: 10px;
  }
  
  .half{
    font-size: 14px;
    margin-bottom: 20px;
  }
  .menu-text{
    font-size: 13.132px;
    margin-bottom: 40px;
  }
  
  .menu-content .btn{
    margin-bottom: 0px;
  }
  
  
  
  
  #cristal{
    margin-bottom: 80px;
  }
  
  #cristal h3{
    padding-top: 30px;
    margin-bottom: 20px;
  }
  
  .cristal-content{
    display: block;
    padding:  8vw 10.156vw;
  
  }
  
  #cristal .cristal-text{
    margin-right: 0;
    width: 100%;
  }
  
  .cristal-img img{
    padding: 30px 0;
  }
  
  #blog{
    margin-bottom: 100px;
  }
  #blog .img{
    margin: 0 auto;
  }
  a .detail-link {
    margin-top: 15px;
  }
  #blog .article{
    display: block;
    margin-bottom: 40px;
  }
  .article-card{
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    margin-top: 10px;
  }

  .article-card:last-child{
    margin-bottom: 20px;
  }

  
  #access{
    margin-bottom: 100px;
  }
  #access .sec-title .ja {
    margin-bottom: 100px;
  }
  
  .access-content{
    display: block;
    width: 80%;
   
    padding: 170px 10px 30px 30px;
    border-radius: 70px 0 0 0;
  }
  
  .access-text{
    width: 100%;
    margin: 0 auto;
  
  }
  
  
  #access img{
    position: absolute;
    top: -50px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    width: 80%;
    max-width: 300px; 
  }

  .address{
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  #contact {
    background-image:url(./img/contact.png); 
    margin-bottom: 30px;
    text-align: center;
    background-repeat:no-repeat;
  }
  
  #contact h2{
    padding-top: 40px;
  }
  
  #contact p{
    margin-bottom: 30px;
    font-size: 11px;
  }
  
  #contact ul{
    display: block;
    padding-bottom: 40px;
  }
  #contact ul li{
    margin: 0 auto;
  }
  #contact .btn{
    padding: 25px 0px;
    margin: 0 auto;
    width: 80%;
    max-width: 300px;
    text-align: center;
  }
  
  .leftbtn{
    max-width: 300px;
  }
  
  .rightbtn{
    margin-left: 0px;
    margin-top: 20px;
    max-width: 300px;
  }
  
  #footer {
    margin-top: 0;
    text-align: center;
  }
  
  .privacy {
    color: #000;
    font-size: 12px;
    margin-bottom: 8px;
  }
  
  #footer img {
    width: 44px;
    height: 44px;
  }
  
  #copyright {
    text-align: center;
  }


}
/*サービスページ*/

.service-title{
  font-size: 25px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
  }


.service-leaf1{
  position: absolute;
  left: 37px;
}
.service-content{
  margin-top: 100px;
  margin-bottom: 300px;
  font-family: "Noto Serif JP", serif;
}
.service-sectitle{
 padding-bottom: 15px;
 margin-bottom: 15px;
 font-size: 18px;
 border-bottom:  1px solid #22667B;
}

.service-text{
  margin-bottom: 50px;
}

.service-text p{
  margin-bottom: 20px;
}

.service-text img{
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
/*サービスページ*/
.service-main{
  margin-bottom: 30px;
}

.service-main img{
 width: 100%;
}

.service-title{
  font-size: 20px;
}

.service-subtitle{
  font-size: 14px;
  }

.service-content{
  margin-bottom: 100px;
}
.service-sectitle{
 padding-bottom: 10px;
 margin-bottom: 10px;
 font-size: 16px;
}

}

/*aboutページ*/
#introduction{
  margin-top: 100px;
}

.about{
  display: flex;
  justify-content: center;
}

.about-content:first-child{
  margin-right: 50px;
}

.therapist{
  font-family: "Sorts Mill Goudy", serif;
  color: #22667B;
  margin-bottom: 10px;
  font-size: 13px;
}

.name{
  font-size: 23px;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 10px;
}

.name-en{
 font-family: "Sorts Mill Goudy", serif;
 color: #22667B;
 margin-bottom: 15px;
 font-size: 13px;
}

.about-text{
  margin-bottom: 15px;
}

.qualification{
  margin-bottom: 15px;
}

.about-sns{
  display: flex;
  float: right;
  vertical-align: middle;
}
.about ul{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  margin-right: 10px;
}
.about-ameba{
  color: #247B31;
  font-weight: bold;
  padding-top: 8px;
}

@media screen and (max-width: 768px) {
  #introduction{
    margin-top: 50px;
    padding: 0 4%;
  }
  
  .about{
    display: block;
  }
  
  .about-content:first-child{
    margin-right: 0px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .therapist{
    font-family: "Sorts Mill Goudy", serif;
    color: #22667B;
    margin-bottom: 10px;
    font-size: 13px;
  }
  
  .name{
    font-size: 23px;
    font-family: "Noto Serif JP", serif;
    margin-bottom: 10px;
  }
  
  .name-en{
   font-family: "Sorts Mill Goudy", serif;
   color: #22667B;
   margin-bottom: 15px;
   font-size: 13px;
  }
  
  .about-text{
    margin-bottom: 15px;
  }
  
  .qualification{
    margin-bottom: 15px;
  }

  .about-sns{ 
    margin-bottom: 60px;
  }

 .about-ameba{
  margin-left: 0px;
 }
  
}
/*記事一覧ページ*/
.pagination {
  display: flex;
  text-align: center;
  margin-top: 20px;
}

/*ブログ個別ページ*/
.news {
  text-align: center;
}

.main-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 50px;
}

.main-container .title {
  margin-top: 10px;
  font-size: 24px;
}

.main-container img {
  margin: 30px 0 30px 0;
}

.main-container .next {
  margin-top: 30px;
  text-align: right;
}

.main-container .prev {
  text-align: right;
}

/* プライバシーポリシー */
#main h1 {
  margin-top: 100px;
  margin-bottom: 30px;
  font-size: 30px;
  text-align: center;
}

#main h2 {
  margin: 30px 0 10px 0;
}

#main h3 {
  margin: 10px 0 10px 0;
}

#main h4 {
  margin: 10px 0 10px 0;
}

#main li {
  margin: 10px 0 10px 0;
}
.entry-content{
  padding: 1rem;
}

@media screen and (max-width: 768px) {
  #main h1 {
    font-size: 24px;
    margin-top: 40px;
  }
}


/*　コンタクトフォームの　*/
 #cf7-area {
  width:100%;
  margin-top: 100px;
  font-family: “遊ゴシック”,”ヒラギノ角ゴ”,”メイリオ”,”MS Pゴシック”,sans-serif;
 }

.wpcf7-spinner {
  display: none;
  }
  .cf7-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 0 1.75em;
  }
  
  .cf7-q {
  width: 30%;
  margin: 0 0 0 10px;
  }
  
  .cf7-a {
  width: 60%;
  }
  
  /*　見出し　*/
  .form-heading
  {
  width: 95%;
  border-radius: 2px;
  color: #333333;
  font-weight: bold;
  margin: 0 0 2em;
  }
  
  .form-heading p {
  margin: 0;
  }
  
  /* 各項目共通 */
  #cf7-area label{
  font-weight:bold;
  }
  
  #cf7-area input[type=”text”],#cf7-area input[type=”email”],#cf7-area input[type=”tel”],#cf7-area textarea {
  background: #F0F8FF;
  width:500px;
  }
  #cf7-area input[type=”text”]{
  height: 30px;
  }

  
  #cf7-area input[type=”text”]:focus,#cf7-area input[type=”email”]:focus,#cf7-area input[type=”tel”]:focus,#cf7-area textarea:focus {
  background: #FFE4E1;
  border: 2px solid #FF1493;
  outline: 0;
  }
  
  input[type="checkbox"] {
    height: unset !important;
  }

 
  #cf7-area input{
    height: 30px;
    }
   
  input[type="submit"] {
    height: 43.5px !important;
  }
  
  #cf7-area .wpcf7-list-item {
  display: block;
  }
  
  #cf7-area textarea{
  height:200px;
  padding: 0.625em 0.4375em;
  }
  
  .cf7-accept-check{
  text-align: center;
  margin: 50px auto;
  }
  
  .cf7-submit p{
  text-align: center;
  margin-bottom: 67px;
  }
  .set {
    text-align: center;
  }
  
  #cf7-area input[type=”submit”]
  {
  width: 100%;
  background-color: #333333;
  color: #333333;
  border-radius: 5px;
  font-size: 1em;
  padding: 20px;
  height: 43.5px;
  }

  input[type="submit" i]:disabled {
    background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(19, 1, 1, 0.3));
    color:  #333333;
    font-weight: bold;
    border-color: light-dark(rgba(118, 118, 118, 0.3), rgba(195, 195, 195, 0.3));
    padding: 10px;
    border-radius: 50px;
  }
  
  #cf7-area input[type=”submit”]:hover
  {
  background-color:#ffffff;
  border: 2px solid #333333;
  color:#333333;
  }
  
  .cf7-btn{
  width: 40%;
  margin: 0 auto;
  text-align: center;
  }
  
  /*　必須ラベル　*/
  .cf7-req{
  font-size:.8em;
  padding: 4px 6px;
  border: 1px solid #22667B;
  background: transparent;
  color: #22667B;
  margin-left: 10px;
  display:inline-block;
  }

  .wpcf7-spinner {
    display: none;
    }
  
  @media screen and (max-width:768px){
    
 .wpcf7-form-control {
  width: 100%;
  box-sizing: border-box;
 }

  .cf7-item {
  display: block;
  }
  #cf7-area{
    width: 90%;
    margin-top: 30px;
    padding: 0;
  }

  #cf7-area label{
  display: block;
  margin-bottom: 10px;
  }
  
  .cf7-q {
  width: 100%;
  margin: 0;
  }
  
  .cf7-a {
  width: 100%;
  }
  
  #cf7-area input[type=”text”], #cf7-area input[type=”email”], #cf7-area input[type=”tel”], #cf7-area textarea{
  margin-left: 0;
  }
  #cf7-area textarea{
  width:100%;
  }
  
  .main-container{
    max-width: 400px;
  }
  .main-container .title{
    margin-top: 10px;
    font-size: 24px;
  }

  .main-container img{
    width: 400px;
    height: 300px;
  }
  .main-container .next{
    margin-top: 30px;
    text-align: right;
  }

  .main-container .prev{
    text-align: right;
  } 
}

/* サイドバー */
#row{
  display:flex;
  gap:40px;
 overflow: hidden;
}
#sidebar {
  width: 20%;
  padding: 10px;
  margin-top: 80px;
  float: right;
  margin-left: 0;
}
#sidebar .name {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 30px;
}

#sidebar .side-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 30px;
  background: #e2e6c9;
  color: #ffffff;
  position: relative;
  border: none;
  margin-bottom: 20px;
  text-align: center !important;
  padding-left: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
}
#sidebar .side-title:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #e2e6c9;
}

.author {
  text-align: center;
  margin-bottom: 10px;
  padding: 10px 20px 20px;
  border: 1px solid #e2e6c9;
}


.author .circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 30px 0;
}
.author .profile {
  font-size: 0.875rem;
  text-align: left;
  margin-bottom: 20px;
}

.author ul{
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.sns {
  padding: 0 3px;
    text-align: center;
    display: inline-block;
    margin-right: 0;
    float: none;
    list-style: none;
    width: 40px;
    position: relative;
}
ul .sns a{
  margin: 0;
  border-radius: 50%;
  box-sizing: border-box;
  color: #fff;
  font-size: 19px;
  height: 40px!important;
  width: 40px!important;
  padding: 4px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background:  #e2e6c9!important;
}
.st-fa, .st-author-box .st-author-profile .fa {
  margin-right: 0;
  padding: 0;
  border: 0;
  height: auto;
}
.ameba{
  color: #247B31;
}
.archive {
  text-align: center;
  margin-bottom: 60px;
}
.cat-item {
  margin-bottom: 10px;
  text-align: left;
}

.cat-item a{
  color: #000;
  margin-bottom: 10px;
}

.archive li a::after {
  content: " \f105";
  font-family: stsvg;
  position: absolute;
  right: 10px;
  font-size: .8em;
  display: none;
}

.searchform {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; 
  overflow: hidden;
  border-radius: 3px;
  background-color: #f2f2f2;
  margin-bottom: 10px;
}

.searchform input {
  width: 100%;
  height: 45px;
  padding-left: 5px;
  border: none;
  box-sizing: border-box;
  background-color: #f2f2f2;
  font-size: 1em;
  outline: none;
}

.searchform input::placeholder {
  color: #777777;
}

.searchform button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 45px;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

.searchform button::after {
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20d%3D%22M23.7%2020.8%2019%2016.1c-.2-.2-.5-.3-.8-.3h-.8c1.3-1.7%202-3.7%202-6C19.5%204.4%2015.1%200%209.7%200S0%204.4%200%209.7s4.4%209.7%209.7%209.7c2.3%200%204.3-.8%206-2v.8c0%20.3.1.6.3.8l4.7%204.7c.4.4%201.2.4%201.6%200l1.3-1.3c.5-.5.5-1.2.1-1.6zm-14-5.1c-3.3%200-6-2.7-6-6s2.7-6%206-6%206%202.7%206%206-2.6%206-6%206z%22%20fill%3D%22%23777777%22%3E%3C%2Fpath%3E%20%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  content: '';
}
/* 人気記事 */
.wpp_box {
	position: relative;
}

.wpp_thumb img {
	margin: 0px 10px 0px 0;
	width: 100%;
  vertical-align: bottom;
}
.wpp_title p {
	margin: 5px 0;
	font-size: 15px;
}

.wpp_title p a {
 color: #333;
}

.wpp_parent {
	margin-bottom: 80px;
	counter-reset: wpp_number; 
}
.wpp_parent h3 {
	padding-bottom: 1em;
	font-size: 14px;
	font-weight: bold;
	border-bottom: 1px gainsboro dotted;
}

.wpp_box:before {
	counter-increment: wpp_number;
	content: counter(wpp_number);
	align-items: center;
	position: absolute;
	padding: 2px 8px;
	font-size: 12px;
	color: #fff;
	background: #e2e6c9;
	z-index: 1;
	border: 1px #fff solid;
	border-radius: 4px;
  left:0%;
}
.wpp_pv {
	color: #167ac6;
	display: inline-block;
	padding: 0px 4px;
	border-radius: 3px;
	position: absolute;
	bottom: 8px;
	right: 0px;
	font-size: 11px!important;
}
.widget-title {
	font-weight: bold;
	padding-bottom: 0.3em;
	margin-bottom: 1em;
	margin-top: 1em;
}

@media screen and (max-width:650px) {
  
  #sidebar {
    width: 90%;
    padding: 20px;
    margin-top: 0px;
  }
/* 人気記事 */
 .wpp_box {
	width: 100%;
 }
 .wpp_title {
	width: 80%;
 }
}
@media screen and (max-width:991px) {
  #row{
    display:block;
    gap:0;
  }
/* 人気記事 */
 .wpp_box:before {
	position: absolute;
	top: 11px;
	left: 1px;
 }
}

/* ブログ記事 */
article {
  margin-top: 50px!important;
}
.blog-main {
  padding-left: 2rem;
  margin: 50px;
  width: 80%;
}

.article-title{
border-bottom: 2px dashed #e2e6c9;
margin: 10px 0;
padding: 10px 0;
}

.meta {
  margin-bottom: 10px;
}
.wp-post-img{
  width: 100%;
  height: auto;
}
.catname{
  font-size: 13px;
  line-height: 1.5em;
  color: #1a1a1a;
  display: inline-block;
  word-break: break-word;
  padding: 6px 8px;
  margin-top: 10px;
  border-radius: 15px;
  text-decoration: none;
  background: #e2e6c9;
}
.post-link {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.post-link a{
  background: #e2e6c9;
  color: #fff;
  border-radius: 50px;
  padding: 1% 5em;
  display: inline-block;
  margin: 40px 0;
  position: relative;
  font-weight: bold;
}

.blog-text{
  margin-top: 40px;
}

#ez-toc-container {
  margin-top: 60px!important;
  margin-bottom: 30px!important;
}

.blog-text h2 {
  position: relative;
  padding-left: 0;
  padding-bottom: 10px;
  border-top: none;
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-bottom-color: #e2e6c9 !important;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  color: #727272;
  background-color: transparent;
  margin: 20px 0;
}

.blog-text h3 {
  padding: 0.25em 0.5em;
  color: #727272;
  background: transparent;
  border-left: solid 5px #e2e6c9;
  margin: 20px 0;
}

.blog-text img {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
 .blog-main {
  padding: 0%;
  margin: 0px;
  width: 100%;
 }

 article {
  margin-top: 10px!important;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
 }
 .post-link {
  width: 100%;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
 }
 .post-link a {
  padding: 6px 8px;
 }
}


/* 関連記事 */
.related_post{
  width: auto;
  margin-bottom: 40px;
}
.related_post h3{
  font-size: 20px;
  font-weight: 600;
  border-left: 9px solid #e2e6c9;
  text-align: justify;
  margin-bottom: 40px;
  padding: 0 15px;
  box-sizing: border-box;
  margin-left: 10px;
}
.related_post_container{
  width: auto;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.related_post_container li{
  width: calc(30% - 10px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  padding: 10px;
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  margin-right: 1.3%;
  box-shadow: 0 0 10px rgba(122, 122, 122, 0.1);
}
.related_post_container li:nth-child(4){
  margin-right: 0;
}
.related_post_container li:nth-child(8){
  margin-right: 0;
}
.related_post_container li:nth-child(n+1):nth-child(-n+4){
  margin-bottom: 10px;
}
.related_post_container a{
  display: flex;
  flex-direction: column;
  color: #1f1411;
}
.related_thumb{
  width: 100%;
}
.related_title{
  font-size: 16px;
  font-weight: normal;
  text-align: left;
  margin-top: 10px;
}

@media (max-width: 550px){
  .related_post h3{
      font-size: 18px;
  }
  .related_post_container{
      flex-direction: column;
      flex-wrap: nowrap;
  }
  .related_post_container li{
      width: auto;
      margin-right: 0;
      margin-bottom: 10px;
      border: 1px solid #E8E8E8;
  }

  .related_post_container li:nth-child(n+1):nth-child(-n+4){
      margin-bottom: 10;
  }
  .related_post_container a{
      flex-direction:  ;
      justify-content: space-between;
      align-items: center;
  }
  .related_thumb{
      width: 100%;
  }
  .related_thumb img{
    width: 100%;
    vertical-align: bottom;
  }
  .related_title{
    font-size: 14px;
  }
}


/* カテゴリーページ */
.category-content{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 100px;
}

.category .text{
  margin-top: 20px;
}

main .page-title {
  border-bottom: solid 1px #777;
  font-size: 1.75rem;
  padding-bottom: 10px;
  margin-bottom: 60px;
}

.each-article {
  text-align: center;
}

.readmore {
  margin-top: 10px;
}
.readmore a{
color: #333333!important;
}

@media screen and (max-width: 768px) {
  .category-content{
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
  }
}

/* 検索ページ */
.search{
  padding-left: 0;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  margin: 10px 0 30px 0;
}

