@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .hidden-tb {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .hidden-pc {
    display: none !important;
  }
}

/* ========================================
   body
   ======================================== */

html {
  --site-header-height: 48px;
  /* --page-max-width: 1920px; */
  --page-scale: calc(min(100%, var(--page-max-width)) / 720);
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--site-header-height) * var(--page-scale, 1));
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  font-family:
    "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo,
    sans-serif;
  font-size: 16px;
  line-height: normal;
  color: #333;
  background-color: #fff;
}

.page-scale {
  flex-shrink: 0;
  width: min(100%, var(--page-max-width));
  /* max-width: var(--page-max-width);
  margin-inline: auto;
  overflow: hidden; */
}

.page-scale__inner {
  width: 720px;
  margin: 0;
  transform: scale(var(--page-scale, 1));
  transform-origin: top left;
}
@media (max-width: 768px) {
  .page-scale__inner {
    width: auto;
    transform: none;
  }
}
/* ========================================
   ヘッダー
   ======================================== */

.site-header {
  position: fixed;
  top: 0;
  left: max(0px, calc((100% - min(100%, var(--page-max-width))) / 2));
  z-index: 100;
  width: 720px;
  transform: scale(var(--page-scale, 1));
  transform-origin: top left;
  background-color: #fff;
}

.site-header-spacer {
  height: var(--site-header-height);
}

.site-header__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  width: 720px;
  box-sizing: border-box;
  padding-block: 6px;
  padding-right: 3px;
  padding-left: 12px;
}

.site-header__logo {
  display: block;
  line-height: normal;
}

.site-header__logo-img {
  display: block;
  width: 150px;
  height: auto;
  object-fit: contain;
}

.site-header__nav {
  flex: 1;
  min-width: 0px;
}

.site-header__nav-list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  gap: 0px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0px;
  color: #97867d;
  transform: translate(0px, -3px);
}

.site-header__nav-item {
  position: relative;
  display: flex;
  flex: 1 1 0px;
  align-items: center;
  justify-content: center;
  min-width: 0px;
}

.site-header__nav-item:not(.site-header__nav-item--last)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  width: 1px;
  height: 10px;
  background-color: #ddd;
  transform: translate(0px, -50%);
}

.site-header__nav-item .site-header__nav-link {
  display: inline-block;
  color: inherit;
  padding-inline: 5px;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  transform: translate(0px, -1px);
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.site-header__nav-item--home .site-header__nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(0px, 0px);
}

.site-header__nav-item--flow .site-header__nav-link,
.site-header__nav-item--clinic .site-header__nav-link,
.site-header__nav-item--equipment .site-header__nav-link,
.site-header__nav-item--staff .site-header__nav-link,
.site-header__nav-item--treatment .site-header__nav-link,
.site-header__nav-item--price .site-header__nav-link,
.site-header__nav-item--recruit .site-header__nav-link,
.site-header__nav-item--blog .site-header__nav-link {
  transform: translate(-0.5px, -0.5px);
}

.site-header__nav-item--access .site-header__nav-link {
  transform: translate(1px, -1px);
}

.site-header__nav-home-icon {
  display: block;
  flex-shrink: 0;
  width: 10px;
  height: 11px;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.site-header__nav-item--staff .site-header__nav-link {
  white-space: nowrap;
  text-align: center;
  line-height: normal;
}

.site-header__nav-staff-director {
  display: inline-block;
  transform: translate(0px, 2px);
}

.site-header__nav-staff-members {
  display: inline-block;
  transform: translate(0px, -1px);
}

.site-header__nav-item .site-header__nav-link:hover {
  color: #aaa;
  transform: translate(0px, -1px) scale(1.02);
}

.site-header__nav-item--home .site-header__nav-link:hover {
  transform: translate(0px, 0px) scale(1.02);
}

.site-header__nav-item--flow .site-header__nav-link:hover,
.site-header__nav-item--clinic .site-header__nav-link:hover,
.site-header__nav-item--equipment .site-header__nav-link:hover,
.site-header__nav-item--staff .site-header__nav-link:hover,
.site-header__nav-item--treatment .site-header__nav-link:hover,
.site-header__nav-item--price .site-header__nav-link:hover,
.site-header__nav-item--recruit .site-header__nav-link:hover,
.site-header__nav-item--blog .site-header__nav-link:hover {
  transform: translate(-0.5px, -0.5px) scale(1.02);
}

.site-header__nav-item--access .site-header__nav-link:hover {
  transform: translate(1px, -1px) scale(1.02);
}

.site-header__nav-item--home .site-header__nav-link:hover .site-header__nav-home-icon {
  opacity: 0.65;
  transform: scale(1.02);
}

/* ========================================
   メインビジュアル（mv）
   ======================================== */

.mv {
  width: 720px;
  margin-inline: auto;
}

.mv__body {
  --mv-wave-bottom: 208px;
  position: relative;
  width: 720px;
  height: 208px;
}

.mv__bg {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 720px;
  height: var(--mv-wave-bottom);
  overflow: hidden;
  background-image: url("../images/mv/mv__bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 720px auto;
}

.mv__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  height: 201px;
  padding-top: 57px;
  padding-bottom: 75px;
  padding-left: 108px;
  text-align: left;
}

.mv__line {
  margin: 0px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: #316c81;
  letter-spacing: 0px;
}

.mv__wave {
  position: absolute;
  top: 157px;
  bottom: 0px;
  left: 0px;
  z-index: 10;
  width: 720px;
  height: 55px;
  background-color: #ffffff;
  mask: url("../images/mv/mv__wave-bg.png") top / 720px auto no-repeat;
  -webkit-mask: url("../images/mv/mv__wave-bg.png") top / 720px auto no-repeat;
}

/* ========================================
   MV下コンテンツ
   ======================================== */

.mv-below {
  width: 720px;
  margin-inline: auto;
  padding-top: 26px;
  padding-bottom: 40px;
  background-color: #ffffff;
}

.mv-below__icon {
  display: flex;
  justify-content: center;
}

.mv-below__icon-img {
  display: block;
  width: 31px;
  height: auto;
}

.mv-below__catch {
  margin-top: 10px;
  margin-bottom: 18px;
  text-align: center;
}

.mv-below__catch-line {
  margin: 0px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #316c81;
}

.mv-below__text {
  padding-left: 4px;
  margin-bottom: 38px;
  text-align: center;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 8px;
  font-weight: 500;
}

.mv-below__text-lead {
  margin-bottom: 16px;
  color: #60534d;
}

.mv-below__text-body {
  margin-bottom: 14.5px;
  line-height: 14.5px;
  color: #60534d;
}

.mv-below__text-line {
  display: block;
}

.mv-below__text-line--1 {
  transform: translate(2px, 0px);
}

.mv-menu {
  display: flex;
  gap: 20px;
  width: 720px;
  margin-inline: auto;
  padding-left: 146px;
}

.mv-menu__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 130px;
}

