@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

::selection {
  background-color: pink;
}

html {
  font-size: 62.5%;
  overflow-x: auto;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

a:link,
a:visited {
  color: black;
  text-decoration: none;
  display: inline-block;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

body {
  font-family: "Noto Sans JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #00183c;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("./fonts/NotoSansJP/NotoSansJP-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("./fonts/NotoSansJP/NotoSansJP-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #942d2f;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.shipping-fee-table {
  background: #ffffff;
  border-radius: 8px;
  margin: auto;
  margin-bottom: 14px;
}
.shipping-fee-table table {
  width: 100%;
  max-width: 704px;
  border-collapse: collapse;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  font-size: min(18px, 1.7475728155vw);
  text-align: left;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #ffffff;
  margin: auto;
  margin-top: 18px;
}
@media screen and (max-width: 767px) {
  .shipping-fee-table table {
    font-size: 14px;
    border: 1px solid #e7f1f9;
  }
}
.shipping-fee-table thead th {
  color: #fff;
  font-weight: bold;
  padding-block: 12.5px;
  text-align: center;
  font-size: min(20px, 1.9417475728vw);
  background-color: #077bc7;
  border: 2px solid #ffffff;
}
.shipping-fee-table thead th:first-child {
  border-top-left-radius: 6px;
}
.shipping-fee-table thead th:last-child {
  border-top-right-radius: 6px;
}
@media screen and (max-width: 767px) {
  .shipping-fee-table thead th:last-child {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .shipping-fee-table thead th {
    font-size: 14px;
    border: 2px solid #e7f1f9;
    width: 152px;
  }
}
.shipping-fee-table tbody tr {
  border-bottom: 1px solid #ffffff;
  height: 60px;
}
.shipping-fee-table tbody tr:last-child {
  border-bottom: none;
}
.shipping-fee-table tbody td {
  padding: 12px 16px;
  vertical-align: middle;
  border: 2px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .shipping-fee-table tbody td {
    padding: 8px 0px 8px 7px;
    border: 2px solid #e7f1f9;
  }
}
.shipping-fee-table tbody .zone {
  background-color: #7fb0d0;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: min(20px, 1.9417475728vw);
  width: 120px;
  min-width: 51px;
  border-right: 2px solid #ffffff;
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
  padding-inline: 0;
}
@media screen and (max-width: 767px) {
  .shipping-fee-table tbody .zone {
    font-size: 14px;
    line-height: 1.2;
    border-right: 2px solid #e7f1f9;
    width: 81px;
  }
}
.shipping-fee-table tbody .region {
  color: #444444;
  width: 500px;
  line-height: 1.05;
  background-color: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .shipping-fee-table tbody .region {
    width: 152px;
    min-height: 100px;
    padding: 20px 10px;
    background-color: #ffffff;
  }
}
.shipping-fee-table tbody .region p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: min(18px, 1.7475728155vw);
  font-weight: bold;
  color: #333;
}
@media screen and (max-width: 767px) {
  .shipping-fee-table tbody .region p {
    line-height: 1.2;
    width: 100%;
    font-size: 16px;
  }
}
.shipping-fee-table tbody .region span {
  font-size: min(10px, 0.9708737864vw);
  color: #7fb0d0;
  margin-right: 4px;
}
@media screen and (max-width: 767px) {
  .shipping-fee-table tbody .region span {
    font-size: 8px;
    margin-right: 2px;
  }
}
.shipping-fee-table tbody .region .region-detail {
  color: #333333;
  font-size: min(18px, 1.7475728155vw);
  margin-right: 0;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .shipping-fee-table tbody .region .region-detail {
    font-size: 14px;
    padding-left: 20px;
  }
}
.shipping-fee-table tbody .fee {
  text-align: center;
  font-size: min(24px, 2.3300970874vw);
  font-family: "Inter";
  font-weight: bold;
  color: #333333;
  font-weight: bold;
  white-space: nowrap;
  width: 120px;
  background-color: #f4f4f4;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 6px;
}
@media screen and (max-width: 767px) {
  .shipping-fee-table tbody .fee {
    font-size: 18px;
    width: 100px;
    background-color: #ffffff;
  }
}
.shipping-fee-table tbody .fee span {
  font-size: min(18px, 1.7475728155vw);
}
@media screen and (max-width: 767px) {
  .shipping-fee-table tbody .fee span {
    font-size: 16px;
  }
}
.shipping-fee-table .blank-box {
  background-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 767px) {
  .shipping-fee-table .blank-box {
    width: 81px;
  }
}
.shipping-fee-table .radius-left {
  border-top-left-radius: 6px;
}
.shipping-fee-table .region-case {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 16px;
}
@media screen and (max-width: 767px) {
  .shipping-fee-table .region-case {
    column-gap: 8px;
  }
}

.p-column-archive {
  background-color: #e7f1f9;
  min-height: 100vh;
  padding: 60px 0;
}
.p-column-archive__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-column-archive__title {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: #077bc7;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .p-column-archive__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.p-column-archive__content {
  width: 100%;
}
.p-column-archive__posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1024px) {
  .p-column-archive__posts {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .p-column-archive__posts {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .p-column-archive__posts {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-column-archive__post {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.p-column-archive__post:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.p-column-archive__post-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.p-column-archive__post-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.p-column-archive__post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.p-column-archive__post-img:hover img {
  transform: scale(1.05);
}
.p-column-archive__post-img-placeholder {
  width: 100%;
  height: 100%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}
.p-column-archive__post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.p-column-archive__post-category {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-column-archive__post-category {
    font-size: 12px;
  }
}
.p-column-archive__post-title {
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .p-column-archive__post-title {
    padding: 15px;
    font-size: 14px;
  }
}
.p-column-archive__pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-column-archive__pagination {
    margin-top: 40px;
  }
}
.p-column-archive__pagination .page-numbers {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}
.p-column-archive__pagination .page-numbers li {
  margin: 0;
}
.p-column-archive__pagination .page-numbers a,
.p-column-archive__pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.p-column-archive__pagination .page-numbers a {
  background: #fff;
  color: #077bc7;
  border: 2px solid #077bc7;
}
.p-column-archive__pagination .page-numbers a:hover {
  background: #077bc7;
  color: #fff;
}
.p-column-archive__pagination .page-numbers .current {
  background: #077bc7;
  color: #fff;
  border: 2px solid #077bc7;
}
.p-column-archive__pagination .page-numbers .prev a,
.p-column-archive__pagination .page-numbers .next a {
  font-size: 18px;
}
.p-column-archive__no-posts {
  text-align: center;
  font-size: 18px;
  color: #666;
  padding: 60px 0;
}

.single-wrapping {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 15px;
  margin-top: 25px;
}

.single-pr {
  background-color: rgb(255, 204, 0);
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 18px;
  font-family: "Inter";
}

body {
  width: 100vw;
  max-width: 1440px;
  margin: 0 auto;
}

.p-top-hero {
  background-image: url(../img/front/hero-pc.webp);
  background-size: cover;
  background-position: bottom right;
  background-repeat: no-repeat;
  height: 562px;
  margin-top: 126px;
}
@media (max-width: 1100px) and (min-width: 601px) {
  .p-top-hero {
    background-image: url(../img/front/hero-bg-tab.jpg);
    background-color: #077bc7;
    background-position: center right;
    width: 100%;
  }
}
@media (max-width: 1080px) {
  .p-top-hero {
    margin-top: 106px;
  }
}
@media (max-width: 768px) {
  .p-top-hero {
    height: 100%;
    margin-top: 60px;
  }
}
@media (max-width: 650px) {
  .p-top-hero {
    background-image: url(../img/front/hero-sp.png);
    aspect-ratio: auto;
    background-position: center;
  }
}
.p-top-hero__container {
  padding: 65px 0 0 4%;
  position: relative;
}
@media (max-width: 1100px) {
  .p-top-hero__container {
    padding: 23px 0px 12px 40px;
  }
}
@media (max-width: 600px) {
  .p-top-hero__container {
    padding: 32px 0px 0px 0;
  }
}
.p-top-hero__flag {
  position: absolute;
  top: 178px;
  left: 38%;
  width: 234px;
}
@media (max-width: 1360px) {
  .p-top-hero__flag {
    display: none;
  }
}
.p-top-hero__pink-lists {
  display: flex;
  gap: 16px;
}
@media (max-width: 600px) {
  .p-top-hero__pink-lists {
    justify-content: center;
  }
}
.p-top-hero__pink-list {
  padding: 12px 10px;
  display: inline-block;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  border-radius: 10px;
  background: #ea5e7f;
  box-shadow: 3px 5px 4px 0px rgba(255, 255, 255, 0.44);
}
@media (max-width: 600px) {
  .p-top-hero__pink-list {
    font-size: 16px;
    padding: 5px 17px;
    text-align: center;
  }
}
.p-top-hero__pink-list span {
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .p-top-hero__pink-list span {
    font-size: 18px;
  }
}
.p-top-hero__pink-list br {
  display: none;
}
@media (max-width: 600px) {
  .p-top-hero__pink-list br {
    display: block;
  }
}
.p-top-hero__title {
  display: flex;
  text-align: center;
  line-height: 1.2;
  width: 510px;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 54px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 2.7px;
  flex-wrap: wrap;
}
.p-top-hero__title span {
  display: none;
  width: 77px;
}
@media (max-width: 1100px) {
  .p-top-hero__title span {
    display: flex;
  }
}
@media (max-width: 1100px) {
  .p-top-hero__title {
    margin-top: 20px;
    width: 350px;
    font-size: 36px;
  }
}
@media (max-width: 600px) {
  .p-top-hero__title {
    margin: 20px auto 0;
    text-align: center;
    line-height: 1.2;
  }
}
@media (max-width: 450px) {
  .p-top-hero__title br {
    display: block;
  }
}
.p-top-hero__intro-lists {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
@media (max-width: 1100px) {
  .p-top-hero__intro-lists {
    width: 350px;
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .p-top-hero__intro-lists {
    margin: 20px auto 0;
    gap: 16px;
  }
}
.p-top-hero__intro-list {
  padding: 0 0 0 38px;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
  position: relative;
}
@media (max-width: 1100px) {
  .p-top-hero__intro-list {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .p-top-hero__intro-list {
    line-height: 1.2;
  }
}
.p-top-hero__intro-list span {
  color: #f8d866;
  font-weight: 700;
}
.p-top-hero__intro-list::before {
  position: absolute;
  content: "";
  width: 36px;
  height: 36px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/front/hero-text-before.webp);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 1100px) {
  .p-top-hero__intro-list::before {
    width: 28px;
    height: 28px;
  }
}
.p-top-hero__line {
  all: unset;
  display: block;
  width: 510px;
  margin-top: 30px;
}
@media (max-width: 1100px) {
  .p-top-hero__line {
    margin: 70px 0 0 0;
    width: 352px;
  }
}
@media (max-width: 650px) {
  .p-top-hero__line {
    margin: 268px auto 0;
  }
}
.p-top-hero__line .lineBtn-tip {
  font-size: 24px;
  color: #ffffff;
  text-align: center;
  padding-bottom: -22px;
}
@media (max-width: 1100px) {
  .p-top-hero__line .lineBtn-tip {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .p-top-hero__line .lineBtn-tip {
    font-size: 13px;
    color: #666666;
    margin-bottom: -12px;
    position: relative;
    z-index: 10;
  }
}
.p-top-hero__line .lineBtn-tip p {
  font-weight: bold;
  display: flex;
  justify-content: center;
}
@media (max-width: 600px) {
  .p-top-hero__line .lineBtn-tip p {
    padding: 10px;
    background-color: #ffffff;
    border-radius: 200px;
    width: fit-content;
    margin: auto;
  }
}
.p-top-hero__line #top_eyecatch {
  border-radius: 200px;
  box-shadow: 3px 3px 14px rgba(255, 253, 253, 0.44);
}
@media (max-width: 600px) {
  .p-top-hero__line #top_eyecatch img {
    width: 352px;
  }
}

.p-top-slide {
  width: 100%;
  padding-block: 16px 7px;
}
@media (max-width: 600px) {
  .p-top-slide {
    padding-block: 32px;
  }
}
.p-top-slide__case {
  width: 100%;
}
@media (max-width: 600px) {
  .p-top-slide__case {
    display: none;
  }
}
.p-top-slide__case .owl-dots,
.p-top-slide__case .owl-nav {
  display: none !important;
}
.p-top-slide__case .owl-stage-outer {
  height: 256px !important;
}
.p-top-slide__case .owl-item {
  width: 465px !important;
  margin: 0 11px;
}
.p-top-slide__pc-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 40px 24px 48px;
  cursor: grab;
  display: flex;
  align-items: center;
}
.p-top-slide__pc-slider.is-dragging {
  cursor: grabbing;
}
.p-top-slide__pc-track {
  display: flex;
  gap: 32px;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.22, 0.9, 0.36, 1);
  align-items: stretch;
}
.p-top-slide__pc-slide {
  flex: 0 0 calc((100% - 64px) / 3);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 35px rgba(16, 47, 71, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
}
.p-top-slide__pc-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 45px rgba(16, 47, 71, 0.18);
}
.p-top-slide__pc-slide a {
  display: block;
  height: 100%;
}
.p-top-slide__pc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .p-top-slide__pc-slide {
    flex: 0 0 calc((100% - 32px) / 2);
  }
}
@media (max-width: 1024px) {
  .p-top-slide__pc-slider {
    padding: 24px 16px 40px;
  }
}
.p-top-slide__dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}
.p-top-slide__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #d4dce2;
  transition: transform 0.25s ease, background 0.25s ease;
  cursor: pointer;
}
.p-top-slide__dot.is-active {
  background: #077bc7;
  transform: scale(1.1);
}
.p-top-slide__case-sp {
  display: none;
}
@media (max-width: 600px) {
  .p-top-slide__case-sp {
    display: block;
  }
}
.p-top-slide__case-sp .sp-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  touch-action: pan-y; /* allow vertical scrolling while swiping horizontally */
}
.p-top-slide__case-sp .sp-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.22, 0.9, 0.36, 1);
}
.p-top-slide__case-sp .sp-slide {
  flex: 0 0 80%;
  margin: 0 1%;
  padding-bottom: 26px;
}
.p-top-slide__case-sp .sp-slide a {
  width: 100%;
}
.p-top-slide__case-sp .dots {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.p-top-slide__case-sp .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9d9d9;
  border: 0;
  cursor: pointer;
}
.p-top-slide__case-sp .dot.active {
  background: #b5b0b0;
  transform: scale(1.15);
}

