/******************************************************************
 * Reset CSS - CBT LINKs
******************************************************************/
/* reset margin
-----------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  zoom: 1;
  /* hasLayout in IE */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
}

/* reset font style
-----------------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 62.5%;
}

html * {
  box-sizing: inherit;
}

body {
  position: relative;
  font-family: serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  background: transparent;
  color: #000;
  width: 100%;
}

ul,
ol {
  list-style-type: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

em,
strong {
  font-style: normal;
  font-weight: inherit;
}

/* reset table
-----------------------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

table,
th,
td {
  table-layout: fixed;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* reset form style
-----------------------------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
textarea,
select,
option {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type=reset],
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  appearance: none;
  appearance: none;
  padding: 0;
}

select::-ms-expand {
  display: none;
}

button::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button:focus,
input[type=reset]:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

textarea {
  resize: none;
  overflow: auto;
}

button {
  font: inherit;
}

*:focus {
  outline: none;
}

/* reset img
-----------------------------------------------------------------*/
img {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  height: auto;
max-width: 100%;
}

/* IE
-----------------------------------------------------------------*/
main {
  display: block;
}

.c-fadein {
  opacity: 0;
  transition: transform ease 1s, opacity ease 1s;
}

.c-fadein.to-top {
  transform: translateY(50px);
}

.c-fadein.to-bottom {
  transform: translateY(-50px);
}

.c-fadein.to-right {
  transform: translateX(-50px);
}

.c-fadein.to-left {
  transform: translateX(50px);
}

.c-fadein.to-rt {
  transform: translate(-50px, 50px);
}

.c-fadein.to-rb {
  transform: translate(-50px, -50px);
}

.c-fadein.to-lt {
  transform: translate(50px, 50px);
}

.c-fadein.to-lb {
  transform: translate(50px, -50px);
}

.c-fadein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-slidein {
  opacity: 0;
  transition: transform ease-out 0.5s, opacity ease-out 0.5s;
}

.c-slidein.to-top {
  transform: translateY(100vh);
}

.c-slidein.to-bottom {
  transform: translateY(-100vh);
}

.c-slidein.to-right {
  transform: translateX(-100vw);
}

.c-slidein.to-left {
  transform: translateX(100vw);
}

.c-slidein.to-rt {
  transform: translate(-100vw, 100vh);
}

.c-slidein.to-rb {
  transform: translate(-100vw, -100vh);
}

.c-slidein.to-lt {
  transform: translate(100vw, 100vh);
}

.c-slidein.to-lb {
  transform: translate(100vw, -100vh);
}