.mv-menu__col--2,
.mv-menu__col--3 {
  gap: 14.5px;
}

.mv-menu__col a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 1.5px;
  color: #3fa7d4;
  border-bottom: 1px solid #3fa7d4;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 9px;
  font-weight: 500;
  line-height: normal;
  transition:
    color 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease,
    border-color 0.2s ease;
}

.mv-menu__col a:hover {
  color: #aaa;
  border-bottom-color: #aaa;
  transform: translate(0px, -1px) scale(1.02);
}

.mv-menu__col a::before {
  content: "";
  flex-shrink: 0;
  width: 8.5px;
  height: 8.5px;
  background-color: currentColor;
  mask: url("../images/mv/mv__check.png") center / 8.5px 8.5px no-repeat;
  -webkit-mask: url("../images/mv/mv__check.png") center / 8.5px 8.5px
    no-repeat;
}

.mv-menu__item--2 a {
  padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .inner{
    margin-inline: 20px;
    margin-bottom: 20px;
  }
  .mv{
    margin-top: 30px;
    position: relative;
    width: 100%;
    font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  }

  .mv__inner{
    margin: 0 auto;
    position: relative;
  }

  .mv__img{
    height: 385px;
  }

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

  .mv__message{
    position: absolute;
    top: 22px;
    left: 35px;
    writing-mode: vertical-rl;
    color: #0070a9;
    font-size: 1.625rem;
    font-weight: bold;
  }
  .mv-below__text{
    font-size: 16px;
    text-align: left;
  }
  .mv-below__text-body{
    line-height: 1.6;
  }
  .mv-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-inline: auto;
  padding-left: 0;
}
  .mv-menu__col{
    width: 80%;
  }
  .mv-menu__col a{
    font-size: 16px;
  }
  .mv-menu__col a::before{
    width: 16px;
    height: 16px;
    mask: url(../images/mv/mv__check.png) center / 16px 16px no-repeat;
  }
  .mv-menu__col--2, .mv-menu__col--3 {
    gap: 16px;
  }
   .mv-below{
  width: 100%;
 }
 .mv-below__icon-img{
  width: 41px;
 }
 .mv-below__catch-line{
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
 }

}
/* ========================================
   なぜジルコニアか
   ======================================== */

.why {
  width: 720px;
  margin-inline: auto;
}

.why__body {
  width: 720px;
  padding-block: 59px 40px;
  padding-inline: 110px;
  background-color: #e1f5ff;
}

.why__head {
  margin-bottom: 22px;
  text-align: center;
}

.why__head-icon {
  display: block;
  width: 38px;
  height: auto;
  margin: 0 auto 10px;
}

.why__title {
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: #316c81;
}

