/*
Theme Name: PUREASY2025
Theme URI: https://pureasyjapan.com/
Author: pureasy
Author URI: https://pureasyjapan.com/
Description: Classic theme for PUREASY 
Version: 1.4.6
Requires at least: 5.2
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: pureasy-classic
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
:root {
  --text: #002f4e;
  --text_r: #ffffff;
  --subtext: #475569;
  --bg: #ffffff;
  --bg_r: #002f4e;
  --bg: #ffffff;
  --muted: #f8fafc;
  --line: #e2e8f0;
  --accent: #0b5bd3;
  --gold: #ae9e34;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.has-js:not(.lazy-ready) .lazy {
  opacity: 0;
  transform: translateY(24px);
}

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

body {
  font-family:"Zen Old Mincho",serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  min-height: 100dvh; /* iOS/Androidのアドレスバー対策 */
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  position: relative;
  overflow: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;

}

/*
a:hover {
  text-decoration: underline;
}
  */

.container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 20px;
  container-type: inline-size;
}

.title_img {
  text-align: center;
  display: block;
  width: fit-content;
  margin: auto auto 10px auto;
}

.section__title {
  text-align: center;
  font-size: 1.6rem;
  margin: 0px auto 10px;
}

h1 {
  font-size: 3rem;
}

/*--------*/
/* Header */
/*--------*/
.site-header {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 3rem;
  padding-right: 2.9rem;
  width: 100%;
  height: 3rem; 
  background-color: var(--bg_r);
  color: var(--text_r);
  container-type: inline-size;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.site-header h1 {
  width: 12vw;
}


nav.site-nav {
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.4rem;
}

.site-nav__panel {
  display: flex;
  align-items: center;
  gap: 2.4cqw;
  height: 100%;
}

.site-nav__toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.25rem 0.5rem;
  border: none;
  background: none;
  color: inherit;
  font-weight: 600;
  font-size: clamp(10px, 1vw, 12px);
  cursor: pointer;
}

.site-nav__toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.site-nav__toggle-bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 2cqw;
  width: 7cqw;
}

.site-nav__toggle-bars span {
  display: block;
  height: .5cqw;
  border-radius: 999px;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.is-open .site-nav__toggle-bars span:nth-child(1) {
  transform: translateY(2.5cqw) rotate(45deg);
}

.site-header.is-open .site-nav__toggle-bars span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .site-nav__toggle-bars span:nth-child(3) {
  transform: translateY(-2.5cqw) rotate(-45deg);
}

.site-nav ul {
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap: 2.4cqw;
}

.site-nav-ul-li{
  width: fit-content;
}

.site-nav ul li a.p-header__navLink {
  font-size: max(.8rem,10px);
  font-size: clamp( 8px, 1vw, 15px );
  font-weight: 700;
  text-align: center;
}

li.site-nav-product > a::after {
  margin-right: 0.2cqw;
}

li.site-nav-product > a::after {
  content: "";
  width: .6rem;
  height: .7rem;
  background: center/contain no-repeat url(./assets/images/icon_arrow01.svg);
  display: inline-block;
  vertical-align: middle;

}

li.site-nav-product > a {
  position: relative;
}

.site-nav ul li ul {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  left: 0;
  width: 100%;
  background-color: var(--bg_r);
  color: var(--text_r);
  position: absolute;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  transition: .5s;
  margin: 10px auto auto auto;
}

.site-nav ul li ul  li.product_nav_card {
  width: 100%;
  font-size: clamp(5px, 0.8vw, 15px);
  display: flex;
  background-color: rgba(255,255,255,0.1);
  border-radius: 20px;
  align-items: center;
}

.site-nav ul li ul  li.product_nav_card img {
  height: 5vw;
  width: auto;
}

.site-nav ul li:hover > ul {
  visibility: visible;
  opacity: 100;
  overflow: visible;
  transition: opacity 0.5s;
  transition-property: opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
  padding: 1cqw;
}

.site-nav a {
  color: var(--text_r);
  font-weight: 600;
  transition: 0.5s;
}

.site-nav a:hover {
  opacity: 0.8;
  transition: 0.5s;
}

body.has-site-nav-open {
  overflow: hidden;
}

@media (max-width: 901px) {
  .site-header {
    flex-wrap: wrap;
    height: 12cqw;
    padding: 1cqw 1.5cqw;
    row-gap: 1cqw;
  }

  .site-header h1 {
    width: 25cqw;
    max-height: 95%;
    margin: auto auto auto 0;
  }

  nav.site-nav {
    display: flex;
    gap: 1rem;
    overflow-y: auto;
  }

  .site-nav__toggle {
    display: inline-flex;
 }

  .site-nav__panel {
    width: 100%;
    height: calc(100vh - 12cqw);
    top:12cqw;
    left: 0;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: var(--bg_r);
    overflow-y: auto;
    transition: 0.5s;
    position: absolute;
    z-index: 0;
    pointer-events: none;

    visibility: hidden;
    opacity: 0;
    transition-behavior: normal;
  }

  .site-header.is-open .site-nav__panel {
    display: flex;
    width: 100%;
    height: calc(100vh - 12cqw);
    top:12cqw;
    padding: 3cqw 3cqw 25cqw ;
    z-index: 9999;
    overflow-y: auto;
    transition: 0.5s;
    pointer-events: auto;
    visibility: visible;
    opacity: 100;
    transition: opacity 0.5s;
    transition-property: opacity;
    transition-duration: 0.5s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-behavior: normal;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    font-size: clamp(10px, 3vw, 20px);
    position: static;
  }

  .site-nav ul li ul {
    position: static;
    grid-template-columns: repeat(2,1fr);
    visibility: visible;
    opacity: 1;
    padding: 2rem;
    pointer-events: none;  
  }

  .site-header.is-open .site-nav ul li ul {
    pointer-events: auto;  
  }

  .site-nav a {
    justify-content: flex-start;
  }

  a.nav_x,
  a.nav_instagram,
  a.header_button,
  a.mobi_banner {
    width: 100%;
  }

  a.header_button {
    text-align: center;
  }

 .site-nav ul li {
    width: 100%;
    text-align: center;
  }

 .site-nav ul li a.p-header__navLink {
    width: 100%;
    text-align: center;
    font-size: 5cqw;
    font-weight: 500;
  }

  .site-nav ul li ul {
    padding:1cqw; 
  }

  .site-nav ul li ul li.product_nav_card {
    font-size: 3cqw;
    transition: 0.5s;
  }

  .site-nav ul li ul li.product_nav_card img {
    width: 9cqw;
    height: auto;
  }


  #site-nav-panel .header_button {
    display: none;
  }

  #site-nav-panel .nav_xTitle,
  #site-nav-panel .nav_instagramTitle,
  #site-nav-panel a.mobi_banner {
    display: block;
  }

  #site-nav-panel a.nav_x ,
  #site-nav-panel a.nav_instagram {
    display: flex;
    justify-content: center;

  }

  #site-nav-panel a.nav_x .nav_xIcon ,
  #site-nav-panel a.nav_instagram .nav_instagramIcon {
    width: 5cqw;
    margin-right: 2cqw;
  }

  #site-nav-panel a.mobi_banner img {
    margin: auto;
    border-radius: 15px;
    width: 100%;
  }


}

