@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Shippori+Mincho&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 10px;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-size: 1.8rem;
  color: #231815;
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

a:active,
a:hover {
  outline-width: 0;
}

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

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

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

picture {
  display: block;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

@font-face {
  font-family: "LINE Seed JP";
  src: url("../fonts/LINESeedJP_OTF_Rg.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/***************************

layout/_header.scss

***************************/
.header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 29;
}

.logo-h {
  position: relative;
  width: 18%;
  margin-top: 20px;
  margin-left: 20px;
  z-index: 3;
}

.scroll-wrap {
  width: 200%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  line-height: 1;
}

.scroll-txt {
  padding-right: 40px;
  width: fit-content;
  white-space: nowrap;
}
.scroll-txt:nth-of-type(1) {
  animation: slider01 200s -100s infinite linear;
}
.scroll-txt:nth-of-type(2) {
  animation: slider02 200s infinite linear;
}

@keyframes slider01 {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
@keyframes slider02 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-200%, 0);
  }
}
.gnav {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100svh;
  z-index: 6;
  visibility: hidden;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #fff;
}
.gnav.active {
  position: fixed;
  opacity: 1;
  visibility: visible;
  pointer-events: fill;
  transform: translateX(0);
  z-index: 29;
}

.gnav-list-item {
  width: 100%;
  color: #3d9c98;
}
.gnav-list-item:not(:first-child) {
  margin-top: 20px;
}

/* toggle button */
.toggle {
  position: fixed;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: block;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  outline: none;
  position: absolute;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  top: 10px;
  right: 11px;
  text-align: center;
  z-index: 30;
  transition: background-color 0.3s ease;
}
.toggle.active {
  background: rgba(61, 156, 152, 0.7);
}
.toggle.active .toggle__bar {
  margin: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #fff;
  transition: margin 0.3s ease, transform 0.3s ease 0.3s;
}
.toggle.active .toggle__bar:nth-child(2) {
  margin: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #fff;
  transition: margin 0.3s ease, transform 0.3s ease 0.3s;
}

.toggle__bar {
  position: absolute;
  margin-top: -3px;
  top: 50%;
  left: calc(50% - 9px);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 18px;
  height: 1px;
  background-color: #3d9c98;
  outline: 1px solid transparent;
  transition: margin 0.3s ease 0.3s, transform 0.3s ease, background-color 0.3s ease;
}
.toggle__bar:nth-child(2) {
  margin-top: 3px;
  top: 50%;
}

@media screen and (min-width: 835px) {
  .logo-h {
    width: 120px;
    margin: 0;
  }
  .header-wrap {
    padding: 20px;
  }
}
@media screen and (min-width: 1031px) {
  .header {
    width: fit-content;
    height: 100svh;
  }
  .logo-h {
    width: fit-content;
  }
  .header-wrap {
    padding: 40px 50px;
  }
  .toggle {
    display: none;
  }
  .gnav {
    position: relative;
    margin-top: 60px;
    width: fit-content;
    height: fit-content;
    visibility: visible;
    opacity: 1;
    pointer-events: fill;
    background-color: transparent;
  }
  .gnav-list-item {
    position: relative;
    padding-left: 20px;
    color: #89bcba;
    z-index: 3;
  }
  .gnav-list-item:not(:first-of-type) {
    margin-top: 20px;
  }
  .gnav-list-item::before {
    position: absolute;
    content: "";
    width: 8px;
    aspect-ratio: 1/1;
    top: calc(50% - 3px);
    left: 0;
    background-color: #fff;
    border-radius: 100vmax;
    -webkit-border-radius: 100vmax;
  }
  .gnav-list-item.now {
    color: #3d9c98;
  }
  .gnav-list-item.now::before {
    background-color: #eeaba1;
  }
}
/***************************

layout/_footer.scss

***************************/
footer {
  padding: 50px 30px 25vw;
  background: #50afab;
  color: #fff;
}
@media screen and (min-width: 500px) {
  footer {
    padding-bottom: 125px;
  }
}

.footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 17px;
}
.footer-flex i {
  font-size: 2.7rem;
}

.copy {
  margin-top: 35px;
  display: block;
  font-family: "EB Garamond", serif;
  font-size: 1.4rem;
  text-align: center;
}

/***************************

object/component/_box.scss

***************************/
.modal-dialog::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px); /* 背景をぼかす */
  -webkit-backdrop-filter: blur(5px); /* Safari 用 */
  z-index: 15; /* モーダルの背景より下に配置 */
}

