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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  color: inherit;
  font-family: inherit;
}

html {
  line-height: 1;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

img {
  border: none;
  vertical-align: bottom;
}

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

body {
  max-width: 650px;
  margin-inline: auto;
  color: #5c4020;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.625;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

body.inactive {
  height: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.l-header {
  width: 100%;
  height: 64px;
  background: #fff;
  box-shadow: 3px 2px 3px rgba(0, 0, 0, 0.1);
}

.l-header__contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: inherit;
}

.l-header__logo {
  width: 100px;
  margin-left: 16px;
  transition: opacity 0.3s ease 0s;
}

.l-header__logo:hover {
  opacity: 0.7;
}

.l-header__reservations {
  display: flex;
  height: 100%;
}

.l-header__btn {
  /* display: block; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 75px;
  height: 64px;
  /* padding-top: 15px;
  padding-bottom: 15px; */
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4166666667;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s ease 0s;
}

.l-header__btn:hover {
  opacity: 0.7;
}

.l-header__btn--brown {
  background: #c2823d;
}

.l-header__btn--green {
  background: #4c8055;
}

.l-header__btn--yellow {
  background: #ffbf00;
}

.l-header__btn--gray {
  background: #999999;
}

.l-header__btn--linecolor {
  background: #06c755;
}

.l-header__btn--new_linecolor {
  background: #55af47;
}

.l-header__btn--orange {
  background: #e8984f;
}

.l-header__btn--new_orange {
  background: #f99109;
}

.l-header__reservations_icon {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
  margin-bottom: 4px;
}

.l-modal {
  display: none;
  z-index: 300;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.l-modal.is-active {
  display: block;
}

.l-modal__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}

.l-modal__contents {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 650px;
  padding: 25px;
  transform: translate(-50%, -50%);
  background: #fff;
}

.l-modal__second {
  margin-top: 20px;
}

.l-modal__close {
  position: absolute;
  top: 9px;
  right: 18px;
  cursor: pointer;
  transition: opacity 0.3s ease 0s;
}

.l-modal__close:hover {
  opacity: 0.7;
}

.l-modal__contents-wrapper {
  padding: 25px;
  border: 1px solid #5c4020;
}

.l-modal__head {
  color: #5c4020;
  font-size: 18px;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
}

.l-modal__btn:first-child {
  margin-top: 15px;
}

.l-modal__btn:not(:first-child) {
  /* margin-top: 18px; */
}

.l-modal__btn.new_cta_btn .c-modal-btn__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
.l-modal__btn.new_cta_btn.c-modal-btn--linecolor .c-modal-btn__icon {
  width: 26px;
  height: 26px;
  left: 16px;
}

.cta_small_text {
  font-size: 13px;
  /* font-weight: bold; */
  text-align: center;
  color: #333;
  margin-top: 2px;
}

.l-inner {
  padding-right: 24px;
  padding-left: 24px;
}

.l-footer {
  padding-bottom: 72px;
}

.l-footer__copyright {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 10px;
  text-align: center;
}

.l-reservation {
  display: none;
  z-index: 990;
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 650px;
  transform: translateX(-50%);
}

.l-reservation__contents {
  display: flex;
  width: 100%;
  max-width: 650px;
}

.l-reservation__btn {
  /* width: 33.3333%; */
  width: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
}

.l-reservation__btn span {
  display: block;
}

.l-reservation__btn--brown {
  background: #c2823d;
}

.l-reservation__btn--brown:hover {
  background: #dab38a;
}

.l-reservation__btn--green {
  background: #4c8055;
}

.l-reservation__btn--green:hover {
  background: #7fb288;
}

.l-reservation__btn--gray {
  background: #999999;
}

.l-reservation__btn--gray:hover {
  background: #c0c0c0;
}

.l-reservation__btn--yellow {
  background: #ffbf00;
}

.l-reservation__btn--yellow:hover {
  background: #ffd666;
}

.l-reservation__btn--linecolor {
  background: #06c755;
}

.l-reservation__btn--linecolor:hover {
  background: #80cea0;
}

.l-reservation__btn--orange {
  background: #e8984f;
}

.l-reservation__btn--orange:hover {
  background: #ebbf95;
}

.l-reservation__text1 {
  color: #fff;
  font-size: 11px;
  text-align: center;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.l-reservation__text1::before,
.l-reservation__text1::after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background-color: #fff;
  margin: 0 0.5em;
}
.l-reservation__text1::before {
  transform: rotate(-20deg);
}
.l-reservation__text1::after {
  transform: rotate(20deg);
}

.l-reservation__text2 {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.c-modal-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 10px 30px;
  transition: opacity 0.3s ease 0s;
  width: 100%;
  height: 70px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.c-modal-btn::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 5px;
  height: 9px;
  transform: translateY(-50%);
  background: url("./../img/modal_arrow.webp") no-repeat center center/cover;
  content: "";
}

.c-modal-btn:hover {
  opacity: 0.7;
}

.c-modal-btn--brown {
  background: #c2823d;
}

.c-modal-btn--green {
  background: #4c8055;
}

.c-modal-btn--yellow {
  background: #ffbf00;
}

.c-modal-btn--linecolor {
  background: #06c755;
}

.c-modal-btn--orange {
  background: #e8984f;
}

.c-modal-btn__message {
  color: #333;
  font-size: 15px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
}
.c-modal-btn__message::before,
.c-modal-btn__message::after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background-color: #333;
  margin: 0 0.5em;
}
.c-modal-btn__message::before {
  transform: rotate(-20deg);
}
.c-modal-btn__message::after {
  transform: rotate(20deg);
}

.c-modal-btn__title {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 4px;
  column-gap: 4px;
}

.c-modal-btn__title.--yellow {
  align-items: flex-start;
}

.c-modal-btn__icon {
  /* width: 18px;
  height: 18px; */
  width: 26px;
  height: 26px;
  margin-top: 2px;
}

.c-modal-btn__icon img {
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
}

.c-modal-btn__icon.--yellow {
  margin-top: 3px;
}

.c-modal-btn__text {
  color: #fff;
  font-size: 22px;
  font-family: "Zen Maru Gothic", serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  padding-left: 25px;
}

.c-modal-btn__text.--yellow {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.2;
  text-align: center;
}

.c-modal-btn__text.--yellow .--small {
  display: inline-block;
  font-size: 14px;
}

/*===================================
.c-catch
====================================*/

.c-catch .l-inner {
  background-image: url(../../assets/img/renewal/cta_bg.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 32px 12px 45px;
}

.c-catch__title {
  text-align: center;
  color: #333;
}

.c-catch__title__upper {
  font-size: 18px;
  font-weight: 700;
  line-height: calc(54.14 / 36.09);
}

.c-catch__title__middle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 7px;
}
@media screen and (max-width: 374px) {
  .c-catch__title__middle {
    flex-wrap: wrap;
  }
}

.c-catch__title__middle .title_tag {
  display: block;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  color: #fff;
  background-color: #6b6e6a;
  padding: 4px;
  border-radius: 3px;
}
@media screen and (max-width: 390px) {
  .c-catch__title__middle .title_tag {
    font-size: 14px;
  }
}
@media screen and (max-width: 374px) {
  .c-catch__title__middle .title_tag {
    font-size: 12px;
  }
}

.c-catch__title__lower {
  font-size: 18px;
  font-weight: 700;
  line-height: calc(54.14 / 36.09);
  margin-top: 2px;
}

.c-catch__title__lower .title_big {
  font-size: 26px;
}

.c-catch__title__lower .title_underline {
  position: relative;
  z-index: 200;
}

.c-catch__title__lower .title_underline::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 110%;
  height: 1em;
  background-image: url(../../assets/img/renewal/cta_underline.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

/* .c-catch {
  padding-top: 25px;
  padding-bottom: 25px;
  background: #ecffe6;
}

.c-catch__title {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #387f41;
  font-size: 18px;
  line-height: 1.2;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
}

.c-catch__title span:last-child {
  margin-top: 2px;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.025em;
}

.c-catch__title1 span:first-child {
  background: linear-gradient(transparent 75%, #ffeea1 0%);
}

.c-catch__title1 span:last-child {
  background: linear-gradient(transparent 80%, #ffeea1 0%);
}

.c-catch__img {
  margin-top: 15px;
}

.c-catch__about {
  margin-top: 30px;
}

.c-catch__bottom {
  margin-top: 24px;
} */

/*===================================
.c-catch-img
====================================*/

/* .c-catch-img {
  position: relative;
  width: 100%;
  height: auto;
}

.c-catch-img img {
  width: 100%;
  height: auto;
}

.c-catch-img__text {
  display: inline-block;
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 6px 15px 6px 15px;
  background: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.025em;
}

.c-catch-img__text .u-text-medium {
  font-size: 18px;
}

.c-catch-img__text .u-text-small {
  font-size: 16px;
} */

/*===================================
.c-catch-about
====================================*/

/* .c-catch-about {
  position: relative;
  padding: 25px 15px 15px;
  padding-top: 25px;
  padding-bottom: 15px;
  background: #ffffeb;
  background-image: linear-gradient(to right, #809f6c 1px, transparent 1px),
    linear-gradient(to bottom, #809f6c 1px, transparent 1px),
    linear-gradient(to left, #809f6c 1px, transparent 1px),
    linear-gradient(to top, #809f6c 1px, transparent 1px);
  background-position: left top, right 0px, 3px bottom, left 7px;
  background-size: 4px 1px, 1px 4px, 4px 1px, 1px 4px;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
}

.c-catch-about__head {
  position: absolute;
  top: -15%;
  left: 50%;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 10px;
  padding-left: 10px;
  transform: translateX(-50%);
  background: #ffffeb;
  font-size: 18px;
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0.025em;
  text-align: center;
}

.c-catch-about__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.c-catch-about__item {
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 10px;
  background: #d3dbc9;
  font-size: 14px;
  letter-spacing: 0.025em;
} */

/*===================================
.c-catch__whitearea
====================================*/

.c-catch__whitearea {
  background-color: #fff;
  padding: 8px 8px 28px;
  margin-top: 16px;
  box-shadow: 1.5px 2px 15px rgba(0, 0, 0, 0.2);
}

.c-catch__upper {
  display: flex;
}
.c-catch__upper > img {
  width: 50%;
}

.c-catch__middle {
  margin-top: 13px;
  color: #333;
}

.c-catch__middle__title {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.c-catch__middle__title::before,
.c-catch__middle__title::after {
  position: absolute;
  top: 60%;
  width: 1px;
  height: 80%;
  background: #5c4020;
  content: "";
}

.c-catch__middle__title::before {
  left: -4%;
  transform: translateY(-50%) rotate(-20deg);
}

.c-catch__middle__title::after {
  right: -4%;
  transform: translateY(-50%) rotate(20deg);
}

.c-catch__middle__price {
  display: block;
  width: 246px;
  max-width: 90%;
  margin: 10px auto 0;
}

.c-catch__lower {
  margin-top: 10px;
}

.c-catch__lower__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 700;
  color: #333;
}

.c-catch__lower__title::before,
.c-catch__lower__title::after {
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background-color: #333;
}

.c-catch__lower__flexbox {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
}

.c-catch__lower__flexbox_item {
  width: calc((100% - 8px) / 3);
  background-color: #ebf7e5;
  border-radius: 0 0 5px 5px;
  box-shadow: 1.5px 2px 5.5px rgba(0, 0, 0, 0.2);
}

.c-catch__lower__flexbox_item .item_image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 212.82/179.92;
}

.c-catch__lower__flexbox_item .item_text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 36px;
  font-size: 13px;
  line-height: calc(41.52 / 27.68);
  font-weight: 700;
  text-align: center;
  color: #333;
}