a.nav_x,
a.nav_instagram {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

div.nav_xIcon ,
div.nav_instagramIcon {
  width: 2vw;
  max-width: 25px;
  height: auto;
}

div.nav_xIcon img ,
div.nav_instagramIcon img {
  display:inline-block;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

div.nav_xTitle ,
div.nav_instagramTitle {
  display: none;
}



a.footer_button, 
a.header_button {
  display: inline-block;
  place-content: center;
  height: 1.8rem;
  padding-inline: .8rem;
  border: 1px solid #ffffff;
  border-radius: 10rem;
  font-size: max(.8rem,10px);
  font-size: clamp( 8px, 1vw, 15px );
  font-weight: 700;
  text-indent: 0.1em;
  letter-spacing: 0.1em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a.footer_button:hover ,
a.header_button:hover {
  transition: 0.5s;
  border: 1px solid var(--bg_r);
  color: var(--bg_r);
  background-color: var(--text_r);
  opacity: 1;
}

a.mobi_banner {
  display: none;
}



/*------*/
/* Hero */
/*------*/
.hero {
  position: relative;
  display: flex;
  padding: 72px 0 32px;
  background-image: url(./assets/images/home_mv_bg01_pc.jpg);
  background-size: 150vw 100vh;
  background-position: center;
  border-bottom: 1px solid var(--line);
  height: 100vh;
  flex-direction: column;
}

/* hero div.container { */
.container_hero {
  display: flex;
  justify-content: center;
  max-width: 90%;
  margin: auto;
  inset: 0;
  width:fit-content;
  container-type: normal;
}

.container_hero .hero_slide1 {
  position: relative;
  z-index: 2;
  background-color:#ffffff;
  border-radius: 50%;
  box-shadow: 1vw 1vw 0.3vw rgba(0,0,0,0.16);
  height: auto;
  width: 70cqmin;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.hero_slide1 img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fade 15s infinite;
}

@keyframes fade {
  0% { opacity: 0 }
  10% { opacity: 1 }
  30% { opacity: 1 }
  40% { opacity: 0 }
  100% { opacity: 0 }
}

.hero_slide1 img:nth-child(1) { animation-delay: 0s; }
.hero_slide1 img:nth-child(2) { animation-delay: 5s; }
.hero_slide1 img:nth-child(3) { animation-delay: 10s; }

.container_hero .hero_slide2 {
  position: relative;
  display: flex;
  justify-content: end;
  height: auto;
  width: 80cqmin;
  margin-left: -24%;
  filter: drop-shadow(1vw 1vw 0.3vw rgba(0,0,0,0.16));
  color: var(--text_r);
}

.container_hero .hero_slide2 picture {
  display: contents;
}

.container_hero .hero_slide2 picture img {
  height: 100%;
}

.container_hero .hero_slide2 div.hero_text {
  position: absolute;
  width: 50%;
  align-self: center;
  margin: auto 15px auto auto;
  container-type: inline-size;
  container-name: hero;
}

.container_hero .hero_slide2 div.hero_text p.hero_disc {
  font-size: 1.5vw;
  font-size: clamp( 1px, 5.5cqw, 35px );
}

.container_hero .hero_slide2 div.hero_text_wrap div.hero_detail {
  width: 5vw;
}

.insta_banner {
  position: absolute;
  display: flex;
  align-self: end;
  align-items: center;
  margin: 3vw 3vw;
  box-shadow: 0.4vw 0.4vw 0.4vw rgba(0,0,0,0.16);
  border-radius: 0.9vw;
  background: no-repeat url(./assets/images/news_container01_pc.svg);
  background-size: contain;
  width: 34vw;
}

.insta_banner .insta_banner_text_wrap {
  display: flex;
}

.insta_banner_text {
  width: 80%;
  font-size: 1.1vw;
  color: var(--gold);
  margin: auto 0vw auto 3.8vw;
  font-weight: 700;
  padding: 0.78vw;
}

.insta_banner_detail {
  width: 16%;
  font-size: 1vw;
  font-weight: 700;
  vertical-align: middle;
  color: var(--text_r);
  background-color: var(--gold);
  text-align: center;
  margin: auto 1vw;
  border-radius: 7px;
  padding: 0.2vw;
}

.hero__note {
  font-size: 1vw;
  font-size: clamp(4px, 1vw, 10px );
}

.hero_scroll_img {
  position: absolute;
  margin-left: 10vw;
  bottom: 1vw;
}



@media (max-width: 901px)  {
  .hero {
    height: auto;
    justify-content: end;
    background-size: cover;
    padding: 10cqw  3cqw 0;
  }

  .container_hero{
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 6cqw 1cqw 0;
    margin: 0 auto;
    z-index: 0;
  }

  .container_hero .hero_slide1{
    text-align: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .container_hero .hero_slide2{
    width: 100%;
    margin: -50% auto auto;
    justify-content: center;
    text-align: center;
    align-items: end
  }  

  .container_hero .hero_slide2 div.hero_text {
    margin: auto auto 35cqw;
    width: 60%;
    align-self: end;
    z-index: 5;
  }

  .container_hero .hero_slide2 div.hero_text p.hero_disc {
    margin: auto auto 0;
    font-size: 6.8cqw;
    font-weight: 700;
  }

  .container_hero .hero_slide2 div.hero_text small {
    font-size: clamp(4px, 4cqw, 20px );
    margin: auto auto 0;
  }

  .container_hero .hero_slide2 picture.tear_shape{
    width: 100%;
  }

  .container_hero .hero_slide2 picture.tear_shape img{
    transform:rotate(90deg);  
    height: 98cqw;
    width: 120cqw;
    max-width: none;
    margin-bottom: 20cqw;
  }

  .insta_banner {
    width: 78.5%;
    height: 17cqw;
    border-radius: 14px;
    background: no-repeat url(./assets/images/news_container01_sp.svg);
    z-index: 6;
    margin: auto auto 17cqw;
    align-self: center;
    background-size: contain;
    vertical-align: bottom;
  }
  
  .insta_banner .insta_banner_text_wrap {
    display: flex;
    margin: auto auto 0;
  }

  .insta_banner_text {
    font-size: 3.3cqw;
  }

  .insta_banner_detail {
    font-size: 3cqw;
    margin: auto 0 0 auto;
  }

  .hero_scroll_img {
    display: none;
  }

  
}



/*---------*/
/* Feature */
/*---------*/
#feature {
  color: var(--text_r);
  width: 100%;
  background: url(./assets/images/home_section01_main_bg01_pc.jpg);
  background-size: cover;
  padding: 0px;
  flex-wrap: wrap;
}

#feature .container {
  display: flex;
  flex-direction: column;
  padding: 80px 0px 0px 0px;
  container-type: inline-size;
  flex-wrap: wrap;
}

.title_img {
  width: 100cqw;
  text-align: center;
}

.title_img img {
  margin: auto;
}


.feature_discription {
  width: 100%;
  text-align: center;
  font-size: clamp(10px, 1.1vw, 20px);
  margin: 30px auto 30px;
}

.feature_article_wrap {
  display: flex;
  width: 100%;
  margin: 5vw auto;
  padding: 0 3cqw;
}

.feature_tiles_ul {
  list-style-type: none;
  width: 30%;
  max-width: 300px;
  margin: 0;
  padding: 0;
  container-type: inline-size;
}

.feature_tile_wrap {
  width: 100%;
}

.feature_tile_r,
.feature_tile_l {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60cqw;
  background-color: var(--bg);
  border-radius: 50%;
  text-align: center;
  color:#b1bfc9;
  padding: 0;
  aspect-ratio: 1/1;
}

.feature_tile_r::before,
.feature_tile_l::before {
  content: "";
  position: absolute;
  top: -2.5cqw;
  left: -2.5cqw;
  width: 65cqw;
  height: 65cqw;
  border: 0.1rem solid #ffffff;
  border-radius: 50%;
  margin: auto;
  aspect-ratio: 1/1;
}

.feature_tile_r {
  margin: auto 0 auto auto;
}

.feature_no {
  font-size: clamp(5px, 10cqw, 50px);
  margin: 0;
  line-height: 1;
}

.feature_text {
  font-size: clamp(5px, 8cqw, 50px);
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: var(--bg_r);
}

.feature_hg_wrap {
  width: 70%;
  padding: 0px 30px;
}

.feature_hg_wrap h3 {
  display: flex;
}

.feature_hg_no {
  display: block;
  font-size: clamp(15px , 5cqw, 35px);
  font-weight: lighter;
  color: #678294;
  margin: 0cqw 1cqw 0 0;
}

.feature_hg_title {
  display: block;
  font-size: clamp(15px , 1.7cqw, 25px);
  align-self: center;
}

.feature_hg p {
  font-size: clamp(10px, 2.1cqw, 15px);
  margin: auto auto 40px auto;
}

.feature_picture_sp {
  display: none;
}

.feature_picture_wrap {
  display: flex;
}

.feature_picture_sp picture ,
.feature_picture_wrap picture {
  align-self: end;
  margin: auto 2cqw -15cqw auto;
}

.feature_picture_sp picture img ,
.feature_picture_wrap picture img {
  width: 20cqw;
}

.feature_video_wrap {
  width: 60cqw;
  max-width: 100%;
  margin: auto;
  box-shadow: 0.4vw 0.4vw 0.4vw rgba(0,0,0,0.16);
  border-radius: 10px;
  overflow: hidden;
}

.section_top_border img {
  width: 100%;
  margin-top: -10cqw;
}

.section_bottom_border img {
  width: 100%;
}


@media (max-width: 901px)  {

  #feature div.container {
    padding: 15cqw 5cqw;
  }

  #feature .title_img {
    width: 80%;
  }

  .section__title {
    font-size: 6cqw;
    margin: 3cqw auto;
  }

  .feature_discription {
    text-align: left;
    font-size: clamp(10px, 3.9cqw, 25px);
  }

  .feature_discription br{
    display: none;
  }

  .feature_article_wrap{
    padding: 0;
    flex-direction: column;
  }

  .feature_tiles_ul {
    margin: 10cqw auto;
    width: 100%;
    max-width: none;
  }

  .feature_tile_r,
  .feature_tile_l{
    width: 45cqw;
    margin-top: -15cqw;
    padding: 5cqw;
  }

  .feature_tiles_ul li:nth-of-type(1){
    margin-right: 1cqw ;  
    margin-left: auto ;  
  }

  .feature_tiles_ul li:nth-of-type(2){
    margin-top: -35cqw ;  
    margin-left: 1cqw ;  
    margin-right: auto ;  
  }

  .feature_tiles_ul li:nth-of-type(3){
    margin-top: -5cqw;
    margin-right: 20cqw ;  
    margin-left: auto ;  
  }

  .feature_tile_r::before,
   .feature_tile_l::before{
    width: 50cqw;
    height: 50cqw;
  }

  .feature_hg_wrap {
    width: 100%;
    padding: 0;
  }

  .feature_hg h3 {
    display: block;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.3);
  }

  .feature_hg_no{
    width: 100%;
    font-size: 12cqw;
  }

  .feature_hg_title br {
    display: none;
  }

  .feature_hg p {
    font-size: 4cqw;
  }

  .feature_picture_wrap{
    display: none;
  }

  .feature_picture_sp{
    display: flex;
    z-index: 10;
  }

  .feature_picture_sp picture{
    margin: -20cqw -10cqw -35cqw auto;
  }

  .feature_picture_sp picture img {
    width: 40cqw;
  }

  .feature_video_wrap {
    width: 100%;
    margin-bottom: -30cqw;
  }
}