.c-slidein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-reveal {
  opacity: 0;
  transition: clip-path 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.c-reveal.to-right {
  clip-path: inset(0 100% 0 0);
}

.c-reveal.to-left {
  clip-path: inset(0 0 0 100%);
}

.c-reveal.to-top {
  clip-path: inset(100% 0 0 0);
}

.c-reveal.to-bottom {
  clip-path: inset(0 0 100% 0);
}

.c-reveal.inview {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.ease-in {
  transition-timing-function: ease-in;
}

.ease-out {
  transition-timing-function: ease-out;
}

.ease-in-out {
  transition-timing-function: ease-in-out;
}

.c-ttl {
  text-align: center;
}
.c-ttl__en {
  font-size: 20px;
  color: #ccc;
}
.c-ttl__jp {
  font-size: 36px;
  font-weight: bold;
}

.c-btn {
  width: 100%;
  max-width: 301px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #91d4c2;
  padding: 0.85em 1.25em 0.85em 2.0625em;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.75;
  color: #fff;
  border-radius: 10px;
}
.c-btn::after {
  content: "";
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 1.5em;
  display: block;
  background: #fff;
  -webkit-mask: url(../img/common/c-btn-arrow.svg) center/cover no-repeat;
          mask: url(../img/common/c-btn-arrow.svg) center/cover no-repeat;
}
.c-btn:is(a) {
  transition: all 0.2s;
}
.c-btn:is(a):hover {
  opacity: 0.8;
}

.c-ct {
  font-weight: 500;
  font-size: 18px;
  font-weight:500;
  letter-spacing: 0.1em;
  color: #334947;
}
.c-ct__table {
  width: 100%;
  background: rgba(255, 255, 255, 1);
}
.c-ct__table tr:not(:last-child) th, .c-ct__table tr:not(:last-child) td {
  border-bottom: 1px solid #fff;
}
.c-ct__table th, .c-ct__table td {
  padding: 0.8em 0.5em;
  text-align: center;
  background: #fff;	
}
.c-ct__table th:not(:last-child), .c-ct__table td:not(:last-child) {
  border-right: 1px solid #fff;
}
.c-ct__table th:first-child {
  width: 194px;
 font-weight: 600;	
}
.c-ct__table thead th, .c-ct__table thead td {
  padding: 0.5em;
  background-color: #9dd0c1;
  font-weight: 600;	
}
.c-ct__table tbody td {
  padding: 0.4em 0.5em;
  font-size: 20px;
}
.c-ct__note {
  margin: 0em 0 0 1em;
  line-height: 1.5;
  color:#334947;	
}

body {
  color: #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 18px;
  letter-spacing: 0.025em;
  line-height: 2;
  min-width: 375px;
  font-weight:500;
  scroll-behavior: auto !important;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: visible;
}
body.fixed .header-menu {
  display: block;
}

@keyframes headerAnime {
  0% {
    top: -100px;
  }
  100% {
    top: 0;
  }
}
@keyframes fadeleft {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.header {
  width: 100%;
  padding-top: 100px;
  position: absolute;
  top: 0;
  left: 0;
}
.header-menu.open {
  display: block;
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 5.4166666667% 13px 6.3541666667%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.5s ease;
}
.header-nav__logo {
  width: 100%;
  max-width: 300px;
  min-width: 150px;
}
.header-nav__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header-menu {
  font: 500 18px "Shippori Mincho", serif;
  color: #334947;
  letter-spacing: 0.075em;
}
.header-menu__list {
  display: flex;
  -moz-column-gap: 2.4em;
       column-gap: 2.4em;
}
.header-menu__list > li {
  position: relative;
}
.header-menu__list > li > a {
  transition: all 0.4s;
}

.header-submenu {
  position: relative;
  cursor: pointer;
  transition: all 0.4s;
}
.header-submenu:after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 8px solid #91d4c2;
  position: absolute;
  top: 55%;
  right: -18px;
  transform: translateY(-50%);
}
.header-submenu__list {
  display: none;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff;
  margin: 0 -30px 0;
  padding: 20px 30px 20px 60px;
  position: absolute;
  top: 2em;
  bottom: 0;
  left: -350px;
  width: 600px;
}
ul.header-submenu__list li {
    list-style: disc;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom:solid 1px #24aba5;
}
.header-submenu__list > li:not(:first-child) {
  margin-top: 4px;
}
.header-submenu__list > li > a {
  transition: all 0.4s;
  display: block;	
}
.header-submenu__list > li > a:hover {
  color: #9dd0c1;
}

.navToggle {
  cursor: pointer;
  display: none;
  width: 50px;
  height: 50px;
  background: #91d4c2;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
}
.navToggle span {
  width: 100%;
  max-width: 20px;
  display: block;
  margin: 0 auto;
  border-bottom: solid 1px #fff;
  border-radius: 100px;
  transition: 0.4s ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
}
.navToggle span:nth-child(1) {
  top: 12px;
}
.navToggle span:nth-child(2) {
  top: 18px;
}
.navToggle span:nth-child(3) {
  top: 24px;
}
.navToggle__txt {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 3px;
  font-size: 10px;
  color: #fff;
  text-align: center;
}
.navToggle.active span:nth-child(1) {
  top: 20px;
  transform: rotate(-45deg);
}
.navToggle.active span:nth-child(2) {
  opacity: 0;
  border-bottom: none;
}
.navToggle.active span:nth-child(3) {
  top: 20px;
  transform: rotate(45deg);
}
.navToggle.active + .header-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  animation-name: fadeleft;
  animation-duration: 1s;
}
.footer__inner {
  padding: 100px 10px 100px;
  background: url(../img/common/footer-bg.jpg) center/cover no-repeat;
}
.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 75px;
  width: 100%;
  max-width: 1195px;
  margin-inline: auto;
}
.footer__copy {
  padding: 30px 10px;
  background: #74d7d3;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6666666667;
  letter-spacing: 0.15em;
  color: #fff;
  text-align: center;
}

.footer-ct {
  width: 70%;
  max-width: 620px;
  margin: auto 0;
}
.footer-ct .c-ct__table {
  background: rgba(0, 0, 0, 0);
}
.footer-ct .c-ct__table tr th, .footer-ct .c-ct__table tr td {
  border: none;
}
.footer-ct .c-ct__table tbody {
  color: #334947;
}
.footer-ct .c-ct__table tbody tr:not(:last-child) th, .footer-ct .c-ct__table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #826f6f;
}
.footer-ct .c-ct__note {
  color: #334947;
}

.footer-bnr {
  display: flex;
  flex-direction: column;	
  gap: 20px;
  margin-top: 1px;
  width: 30%;	
}
.footer-bnr__btn {
  width: 100%;
  margin-bottom: 30px;	
}
.footer-bnr__btn a {
  aspect-ratio: 3/1;
  width: 100%;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.5333333333em;
       column-gap: 0.5333333333em;
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  transition: all 0.2s;
}
.footer-bnr__btn a::before {
  content: "";
  width: 100%;
  display: block;
  background: #fff;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.footer-bnr__btn a:hover {
  opacity: 0.8;
}
.footer-bnr__btn span {
  display: block;
  font-size: 18px;
  letter-spacing: 0.075em;
}
.footer-bnr__web a {
  background: #24aba5;
}
.footer-bnr__web a::before {
  aspect-ratio: 74/75;
  max-width: 1em;
  -webkit-mask-image: url(../img/common/calendar-icon.svg);
          mask-image: url(../img/common/calendar-icon.svg);
}
.footer-bnr__tel a {
  background: #e5bcc5;
}
.footer-bnr__tel a::before {
  aspect-ratio: 23/30;
  max-width: 0.7em;
  -webkit-mask-image: url(../img/common/tel-icon.svg);
          mask-image: url(../img/common/tel-icon.svg);
}