.pc-cont {
  position: fixed;
  width: 100%;
  height: 100svh;
  background: url(../img/common/pc-bg.webp) no-repeat center center/cover;
  z-index: -1;
}

.main-cont {
  position: relative;
  margin: 0 auto;
  width: min(100%, 500px);
  z-index: 2;
  overflow: hidden;
}

.main {
  background-color: #fbf8f5;
}

/*////////////////////////

fade

////////////////////////*/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation: fadeUpAnime 0.8s forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.ZoomUpTrigger {
  opacity: 0;
}

.ZoomUp {
  animation: ZoomUpAnime 0.8s forwards;
  opacity: 0;
}

@keyframes ZoomUpAnime {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/***************************

object/component/_button.scss

***************************/
/***************************

object/object/project/_top.scss

***************************/
.fix-btn {
  position: fixed;
  max-width: 500px;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.fix-btn.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: fill;
}
.fix-btn:hover {
  opacity: 0.9;
}
.fix-btn .shiny {
  position: relative;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  overflow: hidden;
}
.fix-btn .shiny::before {
  position: absolute;
  content: "";
  top: 1.6vw;
  left: 2vw;
  width: calc(100% - 4vw);
  height: calc(100% - 4vw);
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0) 70%);
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  mix-blend-mode: screen;
  pointer-events: none;
}
@media screen and (min-width: 500px) {
  .fix-btn .shiny::before {
    top: 8px;
    left: 9px;
    width: calc(100% - 19px);
    height: calc(100% - 20px);
  }
}

@keyframes shine {
  0% {
    opacity: 0;
    background-position-x: 400%;
  }
  50% {
    opacity: 1;
    background-position-x: 0%;
  }
  100% {
    opacity: 0;
    background-position-x: -400%;
  }
}
.mv {
  position: relative;
  z-index: 2;
}

.mv-badge {
  position: absolute;
  width: 88%;
  bottom: 20vw;
  left: 7%;
  z-index: 3;
}
@media screen and (min-width: 500px) {
  .mv-badge {
    bottom: 100px;
  }
}

.mv-catch {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.mv-light_area {
  position: absolute;
  width: 100%;
  height: 55%;
  overflow: hidden;
  z-index: 1;
  mix-blend-mode: multiply;
}

.mv-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  mix-blend-mode: multiply;
  filter: brightness(103%);
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}