/*---------*/
/* Concept */
/*---------*/
#concept {
  background: url(./assets/images/home_section02_main_bg01_pc.jpg);
  padding: 40px 0px 0px;
  color: var(--text);
}

.concept_discription {
  text-align: center;
}

.concept_discription small {
  font-size: clamp(10px, 0.8cqw, 14px);
}

.concept_discription .note {
  width: 80%;
  text-align: end;
  margin-bottom: 8cqw;
}

.concepts {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 85%;
  margin: auto auto 10cqw;
}

.concept_card {
  overflow: hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius: 20px;
  padding: 0px;
  box-shadow: 0.8cqw 0.8cqw 0.5cqw rgba(0,0,0,0.16);
}

.concept .concept__media {
  aspect-ratio: 16 / 9;
  border:1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
}

.concept_card h3 {
  font-size: clamp( 1px, 1.5cqw, 35px);
  margin: 8px 0;
  padding: 1cqw;
  text-align:center;
}

.concept_card p {
  font-size: clamp( 1px, 1.3cqw, 20px);
  padding: 0px 2cqw;
}

.concept_card .note {
  font-size: clamp(10px, 1cqw, 12px);
}

@media (max-width: 901px)  {

  .container {
    padding: 15cqw 5cqw;
  }

  .title_img {
    width: 80%;
  }

  .concept_discription {
    text-align: left;
    font-size: clamp(10px, 3.9cqw, 25px);
  }

  #concept .concepts{
    display: block;
    width: 100%;
  }

  .concept_card {
    margin: 7cqw auto;
  }

  .concept_card h3 {
    font-size: 5cqw; 
  }

  .concept_card p {
    font-size: 4.5cqw; 
    padding: 1cqw 5cqw;
  }


}