.footer-address {
  width: 100%;
  max-width: 500px;
}
.footer-address__txt {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -moz-column-gap: 27px;
       column-gap: 27px;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.15em;
  line-height: 1.3333333333;
  color: #333;
}
.footer-address__txt address {
  margin: auto 0;
}
.footer-address__map {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
  margin-top: 20px;
  background: #c4c4c4;
  border-radius: 50%;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.15em;
  line-height: 1;
  position: relative;
  box-shadow: 0 3px 7px rgba(65, 65, 65, 0.26);
}
.footer-address__map::before {
  content: "";
  aspect-ratio: 17/25;
  width: 100%;
  max-width: 15px;
  display: block;
  background: #fff;
  -webkit-mask: url(../img/common/map-icon.svg) center/cover no-repeat;
          mask: url(../img/common/map-icon.svg) center/cover no-repeat;
}
.footer-address iframe {
  display: block;
  aspect-ratio: 10/7;
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
  height: auto;
}
@media screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
  .fixed .header-nav:not(.hide) {
    background: #fff;
    position: fixed;
    top: 0;
    animation: headerAnime 0.5s;
  }
  .fixed .header-nav:not(.hide) .header-menu__list > li > a:hover {
    color: #9dd0c1;
  }
  .fixed .header-nav:not(.hide) .header-submenu:hover {
    color: #9dd0c1;
  }
  .fixed .header-nav:not(.hide) .header-submenu:has(.active) {
    color: #24aba5;
  }
  .fixed .header-nav:not(.hide) .header-submenu__list {
    background-color: #e7f7f5;
  }
}
@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
  .c-fadein.sp-only,
  .c-slidein.sp-only,
  .c-reveal.sp-only {
    opacity: 1;
    transform: none;
  }
  .header-menu {
    padding-top: 7px;
  }
  .header-menu__list > li > a:hover {
    color: #fff;
  }
  .header-submenu:hover {
    color: #fff;
  }
  .header-submenu:has(.active) {
    color: #24aba5;
  }
}
@media screen and (max-width: 1919px) {
  .header-nav__logo {
    max-width: 25%;
  }
  .header-menu {
    font-size: 0.9375vw;
  }
  .footer-bnr__btn a {
    font-size: 24px;
  }
}
@media screen and (max-width: 1500px) {
  .header-menu {
    font-size: 14px;
  }
  .header-menu__list {
    -moz-column-gap: 1.5em;
         column-gap: 1.5em;
  }
}
@media screen and (max-width: 959px) {
    .header-nav__logo {
      min-width: 200px;
    }	
  .c-ct {
    font-size: 16px;
  }
  .c-ct__table th:first-child {
    width: 110px;
    padding: 0.8em 0em;  
  }
  .c-ct__table thead {
    font-size: 14px;
  }
  .c-ct__table tbody td {
	padding: 0.8em 0.4em;  
    font-size: 12px;
  }
  .header {
    padding-top: 70px;
  }
  .header-nav {
    padding: 12px 10px;
  }
  .header-menu {
    font-size: 12px;
  }
  .header-menu__list {
    -moz-column-gap: 2.5em;
         column-gap: 2.5em;
  }
  .footer__inner {
    padding: 40px 10px 60px;
  }
  .footer__copy {
    padding: 20px 10px;
    font-size: 12px;
  }
  .footer-bnr {
    gap: 10px;
    margin-top: 20px;
	width: 100%; 
	}
  .footer-bnr__btn a {
	 font-size: 24px;
	max-width: 400px;
	margin: 0 auto;  
  }
.footer-ct {
    width: 100%;
    max-width: 620px;
    margin: auto 0;
}	
}
@media screen and (max-width: 959px) and (min-width: 751px) {
  .tb-none {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .sp-none {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .c-slidein {
    transition-duration: 0.4s;
  }
  .c-reveal {
    transition-duration: 0.4s;
  }
  .c-fadein.pc-only,
  .c-slidein.pc-only,
  .c-reveal.pc-only {
    opacity: 1;
    transform: none;
  }
  .c-ttl__en {
    font-size: 14px;
  }
  .c-ttl__jp {
    font-size: 26px;
  }
  .c-btn {
    font-size: 14px;
  }
  body {
    font-size: 15px;
  }
  .header-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    width: 80%;
    height: 100%;
    font-size: 16px;
    letter-spacing: 0.1em;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 101;
    transition: all 0.6s;
  }
  .header-menu__list {
    overflow-y: scroll;
    height: 100%;
    padding: 70px 10px;
    background: rgba(255, 255, 255, 0.9);
    flex-direction: column;
  }
  .header-menu__list > li {
    position: relative;
    border-bottom: 1px solid #91d4c2;
  }
  .header-menu__list > li:first-child {
    border-top: 1px solid #91d4c2;
  }
  .header-menu__list > li > a {
    display: block;
    padding: 13px 13px 13px 0;
    position: relative;
  }
  .header-menu__list > li > a::after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    border-left: 8px solid #91d4c2;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .header-submenu__list {
    margin: 0 0 10px;
	padding: 10px 15px 10px 25px; 
    background: #e7f7f5;
    position: unset;
	width: 100%;
  }
.header-submenu:after {
    content:"▷";
}	
ul.header-submenu__list li {
    list-style: none;
	padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: solid 1px #91d4c2;
	line-height: 1.2;
}	
  .header-submenu__list > li > a {
	font-size: 14px;  
    padding-left: 0px;
    position: relative;
  }
  .header-submenu__list > li > a::after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    border-left: 8px solid #91d4c2;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: absolute;
    top: 50%;
    left: -1.5rem;
    transform: translateY(-50%);
    transition: all 0.4s;
  }
  .header-submenu .accord-toggle {
    display: block;
    padding: 13px 13px 13px 0;
    position: relative;
  }
  .header-submenu .accord-toggle::after {
    content: "";
    width: 0;
    height: 0;
    display: block;
    border-left: 8px solid #91d4c2;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.4s;
  }
  .header-submenu .accord-toggle:not(.active)::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .navToggle {
    display: block;
  }
  .footer__content {
    flex-direction: column;
    align-items: center;
  }
  .footer-bnr__btn a {
    font-size: 24px;
  }
  .footer-address__txt {
    -moz-column-gap: 1em;
         column-gap: 1em;
    font-size: 16px;
  }
  .footer-address__map {
    margin-top: 0;
  }
}