.p-top-options {
  background-color: #ffffff;
  padding-block: 39px;
}
@media (max-width: 600px) {
  .p-top-options {
    padding-block: 0;
  }
}
.p-top-options__title {
  text-align: center;
  color: #077bc7;
  font-size: 36px;
  font-style: normal;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 50px;
}
@media (max-width: 600px) {
  .p-top-options__title {
    font-size: 26px;
    margin-bottom: 31px;
  }
}
.p-top-options__title p {
  font-weight: bold;
}
.p-top-options__title .num {
  font-size: 52px;
}
@media (max-width: 600px) {
  .p-top-options__title .num {
    font-size: 38px;
  }
}
.p-top-options__group {
  width: 100%;
  max-width: 1090px;
  margin: auto;
  display: flex;
  gap: 29px;
}
@media (max-width: 1100px) {
  .p-top-options__group {
    max-width: 100%;
    padding-inline: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .p-top-options__group {
    gap: 23px;
  }
}
.p-top-options__group .option {
  width: 100%;
  max-width: 344px;
  height: 428px;
  border: 1px solid #cbcbcb;
  border-radius: 10px;
  padding-block: 16.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 600px) {
  .p-top-options__group .option {
    max-width: 351px;
    height: fit-content;
    padding-block: 28.12px;
  }
}
.p-top-options__group .option .option-tip {
  width: 270px;
  margin-bottom: 10px;
}
.p-top-options__group .option .option-tip img {
  width: 100%;
}
.p-top-options__group .option .option-tip-txt {
  font-size: 12px;
  color: #ea5e7f;
  width: 227px;
  padding-block: 8px;
  border: 1px solid #333333;
  border-radius: 4px;
  background-color: #ffffff;
  margin-bottom: 11px;
}
.p-top-options__group .option .option-tip-txt p {
  text-align: center;
  font-weight: bold;
}
.p-top-options__group .option .option-tip-txt span {
  color: #444444;
  font-weight: bold;
}
.p-top-options__group .option .content-title {
  font-size: 27px;
  font-weight: 700;
  color: #077bc7;
  margin-bottom: 15px;
}
@media (max-width: 600px) {
  .p-top-options__group .option .content-title {
    font-size: 21px;
  }
}
.p-top-options__group .option .option-contents {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-inline: 6px;
}
@media (max-width: 600px) {
  .p-top-options__group .option .option-contents {
    padding-inline: 19px;
    justify-content: unset;
  }
}
.p-top-options__group .option .option-contents img {
  width: 142px;
  height: auto;
}
@media (max-width: 600px) {
  .p-top-options__group .option .option-contents img {
    width: 130px;
  }
}
.p-top-options__group .option .option-contents .contents-txt {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-top-options__group .option .option-contents .contents-txt p {
  width: fit-content;
  color: #444444;
  font-weight: 500;
  padding: 4px 16px;
  background-color: #ffffff;
  border-radius: 200px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 600px) {
  .p-top-options__group .option .option-contents .contents-txt p {
    font-size: 12px;
    width: 100%;
    padding: 4px 12px;
    font-weight: bold;
  }
}
.p-top-options__group .option .option-btn-box {
  color: #ffffff;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 18px;
  padding-inline: 9px;
}
@media (max-width: 600px) {
  .p-top-options__group .option .option-btn-box {
    padding-inline: 10.5px;
    padding-top: 15px;
  }
}
.p-top-options__group .option .option-btn-box .option-btn {
  width: 100%;
  max-width: 326px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 23px;
  background-color: #ea5e7f;
  border: 1px solid #ffffff;
  border-radius: 200px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);
}
@media (max-width: 767px) {
  .p-top-options__group .option .option-btn-box .option-btn {
    height: 71px;
  }
}
.p-top-options__group .option .option-btn-box .option-btn p {
  color: #ffffff;
  font-weight: bold;
  line-height: 0.8;
  text-align: center;
}
@media (max-width: 767px) {
  .p-top-options__group .option .option-btn-box .option-btn p {
    font-size: 18px;
  }
}
.p-top-options__group .option .option-btn-box .option-btn span {
  font-size: 16px;
  font-weight: bold;
}
.p-top-options__group .option .option-btn-box .option-btn img {
  width: 32px;
  height: 32px;
}
.p-top-options__group .option .option-btn-box .option-btn-tip {
  position: absolute;
  top: 0px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 17px;
  height: 36px;
  font-size: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #097cc8 4%, #46a0dc 100%);
}
@media (max-width: 600px) {
  .p-top-options__group .option .option-btn-box .option-btn-tip {
    width: 224px;
    height: 30px;
    padding-inline: 0;
  }
}
.p-top-options__group .option .option-btn-box .option-btn-tip p {
  font-weight: bold;
}
@media (max-width: 767px) {
  .p-top-options__group .option .option-btn-box .option-btn-tip p {
    font-size: 24px;
  }
}
.p-top-options__group .option .option-btn-box .option-btn-tip span {
  font-weight: bold;
  font-size: 20px;
}
@media (max-width: 767px) {
  .p-top-options__group .option .option-btn-box .option-btn-tip span {
    font-size: 18px;
  }
}
.p-top-options__group .op-first {
  background-color: #fff8d6;
}
.p-top-options__group .op-second {
  background-color: #ddebff;
}
.p-top-options__group .op-second .content-title {
  font-size: 24px;
}
@media (max-width: 600px) {
  .p-top-options__group .op-second .content-title {
    font-size: 21px;
  }
}
@media (max-width: 600px) {
  .p-top-options__group .op-second .option-contents {
    padding-inline: 34px;
  }
}
.p-top-options__group .op-second .option-contents img {
  width: 91px;
  margin-left: 31px;
}
@media (max-width: 600px) {
  .p-top-options__group .op-second .option-btn-tip p {
    font-size: 24px !important;
  }
}
.p-top-options__group .op-second .option-btn-tip p span {
  font-size: 20px !important;
}
.p-top-options__group .op-second .option-btn p {
  margin-top: 10px;
}
.p-top-options__group .op-third {
  background-color: #e3f6e0;
}
.p-top-options__group .op-third .content-title {
  font-size: 24px;
}
@media (max-width: 600px) {
  .p-top-options__group .op-third .content-title {
    font-size: 21px;
  }
}
.p-top-options__group .op-third .option-btn-tip p span {
  font-size: 20px !important;
}
.p-top-options__group .op-third .option-btn p {
  margin-top: 10px;
}
.p-top-options__group .op-third .option-contents {
  padding-inline: 16.5px;
  justify-content: space-between;
}
.p-top-options__group .op-third .option-contents img {
  width: 114px;
  margin-left: 4px;
}
@media (max-width: 600px) {
  .p-top-options__group .op-third .option-btn-tip p {
    font-size: 23px !important;
  }
}

.p-top-worry {
  padding-top: 32px;
  padding-bottom: 80px;
  background: #ffffff;
}
@media (max-width: 600px) {
  .p-top-worry {
    padding-block: 32px;
  }
}
.p-top-worry__title p {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .p-top-worry__title p {
    font-size: 20px;
  }
}
.p-top-worry__title span {
  color: #077bc7;
  font-weight: bold;
}
.p-top-worry__lists {
  max-width: 1080px;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.p-top-worry__list {
  border-radius: 8px;
  background: #fff;
  width: 350px;
  padding: 20px 16px;
}
@media (max-width: 600px) {
  .p-top-worry__list {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    padding: 10px 20px;
  }
}
.p-top-worry__bubble {
  padding: 30px 22px;
  background-image: url(../img/front/worry/worry-bubble.webp);
  background-size: contain;
  aspect-ratio: 304/180;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 600px) {
  .p-top-worry__bubble {
    width: 248px;
    height: 157px;
    padding: 18px 11px 13px 25px;
    background-image: url(../img/front/worry/worry-bubble-sp-left.png);
  }
}
@media (max-width: 600px) {
  .p-top-worry__right-box {
    flex-direction: row;
  }
}
@media (max-width: 600px) {
  .p-top-worry__right {
    background-image: url(../img/front/worry/worry-bubble-sp-right.png);
    padding: 18px 25px 13px 11px;
  }
}
@media (max-width: 600px) {
  .p-top-worry__right__2 {
    background-image: url(../img/front/worry/worry-bubble-sp-6.png);
    padding: 18px 25px 13px 11px;
    height: 185px;
  }
}
.p-top-worry__right__3 {
  background-image: url(../img/front/worry/worry-bubble-3.png);
  padding: 10px 22px;
}
@media (max-width: 600px) {
  .p-top-worry__right__3 {
    height: 249px;
    background-image: url(../img/front/worry/worry-bubble-3-sp.png);
    padding: 33px 20px 13px 30px;
  }
}
@media (max-width: 600px) {
  .p-top-worry__right__4 {
    background-image: url(../img/front/worry/worry-bubble-sp-4.png);
    padding: 18px 25px 13px 11px;
    height: 172px;
  }
}
@media (max-width: 600px) {
  .p-top-worry__right__5 {
    padding: 12px 15px 11px 20px;
    height: 172px;
  }
}
@media (max-width: 600px) {
  .p-top-worry__right__6 {
    background-image: url(../img/front/worry/worry-bubble-sp-6.png);
    padding: 18px 25px 13px 11px;
    height: 184px;
  }
}
.p-top-worry__text-blue {
  color: #077bc7;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media (max-width: 600px) {
  .p-top-worry__text-blue {
    font-size: 16px;
  }
}
.p-top-worry__text {
  margin: 10px auto 0;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  line-height: normal;
  padding-bottom: 4px;
}
@media (max-width: 600px) {
  .p-top-worry__text {
    width: 100%;
    margin: 10px 0 0 0;
    font-size: 16px;
    font-weight: normal;
  }
}
.p-top-worry__img {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-top-worry__img img {
  width: 150px;
}
@media (max-width: 600px) {
  .p-top-worry__img img {
    width: 75.1px;
  }
}
.p-top-worry__profile {
  margin: 8px auto 0;
  color: #333;
  font-family: "Noto Sans JP";
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
}
@media (max-width: 600px) {
  .p-top-worry__profile {
    font-size: 14px;
  }
}
.p-top-worry__line {
  display: none;
}
@media (max-width: 450px) {
  .p-top-worry__line {
    all: unset;
    display: block;
    width: 90%;
    margin: auto;
  }
}
.p-top-worry__line p {
  font-size: 16px;
  color: #424344;
  text-align: center;
  font-weight: bold;
  margin-bottom: 8px;
}

.p-top-coupon {
  background: #f9e775;
  padding: 10px 11px;
}
@media (max-width: 1000px) {
  .p-top-coupon {
    display: none;
  }
}
.p-top-coupon__container {
  padding: 8px 0;
  border: 2px solid #fff;
  display: flex;
  gap: 42px;
  align-items: center;
  justify-content: center;
}
.p-top-coupon__left {
  width: 289px;
}
.p-top-coupon__right {
  width: 420px;
  color: #077bc7;
}
.p-top-coupon__text-top {
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
}
.p-top-coupon__text-bottom {
  margin: 4px 0 0 0;
  font-family: "Noto Sans JP";
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2px;
}

.p-top-about {
  position: relative;
  padding-bottom: 80px;
}
@media (max-width: 600px) {
  .p-top-about {
    padding-bottom: 0;
  }
}
.p-top-about__container {
  margin: 0 auto;
  padding: 40px 40px;
  width: 1090px;
  max-width: 100%;
  background: #fff;
  border: 5px solid #077bc7;
  border-radius: 8px;
}
@media (max-width: 600px) {
  .p-top-about__container {
    border: 2px solid #077bc7;
    max-width: 100%;
    width: 100%;
    padding-inline: 0;
    padding-block: 58px 16px;
  }
}
.p-top-about__top {
  display: flex;
}
@media (max-width: 900px) {
  .p-top-about__top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .p-top-about__top {
    display: block;
    padding-inline: 14px;
  }
}
.p-top-about__img-doctor {
  width: 240px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .p-top-about__img-doctor {
    position: absolute;
    top: -32px;
    left: -18px;
    width: 112px;
  }
}
@media (max-width: 600px) {
  .p-top-about__top-middle {
    padding-inline: 20px;
  }
}
.p-top-about__title {
  display: flex;
  letter-spacing: 0;
  align-items: end;
  flex-direction: row;
  text-align: center;
  flex-wrap: wrap;
  font-family: "Noto Sans JP";
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 600px) {
  .p-top-about__title {
    font-size: 28px;
  }
}
.p-top-about__title h2 {
  color: #077bc7;
  font-weight: 700;
}
.p-top-about__title .p-top-about__img-capsule {
  display: flex;
  width: 70px;
  height: 58px;
}
@media (max-width: 600px) {
  .p-top-about__title .p-top-about__img-capsule {
    width: 35px;
    height: 30px;
  }
}
.p-top-about__title span {
  font-weight: bold;
}
.p-top-about__top-text {
  margin-top: 20px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%; /* 28.8px */
}
.p-top-about__top-text span {
  font-weight: bold;
}
.p-top-about__img-man {
  width: 220px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .p-top-about__img-man {
    position: absolute;
    right: -15px;
    top: -22px;
    width: 112px;
  }
}
.p-top-about__medicine-title {
  margin: 16px auto 0;
  color: var(--2, #5b5c5e);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
  letter-spacing: 0.9px;
}
@media (max-width: 600px) {
  .p-top-about__medicine-title {
    margin: 20px auto 0;
  }
}
.p-top-about__medicine-lists {
  margin: 10px auto 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 1100px) {
  .p-top-about__medicine-lists {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .p-top-about__medicine-lists {
    column-gap: 24px;
    padding-inline: 14px;
  }
}
.p-top-about__medicine-list {
  width: fit-content;
  min-width: 164px;
  height: 214px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .p-top-about__medicine-list {
    min-width: 125px;
    height: 118px;
  }
}
.p-top-about__medicine-list p {
  font-size: 14px;
  font-weight: 700;
  color: #5b5c5e;
  padding-block: 16px;
}
@media (max-width: 600px) {
  .p-top-about__medicine-list p {
    padding-block: 8px;
    font-size: 12px;
  }
}
.p-top-about__medicine-list img {
  height: 128px;
  width: auto;
}
@media (max-width: 600px) {
  .p-top-about__medicine-list img {
    height: 80px;
  }
}
.p-top-about__linebtn {
  width: 100%;
}
.p-top-about__linebtn p {
  font-size: 26px;
  font-weight: bold;
  color: #424344;
  text-align: center;
  margin-bottom: 9px;
}
@media (max-width: 600px) {
  .p-top-about__linebtn p {
    font-size: 16px;
  }
}
.p-top-about__linebtn a {
  width: 100%;
  box-shadow: 3px 3px 14px rgba(255, 253, 253, 0.44);
}

.p-top-content {
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .p-top-content {
    padding-inline: 14px;
  }
}
.p-top-content__container {
  width: 100%;
  height: 100%;
  padding-top: 45.4px;
}
.p-top-content__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-content__lists {
    gap: 70px;
  }
}
.p-top-content__list {
  width: 488px;
  background: #fff;
  padding: 0 20px 27px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-top-content__list {
    padding: 0 20px 47px;
  }
}
.p-top-content__list:nth-child(5) {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-direction: column;
}
.p-top-content__list:nth-child(5) .p-top-content__list-img {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.p-top-content__list:nth-child(5) .p-top-content__list-img picture {
  width: 460px;
}
.p-top-content__list-number {
  margin: -45px auto 0;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background: #ea5e7f;
  color: #fff;
  text-align: center;
  font-family: "Inter";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 100px;
  letter-spacing: 1.8px;
}
.p-top-content__list-img {
  width: 100%;
  margin-top: 21px;
}
.p-top-content__list-img img {
  width: 100%;
  height: auto;
}
.p-top-content__list-blue {
  margin-top: 20px;
  color: #077bc7;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
}
.p-top-content__list-text {
  margin-top: 20px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  letter-spacing: 0.9px;
}
@media (max-width: 768px) {
  .p-top-content__list-text {
    font-weight: normal;
  }
}

.p-top-setplan {
  background: #e7f1f9;
  padding: 60px 15px 80px;
}
@media (max-width: 600px) {
  .p-top-setplan {
    padding: 40px 12px;
  }
}
.p-top-setplan__title-box {
  font-family: "Noto Sans JP";
  font-size: 36px;
  text-align: center;
  width: 100%;
  max-width: 1080px;
  margin: auto;
}
.p-top-setplan__title-box .title-tip {
  background-image: url(../img/front/setplan/title-tip.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 426px;
  height: 78.6px;
  display: flex;
  justify-content: center;
  font-size: 22px;
  padding-top: 18px;
  margin: auto;
}
@media (max-width: 768px) {
  .p-top-setplan__title-box .title-tip {
    background-image: url(../img/front/setplan/title-tip-sp.png);
    width: 343px;
    padding-top: 8px;
    line-height: 1.1;
  }
}
.p-top-setplan__title-box .title-tip p {
  color: #ea5e7f;
  font-weight: bold;
}
.p-top-setplan__title-box .title-tip span {
  font-size: 18px;
  font-weight: bold;
  color: #444444;
}
.p-top-setplan__title-box .title-txt {
  font-size: 42px;
  font-weight: bold;
  color: #077bc7;
  padding-block: 8px;
}
@media (max-width: 600px) {
  .p-top-setplan__title-box .title-txt {
    font-size: 32px;
  }
}
.p-top-setplan__title-box .title-img {
  width: 278px;
  margin: auto;
}
@media (max-width: 600px) {
  .p-top-setplan__title-box .title-img {
    width: 100%;
  }
}
.p-top-setplan__title-box .title-btm-txt {
  font-size: 20px;
  color: #444444;
  margin: auto;
  margin-top: 8px;
  text-align: start;
  width: 100%;
}
@media (max-width: 1110px) {
  .p-top-setplan__title-box .title-btm-txt {
    max-width: 700px;
  }
}
@media (max-width: 750px) {
  .p-top-setplan__title-box .title-btm-txt {
    max-width: 350px;
  }
}
@media (max-width: 600px) {
  .p-top-setplan__title-box .title-btm-txt {
    font-size: 16px;
    line-height: 1.3;
  }
}
.p-top-setplan__title-box .title-btm-txt span {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top-setplan__title-box {
    font-size: 28px;
    letter-spacing: 1.4px;
  }
}
.p-top-setplan__card-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1080px;
  margin: auto;
  padding-block: 32px 12px;
  gap: 15px;
}
@media (max-width: 600px) {
  .p-top-setplan__card-group {
    padding-block: 32px 24px;
  }
}
.p-top-setplan__card-group .card {
  width: 350px;
  height: 470px;
  background-color: #ffffff;
  padding: 20px 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}
@media (max-width: 600px) {
  .p-top-setplan__card-group .card {
    padding: 20px 24px;
    height: 415px;
  }
}
.p-top-setplan__card-group .card .card-title-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-top-setplan__card-group .card .card-title-box img {
  width: 48px;
}
@media (max-width: 600px) {
  .p-top-setplan__card-group .card .card-title-box img {
    width: 32px;
  }
}
.p-top-setplan__card-group .card .card-title-box p {
  font-size: 28px;
  font-weight: 700;
  color: #ea5e7f;
  line-height: 1;
}
@media (max-width: 600px) {
  .p-top-setplan__card-group .card .card-title-box p {
    font-size: 24px;
  }
}
.p-top-setplan__card-group .card .card-img {
  margin: 0 auto;
}
.p-top-setplan__card-group .card .card-img img {
  width: 240px;
}
@media (max-width: 600px) {
  .p-top-setplan__card-group .card .card-img img {
    width: 200px;
  }
}
.p-top-setplan__card-group .card .card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-top-setplan__card-group .card .card-content .card-txt-box {
  position: relative;
  padding-top: 17px;
}
@media (max-width: 600px) {
  .p-top-setplan__card-group .card .card-content .card-txt-box {
    padding-top: 12px;
  }
}
.p-top-setplan__card-group .card .card-content .card-txt-box p {
  width: 100%;
  font-size: 16px;
  padding: 16px;
  color: #5b5c5e;
  background-color: #f5f5f5;
  border-radius: 8px;
  line-height: 1.1;
}
@media (max-width: 600px) {
  .p-top-setplan__card-group .card .card-content .card-txt-box p {
    font-size: 15px;
  }
}
.p-top-setplan__card-group .card .card-content .card-txt-box.btm p {
  font-size: 14px;
}
.p-top-setplan__card-group .card .card-content .card-tip {
  position: absolute;
  width: fit-content;
  top: 0;
  left: 0;
  font-size: 14px;
  color: #ffffff;
  padding: 4px 8px;
  background-color: #077bc7;
  border-radius: 4px;
}
@media (max-width: 600px) {
  .p-top-setplan__card-group .card .card-content .card-tip {
    padding: 2px 8px;
  }
}
.p-top-setplan__card-group .card .card-btn {
  width: 100%;
}
.p-top-setplan__card-group .card .card-btn .yellow-btn {
  background: linear-gradient(90deg, #e37e73 0%, #edad45 100%);
}
.p-top-setplan__card-group .card .card-btn .line-btn {
  background: linear-gradient(180deg, #7be54d 0%, #04c151 100%);
  height: 38px;
  gap: 4px;
  width: 273px;
}
.p-top-setplan__card-group .card .card-btn .line-btn p {
  font-size: 14px;
  color: #ffffff;
}
.p-top-setplan__card-group .card .card-btn a {
  width: 100%;
  height: 67px;
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  margin: auto;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.p-top-setplan__card-group .card .card-btn p {
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #ffffff;
}
.p-top-setplan__card-group .card .card-btn span {
  font-size: 14px;
  font-weight: 700;
}
.p-top-setplan__card-group .card .card-btn img {
  width: 18px;
  height: 18px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
  border-radius: 50%;
}
.p-top-setplan__btm-txt {
  max-width: 1080px;
  margin: auto;
  width: 100%;
  font-size: 14px;
  color: #666666;
  text-align: end;
}
@media (max-width: 600px) {
  .p-top-setplan__btm-txt {
    text-align: start;
  }
}

.p-top-medicine {
  padding: 60px 0px 60px;
  background: url("../img/front/medicine/medicine-bg-pc.png") no-repeat center
    center/cover;
}
@media (max-width: 600px) {
  .p-top-medicine {
    padding-inline: 0;
    padding-block: 0;
  }
}
@media (max-width: 600px) {
  .p-top-medicine__top-case {
    padding-top: 48px;
    background: linear-gradient(to bottom, #077bc7 0%, #46a0dc 100%);
  }
}
.p-top-medicine__btm-case {
  padding-inline: 16px;
}
@media (max-width: 600px) {
  .p-top-medicine__btm-case {
    background-color: #077bc7;
  }
}
.p-top-medicine__title-box {
  font-family: "Noto Sans JP";
  font-size: 36px;
  text-align: center;
  width: 100%;
  max-width: 1080px;
  margin: auto;
}
@media (max-width: 600px) {
  .p-top-medicine__title-box {
    padding-inline: 16px;
  }
}
.p-top-medicine__title-box .title-tip {
  background-image: url(../img/front/setplan/title-tip.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 426px;
  height: 78.6px;
  display: flex;
  justify-content: center;
  font-size: 22px;
  padding-top: 18px;
  margin: auto;
}
@media (max-width: 768px) {
  .p-top-medicine__title-box .title-tip {
    background-image: url(../img/front/setplan/title-tip-sp.png);
    width: 311px;
    padding-top: 8px;
    line-height: 1.1;
  }
}
.p-top-medicine__title-box .title-tip p {
  color: #ea5e7f;
  font-weight: bold;
}
.p-top-medicine__title-box .title-tip span {
  font-size: 18px;
  font-weight: bold;
  color: #444444;
}
.p-top-medicine__title-box .title-txt {
  font-size: 42px;
  font-weight: bold;
  color: #ffffff;
  padding-block: 30px;
}
@media (max-width: 600px) {
  .p-top-medicine__title-box .title-txt {
    font-size: 32px;
    line-height: 1.2;
    padding-block: 8px;
  }
}
.p-top-medicine__title-box .title-mdl-txt {
  font-size: 20px;
  color: #ffffff;
  text-align: start;
  padding-inline: 20px;
  padding-bottom: 34px;
}
@media (max-width: 600px) {
  .p-top-medicine__title-box .title-mdl-txt {
    font-size: 16px;
    line-height: 1.3;
    padding-inline: 0;
  }
}
.p-top-medicine__title-box .title-mdl-txt p {
  margin: auto;
  width: fit-content;
}
.p-top-medicine__title-box .title-mdl-txt span {
  font-weight: bold;
}
.p-top-medicine__doctor-slide {
  width: 100%;
  margin: 0;
  background-color: #c7d8e9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1100px) {
  .p-top-medicine__doctor-slide {
    border-radius: 0;
  }
}
.p-top-medicine__doctor-slide .slide-container {
  padding-block: 73px;
  width: 100%;
  max-width: 1380px;
  overflow: scroll;
}
@media (max-width: 1400px) {
  .p-top-medicine__doctor-slide .slide-container {
    padding-inline: 20px;
  }
}
@media (max-width: 768px) {
  .p-top-medicine__doctor-slide .slide-container {
    display: none;
  }
}
.p-top-medicine__doctor-slide .slide-case {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  gap: 48px;
}
@media (max-width: 1024px) {
  .p-top-medicine__doctor-slide .slide-case {
    padding-inline: 20px;
  }
}
.p-top-medicine__doctor-slide .slide-case-sp {
  display: none;
}
@media (max-width: 768px) {
  .p-top-medicine__doctor-slide .slide-case-sp {
    display: flex;
  }
}
.p-top-medicine__doctor-slide .slide-case-sp .carousel {
  width: fit-content;
  padding-block: 32px 84px;
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
}
.p-top-medicine__doctor-slide .slide-case-sp .carousel-track {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.8s cubic-bezier(0.22, 0.9, 0.36, 1);
}
.p-top-medicine__doctor-slide .slide-case-sp .slide {
  flex: 0 0 70%;
  margin: 0 2%;
  user-select: none;
}
.p-top-medicine__doctor-slide .slide-case-sp .carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.p-top-medicine__doctor-slide .slide-case-sp .carousel-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 0;
  cursor: pointer;
}
.p-top-medicine__doctor-slide .slide-case-sp .carousel-dot.active {
  background: #087bc7;
  transform: scale(1.15);
}
.p-top-medicine__doctor-slide .slide {
  width: 300px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 600px) {
  .p-top-medicine__doctor-slide .slide {
    width: 214px;
    padding-bottom: 13px;
  }
}
.p-top-medicine__doctor-slide .slide:nth-child(3) img {
  width: 65%;
}
.p-top-medicine__doctor-slide .slide-content {
  padding-inline: 16px;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 275px;
  margin-top: 16px;
}
@media (max-width: 600px) {
  .p-top-medicine__doctor-slide .slide-content {
    height: 213px;
    padding-bottom: 13px;
  }
}
.p-top-medicine__doctor-slide .slide-content .doctor-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-top-medicine__doctor-slide .slide-content .doctor-info .name {
  color: #333333;
}
.p-top-medicine__doctor-slide .slide-content .doctor-info .name p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.05;
}
@media (max-width: 600px) {
  .p-top-medicine__doctor-slide .slide-content .doctor-info .name p {
    font-size: 16px;
  }
}
.p-top-medicine__doctor-slide .slide-content .doctor-info .name span {
  font-size: 16px;
  font-weight: bold;
  margin-left: 2px;
}
@media (max-width: 600px) {
  .p-top-medicine__doctor-slide .slide-content .doctor-info .name span {
    font-size: 14px;
  }
}
.p-top-medicine__doctor-slide .slide-content .doctor-info .job {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-top-medicine__doctor-slide .slide-content .doctor-info .job p {
  background-color: #087bc7;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 200px;
}
@media (max-width: 600px) {
  .p-top-medicine__doctor-slide .slide-content .doctor-info .job p {
    font-size: 12px;
  }
}
.p-top-medicine__doctor-slide .slide-content .doctor-info .history p {
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .p-top-medicine__doctor-slide .slide-content .doctor-info .history p {
    font-size: 12px;
  }
}
.p-top-medicine__doctor-slide .slide-content .more-btn {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.p-top-medicine__doctor-slide .slide-content .more-btn a {
  width: 100%;
  max-width: 268px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background-color: #087bc7;
  font-size: 18px;
  font-weight: bold;
  padding-block: 8px;
  border-radius: 4px;
  color: #ffffff;
  text-align: center;
}
.p-top-medicine__doctor-slide .slide-content .more-btn a span {
  font-size: 10px;
}
.p-top-medicine__line-btn {
  max-width: 1080px;
  padding: 48px 20px 0;
  margin: auto;
}
@media (max-width: 600px) {
  .p-top-medicine__line-btn {
    padding-inline: 8.5px;
    padding-block: 30px 48px;
  }
}
.p-top-medicine__line-btn p {
  font-size: 32px;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .p-top-medicine__line-btn p {
    font-size: 16px;
    color: #4f4e4e;
    background-color: #fffdfd;
    padding: 3px 10px;
    width: fit-content;
    margin: 0 auto 10px;
  }
}
.p-top-medicine__line-btn a {
  box-shadow: 3px 3px 14px rgba(255, 253, 253, 0.44);
  border-radius: 100px;
}
.p-top-medicine__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 1100px;
  width: 100%;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .p-top-medicine__lists {
    margin: 0;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
  }
}
.p-top-medicine__lists__title {
  font-size: 28px;
  color: #ffffff;
  padding-block: 33px 20px;
}
.p-top-medicine__lists__title p {
  font-weight: bold;
  text-align: center;
}
.p-top-medicine__list {
  width: 350px;
  padding: 25px 20px 35px;
  border-radius: 8px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-top-medicine__list {
    padding: 16px;
  }
}
.p-top-medicine__list-img {
  width: 70px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top-medicine__list-img {
    width: 50px;
  }
}
.p-top-medicine__list-title {
  margin: 15px auto 0;
  color: #333;
  font-family: "Noto Sans JP";
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top-medicine__list-title {
    margin: 3px auto 0;
    font-size: 20px;
    letter-spacing: 1px;
  }
}
.p-top-medicine__list-pink {
  display: inline-block;
  margin-top: 16px;
  border-radius: 10px;
  background: var(--2, #ea5e7f);
  padding: 4px 16px;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0.8px;
}
.p-top-medicine__list-text {
  margin-top: -14px;
  color: var(--2, #5b5c5e);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  padding: 16px;
  border-radius: 10px;
  background: #f5f5f5;
}
.p-top-medicine__list-text span {
  color: #ff0000;
}
.p-top-medicine__list-text + .p-top-medicine__list-pink {
  margin-top: 19px;
}
@media screen and (max-width: 767px) {
  .p-top-medicine__list-text + .p-top-medicine__list-pink {
    margin-top: 13px;
  }
}
.p-top-medicine__list-more {
  margin: 15px auto 0;
  padding: 21px 0 21px 17px;
  width: 350px;
  border-radius: 20px;
  background: #fcf9ee;
  font-family: "Noto Sans JP";
  color: #46a0dc;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.2px;
  position: relative;
}
.p-top-medicine__list-more::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 81px;
  width: 32px;
  height: 32px;
  background-image: url(../img/front/treatment-more-arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (min-width: 745px) {
  .p-top-medicine__list-more {
    display: none;
  }
}
.p-top-medicine__line-wrapper {
  display: none;
}
@media (max-width: 450px) {
  .p-top-medicine__line-wrapper {
    display: block;
    padding: 20px 0 60px;
    background: #077bc7;
  }
}
.p-top-medicine__line {
  display: none;
}
@media (max-width: 450px) {
  .p-top-medicine__line {
    all: unset;
    display: block;
    width: 350px;
    margin: 0 auto 0;
  }
}

.p-top-chatplan {
  background-color: #cde5f7;
  padding-block: 80px;
}
@media (max-width: 768px) {
  .p-top-chatplan {
    padding: 48px 16px;
  }
}
.p-top-chatplan__title-box {
  font-family: "Noto Sans JP";
  font-size: 36px;
  text-align: center;
  width: 100%;
  max-width: 1080px;
  margin: auto;
}
.p-top-chatplan__title-box .title-tip {
  background-image: url(../img/front/setplan/title-tip.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 426px;
  height: 78.6px;
  display: flex;
  justify-content: center;
  font-size: 22px;
  padding-top: 18px;
  margin: auto;
}
@media (max-width: 768px) {
  .p-top-chatplan__title-box .title-tip {
    background-image: url(../img/front/setplan/title-tip-sp.png);
    width: 311px;
    padding-top: 8px;
    line-height: 1.1;
  }
}
.p-top-chatplan__title-box .title-tip p {
  color: #ea5e7f;
  font-weight: bold;
}
.p-top-chatplan__title-box .title-tip span {
  font-size: 18px;
  font-weight: bold;
  color: #444444;
}
.p-top-chatplan__title-box .title-txt {
  font-size: 42px;
  font-weight: bold;
  color: #077bc7;
  padding-block: 8px 32px;
}
@media (max-width: 600px) {
  .p-top-chatplan__title-box .title-txt {
    font-size: 32px;
    line-height: 1.2;
    padding-block: 8px;
  }
}
.p-top-chatplan__intro {
  width: 100%;
  max-width: 1080px;
  height: 538px;
  margin: auto;
  position: relative;
}
@media (max-width: 768px) {
  .p-top-chatplan__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
  }
}
.p-top-chatplan__intro .phone-img {
  width: 260px;
  position: absolute;
  left: 98px;
}
@media (max-width: 768px) {
  .p-top-chatplan__intro .phone-img {
    position: unset;
    width: 272px;
  }
}
.p-top-chatplan__intro .phone-img img {
  width: 100%;
  height: auto;
}
.p-top-chatplan__intro .price-case {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  gap: 16px;
  position: absolute;
  width: 100%;
  height: 149px;
  max-width: 1080px;
  bottom: 0;
  z-index: 2;
}
@media (max-width: 768px) {
  .p-top-chatplan__intro .price-case {
    position: unset;
    margin-bottom: 16px;
    height: fit-content;
  }
}
.p-top-chatplan__intro .price-case img {
  width: 140px;
}
@media (max-width: 768px) {
  .p-top-chatplan__intro .price-case img {
    width: 120px;
  }
}
.p-top-chatplan__intro .price-case .price-txt {
  display: flex;
  align-items: center;
  color: #444444;
  font-size: 28px;
  gap: 16px;
}
@media (max-width: 768px) {
  .p-top-chatplan__intro .price-case .price-txt {
    font-size: 20px;
    flex-direction: column;
    line-height: 1.2;
    gap: 0;
  }
}
.p-top-chatplan__intro .price-case .price-txt p {
  font-weight: bold;
}
.p-top-chatplan__intro .price-case .price-txt span {
  font-size: 42px;
  font-family: "Inter";
  font-weight: bold;
  color: #ea5e7f;
}
.p-top-chatplan__intro .intro-ad {
  background-color: #ffeca9;
  border: 3px solid #ffffff;
  border-radius: 32px 32px 32px 0;
  padding: 48px;
  width: fit-content;
  position: absolute;
  right: 98px;
  top: 30px;
  z-index: 1;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .p-top-chatplan__intro .intro-ad {
    position: unset;
    width: 100%;
    padding: 32px 16px;
  }
}
.p-top-chatplan__intro .intro-ad p {
  font-size: 24px;
  color: #077bc7;
  font-weight: bold;
  text-align: center;
}
.p-top-chatplan__intro .intro-ad .ad-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}
.p-top-chatplan__intro .intro-ad .ad-group .ad {
  width: 292px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  gap: 4px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.08);
}
.p-top-chatplan__intro .intro-ad .ad-group .ad p {
  font-size: 18px;
  color: #444444;
  font-weight: 500;
}
.p-top-chatplan__intro .intro-ad .ad-group .ad img {
  width: 32px;
  height: 32px;
}
.p-top-chatplan__concern {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  margin-top: 48px;
  padding-block: 48px;
  background-color: #ffffff;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .p-top-chatplan__concern {
    margin-top: 32px;
    padding-block: 32px;
  }
}
.p-top-chatplan__concern .title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .p-top-chatplan__concern .title {
    font-size: 21px;
  }
}
.p-top-chatplan__concern .title p {
  font-weight: bold;
  color: #444444;
}
.p-top-chatplan__concern .concern-group {
  display: flex;
  justify-content: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .p-top-chatplan__concern .concern-group {
    flex-direction: column;
    align-items: center;
  }
}
.p-top-chatplan__concern .concern-group .concern {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
}
.p-top-chatplan__concern .concern-group .concern p {
  font-size: 20px;
  font-weight: 500;
  color: #077bc7;
}
.p-top-chatplan__concern .concern-group .concern .concern-avatar {
  width: 70px;
  padding-block: 8px;
}
.p-top-chatplan__concern .concern-group .concern .concern-avatar img {
  width: 100%;
}
.p-top-chatplan__concern .concern-group .concern .concern-txt {
  font-size: 14px;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.08);
  margin-top: 10px;
}
.p-top-chatplan__concern .concern-group .concern .concern-txt p {
  font-size: 14px;
  color: #444444;
  font-weight: normal;
}
.p-top-chatplan__steps {
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 48px auto;
}
@media (max-width: 768px) {
  .p-top-chatplan__steps {
    flex-direction: column-reverse;
    margin: 48px 0 auto;
  }
}
.p-top-chatplan__steps .steps-container {
  width: 100%;
  padding-block: 24px 16px;
  gap: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000000;
  border-radius: 16px;
  margin: 48px auto;
}
@media (max-width: 768px) {
  .p-top-chatplan__steps .steps-container {
    flex-direction: column;
    align-items: center;
    border: none;
    padding-left: 20px;
    gap: 8px;
    margin: 32px auto;
  }
}
.p-top-chatplan__steps .steps-container span {
  color: #077bc7;
}
@media (max-width: 768px) {
  .p-top-chatplan__steps .steps-container span {
    rotate: 90deg;
    height: 7px;
  }
}
.p-top-chatplan__steps .steps-container .step {
  position: relative;
  width: 240px;
  height: 120px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .p-top-chatplan__steps .steps-container .step {
    min-height: 67px;
    height: auto;
    padding-block: 24px;
    width: 100%;
    display: flex;
    align-items: center;
  }
}
.p-top-chatplan__steps .steps-container .step .num {
  position: absolute;
  top: -16px;
  width: 32px;
  height: 32px;
  background-color: #077bc7;
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .p-top-chatplan__steps .steps-container .step .num {
    top: unset;
    left: -20px;
    width: 42px;
    height: 42px;
  }
}
.p-top-chatplan__steps .steps-container .step p {
  font-size: 16px;
  font-weight: 500;
  color: #444444;
  margin: auto auto;
  text-align: center;
}
.p-top-chatplan__steps .video-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 727px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 20px;
}
.p-top-chatplan__steps .video-container .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-top-chatplan__steps .video-container .title span {
  color: #d8423a;
  font-weight: bold;
}
.p-top-chatplan__steps .video-container .container {
  padding: 0;
}
.p-top-chatplan__steps .video-container .container video {
  width: 100%;
}
.p-top-chatplan__line-btn {
  max-width: 1080px;
  margin: auto;
}
.p-top-chatplan__line-btn p {
  font-size: 32px;
  color: #606062;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .p-top-chatplan__line-btn p {
    font-size: 16px;
    color: #4f4e4e;
    padding: 3px 10px;
    width: fit-content;
    margin: 0 auto 8px;
  }
}
.p-top-chatplan__line-btn a {
  box-shadow: 3px 3px 14px rgba(255, 253, 253, 0.44);
  border-radius: 100px;
}
.p-top-chatplan__feature {
  width: 100%;
  max-width: 1080px;
  margin: 48px auto;
  padding-block: 48px;
  background-color: #ffffff;
  border-radius: 16px;
}
@media (max-width: 600px) {
  .p-top-chatplan__feature {
    margin: 32px auto;
    padding-block: 32px;
  }
}
.p-top-chatplan__feature .title {
  font-size: 28px;
  margin-bottom: 48px;
}
@media (max-width: 600px) {
  .p-top-chatplan__feature .title {
    font-size: 28px;
    margin-bottom: 24px;
    line-height: 1.2;
  }
}
.p-top-chatplan__feature .title p {
  font-weight: bold;
  text-align: center;
  color: #077bc7;
}
.p-top-chatplan__feature .feature-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (max-width: 600px) {
  .p-top-chatplan__feature .feature-group {
    padding-inline: 16px;
  }
}
.p-top-chatplan__feature .feature-group .feature {
  width: 100%;
  max-width: 898px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 600px) {
  .p-top-chatplan__feature .feature-group .feature {
    flex-direction: column;
    align-items: center;
  }
}
.p-top-chatplan__feature .feature-group .feature img {
  width: 240px;
  height: auto;
}
@media (max-width: 600px) {
  .p-top-chatplan__feature .feature-group .feature img {
    width: 100%;
  }
}
.p-top-chatplan__feature .feature-group .feature .feature-txt p:nth-of-type(1) {
  font-size: 20px;
  font-weight: bold;
  color: #444444;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .p-top-chatplan__feature
    .feature-group
    .feature
    .feature-txt
    p:nth-of-type(1) {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.p-top-chatplan__feature .feature-group .feature .feature-txt p:nth-of-type(2) {
  font-size: 16px;
  color: #444444;
}
@media (max-width: 600px) {
  .p-top-chatplan__feature
    .feature-group
    .feature
    .feature-txt
    p:nth-of-type(2) {
    font-size: 14px;
  }
}
.p-top-chatplan__feature .feature-group .dir-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 600px) {
  .p-top-chatplan__feature .feature-group .dir-reverse {
    flex-direction: column;
  }
}
.p-top-chatplan__note {
  width: 100%;
  max-width: 1080px;
  margin: 48px auto;
}
@media (max-width: 600px) {
  .p-top-chatplan__note {
    margin: 32px auto;
  }
}
.p-top-chatplan__note .title {
  font-size: 24px;
  color: #077bc7;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}
@media (max-width: 600px) {
  .p-top-chatplan__note .title {
    font-size: 18px;
  }
}
.p-top-chatplan__note .title p {
  background-color: #cde5f7;
  font-weight: bold;
  width: fit-content;
  margin: auto;
  padding-inline: 16px;
  position: inherit;
  z-index: 2;
}
.p-top-chatplan__note .title::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #077bc7;
  left: 0;
  bottom: 17px;
  z-index: 1;
}
@media (max-width: 600px) {
  .p-top-chatplan__note .title::after {
    bottom: 12px;
  }
}
.p-top-chatplan__note ul {
  width: fit-content;
  margin: auto;
}
@media (max-width: 600px) {
  .p-top-chatplan__note ul {
    padding-left: 18px;
  }
}
.p-top-chatplan__note li {
  font-size: 14px;
  color: #666666;
  list-style: disc;
}
@media (max-width: 600px) {
  .p-top-chatplan__note li {
    font-size: 12px;
  }
}

.p-top-doctor {
  background: #f4f4f4;
  padding-top: 170px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-doctor {
    padding-top: 150px;
    margin-top: -2px;
    background-color: #e7f1f9;
  }
}
.p-top-doctor__blue {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 2284px;
  height: 831.801px;
  border-radius: 100%;
  background: #e7f1f9;
  margin: 0 auto;
}
@media (max-width: 450px) {
  .p-top-doctor__blue {
    top: 0;
    width: 594.95px;
    height: 527.702px;
  }
}
.p-top-doctor__about {
  width: 100%;
  padding: 193px 0 40px;
  background: #e7f1f9;
}
@media (max-width: 600px) {
  .p-top-doctor__about {
    padding: 0 0 60px;
    padding-inline: 14px;
  }
}
.p-top-doctor__about-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -170px;
  position: relative;
  z-index: 1;
  text-align: center;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.8px;
}
@media (max-width: 450px) {
  .p-top-doctor__about-title {
    font-size: 24px;
    margin-top: -116px;
  }
}
.p-top-doctor__about-title h2 {
  color: #077bc7;
  font-weight: 700;
}
.p-top-doctor__about-title span {
  font-weight: bold;
}
.p-top-doctor__box {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1080px;
  background: #fff;
  border-radius: 8px;
  margin: 40px auto 0;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  gap: 8%;
}
@media (max-width: 850px) {
  .p-top-doctor__box {
    flex-direction: column;
    gap: 10px;
    padding: 16px 23px;
    max-width: 500px;
  }
}
@media (max-width: 600px) {
  .p-top-doctor__box {
    width: 100%;
  }
}
.p-top-doctor__box-texts {
  width: 64%;
  flex-shrink: 0;
}
@media (max-width: 850px) {
  .p-top-doctor__box-texts {
    width: 100%;
  }
}
.p-top-doctor__box-title-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 850px) {
  .p-top-doctor__box-title-wrapper {
    gap: 4px;
  }
}
.p-top-doctor__box-specialty {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 1px;
  padding: 10px;
  border-radius: 10px;
  background: #ea5e7f;
}
@media (max-width: 850px) {
  .p-top-doctor__box-specialty {
    font-size: 16px;
    line-height: 19px;
    padding: 6px;
    border-radius: 5px;
  }
}
.p-top-doctor__box-specialty + .p-top-doctor__box-title {
  margin-left: 8px;
}
.p-top-doctor__box-title {
  color: #077bc7;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
}
@media (max-width: 850px) {
  .p-top-doctor__box-title {
    display: none;
  }
}
.p-top-doctor__box-work {
  margin-top: 16px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}
@media (max-width: 850px) {
  .p-top-doctor__box-work {
    margin: 0;
  }
}
.p-top-doctor__box-name {
  display: flex;
  align-items: baseline;
  flex-direction: row;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.8px;
}
@media (max-width: 850px) {
  .p-top-doctor__box-name {
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}
.p-top-doctor__box-name h3 {
  font-weight: 700;
}
.p-top-doctor__box-name span {
  font-size: 24px;
  font-weight: 700;
}
.p-top-doctor__box-intro {
  margin-top: 10px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
}
@media (max-width: 850px) {
  .p-top-doctor__box-intro {
    font-size: 16px;
  }
}
.p-top-doctor__box-career-title {
  margin-top: 16px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
}
@media (max-width: 850px) {
  .p-top-doctor__box-career-title {
    margin-top: 20px;
  }
}
.p-top-doctor__box-career {
  margin-top: 8px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
}
@media (max-width: 850px) {
  .p-top-doctor__box-career {
    font-size: 16px;
  }
}
@media (max-width: 850px) {
  .p-top-doctor__box-img {
    display: none;
  }
}
.p-top-doctor__box-img-sp {
  width: 100%;
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top-doctor__box-img-sp img {
  width: 100%;
  height: auto;
  max-width: 231px;
}
@media (min-width: 851px) {
  .p-top-doctor__box-img-sp {
    display: none;
  }
}
.p-top-doctor .p-top-doctor__box-img-sp.female-dr img {
  max-width: 143px;
}
.p-top-doctor__button {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-doctor__button {
    all: unset;
    display: block;
    width: 90%;
    margin: 20px auto 0;
  }
}
.p-top-doctor__clinic-title {
  display: flex;
  margin-top: 40px;
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.8px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-doctor__clinic-title {
    margin-top: 20px;
    font-size: 24px;
    background: linear-gradient(180deg, #fff 0%, #097cc8 3.5%, #46a0dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.p-top-doctor__clinic-title span {
  color: #333333;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-top-doctor__clinic-title span {
    color: inherit;
  }
}
.p-top-doctor__clinic-title h2 {
  font-weight: 700;
  font-size: 36px;
  color: #077bc7;
}
@media screen and (max-width: 767px) {
  .p-top-doctor__clinic-title h2 {
    font-size: 24px;
  }
}
.p-top-doctor__clinic-box {
  width: 100%;
  max-width: 1080px;
  margin: 40px auto 0;
  padding: 30px 24px;
  background: #fff;
  border-radius: 8px;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-box {
    max-width: 500px;
    margin: 20px auto 0;
    padding: 30px 20px;
  }
}
.p-top-doctor__clinic-name-pc {
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.6px;
  background: linear-gradient(180deg, #fff 0%, #097cc8 3.5%, #46a0dc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-name-pc {
    display: none;
  }
}
.p-top-doctor__clinic-wrapper {
  margin-top: 20px;
  width: calc(100% + 60px);
  transform: translateX(-60px);
  display: flex;
  gap: 5.4%;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-wrapper {
    margin: 0;
    width: 100%;
    transform: none;
    flex-direction: column;
    gap: 20px;
  }
}
.p-top-doctor__clinic-img {
  width: 44%;
  flex-shrink: 0;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-img {
    width: 100%;
  }
}
.p-top-doctor__clinic-img img {
  width: 100%;
  height: auto;
}
.p-top-doctor__clinic-name-sp {
  display: none;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-name-sp {
    margin-top: 20px;
    display: block;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    background: linear-gradient(180deg, #fff 0%, #097cc8 3.5%, #46a0dc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
.p-top-doctor__clinic-text {
  color: var(--2, #5b5c5e);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.9px;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-text {
    font-size: 16px;
  }
}
.p-top-doctor__clinic-address {
  margin-top: 16px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.7px;
}
.p-top-doctor__clinic-btn {
  all: unset;
  margin-top: 20px;
  display: block;
  background: #ea5e7f;
  border-radius: 8px;
  padding: 10px 40px 10px 10px;
  position: relative;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-btn {
    box-sizing: border-box;
    width: 100%;
    padding: 6px 0 6px 45px;
  }
}
.p-top-doctor__clinic-btn::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background-image: url(../img/front/pink-arrow.webp);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-btn::after {
    right: 45px;
  }
}
.p-top-doctor__clinic-btn a {
  letter-spacing: 1px;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media (max-width: 850px) {
  .p-top-doctor__clinic-btn a {
    font-size: 18px;
    line-height: normal;
  }
}
@media (min-width: 851px) {
  .p-top-doctor__clinic-btn a br {
    display: none;
  }
}

.p-top-discussing {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #e7f1f9;
  color: #666666;
  font-size: 14px;
}
.p-top-discussing__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 729px;
  margin: auto;
  justify-content: center;
  align-items: center;
  gap: 19px;
  padding-inline: 11.5px;
}
.p-top-discussing__container h2 {
  font-weight: 700;
  font-style: bold;
  text-align: center;
  line-height: 150%;
  letter-spacing: 5%;
  font-size: 36px;
  color: #077bc7;
}
@media (max-width: 768px) {
  .p-top-discussing__container h2 {
    font-size: 24px !important;
  }
}
.p-top-discussing__container span {
  text-align: center;
  font-size: 16px;
}
.p-top-discussing__container .video-container {
  max-width: 729px;
  width: 100%;
}
@media (max-width: 600px) {
  .p-top-discussing__container .video-container {
    width: 300px;
  }
}
.p-top-discussing__container .video-container video {
  width: 100%;
}

.p-top-contact {
  background: #e7f1f9;
  padding-top: 30px;
  padding-bottom: 25px;
  position: relative;
}
@media (max-width: 650px) {
  .p-top-contact {
    padding-top: 26px;
    padding-bottom: 0;
  }
}
.p-top-contact__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.p-top-contact__phone {
  width: 173px;
  margin-bottom: -70px;
}
@media (max-width: 650px) {
  .p-top-contact__phone {
    display: none;
  }
}
.p-top-contact__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-top-contact__yellow {
  background: #f8d866;
  padding: 17px 0;
  width: 310px;
  text-align: center;
}
@media (max-width: 650px) {
  .p-top-contact__yellow {
    width: 240px;
    padding: 8px 0 12px;
    margin: 0 auto;
  }
}
.p-top-contact__yellow-big {
  color: #077bc7;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.6px;
}
@media (max-width: 650px) {
  .p-top-contact__yellow-big {
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}
.p-top-contact__yellow-small {
  margin-top: 10px;
  color: #077bc7;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.2px;
}
@media (max-width: 650px) {
  .p-top-contact__yellow-small {
    font-size: 20px;
    letter-spacing: 1px;
  }
}
.p-top-contact__doctor {
  width: 353px;
}
.p-top-contact__line-pc-wrapper {
  width: 345px;
}
@media (max-width: 650px) {
  .p-top-contact__line-pc-wrapper {
    display: none;
  }
}
.p-top-contact__line-strong {
  text-align: center;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.9px;
}
.p-top-contact__line-strong span {
  color: #077bc7;
}
.p-top-contact__line-pc {
  all: unset;
  margin-top: 5px;
  display: block;
  width: 100%;
  text-align: center;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.15);
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  color: #fff;
  border-radius: 50px;
  position: relative;
}
.p-top-contact__line-pc a {
  color: inherit;
}
.p-top-contact__line-sp-wrapper {
  box-sizing: border-box;
  width: 100%;
}
@media (min-width: 651px) {
  .p-top-contact__line-sp-wrapper {
    display: none;
  }
}
.p-top-contact__line-sp {
  all: unset;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  margin: 0 auto;
  width: 95%;
  max-width: 500px;
  padding: 13px 0;
  gap: 10px;
}
@media (max-width: 600px) {
  .p-top-contact__line-sp #top_shipping_below img {
    width: 100%;
    max-width: 292px;
    margin: auto;
  }
}
.p-top-contact__line-sp p {
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 450px) {
  .p-top-contact__line-sp {
    padding-block: 37px;
  }
}
.p-top-contact__bg-pc {
  background: linear-gradient(180deg, #ffffff 0%, #097cc8 4%, #46a0dc 100%);
  position: absolute;
  width: 100%;
  height: 176px;
  bottom: 0;
  left: 0;
}
@media (max-width: 650px) {
  .p-top-contact__bg-pc {
    display: none;
  }
}

.p-top-flow {
  background: #ffe791;
  padding: 80px 0 0 0;
  padding-bottom: 175px;
}
@media screen and (max-width: 767px) {
  .p-top-flow {
    padding-left: 16px;
    padding-block: 48px;
  }
}
.p-top-flow__title {
  text-align: center;
  color: #666666;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.8px;
}
@media screen and (max-width: 767px) {
  .p-top-flow__title {
    font-size: 24px;
    letter-spacing: 1.2px;
  }
}
.p-top-flow__title br {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-flow__title br {
    display: block;
  }
}
.p-top-flow__lists {
  margin-top: 40px;
  display: flex;
  gap: 62px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 1300px) {
  .p-top-flow__lists {
    flex-direction: column;
    gap: 60px;
    align-items: center;
  }
}
.p-top-flow__list {
  width: 372px;
}
@media (max-width: 450px) {
  .p-top-flow__list {
    width: 95%;
  }
}
.p-top-flow__list:nth-child(n + 2) {
  position: relative;
}
.p-top-flow__list:nth-child(n + 2)::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(50%);
  left: -39.5px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22.5px 0px 22.5px 17px;
  border-color: transparent transparent transparent #077bc7;
}
@media (max-width: 1300px) {
  .p-top-flow__list:nth-child(n + 2)::before {
    border-width: 17px 22.5px 0px 22.5px;
    border-color: #077bc7 transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%);
    top: -39px;
  }
}
.p-top-flow__number {
  border-radius: 8px 8px 0px 0px;
  background: #077bc7;
  color: #fff;
  text-align: center;
  font-family: "Inter";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 66px;
  letter-spacing: 1.8px;
}
.p-top-flow__list-content {
  border-radius: 0px 8px 8px 8px;
  background: #e7f1f9;
  padding: 35px 20px;
}
.p-top-flow__list-img {
  width: 200px;
  margin: 0 auto;
}
.p-top-flow__list-texts {
  width: 100%;
  height: 290px;
  margin: 30px auto 0;
  border-radius: 8px;
  background: #fff;
  padding: 15px 16px;
}
@media (max-width: 450px) {
  .p-top-flow__list-texts {
    height: auto;
  }
}
.p-top-flow__list-blue {
  color: #077bc7;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
}
.p-top-flow__list-text {
  margin-top: 10px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 23.4px */
  letter-spacing: 0.9px;
}
.p-top-flow__line-title {
  margin-top: 195px;
  color: #077bc7;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 767px) {
  .p-top-flow__line-title {
    margin-top: 135px;
  }
}
.p-top-flow__line-lists {
  margin: 34px 0 0 0;
  display: flex;
  gap: 46px;
  padding-left: 180px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-flow__line-lists {
    margin-bottom: 96px;
    padding-left: 15px;
  }
}
.p-top-flow__line-list {
  width: 300px !important;
  margin: 0 23px;
}
@media screen and (max-width: 767px) {
  .p-top-flow__line-list {
    width: 220px !important;
  }
}
.p-top-flow__line-number {
  padding-left: 33px;
  color: #3093d4;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 51px;
  letter-spacing: 1.2px;
  position: relative;
}
.p-top-flow__line-number span {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.p-top-flow__line-number::after {
  position: absolute;
  content: "";
  width: 217px;
  height: 51px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/front/flow/line-step-arrow-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}
.p-top-flow__line-text {
  width: 300px;
  height: 135px;
  color: #666666;
  margin-top: 32px;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.8px;
}
.p-top-flow__line-text span {
  color: #f46036;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-flow__line-text {
    width: 240px;
    height: 105px;
    font-size: 14px;
  }
}
.p-top-flow__line-phone {
  margin-top: 10px;
  width: 234px;
}
.p-top-flow__line-phone img {
  height: 452px;
}
.p-top-flow .custom-arrow {
  position: absolute;
  bottom: -105px; /* slick本体より70px下 */
  width: 50px;
  height: 50px;
  padding: 0;
  background: none;
  border: none;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-top-flow .custom-arrow {
    width: 32px;
    bottom: -64px;
  }
}
.p-top-flow .slick-prev {
  left: 45%;
  transform: translateX(-100%) translateX(-20px);
}
.p-top-flow .slick-next {
  right: 50%;
  transform: translateX(100%) translateX(20px);
}
.p-top-flow .custom-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-top-flow__more {
  all: unset;
  display: block;
  margin-top: 100px;
  margin-left: auto;
  margin-right: 30px;
  width: 194px;
  background: #ea5e7f;
  border-radius: 8px;
  padding-right: 30px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-flow__more {
    margin-left: auto;
    margin-right: auto;
  }
}
.p-top-flow__more::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/front/pink-arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}
.p-top-flow__more a {
  display: block;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 1px;
}
.p-top-flow .p-top-contact__line-sp {
  padding-block: 0;
  width: fit-content;
  margin: auto;
}

.p-top-cost {
  padding: 100px 15px;
  background: #e7f1f9;
}
@media screen and (max-width: 767px) {
  .p-top-cost {
    padding: 60px 15px 40px;
  }
}
.p-top-cost__title {
  color: #077bc7;
  font-family: "Noto Sans JP";
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.8px;
}
@media (max-width: 767px) {
  .p-top-cost__title {
    font-size: 23px;
  }
}
.p-top-cost__box {
  padding: 20px;
  max-width: 1080px;
  width: 100%;
  border-radius: 8px;
  background: #fff;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-top-cost__box-exist-title {
  text-align: center;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .p-top-cost__box-exist-title {
    font-size: 20px;
    letter-spacing: 1px;
  }
}
.p-top-cost__box-exist-title span {
  margin: 0 10px;
  display: inline-block;
  width: 80px;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 1.4px;
  border-radius: 50px;
  background: #ea5e7f;
}
@media screen and (max-width: 767px) {
  .p-top-cost__box-exist-title span {
    width: 60px;
    line-height: 60px;
    font-size: 20px;
  }
}
.p-top-cost__exist-lists {
  margin: 30px auto 0;
  display: flex;
  gap: 44px;
}
@media (max-width: 930px) {
  .p-top-cost__exist-lists {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }
}
.p-top-cost__exist-list {
  border-radius: 8px;
  border: 1px solid #aaa;
  background: #fff;
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .p-top-cost__exist-list {
    width: 100%;
    height: fit-content;
    padding: 10px 12px;
  }
}
.p-top-cost__exist-list:nth-child(n + 2) {
  position: relative;
}
.p-top-cost__exist-list:nth-child(n + 2)::before {
  position: absolute;
  content: "+";
  color: #333;
  font-size: 24px;
  top: 50%;
  transform: translateY(-50%);
  left: -34px;
}
@media (max-width: 930px) {
  .p-top-cost__exist-list:nth-child(n + 2)::before {
    left: 50%;
    transform: translateX(-50%);
    top: -34px;
  }
}
@media (max-width: 767px) {
  .p-top-cost .cost-case {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 30px;
  }
}
.p-top-cost__exist-list-title {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
}
.p-top-cost__exist-list-img {
  height: 70px;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-top-cost__exist-list-img {
    margin: 0;
  }
}
.p-top-cost__exist-list-img img {
  height: 100%;
  width: auto;
}
.p-top-cost__exist-list-cost {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.p-top-cost__exist-list-cost p {
  font-weight: bold;
}
.p-top-cost__exist-list-cost span {
  font-size: 18px;
  font-weight: 700;
}
.p-top-cost .exist-list-txt {
  font-size: 12px;
  color: #333333;
  line-height: 1;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .p-top-cost .exist-list-txt {
    margin-top: 10px;
  }
}
.p-top-cost__box-nothing-title {
  text-align: center;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 767px) {
  .p-top-cost__box-nothing-title {
    font-size: 20px;
    letter-spacing: 1px;
  }
}
.p-top-cost__box-nothing-title span {
  margin: 0 10px;
  display: inline-block;
  width: 80px;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 1.4px;
  border-radius: 50px;
  background: #077bc7;
}
@media screen and (max-width: 767px) {
  .p-top-cost__box-nothing-title span {
    width: 60px;
    line-height: 60px;
    font-size: 20px;
  }
}
.p-top-cost__nothing-lists {
  margin: 30px auto 0;
  display: flex;
  gap: 44px;
  justify-content: center;
}
@media (max-width: 930px) {
  .p-top-cost__nothing-lists {
    flex-direction: column;
    align-items: center;
    gap: 26px;
  }
}
.p-top-cost__nothing-list {
  border-radius: 8px;
  border: 1px solid #aaa;
  background: #fff;
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 767px) {
  .p-top-cost__nothing-list {
    width: 100%;
    height: fit-content;
    padding: 10px 12px;
  }
}
.p-top-cost__nothing-list p {
  font-size: 12px;
  color: #333333;
}
.p-top-cost__nothing-list .list-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-top-cost__nothing-list:nth-child(n + 2) {
  position: relative;
}
.p-top-cost__nothing-list:nth-child(n + 2)::before {
  position: absolute;
  content: "+";
  color: #333;
  font-size: 24px;
  top: 50%;
  transform: translateY(-50%);
  left: -34px;
}
@media (max-width: 930px) {
  .p-top-cost__nothing-list:nth-child(n + 2)::before {
    left: 50%;
    transform: translateX(-50%);
    top: -34px;
  }
}
.p-top-cost__nothing-list-title {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
}
.p-top-cost__nothing-list-title span {
  font-size: 14px;
}
.p-top-cost__nothing-list-img {
  height: 70px;
  margin-block: 8px;
}
.p-top-cost__nothing-list-img img {
  height: 100%;
  width: auto;
}
.p-top-cost__nothing-list-cost {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.p-top-cost__nothing-list-cost span {
  font-size: 18px;
  font-weight: 700;
}
.p-top-cost__nothing-list-cost-note {
  padding: 0 10px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.5px;
}
.p-top-cost .second-list .p-top-cost__nothing-list-title {
  font-size: 16px;
}
.p-top-cost .second-list .p-top-cost__nothing-list-img {
  margin-block: 8px 3px;
}
.p-top-cost__table-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  max-width: 1080px;
  width: 100%;
  border-radius: 8px;
  background: #fff;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .p-top-cost__table-box {
    background: transparent;
    padding: 0;
  }
}
.p-top-cost__table-box h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 41px;
}
@media (max-width: 767px) {
  .p-top-cost__table-box h3 {
    margin-bottom: 20px;
  }
}
.p-top-cost__table-box table {
  max-width: 782px;
  width: 100%;
  margin-bottom: 41px;
}
@media (max-width: 767px) {
  .p-top-cost__table-box table {
    margin-bottom: 15px;
  }
}
.p-top-cost__table-box table thead,
.p-top-cost__table-box table tbody,
.p-top-cost__table-box table tr,
.p-top-cost__table-box table th,
.p-top-cost__table-box table td {
  display: flex;
}
.p-top-cost__table-box table td,
.p-top-cost__table-box table th {
  border: 1px solid #fff;
  border-collapse: collapse;
}
.p-top-cost__table-box table tr {
  width: 100%;
}
.p-top-cost__table-box table thead {
  background-color: #077bc7;
  color: #fff;
  height: 40px;
}
.p-top-cost__table-box table thead th {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p-top-cost__table-box table thead th {
    font-size: 16px;
  }
}
.p-top-cost__table-box table thead th:first-child {
  width: 30%;
}
@media (max-width: 767px) {
  .p-top-cost__table-box table thead th:first-child {
    width: 45%;
  }
}
.p-top-cost__table-box table thead th:last-child {
  width: 70%;
}
.p-top-cost__table-box table tbody {
  flex-direction: column;
}
.p-top-cost__table-box table tbody tr {
  height: 60px;
}
.p-top-cost__table-box table tbody tr td:first-child {
  width: 30%;
  color: #fff;
  background-color: #7fb0d0;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p-top-cost__table-box table tbody tr td:first-child {
    font-size: 16px;
    width: 45%;
  }
}
.p-top-cost__table-box table tbody tr td:last-child {
  font-size: 24px;
  font-weight: 700;
  width: 70%;
  background-color: #f4f4f4;
  color: #333333;
}
@media (max-width: 767px) {
  .p-top-cost__table-box table tbody tr td:last-child {
    font-size: 16px;
  }
}
.p-top-cost__table-box table th,
.p-top-cost__table-box table td {
  justify-content: center;
  align-items: center;
}
.p-top-cost__table-title {
  max-width: 700px;
  width: 95%;
  margin: 0 auto;
  color: #077bc7;
  text-align: left;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
}
.p-top-cost__table-note {
  margin: auto;
  max-width: 782px;
  width: 95%;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
}
@media (max-width: 767px) {
  .p-top-cost__table-note {
    font-size: 12px;
    margin-bottom: 0;
  }
}

.p-top-hours {
  padding: 100px 15px;
  background: #e7f1f9;
}
@media screen and (max-width: 767px) {
  .p-top-hours {
    padding: 60px 15px 100px;
  }
}
.p-top-hours__title {
  color: #000;
  font-family: "Noto Sans JP";
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.8px;
}
@media (max-width: 767px) {
  .p-top-hours__title {
    font-size: 23px;
  }
}
.p-top-hours__subtitle {
  justify-content: center;
  align-items: center;
}
.p-top-hours__table-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 65px 20px;
  max-width: 1080px;
  width: 100%;
  border-radius: 8px;
  background: #fff;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .p-top-hours__table-box {
    background: transparent;
    padding: 0;
  }
}
.p-top-hours__table-box .tip {
  font-weight: 700;
  font-size: 24px;
  color: #333333;
}
@media (max-width: 767px) {
  .p-top-hours__table-box .tip {
    font-size: 20px;
  }
}
.p-top-hours__table-box h3 {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .p-top-hours__table-box h3 {
    font-size: 24px;
  }
}
.p-top-hours__table-box span {
  max-width: 781px;
  width: 100%;
  font-size: 21px;
  font-weight: 500;
  color: #333333;
}
@media (max-width: 767px) {
  .p-top-hours__table-box span {
    font-size: 18px;
  }
}
.p-top-hours__table-box table {
  padding-top: 26px;
  max-width: 782px;
  width: 100%;
}
.p-top-hours__table-box table thead,
.p-top-hours__table-box table tbody,
.p-top-hours__table-box table tr,
.p-top-hours__table-box table th,
.p-top-hours__table-box table td {
  display: flex;
}
.p-top-hours__table-box table td,
.p-top-hours__table-box table th {
  border: 1px solid #fff;
  border-collapse: collapse;
  text-align: center;
}
.p-top-hours__table-box table tr {
  width: 100%;
}
.p-top-hours__table-box table thead {
  color: #fff;
  height: 70px;
}
.p-top-hours__table-box table thead tr th {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p-top-hours__table-box table thead tr th {
    font-size: 16px;
  }
}
.p-top-hours__table-box table thead th:first-child {
  width: 20%;
}
.p-top-hours__table-box table thead th:nth-child(2) {
  width: 40%;
}
.p-top-hours__table-box table thead th:last-child {
  width: 40%;
  background: #5c5c5c;
}
.p-top-hours__table-box table tbody {
  flex-direction: column;
}
.p-top-hours__table-box table tbody tr {
  height: 108px;
}
.p-top-hours__table-box table tbody tr td:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 20%;
  color: #fff;
}
.p-top-hours__table-box table tbody tr td:first-child span {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .p-top-hours__table-box table tbody tr td:first-child span {
    font-size: 11px;
  }
}
.p-top-hours__table-box table tbody tr td:first-child span:first-child {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p-top-hours__table-box table tbody tr td:first-child span:first-child {
    font-size: 16px;
  }
}
.p-top-hours__table-box table tbody tr td:nth-child(2) {
  width: 40%;
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  flex-direction: column;
}
@media (max-width: 767px) {
  .p-top-hours__table-box table tbody tr td:nth-child(2) {
    font-size: 18px;
  }
}
.p-top-hours__table-box table tbody tr td:nth-child(2) .explain {
  font-size: 15px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .p-top-hours__table-box table tbody tr td:nth-child(2) .explain {
    font-size: 12px;
  }
}
.p-top-hours__table-box table tbody tr td:last-child {
  width: 40%;
  color: #333333;
  font-size: 24px;
  font-weight: 700;
  flex-direction: column;
}
@media (max-width: 767px) {
  .p-top-hours__table-box table tbody tr td:last-child {
    font-size: 18px;
  }
}
.p-top-hours__table-box table tbody tr td:last-child .explain {
  font-size: 15px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .p-top-hours__table-box table tbody tr td:last-child .explain {
    font-size: 12px;
  }
}
.p-top-hours__table-box table th,
.p-top-hours__table-box table td {
  justify-content: center;
  align-items: center;
}
.p-top-hours__table-title {
  max-width: 700px;
  width: 95%;
  margin: 0 auto;
  color: #333333;
  text-align: left;
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
}
.p-top-hours__table-subtitle {
  font-weight: 700;
  font-size: 23px;
  padding-block: 20px 50px;
  color: #333333;
}
@media (max-width: 767px) {
  .p-top-hours__table-subtitle {
    font-size: 18px;
    padding-block: 10px 25px;
  }
}
.p-top-hours__table-note {
  margin: 7px auto 0;
  max-width: 782px;
  width: 95%;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .p-top-hours__table-note {
    font-size: 12px;
    margin-bottom: 0;
  }
}
.p-top-hours__table1 {
  padding-bottom: 64px;
}
.p-top-hours__table1 thead {
  background: linear-gradient(180deg, #ffffff 0%, #097cc8 3.5%, #46a0dc 100%);
}
.p-top-hours__table1 tbody tr td:first-child {
  color: #fff;
  background: #7fb0d0;
}
.p-top-hours__table1 tbody tr td:nth-child(2) {
  background-color: #f5f5f5;
}
.p-top-hours__table1 tbody tr td:last-child {
  background-color: #f5f5f5;
}
.p-top-hours__table2 {
  padding-bottom: 10px;
}
.p-top-hours__table2 thead {
  background: linear-gradient(90deg, #d6980f 0%, #d6790f 100%);
}
.p-top-hours__table2 tbody tr td:first-child {
  color: #fff;
  background: #d1a685;
}
.p-top-hours__table2 tbody tr td:nth-child(2) {
  background: #f5f5f5;
}
.p-top-hours__table2 tbody tr td:last-child {
  background: #f5f5f5;
}

.p-top-deliver {
  background: #fff;
  padding: 87px 15px;
}
@media screen and (max-width: 767px) {
  .p-top-deliver {
    padding: 76px 15px;
    background: #f4f4f4;
  }
}
.p-top-deliver__title {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: end;
}
@media (max-width: 920px) {
  .p-top-deliver__title {
    flex-direction: column;
    align-items: center;
  }
}
.p-top-deliver__title-logo-wrapper {
  width: 240px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-top-deliver__title-logo-wrapper {
    width: 90%;
    max-width: 450px;
  }
}
.p-top-deliver__title-logo-text {
  margin-top: 10px;
  text-align: center;
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
  text-align: center;
}
.p-top-deliver__title-logo {
  width: 100%;
  margin-top: 3px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #cc0013;
  max-width: 450px;
}
.p-top-deliver__title-logo img {
  width: 160px;
  height: auto;
}
.p-top-deliver__title-text {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 767px) {
  .p-top-deliver__title-text {
    font-size: 20px;
    letter-spacing: 1px;
    text-align: center;
  }
}
.p-top-deliver__title-text br {
  display: none;
}
@media (max-width: 1100px) {
  .p-top-deliver__title-text br {
    display: block;
  }
}
.p-top-deliver__container {
  width: 95%;
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 40px 15px;
  background: #e7f1f9;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .p-top-deliver__container {
    padding: 20px 10px;
  }
}
.p-top-deliver__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 1000px) {
  .p-top-deliver__top {
    flex-direction: column-reverse;
  }
}
.p-top-deliver__top-left-message {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .p-top-deliver__top-left-message {
    font-size: 18px;
    letter-spacing: 0.9px;
    text-align: center;
  }
}
.p-top-deliver__top-left-message br {
  display: none;
}
@media (max-width: 1100px) {
  .p-top-deliver__top-left-message br {
    display: block;
  }
}
.p-top-deliver__top-left-plus {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}
.p-top-deliver__top-left-dr {
  width: calc((100% - 15px) / 2);
}
.p-top-deliver__top-left-dr-logo {
  height: 40px;
  border-radius: 4px 4px 0px 0px;
  background: linear-gradient(180deg, #077bc7 0%, #46a0dc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top-deliver__top-left-dr-logo img {
  width: 110px;
  height: auto;
}
.p-top-deliver__top-left-dr-content {
  background: #fff;
  padding: 10px 0 15px;
}
.p-top-deliver__top-left-dr-img {
  width: 50px;
  margin: 0 auto;
}
.p-top-deliver__top-left-dr-text {
  margin: 7px auto 0;
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.p-top-deliver__top-left-jp {
  width: calc((100% - 15px) / 2);
  position: relative;
}
.p-top-deliver__top-left-jp::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  bottom: 30px;
  left: -21px;
  background-image: url(../img/front/deliver-plus.webp);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.p-top-deliver__top-left-jp-logo {
  height: 40px;
  border-radius: 4px 4px 0px 0px;
  background: #cc0013;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top-deliver__top-left-jp-logo img {
  width: 110px;
  height: auto;
}
.p-top-deliver__top-left-jp-content {
  background: #fff;
  padding: 10px 0 15px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.p-top-deliver__top-left-jp-img {
  width: 50px;
}
.p-top-deliver__top-left-jp-text {
  margin: 7px auto 0;
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.p-top-deliver__left-bottom {
  margin-top: 30px;
  width: 100%;
}
.p-top-deliver__top-right-title {
  border-radius: 4px;
  background: #077bc7;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  letter-spacing: 1px;
  position: relative;
}
.p-top-deliver__top-right-title::after {
  position: absolute;
  content: "";
  bottom: -6px;
  left: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 14px 6px 0px;
  border-color: transparent #077bc7 transparent transparent;
}
.p-top-deliver__top-right-blue {
  margin-top: 8px;
  color: #077bc7;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .p-top-deliver__top-right-blue {
    font-size: 16px;
    line-height: 1.5;
  }
}
.p-top-deliver__top-right-blue span {
  color: #333;
  font-size: 14px;
}
.p-top-deliver__top-right-box {
  margin-top: 8px;
  border-radius: 8px;
  background: #fff;
  padding: 20px 20px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .p-top-deliver__top-right-box {
    font-size: 16px;
  }
}
.p-top-deliver__top-right-box span {
  color: #077bc7;
  font-weight: 700;
}
.p-top-deliver__line {
  all: unset;
  margin: 30px auto 0;
  display: block;
  width: 100%;
  max-width: 450px;
}
@media screen and (max-width: 767px) {
  .p-top-deliver__line {
    margin: 40px auto 0;
  }
}

.p-top-company {
  background: #e7f1f9;
  padding: 100px 20px;
}
@media (max-width: 600px) {
  .p-top-company {
    padding-inline: 10.5px;
    padding-block: 32px 15px;
  }
}
.p-top-company__title {
  color: #077bc7;
  padding-block: 40px;
  font-family: "Noto Sans JP";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-align: center;
  background: #fff;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top-company__title {
    font-size: 20px;
    line-height: 1.2;
    padding-block: 10.5px;
    width: 100%;
    border-radius: 8px;
  }
}
.p-top-company__table {
  margin: 45px auto 0;
  width: 100%;
  max-width: 940px;
  border-collapse: collapse;
}
@media (max-width: 600px) {
  .p-top-company__table {
    width: 95%;
    border: 1px solid #000000;
  }
}
.p-top-company__table th {
  border-top: 1px solid #000;
  background: #f6f6f6;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 26px 0 28px 35px;
  white-space: nowrap;
  width: 275px;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .p-top-company__table th {
    width: fit-content;
    font-size: 12px;
    border: 1px solid #000000;
    padding: 10.5px 7.5px;
    text-align: center;
  }
}
.p-top-company__table td {
  border-top: 1px solid #000;
  background: #fff;
  padding: 10px 0 10px 35px;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .p-top-company__table td {
    font-size: 12px;
    padding: 8px 5px 6px 19px;
  }
}
.p-top-company__table td a {
  color: #1410e9;
  text-decoration: underline;
}
.p-top-company .com-link {
  font-size: 25px;
  font-weight: 500;
  width: 100%;
  max-width: 1080px;
  margin-top: 45px;
  text-align: end;
  color: #000000;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .p-top-company .com-link {
    font-size: 12px;
    margin-top: 11px;
  }
}

.p-top-time {
  max-width: 900px;
  width: 100%;
  border-radius: 8px;
  background: #fff;
  margin: 40px auto 0;
  padding-block: 28px 40px;
  padding-inline: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .p-top-time {
    padding-inline: 38px;
  }
}
.p-top-time__title {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  font-weight: 700;
  font-size: 20px;
}
.p-top-time__title span {
  color: #ea5e7f;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .p-top-time__title {
    display: none;
  }
}
.p-top-time__subtitle {
  font-size: 28px;
}
@media (max-width: 767px) {
  .p-top-time__subtitle {
    display: none;
  }
}
.p-top-time__h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 30px;
  font-size: 28px;
  color: #333333;
  text-align: center;
}
@media (max-width: 767px) {
  .p-top-time__h2 {
    font-size: 19px;
  }
}
.p-top-time__box {
  display: flex;
  flex-direction: column;
  border: 1px solid #aaaaaa;
  border-radius: 8px;
  padding: 24px 18px;
  width: 100%;
  max-width: 762px;
}
@media (max-width: 767px) {
  .p-top-time__box {
    width: 100%;
    padding: 20px 10px;
  }
}
.p-top-time__detail {
  font-size: 21px;
  color: #333333;
  line-height: 1.7;
  margin-top: 23px;
}
@media (max-width: 767px) {
  .p-top-time__detail {
    margin-top: 28px;
    font-size: 12px;
  }
  .p-top-time__detail span {
    font-weight: bold;
  }
  .p-top-time__detail .red {
    color: #ea5e7f;
  }
}
.p-top-time__dl {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 71px;
}
@media (max-width: 767px) {
  .p-top-time__dl {
    flex-direction: column;
    align-items: center;
    gap: 10px !important;
  }
}
.p-top-time__dl--special {
  gap: 100px;
  margin-bottom: 23px;
}
.p-top-time__dt {
  border-radius: 5px;
  padding: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #077bc7;
}
@media (max-width: 767px) {
  .p-top-time__dt {
    font-size: 19px;
    padding: 7px 10px;
  }
}
.p-top-time__dt--special {
  background-color: #5c5c5c;
}
.p-top-time__dd {
  color: #333333;
  font-size: 28px;
  font-weight: 700;
}
.p-top-time__dd p {
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-top-time__dd p {
    line-height: 1.1;
  }
}
@media (max-width: 767px) {
  .p-top-time__dd {
    text-align: center;
    font-size: 18px;
  }
}

.top-article-button-wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.top-article-button {
  margin-left: auto;
  margin-top: 30px;
  background-color: #fff;
  color: #000 !important;
  border-radius: 17px;
  font-size: 20px;
  font-weight: 700;
  width: 200px;
  height: 50px;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.top-article-button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .top-article-button {
    width: 100%;
    height: 45px;
  }
}

.page-company .pc {
  display: block;
}
@media (max-width: 600px) {
  .page-company .pc {
    display: none;
  }
}
.page-company .sp {
  display: none;
}
@media (max-width: 600px) {
  .page-company .sp {
    display: block;
  }
}
.page-company .container {
  width: 1120px;
  margin: 0 auto;
}
@media (max-width: 1120px) {
  .page-company .container {
    width: 100%;
    padding: 0 16px;
  }
}
.page-company .p-company-headline {
  position: relative;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, #ffffff 0%, #097cc8 3.5%, #46a0dc 100%);
}
@media (max-width: 600px) {
  .page-company .p-company-headline {
    height: 130px;
  }
}
.page-company .p-company-headline__container {
  height: 100%;
}
.page-company .p-company-headline__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.page-company .p-company-headline__title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
}
@media (max-width: 600px) {
  .page-company .p-company-headline__title {
    font-size: 16px;
  }
}
.page-company .p-company-headline__title-big {
  display: block;
  margin: 10px 0 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 600px) {
  .page-company .p-company-headline__title-big {
    font-size: 24px;
  }
}
.page-company .p-company-headline__earth {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 600px) {
  .page-company .p-company-headline__earth {
    width: 260px;
    right: -100px;
  }
}
.page-company .p-company-about {
  padding: 80px 0 120px;
}
@media (max-width: 600px) {
  .page-company .p-company-about {
    padding: 32px 0 48px;
  }
}
.page-company .p-company-about__title {
  margin: 0 0 48px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #444444;
}
@media (max-width: 600px) {
  .page-company .p-company-about__title {
    margin: 0 0 32px;
    font-size: 16px;
  }
}
.page-company .p-company-about__title span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #077bc7;
}
@media (max-width: 600px) {
  .page-company .p-company-about__title span {
    font-size: 20px;
  }
}
.page-company .p-company-about__inner {
  width: 800px;
  margin: 0 auto;
}
@media (max-width: 968px) {
  .page-company .p-company-about__inner {
    width: 100%;
  }
}
.page-company .p-company-about__item {
  margin: 0 0 48px;
  padding: 32px 80px 24px;
  border-radius: 32px;
}
@media (max-width: 600px) {
  .page-company .p-company-about__item {
    margin: 0 0 32px;
    padding: 24px 16px 16px;
    border-radius: 16px;
  }
}
.page-company .p-company-about__item.company {
  border: 0.5px solid #5b5c5e;
}
.page-company .p-company-about__item.clinic {
  background-color: #fff7f2;
  border: 3.5px solid #ef7f3c;
}
.page-company .p-company-about__item.clinic table tbody tr td {
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .page-company .p-company-about__item.clinic table tbody tr td {
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 14px;
  }
}
.page-company .p-company-about__item.clinic table tbody tr td.title {
  font-weight: 700;
  line-height: 1;
  color: #ef7f3c;
}
.page-company .p-company-about__item-head {
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.page-company .p-company-about__item-head img {
  display: inline;
  width: auto;
}
.page-company .p-company-about__item-head .text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #444444;
  white-space: nowrap;
}
.page-company .p-company-about__item-head-clinic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 600px) {
  .page-company .p-company-about__item-head-clinic {
    flex-direction: column;
  }
}
.page-company .p-company-about__item-head-clinic .text {
  padding: 8px 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  background-color: #ef7f3c;
  border: 1px solid #ef7f3c;
  border-radius: 8px;
  white-space: nowrap;
}
.page-company .p-company-about__item-body {
  display: block;
}
.page-company .p-company-about__item-table {
  width: 100%;
  border-collapse: collapse;
}
.page-company .p-company-about__item-table tbody {
  width: 100%;
}
.page-company .p-company-about__item-table tbody tr {
  width: 100%;
}
.page-company .p-company-about__item-table tbody tr td {
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 15px;
  line-height: 1.5;
  color: #444444;
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 600px) {
  .page-company .p-company-about__item-table tbody tr td {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
  }
}
.page-company .p-company-about__item-table tbody tr td.title {
  width: 30%;
  padding-left: 24px;
  padding-right: 24px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .page-company .p-company-about__item-table tbody tr td.title {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.page-company .p-company-about__item-table tbody tr td.data {
  width: 70%;
  font-weight: 400;
  line-height: 1.5;
}
.page-company .p-company-about__item-table tbody tr td.data a {
  font-weight: 700;
  line-height: 1.5;
  color: #6585b6;
}
.page-company .p-company-about__item-table tbody tr td .map {
  margin: 8px 0 0;
}
.page-company .p-company-about__item-table tbody tr:last-child td {
  border-bottom: none;
}
.page-company .p-company-clinic {
  position: relative;
  padding: 32px 0 80px;
  background-color: #e7f1f9;
}
@media (max-width: 600px) {
  .page-company .p-company-clinic {
    padding: 32px 0;
  }
}
.page-company .p-company-clinic__title {
  width: fit-content;
  margin: 0 auto 80px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #444444;
}
@media (max-width: 600px) {
  .page-company .p-company-clinic__title {
    margin-bottom: 32px;
  }
}
.page-company .p-company-clinic__title span {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #077bc7;
}
@media (max-width: 600px) {
  .page-company .p-company-clinic__title span {
    font-size: 24px;
  }
}
.page-company .p-company-clinic__head-deco {
  position: absolute;
  left: 50%;
  top: -75px;
  top: -4vw;
  transform: translateX(-50%);
  width: 100%;
}
.page-company .p-company-clinic__photo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 40px;
}
@media (max-width: 600px) {
  .page-company .p-company-clinic__photo-list {
    display: block;
    margin: 0 0 20px;
  }
}
.page-company .p-company-clinic__photo-item {
  position: relative;
  width: calc(33.3333333333% - 10.6666666667px);
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .page-company .p-company-clinic__photo-item {
    width: 100%;
  }
}
.page-company .p-company-clinic__photo-item .wrapper {
  position: relative;
  padding-top: 66.6666666667%;
  padding-left: 4px;
}
.page-company .p-company-clinic__photo-item .wrapper img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-company .p-company-clinic__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 80px;
  gap: 16px;
}
@media (max-width: 900px) {
  .page-company .p-company-clinic__body {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .page-company .p-company-clinic__body {
    margin: 0 0 32px;
  }
}
.page-company .p-company-clinic__body-title {
  margin: 0 0 16px;
  padding: 0 0 0 28px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: #077bc7;
  border-left: 4px solid #077bc7;
}
@media (max-width: 600px) {
  .page-company .p-company-clinic__body-title {
    padding: 0 0 0 16px;
    font-size: 17px;
  }
}
.page-company .p-company-clinic__body-title span {
  display: block;
  margin: 0 0 8px -14px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #444444;
}
@media (max-width: 600px) {
  .page-company .p-company-clinic__body-title span {
    font-size: 14px;
  }
}
.page-company .p-company-clinic__body-text {
  padding: 0 0 0 28px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #444444;
}
@media (max-width: 600px) {
  .page-company .p-company-clinic__body-text {
    padding: 0;
    font-size: 14px;
  }
}
.page-company .p-company-clinic__body-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: fit-content;
  padding: 8px 32px;
  background-color: #ea5e7f;
  border: 1px solid #ea5e7f;
  border-radius: 8px;
}
.page-company .p-company-clinic__body-cta-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .page-company .p-company-clinic__body-cta-text {
    font-size: 20px;
  }
}
.page-company .p-company-clinic__body-cta-icon {
  width: 20px;
  height: 20px;
}
.page-company .p-company-clinic__intro {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 48px 127.5px;
  background-color: #fff;
  border-radius: 32px;
  gap: 16px;
}
@media (max-width: 900px) {
  .page-company .p-company-clinic__intro {
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 1120px) {
  .page-company .p-company-clinic__intro {
    padding: 32px;
  }
}
@media (max-width: 600px) {
  .page-company .p-company-clinic__intro {
    margin: 0 0 32px;
    padding: 32px 16px;
    border-radius: 16px;
  }
}
.page-company .p-company-clinic__intro-left {
  width: 254px;
  text-align: center;
}
.page-company .p-company-clinic__intro-photo {
  margin: 0 0 8px;
  border-radius: 8px;
  overflow: hidden;
}
.page-company .p-company-clinic__intro-name {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
}
@media (max-width: 640px) {
  .page-company .p-company-clinic__intro-name {
    font-size: 16px;
  }
}
.page-company .p-company-clinic__intro-name .name {
  margin: 0 4px 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 640px) {
  .page-company .p-company-clinic__intro-name .name {
    margin-left: 8px;
    font-size: 20px;
  }
}
.page-company .p-company-clinic__intro-right {
  width: 547px;
}
@media (max-width: 900px) {
  .page-company .p-company-clinic__intro-right {
    width: 100%;
  }
}
.page-company .p-company-clinic__intro-title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: #077bc7;
}
@media (max-width: 640px) {
  .page-company .p-company-clinic__intro-title {
    font-size: 18px;
  }
}
.page-company .p-company-clinic__intro-text {
  margin: 0 0 27px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #444444;
}
@media (max-width: 640px) {
  .page-company .p-company-clinic__intro-text {
    font-size: 15px;
  }
}
.page-company .p-company-clinic__intro-history {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 20px 20px 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #444444;
  background-color: #e7f1f9;
  border-radius: 16px;
}
@media (max-width: 640px) {
  .page-company .p-company-clinic__intro-history {
    padding: 16px;
    fonts-size: 14px;
    border-radius: 8px;
  }
}
.page-company .p-company-clinic__intro-history span {
  display: block;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #077bc7;
}
.page-company .p-company-clinic__cta {
  text-align: center;
}
.page-company .p-company-clinic__cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: fit-content;
  margin: 0 auto;
  padding: 16px 32px;
  background-color: #ea5e7f;
  border-radius: 8px;
  border: 1px solid #ea5e7f;
}
.page-company .p-company-clinic__cta-link-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.page-company .p-company-clinic__cta-link-icon {
  width: 20px;
  height: 20px;
}
.page-company .p-company-clinic__cta-link-icon img {
  display: block;
}
.page-company .p-company-points {
  padding: 80px 0;
}
@media (max-width: 600px) {
  .page-company .p-company-points {
    padding: 32px 0;
  }
}
.page-company .p-company-points__title {
  margin: 0 0 48px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 600px) {
  .page-company .p-company-points__title {
    margin: 0 0 32px;
    font-size: 16px;
  }
}
.page-company .p-company-points__title span {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: #077bc7;
}
@media (max-width: 600px) {
  .page-company .p-company-points__title span {
    font-size: 24px;
  }
}
.page-company .p-company-points__box {
  margin: 0 0 56px;
}
.page-company .p-company-points__box-head {
  padding: 16px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  border-radius: 32px 32px 0 0;
}
@media (max-width: 600px) {
  .page-company .p-company-points__box-head {
    font-size: 16px;
    border-radius: 16px 16px 0 0;
  }
}
.page-company .p-company-points__box-head .small {
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .page-company .p-company-points__box-head .small {
    font-size: 14px;
  }
}
.page-company .p-company-points__box-head .yellow {
  font-weight: 700;
  line-height: 1.5;
  color: #ffda76;
}
.page-company .p-company-points__box-head.red {
  background-color: #c63227;
}
.page-company .p-company-points__box-head.blue {
  background-color: #077bc7;
}
.page-company .p-company-points__box-body {
  position: relative;
  padding: 24px 24px 32px;
  border-radius: 0 0 32px 32px;
}
@media (max-width: 600px) {
  .page-company .p-company-points__box-body {
    border-radius: 0 0 16px 16px;
  }
}
.page-company .p-company-points__box-body::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 24px solid #077bc7;
}
.page-company .p-company-points__box-body.red {
  background-color: #fffce6;
}
.page-company .p-company-points__box-body.blue {
  padding-bottom: 0;
  background-color: #e7f1f9;
}
.page-company .p-company-points__box-body.blue::after {
  content: none;
}
.page-company .p-company-points__box-body img {
  width: auto;
}
.page-company .p-company-points__box-lead {
  margin: 0 0 16px;
  text-align: center;
}
.page-company .p-company-points__box-lead span {
  padding: 8px 32px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  background-color: #fff;
}
@media (max-width: 600px) {
  .page-company .p-company-points__box-lead span {
    font-size: 16px;
    display: inline-block;
    white-space: nowrap;
  }
}
.page-company .p-company-points__box-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
}
@media (max-width: 600px) {
  .page-company .p-company-points__box-content {
    flex-direction: column-reverse;
    gap: 16px;
  }
}
.page-company .p-company-points__box-feat-list {
  display: block;
  margin: 0 0 16px;
}
.page-company .p-company-points__box-feat-item {
  position: relative;
  margin: 0 0 8px;
  padding: 0 0 0 40px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: #444444;
}
@media (max-width: 600px) {
  .page-company .p-company-points__box-feat-item {
    padding: 0 0 0 32px;
    font-size: 16px;
  }
}
.page-company .p-company-points__box-feat-item span {
  font-weight: 700;
  line-height: 1.5;
  color: #c63227;
}
.page-company .p-company-points__box-feat-item span.big {
  font-size: 24px;
}
@media (max-width: 600px) {
  .page-company .p-company-points__box-feat-item span.big {
    font-size: 20px;
  }
}
.page-company .p-company-points__box-feat-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f8c56c;
}
@media (max-width: 600px) {
  .page-company .p-company-points__box-feat-item::before {
    width: 24px;
    height: 24px;
  }
}
.page-company .p-company-points__box-feat-item::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  transform: rotate(45deg);
  width: 9px;
  height: 15px;
  border-right: 4px solid #c63227;
  border-bottom: 4px solid #c63227;
}
@media (max-width: 600px) {
  .page-company .p-company-points__box-feat-item::after {
    left: 8px;
    top: 6px;
    border-width: 3px;
  }
}
.page-company .p-company-points__box-share {
  display: flex;
  align-items: center;
  gap: 16px;
}
.page-company .p-company-points__box-x {
  width: 64px;
  height: 64px;
}
.page-company .p-company-points__box-site {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 32px;
  background-color: #c63227;
  border-radius: 8px;
}
.page-company .p-company-points__box-site-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}
.page-company .p-company-points__box-site-icon {
  width: 20px;
  height: 20px;
}
.page-company .p-company-points__box-site-icon img {
  display: block;
}
@media (max-width: 600px) {
  .page-company .p-company-points__box:nth-child {
    margin: 0 0 32px;
  }
}
.page-company .p-company-line__cta {
  display: block;
  text-align: center;
}
.page-company .p-company-line__cta-title {
  margin: 0 0 8px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  color: #424344;
}
@media (max-width: 600px) {
  .page-company .p-company-line__cta-title {
    font-size: 14px;
  }
}
.page-company .p-company-line__cta-title span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #077bc7;
}
@media (max-width: 600px) {
  .page-company .p-company-line__cta-title span {
    font-size: 18px;
  }
}

.container {
  width: 100%;
  max-width: 117rem;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.is-md-hide {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-md-hide {
    display: none;
  }
}

.is-md-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-md-show {
    display: block;
  }
}

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