/*---------*/
/* Product */
/*---------*/
#products ,
.product_single_footer {
  background: url(./assets/images/home_section01_main_bg01_pc.jpg);
  color: var(--text_r);
}

#products .container {
  container-type: inline-size;
  margin-bottom: 40px;
}

.products_wrap {
  display:flex;
  flex-wrap: wrap;
  justify-content: center;
  /*  column-gap: 1cqw; */
  /*  row-gap: 3cqw; */
  margin-top: 6cqw;
}

.product_card_wrap {
  width: calc( (100% - 3cqw) / 4 );
  border-radius: 20pxpx;
  padding: 1.5cqw;
  text-align: center;
}

.card__media {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 1cqw;
  overflow: hidden;
  border:1px solid var(--line);
  margin-bottom: 1cqw;
}

.card__media img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition: 0.8s;
}

.product_card:hover .card__media img {
  transform: scale(1.3);
  transition: 0.8s;
}

.product_card .entry-title {
  color: var(--text_r);
  margin: 0 auto;
  font-size: clamp(10px, 1.2cqw, 24px);
  font-weight: normal;
}

.product-price {
  font-weight: 800;
  color: var(--text_r);
  font-size: clamp(12px, 1.2cqw, 24px);
  border-radius: 999px;
  display:inline-block;
}

.product-price .kakaku {
  font-weight: initial;
  font-size: clamp( 1px, 0.8cqw, 12px);
  margin-right: 4px;
}

.product-price .price {
  margin: 0px 4px 0px 0px;
}

.product-price .tax_incl {
  font-size: clamp(10px, 0.8cqw, 12px);
}

.product_card button.btn {
  width: fit-content;
  color: var(--text_r);
  background-color: transparent;
  display: block;
  border: 1px solid var(--text_r);
  padding: 2px 20px;
  margin: 1cqw auto;
  font-size: clamp(10px, 1cqw, 12px);
  font-weight: 700;
  transition: 0.8s;
  font-family: "Zen Old Mincho",serif;
}

.product_card:hover button.btn {
  background-color: var(--text_r);
  color: var(--bg_r);
  transition: 0.8s;
}

.product_single_footer {
  padding: 40px 0px 80px;
  text-align: center;
  font-size: clamp(10px, 1.2cqw, 24px);
  font-weight: normal;
}


@media (max-width: 901px)  {

  #products .container{ 
    padding: 15cqw 2cqw;
  }

  .products_wrap {
    align-items: stretch;
    column-gap: 3cqw;
    row-gap: 7cqw;
  }

  .product_card_wrap {
    width: calc( (100% - 3cqw) / 2 );
    margin: 0 auto 0 0;
  }

  .product_card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .product_card .entry-title{
    font-size: 4cqw;
  }

  .product_card .product-price {
    margin: auto auto 0 auto;
  }

  .product_card .product-price .kakaku {
    display: block;
    width: 100%;
    font-size: 3cqw;
  }

  .product_card .card__media {
    border-radius: 25px;
  }

  .product_card button.btn {
    margin: 0 auto 0 auto;
  }
  

}

/*--------*/
/* Voices */
/*--------*/
#voice {
  background: url(./assets/images/home_section04_main_bg01_pc.jpg);
}

.voices {
  padding: 18px 4cqw;
  margin: auto auto 1cqw auto;
  container-type: inline-size;
}

.voices > hgroup {
  display: flex;
  width: 100%;
}

.clinic_person {
  width: 30%;
  padding: 4cqw 2cqw;
  border-radius: 30px;
}

.voice_clinic_name {
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: clamp(10px, 1.5cqw, 24px);
  font-weight: 700;
  margin: auto;
}

.voice_clinic_p_name {
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: clamp(10px, 2cqw, 24px);
  font-weight: 700;
  margin: auto;
}

.clinic_person img {
  border-radius: 30px;
  margin: auto auto 2cqw auto;
}

.voice_hg  h3 {
  margin: 3cqw 0 0 0;
  font-size: clamp(14px, 2cqw, 24px);
}

.voice_hg p {
  color: #3c3c3c;
  color: rgb(60, 60, 60);
  font-weight: 400;
  font-size: clamp(8px, 1.2cqw, 24px);
}