.why__list {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why__item {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 15px;
  padding-left: 25px;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.why__badge {
  position: relative;
  flex-shrink: 0;
  align-self: flex-start;
  width: 92px;
}

.why__badge-bg {
  display: block;
  width: 100%;
  height: auto;
}

.why__badge-inner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 17px;
  gap: 11px;
}

.why__badge-no {
  display: block;
  width: auto;
  height: 16px;
  transform: translate(-0.5px, 0px);
}

.why__badge-icon {
  display: block;
  width: auto;
  height: 34px;
  flex-shrink: 0;
}

.why__content {
  flex: 1;
  padding-block: 19px;
  padding-right: 20px;
  padding-left: 37px;
}

.why__content--3,
.why__content--4 {
  padding-bottom: 34px;
}

.why__item-title {
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: normal;
  color: #2a6e7e;
  margin-bottom: 15px;
}

.why__item-title--2 {
  margin-bottom: 16px;
}

.why__item-text {
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 14.5px;
  color: #7a6e66;
}

.why__item-text-part {
  display: inline-block;
}

.why__item-text-part--1 {
  transform: translate(-4px, 0px);
}
@media screen and (max-width: 768px){
  .why{
    width: 100%;

  }
 .why__body{
  padding-inline: 0;
  width: 100%;
 }
 .why__head-icon {
  display: block;
  width: 49px;
  height: auto;
  margin: 0 auto ;
  }
  .why__title{
    font-size: 24px;
    font-weight: 500;
  }
  .why__item{
    flex-direction: column;
    padding-left: 12px;
  }
  .why__badge-icon{
    width: 20px;
    height: auto;
  }
  .why__badge{
    width: 65px;
  }
  .why__content{
    padding-inline: 10px;
  }
  .why__item-title{
    font-size: 20px;
  }
  .why__item-text {
    font-size: 14px;
    line-height: 1.8;
  }
}
/* ========================================
   保険診療のデメリット
   ======================================== */

.insurance {
  width: 720px;
  margin-inline: auto;
}

.insurance__body {
  width: 720px;
  padding-block: 45px 49px;
  padding-inline: 109px;
  background-color: #ffffff;
}

.insurance__head {
  margin-bottom: 17px;
  text-align: center;
}

.insurance__head-icon {
  display: block;
  width: 31px;
  height: auto;
  margin: 0 auto 9px;
}

.insurance__title {
  padding-left: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 25.5px;
  color: #813131;
}

.insurance__title-line {
  display: inline-block;
}

.insurance__title-line--1 {
  transform: translate(4px, 0px);
}

.insurance__title-line--2 {
  transform: translate(0px, 1px);
}

.insurance__lead {
  padding-left: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 15px;
  color: #a18e83;
  text-align: center;
}

.insurance__lead-line {
  display: inline-block;
}

.insurance__lead-line--3 {
  transform: translate(0px, -0.5px);
}

.insurance__list {
  display: flex;
  flex-direction: column;
  gap: 14.5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.insurance__item {
  padding-block: 17.5px 16px;
  padding-inline: 24.5px;
  background-color: #f9f1ef;
  border: 1.5px solid #ef857d;
  text-align: center;
  overflow: visible;
}

.insurance__item--2 {
  padding-top: 17px;
  padding-bottom: 15.5px;
}

.insurance__item--3,
.insurance__item--4,
.insurance__item--5 {
  padding-top: 17px;
}

.insurance__num-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 11px;
}

.insurance__num-line {
  flex: 1;
  height: 0.5px;
  background-color: #ef857d;
}

.insurance__num-line--1-left,
.insurance__num-line--1-right,
.insurance__num-line--2-left,
.insurance__num-line--2-right,
.insurance__num-line--3-left,
.insurance__num-line--3-right,
.insurance__num-line--4-left,
.insurance__num-line--4-right,
.insurance__num-line--5-left,
.insurance__num-line--5-right {
  flex: var(--flex-grow, 1) var(--flex-shrink, 1) var(--flex-basis, 0%);
  width: var(--line-width, auto);
  max-width: var(--line-max-width, none);
  min-width: var(--line-min-width, 0px);
}

.insurance__num-line--1-left,
.insurance__num-line--2-left,
.insurance__num-line--3-left,
.insurance__num-line--4-left,
.insurance__num-line--5-left,
.insurance__num-line--1-right,
.insurance__num-line--2-right,
.insurance__num-line--3-right,
.insurance__num-line--4-right,
.insurance__num-line--5-right {
  position: relative;
}

.insurance__num-line[class$="-left"] {
  --line-extend-to-num: 3.5px;
}

.insurance__num-line--1-left::after,
.insurance__num-line--2-left::after,
.insurance__num-line--3-left::after,
.insurance__num-line--4-left::after,
.insurance__num-line--5-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: var(--line-extend-to-num, 0px);
  height: 100%;
  background-color: #ef857d;
  transform: translate(100%, 0px);
  pointer-events: none;
}

.insurance__num-line--1-right::before,
.insurance__num-line--2-right::before,
.insurance__num-line--3-right::before,
.insurance__num-line--4-right::before,
.insurance__num-line--5-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--line-extend-to-num, 0px);
  height: 100%;
  background-color: #ef857d;
  transform: translate(-100%, 0px);
  pointer-events: none;
}

.insurance__num {
  flex-shrink: 0;
}

img.insurance__num {
  display: block;
  width: 25px;
  height: auto;
  max-width: none;
}

.insurance__item-title {
  padding-left: 2px;
  margin-bottom: 13px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  color: #813131;
}

.insurance__item-title--2 {
  padding-left: 1px;
}

.insurance__item-title--3 {
  padding-left: 7px;
}

.insurance__item-title--4 {
  padding-left: 0;
}

.insurance__item-rule {
  width: 100%;
  height: 1px;
  margin-bottom: 13.5px;
  padding: 0;
  border: 0;
  background-color: #ef857d;
}

.insurance__item-text {
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 14.5px;
  color: #333333;
}

.insurance__item-text--2,
.insurance__item-text--3 {
  padding-left: 3px;
}

.insurance__item-text--4 {
  padding-left: 4px;
}

.insurance__item-text--5 {
  padding-left: 5px;
}

.insurance__item-text-line {
  display: block;
}

.insurance__item-text-line--1-2 {
  transform: translate(2px, 0px);
}

.insurance__item-text-line--1-3 {
  transform: translate(4px, 0px);
}

.insurance__item-text-line--1-4 {
  transform: translate(2px, 0px);
}

.insurance__item-text-line--2-2,
.insurance__item-text-line--2-3 {
  transform: translate(-2px, 0px);
}

.insurance__item-text-part {
  display: inline-block;
}

.insurance__item-text-part--1-3-1,
.insurance__item-text-part--4-2-1 {
  transform: translate(-4px, 0px);
}