/*下層*/
.mv-sub {
	position: relative;
    height: 20vw;
    background-image: linear-gradient(90deg, rgb(255 249 210), rgba(209, 253, 254, 1));
	margin-bottom: 100px;
	color: #445958;
}
h1.mv-sub-ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	padding-top: 100px;
	font-size: 40px;
	font-family: 'Shippori Mincho', serif;
    letter-spacing: 2px;
    font-weight: 500;
}
h2.ttl {
    text-align: center;
    font-weight: 600;
    font-size: 333.33%;
    color: #55424c;
    letter-spacing: .1em;
    background: url(../img/top/h2-ttl-icon.png) no-repeat center bottom / auto;
    padding: 0px 0 10px;
    position: relative;
    z-index: 1;
    margin: 80px 0px;
	font-family: 'Shippori Mincho', serif;
}
h3.ttl {
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
}



@media screen and (max-width: 959px) {
h1.mv-sub-ttl {
	padding-top: 60px;
	font-size: 30px;
}
h1.mv-sub-ttl {
    position: absolute;
    top: 45%;
	padding-top: 50px;
	font-size: 24px;
}	
}

@media screen and (max-width: 750px) {
.mv-sub {
	height: 200px;
    margin-bottom: 50px;	
}
h1.mv-sub-ttl {
	padding-top: 50px;
	font-size: 28px;
}
h2.ttl {
   font-size: 24px;
   padding: 0px 0 20px;
   margin: 40px 0px 20px 0px;
}
h3.ttl {
    font-size: 20px;
    margin-bottom: 20px;
}
h1.mv-sub-ttl {
    padding-top: 40px;
    font-size: 20px;
    width: 90%;
	text-align:center;
	line-height: 1.5;
}	
}


/*内覧会のお知らせ*/
section.nairankai {
	padding: 0px 0px 100px 0px;
	background: url(../img/top/nairankai-bk.jpg) center no-repeat;
	font-family:"Shippori Mincho", serif;
}
/*.nairankai-box {
    background: #daecea;
}*/
.svg-wave {
	line-height: 0;
	font-size: 0;
}
.svg-wave svg {
	display: block;
	width: 100%;
	height: auto;
	line-height: 0;
	vertical-align: bottom;
}
.nairankai-box h2 {
    position: relative;
    text-align: center;
    font-size: 36px;
    margin: 60px 0px 20px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #fff;
}
.nairankai-box h2:before{
    content: "";
    background: url(../img/top/nairan-ttl-icon01.png) no-repeat;
    width: 300px;
    height: 119px;
    position: absolute;
    z-index: 10;
    left: 0;
    bottom: -20px;
}
.nairankai-box h2:after{
    content: "";
    background: url(../img/top/nairan-ttl-icon02.png) no-repeat;
    width: 300px;
    height: 119px;
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: -20px;
}
/* 三角形 下 */
.cstm-clip-lower-kaku {
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  height:10vmin;
  background-color:#ff94c9;/*背景色*/
}
.nairankai-box {
    padding-bottom: 60px;
}
.nairankai-box p {
    font-size: 50px;
    font-weight: 600;
	color:#fff;
    text-align: center;
    letter-spacing: 5px;
	line-height: 1.7;
}
.nairankai-box p span {
	position: relative;
    font-size: 80px;
    padding: 0px 20px 10px 20px;
	margin:0px 10px;
    border: solid 1px;
    border-radius: 20px 0px 20px 0px;
	/*background: #ee849f;*/
	display:inline-block;
	line-height: 1.4;
}
span.nairan-time {
    font-size: 20px !important;
    margin: 0 !important;
    border: none !important;
    display: block !important;
}
span.sat:before {
    content: "";
    background: url(../img/top/sat.png);
    width: 100px;
    height: 50px;
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: -20px;
}
span.sun:after {
    content: "";
    background: url(../img/top/sun.png);
    width: 100px;
    height: 50px;
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: -20px;	
}
.ttl_balloon3 {
  margin: 0px 150px;
  color: #fff;	
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif!important;	
  padding: 2.5em 1em  2.5em 2.5em;
  border-radius: 0 0 0 10px;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  position: relative;
}
p.ttl_balloon3:after {
    content: "";
    background: url(../img/top/prezent.png);
    position: absolute;
    width: 180px;
    height: 180px;
    right: -0px;
    left: unset;
    top: -80px;
    background-size: 100%;

}
.ttl_balloon3::before, .ttl_balloon3:after {
  content: '';
  height: 0;
  width: 0;
  border: solid transparent;
  position: absolute;
  left: 30px;
}
.ttl_balloon3::before {
  border-color: transparent;
  border-bottom-color: #ffffff;
  border-right-color: #ffffff;
  border-width: 10px;
  bottom: 100%;
  left: 26px;
}


@media screen and (max-width: 1300px) {
p.ttl_balloon3:after {
    width: 180px;
    height: 180px;
    right: -150px;
    left: unset;
    top: -80px;
}
}