article.voice {
  width: 70%;
  border-radius: 20px;
  padding: 2cqw;
}

.voice_video_wrap {
  width: 60cqw;
  max-width: 100%;
  margin: 5cqw auto 10cqw auto;
  box-shadow: 0.4vw 0.4vw 0.4vw rgba(0,0,0,0.16);
  border-radius: 10px;
  overflow: hidden;
}

.explanation {
  background-color: var(--bg);
  padding: 3cqw 5cqw 1cqw 5cqw;
  border-radius: 25px;
  box-shadow: 0.4vw 0.4vw 0.4vw rgba(0,0,0,0.16);
  margin: auto 5cqw 10cqw;
}

.explanation h2 {
  text-align: center;
  font-size: clamp(12px, 2.5cqw, 25px);
}

.explanation p {
  color: #3c3c3c;
  font-size: clamp(10px, 1.5cqw, 20px);
}

.explanation .egf-pc {
  display: block;
}

.explanation .egf-sp {
  display: none;
}



.voice_p_container {
  width: 100%;
  margin: auto auto 10cqw auto;
  padding: 0;
  container-type: inline-size;
  position: relative;
}

.voices_p_slider {
  width: 100%;
  margin: 50px auto;
}

.voices_p {
  display: flex;
  flex-direction: row;
  width: max-content;
  margin: auto auto 1cqw;
  justify-content: start;
}


.voice_p_card_wrap {
  display: block;
  min-width: 300px;
  max-width: 80cqw;
  width: 40rem;
  margin-right: 24px;
  flex-shrink: 0;
  border-radius: 20px;
  background-color: var(--bg);
  box-shadow: 0.4vw 0.4vw 0.4vw rgba(0,0,0,0.16);
  container-type: inline-size;
}

.splide__list {
  display: flex;
  width: auto;
}

.voice_p_card {
  padding: 4cqw;
  margin: auto auto ;
}

.voice_p_card header {
  display: flex;
}

.voice_p_card header img {
  height: 20cqw;
  width: auto;
}

.voice_p_card span {
  color: #3c3c3c;
  font-weight: 700;
}
.voice_p_card h3 {
  color: #3c3c3c;
  font-size: clamp(14px, 1.2cqw, 24px);
  background-repeat: no-repeat;
  letter-spacing: 0;
}

.voice_p_card_wrap h3 span {
  background:
  linear-gradient(transparent 70%, rgba(0,47,78,.18) 0) no-repeat;
  background-size: 0% 100%;
  background-position: 0 100%;
  transition: background-size .6s ease;
}

.voice_p_card_wrap:hover .voice_p_card h3 span {
  background-size: 100% 100%;
}

.voice_p_card p {
  color: #3c3c3c;
  font-size: clamp(14px, 1cqw, 24px);
}

.shop_banner {
  display: block;
  margin: 5cqw auto;
  width: 600px;
  max-width: 90cqw;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0.4vw 0.4vw 0.4vw rgba(0,0,0,0.16);
  transition: 0.4s;
}

.shop_banner:hover {
  opacity: 0.8;
  transition: 0.4s;
}


@media (max-width: 901px)  {

  #voice .voices {
    padding: 0;
  }  

  .voice_hg {
    flex-direction: column;
    padding: 0;
  }  

  #voice .clinic_person {
    width: 90%;
    margin: auto;
  }

  #voice .voice_clinic_name {
    font-size: 5cqw;
  }

  #voice .voice_clinic_p_name {
    font-size: 6cqw;
  }

  #voice article.voice {
    width: 100%;
  }

  #voice article.voice h3 ,
  .explanation h2 {
    font-size: 5.3cqw;
  }

  #voice article.voice p ,
  .explanation p {
    font-size: 4.3cqw;
    margin: 1cqw auto 10cqw;
  }

  .voice_video_wrap {
    width: 100%;
  }

  .explanation {
    width: 100%;
    margin: auto 0 10cqw;
    padding: 5cqw 0cqw;
    box-shadow: none;

  }

  .explanation .egf-pc {
    display: none;
  }

  .explanation .egf-sp {
    display: block;
    margin: 5cqw auto;
  }

  #voice .shop_banner {
    margin: auto auto -12cqw;
    position: relative;
  }


}

/*---------*/
/* Contact */
/*---------*/
#contact {
  background: url(./assets/images/home_section01_main_bg01_pc.jpg);
  color: var(--text_r);
}

a.policy {
  width: 100%;
  display: block;
  font-size: clamp(10px, 1.3cqw, 24px);
  font-weight: normal;
  color: var(--text_r);
  margin: 5cqw auto;
  font-family: "Noto Sans JP", sans-serif;
}

span.policy {
  text-decoration: underline;
  padding: 0 5px;
}

.contact_discription {
  width: 80%;
  max-width: 550px;
  margin: auto;
}

div.wpcf7 {
  width: 80%;
  max-width: 550px;
  margin: auto;
}

form.wpcf7-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  container-type: inline-size;
}

form.wpcf7-form label {
  font-size: clamp(10px, 3cqw, 24px);
  display: block;
}

form.wpcf7-form label.contact_lastname ,
form.wpcf7-form label.contact_firstname ,
form.wpcf7-form label.contact_mail,
form.wpcf7-form label.contact_tel,
form.wpcf7-form label.contact-job,
form.wpcf7-form label.contact-company,
form.wpcf7-form label.contact-prefectures,
form.wpcf7-form label.contact-kind,
form.wpcf7-form label.contact-maintext,
form.wpcf7-form label.contact-infomail {
  font-weight: 700;
  margin: 5cqw 0 1cqw 0 ;
}

form.wpcf7-form label input,
form.wpcf7-form label select,
form.wpcf7-form label textarea {
  font-size: clamp(10px, 2.5cqw, 24px);
  padding: 2cqw;
}

.wpcf7-form-control-wrap {
  display: block;
}

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

.contact_name_wrap label {
  width: 49cqw;
  margin: 0;
}

input.contact_mail,
input.contact_tel,
select.contact-job,
input.contact-company,
select.contact-prefectures,
textarea.contact-maintext {
  width: 100%;
}

.contact_lastname,
.contact_firstname {
  width: 100%
}

