@charset "UTF-8";

:root {
  --primary-color: #333;
  --accent-color: #ff6b6b;
  --bg-color: #ffffff;
  --bg-color-rich: rgba(233, 223, 215, 1);
  --bg-color-light: rgba(233, 223, 215, 0.59);
  --bg-color-modal: rgba(46, 61, 48, 0.95);
  --text-white: #ffffff;
  --text-main: #333333;
  --text-caption: #808080;
  --red: #ac2c24;

  --font-base: clamp(15px, 0.1vw + 14.62px, 16px);
  --font-h1: clamp(2rem, 5vw, 3.5rem);
  --font-h2: clamp(1.5rem, 4vw, 2.5rem);

  --section-padding: clamp(60px, 10vw, 100px);
  --container-width: 1200px;

  --transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}


*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: var(--font-base);
  color: var(--text-main);
  background-color: var(--bg-color-light);
  line-height: 1.75;
  letter-spacing: 0.023em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
  font-weight: 300;
  font-size: inherit;
}

img,
picture,
svg,
video {
  display: block;
  width: 100%;
  height: auto;
}

a,
button {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

a:hover,
button:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.show_pc {
  display: block;
}

.show_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .show_pc {
    display: none;
  }

  .show_sp {
    display: block;
  }
}


.info{
  margin: 150px auto;
  max-width: 640px;
}

.info h1{
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 2;
  text-align: center;
  margin-bottom: 52px;
}

.info.en h1{
  font-size: 20px;
}

.info.en h1 span{
 font-size: 26px; 
}


.info p{
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.8;
}

.info .detail{
  padding-bottom: 52px;
  border-bottom: 0.5px solid #4d4d4d;
}

.info .contact_info{
  margin-top: 24px;  
}

.info .contact_info.en p{
  margin-bottom: 4px;
  font-size: 15px;

}

.info .contact_info.en p.tel,
.info .contact_info.en p.hours{
  font-size: 14px;
  margin-bottom: 0;
}

.info .contact_info h2{
  font-weight: 600;
  margin-bottom: 8px;
}

.info .contact_info a{
  margin-left: 24px;
  text-decoration: underline;
  /*color: var(--red);*/
}

.info .contact_info span{
  color: var(--text-caption);
  font-size: 14px;
}


@media screen and (max-width: 768px) {
  .info,.info.en{
        margin: 80px auto;
    width: 85%;
    max-width: unset;
  }
  .info h1{
    font-size: 18px;
  }


  .info.en h1 {
    font-size: 18px;
    line-height: 1.6;
  }

  .info.en h1 span{
    font-size: 22px;
    line-height: 1.4;
    margin-top: 8px;
    display: block;
  } 


  .info .contact_info a{
    margin: 0;
  }

}