.c-catch__lower__flexbox_item .item_text.small {
  font-size: 10px;
}

/*===================================
.c-catch-bottom
====================================*/

.c-catch-bottom__btn {
  margin-top: 10px;
  margin-inline: auto;
}

/*===================================
.c-catch-bottom-btn
====================================*/

.c-btn {
  display: block;
  position: relative;
  width: 80.8383233533%;
  padding: 10px 30px;
  cursor: pointer;
  transition: opacity 0.3s ease 0s;
}

.c-btn::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 5px;
  height: 9px;
  transform: translateY(-50%);
  background: url("./../img/modal_arrow.webp") no-repeat center center/cover;
  content: "";
}

.c-btn:hover {
  opacity: 0.7;
}

.c-btn span {
  display: block;
}

.c-btn--brown {
  background: #c2823d;
}

.c-btn--green {
  background-color: #4c8055;
}

.c-btn--gray {
  background-color: #999999;
}

.c-btn--yellow {
  background-color: #ffbf00;
}

.c-btn--linecolor {
  background-color: #06c755;
}

.c-btn__text1 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.025em;
  text-align: center;
}

.c-btn__text2 {
  color: #fff;
  font-size: 18px;
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0.05em;
  text-align: center;
}

.c-section {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .c-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.c-section__title {
  color: #4c8055;
  font-size: 24px;
  line-height: 1.4166666667;
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0.025em;
  text-align: center;
}

.c-section__contents {
  margin-top: 20px;
}

.c-triangle {
  width: 0;
  height: 0;
  margin-inline: auto;
  border-style: solid;
}

.c-triangle--big {
  border-width: 32px 30px 0 30px;
  border-color: #5c4020 transparent transparent transparent;
}

.c-triangle--small {
  border-width: 24px 23px 0 23px;
  border-color: #5c4020 transparent transparent transparent;
}

.c-effect-item {
  display: flex;
  justify-content: space-between;
}

.c-effect-item__logo {
  width: 20px;
  height: auto;
  margin-top: 3px;
}

.c-effect-item__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.c-effect-item__text {
  width: calc(100% - 30px);
  line-height: 1.625;
}

.c-effect-item__text span {
  font-weight: 700;
}

/*===================================
.p-worries
====================================*/
.p-worries {
  /* padding-top: 60px; */
  padding-top: 0;
  /* background-image: url(../../assets/img/renewal/worry_bottom_bg.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover; */
  background-color: #fefbf3;
}

.p-worries__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  background-color: #5d401f;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
@media screen and (min-width: 600px) {
  .p-worries .p-worries__title {
    font-size: 19px;
  }
}

.p-worries__title .accent_dot {
  font-size: 30px;
}

.p-worries__title span:not(.accent_dot) {
  padding-top: 0.5em;
}

.c-section__title_triangle {
  position: relative;
  z-index: 500;
  border-width: 18px 17.25px 0 17.25px;
  margin-top: -1px;
}

.p-worries__maincontents {
  position: relative;
  z-index: 400;
  margin-top: -19px;
}

.p-worries__maincontents img {
  display: block;
}

.p-worries__maincontents__upper {
  position: relative;
  z-index: 500;
  padding-top: 42.5px;
}
.p-worries__maincontents__upper .text {
  margin-left: 10px;
  /* max-width: 65%; */
  max-width: 350px;
}
.p-worries__maincontents__upper .text01 {
  /* width: 229px; */
  width: 61%;
}
.p-worries__maincontents__upper .text02 {
  /* width: 241.5px; */
  width: 64.4%;
  margin-top: 21px;
}
.p-worries__maincontents__upper .background_img {
  position: absolute;
  z-index: -1;
  width: 91%;
  max-height: 100%;
  object-fit: contain;
  object-position: right;
  top: 0;
  right: 0;
}

.p-worries__maincontents__lower {
  position: relative;
  z-index: 400;
  margin-top: 22px;
}
.p-worries__maincontents__lower .text {
  margin-right: 10px;
  margin-left: auto;
  /* max-width: 65%; */
  max-width: 350px;
}
.p-worries__maincontents__lower .text03 {
  /* width: 221px; */
  width: 59%;
}
.p-worries__maincontents__lower .text04 {
  /* width: 244px; */
  width: 65%;
  margin-top: 12px;
}
.p-worries__maincontents__lower .background_img {
  position: absolute;
  z-index: -1;
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: left;
  left: 0;
  bottom: 0;
}

.p-worries__bridge_dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  /* margin-top: 30px; */
}
.p-worries__bridge_dots span {
  display: block;
  width: 3.75px;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #333;
  border-radius: 50%;
  /* margin: 4px auto; */
}