span.contact-kind {
  display: flex;
}

.wpcf7-checkbox > span {
  margin: 0px 1cqw 0px 0px;
}

.wpcf7-form .wpcf7-submit {
  color: var(--text);
  width: fit-content;
  font-size: clamp(10px, 3cqw, 24px);
  padding: 1.5cqw 15cqw ;
  margin: 5cqw auto;
  border-radius: 5cqw;
  border: var(--bg) 1px solid;
  background-color: var(--bg);
  font-family: "Zen Old Mincho",serif;
  transition: 0.8s;
}

.wpcf7-form .wpcf7-submit:hover {
  background-color: var(--bg_r);
  color: var(--text_r);
  transition: 0.8s;
}

.wpcf7-list-item.first {
  margin-left: 0;
}



@media (max-width: 901px)  {
  #contact .policy {
    font-size: 4.3cqw;
  }

  #contact .policy .contact_discription {
    padding: 0;
    margin: auto 0;
    width: 100%;
  }


  #contact .wpcf7 {
    width: 100%;
  }

  form.wpcf7-form label {
    font-size: 5cqw;
  }

  form.wpcf7-form label input, 
  form.wpcf7-form label select, 
  form.wpcf7-form label textarea {
    font-size: 5cqw;
  }

  span.wpcf7-form-control {
    display: block;
  }

  .wpcf7-form .wpcf7-submit {
    font-size: 5cqw;
    font-weight: 700;
  }


}



/*--------*/
/* Footer */
/*--------*/
.site-footer {
  padding: 32px 3rem;
  display: flex;
  flex-wrap: wrap;
  color: var(--text_r);
  background: url(./assets/images/home_section01_main_bg01_pc.jpg);
  font-size: 14px;
  align-items: center;
  container-type: inline-size;
  justify-content: end;
}

.site-footer .brand__title { 
  align-self: left;
  margin: auto auto auto 0;
}

.site-footer .site-nav{
  gap: 1rem;
  display: flex;
  color: var(--text_r);
}

.site-footer a.nav_x ,
.site-footer a.nav_instagram {
  margin: auto 2cqw;
  display: block;
}


.site-footer .footer_button{
 color: var(--text_r);
}


@media (max-width: 901px) { 

  .site-footer {
    justify-content: center;
    padding: 10cqw 2cqw 20cqw;
  }

  .site-footer .brand__title { 
    width: 50%;
    order: 1;
  }

  .site-footer .brand__title img{ 
    width: 80%;
  }

  .site-footer .footer_button {
    font-size: 4cqw;
    line-height: 3cqw;
    text-align: center;
    margin: auto;
    order: 2;
    padding: 2cqw;
    height: auto;

  }

  .site-footer .site-nav {
    order: 3;
    width: 100cqw;
  }

  .site-footer .site-nav .site-nav-ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    container-type: inline-size;
    text-align: center;
    margin-top: 5cqw;
  }

  .site-footer .site-nav .site-nav-ul li {
    width: fit-content;
    min-width: 26%;
  }
  .site-footer .site-nav .site-nav-ul li a{
    font-size: 4cqw;
    text-align: center;
  }

  .site-footer a.nav_x ,
  .site-footer a.nav_instagram {
    order: 4;
    width: 5cqw;
    margin: auto auto 7cqw;   
  }

  .site-footer a.nav_x img ,
  .site-footer a.nav_instagram img {
    width: 100%;
  }


}




/*----------------*/
/* product single */
/*----------------*/

article.product-single {
  display: flex;
  width: 100%;
  color: rgb(60, 60, 60);
  container-type: inline-size;
  gap: 5cqw;
  padding: 5cqw;
}

/* product gallery interactivity */
.product-gallery {
  display:grid;
  gap: 12px;
}

.product-gallery__main {
  aspect-ratio: 1 / 1;
  border:1px solid var(--line);
  border-radius: 12px;
  overflow:hidden;
  position: relative;
  container-type: inline-size;
}

.product-gallery__main span {
  position: absolute;
  color: rgb(174, 158, 52);
  font-weight: 900;
  font-size: 3.7cqw;
  top: 13cqw;
  left: 6cqw;
  line-height: 5cqw;
  text-align: center;
  width: 15cqw;
}

.product-gallery__main img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.product-gallery__main img.DW-EGF-pc {
  width:30cqw;
  height:auto;
  position: absolute;
}

.product-gallery__main img.DW-EGF-sp {
  display: none;
}

.product-gallery__thumbs {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.product-gallery__thumbs button {
  all: unset;
  cursor: pointer;
  display:block;
}

.product-gallery__thumbs img {
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border:1px solid var(--line);
  border-radius:10px;
  transition: transform .15s ease;
}
/*
.product-gallery__thumbs img:hover { transform: scale(1.02); }
.product-gallery__thumbs img.is-active { outline: 2px solid var(--accent); outline-offset: 2px; }
*/
/* product intro & specs
.lead { font-size: 1.05rem; color: var(--subtext); }
.product-intro { margin: 10px 0 16px; }
.product-specs { margin-top: 20px; }
.product-specs table { width:100%; border-collapse: collapse; }
.product-specs th, .product-specs td { text-align:left; padding:8px 10px; border-bottom:1px solid var(--line); vertical-align: top; }
.product-notes { font-size:.9rem; color: var(--subtext); margin-top:10px; }
 */


/* product detail layout */
.product-hero {
  width: 40cqw;
  gap: 28px;
  align-items: start;
}

.product-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: .02em;
}

.product-hero .entry-content {
  margin-top: 8px;
}

.product-hero .product-price {
  margin: 4px 0 10px;
}
.product-sections {
  margin-top: 28px;
}

.product-sections h3 {
  font-size: 18px;
  letter-spacing: .2em;
  margin: 24px 0 8px;
}

.product-gallery {
  display: grid;
  gap: 12px;
}

.product-gallery__main {
  aspect-ratio: 1 / 1;
  border:1px solid var(--line);
  border-radius: 12px;
  overflow:hidden;
  transition: 0.5s;
  container-type: inline-size;
}

