@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-padding-top: 60px;
  scroll-behavior: smooth;
  --Mincho: "Noto Serif JP", serif;
  --Gothic: "Noto Sans", sans-serif;
  --Cinzel: "Cinzel", serif;
  --Josefin: "Josefin Sans", sans-serif;
  --icomoon: "icomoon";
  --black: #1a1512;
  --blue: #202f55;
  --brown: #534741;
  --gold: #80692f;
  --highlight01: #f6ead1;
  --padding-pc: min(180px, 5.2rem);
  --padding-sp: 4vw;
  --p-size: min(1.1vw, 1.85rem);
  /* === SP === */
}
@media screen and (max-width: 768px) {
  html {
    --p-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  html {
    --h2-size: min(6.2vw, 2.6rem);
  }
}
html body {
  color: var(--black);
  font-family: var(--Mincho);
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.625;
  background: #fff;
  -webkit-text-size-adjust: none;
}
html img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
html h1,
html h2,
html h3,
html h4 {
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.06em;
}
html a {
  color: var(--black);
  text-decoration: none;
  transition: all 0.4s ease;
}
html a:hover {
  filter: brightness(120%);
}
html p {
  line-height: 2;
  font-family: var(--Gothic);
  font-size: var(--p-size);
}
@media screen and (max-width: 767px) {
  html p {
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  html .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  html .sp {
    display: none !important;
  }
}
html .animation {
  transform: translate(0px, 10px);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  backface-visibility: hidden;
}
html .animation_left {
  transform: translate(-10px, 0px);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  backface-visibility: hidden;
}
html .animation_left.active {
  transform: translate(0%, 0%);
  opacity: 1;
}
html .animation_right {
  transform: translate(10px, 0px);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  backface-visibility: hidden;
}
html .animation_right.active {
  transform: translate(0%, 0%);
  opacity: 1;
}
html .animation_down {
  transform: translate(0px, -10px);
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  backface-visibility: hidden;
}
html .animation_down.active {
  transform: translate(0%, 0%);
  opacity: 1;
}
html .animation.active {
  transform: translate(0%, 0%);
  opacity: 1;
}
html .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
html .tel span {
  font-family: var(--Josefin);
  font-size: 5.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}
html header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: min(140px, 8vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.6s ease;
}
@media screen and (min-width: 769px) {
  html header.on {
    background: #fff;
  }
  html header.on .l-header__logo {
    padding: 20px 40px 20px;
  }
  html header.on .l-header__logo img {
    width: 320px;
  }
  html header.on ~ #slidemenuBtn {
    border-radius: 0;
  }
}
html header .l-header__logo {
  padding: 10px 60px;
}
html header .l-header__logo img {
  width: min(384px, 40vw);
  transition: all 0.2s ease;
}
html header .tel {
  margin-right: min(170px, 10vw);
  color: #fff;
}
html header .tel .icon-tel {
  position: relative;
  top: -2px;
  font-size: min(2.4vw, 4.25rem);
}
html header .tel span {
  font-size: min(3vw, 5.8rem);
}
html header .p-btn__menu {
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  html header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  html header .l-header__logo {
    padding: 10px;
  }
  html header .l-header__logo img {
    width: 40vw;
  }
  html header .tel {
    display: none;
    margin-right: 100px;
    gap: 5px;
  }
  html header .tel .icon-tel {
    position: relative;
    top: -2px;
    font-size: 5vw;
  }
  html header .tel span {
    font-size: 5vw;
  }
  html header .l-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 34px;
  }
  html header .l-btn ul {
    display: none;
  }
}
html #slidemenuBtn {
  order: 2;
  flex-shrink: 0;
  width: min(140px, 8vw);
  height: min(140px, 8vw);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--blue);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 110;
}
html #slidemenuBtn.slide-open > span:before {
  width: 0%;
}
html #slidemenuBtn.slide-open > span:after {
  width: 0%;
}
html #slidemenuBtn.slide-open > span span:before {
  width: 100%;
  left: 0;
  transform: rotate(-35deg);
  transition: width 0.2s ease, top 0.2s ease, transform 0.2s ease 0.2s;
  backface-visibility: hidden;
}
html #slidemenuBtn.slide-open > span span:after {
  width: 100%;
  right: 0;
  transform: rotate(35deg);
  transition: width 0.2s ease, bottom 0.2s ease, transform 0.2s ease 0.2s;
  backface-visibility: hidden;
}
html #slidemenuBtn small {
  position: absolute;
  left: 0;
  bottom: min(30px, 1.7vw);
  width: 100%;
  line-height: 1;
  color: #fff;
  text-align: center;
  font-size: min(1.7rem, 0.9vw);
  font-family: var(--Gothic);
}
html #slidemenuBtn > span {
  top: min(-7px, -0.73vw);
  width: min(3.125vw, 60px);
  height: min(1.75vw, 33px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
html #slidemenuBtn > span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: width 0.2s ease;
  backface-visibility: hidden;
}
html #slidemenuBtn > span:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: width 0.2s ease;
  backface-visibility: hidden;
}
html #slidemenuBtn > span span:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 1px);
  width: 100%;
  height: 1px;
  background: #fff;
  transition: transform 0.2s ease, top 0.2s ease 0.2s;
  backface-visibility: hidden;
}
html #slidemenuBtn > span span:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 50%;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: transform 0.2s ease, bottom 0.2s ease 0.2s;
  backface-visibility: hidden;
}
@media screen and (max-width: 767px) {
  html #slidemenuBtn {
    order: 2;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
  }
  html #slidemenuBtn small {
    bottom: 10px;
    font-size: 0.8rem;
  }
  html #slidemenuBtn > span {
    top: -4px;
    width: 30px;
    height: 17px;
  }
  html #slidemenuBtn > span span:before {
    top: 8px;
  }
  html #slidemenuBtn > span span:after {
    bottom: 8px;
  }
}
html #menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--blue);
  background-size: cover;
  z-index: 100;
  padding: 30px;
  box-sizing: border-box;
  overflow-y: auto;
  transform: translateY(10px);
  pointer-events: none;
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
html #menu.slide-open {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}
html #menu .menu_logo {
  text-align: center;
  padding-bottom: 60px;
}
html #menu ol {
  width: 800px;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 0;
}
html #menu ol li.wide {
  width: 100%;
  border-left: 0;
}
html #menu ol li.noborder {
  border-left: 0;
}
html #menu ol li a {
  display: block;
  padding: 5px 20px;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
}
html #menu ol li a:hover {
  color: #bab154;
}
html #menu ol li + li {
  position: relative;
}
html #menu ol li + li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  transform: rotate(15deg);
}
html #menu .tel {
  color: #fff;
}
html #menu .tel .icon-tel {
  font-size: min(3.2vw, 6.4rem);
}
html #menu .tel span {
  font-size: min(4vw, 8rem);
}
@media screen and (max-width: 767px) {
  html #menu {
    padding: 40px 20px;
    box-sizing: border-box;
    display: block;
  }
  html #menu .menu_logo {
    width: 230px;
    text-align: center;
    padding-bottom: 30px;
    margin: 0 auto;
  }
  html #menu ol {
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px 0;
  }
  html #menu ol li.wide {
    width: 100%;
    border-left: 0;
  }
  html #menu ol li.noborder {
    border-left: 0;
  }
  html #menu ol li a {
    display: block;
    padding: 0;
    font-size: 1.6rem;
    line-height: 1.5;
  }
  html #menu ol li + li:before {
    content: none;
  }
  html #menu .tel .icon-tel {
    font-size: 6vw;
  }
  html #menu .tel span {
    font-size: 7vw;
  }
}
html main {
  width: 100%;
  overflow: hidden;
}
html .highlight {
  display: inline;
  background: linear-gradient(var(--highlight01) 70%, var(--highlight01) 0%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 10%;
  transition: background-size 1.5s;
}
html .highlight.active {
  background-size: 100% 10%;
}
html .highlight.thin {
  background-size: 0% 5%;
}
html .highlight.thin.active {
  background-size: 100% 5%;
}
html .l-title {
  width: 100%;
  height: 53vw;
  position: relative;
  z-index: 10;
}
html .l-title__img {
  width: 100%;
  height: 100%;
  background: #ACB1B2;
  background: #fff;
}
html .l-title__img .title01 {
  position: absolute;
  right: 0;
  width: 68.5%;
  height: 53vw;
  clip-path: polygon(23vw 0, 100% 0, 100% 100%, 0 100%);
}
html .l-title__img .title01 img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}
html .l-title__img .title02 {
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 23vw;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10.2vw) 100%, 0 100%);
}
html .l-title__img .title02 img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}
html .l-title__img .title03 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44.8%;
  height: 30.1vw;
  clip-path: polygon(0 0, 100% 0, calc(100% - 13.1vw) 100%, 0 100%);
}
html .l-title__img .title03 img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
html .l-title__text {
  position: absolute;
  left: 0;
  top: 36%;
  width: 100%;
  z-index: 10;
}
html .l-title__text > em {
  margin-left: 10vw;
  display: block;
  color: #fff;
  font-size: min(2.96vw, 5.8rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-indent: -1em;
  line-height: 1.4;
}
html .l-title__text > em span {
  font-size: 1.05em;
}
html .l-title__text > em .large {
  font-size: 1.14em;
  margin-right: -0.5em;
}
html .l-title__text h1 {
  position: relative;
  width: fit-content;
  text-align: center;
  margin: 0 auto;
}
html .l-title__text h1 small {
  position: absolute;
  right: 0;
  top: -50px;
  max-width: 506px;
  width: 24%;
}
html .l-title__text h1 em {
  color: #fff;
  font-size: 10.1vw;
  font-weight: 400;
}
html .l-title__point {
  position: absolute;
  z-index: 1;
  right: 80px;
  bottom: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transform: translate(0, 50%);
  gap: 1vw;
}
html .l-title__point li {
  width: min(17.26vw, 332px);
  height: min(17.26vw, 332px);
  background: url(../images/medal_bg.webp) no-repeat 0 0;
  background-size: 100% auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  html .l-title {
    width: 100%;
    height: 83vw;
  }
  html .l-title__img .title01 {
    position: absolute;
    right: 0;
    width: 68%;
    height: 53vw;
    clip-path: polygon(23vw 0, 100% 0, 100% 100%, 0 100%);
  }
  html .l-title__img .title01 img {
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
  }
  html .l-title__img .title02 {
    width: 56%;
    height: 53vw;
    clip-path: polygon(0 0, 100% 0, calc(100% - 23vw) 100%, 0 100%);
  }
  html .l-title__img .title03 {
    width: 100%;
    height: 30.1vw;
    clip-path: none;
  }
  html .l-title__text {
    top: 41%;
  }
  html .l-title__text > em {
    margin-left: 30px;
    font-size: 1.6rem;
    text-indent: -1em;
  }
  html .l-title__text h1 small {
    display: none;
  }
  html .l-title__text h1 em {
    font-size: 11vw;
  }
  html .l-title__point {
    right: 20px;
    bottom: 0vw;
    width: calc(100% - 40px);
  }
  html .l-title__point li {
    width: 30vw;
    height: 30vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
html .l-contact {
  width: 100%;
  text-align: center;
  background: #E6E8EA url("../images/rsv_bg.webp") no-repeat left center;
  background-size: auto 100%;
  padding: 4.6vw 5.2vw 5.7vw;
  box-sizing: border-box;
}
html .l-contact#first_contact {
  padding-top: 9.2vw;
}
html .l-contact h2 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  margin-bottom: 4.1vw;
}
html .l-contact h2 .icon-crown {
  font-size: 4vw;
  padding-bottom: 20px;
}
html .l-contact h2 em {
  display: block;
  line-height: 1;
  font-size: 6vw;
  font-family: var(--Cinzel);
  font-weight: 400;
}
html .l-contact h2 span {
  display: block;
  line-height: 1;
  font-size: 2.2vw;
}
html .l-contact .l-contact_list {
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2.4vw;
  padding: 2.448vw;
  position: relative;
  margin: 0 auto 3.85vw;
  box-sizing: border-box;
}
html .l-contact .l-contact_list ol {
  width: 52%;
}
html .l-contact .l-contact_list ol li {
  font-size: 1.615vw;
  padding: 1.56vw 0 1.56vw 2.734vw;
  line-height: 1.5;
  text-align: left;
  border-bottom: 1px solid #868686;
  background: url("../images/svg/check02.svg") no-repeat left top 1.6vw;
  background-size: 2.1vw auto;
}
html .l-contact .l-contact_list ol ~ ol {
  width: calc(48% - 2.4vw);
}
html .l-contact .l-contact_list .tag {
  position: absolute;
  right: 0;
  bottom: 90%;
  width: 18.8vw;
}
html .l-contact ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
html .l-contact ul li a {
  width: 33vw;
  height: 120px;
  border-radius: 20px;
  background: #fff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--blue);
  gap: 1vw;
  transition: all 0.2s ease;
}
html .l-contact ul li a:hover {
  background: var(--blue);
  color: #fff;
  filter: brightness(140%);
}
html .l-contact ul li a:hover:before {
  border-color: #fff;
}
html .l-contact ul li a:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid var(--blue);
  box-sizing: border-box;
  border-radius: 17px;
  transition: all 0.2s ease;
}
html .l-contact ul li a.tel .icon-tel {
  font-size: min(5.5rem, 2.8vw);
}
html .l-contact ul li a.tel span {
  position: relative;
  top: 0.1vw;
  font-size: min(5.5rem, 2.8vw);
}
html .l-contact ul li a.rsv_btn .icon-rsv {
  font-size: min(5rem, 3vw);
}
html .l-contact ul li a.rsv_btn span {
  font-size: min(3.5rem, 2vw);
}
@media screen and (max-width: 767px) {
  html .l-contact {
    background: #E6E8EA url("../images/rsv_bg.webp") no-repeat left -30vw center;
    background-size: auto 100%;
    padding: 60px 20px 40px;
    box-sizing: border-box;
  }
  html .l-contact h2 {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 4.1vw;
  }
  html .l-contact h2 .icon-crown {
    font-size: 3rem;
    padding-bottom: 10px;
  }
  html .l-contact h2 em {
    font-size: 12vw;
  }
  html .l-contact h2 span {
    font-size: 4vw;
  }
  html .l-contact .l-contact_list {
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    position: relative;
    margin: 0 auto 20px;
    box-sizing: border-box;
    border-radius: 5px;
  }
  html .l-contact .l-contact_list ol {
    width: 100%;
  }
  html .l-contact .l-contact_list ol li {
    font-size: 1.6rem;
    padding: 10px 0 10px 24px;
    border-bottom: 1px solid #868686;
    letter-spacing: -0.06em;
    background: url("../images/svg/check02.svg") no-repeat left top 13px;
    background-size: 16px auto;
  }
  html .l-contact .l-contact_list ol ~ ol {
    width: 100%;
  }
  html .l-contact .l-contact_list ol ~ ol li:last-child {
    border-bottom: 0;
  }
  html .l-contact .l-contact_list .tag {
    position: absolute;
    right: -20px;
    bottom: auto;
    top: -22%;
    width: 25%;
  }
  html .l-contact ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  html .l-contact ul li {
    width: 100%;
  }
  html .l-contact ul li a {
    width: 100%;
    height: 80px;
    border-radius: 10px;
  }
  html .l-contact ul li a:before {
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 8px;
  }
  html .l-contact ul li a.tel .icon-tel {
    font-size: 2rem;
  }
  html .l-contact ul li a.tel span {
    position: relative;
    top: 0.2vw;
    font-size: 2.5rem;
  }
  html .l-contact ul li a.rsv_btn {
    gap: 10px;
  }
  html .l-contact ul li a.rsv_btn .icon-rsv {
    font-size: 2.5rem;
  }
  html .l-contact ul li a.rsv_btn span {
    font-size: 1.8rem;
  }
}
html .l-worries {
  background: #f2f2f2;
  position: relative;
}
html .l-worries:before {
  content: "";
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: -4.1vw;
  width: 42.1vw;
  height: 8.2vw;
  background: #d6cf94;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
html .l-worries h2 {
  position: relative;
  z-index: 3;
  padding: 3vw 0 0 3vw;
  font-size: 10.4vw;
  font-family: var(--Cinzel);
  line-height: 0.9;
  color: var(--blue);
}
html .l-worries .text01 {
  position: absolute;
  right: 2vw;
  top: 4vw;
  z-index: 1;
  font-size: 2.9vw;
  z-index: 3;
}
html .l-worries .text01 span {
  font-size: 1.14em;
}
html .l-worries .check_list {
  position: relative;
  z-index: 4;
  margin-top: 4.16vw;
  margin-left: 9.2vw;
  width: 54.37vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 2.7vw 3.15vw;
}
html .l-worries .check_list li {
  width: 22.26vw;
  height: 7.86vw;
  background: rgba(46, 83, 115, 0.9);
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 2.68vw;
  box-sizing: border-box;
}
html .l-worries .check_list li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 100%;
  border-top: 2px dotted #fff;
}
html .l-worries .check_list li:after {
  position: absolute;
  left: -0.59vw;
  top: -1.43vw;
  content: "";
  width: 3.07vw;
  height: 3.125vw;
  background: url("../images/svg/check03.svg") no-repeat 0 0;
  background-size: 100% auto;
}
html .l-worries .check_list li p {
  font-size: 1.19vw;
  line-height: 1.7;
  color: #fff;
  font-weight: bold;
}
html .l-worries .check_list li p span {
  color: #f6ead1;
}
html .l-worries .check_list li:nth-child(2),
html .l-worries .check_list li:nth-child(3) {
  background: rgba(43, 87, 103, 0.9);
}
html .l-worries .check_list li:nth-child(3) {
  margin-left: 6.69vw;
}
html .l-worries .woman {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 65%;
  height: 58vw;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 23vw 100%);
}
html .l-worries .woman img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}
html .l-worries .bg01 {
  position: absolute;
  left: 0;
  z-index: 2;
  top: 26vw;
  width: 76.4vw;
  height: 52vw;
  clip-path: polygon(0 0, calc(100% - 23vw) 0, 100% 100%, 0 100%);
}
html .l-worries .bg01 img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}
html .l-worries .text {
  width: fit-content;
  position: relative;
  z-index: 5;
  padding: 5.2vw 3.3vw 29.6vw 18.75vw;
  margin-left: auto;
  margin-top: 4vw;
}
html .l-worries .text:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 23vw 100%);
  background: #fff;
  z-index: -1;
}
html .l-worries .text h3 {
  font-size: 2.6vw;
  margin-bottom: 2.5vw;
  font-weight: 500;
  color: var(--blue);
}
html .l-worries .text p {
  font-size: var(--p-size);
  color: var(--blue);
}
html .l-worries .btn_box {
  position: absolute;
  left: 0;
  bottom: 6vw;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
html .l-worries .btn_box li a {
  width: 40vw;
  max-width: 780px;
  height: 15.6vw;
  max-height: 300px;
  box-sizing: border-box;
  border-radius: 20px;
  background: #fff;
  position: relative;
  color: var(--blue);
  gap: 1vw;
  border: 2px solid var(--blue);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  box-shadow: 0px 9px 0px #cdcdcd;
}
html .l-worries .btn_box li a:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid var(--blue);
  box-sizing: border-box;
  border-radius: 13px;
}
html .l-worries .btn_box li a figure {
  width: 32%;
  flex-shrink: 0;
}
html .l-worries .btn_box li a figure img {
  object-fit: cover;
  object-position: bottom;
  width: 100%;
  height: 15.6vw;
  max-height: 300px;
  border-radius: 20px 0 0 20px;
  mix-blend-mode: multiply;
}
html .l-worries .btn_box li a.tel span {
  width: 100%;
  text-align: center;
}
html .l-worries .btn_box li a.tel span small {
  display: block;
  font-size: min(1.2vw, 2.3rem);
  font-family: var(--Mincho);
}
html .l-worries .btn_box li a.tel span em {
  display: block;
  line-height: 1;
  font-size: min(5.5rem, 2.7vw);
}
html .l-worries .btn_box li a.rsv_btn span {
  width: 100%;
  text-align: center;
}
html .l-worries .btn_box li a.rsv_btn span small {
  display: block;
  font-size: min(1.7vw, 3.3rem);
  font-family: var(--Mincho);
}
html .l-worries .btn_box li a.rsv_btn span em {
  display: block;
  line-height: 1;
  font-size: min(2.1vw, 4.2rem);
}
@media screen and (max-width: 767px) {
  html .l-worries:before {
    left: 50%;
    bottom: -5vw;
    width: 60vw;
    height: 10vw;
    transform: translateX(-50%);
  }
  html .l-worries h2 {
    position: relative;
    z-index: 3;
    padding: 20px;
    font-size: 13vw;
    font-family: var(--Cinzel);
    line-height: 0.9;
    color: var(--blue);
  }
  html .l-worries .text01 {
    display: inline-block;
    position: relative;
    left: 20px;
    right: auto;
    top: auto;
    font-size: 1.8rem;
    margin-bottom: 32px;
  }
  html .l-worries .text01 span {
    font-size: 1.14em;
  }
  html .l-worries .check_list {
    position: relative;
    z-index: 4;
    margin: 0;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
    background: url("../images/worries02.webp") no-repeat center;
    background-size: cover;
  }
  html .l-worries .check_list li {
    width: 100%;
    height: auto;
    padding: 20px 30px;
    box-sizing: border-box;
    display: block;
  }
  html .l-worries .check_list li:before {
    bottom: 5px;
    width: 100%;
    border-top: 1px dotted #fff;
  }
  html .l-worries .check_list li:after {
    position: absolute;
    left: -10px;
    top: -10px;
    content: "";
    width: 30px;
    height: 30px;
    background: url("../images/svg/check03.svg") no-repeat 0 0;
    background-size: 100% auto;
  }
  html .l-worries .check_list li p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #fff;
    text-align: center;
    font-weight: bold;
  }
  html .l-worries .check_list li p span {
    color: #f6ead1;
  }
  html .l-worries .check_list li:nth-child(2),