.p-solutions__bottom {
}

.p-solutions__bottom_subtitle {
  font-size: 18px;
  line-height: calc(49.4 / 32);
  font-weight: 700;
  text-align: center;
}

.p-solutions__bottom_subtitle img {
  display: block;
  width: 280px;
  margin: 3.5px auto 0;
}

.p-solutions__bottom_maintitle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  margin-top: 14px;
}

.p-solutions__bottom_maintitle .orange {
  font-size: 34px;
  color: #f99109;
}

.p-solutions__bottom_maintitle .baloon {
  width: 28px;
  height: 53px;
  object-fit: contain;
}

.p-solutions__bottom_mainimage {
  display: block;
  width: 92%;
  margin: 15px auto 0;
}

/* .c-worries-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-worries-item:nth-child(2n + 1) {
  flex-direction: row;
}
.c-worries-item:nth-child(2n) {
  flex-direction: row-reverse;
}

.c-worries-item__logo {
  width: 20px;
  height: auto;
  margin-top: 3px;
}

.c-worries-item__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.c-worries-item__text {
  width: calc(100% - 72px - 19px);
  line-height: 1.625;
  position: relative;
  display: inline-block;
  padding: 7px 10px;
  color: #5b4023;
  background: #ffffe7;
  border: solid 3px #ffea9d;
  box-sizing: border-box;
  border-radius: 10px;
  font-size: 13px;
}
@media screen and (min-width: 390px) {
  .c-worries-item__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 550px) {
  .c-worries-item__text {
    width: calc(100% - 120px - 19px);
    padding: 7px 20px;
    font-size: 18px;
  }
}

.c-worries-item:nth-child(2n + 1) .c-worries-item__text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-left: 12px solid #ffffe7;
  z-index: 2;
}
.c-worries-item:nth-child(2n + 1) .c-worries-item__text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-left: 14px solid #ffea9d;
  z-index: 1;
}
.c-worries-item:nth-child(2n) .c-worries-item__text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-right: 12px solid #ffffe7;
  z-index: 2;
}
.c-worries-item:nth-child(2n) .c-worries-item__text::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-right: 14px solid #ffea9d;
  z-index: 1;
}
.c-worries-item__text p {
  margin: 0;
  padding: 0;
}

.c-worries-item__text span {
  font-weight: 700;
}

.c-worries-item__img {
  width: 72px;
}
@media screen and (min-width: 550px) {
  .c-worries-item__img {
    width: 120px;
  }
}

.c-worries-item__img img {
  display: block;
  width: 100%;
  height: auto;
} */