.product-gallery__main img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.product-gallery__thumbs {
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.product-gallery__thumbs button {
  all: unset;
  cursor:pointer;
  display:block;
}

.product-gallery__thumbs img {
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border:1px solid var(--line);
  border-radius:10px;
  transition: transform .15s ease;
}

/*
.product-gallery__thumbs img:hover { transform: scale(1.02); }
*/
.product-gallery__thumbs img.is-active {
  outline: 1px solid var(--gold);
  outline-offset: 2px;
}

[data-gallery-main] {
  position: relative;
  isolation: isolate;
}

[data-gallery-main] img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
  object-fit: cover;
}

[data-gallery-main] img.is-front {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  [data-gallery-main] img {
    transition: none;
  }
}

.product-content {
  width: 60cqw;
}

.product-title {
  font-size: clamp(15px, 2cqw, 32px);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: .02em;
}

.product-single-price {
  font-size: clamp(12px, 20cqw, 24px);
  font-weight: 800;
}

.product-single-price .kakaku,
.product-single-price .tax {
  font-size: clamp( 1px, 1.7cqw, 12px);
}

.entry-content {
  margin-top: 8px;
  font-size: clamp(10px, 1.4cqw, 20px);
  font-weight: 600;
}

.product-content-notes {
  font-size: clamp(10px, 1.2cqw, 12px);
}

.product-content h3 {
  font-size: clamp(12px, 1.5cqw, 20px);
  letter-spacing: .2em;
  margin: 3cqw 0 0.3cqw;
}

.product-content p {
  font-size: clamp(12px, 1.5cqw, 25px);
  line-height: normal;
  padding: 0;
  margin-bottom: 0;
}

.product-content .ingre p {
  font-size: clamp(12px, 1.2cqw, 25px);
}

.product-intro-wrap {
  display: flex;
  container-type: inline-size;
  align-items: center;
}

.product-intro-wrap  img.attachment-medium {
  width: 20cqw;
}

p.product-intro {
  font-size: clamp(10px, 1.3vw, 20px);
  font-weight: 600;
  color: rgb(60, 60, 60);
  margin: 10px 0 16px;
}

.sns_list {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 10px 0px ;
}

.sns_title {
  margin-right: 1cqw;
}

.sns_icon {
  width: 3cqw;
  max-width: 40px;
  height: auto;
  margin-right: 1cqw;
}

.sns_icon a {
  width: 3cqw;
}

.sns_icon img {
  width: 3cqw;
}



@media (max-width: 901px) { 

  #product-single .product-single  {
    padding: 15cqw 0;
    flex-direction: column;
  }

  #product-single .product-hero  ,
  #product-single .product-content  {
    width: 100%;
  }

  #product-single .DW-EGF-pc {
    display: none;
  }  

  #product-single .DW-EGF-sp {
    display: block;
    width:21cqw;
    height:auto;
    position: absolute;
  }  

  .product-gallery__main span {
    top: 12cqw;
    left: 3cqw;
    line-height: 4cqw;
  }



  #product-single .product-title {
    font-size: 6.5cqw;
    line-height: 1.2;
  }  

  .product-single-price .kakaku ,
  .product-single-price .tax {
    font-size: 4.5cqw;
  }  

  #product-single .entry-content p {
    font-size: 5cqw;
    margin-bottom: 2cqw;
  }

  #product-single small.product-content-notes {
    font-size: 3.5cqw ;
    display: inline-block;
    font-weight: 700;
  }


  #product-single .product-content h3 {
    font-size: 5cqw ;
    margin: 8cqw auto  3cqw 0;
  }

  #product-single .product-content p {
    font-size: 4.5cqw; 
  }

  #product-single .product-content .ingre p {
    font-size: 3.9cqw; 
  }

  #product-single .sns_icon ,
  #product-single .sns_icon img {
    width: 8cqw ;
    margin: 1cqw 2cqw 1cqw 3cqw;
  }

  div.product-related > h3 {
    font-size: 5.9cqw;
  }
  

}



/*---------------*/
/* clinic single */
/*---------------*/
#clinic-single {
  display: flex;
  width: 100%;
  color: rgb(60, 60, 60);
  container-type: inline-size;
  gap: 5cqw;
  padding: 5cqw;
}

article.clinic-single {
  padding: 0cqw 10cqw;
}

ul.clinic-info-wrap {
  list-style: none;
  padding: 0px;
  font-size: clamp(12px, 1.5cqw, 20px);
  font-weight: 600;
}

ul.clinic-info-wrap li {
  display: flex;
  align-items: center;
  margin: 1cqw 0px;
  padding: 1cqw 0px;
  border-bottom: 1px solid var(--line);
}

.clinic_info_icon {
  width: 3cqw;
  max-width: 40px;
  height: auto;
  margin-right: 1cqw;
}

.pureasy-map-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,.1);
}

.pureasy-map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.clinic-single-footer {
  width: 100%;
}

.clinic-single-footer a {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  text-align: center;
  border-radius: 3rem;
  padding: 1.5cqw 0;
  font-size: clamp(12px, 2cqw, 24px);
  font-weight: 700;
  margin: 2cqw auto;
  width: 80cqw;
  max-width: 100%;
}

.clinic-single-footer a.clinic_offical {
  background-color: var(--bg_r);
  color: var(--text_r);
  align-items: center;
}

.clinic-single-footer a.clinic_offical span {
  display: block;
  grid-column: 2;
  margin: auto;
}

.clinic-single-footer a.clinic_serch span {
  display: block;
  grid-column: 2;
  margin: auto;
}

.clinic-single-footer a.clinic_search {
  background-color: transparent;
  color: var(--text);
  border: var(--bg_r) 3px solid;
  align-items: center;
}

.clinic_footer_icon {
  width: 3cqw;
  max-width: 40px;
  height: auto;
  margin-right: 1cqw;
}

.clinic_offical .clinic_footer_icon {
  align-self: right;
  grid-column: 3;
  justify-self: center;
}

.clinic_search .clinic_footer_icon {
  align-self: left;
  grid-column: 1;
  justify-self: center;
}


@media (max-width: 901px) { 

  #clinic-single .container {
    padding: 15cqw 0;
  }

  article.clinic-single  {
    padding: 0;
  }

  article.clinic-single .clinic-title {
    font-size: 5cqw;
  }

  .clinic-single-footer a {
    width: 100%;
  }
  
  .clinic-single-footer a span{
    width: max-content;
    margin: auto;
  }


}