html .l-worries .check_list li:nth-child(3) {
    background: rgba(43, 87, 103, 0.9);
  }
  html .l-worries .check_list li:nth-child(3) {
    margin-left: 0;
  }
  html .l-worries .woman {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 60vw;
    clip-path: none;
  }
  html .l-worries .woman img {
    object-fit: cover;
    object-position: top;
    width: 120%;
    height: 100%;
    max-width: inherit;
  }
  html .l-worries .bg01 {
    display: none;
  }
  html .l-worries .text {
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
    margin: 0;
    background: #fff;
  }
  html .l-worries .text:before {
    content: none;
  }
  html .l-worries .text h3 {
    font-size: 2.6rem;
    margin-bottom: 1em;
  }
  html .l-worries .btn_box {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px 40px;
    box-sizing: border-box;
    background: #fff;
  }
  html .l-worries .btn_box li {
    width: 100%;
  }
  html .l-worries .btn_box li a {
    width: 100%;
    max-width: 100%;
    height: 120px;
    max-height: 120px;
    border-radius: 10px;
    border: 1px solid var(--blue);
    gap: 0;
    box-shadow: 0px 4px 0px #cdcdcd;
  }
  html .l-worries .btn_box li a:before {
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 6px;
  }
  html .l-worries .btn_box li a figure {
    width: 32%;
    flex-shrink: 0;
  }
  html .l-worries .btn_box li a figure img {
    width: 100%;
    height: 120px;
    max-height: 120px;
    border-radius: 6px 0 0 6px;
  }
  html .l-worries .btn_box li a.tel span {
    width: 100%;
    text-align: center;
  }
  html .l-worries .btn_box li a.tel span small {
    font-size: 3vw;
    letter-spacing: 0;
  }
  html .l-worries .btn_box li a.tel span em {
    font-size: 6vw;
  }
  html .l-worries .btn_box li a.rsv_btn span small {
    font-size: 3vw;
  }
  html .l-worries .btn_box li a.rsv_btn span em {
    font-size: 4.5vw;
  }
}
html .l-worries-others {
  width: 100%;
  height: 30vw;
  background: url("../images/bg01.webp") no-repeat center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
html .l-worries-others p {
  font-size: min(4.2vw, 8.2rem);
  color: #fff;
  line-height: 1.5;
  font-family: var(--Mincho);
  font-weight: bold;
  text-align: center;
  text-shadow: 0px 0px 27px rgba(0, 12, 25, 0.9);
}
@media screen and (max-width: 767px) {
  html .l-worries-others {
    width: 100%;
    height: 40vw;
  }
  html .l-worries-others p {
    font-size: 5vw;
  }
}
html .l-head-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 7vw;
}
html .l-head-text .icon-crown {
  font-size: 4vw;
  padding-bottom: 20px;
}
html .l-head-text span {
  display: block;
  line-height: 1;
  font-size: min(2.9vw, 5.7rem);
}
html .l-head-text em {
  display: block;
  line-height: 1;
  font-size: min(10.4vw, 20rem);
  font-family: var(--Cinzel);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  html .l-head-text {
    gap: 10px;
    margin-bottom: 30px;
  }
  html .l-head-text .icon-crown {
    font-size: 3rem;
    padding-bottom: 10px;
  }
  html .l-head-text span {
    font-size: 2rem;
  }
  html .l-head-text em {
    font-size: 5rem;
  }
}
html .l-reason {
  background: #f2f2f2;
  padding: 7.3vw 0 0;
}
html .l-reason .l-reason_inner .item {
  width: 100%;
  height: 34.3vw;
  position: relative;
  margin-top: 0.7vw;
}
html .l-reason .l-reason_inner .item figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 62.5%;
  height: 34.3vw;
}
html .l-reason .l-reason_inner .item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
html .l-reason .l-reason_inner .item .text {
  position: relative;
  margin-left: auto;
  width: 53.9%;
  height: 34.3vw;
  padding-top: 5.2vw;
  box-sizing: border-box;
}
html .l-reason .l-reason_inner .item .text:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  clip-path: polygon(16.1vw 0, 100% 0%, 100% 100%, 0 100%);
}
html .l-reason .l-reason_inner .item .text h3 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1.8vw 0;
  width: 50vw;
  margin-left: auto;
  position: relative;
}
html .l-reason .l-reason_inner .item .text h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(3.75vw 0, 100% 0%, 100% 100%, 0 100%);
  background: var(--blue);
  z-index: 0;
}
html .l-reason .l-reason_inner .item .text h3:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3.75vw;
  height: 50%;
  background: #000;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