.p-worries__explain {
  font-size: 16px;
  line-height: calc(24 / 16);
  font-weight: bold;
  color: #5b4023;
  border: 2px dotted #809b6c;
  text-align: center;
  padding: 20px 0;
}

.p-bridge_triangle {
  display: block;
  margin-top: 20px;
}

/*===================================
.p-step
====================================*/

.p-step {
}

.p-step__contents {
}

.p-step__content {
  position: relative;
  background-color: #f2f7e5;
  margin-top: 40px;
  padding: 34px 18px 23px;
}
@media screen and (min-width: 550px) {
  .p-step__content {
    padding-top: 48px;
  }
}

.p-step__content__step_logo {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 42px;
  height: 42px;
  background-color: #809f6c;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.025em;
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
}

.p-step__content__step_logo .small {
  display: block;
  font-size: 7px;
}

.p-step__content__step_logo .number {
  display: block;
  font-size: 20px;
}

@media screen and (min-width: 550px) {
  .p-step__content__step_logo {
    width: 60px;
    height: 60px;
  }

  .p-step__content__step_logo .small {
    font-size: 12px;
  }

  .p-step__content__step_logo .number {
    font-size: 24px;
  }
}

.p-step__content__step_title {
  display: block;
  width: fit-content;
  margin: 0 auto 20px;
  font-size: 16px;
  font-weight: 700;
}

.p-step__content__step_text {
  font-size: 15px;
  font-weight: 500;
  line-height: calc(28 / 16);
  letter-spacing: 0.025em;
  margin-top: 12px;
}

.c-title {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}

.c-title::before {
  position: absolute;
  bottom: -16px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-width: 17px 10px 0 10px;
  border-style: solid;
  content: "";
}

.c-title--brown {
  background: #c2823d;
}

.c-title--brown::before {
  border-color: #c2823d transparent transparent transparent;
}

.c-title--brown::after {
  position: absolute;
  right: 25px;
  bottom: 0;
  width: 81px;
  height: 113px;
  background: url("./../img/nurse-maru.webp") no-repeat center center/cover;
  content: "";
}

.c-title--green {
  background: #809f6c;
}

.c-title--green::before {
  border-color: #809f6c transparent transparent transparent;
}

.c-title--green::after {
  position: absolute;
  right: 8px;
  bottom: 0;
  width: 103px;
  height: 102px;
  background: url("./../img/nurse2.webp") no-repeat center center/cover;
  content: "";
}

.c-title__text {
  color: #fff;
  font-weight: 700;
  line-height: 1.75;
}

.c-title--brown .c-title__text span {
  font-size: 23px;
  line-height: 1;
}

.c-title--green .c-title__text span {
  font-size: 20px;
  line-height: 1;
  -webkit-text-emphasis: filled;
  text-emphasis: filled;
}

/* .p-fv {
  position: relative;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 27px;
  overflow: hidden;
}

.p-fv__top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-left: 10px;
}

.p-fv__right {
  margin-right: -10px;
}

.p-fv__bottom {
  z-index: 2;
  position: relative;
  width: 86.8421052632%;
  margin-top: -3%;
  margin-inline: auto;
}

.p-fv__bottom img {
  width: 100%;
}

.p-fv__bg {
  z-index: -1;
  position: absolute;
}

.p-fv__bg--1 {
  top: -2%;
  left: -8%;
  width: 49.7368421053%;
}

.p-fv__bg--2 {
  bottom: -2%;
  left: -5%;
  width: 82.1212121212%;
  height: auto;
}

.p-fv__bg--2 img {
  width: 100%;
  height: auto;
}

.p-fv__bg--3 {
  right: -11%;
  bottom: -2%;
  width: 64.4736842105%;
  height: auto;
}

.p-fv__bg--3 img {
  width: 100%;
  height: auto;
} */