.insurance__note {
  position: relative;
  margin-top: 14px;
  padding-block: 22px 9px;
  padding-inline: 16px;
  background-image: url(../images/insurance/insurance__note-bg.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 46px;
  border: none;
  overflow: visible;
}

.insurance__note-icon {
  position: absolute;
  top: 4px;
  left: 225px;
  z-index: 2;
  display: block;
  width: 15px;
  height: 15px;
  max-width: none;
  transform: translate(-50%, 0px);
  background-image: url(../images/insurance/insurance__light-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.insurance__note-text {
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 9px;
  font-weight: 700;
  line-height: 15px;
  padding-left: 5px;
  color: #813131;
}

.insurance__note-text--2 {
  margin-inline: -20px;
  width: calc(100% + 40px);
}

.insurance__note-text--5 {
  padding-left: 0;
}

.insurance__cadcam {
  margin-top: 16px;
  padding-block: 11.5px 13px;
  padding-inline: 24px;
  background-color: #ffffff;
  border: 2px solid #e8a09a;
  text-align: center;
}

.insurance__cadcam-title {
  margin-bottom: 5px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  color: #8a3b3b;
}

.insurance__cadcam-title-part {
  display: inline-block;
}

.insurance__cadcam-title-part--1 {
  transform: translate(-6px, 0px);
}

.insurance__cadcam-mark {
  display: inline-block;
  width: 8.5px;
  height: 10px;
  background-color: #e8a09a;
  vertical-align: middle;
}

.insurance__cadcam-mark--left {
  transform: translate(0px, -1.5px);
  margin-right: 3.5px;
  margin-left: 3px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.insurance__cadcam-mark--right {
  transform: translate(0px, -1.5px);
  margin-right: 3px;
  margin-left: 3.5px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.insurance__cadcam-rule {
  width: 100%;
  height: 1px;
  margin: 0 0 13px;
  padding: 0;
  border: 0;
  background-color: #f5c9c9;
}

.insurance__cadcam-lead {
  margin-bottom: 2px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 15px;
  color: #333333;
}

.insurance__cadcam-lead-line {
  display: block;
}

.insurance__cadcam-lead-line--2 {
  transform: translate(2px, -1px);
}

.insurance__cadcam-box {
  margin-bottom: 5px;
  padding-block: 10px;
  padding-right: 20px;
  padding-left: 30px;
  background-color: #f9f0ef;
}

.insurance__cadcam-list {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.insurance__cadcam-list li {
  margin-bottom: 1px;
  padding-left: 11.5px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 9px;
  font-weight: 500;
  line-height: 15px;
  color: #333333;
  position: relative;
}

.insurance__cadcam-list li:last-child {
  margin-bottom: 0;
}

.insurance__cadcam-list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #e9968b;
}

.insurance__cadcam-text {
  padding-left: 4px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 15px;
  color: #333333;
}

.insurance__cta {
  width: 720px;
  padding-block: 49px 50px;
  padding-inline: 113px;
  background-color: #e1f5ff;
}

.insurance__cta-box {
  position: relative;
  padding-block: 28px 26px;
  padding-inline: 30px;
  background-color: #ffffff;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
}

.insurance__cta-box::before {
  content: "";
  position: absolute;
  top: 111px;
  left: 247px;
  z-index: 0;
  display: block;
  width: 163px;
  height: 198px;
  background-color: #f5f5f5;
  mask-image: url(../images/insurance/insurance__cta-bg__.png);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
  -webkit-mask-image: url(../images/insurance/insurance__cta-bg__.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.insurance__cta-bar {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 375px;
  height: 5px;
  background-color: #3fa7d4;
  border-radius: 0 0 2px 2px;
  transform: translate(-50%, 0px);
}

.insurance__cta-text {
  position: relative;
  z-index: 1;
  margin-bottom: 11.5px;
  padding-left: 6px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 19px;
  color: #316c81;
}

.insurance__cta-text-line {
  display: block;
}

.insurance__cta-text-line--2 {
  transform: translate(0px, -1px);
}

.insurance__cta-text-part {
  display: inline-block;
}

.insurance__cta-text-part--1-1 {
  transform: translate(-6px, 0px);
}

.insurance__cta-rule {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 1px;
  margin-bottom: 15px;
  padding: 0;
  border: 0;
  background-color: #d9d9d9;
}

.insurance__cta-sub {
  padding-left: 5px;
  position: relative;
  z-index: 1;
  margin-bottom: 17.5px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 9px;
  font-weight: 500;
  line-height: 16px;
  color: #333333;
}

.insurance__cta-sub-line {
  display: block;
}

.insurance__cta-sub-line--2 {
  margin-inline: -30px;
  width: calc(100% + 60px);
  white-space: nowrap;
}

.insurance__cta-tel {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 195px;
  height: 51.5px;
  padding: 0;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  background-color: #3fa7d4;
  border-radius: 999px;
  text-decoration: none;
}

.insurance__cta-tel-icon {
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../images/insurance/insurance__cta-tel.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.insurance__cta-tel-num {
  display: inline-block;
  transform: translate(1.5px, -1.5px);
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 20.5px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.insurance__cta-tel-hyphen {
  display: inline-block;
}

.insurance__cta-tel-hyphen--1,
.insurance__cta-tel-hyphen--2 {
  transform: translate(0px, -2px);
}
@media screen and (max-width: 768px){
  .insurance{
    width: 100%;
  }
  .insurance__body{
    width: 100%;
    padding-inline: 20px;
  }
  .insurance__title{
    font-size: 24px;
    line-height: normal;
  }
  .insurance__head-icon{
    width: 45px;
  }
  .insurance__lead{
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.8125;
    color: #60534d;
    text-align: left;
  }
  .insurance__item-title {
    font-size: 18px;
  }
  .insurance__item-text{
    font-size: 14px;
    line-height: 1.8;
    color: #60534d;
    text-align: left;
  }

  .insurance__note-text{
    font-size: 14px;
    line-height: 1.6;
    width: 100%;
    margin: auto;
  }
  .insurance__note {
    margin-top: 25px;
    position: relative;
    border: 1px solid #ef857d;
    background: #fff;
    padding: 15px;
    text-align: center;
  }

  /* 半円 */
  .insurance__note::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -22px;
    transform: translateX(-50%);
    width: 44px;
    height: 22px;
    background: #fff;
    border: 1px solid #ef857d;
    border-bottom: none;
    border-radius: 22px 22px 0 0;
  }

  /* 電球アイコン */
  .insurance__note::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -13px;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: url("../images/icon-light.svg") center/contain no-repeat;
    z-index: 2;
  }
  .insurance__note-icon{
      width: 25px;
      height: 25px;
      top: -13px;
      left: 50%;
  }
  .insurance__cadcam-title{
        font-size: 20px;
        line-height: 1.6;
  }
  .insurance__cadcam-lead {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
  .insurance__cadcam-list li{
    font-size: 14px;
    line-height: 1.6;
  }
  .insurance__cadcam-box {
    padding-left: 10px;
  }
  .insurance__cadcam-text{
    font-size: 14px;
    text-align: left;
    line-height: 1.6;

  }
  .insurance__cta{
    width: 100%;
  }
  .insurance__cta{
    padding-inline: 20px;
  }
  .insurance__cta-text{
    padding-left: 0;
    font-size: 20px;
    line-height: 1.6;
  }
  .insurance__cta-box {
    padding-inline: 15px;
  }
  .insurance__cta-sub{
    font-size: 14px;
    text-align: left;
    line-height: 1.6;
  }
}
/* ========================================
   素材別比較表
   ======================================== */

.compare {
  width: 720px;
  margin-inline: auto;
}

.compare__body {
  padding-inline: 113px;
  padding-block: 50px;
  width: 720px;
  background-color: #ffffff;
}

.compare__head {
  margin-bottom: 26px;
  text-align: center;
}

.compare__head-icon {
  display: block;
  width: 42px;
  height: auto;
  margin: 0 auto 18px;
}

.compare__title {
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #316c81;
}

.compare__table-area {
  width: 100%;
}

.compare__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 0.5px solid #dddddd;
  border-right: 0.5px solid #dddddd;
  border-bottom: 0.5px solid #dddddd;
  border-left: none;
  border-radius: 3px 3px 0 0;
  overflow: visible;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 9px;
}

.compare__table-head,
.compare__table-material,
.compare__table-cell {
  border-right: 0.5px solid #dddddd;
  border-bottom: 0.5px solid #dddddd;
  padding: 0;
  vertical-align: middle;
  text-align: center;
}

.compare__table-head:last-child,
.compare__table-material:last-child,
.compare__table-cell:last-child {
  border-right: 0;
}

.compare__table-head--1,
.compare__table-material {
  border-right: none;
}

.compare__table-row:last-child .compare__table-material,
.compare__table-row:last-child .compare__table-cell {
  border-bottom: 0;
}

.compare__table-head {
  background-color: #dddddd;
  font-weight: 700;
  line-height: 11px;
  color: #333333;
}

.compare__table-row--head > .compare__table-head {
  height: 32px;
  border-right-color: #eeeeee;
  border-bottom: 0;
}

.compare__table-row--head > .compare__table-head--1 {
  border-top-left-radius: 2px;
}

.compare__table-row--head > .compare__table-head--7 {
  border-top-right-radius: 2px;
}

.compare__table-row--1 > .compare__table-material,
.compare__table-row--1 > .compare__table-cell {
  height: 38px;
}

.compare__table-row--2 > .compare__table-material,
.compare__table-row--2 > .compare__table-cell {
  height: 34px;
}

.compare__table-row--3 > .compare__table-material,
.compare__table-row--3 > .compare__table-cell {
  height: 33px;
}

.compare__table-row--4 > .compare__table-material,
.compare__table-row--4 > .compare__table-cell {
  height: 34px;
}

.compare__table-row--5 > .compare__table-material,
.compare__table-row--5 > .compare__table-cell {
  height: 33px;
}

.compare__table-head--1 {
  width: 84px;
}

.compare__table-material {
  width: 76px;
  background-color: #f2f2f2;
  font-weight: 700;
  line-height: 12px;
  color: #333333;
}

.compare__table-head--2 {
  width: 68px;
}

.compare__table-head--3 {
  width: 68px;
}

.compare__table-head--4 {
  width: 68px;
}

.compare__table-head--5 {
  width: 69px;
}

.compare__table-head--6 {
  width: 68px;
}

.compare__table-head--7 {
  width: 67px;
}

.compare__table-material--1 {
  position: relative;
  background-color: #40afc7;
  color: #ffffff;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.compare__table-material--1::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -4px;
  z-index: 1;
  width: 10px;
  background-color: #40afc7;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.compare__table-material .compare__material-name,
.compare__table-material .compare__material-sub,
.compare__table-material .compare__material-line {
  margin-left: -1px;
}

.compare__table-row--2 > .compare__table-material .compare__material-name,
.compare__table-row--2 > .compare__table-material .compare__material-sub,
.compare__table-row--2 > .compare__table-material .compare__material-line,
.compare__table-row--3 > .compare__table-material .compare__material-name,
.compare__table-row--3 > .compare__table-material .compare__material-sub,
.compare__table-row--3 > .compare__table-material .compare__material-line,
.compare__table-row--4 > .compare__table-material .compare__material-name,
.compare__table-row--4 > .compare__table-material .compare__material-sub,
.compare__table-row--4 > .compare__table-material .compare__material-line,
.compare__table-row--5 > .compare__table-material .compare__material-name,
.compare__table-row--5 > .compare__table-material .compare__material-sub,
.compare__table-row--5 > .compare__table-material .compare__material-line {
  margin-left: 0px;
}

.compare__material-name {
  display: block;
  color: #000000;
}

.compare__material-sub {
  display: block;
  font-size: 8px;
  font-weight: 700;
  line-height: 10px;
}

.compare__material-line {
  display: block;
}

.compare__table-material--1 .compare__material-sub {
  color: #ffffff;
}

.compare__table-cell {
  position: relative;
  background-color: #ffffff;
}

.compare__table-row--featured > .compare__table-material,
.compare__table-row--featured > .compare__table-cell {
  position: relative;
  z-index: 2;
  border-top: 1px solid #40afc7;
  border-bottom: 1px solid #40afc7;
}

.compare__table-row--featured > .compare__table-cell {
  background-color: #ffffff;
}

.compare__table-row--featured > .compare__table-cell:not(:last-child) {
  border-right: none;
  background-image: linear-gradient(#dddddd, #dddddd);
  background-size: 0.5px calc(100% - 2px);
  background-position: 100% 1px;
  background-repeat: no-repeat;
  background-origin: border-box;
}

.compare__table-row--featured > .compare__table-material {
  border-left: 1px solid #40afc7;
  border-right: none;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.compare__table-row--featured
  > .compare__table-material
  + .compare__table-cell {
  border-left: none;
}

.compare__table-row--featured > .compare__table-cell:last-child {
  border-right: 1px solid #40afc7;
}

.compare__table-row--featured > .compare__table-cell:last-child::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -4px;
  bottom: -1px;
  z-index: 1;
  width: 6px;
  box-sizing: border-box;
  background-color: #ffffff;
  border-top: 1px solid #40afc7;
  border-right: 1.5px solid #40afc7;
  border-bottom: 1px solid #40afc7;
  border-left: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 3px;
  pointer-events: none;
}

.compare__cell-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  height: 100%;
  font-size: 0;
  box-sizing: border-box;
}

.compare__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  font-size: 16.5px;
}

.compare__mark--double {
  color: #e984a3;
}

.compare__mark--circle {
  color: #5fc2d9;
}

.compare__mark--triangle {
  color: #3bc6a9;
}

.compare__mark--cross {
  color: #bababa;
}

.compare__mark--1-2 {
  margin-left: -0.5px;
  margin-top: 0.5px;
}

.compare__mark--1-3 {
  margin-top: 1px;
}

.compare__mark--2-2 {
  margin-top: 1px;
}

.compare__mark--2-3 {
  margin-top: 1px;
}

.compare__mark--4-2 {
  margin-top: 2px;
}

.compare__mark--4-3 {
  margin-top: 1.5px;
}

.compare__mark--5-2 {
  margin-top: 0.5px;
}

.compare__mark--5-3 {
  margin-top: 1px;
}

.compare__cell-note {
  display: block;
  font-size: 6.5px;
  font-weight: 500;
  line-height: 9px;
  color: #666666;
}

.compare__cell-note--long {
  line-height: 8px;
}

.compare__cell-note--4-2 {
  margin-top: 2px;
}

.compare__cell-note--5-2 {
  margin-top: 1px;
}

.compare__cell-note--5-3 {
  margin-left: 0.5px;
  margin-top: 1px;
}

.compare__cell-note--5-4 {
  white-space: nowrap;
}

.compare__material-sub--2 {
  margin-left: -0.5px;
}

.compare__material-sub--4 {
  margin-top: 1px;
}

.compare__material-line--4-2 {
  margin-top: 1px;
}

.compare__material-line--5-2 {
  margin-top: 1px;
}
@media screen and (max-width: 768px){
  .compare{
    width: 100%;
  }
  .compare__body{
    width: 100%;
    padding-inline: 20px;
    padding-block: 30px 50px;
  }
  .compare__table-area {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .compare__table {
    min-width: 720px; /* テーブルの実寸幅 */
  }
    .compare__title{
    font-size: 24px;
  }
  .compare__table{
    font-size: 14px;
    line-height: 1.6;
  }
  .compare__table-row--head  .compare__table-head {
    height: 65px;
    line-height: 1.6;

  }
  .compare__table-head--1 {
    width: 100px;
}
  .compare__table-head--2 {
    width: 100px;
}
  .compare__table-head--3{
    width: 100px;
  }
  .compare__table-head--4 {
    width: 100px;
}
  .compare__material-sub{
    font-size: 12px;
  }
  .compare__table-material{
    line-height: 1.6;
    width: 100px;
  }


  .compare__table-material {
    height: 70px !important;
  }
  .compare__mark{
    width: 30px;
    height: 30px;
    font-size: 30px;
  }
  .compare__cell-note{
    font-size: 10px;
  }
}
/* ========================================
   ジルコニアの種類と使い分け
   ======================================== */

.types {
  width: 720px;
  margin-inline: auto;
}

.types__body {
  padding-inline: 110px;
  padding-block: 50px;
  width: 720px;
  background-color: #e1f5ff;
}

.types__head {
  margin-bottom: 21px;
  text-align: center;
}

.types__head-icon {
  display: block;
  width: 29px;
  height: auto;
  margin: 0 auto 14px;
}

.types__title {
  margin-bottom: 22px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #316c81;
}

.types__lead {
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 14px;
  color: #97867d;
}

.types__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.types__item {
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 8px;
  padding-left: 11px;
}

.types__item::before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  width: 6px;
  background-color: #316c81;
}

.types__item-body {
  display: flex;
  flex: 1;
  min-width: 0;
  overflow: visible;
  background-color: #ffffff;
}

.types__content {
  padding-block: 17px;
  flex: 1;
  min-width: 0;
  margin-left: -5px;
  padding-right: 30px;
  padding-left: 19px;
  background-color: #ffffff;
}

.types__content--2 {
  padding-top: 16.5px;
}

.types__item-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 11px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 13px;
  color: #316c81;
}

.types__item-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - mod(100%, 4px));
  height: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='1' viewBox='0 0 8 1'%3E%3Crect width='5' height='1' rx='0.5' fill='%233fa7d4'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 4px 1px;
}

.types__item-check {
  flex-shrink: 0;
  display: block;
  width: 11px;
  height: auto;
  transform: translate(0px, -3px);
}

.types__item-title-text {
  display: inline-block;
  padding-bottom: 7px;
}

.types__item-text {
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 8px;
  font-weight: 700;
  line-height: 14px;
  color: #97867d;
}

.types__figure {
  flex-shrink: 0;
  width: 151px;
  margin: 0;
  background-color: #151515;
}

.types__item-img {
  display: block;
  width: 151px;
  max-width: none;
  height: 100%;
  object-fit: cover;
  border-radius: 0 8px 8px 0;
}
@media screen and (max-width: 768px){
  .types{
    width: 100%;
  }
  .types__body{
    width: 100%;
    padding-inline: 20px;
  }
  .types__head-icon{
    width: 45px;
  }
  .types__title{
    font-size: 24px;
  }
  .types__lead{
    font-size: 16px;
    line-height: 1.6;
    color: #60534d;
    text-align: left;
  }
  .types__item-body{
    flex-direction: column-reverse;
  }
  .types__figure{
    width: 100%;
  }
  .types__item-img {
    width: 100%;
  }
  .types__item-check {
    width: 20px;
  }
  .types__item-title {
    font-size: 14px;
    line-height: 1.6;
  }
  .types__item-text{
    font-size: 14px;
    line-height: 1.6;
  }
}
.features {
  width: 720px;
  margin-inline: auto;
}

.features__body {
  padding-inline: 110px;
  width: 720px;
  padding-top: 50px;
  padding-bottom: 30px;
  background-color: #ffffff;
}

.features__head {
  margin-bottom: 0px;
  text-align: center;
}

.features__head-icon {
  display: block;
  width: 43px;
  height: auto;
  margin: 0 auto 13px;
}

.features__title {
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #316c81;
}

.features__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.features__item {
  padding-inline: 22px;
  display: flex;
  align-items: stretch;
  gap: 41px;
  padding-top: 21px;
  padding-bottom: 20.5px;
}

.features__item:not(:last-child) {
  border-bottom: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='0.5' viewBox='0 0 8 0.5'%3E%3Crect width='5' height='0.5' rx='0.25' fill='%233fa7d4'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 4px 0.5px;
}

.features__item--reverse {
  flex-direction: row-reverse;
}

.features__item--2 {
  padding-inline: 36px;
  padding-top: 20px;
}

.features__item--3 {
  gap: 69px;
  margin-top: -3px;
}

.features__figure {
  flex-shrink: 0;
  width: 130px;
  margin: 0;
}

.features__figure--1 {
  width: 135px;
}

.features__figure--2 {
  width: 107px;
}

.features__figure--3 {
  width: 107px;
}

.features__item-img {
  display: block;
  width: 130px;
  max-width: none;
  height: auto;
}

.features__item-img--1 {
  width: 135px;
}

.features__item-img--2 {
  width: 107px;
}

.features__item-img--3 {
  width: 107px;
}

.features__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding-top: 22px;
  padding-bottom: 17px;
  gap: 17px;
}

.features__content--2 {
  padding-top: 14.5px;
}

.features__content--3 {
  margin-top: 7px;
}

.features__item-title {
  display: flex;
  align-items: center;
  gap: 5.5px;
  margin-bottom: 0px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: #316c81;
}

.features__item-bar {
  flex-shrink: 0;
  width: 3.5px;
  height: 14px;
  border-radius: 2px;
  background-color: #3fa7d4;
}

.features__item-text {
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 14px;
  color: #666666;
}

.features__item-text-part {
  display: inline-block;
}

.features__item-text-part--2-1 {
  transform: translate(-4px, 0.5px);
}
@media screen and (max-width: 768px){
  .features{
    width: 100%;
  }
  .features__body{
    width: 100%;
    padding-inline: 20px;
  }
  .features__head-icon{
    width: 60px;
  }
  .features__title{
    font-size: 24px;
  }
  .features__item{
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .features__item-bar{
    height: 16px;
  }
  .features__item-title{
    font-size: 16px;
  }
  .features__item-text{
    font-size: 14px;
    line-height: 1.6;
  }
  .features__item--2{
    padding-inline: 22px;
  }
}
.flow {
  width: 720px;
  margin-inline: auto;
}

.flow__body {
  width: 720px;
  padding-top: 49px;
  padding-right: 109px;
  padding-bottom: 50px;
  padding-left: 111px;
  background-color: #e9f9ff;
}

.flow__head {
  margin-bottom: 24px;
  text-align: center;
}

.flow__head-icon {
  display: block;
  width: 30px;
  height: auto;
  margin: 0 auto 14px;
}

.flow__title {
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #316c81;
}

.flow__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 23.7px;
  margin: 0;
  padding: 0;
  list-style: none;
  --flow-step-height: 12px;
  --flow-marker-gap: 4px;
  --flow-icon-size: 57px;
  --flow-list-gap: 23.7px;
  --flow-icon-bottom: calc(
    var(--flow-step-height) + var(--flow-marker-gap) + var(--flow-icon-size)
  );
}

.flow__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 32px;
  align-items: start;
}

.flow__marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  align-self: stretch;
}

.flow__item:not(:last-child) .flow__marker::after {
  content: "";
  position: absolute;
  top: calc(var(--flow-icon-bottom) + 4px);
  left: 50%;
  z-index: 0;
  width: 0;
  height: calc(100% - var(--flow-icon-bottom) - 4px + var(--flow-list-gap) - 4px);
  border-left: 1px dashed #bbbbbb;
  transform: translateX(-50%);
  pointer-events: none;
}

.flow__step {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  background-color: #e9f9ff;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #40afc7;
  text-align: center;
}

.flow__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 57px;
  height: 57px;
  margin: 0;
  overflow: hidden;
  background-color: #40afc7;
  border-radius: 50%;
}