html .l-reason .l-reason_inner .item .text h3 .reason_num {
  position: absolute;
  left: 4vw;
  top: 0.6vw;
  width: 6.9vw;
  height: 8.6vw;
  background: url("../images/reason_medal.webp") no-repeat center;
  background-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
html .l-reason .l-reason_inner .item .text h3 .reason_num span {
  position: relative;
  top: -1vw;
  display: block;
  text-align: center;
}
html .l-reason .l-reason_inner .item .text h3 .reason_num span small {
  display: block;
  line-height: 1;
  font-size: 0.6vw;
}
html .l-reason .l-reason_inner .item .text h3 .reason_num span em {
  display: block;
  line-height: 1;
  font-size: 2.1vw;
}
html .l-reason .l-reason_inner .item .text h3 .reason_num ~ em {
  position: relative;
  z-index: 1;
  padding-left: 12vw;
  color: #fff;
  font-size: min(2vw, 3.9rem);
}
html .l-reason .l-reason_inner .item .text p {
  position: relative;
  z-index: 1;
  font-weight: 600;
  padding: 3.9vw 5.2vw 0 11vw;
}
html .l-reason .l-reason_inner .item.reverse figure {
  left: auto;
  right: 0;
}
html .l-reason .l-reason_inner .item.reverse .text {
  margin-left: 0;
}
html .l-reason .l-reason_inner .item.reverse .text:before {
  clip-path: polygon(0 0, calc(100% - 16.1vw) 0%, 100% 100%, 0 100%);
}
html .l-reason .l-reason_inner .item.reverse .text h3 {
  margin-left: 0;
}
html .l-reason .l-reason_inner .item.reverse .text h3:before {
  clip-path: polygon(0 0, calc(100% - 3.75vw) 0%, 100% 100%, 0 100%);
}
html .l-reason .l-reason_inner .item.reverse .text h3:after {
  left: auto;
  right: 0;
}
html .l-reason .l-reason_inner .item.reverse .text h3 .reason_num {
  left: 1.3vw;
}
html .l-reason .l-reason_inner .item.reverse .text h3 .reason_num ~ em {
  padding-left: 9.4vw;
}
html .l-reason .l-reason_inner .item.reverse .text p {
  padding: 3.9vw 11vw 0 4.8vw;
}
@media screen and (max-width: 767px) {
  html .l-reason {
    background: #f2f2f2;
    padding: 40px 20px 0;
  }
  html .l-reason .l-reason_inner .item {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 20px;
  }
  html .l-reason .l-reason_inner .item figure {
    position: static;
    width: 100%;
    height: auto;
  }
  html .l-reason .l-reason_inner .item figure img {
    width: 100%;
    height: auto;
    object-fit: initial;
  }
  html .l-reason .l-reason_inner .item .text {
    position: relative;
    margin: 0;
    width: 100%;
    height: auto;
    padding: 0 20px 20px;
    box-sizing: border-box;
    background: #fff;
  }
  html .l-reason .l-reason_inner .item .text:before {
    content: none;
  }
  html .l-reason .l-reason_inner .item .text h3 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 14px 0;
    width: calc(100% + 40px);
    margin-left: -20px;
    position: relative;
    top: -20px;
  }
  html .l-reason .l-reason_inner .item .text h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, calc(100% - 8vw) 0%, 100% 100%, 0 100%);
  }
  html .l-reason .l-reason_inner .item .text h3:after {
    left: auto;
    right: 0;
    top: 0;
    width: 8vw;
  }
  html .l-reason .l-reason_inner .item .text h3 .reason_num {
    position: absolute;
    left: 10px;
    top: -5px;
    width: 66px;
    height: 70px;
    background: url("../images/reason_medal.webp") no-repeat top center;
    background-size: 100% auto;
  }
  html .l-reason .l-reason_inner .item .text h3 .reason_num span {
    position: relative;
    top: -5px;
    display: block;
    text-align: center;
  }
  html .l-reason .l-reason_inner .item .text h3 .reason_num span small {
    display: block;
    line-height: 1;
    font-size: 0.7rem;
    letter-spacing: 0;
  }
  html .l-reason .l-reason_inner .item .text h3 .reason_num span em {
    font-size: 1.85rem;
  }
  html .l-reason .l-reason_inner .item .text h3 .reason_num ~ em {
    padding-left: 80px;
    font-size: 3.85vw;
    line-height: 1.5;
    letter-spacing: 0;
  }
  html .l-reason .l-reason_inner .item .text p {
    font-weight: 500;
    padding: 0;
  }
  html .l-reason .l-reason_inner .item.reverse figure {
    left: auto;
    right: 0;
  }
  html .l-reason .l-reason_inner .item.reverse .text {
    margin-left: 0;
  }
  html .l-reason .l-reason_inner .item.reverse .text:before {
    clip-path: polygon(0 0, calc(100% - 16.1vw) 0%, 100% 100%, 0 100%);
  }
  html .l-reason .l-reason_inner .item.reverse .text h3 {
    margin-left: -20px;
  }
  html .l-reason .l-reason_inner .item.reverse .text h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, calc(100% - 8vw) 0%, 100% 100%, 0 100%);
  }
  html .l-reason .l-reason_inner .item.reverse .text h3:after {
    left: auto;
    right: 0;
    top: 0;
    width: 8vw;
  }
  html .l-reason .l-reason_inner .item.reverse .text h3 .reason_num ~ em {
    padding-left: 80px;
  }
  html .l-reason .l-reason_inner .item.reverse .text p {
    padding: 0;
  }
}
html .l-maintenance {
  width: 100%;
  text-align: center;
  padding: 5.2vw;
  box-sizing: border-box;
  position: relative;
}
html .l-maintenance:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: #e7e7e7;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 24vw 100%);
}
html .l-maintenance:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  z-index: -2;
}
html .l-maintenance h2 {
  font-family: var(--Cinzel);
  font-size: 6vw;
  line-height: 1;
}
html .l-maintenance em {
  position: relative;
  font-size: min(2.1vw, 4.1rem);
  color: var(--black);
}
html .l-maintenance em:before {
  content: "";
  position: absolute;
  left: calc(100% + 1vw);
  top: 50%;
  width: 20vw;
  height: 2px;
  background: var(--black);
}
html .l-maintenance em:after {
  content: "";
  position: absolute;
  right: calc(100% + 1vw);
  top: 50%;
  width: 20vw;
  height: 2px;
  background: var(--black);
}
html .l-maintenance .l-maintenance_box {
  width: 100%;
  max-width: 1720px;
  margin: 2vw auto 0;
  background: #fff;
  padding: min(5.2vw, 100px);
  box-sizing: border-box;
  box-shadow: 0px 10px 34px 0px rgba(0, 12, 25, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
html .l-maintenance .l-maintenance_box figure {
  max-width: 582px;
  width: 30vw;
  flex-shrink: 0;
}
html .l-maintenance .l-maintenance_box figure img {
  width: 100%;
}
html .l-maintenance .l-maintenance_box .text {
  text-align: left;
}
html .l-maintenance .l-maintenance_box .text h3 {
  font-size: min(2vw, 3.6rem);
  padding-bottom: 2vw;
}
@media screen and (max-width: 767px) {
  html .l-maintenance {
    padding: 20px;
  }
  html .l-maintenance:before {
    width: 80%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 100vw 100%);
  }
  html .l-maintenance:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #f2f2f2;
    z-index: -2;
  }
  html .l-maintenance h2 {
    font-size: 4rem;
  }
  html .l-maintenance em {
    font-size: 1.8rem;
  }
  html .l-maintenance em:before {
    height: 1px;
  }
  html .l-maintenance em:after {
    height: 1px;
  }
  html .l-maintenance .l-maintenance_box {
    width: 100%;
    max-width: 100%;
    margin: 20px auto 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  html .l-maintenance .l-maintenance_box figure {
    max-width: 100%;
    width: 100%;
    flex-shrink: 0;
  }
  html .l-maintenance .l-maintenance_box figure img {
    width: 100%;
  }
  html .l-maintenance .l-maintenance_box .text {
    text-align: left;
  }
  html .l-maintenance .l-maintenance_box .text h3 {
    font-size: 5vw;
    text-align: center;
    padding-bottom: 10px;
  }
  html .l-maintenance .l-maintenance_box .text p {
    padding: 0 20px 20px;
  }
}
html .l-implant {
  text-align: center;
  position: relative;
  background: #f7f8f8;
}
html .l-implant:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 12vw;
  height: 100%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #fff;
}
html .l-implant:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 12vw;
  height: 100%;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  background: #fff;
}
html .l-implant .vertical {
  position: absolute;
  left: 5vw;
  top: 6.8vw;
  display: flex;
  flex-direction: row-reverse;
}
html .l-implant .vertical span {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  text-align: left;
  font-size: min(2.7vw, 5.3rem);
  font-weight: 400;
  position: relative;
  color: var(--black);
}
html .l-implant .vertical span:before {
  content: "";
  width: 2px;
  height: 5.8vw;
  background: var(--black);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 1vw);
}
html .l-implant .vertical span ~ span {
  margin-top: 2em;
}
html .l-implant .vertical span ~ span:before {
  content: none;
}
html .l-implant .l-implant_inner {
  padding-top: 8.1vw;
}
html .l-implant .l-implant_inner h2 {
  font-size: min(4.1vw, 8rem);
  padding-bottom: 3.5vw;
}
html .l-implant .l-implant_inner p {
  font-size: min(1.09vw, 2.1rem);
  padding-bottom: 3.6vw;
}
html .l-implant .l-implant_inner small {
  display: block;
  font-size: min(0.67vw, 1.3rem);
  line-height: 2;
}
html .l-implant figure {
  margin-top: -4vw;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 767px) {
  html .l-implant:before {
    width: 10vw;
    z-index: 0;
  }
  html .l-implant:after {
    width: 10vw;
    z-index: 0;
  }
  html .l-implant .vertical {
    position: static;
    padding: 60px 0 0px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  html .l-implant .vertical span {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    text-align: left;
    font-size: 2rem;
    font-weight: 400;
    position: relative;
    color: var(--black);
  }
  html .l-implant .vertical span:before {
    content: "";
    width: 1px;
    height: 50px;
    background: var(--black);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
  }
  html .l-implant .vertical span ~ span {
    margin-top: 1em;
  }
  html .l-implant .l-implant_inner {
    position: relative;
    z-index: 1;
    padding: 40px 20px 0;
  }
  html .l-implant .l-implant_inner h2 {
    font-size: 6vw;
    padding-bottom: 20px;
  }
  html .l-implant .l-implant_inner p {
    font-size: 1.4rem;
    padding-bottom: 20px;
    text-align: justify;
  }
  html .l-implant .l-implant_inner small {
    display: block;
    font-size: 1rem;
    text-align: justify;
    line-height: 1.5;
  }
  html .l-implant figure {
    margin-top: -20px;
    mix-blend-mode: multiply;
  }
}
html .l-flow-invisalign {
  padding-left: 5.2vw;
  padding-bottom: 5.2vw;
  background: #f7f8f8;
}
html .l-flow-invisalign .l-flow-invisalign_box .toggle {
  background-image: -moz-linear-gradient(0deg, #aa870f 0%, #ead17b 50%, #aa870f 100%);
  background-image: -webkit-linear-gradient(0deg, #aa870f 0%, #ead17b 50%, #aa870f 100%);
  background-image: -ms-linear-gradient(0deg, #aa870f 0%, #ead17b 50%, #aa870f 100%);
  font-size: min(2.2vw, 4.3rem);
  color: #fff;
  padding: 1.3vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  transition: all 0.2s ease;
}
html .l-flow-invisalign .l-flow-invisalign_box .toggle .icon-toggle {
  transition: all 0.2s ease;
  font-size: min(1vw, 2rem);
  transform: rotate(180deg);
}
html .l-flow-invisalign .l-flow-invisalign_box .toggle.on .icon-toggle {
  transform: rotate(0deg);
}
html .l-flow-invisalign .l-flow-invisalign_box .toggle:hover {
  filter: brightness(110%);
}
html .l-flow-invisalign .l-flow-invisalign_box .inner {
  display: none;
  padding: 4.4vw 3.6vw;
  background: #fff;
}
html .l-flow-invisalign .l-flow-invisalign_box .inner ul {
  display: flex;
  justify-content: center;
}
html .l-flow-invisalign .l-flow-invisalign_box .inner ul li {
  width: 18.75vw;
  max-width: 360px;
}
html .l-flow-invisalign .l-flow-invisalign_box .inner ul li.arrow {
  width: 4.3vw;
  height: 18.75vw;
  max-height: 360px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(2vw, 4rem);
  color: var(--blue);
}
html .l-flow-invisalign .l-flow-invisalign_box .inner ul figure {
  width: 18.75vw;
  max-width: 360px;
  position: relative;
}
html .l-flow-invisalign .l-flow-invisalign_box .inner ul figure img {
  width: 100%;
  border-radius: 50%;
  border: 2px solid var(--blue);
  box-sizing: border-box;
}
html .l-flow-invisalign .l-flow-invisalign_box .inner ul figure figcaption {
  position: absolute;
  right: 0;
  top: 0;
  width: 5.2vw;
  max-width: 100px;
  height: 5.2vw;
  max-height: 100px;
  background: var(--blue);
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
html .l-flow-invisalign .l-flow-invisalign_box .inner ul figure figcaption small {
  display: block;
  line-height: 1;
  font-size: min(0.7vw, 1.4rem);
}
html .l-flow-invisalign .l-flow-invisalign_box .inner ul figure figcaption em {
  display: block;
  line-height: 1;
  font-size: min(1.9vw, 3.7rem);
}
html .l-flow-invisalign .l-flow-invisalign_box .inner ul p {
  padding-top: 1vw;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  html .l-flow-invisalign {
    padding: 0 20px;
  }
  html .l-flow-invisalign .l-flow-invisalign_box .toggle {
    font-size: 4vw;
    padding: 10px;
    gap: 8px;
    letter-spacing: 0;
  }
  html .l-flow-invisalign .l-flow-invisalign_box .toggle .icon-toggle {
    font-size: 0.65rem;
  }
  html .l-flow-invisalign .l-flow-invisalign_box .inner {
    padding: 30px 15px;
  }
  html .l-flow-invisalign .l-flow-invisalign_box .inner ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  html .l-flow-invisalign .l-flow-invisalign_box .inner ul li {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  html .l-flow-invisalign .l-flow-invisalign_box .inner ul li.arrow {
    width: 100%;
    height: auto;
    max-height: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    transform: rotate(90deg);
  }
  html .l-flow-invisalign .l-flow-invisalign_box .inner ul figure {
    flex-shrink: 0;
    width: 130px;
    max-width: 130px;
    position: relative;
    margin: 0 auto;
  }
  html .l-flow-invisalign .l-flow-invisalign_box .inner ul figure img {
    width: 100%;
    border-radius: 50%;
    border: 1px solid var(--blue);
  }
  html .l-flow-invisalign .l-flow-invisalign_box .inner ul figure figcaption {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 35px;
    max-width: 35px;
    height: 35px;
    max-height: 35px;
  }
  html .l-flow-invisalign .l-flow-invisalign_box .inner ul figure figcaption small {
    display: block;
    line-height: 1;
    font-size: 0.6rem;
  }
  html .l-flow-invisalign .l-flow-invisalign_box .inner ul figure figcaption em {
    padding-top: 2px;
    display: block;
    text-align: center;
    font-size: 1.1rem;
  }
  html .l-flow-invisalign .l-flow-invisalign_box .inner ul p {
    padding-top: 0;
    font-size: 1.4rem;
  }
}
html .l-flow {
  background: url("../images/flow_bg.webp") no-repeat center top;
  background-size: cover;
  position: relative;
  padding-top: 5.2vw;
}
html .l-flow:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/dot.webp") repeat 0 0;
  background-size: 50px 50px;
  opacity: 0.1;
}
html .l-flow .l-flow_inner {
  display: flex;
  flex-direction: column;
  gap: 5.2vw;
  padding: 0 5.2vw 5.2vw;
}
html .l-flow .l-flow_inner .item {
  max-width: 1720px;
  width: 100%;
  margin: 0 auto;
  padding: min(5.2vw, 100px);
  box-sizing: border-box;
  background: #fff;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  position: relative;
  z-index: 1;
  gap: 2.6vw;
  position: relative;
}
html .l-flow .l-flow_inner .item:before {
  content: "";
  position: absolute;
  left: min(5.2vw, 100px);
  top: 0;
  width: 0.2vw;
  height: calc(100% + 5.2vw);
  background: #d1ac58;
  transform: translateX(min(2.85vw, 55px));
}
html .l-flow .l-flow_inner .item .num {
  flex-shrink: 0;
  width: min(5.7vw, 110px);
  height: min(5.7vw, 110px);
  border-radius: 50%;
  background-image: -moz-linear-gradient(0deg, #c59735 0%, #dfc57b 100%);
  background-image: -webkit-linear-gradient(0deg, #c59735 0%, #dfc57b 100%);
  background-image: -ms-linear-gradient(0deg, #c59735 0%, #dfc57b 100%);
  position: relative;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
html .l-flow .l-flow_inner .item .num:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px dashed #fff;
  box-sizing: border-box;
  border-radius: 50%;
}
html .l-flow .l-flow_inner .item .num:after {
  position: absolute;
  z-index: -1;
  content: "";
  right: 50%;
  top: 10%;
  height: 80%;
  width: calc(min(5.2vw, 100px) + min(2.85vw, 55px));
  background: #d6cf94;
}
html .l-flow .l-flow_inner .item .num small {
  display: block;
  text-align: center;
  line-height: 1;
  font-size: min(0.8vw, 1.6rem);
}
html .l-flow .l-flow_inner .item .num em {
  display: block;
  text-align: center;
  line-height: 1;
  font-size: min(2.2vw, 4.2rem);
}
html .l-flow .l-flow_inner .item .text h3 {
  font-size: min(2vw, 3.9rem);
  font-weight: 500;
  color: var(--brown);
  line-height: min(5.7vw, 110px);
}
html .l-flow .l-flow_inner .item figure {
  width: 38%;
  flex-shrink: 0;
}
html .l-flow .l-flow_inner .item figure img {
  object-fit: cover;
  object-position: bottom;
  width: 100%;
  height: 21.7vw;
  max-height: 417px;
}
html .l-flow .l-flow_inner .item:nth-child(1):before {
  top: 5.2vw;
}
html .l-flow .l-flow_inner .item:last-child:before {
  height: 5.2vw;
}
@media screen and (max-width: 767px) {
  html .l-flow {
    padding-top: 40px;
  }
  html .l-flow .l-flow_inner {
    gap: 40px;
    padding: 0 20px 20px;
  }
  html .l-flow .l-flow_inner .item {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 15px;
    box-sizing: border-box;
    background: #fff;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
  }
  html .l-flow .l-flow_inner .item:before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    width: 1px;
    height: calc(100% + 40px);
    background: #d1ac58;
    transform: none;
  }
  html .l-flow .l-flow_inner .item .num {
    width: 50px;
    height: 50px;
    margin-left: -10px;
  }
  html .l-flow .l-flow_inner .item .num:before {
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
  }
  html .l-flow .l-flow_inner .item .num:after {
    right: 50%;
    top: 10%;
    height: 80%;
    width: 60px;
  }
  html .l-flow .l-flow_inner .item .num small {
    font-size: 1rem;
  }
  html .l-flow .l-flow_inner .item .num em {
    font-size: 2rem;
  }
  html .l-flow .l-flow_inner .item .text {
    width: calc(100% - 50px);
  }
  html .l-flow .l-flow_inner .item .text h3 {
    font-size: 5vw;
    line-height: 50px;
  }
  html .l-flow .l-flow_inner .item figure {
    width: calc(100% - 50px);
    margin-left: 50px;
    flex-shrink: 0;
  }
  html .l-flow .l-flow_inner .item figure img {
    object-fit: initial;
    width: 100%;
    height: auto;
    max-height: 417px;
  }
  html .l-flow .l-flow_inner .item:nth-child(1):before {
    top: 20px;
  }
  html .l-flow .l-flow_inner .item:last-child:before {
    height: 20px;
  }
}
html .l-case {
  background: #f9f9f9 url("../images/case_bg.webp") no-repeat center top;
  background-size: 100% auto;
  padding: 5.2vw 10.4vw;
}
html .l-case .l-head-text {
  color: var(--brown);
}
html .l-case .l-case_item {
  max-width: 1520px;
  width: 100%;
  margin: 0 auto min(7.5vw, 145px);
}
html .l-case .l-case_item h3 {
  font-size: min(4rem, 2vw);
  padding-bottom: min(1.6vw, 32px);
  border-bottom: 2px solid var(--brown);
  margin-bottom: min(3.125vw, 60px);
}
html .l-case .l-case_item .case_images {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html .l-case .l-case_item .case_images figure {
  width: 46%;
  position: relative;
}
html .l-case .l-case_item .case_images figure figcaption {
  padding-top: 10px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  text-align: center;
  color: var(--brown);
  font-size: min(1.5vw, 3rem);
}
html .l-case .l-case_item .case_images .icon-case_arrow {
  font-size: min(3.6vw, 7rem);
  color: #dabb6e;
}
html .l-case .l-case_item table {
  table-layout: fixed;
  width: 100%;
  margin-top: min(5.6vw, 110px);
  border-collapse: separate;
  border-spacing: 5px;
}
html .l-case .l-case_item table tr th {
  color: var(--brown);
  font-weight: 500;
  background: #dedede;
  padding: min(2.3vw, 44px);
  font-size: min(1.25vw, 2.4rem);
}
html .l-case .l-case_item table tr td {
  color: var(--brown);
  background: #fff;
  padding: min(2.3vw, 44px);
  text-align: center;
  vertical-align: middle;
  font-family: var(--Gothic);
  font-size: min(1.2vw, 2.3rem);
}
html .l-case .l-case_item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  html .l-case {
    padding: 40px 20px;
  }
  html .l-case .l-case_item {
    max-width: 100%;
    width: 100%;
    margin: 0 0 40px;
  }
  html .l-case .l-case_item h3 {
    font-size: 4vw;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--brown);
    margin-bottom: 20px;
  }
  html .l-case .l-case_item .case_images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 30px;
  }
  html .l-case .l-case_item .case_images figure {
    width: 100%;
    position: relative;
  }
  html .l-case .l-case_item .case_images figure figcaption {
    top: -30px;
    text-align: left;
    padding-top: 0px;
    font-size: 1.5rem;
  }
  html .l-case .l-case_item .case_images .icon-case_arrow {
    display: block;
    padding: 0;
    font-size: 3.5rem;
    line-height: 1;
    transform: rotate(90deg);
  }
  html .l-case .l-case_item table {
    margin-top: 20px;
    border-spacing: 2px;
  }
  html .l-case .l-case_item table tr th {
    padding: 5px;
    font-size: 1.2rem;
  }
  html .l-case .l-case_item table tr td {
    padding: 5px;
    font-size: 1.2rem;
  }
}
html .l-qa {
  padding: 10.4vw 10.4vw 34vw;
  position: relative;
  background: #f2f2f2 url("../images/qa_bg.webp") no-repeat center bottom;
  background-size: 100% auto;
}
html .l-qa:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
}
html .l-qa .l-head-text {
  color: var(--brown);
}
html .l-qa .l-qa_inner {
  width: 100%;
  max-width: 1520px;
  margin: 0 auto;
}
html .l-qa .l-qa_inner .qa-box {
  padding-bottom: min(4.4vw, 85px);
}
html .l-qa .l-qa_inner .qa-box h3 {
  padding: min(1.9vw, 37px) min(2.5vw, 48px);
  background-image: -moz-linear-gradient(0deg, #aa870f 0%, #ead17b 50%, #aa870f 100%);
  background-image: -webkit-linear-gradient(0deg, #aa870f 0%, #ead17b 50%, #aa870f 100%);
  background-image: -ms-linear-gradient(0deg, #aa870f 0%, #ead17b 50%, #aa870f 100%);
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  position: relative;
  transition: all 0.2s ease;
}
html .l-qa .l-qa_inner .qa-box h3 span {
  font-size: min(2.8vw, 5.5rem);
}
html .l-qa .l-qa_inner .qa-box h3 em {
  font-size: min(1.8vw, 3.3rem);
}
html .l-qa .l-qa_inner .qa-box h3 .icon-toggle {
  position: absolute;
  right: 40px;
  top: 50%;
  font-size: 1.6rem;
  transform: translateY(-50%) rotate(180deg);
  transition: all 0.2s ease;
}
html .l-qa .l-qa_inner .qa-box h3:hover {
  filter: brightness(110%);
}
html .l-qa .l-qa_inner .qa-box h3.on .icon-toggle {
  transform: translateY(-50%) rotate(0deg);
}
html .l-qa .l-qa_inner .qa-box .inner {
  background: #fff;
  border: 2px solid #ad8a17;
  border-top: 0;
  display: none;
  gap: 30px;
  position: relative;
}
html .l-qa .l-qa_inner .qa-box .inner span {
  float: left;
  padding: min(2.5vw, 48px);
  padding-right: 0;
  font-size: min(2.8vw, 5.5rem);
  color: var(--gold);
  display: block;
  line-height: 1;
}
html .l-qa .l-qa_inner .qa-box .inner .text {
  padding: min(2.5vw, 48px) min(2.5vw, 48px) min(2.5vw, 48px) calc(30px + min(5vw, 96px));
  font-size: min(1vw, 2rem);
}
@media screen and (max-width: 767px) {
  html .l-qa {
    padding: 20px 20px 0;
    position: relative;
    background: #f2f2f2 url("../images/qa_bg.webp") no-repeat center bottom;
    background-size: 100% auto;
  }
  html .l-qa .l-qa_inner {
    width: 100%;
    max-width: 100%;
  }
  html .l-qa .l-qa_inner .qa-box {
    padding-bottom: 20px;
  }
  html .l-qa .l-qa_inner .qa-box h3 {
    padding: 10px 30px 10px 10px;
    gap: 10px;
    position: relative;
  }
  html .l-qa .l-qa_inner .qa-box h3 span {
    font-size: 2rem;
  }
  html .l-qa .l-qa_inner .qa-box h3 em {
    font-size: 1.5rem;
  }
  html .l-qa .l-qa_inner .qa-box h3 .icon-toggle {
    position: absolute;
    right: 10px;
    font-size: 0.6rem;
  }
  html .l-qa .l-qa_inner .qa-box .inner {
    gap: 10px;
    position: relative;
  }
  html .l-qa .l-qa_inner .qa-box .inner span {
    padding: 16px 10px;
    font-size: 2rem;
  }
  html .l-qa .l-qa_inner .qa-box .inner .text {
    padding: 10px 10px 10px 38px;
    font-size: 1.5rem;
  }
}
html .l-price {
  background: #f2f2f2;
  padding: 0 5.2vw;
  margin-top: -32vw;
}
html .l-price .inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 7.8vw 5.2vw 5.2vw;
  max-width: 1720px;
  box-sizing: border-box;
  margin: 0 auto;
  background: #fff;
}
html .l-price .inner .price_table {
  table-layout: fixed;
  width: 100%;
  margin-bottom: 7vw;
}
html .l-price .inner .price_table thead tr th {
  background: var(--black);
  color: #fff;
  font-weight: 400;
  padding: min(1vw, 20px);
  border: 1px solid var(--black);
}
html .l-price .inner .price_table tbody tr th,
html .l-price .inner .price_table tbody tr td {
  padding: min(1.7vw, 30px);
  font-family: var(--Gothic);
  border: 1px solid var(--black);
  box-sizing: border-box;
  text-align: center;
  vertical-align: middle;
}
html .l-price .inner .price_table tbody tr th {
  font-weight: normal;
}
html .l-price .inner .price_table tbody .total th, html .l-price .inner .price_table tbody .total td {
  font-weight: bold;
  font-size: 1.1em;
  background: #f1f1f1;
}
html .l-price .inner .price_table.guarantee {
  width: 48.4375vw;
  margin: 5.2vw auto 0;
}
html .l-price .inner .price_table.guarantee thead tr th:nth-child(2) {
  background: #152948;
}
html .l-price .inner .price_table.guarantee tbody tr td {
  background: #fff;
  font-weight: 500;
}
html .l-price .inner .payment_ttl {
  margin-top: min(180px, 9.3vw);
  font-size: min(3vw, 5.7rem);
  text-align: center;
  padding-bottom: min(3.6vw, 70px);
}
html .l-price .inner .payment_ttl + p {
  text-align: center;
}
html .l-price .inner .payment_box {
  padding-top: min(3.6vw, 70px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
html .l-price .inner .payment_box li {
  width: min(16.4vw, 315px);
  height: min(16.9vw, 325px);
  background: #faf7f5;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
html .l-price .inner .payment_box li .icon-payment01 {
  font-size: min(4.5vw, 9rem);
}
html .l-price .inner .payment_box li .icon-payment02 {
  font-size: min(4.5vw, 9rem);
}
html .l-price .inner .payment_box li .icon-payment03 {
  font-size: min(4.5vw, 9rem);
}
html .l-price .inner .payment_box li p {
  line-height: 1;
  padding-top: 1vw;
  font-size: min(1.4vw, 2.7rem);
  font-family: var(--Mincho);
}
html .l-price .inner .price_text {
  margin-top: min(180px, 9.3vw);
  background: #faf7f5;
  padding: 5.2vw;
  position: relative;
}
html .l-price .inner .price_text h4 {
  position: absolute;
  left: 0;
  top: -0.5em;
  width: 100%;
  line-height: 1;
  font-size: min(3vw, 5.7rem);
  text-align: center;
}
html .l-price .inner .price_text p {
  text-align: center;
}
html .l-price .inner .price_text .deduction_foumula {
  background: var(--black);
  text-align: center;
  color: #fff;
  font-family: var(--Gothic);
  margin: 2em 0;
  padding: 2.3vw 0;
  font-size: min(1.3vw, 2.4rem);
}
html .l-price .inner .price_text small {
  display: block;
  text-align: center;
  font-size: min(1.6rem, 0.8vw);
}
@media screen and (max-width: 767px) {
  html .l-price {
    padding: 0 20px;
    margin-top: 0;
  }
  html .l-price .inner {
    width: 100%;
    padding: 20px;
    max-width: 100%;
  }
  html .l-price .inner .price_table {
    table-layout: fixed;
    width: 100%;
  }
  html .l-price .inner .price_table.guarantee {
    width: 100%;
    margin: 20px auto 0;
  }
  html .l-price .inner .price_table.guarantee tbody tr td {
    text-align: center;
  }
  html .l-price .inner .price_table thead tr th {
    padding: 5px;
    font-size: 1.2rem;
  }
  html .l-price .inner .price_table tbody tr th,
html .l-price .inner .price_table tbody tr td {
    padding: 10px;
    font-weight: 500;
    font-size: 1.2rem;
    text-align: left;
  }
  html .l-price .inner .price_table tbody .total th, html .l-price .inner .price_table tbody .total td {
    font-weight: bold;
    font-size: 1.2rem;
    background: #f1f1f1;
  }
  html .l-price .inner .payment_ttl {
    margin-top: 30px;
    font-size: 2rem;
    text-align: center;
    padding-bottom: 20px;
  }
  html .l-price .inner .payment_ttl + p {
    text-align: left;
  }
  html .l-price .inner .payment_box {
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  html .l-price .inner .payment_box li {
    width: calc((100% - 10px) / 3);
    height: auto;
    padding: 40px 0 25px;
  }
  html .l-price .inner .payment_box li .icon-payment01 {
    font-size: 4rem;
  }
  html .l-price .inner .payment_box li .icon-payment02 {
    font-size: 4rem;
  }
  html .l-price .inner .payment_box li .icon-payment03 {
    font-size: 4rem;
  }
  html .l-price .inner .payment_box li p {
    padding-top: 10px;
    font-size: 2.8vw;
  }
  html .l-price .inner .price_text {
    margin-top: 40px;
    padding: 30px 20px 20px;
  }
  html .l-price .inner .price_text h4 {
    top: -0.5em;
    font-size: 2rem;
    font-weight: 500;
  }
  html .l-price .inner .price_text p {
    text-align: justify;
  }
  html .l-price .inner .price_text .deduction_foumula {
    margin: 1em 0;
    padding: 10px;
    font-size: 1.4rem;
    text-align: left;
  }
  html .l-price .inner .price_text small {
    font-size: 1.2rem;
  }
}
html .l-doctor {
  background: url("../images/br_bg.webp") no-repeat top center;
  background-size: cover;
  padding: 10.4vw 5.2vw;
  color: #fff;
  margin-top: -5.2vw;
}
html .l-doctor .doctor_item {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  gap: 5.2vw;
}
html .l-doctor .doctor_item figure {
  flex-shrink: 0;
  width: 30%;
}
html .l-doctor .doctor_item figure img {
  width: 100%;
}
html .l-doctor .doctor_item .text h3 {
  font-size: min(2vw, 3.9rem);
  padding-bottom: 1.5em;
  line-height: 1.65;
}
html .l-doctor .doctor_item .text p ~ h3 {
  margin-top: 2em;
}
html .l-doctor .doctor_item .text .name {
  padding-top: 2em;
}
html .l-doctor .doctor_item .text .name span {
  display: block;
  line-height: 1;
  font-size: min(1.3vw, 2.5rem);
}
html .l-doctor .doctor_item .text .name em {
  margin-top: min(2.3vw, 44px);
  position: relative;
  display: block;
  font-size: min(1.7vw, 3.4rem);
  width: fit-content;
}
html .l-doctor .doctor_item .text .name em small {
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: -1em;
  width: 100%;
  font-size: min(0.7vw, 1.5rem);
  letter-spacing: 0.5em;
}
html .l-doctor .doctor_item ~ .doctor_item {
  margin-top: 7.8vw;
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  html .l-doctor {
    padding: 60px 20px 20px;
    margin-top: -5.2vw;
  }
  html .l-doctor .doctor_item {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  html .l-doctor .doctor_item figure {
    flex-shrink: 0;
    width: 60%;
    margin: 0 auto;
  }
  html .l-doctor .doctor_item figure img {
    width: 100%;
  }
  html .l-doctor .doctor_item .text h3 {
    font-size: 2rem;
    padding-bottom: 1.25em;
    line-height: 1.65;
  }
  html .l-doctor .doctor_item .text .name {
    padding-top: 1em;
    text-align: right;
  }
  html .l-doctor .doctor_item .text .name span {
    font-size: 1.1rem;
  }
  html .l-doctor .doctor_item .text .name em {
    margin-top: 22px;
    position: relative;
    display: block;
    font-size: 1.8rem;
    width: 100%;
  }
  html .l-doctor .doctor_item .text .name em small {
    position: absolute;
    left: 0;
    top: -1.2em;
    width: 100%;
    font-size: 1rem;
    letter-spacing: 0.25em;
  }
  html .l-doctor .doctor_item ~ .doctor_item {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
  }
}
html .l-loop {
  overflow: hidden;
  /* === PC値（デフォルト） === */
  --imgW: 10387px;
  --overlap: 187px;
  --h: 400px;
  /* 1周の移動距離：画像幅 - 重ね */
  --step: calc(var(--imgW) - var(--overlap));
}
html .l-loop figure {
  display: flex;
  width: max-content;
  align-items: center;
  will-change: transform;
  animation: scroll-left 160s linear infinite;
}
html .l-loop picture {
  flex: 0 0 auto;
  display: block;
  width: var(--imgW);
}
html .l-loop picture img {
  display: block;
  width: 100%;
  max-width: none;
  height: var(--h);
  object-fit: cover;
  /* 必要なら */
}
html .l-loop picture ~ picture {
  margin-left: calc(-1 * var(--overlap));
}
@keyframes scroll-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--step)), 0, 0);
  }
}
@media screen and (max-width: 767px) {
  html .l-loop {
    --imgW: 3896px;
    --overlap: 71px;
    --h: 150px;
    /* ここだけSP用に */
  }
}
html footer {
  text-align: center;
  padding: 10.4vw 0 0;
}
html footer address {
  margin-top: 2.6vw;
  font-family: var(--Gothic);
}
html footer .tel .icon-tel {
  position: relative;
  top: -0.2vw;
  font-size: min(2vw, 3.5rem);
}
html footer .tel span {
  font-size: min(2.86vw, 5.5rem);
}
html footer .time {
  width: 900px;
  max-width: 100%;
  margin: 2.6vw auto 5.2vw;
  font-size: min(1vw, 1.9rem);
  font-family: var(--Gothic);
}
html footer .time thead tr th {
  padding: 1.17vw;
  border-bottom: 2px solid var(--black);
}
html footer .time tbody tr th,
html footer .time tbody tr td {
  padding: 1.5vw 0;
  border-bottom: 1px solid var(--black);
}
html footer .time tfoot tr td {
  padding-top: 1em;
}
html footer .site_banner {
  display: inline-block;
  margin-bottom: 10.4vw;
}
html footer .googlemap {
  width: 100%;
  height: 26vw;
  position: relative;
}
html footer .googlemap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
html footer .copy {
  background: var(--blue);
  color: #fff;
  font-size: min(0.6vw, 1.3rem);
  padding: 1vw;
}
@media screen and (max-width: 767px) {
  html footer {
    text-align: center;
    padding: 0;
  }
  html footer .footer_inner {
    padding: 40px 20px;
  }
  html footer .f-logo {
    width: 60%;
    margin: 0 auto;
  }
  html footer address {
    margin-top: 10px;
    font-size: 1.4rem;
  }
  html footer .tel {
    gap: 5px;
  }
  html footer .tel .icon-tel {
    position: relative;
    top: -2px;
    font-size: 2.2rem;
  }
  html footer .tel span {
    font-size: 3rem;
  }
  html footer .time {
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    font-size: 1.1rem;
  }
  html footer .time thead tr th {
    padding: 8px;
    font-weight: 500;
    border-bottom: 2px solid var(--black);
  }
  html footer .time tbody tr th,
html footer .time tbody tr td {
    padding: 17px 0;
  }
  html footer .time tfoot tr td {
    padding-top: 1em;
  }
  html footer .googlemap {
    width: 100%;
    height: 50vw;
  }
  html footer .copy {
    font-size: 1rem;
    padding: 5px;
  }
}
html #fixed_footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
html #fixed_footer a {
  width: 30%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 1.5rem;
}
html #fixed_footer a.p-btn__rsv {
  background: var(--green);
}
html #fixed_footer a.p-btn__site {
  background: var(--blue);
}
html #fixed_footer #up {
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #30C1C8;
  font-size: 2rem;
}
html .l-about {
  background: url("../images/about_bg.webp") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 54.4vw;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
html .l-about .en {
  position: absolute;
  left: 4.16vw;
  top: 4.16vw;
  font-size: 10.4vw;
  color: #fff;
  font-family: var(--Cinzel);
  opacity: 0.4;
  line-height: 1;
  font-weight: 400;
}
html .l-about .text {
  position: relative;
  z-index: 1;
  width: 60%;
  margin-left: auto;
  padding-right: 6vw;
  box-sizing: border-box;
  text-align: center;
}
html .l-about .text h2 {
  font-size: 4vw;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  padding-bottom: 6vw;
}
html .l-about .text h3 {
  padding-bottom: 5vw;
  font-weight: 600;
}
html .l-about .text h3 span {
  font-size: 2vw;
  line-height: 2.1;
  margin: 0 auto;
  border-bottom: 1px solid #1a1512;
}
html .l-about .text p {
  font-size: var(--p-size);
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  html .l-about {
    background: #D3DCE8 url("../images/about_bg.webp") no-repeat center bottom;
    background-size: 100% auto;
    width: 100%;
    height: auto;
    display: block;
    text-align: center;
    padding-bottom: 30vw;
  }
  html .l-about .en {
    position: absolute;
    left: 0;
    top: 20px;
    width: 100%;
    text-align: center;
    font-size: 5rem;
  }
  html .l-about .text {
    position: static;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 100px 20px 20px;
    box-sizing: border-box;
  }
  html .l-about .text h2 {
    font-size: 2rem;
    padding-bottom: 20px;
  }
  html .l-about .text h3 {
    padding-bottom: 20px;
  }
  html .l-about .text h3 span {
    font-size: 1.6rem;
  }
  html .l-about .text p {
    font-size: var(--p-size);
    line-height: 2.2;
    text-align: left;
  }
}
html .l-merit {
  padding-top: 8.2vw;
  background: #f2f2f2;
}
html .l-merit .l-merit_inner {
  width: 100%;
  padding: 0 9.27vw 7.7vw;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5.2vw 2.5vw;
}
html .l-merit .l-merit_inner .item {
  width: calc((100% - 5vw) / 3);
  background: #fff;
}
html .l-merit .l-merit_inner .item figure {
  position: relative;
}
html .l-merit .l-merit_inner .item figure img {
  width: 100%;
}
html .l-merit .l-merit_inner .item figure figcaption {
  position: absolute;
  left: -1.6vw;
  top: -2vw;
  font-family: var(--Cinzel);
  font-weight: 400;
  font-size: 6.25vw;
  line-height: 1;
}
html .l-merit .l-merit_inner .item .text {
  padding: 2.3vw 1.7vw 1.7vw;
}
html .l-merit .l-merit_inner .item .text h3 {
  text-align: center;
  font-size: 1.45vw;
  padding-bottom: 1.7vw;
  margin-bottom: 1.7vw;
  border-bottom: 1px solid #868686;
}
html .l-merit .l-merit_inner .item .text p {
  font-size: var(--p-size);
}
@media screen and (max-width: 767px) {
  html .l-merit {
    padding: 40px 20px 0;
    background: #f2f2f2;
  }
  html .l-merit .l-merit_inner {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px 10px;
  }
  html .l-merit .l-merit_inner .item {
    width: 100%;
  }
  html .l-merit .l-merit_inner .item figure figcaption {
    position: absolute;
    left: 10px;
    top: -10px;
    font-size: 5rem;
  }
  html .l-merit .l-merit_inner .item .text {
    padding: 10px;
  }
  html .l-merit .l-merit_inner .item .text h3 {
    text-align: center;
    font-size: 1.7rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #868686;
  }
  html .l-merit .l-merit_inner .item .text p {
    font-size: var(--p-size);
    line-height: 1.8;
  }
}
html .l-diff {
  background: url("../images/diff_bg.webp") no-repeat top center;
  background-size: cover;
  text-align: center;
  padding-top: 8.723vw;
  padding-bottom: 8.6vw;
}
html .l-diff .l-diff-ttl h2 {
  font-size: 4.16vw;
}
html .l-diff .l-diff-ttl h3 {
  padding: 6.7vw 0 4.16vw;
  font-size: 2.03vw;
}
html .l-diff .l-diff-ttl h3 span {
  border-bottom: 2px solid #000;
}
html .l-diff .l-diff-ttl p {
  width: 54.24vw;
  margin: 0 auto 4.6vw;
  text-align: left;
  font-size: var(--p-size);
}
html .l-diff .table_wrap {
  width: 86vw;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0px 0.52vw 1.77vw 0px rgba(0, 12, 25, 0.25);
}
html .l-diff .table_wrap dl {
  display: flex;
  justify-content: flex-start;
  gap: 0 0.625vw;
  border-bottom: 1px solid #aaaaaa;
}
html .l-diff .table_wrap dl dt {
  width: 14vw;
  background: #202f55;
  color: #fff;
  font-size: 1.35vw;
  line-height: 1.5;
  font-family: var(--Mincho);
  display: flex;
  justify-content: center;
  align-items: center;
}
html .l-diff .table_wrap dl dd {
  width: calc((100% - 16.5vw) / 4);
}
html .l-diff .table_wrap dl dd em {
  width: 100%;
  height: 2.6vw;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.3vw;
  font-family: var(--Mincho);
  background: #555961;
}
html .l-diff .table_wrap dl dd em.gold {
  background-image: -moz-linear-gradient(0deg, #aa870f 0%, #ead17b 100%);
  background-image: -webkit-linear-gradient(0deg, #aa870f 0%, #ead17b 100%);
  background-image: -ms-linear-gradient(0deg, #aa870f 0%, #ead17b 100%);
}
html .l-diff .table_wrap dl dd figure img {
  width: 100%;
}
html .l-diff .table_wrap .text dt {
  height: 6.7vw;
}
html .l-diff .table_wrap .text dd {
  background: #f2f2f2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.96vw;
  padding-left: 1.3vw;
  box-sizing: border-box;
}
html .l-diff .table_wrap .text dd span {
  font-family: var(--Gothic);
  font-size: 2.6vw;
  font-weight: 600;
}
html .l-diff .table_wrap .text dd span.cross {
  font-family: var(--Mincho);
}
html .l-diff .table_wrap .text dd p {
  text-align: left;
  line-height: 1.5;
  font-size: var(--p-size);
}
html .l-diff .table_wrap .text dd ~ dd {
  background: #e3e3e3;
}
html .l-diff .table_wrap .text .center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
@media screen and (max-width: 767px) {
  html .l-diff {
    text-align: center;
    padding: 0 0 40px 20px;
  }
  html .l-diff .l-diff-ttl {
    padding: 40px 20px 40px 0;
  }
  html .l-diff .l-diff-ttl h2 {
    font-size: 2rem;
  }
  html .l-diff .l-diff-ttl h3 {
    padding: 20px 0;
    line-height: 1.8;
    font-size: 1.8rem;
  }
  html .l-diff .l-diff-ttl h3 span {
    border-bottom: 1px solid #000;
  }
  html .l-diff .l-diff-ttl p {
    width: 100%;
    margin: 0 auto;
    text-align: left;
    font-size: var(--p-size);
  }
  html .l-diff .table_wrap {
    width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    margin: 0;
    background: #fff;
    box-shadow: 0px 0.52vw 1.77vw 0px rgba(0, 12, 25, 0.25);
  }
  html .l-diff .table_wrap dl {
    display: flex;
    justify-content: flex-start;
    gap: 0 4px;
    border-bottom: 0;
  }
  html .l-diff .table_wrap dl dt {
    flex-shrink: 0;
    width: 100px;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #aaaaaa;
  }
  html .l-diff .table_wrap dl dd {
    flex-shrink: 0;
    width: 140px;
  }
  html .l-diff .table_wrap dl dd em {
    width: 100%;
    height: auto;
    padding: 2px 0;
    font-size: 1.3rem;
  }
  html .l-diff .table_wrap .text dt {
    height: auto;
  }
  html .l-diff .table_wrap .text dd {
    background: #f2f2f2;
    padding: 5px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #aaaaaa;
  }
  html .l-diff .table_wrap .text dd span {
    font-size: 2rem;
    display: block;
    line-height: 1;
  }
  html .l-diff .table_wrap .text dd p {
    text-align: center;
    line-height: 1.35;
    font-size: 1.3rem;
  }
  html .l-diff .table_wrap .text .center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
}

/*# sourceMappingURL=common.css.map */