/*===================================
.p-fv-left
====================================*/

/* .p-fv-left {
  width: 41.8918918919%;
}

.p-fv-left__img {
  width: 100%;
  height: auto;
}

.p-fv-left__img img {
  display: block;
  width: 100%;
}

.p-fv-left__text {
  width: 100%;
  margin-top: 10px;
}

.p-fv-left__text img {
  width: 100%;
} */

/*===================================
.p-fv-right 
====================================*/

/* .p-fv-right {
  position: relative;
  width: 57.5675675676%;
}

.p-fv-right__img {
  width: 100%;
}

.p-fv-right__img img {
  display: block;
  width: 100%;
}

.p-fv-right__text {
  position: absolute;
  right: 15px;
  bottom: -10px;
  width: 47%;
}

.p-fv-right__text img {
  width: 100%;
} */

/*===================================
.p-fv
====================================*/

.p-fv {
  width: 100%;
}

/*===================================
.p-worries-box
====================================*/
.p-worries__item:not(:first-child) {
  margin-top: 20px;
}

.p-worries__box {
  margin-top: 16px;
}

.p-worries-box {
  padding: 16px 10px;
  background-image: linear-gradient(to right, #809f6c 1px, transparent 1px),
    linear-gradient(to bottom, #809f6c 1px, transparent 1px),
    linear-gradient(to left, #809f6c 1px, transparent 1px),
    linear-gradient(to top, #809f6c 1px, transparent 1px);
  background-position: left top, right 0px, 3px bottom, left 7px;
  background-size: 4px 1px, 1px 4px, 4px 1px, 1px 4px;
  background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
}

.p-worries-box__text {
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.p-cause {
  position: relative;
}

.p-cause::after {
  z-index: -1;
  position: absolute;
  top: 42%;
  right: 55%;
  width: 295px;
  height: 655px;
  background: url("./../img/cause-bg.webp") no-repeat center center/cover;
  content: "";
}

.p-cause__items {
  display: flex;
  row-gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.p-cause__item {
  width: 33.3333%;
}

.p-cause__text {
  width: 100vw;
  margin-top: 20px;
  margin-left: calc(50% - 50vw);
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}

.p-cause__feature {
  margin-top: 20px;
}

/*===================================
.p-cause-item
====================================*/

.p-cause-item {
  text-align: center;
}

.p-cause-item__img {
  width: 65.4545454545%;
  margin-bottom: 4px;
  margin-inline: auto;
}

.p-cause-item__img img {
  width: 100%;
  height: auto;
}

.p-cause-item__text {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

.p-cause-item__text span {
  background: linear-gradient(transparent 92%, #5c4020 92%);
}

/*===================================
.p-cause-feature
====================================*/

.p-cause-feature__head {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.p-cause-feature__head::before,
.p-cause-feature__head::after {
  position: absolute;
  top: 55%;
  width: 1px;
  height: 80%;
  background: #5c4020;
  content: "";
}

.p-cause-feature__head::before {
  left: -5%;
  transform: translateY(-50%) rotate(-30deg);
}

.p-cause-feature__head::after {
  right: -5%;
  transform: translateY(-50%) rotate(30deg);
}

.p-cause-feature__box {
  margin-top: 10px;
  padding: 10px 15px;
  background: #5c4020;
}

.p-cause-feature__text {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #fff;
  font-weight: 700;
}

.p-cause-feature__text::before {
  position: absolute;
  top: 50%;
  left: -13px;
  width: 10px;
  height: 7px;
  transform: translateY(-50%);
  background: url("./../img/check-white.webp") no-repeat center center/cover;
  content: "";
}

.p-effect__item:not(:first-child) {
  margin-top: 20px;
}

.p-actual__text {
  line-height: 1.625;
  text-align: center;
}

.p-actual__img {
  width: 95vw;
  margin-top: 10px;
  margin-left: calc(50% - 47.5vw);
}

.p-actual__img img {
  display: block;
  width: 100%;
  max-width: 575px;
  height: auto;
  margin-inline: auto;
}

.p-relief__head {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-weight: 700;
  text-align: center;
}

.p-relief__head::before,
.p-relief__head::after {
  position: absolute;
  top: 55%;
  width: 1px;
  height: 80%;
  background: #5c4020;
  content: "";
}

.p-relief__head::before {
  left: -5%;
  transform: translateY(-50%) rotate(-30deg);
}

.p-relief__head::after {
  right: -5%;
  transform: translateY(-50%) rotate(30deg);
}

.p-relief__title {
  margin-top: 10px;
}

.p-relief__title--green {
  margin-top: 25px;
}

.p-relief__contents {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #ffffe6;
}

.p-relief__item:not(:first-child) {
  margin-top: 20px;
}

/*===================================
.p-relief-item
====================================*/

.p-relief-item__img {
  width: 100%;
  height: auto;
}

.p-relief-item__img img {
  width: 100%;
  height: auto;
}

.p-relief-item__textarea {
  padding: 15px 15px 25px;
  background: #fff;
}

.p-relief-item__text {
  margin-top: 10px;
  line-height: 1.75;
  text-align: justify;
}

/*===================================
.p-relief-item-title
====================================*/

.p-relief-item-title {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.p-relief-item-title__text {
  font-weight: 700;
  line-height: 1.625;
}

/*===================================
.p-relief-item-title-icon
====================================*/

.p-relief-item-title-icon {
  display: flex;
  row-gap: 2px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #c2823d;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.p-relief-item-title-icon__text1 {
  font-weight: 300;
  font-size: 11px;
  line-height: 1;
}

.p-relief-item-title-icon__text2 {
  line-height: 1;
}

/*===================================
.p-relief-max
====================================*/

.p-relief-max {
  padding-top: 30px;
}

.p-relief-max__text {
  line-height: 1.75;
  text-align: justify;
}

.p-relief-max__img {
  width: 100%;
  margin-top: 20px;
}

.p-relief-max__img img {
  width: 100%;
  height: auto;
}

.p-relief-max__head {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  margin-bottom: 15px;
  margin-inline: auto;
  padding: 2px 15px;
  background: #5c4020;
  color: #fff;
  font-weight: 700;
}

.p-reason__item:not(:first-child) {
  margin-top: 22px;
}

/*===================================
.p-reason-item
====================================*/

.p-reason-item {
  box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.1);
}

.p-reason-item:nth-child(3) .p-reason-item__textarea {
  padding: 20px 19px 30px 20px;
}

.p-reason-item__textarea {
  padding: 20px 20px 30px;
}

.p-reason-item__title {
  position: relative;
  padding-bottom: 12px;
  border-bottom: solid 1px #5c4020;
  font-weight: 700;
  line-height: 1.625;
  text-align: center;
}

.p-reason-item__title::after {
  position: absolute;
  bottom: -9px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-width: 9px 5px 0 5px;
  border-style: solid;
  border-color: #5c4020 transparent transparent transparent;
  content: "";
}

.p-reason-item__text {
  margin-top: 20px;
  text-align: justify;
}

/*===================================
.p-reason-item-img
====================================*/

.p-reason-item-img {
  position: relative;
  width: 100%;
  height: auto;
}

.p-reason-item-img img {
  width: 100%;
  height: auto;
}

.p-reason-item-img__text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 10px;
  background: #809f6c;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.p-reason-item-img__text span {
  margin-right: 3px;
  font-weight: 300;
  font-size: 14px;
}

.p-flow {
  position: relative;
  overflow-x: hidden;
  padding-top: 45px;
}

.p-flow::before,
.p-flow::after {
  position: absolute;
  /* top: -25px; */
  top: 0;
  width: 87px;
  height: 106px;
  content: "";
}

.p-flow::before {
  left: calc(50% - 190px);
  background: url("./../img/flow-bg1.webp") no-repeat center center/cover;
}

.p-flow::after {
  right: calc(50% - 190px);
  background: url("./../img/flow-bg2.webp") no-repeat center center/cover;
}

.p-flow__item:not(:first-child) {
  margin-top: 16px;
}

.p-flow__triangle {
  margin-top: 16px;
}

/*===================================
.p-flow-item
====================================*/

.p-flow-item__head {
  display: flex;
  align-items: center;
  -moz-column-gap: 14px;
  column-gap: 14px;
}

.p-flow-item__title {
  font-weight: 700;
}

.p-flow-item__img {
  width: 100%;
  margin-top: 16px;
}

.p-flow-item__img img {
  width: 100%;
  height: auto;
}

.p-flow-item__textarea {
  margin-top: 15px;
}

.p-flow-item__text {
  line-height: 1.625;
  text-align: justify;
}

.p-flow-item__btn {
  margin-inline: auto;
}

.p-flow-item__btn--brown {
  margin-top: 20px;
}

.p-flow-item__btn--green {
  margin-top: 9px;
}

.p-flow-item__btn--yellow {
  margin-top: 9px;
}

/*===================================
.p-flow-item-icon
====================================*/

.p-flow-item-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  width: 46px;
  height: 46px;
  background: #c2823d;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

.p-flow-item-icon__text1 {
  margin-top: 2px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.p-flow-item-icon__text2 {
  font-size: 18px;
  line-height: 1;
}

.p-video {
  background: #ffffe6;
}

.p-video__iframe {
  width: 100%;
  height: auto;
}

.p-video__iframe iframe {
  aspect-ratio: 330/190;
  width: 100%;
  height: auto;
}

.p-voice {
  position: relative;
  padding-top: 45px;
  padding-bottom: 50px;
  background: #ffffe6;
}

.p-voice__eye-catch {
  position: absolute;
  top: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 2px;
  padding-left: 2px;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.p-voice__eye-catch::before,
.p-voice__eye-catch::after {
  position: absolute;
  top: 60%;
  width: 1px;
  height: 90%;
  background: #5c4020;
  content: "";
}

.p-voice__eye-catch::before {
  left: -8%;
  transform: translateY(-50%) rotate(-30deg);
}

.p-voice__eye-catch::after {
  right: -8%;
  transform: translateY(-50%) rotate(30deg);
}

.p-voice__eye-catch1 {
  left: calc(50% - 160px);
  transform: rotate(-7deg);
}

.p-voice__eye-catch2 {
  top: 12px;
  right: calc(50% - 160px);
  transform: rotate(7deg);
}

.p-voice__head {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background: linear-gradient(transparent 80%, #ffeea1 0%);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-voice__title {
  margin-top: 4px;
}

.p-voice__feature {
  width: 100%;
}

.p-voice__feature img {
  width: 100%;
  height: auto;
}

.p-voice__items {
  margin-top: 20px;
}

.p-voice__item {
  width: 100%;
  height: auto;
}

.p-voice__item:not(:first-child) {
  margin-top: 17px;
}

.p-voice__item img {
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.p-qa {
  position: relative;
  padding-top: 50px;
  overflow: hidden;
}

.p-qa::after {
  z-index: -1;
  position: absolute;
  top: 55%;
  right: -10%;
  width: 295px;
  height: 655px;
  background: url("./../img/qa-bg.webp") no-repeat center center/cover;
  content: "";
}

.p-qa__item:not(:first-child) {
  margin-top: 14px;
}

/*===================================
.p-qa-item
====================================*/

.p-qa-item {
  width: 100%;
}

/*===================================
.p-qa-item-q
====================================*/

.p-qa-item-q {
  display: block;
  position: relative;
  width: 100%;
  background: #4c8055;
  background: #809f6c;
  cursor: pointer;
  transition: background-color 0.3s ease 0s;
}

.p-qa-item-q:hover {
  background: #9ab18a;
}

.p-qa-item-q__title {
  display: flex;
  color: #fff;
  -moz-column-gap: 8px;
  column-gap: 8px;
  padding: 14px 60px 14px 15px;
}

.p-qa-item-q__icon {
  font-size: 18px;
  line-height: 1.4;
}

.p-qa-item-q__text {
  font-weight: 700;
  text-align: left;
}

.p-qa-item-q__bars {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background: transparent;
}

.p-qa-item-q__bar {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
  background: #fff;
}

.p-qa-item-q__bar2 {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s ease 0s;
}

.is-open .p-qa-item-q__bar2 {
  transform: translateY(-50%) rotate(0deg);
}

/*===================================
.p-qa-item-a
====================================*/

.p-qa-item-a {
  display: none;
  width: 100%;
  padding: 20px 20px 20px 18px;
}

.p-qa-item-a__text {
  text-align: justify;
}

.p-qa-item-a__text::first-letter {
  font-size: 18px;
}

.p-access {
  position: relative;
  overflow: hidden;
}

.p-access::before {
  z-index: -1;
  position: absolute;
  top: -2%;
  right: -12%;
  width: 150px;
  height: 494px;
  overflow: hidden;
  background: url("./../img/access-bg1.webp") no-repeat center center/cover;
  content: "";
}

.p-access::after {
  z-index: -1;
  position: absolute;
  right: -3%;
  bottom: -2%;
  width: 352px;
  height: 468px;
  background: url("./../img/access-bg2.webp") no-repeat center center/cover;
  content: "";
}

.p-access__item:not(:first-child) {
  margin-top: 40px;
}

.p-access__imgs {
  margin-top: 40px;
}

.p-access__img1 {
  width: 70%;
  margin-left: -24px;
}

.p-access__img1 img {
  width: 100%;
  height: auto;
}

.p-access__img2 {
  width: 63.6363636364%;
  margin-top: 20px;
  margin-left: auto;
}

.p-access__img2 img {
  display: block;
  width: 100%;
  height: auto;
}

/*===================================
.p-access-item
====================================*/

.p-access-item__title {
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: dotted 2px #809f6c;
  font-weight: 700;
  font-size: 18px;
}

.p-access-item__map {
  width: 100%;
  margin-top: 20px;
}

.p-access-item__map iframe {
  aspect-ratio: 330/190;
  width: 100%;
  height: auto;
}

.p-access-item__text {
  margin-top: 20px;
}

.p-access-item__address {
  line-height: 1.625;
}

.p-access-item__timetable {
  width: 100%;
  margin-top: 20px;
}

.p-access-item__timetable img {
  width: 100%;
  height: auto;
}

.p-access-item__cautions {
  margin-top: 20px;
}

.p-access-item__caution {
  font-size: 12px;
}

.p-message__img {
  width: 36.0606060606%;
  margin-inline: auto;
}

.p-message__img img {
  width: 100%;
  height: auto;
}

.p-message__name {
  margin-top: 10px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.p-message__name span {
  font-size: 15px;
}

.p-message__text {
  margin-top: 10px;
  line-height: 1.625;
  text-align: justify;
}

.u-marker {
  padding-bottom: 4px;
  background: linear-gradient(transparent 85%, #ffeea1 0%);
  text-underline-offset: 8px;
}

.u-marker2 {
  padding-top: 2px;
  padding-bottom: 2px;
  background: #ffeea1;
  font-weight: 700;
}

.swiper-container {
  position: relative;
  margin-top: 20px;
}

.swiper-wrapper {
  position: relative;
  transition-timing-function: linear;
}

.swiper-slide img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 375px) {
  .l-header__logo {
    width: 120px;
  }
}

@media screen and (min-width: 480px) {
  .l-header__logo {
    width: 160px;
  }

  .l-header__btn {
    width: 95px;
  }

  .p-access::after {
    width: 450px;
    height: 598px;
  }

  .u-sp {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  body {
    font-size: 18px;
  }

  .l-footer {
    padding-bottom: 80px;
  }

  .l-reservation__text1 {
    font-size: 14px;
  }

  .l-reservation__text2 {
    font-size: 23px;
  }

  /* .c-catch__title {
    font-size: 20px;
  }

  .c-catch__title span:last-child {
    font-size: 27px;
  }

  .c-catch-about__head {
    top: -22%;
    font-size: 20px;
  }

  .c-catch-about__item {
    font-size: 16px;
  }

  .c-catch-bottom__head {
    font-size: 20px;
  } */

  .c-btn__text1 {
    font-size: 15px;
  }

  .c-btn__text2 {
    font-size: 20px;
  }

  .c-section__title {
    font-size: 27px;
  }

  .p-cause__text {
    font-size: 18px;
  }

  .p-cause-item__text {
    font-size: 16px;
  }

  .p-cause-feature__head {
    font-size: 20px;
  }

  .p-reason-item-img__text span {
    font-size: 16px;
  }

  .p-flow-item-icon {
    width: 50px;
    height: 50px;
  }

  .p-flow-item-icon__text1 {
    font-size: 16px;
  }

  .p-flow-item-icon__text2 {
    font-size: 18px;
  }

  .p-qa-item-q__icon {
    font-size: 20px;
  }

  .p-access::after {
    width: 550px;
    height: 730px;
  }

  .p-access-item__title {
    font-size: 20px;
  }

  .p-message__name {
    font-size: 20px;
  }

  .p-message__name span {
    font-size: 17px;
  }
}

/*===================================
.p-youtube
====================================*/

.p-youtube__contents {
  width: 100%;
  height: auto;
  /* aspect-ratio: 16/9; */
}

.p-youtube__contents > video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*===================================
.p-symptom
====================================*/

.p-symptom__contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.c-symptom-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 10px) / 2);
  height: 39px;
  background-color: #e8ffe2;
  border: 1px dotted #809b6c;
}

/* 
 その他パーツ
*/
.accent_dot {
  background-position: top left 0px;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  background-image: radial-gradient(
    0.08em 0.08em at center center,
    #fff,
    #fff 100%,
    transparent,
    transparent
  );
  padding-top: 0.1em;
}

/* 2025/6/19 追記 */

.c-catch_ver2__middle {
  margin-top: 13px;
  color: #333;
}

.c-catch_ver2__middle .middle_head {
  display: block;
}

.c-catch_ver2__middle .middle_head .middle_head_small {
  font-size: 13px;
  line-height: calc(35 / 26);
  font-weight: 500;
  text-align: center;
}
.c-catch_ver2__middle .middle_head .middle_head_big {
  font-size: 24px;
  line-height: calc(56.4 / 48.4);
  font-weight: 700;
  color: #55af47;
  text-align: center;
  margin-top: 12px;
}

.c-catch_ver2__middle .middle_head .middle_head_item {
}

.c-catch_ver2__middle__price {
  display: block;
  width: 340px;
  max-width: 100%;
  margin: 10px auto 0;
  padding-right: 3%;
}

@media screen and (min-width: 480px) {
  .c-catch_ver2__middle .middle_head .middle_head_small {
    font-size: 18px;
  }
  .c-catch_ver2__middle .middle_head .middle_head_big {
    font-size: 32px;
  }
  .c-catch_ver2__middle .middle_head .middle_head_item {
  }
  .c-catch_ver2__middle__price {
    width: 400px;
  }
}

.c-catch_ver2__lower {
  margin-top: 10px;
}

/* 2025/7/11追記 */
.p-worries {
  padding-bottom: 0;
}

.p-worries__bottom {
  color: #5c4020;
  background-image: url(../../assets/img/renewal/worry_bottom_bg_02.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 66.5px 22px 36.5px;
}
@media screen and (min-width: 600px) {
  .p-worries__bottom {
    padding: 80px 22px 36.5px;
  }
}

.p-worries__bottom__title__brown {
  display: block;
  width: fit-content;
  font-size: 19px;
  line-height: calc(50.4 / 37.47);
  font-weight: 700;
  color: #fff;
  background-color: #5c4020;
  margin: 0 auto;
  padding: 5px 9px;
}
@media screen and (min-width: 600px) {
  .p-worries__bottom__title__brown {
    font-size: 22px;
  }
}

.p-worries__bottom__flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 17px 7.5px;
  max-width: 500px;
  margin: 21px auto 0;
}
.p-worries__bottom__flexitem {
  width: calc((100% - (7.5px * 2)) / 3);
}
.p-worries__bottom__flexitem__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.p-worries__bottom__flexitem__image.circle {
  border-radius: 50%;
}
.p-worries__bottom__flexitem__text {
  display: block;
  font-size: 15px;
  line-height: calc(43 / 32);
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
  margin-top: 5px;
}
@media screen and (min-width: 600px) {
  .p-worries__bottom__flexitem__text {
    font-size: 18px;
  }
}
.p-worries__bottom__explain {
  font-size: 16px;
  line-height: calc(43 / 32);
  font-weight: 500;
  text-align: center;
  margin: 23px 0;
}
@media screen and (min-width: 600px) {
  .p-worries__bottom__explain {
    font-size: 18px;
  }
}

.p-worries__bottom__dashbox {
  font-size: 16px;
  line-height: calc(43 / 32);
  font-weight: 500;
  text-align: center;
  background: #ffffff9e;
  padding: 18px 28px;
  border: 3px dashed #5c4020;
}
@media screen and (min-width: 600px) {
  .p-worries__bottom__dashbox {
    font-size: 18px;
  }
}
.p-worries__bottom__dashbox .big {
  display: block;
  font-size: 25px;
  font-weight: 700;
  margin-top: 8px;
}
.p-worries__bottom__dashbox .underline {
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #f0dc2b;
}

.p-bridge {
  background-image: url(../../assets/img/renewal/worry_bottom_bg.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 0;
}

.p-solutions__bottom__explain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  line-height: calc(49.4 / 32);
}
@media screen and (min-width: 600px) {
  .p-solutions__bottom__explain {
    font-size: 18px;
  }
}
.p-solutions__bottom__explain .upper {
}
.p-solutions__bottom__explain .bold {
  font-weight: 700;
}
.p-solutions__bottom__explain .check_list {
}
.p-solutions__bottom__explain .check_list li {
  position: relative;
  z-index: 400;
  font-weight: 500;
  text-align: center;
  color: #fff;
  background-color: #5c4020;
  padding: 0 8px 0 25px;
}
.p-solutions__bottom__explain .check_list li:nth-child(n + 2) {
  margin-top: 5px;
}
.p-solutions__bottom__explain .check_list .check {
  position: absolute;
  left: 4px;
}
.p-solutions__bottom__explain .lower {
  text-align: center;
}
.p-solutions__bottom__explain .marker {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.3em;
  text-decoration-color: #ffee9f;
  text-underline-offset: -1em;
  text-decoration-skip-ink: none;
}