.flow__icon-img {
  display: block;
  width: 24px;
  height: auto;
}

.flow__icon-img--2 {
  width: 28px;

}

.flow__icon-img--3 {
  width: 37px;
}

.flow__icon-img--4 {
  width: 21px;
}

.flow__icon-img--5 {
  width: 35px;
}

.flow__icon-img--6 {
  width: 32px;
}

.flow__content {
  min-width: 0;
  padding-top: 2px;
}

.flow__item-title {
  margin-bottom: 11px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  color: #316c81;
}

.flow__item-text {
  margin: 0;
  padding-top: 12px;
  padding-right: 0px;
  padding-bottom: 13px;
  padding-left: 25px;
  background-color: #ffffff;
  border-radius: 10px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 9px;
  font-weight: 500;
  line-height: 13px;
  color: #666666;
}

.flow__item-text-part {
  display: inline-block;
}

.flow__item-text-part--2-1 {
  transform: translate(-1px, 0px);
}

.flow__item-text-part--3-1 {
  transform: translate(-1px, 0px);
}
@media screen and (max-width: 768px){
  .flow{
    width: 100%;
  }
  .flow__body{
    width: 100%;
    padding-inline: 20px;
  }
  .flow__item-title{
    font-size: 16px;
    line-height: 1.6;
  }
  .flow__item-text{
    font-size: 14px;
    line-height: 1.6;
  }
}
.faq {
  width: 720px;
  margin-inline: auto;
}