@media screen and (max-width: 1100px) {
.nairankai-box h2:before {
   background-size: 100%;
   width: 200px;
   height: 100px;
}
.nairankai-box h2:after {
   background-size: 100%;
   width: 200px;
   height: 100px;
}	
}

@media screen and (max-width: 750px) {
section.nairankai {
    padding: 0px 0px 30px 0px;
}	
.nairankai-box h2 {
    font-size: 28px;
    margin: 60px 0px 0px;
}
.nairankai-box h2:before {
   background-size: 100%;
   width: 150px;
   height: 60px;
   bottom: 60px;
   left: -15px;
}
.nairankai-box h2:after {
   background-size: 100%;
   width: 150px;
   height: 60px;
   bottom: 60px;
   right: -15px;
}	
.nairankai-box p {
    font-size: 30px;
}
.nairankai-box p span {
    font-size: 40px;
	margin-bottom: 20px;
}
.ttl_balloon3 {
  margin: 0px 0px;	
　font-size:14px;
  margin: 0px 15px;
  padding: 2em 1em  2em 2em;
  border-radius: 0 0 0 10px;
  position: relative;
}
.nairankai-box {
    padding-bottom: 50px;
}
p.ttl_balloon3:after {
  width: 120px;
  height: 120px;
  right: -20px;
  top:-80px;
}        	
}



/*固定ページ*/

section.contents {
    margin-top: 100px;
}
section.contents.first {
    margin-top: 150px;
}
section.contents p {
    margin-bottom: 20px;
}
@media screen and (max-width: 764px) {
section.contents {
    margin-top: 50px;
}
section.contents.first {
    margin-top: 0px;
}	
}


/*h3.ttl01{
position: relative;
z-index: 1;
font-size: 36px;
font-weight: 500;	
letter-spacing: .1em;
text-align: center;
padding:30px 10px;
margin: 50px 0px 30px;	
}*/

h3.ttl01 {
	font-size: 30px;
	color: #fff !important;
    line-height: 1.5;
    padding: 15px;
    margin: 50px 0px 30px;	
    background: url(/wp-content/themes/saran/img/common/hdg4_deco01.png) left top / 120px auto no-repeat, url(/wp-content/themes/saran/img/common/hdg4_deco02.png) right bottom / 120px auto no-repeat;
    background-color: #81d8d0 !important;	
	 -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    border-radius: 50px 50px 0px 0px;	
}

h3.ttl01 span::first-letter {
  color: red; /* お好きな色に変更してください */
}

.two-column .column70 > h3.ttl01:first-of-type{
	margin-top:0;
}

@media screen and (max-width: 1400px) {
h3.ttl01{
font-size: 23px;
}
}

@media screen and (max-width: 764px) {
h3.ttl01{
position: relative;
z-index: 1;
font-size: 18px;
letter-spacing: .1em;
text-align: center;
padding:18px 10px;
margin: 30px 0px 20px;	
}
h3.ttl01 {
	font-size: 18px;
    padding: 10px;
    background: url(/wp-content/themes/saran/img/common/hdg4_deco01.png) left top / 70px auto no-repeat, url(/wp-content/themes/saran/img/common/hdg4_deco02.png) right bottom / 70px auto no-repeat;
    border-radius: 30px 30px 0px 0px;	
}	
}



h4.ttl01 {
    font-size: 26px;
	font-weight: 600;
    letter-spacing: .1em;
	color: #505050;
    background: #ffffff;
    padding: 5px 30px;
    margin: 50px 0px 30px;
    border-left: dotted 4px #cbbf3e;
	line-height: 1.7;
}
h4.ttl01::first-letter {
  color: #baab0a; /* お好みの色に変更 */
}


@media screen and (max-width: 1400px) {
h4.ttl01{
    font-size: 22px;
    line-height: 1.5;	
}
}

@media screen and (max-width: 764px) {
	h4.ttl01{
	font-size: 18px;
	letter-spacing: .1em;
	padding:8px 10px 8px 20px;
	margin: 30px 0px 20px;
}
}


h5.ttl01{
	font-size: 24px;
	font-weight: 500;
	position:relative;
	letter-spacing: .1em;
    color: #646464;
    border-bottom:solid 1px #91d4c2;
    padding: 10px 10px 10px 55px;
	margin: 30px 0px 20px;		
}

.ttl-icon {
  position: absolute;
  left: 5px;
  top:15px; /* 高さを微調整 */
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 1400px) {
h5.ttl01{
font-size: 20px;
}
}

@media screen and (max-width: 764px) {
h5.ttl01{
font-size: 15px;
letter-spacing: .1em;
padding:10px 10px 8px 35px;
margin: 30px 0px 20px;	
}
.ttl-icon {
  position: absolute;
  left: 5px;
  top:14px; /* 高さを微調整 */
  width: 25px;
  height: 25px;
}
}


ul.list03 {
    margin-top: 20px;
	margin-left: 10px;
}
ul.list03 li {
    list-style-type: disc;
    padding-left: 5px;
    padding-bottom: 5px;	
    margin-left: 20px;
    letter-spacing: 1px;
    font-weight: 500;
}
ul.list03 li::marker {
    color: #d3656f;
}

@media screen and (max-width: 764px) {
.list03 li {
    margin-bottom: 3px;
    padding: 5px 10px;
    font-size: 16px;
}
}