.mv-video {
  position: absolute;
  bottom: -23%;
  left: 5%;
  width: 90%;
  -webkit-mask-image: url(../img/top/video_mask.png);
  mask-image: url(../img/top/video_mask.png);
  -webkit-mask-position: 40% 40%;
  mask-position: 40% 40%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.main01 {
  margin-top: -20px;
  padding: 60px 20px 20px;
  background: url(../img/top/webp/main01-bg.webp) no-repeat top center/cover;
}

.main01-box {
  position: relative;
  margin-top: 30px;
  padding: 10px 25px;
  background-color: rgba(255, 255, 255, 0.74);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  z-index: 40;
}

.main01-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

.main-flex_fig01 {
  margin-top: -30px;
  margin-left: -25px;
}

.modal-window {
  margin-top: 20px;
}

.open-btn {
  padding: 0;
  border-width: 0;
  background-color: transparent;
  cursor: pointer; /* クリック可能な状態を維持 */
}
.open-btn img {
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.modal-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 30px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  pointer-events: none;
  z-index: 100;
  z-index: 40;
  background-color: rgba(34, 34, 34, 0.9);
}
.modal-dialog.is-active {
  opacity: 1;
  display: flex;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 40;
}

.modal-content {
  position: relative;
  margin: 0 auto;
  width: fit-content;
  z-index: 41;
}

.batu-btn {
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  top: -60px;
  right: 0;
  background: url(../img/top/webp/batsu.webp) no-repeat top left/cover;
  z-index: 42;
  cursor: pointer;
}
@media screen and (min-width: 451px) {
  .batu-btn {
    width: 30px;
  }
}

.pic01 {
  position: relative;
}
.pic01::before {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 1000/580;
  top: -26px;
  left: 0;
  z-index: 1;
  background: url(../img/top/webp/pic01-ab.webp) no-repeat bottom left/cover;
}
@media screen and (min-width: 500px) {
  .pic01::after {
    position: absolute;
    content: "";
    width: 62%;
    aspect-ratio: 620/183;
    top: 114px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: url(../img/top/webp/pic01-txt.webp) no-repeat top left/cover;
  }
}

.pic01-inred {
  position: absolute;
  width: 82%;
  top: 43vw;
  left: 9.5%;
}
@media screen and (min-width: 500px) {
  .pic01-inred {
    top: 222px;
  }
}

.pic01-01 {
  position: relative;
  margin-top: -14vw;
}
@media screen and (min-width: 500px) {
  .pic01-01 {
    margin-top: -90px;
  }
}

.trouble {
  position: relative;
  margin-top: -13vw;
  scroll-padding-top: 0;
}
@media screen and (min-width: 500px) {
  .trouble {
    margin-top: -65px;
  }
}

.add-control {
  position: relative;
  margin-top: 25px;
  padding: 0 20px;
  z-index: 2;
}

.add-sum {
  transition: all 0.3s ease;
  cursor: pointer;
  list-style: none;
}
.add-sum::-webkit-details-marker {
  display: none !important;
}

.add-box {
  display: none;
}

.add-box.open {
  position: relative;
  margin-top: -6px;
  width: calc(100% + 12px);
  left: -6px;
  display: block;
  z-index: -1;
}

.pic03 {
  position: relative;
  margin-top: -60vw;
  z-index: 1;
}
@media screen and (min-width: 500px) {
  .pic03 {
    margin-top: -320px;
  }
}

.main02 {
  position: relative;
}

.main02-box {
  position: absolute;
  margin: 0 10px;
  padding: 20px 23px;
  bottom: 5vw;
  background: url(../img/top/webp/main02-bg.webp) no-repeat top left/100% 100%;
}
@media screen and (min-width: 500px) {
  .main02-box {
    bottom: 30px;
  }
}

.main02-flex {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
}

.pic05 {
  position: relative;
  z-index: 2;
}

.pic06 {
  position: relative;
  z-index: 2;
}

.main03 {
  margin-top: -34vw;
  background: linear-gradient(180deg, rgb(246, 233, 228) 0%, rgb(246, 233, 228) 30%, rgba(246, 233, 228, 0) 100%);
}
@media screen and (min-width: 500px) {
  .main03 {
    margin-top: -180px;
  }
}

.main03-cont {
  position: relative;
  margin: -16vw 10px 4vw;
  padding: 60px 20px 22px;
  background: url(../img/top/webp/main03-bg.webp) no-repeat top left/100% 100%;
  z-index: 7;
}
@media screen and (min-width: 500px) {
  .main03-cont {
    margin-top: -82px;
    padding: 80px 33px 43px;
  }
}

.main03-cont_ttl {
  margin: 0 auto;
  width: 90%;
}

.main03-box {
  position: relative;
}
.main03-box:nth-of-type(1) {
  margin-top: 40px;
}
.main03-box:nth-of-type(2) {
  margin-top: 25px;
}

.main03-fig {
  position: absolute;
  bottom: 1vw;
  left: 9%;
  width: 84%;
  z-index: 1;
}
.main03-fig::before {
  position: absolute;
  content: "";
  z-index: 2;
  bottom: 0;
  right: -40px;
}
@media screen and (max-width: 500px) {
  .main03-fig::before {
    right: -8vw;
  }
}
.main03-fig.-bubble01::before {
  width: 130px;
  aspect-ratio: 259/170;
  background: url(../img/top/webp/main03-01_bubble.webp) no-repeat top left/cover;
}
@media screen and (max-width: 500px) {
  .main03-fig.-bubble01::before {
    width: 50%;
  }
}
.main03-fig.-bubble02::before {
  width: 108px;
  aspect-ratio: 217/183;
  background: url(../img/top/webp/main03-02_bubble.webp) no-repeat top left/cover;
}
@media screen and (max-width: 500px) {
  .main03-fig.-bubble02::before {
    width: 40%;
  }
}

.pic08-block {
  position: relative;
  margin-top: -32vw;
}
@media screen and (min-width: 500px) {
  .pic08-block {
    margin-top: -165px;
  }
}

.pic08-video {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 90%;
  -webkit-mask-image: url(../img/top/video_mask.png);
  mask-image: url(../img/top/video_mask.png);
  -webkit-mask-position: 40% 40%;
  mask-position: 40% 40%;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.main04 {
  position: relative;
  margin: -19vw 0 12vw;
}
@media screen and (min-width: 500px) {
  .main04 {
    margin: -100px 0 35px;
  }
}

.main04-box {
  margin: -25px 15px 0;
  padding: 25px 12px 20px;
  background: url(../img/top/webp/main04-box-bg.webp) no-repeat top left/100% 100%;
}
@media screen and (min-width: 500px) {
  .main04-box {
    padding-top: 20px;
  }
}

.main04-box_flex {
  margin: 13px auto 0;
  padding: 0 2px;
  width: 98%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 18px;
}

.main04-box_fig {
  margin: 0 auto;
  width: 98%;
}

.pic10-02 {
  margin-top: 30px;
  padding: 0 15px 0 30px;
}

.pic10-03 {
  margin-top: -14vw;
}
@media screen and (min-width: 500px) {
  .pic10-03 {
    margin-top: -76px;
  }
}

.pic10-04 {
  margin-top: -15vw;
}
@media screen and (min-width: 500px) {
  .pic10-04 {
    margin-top: -85px;
  }
}

.pic11 {
  margin-top: 32px;
}

.pic12 {
  margin-top: 37px;
  padding: 0 20px;
}

.review-box {
  position: relative;
  margin-top: 40px;
  overflow: hidden;
  padding-bottom: 10vw;
}
@media screen and (min-width: 500px) {
  .review-box {
    padding-bottom: 60px;
  }
}

.pic13-box {
  position: relative;
  margin: -195% auto 0;
  padding: 13px 15px;
  width: 90%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: url(../img/top/pic13-box_sp.png) no-repeat top left/contain;
}
@media screen and (min-width: 500px) {
  .pic13-box {
    padding: 13px 33px;
    height: auto;
    aspect-ratio: 910/1842;
    background-image: url(../img/top/webp/pic13-box.webp);
  }
}
.pic13-box .swiper-wrapper {
  transition-timing-function: linear;
}
.pic13-box .swiper-slide {
  height: fit-content;
}

.pic13-swiper {
  height: 100%;
}

.main05 {
  padding: 40px 0;
  background: url(../img/top/webp/main05-bg.webp) no-repeat top left/100% 100%;
}

.main05-ttl {
  padding: 0 33px;
}

.main05-swiper {
  margin-top: 10px;
}

.main06 {
  padding: 64px 0;
  background-image: url(../img/top/webp/main06-bg.webp);
  background-repeat: no-repeat;
  background-position: top 155px left 0;
  background-size: contain;
}

.main06-ttl {
  margin: 0 auto;
  padding: 0 43px;
  width: 90%;
}

.main06-list {
  margin-top: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.main06-area_box {
  margin: 0 auto;
  padding: 33px 20px;
  width: 90%;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
.main06-area_box:first-of-type {
  margin-top: 33px;
}
.main06-area_box:last-of-type {
  margin-top: 30px;
}
.main06-area_box .add-control {
  margin-top: 12px;
  padding: 0;
}
.main06-area_box .add-sum {
  padding: 9px 13px 9px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  background: linear-gradient(90deg, rgb(246, 223, 213) 0%, rgb(247, 226, 230) 100%);
}
.main06-area_box .add-btn {
  max-width: 25px;
  aspect-ratio: 1/1;
}
.main06-area_box .add-box {
  margin-top: 0;
  padding: 16px 20px 26px;
  width: 100%;
  z-index: 1;
}

.main06-ttl02 {
  position: relative;
  margin-bottom: 18px;
  padding-left: 20px;
  font-size: 2.4rem;
  line-height: 28px;
  font-weight: normal;
}
.main06-ttl02::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 28px;
  top: 0;
  left: 0;
  background-color: #50afab;
}

.add-ttl {
  font-family: "LINE Seed JP";
  font-size: 1.8rem;
  font-weight: normal;
}
.add-ttl span {
  margin-left: 10px;
  font-size: 1.4rem;
}

.main06-swiper_ttl {
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: normal;
}

.main06-dl {
  margin: 22px 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 17px;
}

.main06-dt {
  padding: 5px 0;
  width: 56px;
  text-align: center;
  font-size: 1.4rem;
  font-family: "EB Garamond", serif;
  color: #50afab;
  background-color: #fceae1;
}

.main06-dd {
  margin-top: 3px;
  width: calc(100% - 73px);
  line-height: 1.4;
  font-family: "LINE Seed JP";
  font-size: 1.4rem;
}
.main06-dd span {
  margin-top: 8px;
  display: block;
  font-size: 1.2rem;
}

.main06-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width: 500px) {
  .main06-flex {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 15px;
  }
}

.link-btn {
  display: block;
}

/***************************

object/utility/_text.scss

***************************/
.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.en {
  font-family: "EB Garamond", serif;
}

.ja {
  font-family: "Shippori Mincho", serif;
}/*# sourceMappingURL=style.css.map */