.faq__body {
  padding-inline: 110px;
  width: 720px;
  padding-top: 50px;
  padding-bottom: 0;
  background-color: #ffffff;
  overflow: visible;
}

.faq__head {
  margin-bottom: 25px;
  text-align: center;
}

.faq__head-icon {
  display: block;
  width: 29px;
  height: auto;
  margin: 0 auto 18.5px;
}

.faq__title {
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #316c81;
  transform: translate(4px, 0px);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.faq__item {
  overflow: hidden;
  background-color: #ffffff;
  border: 0.5px solid #3fa7d4;
  border-radius: 2px;
}

.faq__item--open .faq__question {
  position: relative;
  border-bottom: none;
  padding-bottom: 3px;
}

.faq__item--open .faq__question::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 0;
  width: calc(100% - 40px - mod(100% - 40px, 4px));
  height: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='2' viewBox='0 0 8 2'%3E%3Crect width='5' height='2' rx='1' fill='%23cccccc'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 4px 2px;
  pointer-events: none;
}

.faq__question {
  padding-inline: 20px;
  padding-block: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.faq__q-badge {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
}

.faq__q-bubble {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq__q-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: "Nunito", sans-serif;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.faq__q-label--1 {
  transform: translate(0px, -0.5px);
}

.faq__q-label--3 {
  transform: translate(0px, -0.5px);
}

.faq__q-label--5 {
  transform: translate(0px, -0.5px);
}

.faq__question-text {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  color: #316c81;
}

.faq__toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #3fa7d4;
  cursor: pointer;
}

.faq__toggle-icon {
  position: relative;
  display: block;
  width: 6px;
  height: 1.5px;
  background-color: #ffffff;
  border-radius: 0.5px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__toggle-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 0.5px;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item--open .faq__toggle-icon {
  transform: rotate(180deg);
}

.faq__item--open .faq__toggle-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq__item--open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq__answer-text {
  padding-inline: 20px;
  margin: 0;
  padding-top: 6px;
  padding-bottom: 8px;
  font-family:
    "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN",
    Meiryo, sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 14.9px;
  color: #666666;
}

.faq__wave {
  position: relative;
  z-index: 1;
  width: 720px;
  margin-top: 50px;
  margin-left: -110px;
}

.faq__wave-img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px){
  .faq{
    width: 100%;
  }
  .faq__body{
    width: 100%;
    padding-inline: 20px;
    overflow: hidden;
  }
  .faq__head-icon{
    width: 60px;
  }
  .faq__head-icon{
    font-size: 24px;
  }
  .faq__q-label{
    font-size: 14px;
  }
  .faq__q-badge{
    width: 27px;
  }
  .faq__question-text{
    font-size: 16px;
    line-height: 1.6;
  }
  .faq__toggle{
    width: 25px;
    height: 25px;
  }
  .faq__toggle-icon {
    width: 10px;
}
  .faq__toggle-icon::before{
    height: 10px;
  }
  .faq__answer-text{
    font-size: 14px;
    line-height: 1.6;
  }

}
.cta {
  width: 720px;
  margin-inline: auto;
}

.cta__body {
  padding-inline: 113px;
  width: 720px;
  padding-top: 0;
  padding-bottom: 50px;
  background-color: #e1f5ff;
}

.cta__body .insurance__cta-box {
  position: relative;
  z-index: 2;
  margin-top: -83px;
}
@media screen and (max-width: 768px){
  .cta {
  width: 100%;
}

.cta__body {
  padding-inline: 20px;
  width: 100%;
  padding-top: 0;
  padding-bottom: 50px;
  background-color: #e1f5ff;
}

}