ul.list04 {
    margin: 20px;
	margin-left: 10px;
    background: #fffde6;
    padding: 20px;	
}
.list04 li{
    position: relative;
    padding: 0px 5px 0px 40px;
}
.list04 li:before {
	content: "●";
	color: #ffe6a3;
    position: absolute;
    display: inline-block;
	width: 30px;
    height: 30px;
    border-radius: 0;
    left: 0px;
    top: 0px;
}
@media screen and (max-width: 764px) {
ul.list04 {
    margin: 20px 0px;
}		
.list04 li {
    margin-bottom: 3px;
    padding: 5px 10px 5px 25px;
    font-size: 16px;
    line-height: 1.5;	
}
.list04 li:before {
    top: 5px;
}	
}


.colum_libox {
    display: flex;
    justify-content: flex-start;
    background-color: #f7f7f7;
    padding: 30px 0px 30px 40px;
    border-radius: 20px;
    border: dashed 3px #8bca9f;
    margin: 50px auto;
}
ul.no_span.colum_list {
	column-count: 2;
}
.no_span {
    line-height: 2.5;
    padding: 10px 10px 10px 45px;
    border-radius: 20px;
}
ul.no_span.colum_list li {
    list-style-type: circle;
	margin-right: 50px;
}
.no_span li {
    position: relative;
}
.colum_list a {
    text-decoration: none;
    margin: 0px 15px 0px 0px;
}
.dli-chevron-right {
    display: inline-block;
    vertical-align: middle;
    color: #8bca9f;
    line-height: 1;
    width: 10px;
    height: 10px;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    margin: 0px 0px 5px;
}
ul.no_span.colum_list li::marker {
    color: #006b6a;
    font-weight: 600;
}


@media screen and (max-width: 764px) {
.colum_libox {
    padding: 0px 0px 0px 20px;
}
.no_span {
    padding: 10px 10px 10px 25px;
    border-radius: 10px;
}	
}



.box01 {
    margin: 20px 0px;
}
.box01 ul {
    display: flex;
    justify-content: flex-start;
	flex-wrap: wrap;
}
.box01 ul li {
    background: #ebebeb;
    padding: 5px 20px;
    margin: 10px 10px;
    width: 200px;
    text-align: center;
}

@media screen and (max-width: 764px) {
.box01 ul li {
    background: #ebebeb;
    padding: 5px 20px;
	margin: 5px 5px;
	width: 45%;
}
.box01 ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}	
}



/*チェックマーク付きのボックス*/
.box02 {
    margin: 20px 0px;
}
.box02 ul {

}
.box02 ul li {
    padding: 5px 20px 8px 50px;
    margin: 10px 10px 20px 10px;
    border-bottom: solid 1px #e4e4e4;	
}
.list02 {
  list-style: none;
  padding: 0;
}
.list02 li {
  position: relative;
  padding-left: 30px; /* 画像の幅＋余白 */
  margin-bottom: 1em;
  line-height: 1.6;
}
.list02 li:before {
	content: "";
    position: absolute;	
    background: url(../img/common/check_mark.svg) center / cover no-repeat;
	display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 0;
    left: 0px;
    top: 0px;
}


.check-icon {
  position: absolute;
  left: 0;
  top:0; /* 高さを微調整 */
  width: 40px;
  height: 40px;
}



/*olのリスト。水色の●数字で背景水色*/
ol.list03 {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin: 0;
}