/*-----------------*/
/** clinic archive */
/*-----------------*/
.clinic_archive {
  height: 100%;
  background: url(./assets/images/home_section02_main_bg01_pc.jpg);
  padding: 40px 0px 0px;
  color: var(--text);
}

.clinic_archive h2 {
  text-align: center;
  font-size: clamp(20px, 3cqw, 32px);
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: .02em;
}

form.clinic_search {
  width: 80%;
  max-width: 800px;
  margin: auto;
  gap: 1cqw;
  padding-bottom: 3cqw;
  container-type: inline-size;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas: clinic_prefectures clinic_keyword
  clinic_name  clinic_online
  clinic_submit clinic_submit;
  align-items: end;
  container-type: inline-size;
}

form.clinic_search label {
  font-size: clamp(10px, 2.1cqw, 35px);
  display: block;
}

.clinic_online {
  display: flex;
}

.clinic_online label {
  align-self: end;
  padding-bottom: 0.8cqh;
}

form.clinic_search select ,
form.clinic_search input {
  background-color: var(--bg);
  border: var(--line) 1px solid ;
  font-size: clamp(10px, 2.1cqw, 35px);
  padding: 1.5cqw 2cqw;
}

.clinic_submit {
  grid-column: 1 / span 2;
  justify-self: center;
  width: 100%;
}

.clinic_submit button {
  display: block;
  position: relative;
  font-weight: 700;
  font-size: clamp(10px, 3cqw, 24px);
  padding: 1.5cqw 15cqw ;
  margin: 1cqw auto;
  border-radius: 5cqw;
  border: var(--bg_r) 3px solid;
  background-color: var(--bg_r);
  color: var(--text_r);
  transition: 0.5s;
  width: 100%;
}

.clinic_submit button:hover {
  opacity: 0.8;
  transition: 0.5s;
}

.clinic_submit > button.button::before {
  content: "";
  background: url(./assets/images/icon_search_white.svg) no-repeat;
  display: block;
  width: 3cqw;
  height: 3cqw;
  top: 30%;
  right: 25px;
  position: absolute
  ;
}

.pagination {
  display: flex;
  justify-content: center;
  width: 80%;
  max-width: 800px;
  margin: auto;
  padding: 3cqw 0px;
  text-align: center;
  container-type: inline-size;
  font-size: clamp(10px, 1.8cqw, 35px);
  gap: 3cqw;
}

.pagination a {
  text-decoration: underline;
}

.contact_note {
  width: 100%;
  text-align: center;
}

/*
.clinic_card_wrap{
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 20px;

}

.clinic_card {
  color: var(--text);
  border: 1px solid #e5e7eb;
  border-radius: 12px;padding:16px;
  background-color: rgba(255, 255, 255, 0.6);
}

*/

.clinic_card h2 {
  text-align: left;
  margin-bottom: 0px;
}

.clinic_onlineOK {
  margin-left: .5em;
  padding: .1em .5em;
  border: 1px solid #22c55e;
  border-radius: 999px;
  background-color: #16a34a;
  color: var(--text_r);
  font-weight: 700;
}

.clinic_card_wrap {
  width: 80%;
  max-width: 800px;
  margin-top: 6cqw;
  margin: auto;
}

.clinic_card_wrap a {
  color: var(--text);
}

.clinic_card_wrap article {
  margin: 3cqw 0px 5cqw;
}

.clinic_card_wrap p {
  margin: 0;
}

.clinic_notfound {
  width: 80%;
  max-width: 800px;
  margin: 10cqw auto;
  text-align: center;
}

/* Section headline like "製 品 一 覧" */
.product-related > h3 {
  letter-spacing: .4em;
  text-indent: .4em;
  font-size: clamp(12px, 2.5cqw, 25px);
  font-weight: 700;
}

/* Lead text tone */
.lead.product-intro {
  margin-top: 6px;
}


.clinic_serch_button{
  z-index: 9999;
  position: fixed;
  display: block;
  width: 15cqw; 
  color: var(--text);
  background-color: transparent;
  container-type: inline-size;
  bottom: 1cqw;
  right: 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.clinic_serch_button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s;
  z-index: 50;
}

.clinic_serch_button > div{
  position: relative;
  display: block;
  width: 100%;
}

.clinic_serch_button > div > p{
  position: absolute;
  font-size: 12cqw;
  font-weight: 700;
  margin: 0;
  padding: 0;
  top: 15%;
  left: 17%;
}

.clinic_serch_button > div > p  span{
    display: block;

}

.clinic_serch_button > div > img {
  width: 100%;
}

.clinic_search_icon_long {
  display: none;
}

@media (max-width: 901px) { 

  .clinic_archive h2 {
    font-size: 5cqw;
  }

  .clinic_archive form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;  
  }

  .clinic_perf,
  .clinic_address,
  .clinic_name,
  .clinic_online,
  .clinic_submit {
    width: 100%;
    margin: 5cqw auto 0 0;
  }


  form.clinic_search label {
    word-break: keep-all;
    font-size: 3.8cqw;
    width: 100%;
  }

  form.clinic_search input ,
  form.clinic_search select {
    font-size: 3.8cqw;
  }

  .clinic_online input {
    margin-right: 3cqw;
  }

  .clinic_card_wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .clinic_card_wrap a.clinic_card {
    margin: 3cqw auto 6cqwa 0;
    border-top: 1px solid var(--line);
  }

  .clinic_serch_button {
    width: 90%;
    margin: auto 5%;
    right: unset;
  }

  .clinic_serch_button > div > p {
    display: flex;
    top: 40%;
    left: 10%;
  }

  .clinic_serch_button > div > p  span{
    font-size: 6cqw;
  }

  .clinic_search_icon{
    display: none;
  }

  .clinic_search_icon_long {
    display: block;
  }


  div.pagination {
    font-size: 5cqw;
  }


  .clinic_archive .contact_note {
    text-align: left;
  }

}

#NOTFOUND  h2 {
  width: 100%;
  font-size: 8cqw;
  text-align: center;
}

#NOTFOUND  p {
  font-size: 2cqw;
  width: 100%;
  text-align: center;
}