ol.list03 li {
  position: relative;
  padding: 1.5em 1.5em 1.5em 4em;
  margin-bottom: 1.5em;
  background: #f7fdfd;
  border-radius: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

ol.list03 li::before {
	counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 22px;
    top: 29px;
    width: 35px;
    height: 35px;
    background: #69b8c0;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    font-size: 1.5rem;
}

ol.list03 li strong {
  display: block;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.3em;
}

ol.list03 li span {
  color: #555;
  font-size: 16px;
}


/*olのリスト。水色の●数字で背景水色*/
ol.list05 {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin: 0;
}

ol.list05 li {
  position: relative;
  padding: 1.5em 1.5em 1.5em 4em;
  margin-bottom: 1.5em;
  background: #ffedf5;
  border-radius: 16px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  font-weight: 600;	
}

ol.list05 li::before {
	counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 22px;
    top: 29px;
    width: 35px;
    height: 35px;
    background: #ee849f;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: bold;
    font-size: 1.5rem;
}

ol.list05 li strong {
  display: block;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.3em;
}
ol.list05 li span {
    font-weight: 500;
}


@media screen and (max-width: 764px) {
.box02 ul li {
    padding:5px 20px 5px 30px;
    margin: 5px 5px;
}
.box02 ul {
}	
.check-icon {
   width: 30px;
   height: 30px;
   vertical-align: middle;
   margin-right: 8px;
   top: 3px;
}
.list02 li {
  line-height: 1.5;
}
.list02 li:before {
    width: 30px;
    height: 30px;
    border-radius: 0;
    left: 0px;
    top: 3px;
}	
	
.list03 li::before {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 1rem;
}

ol.list05 li {
  line-height: 1.5;
  font-size: 16px;		
}
ol.list05 li span {
  font-size: 14px;
}
ol.list05 li::before {
    left: 13px;
    top: 19px;
    width: 35px;
    height: 35px;
}	
}


/*こんなお悩みはありませんか？　当院でできること*/
h4.osusume-ttl {
    text-align: center;
    margin: 50px 0px 40px;
    padding: 8px 0px;
    font-size: 20px;
    background-image: linear-gradient(to right, #dadada, #a9a9a9);
    color: #fff;
    border-radius: 30px 30px 0px 0px;
}
h4.dekirukoto-ttl {
    text-align: center;
    margin: 50px 0px 40px;
    padding: 8px 0px;
    font-size: 20px;
    background-image: linear-gradient(to right, #ebbbbb, #c07f7f);
    color: #fff;
    border-radius: 30px 30px 0px 0px;
}
@media screen and (max-width: 764px) {
h4.osusume-ttl {
    text-align: center;
    margin: 50px 0px 20px;
    padding: 8px 0px;
    font-size: 15px;
}
h4.dekirukoto-ttl {
    text-align: center;
    margin: 50px 0px 20px;
    padding: 8px 0px;
    font-size: 15px;
}	
}



/*詳しくはこちらボタン*/
.btn01 {
    position: relative;
    display: inline-block;
    padding: 5px 50px 5px 50px;
	margin: 20px 0px;
    border: 1px solid #333333;
    color: #333333;
    font-size: 80%;
    letter-spacing: 0.08em;
    text-align: center;
    transition: background 0.2s, color 0.2s;
    border-radius: 40px;
    min-width: 240px;
}
.btn01:before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #222222;
    border-right: solid 2px #818181;
    position: absolute;
    top: 50%;
    right: 17px;
    margin-top: -4px;
    transform: rotate(45deg);
}

.btn01:hover {
    padding: 5px 50px 5px 50px;
	margin: 20px 0px;
    border: 1px solid #333333;
    color: #a7a7a7;
	background:#ebebeb;
    font-size: 80%;
}


/*画像カラム*/
ul.w300-img {
    display: flex;
    flex-wrap: wrap;
}
ul.w300-img li {
    margin: 0px 10px;
}
.w300-img li img {
    width: 300px;
    margin-bottom: 20px;
}
@media screen and (max-width: 764px) {
ul.w300-img li {
    margin: 5px 5px 0px 5px;
}	
.w300-img li img {
    width: 160px;
    margin-bottom: 20px;
}
}



.image-caption {
  text-align: center; /* キャプションを中央揃えにする場合 */
  margin: 1em 0;
}
.image-caption img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.image-caption figcaption {
  font-size: 90%;
  color: #fff;
  margin-top: 0.5em;
    background: #909090;	
}

@media screen and (max-width: 767px) {
.caption-box.two-column {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }	
.caption-box.two-column .column30 {
       width: 46%!important;
}
}

/*注意事項*/
ul.list01  {
	padding:0px 0px 0px 30px;
}
ul.list01 li {
    list-style: disc;
    line-height: 1.7;
    margin-bottom: 10px;	
}
h4.hukusayou {
    font-weight: 600;
    color: #582222;
	padding-left:10px;
    margin: 40px 0px 0px 0px;	
}

@media screen and (max-width: 767px) {
h4.hukusayou {
    font-size:18px;
}
}

ul.sub-sec-flow{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 -38px 35px 0;
    gap: 35px;
    width: 100%;
}

.sub-sec-flow li {
    position: relative;
    flex: 0 0 25%;
}

#skin-cancer-mole .sub-sec-flow li {
    position: relative;
    flex: 0 0 17%;
}

ul.sub-sec-flow li::after {
    position: absolute;
    content: "▶︎";
    top: 0px;
    bottom: 0px;
    right: -34px;
    display: flex;
    align-items: center;
    font-size: 25px;
    margin: auto;
}

ul.sub-sec-flow li:last-child::after{
  content: none;
}

@media screen and (max-width: 767px) {
ul.sub-sec-flow li::after {
    right: -28px;
    font-size: 16px;
}
#skin-cancer-mole .sub-sec-flow li {
    position: relative;
    flex: 0 0 42%;
}	
}

/* ボタン設定 */
.btn, a.btn, button.btn {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 0.5rem 4rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
	border-radius:0.5em;
}

a.btn--red.btn--cubic {
    border-bottom: 5px solid #9f000c;
    background: #c41e29;
    color: #fff;
    margin-bottom: 5px;
    margin-left: 15px;
}

a.btn--red.btn--cubic:hover {
    margin-top: 3px;
    border-bottom: 2px solid #9f000c;
}

.fa-position-right {
    position: absolute;
    top: calc(50% - .5em);
    right: 1rem;
}

span.hoshi {
    color: #e5c00a;
}

ul.two-img {
    display: flex;
    justify-content: space-around;
}

@media screen and (max-width: 767px) {
ul.two-img {
	flex-direction:column;
}
}


#athletes-foot-nail .two-column{
	margin-top: 30px;
}
#wart .sub-sec-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px;
  padding: 0;
  margin: 0 0 35px;
}

#wart .sub-sec-flow {
  display: flex;
  flex-wrap: nowrap; 
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 0;
  margin-bottom: 32px;
  width: 100%;
  box-sizing: border-box;
    text-align: center;
}

#wart .sub-sec-flow li {
  flex: 1 1 0;
  max-width: calc(33.333% - 6px);
  aspect-ratio: 3 / 4; 
  position: relative;
  list-style: none;
}

#wart .sub-sec-flow img {
  width: 100%;
aspect-ratio: 3 / 4;
  object-fit: cover;   
  border-radius: 6px;
  display: block;
  margin-bottom: 0.5em;
}

/* ▶矢印 */
#wart .sub-sec-flow li::after {
  content: "▶︎";
  position: absolute;
  top: 0;
  bottom: 40px;
  right: -21px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #222;
}

#wart .sub-sec-flow li:last-child::after {
  content: none;
}

@media screen and (max-width: 649px) {
  #wart .sub-sec-flow {
    flex-wrap: nowrap;
  }

  #wart .sub-sec-flow li {
    max-width: calc(33.333% - -30px);
  }

  #wart .sub-sec-flow li::after {
    font-size: 16px;
    right: -18px;
	  bottom:5px;
  }
}

#birthmark ul.two-img {
    display: flex;
    justify-content: space-around;
    gap: 25px;
    margin-top: 25px;
}

#cedar-pollen-allergy .two-column,
#mite-allergy-treatment .two-column{
	margin-top:50px;
}


p.con-comment {
    font-size: 25px;
    color: #445958;
    font-weight: 600;
    margin-bottom: 40px !important;
}

@media screen and (max-width: 767px) {
p.con-comment {
    font-size: 20px;
	letter-spacing: 0px;
    line-height: 1.7;
    margin-bottom: 20px !important;
}
}	



/*脱毛比較表*/
.hair-removal-table {
  width: 100%;
  margin: 20px 0;
}

.hair-removal-table table {
  width: 100%;
  border-collapse: collapse;
}

.hair-removal-table th,
.hair-removal-table td {
  border: 1px solid #ccc;
  padding: 12px;
  vertical-align: middle;
}

.hair-removal-table th {
  background-color: #f5f5f5;
  font-weight: bold;
  text-align: center;	
}

.hair-removal-table td {
  background-color: #fff;
}
td.kinds {
    background: #e2f0ec;
    font-weight: 600;
    text-align: center;
}

@media screen and (max-width: 768px) {
  .hair-removal-table table,
  .hair-removal-table thead,
  .hair-removal-table tbody,
  .hair-removal-table th,
  .hair-removal-table td,
  .hair-removal-table tr {
    display: block;
    width: 100%;
  }

  .hair-removal-table thead tr {
    display: none;
  }

  .hair-removal-table td {
    position: relative;
	padding-left: 27%;
    text-align: left;
    border: 1px solid #ccc;
    margin-bottom: -1px;
  }

  .hair-removal-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 10px;
    top: 12px;
    font-weight: bold;
    white-space: nowrap;
  }
td.kinds {
        background: #ebebeb;
}	
}


/*パララックス*/
.parallax {
  position: relative;
  width: 100%;
  height: 800px; /* 好きな高さに調整 */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*ほくろ*/
.parallax.mole{
  background-image: url('/wp-content/themes/saran/img/about/mole.jpg');
}
.parallax.skin-rejuvenation{
  background-image: url('/wp-content/themes/saran/img/about/skin-rejuvenation.jpg');
}
.parallax.slimming{
  background-image: url('/wp-content/themes/saran/img/about/slimming.jpg');
}
.parallax.coretox{
  background-image: url('/wp-content/themes/saran/img/about/coretox.jpg');
}
.parallax.chaume{
  background-image: url('/wp-content/themes/saran/img/about/chaume.jpg');
}
.parallax.usuge{
  background-image: url('/wp-content/themes/saran/img/about/usuge.jpg');
}

.parallax img {
  display: none; /* imgタグが不要なので非表示に */
}

@media screen and (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
	width: 100%;
    height: 300px;	 
  }
}




#tattoo .sub-sec-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
    margin-bottom: 32px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}
#tattoo .sub-sec-flow li {
    flex: 1 1 0;
    flex: 0 0 23%;
    aspect-ratio: 3 / 4;
    position: relative;
    list-style: none;
}
#tattoo .sub-sec-flow img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    margin-bottom: 0.5em;
}
#tattoo .sub-sec-flow li::after {
    content: "▶︎";
    position: absolute;
    top: 0;
    bottom: 40px;
    right: -21px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #222;
}
#tattoo .sub-sec-flow li:last-child::after{
	content: none;
}

@media screen and (max-width: 1000px) {
#tattoo .sub-sec-flow li {
    flex: 0 0 45%;
}
}

@media screen and (max-width: 764px) {
#tattoo .column30 {
        width: 100%;
        text-align: center;
    }
}


.price-list {
  background: #f2f2f2;
  padding: 20px 40px;	
  list-style: none;
  margin: 0;
}

.price-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.price-list .label {
  width: 80px; /* ラベルの幅 */
}

.price-list .colon {
  margin: 0 8px;
}

.price-list .detail {
  flex: 1;
}


h5.ttl {
    padding: 0px 30px;
}




.box03 {
    border: solid 2px #91d4c2;
	padding: 40px 40px;
    border-radius: 20px;
    margin: 20px 0px;
}
p.box3-ttl {
    background: #91d4c2;
    color: #fff;
    text-align: center;	
    border-radius: 20px;
    padding: 10px;
}
@media screen and (max-width: 764px) {
p.box3-ttl {
    padding: 5px 5px;	
}
.box03 {
    border: solid 2px #91d4c2;
	padding: 20px 10px;
    border-radius: 10px;
    margin: 10px 0px;
}	
}	


h5.ttl {
    padding: 15px 30px;
    background: #f4f4f4;
    border-left: solid 2px #9dd0c1;
}
@media screen and (max-width: 764px) {
h5.ttl {
    padding: 5px 30px;
    line-height: 1.5;	
}
}
	