@charset "UTF-8";
/*====================================================================================
1. FOUNDATION.
====================================================================================*/
/*------------------------------------------------------------------------------------
1.1. BASE.
------------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
* {
  box-sizing: border-box;
}

:root {
  /* Base Colors */
  --color-black: #333;
  --color-white: #fff;
  --color-pink: #FE7DAD;
  --color-blue_light: #35BDD2;
  --color-red: #EE1C47;
  --color-green: #95CC6B;
  --color-brown: #815644;
  --color-blue: #3D72CC;
  --color-orange: #F37C47;
  --color-purple: #9A5DA5;
  --color-gray: #C4C4C4;
  --color-gray_light: #F7F7F7;
  /* Fonts */
  --font-Zen_Maru_Gothic: "Zen Maru Gothic", sans-serif;
  --font-Quicksand: "Quicksand", sans-serif;
  --font-Nunito: "Nunito", sans-serif;
  /* Theme Tokens */
  --theme-color-1: var(--color-black);
  --theme-color-2: var(--color-white);
  --theme-color-3: var(--color-pink);
  --theme-color-4: var(--color-blue_light);
  --theme-color-5: var(--color-red);
  --theme-color-6: var(--color-green);
  --theme-color-7: var(--color-brown);
  --theme-color-8: var(--color-blue);
  --theme-color-9: var(--color-orange);
  --theme-color-10: var(--color-purple);
  --theme-color-11: var(--color-gray);
  --theme-color-12: var(--color-gray_light);
  /* Theme Families */
  --theme-font-jp-primary: var(--font-Zen_Maru_Gothic);
  --theme-font-en-primary: var(--font-Quicksand);
  --theme-font-en-secondary: var(--font-Nunito);
}

html {
  font-size: 62.5%;
  overflow-y: auto;
  line-height: 1.6;
}

:where(html:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

:where(figure:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--theme-font-jp-primary);
  color: var(--theme-color-1);
  font-weight: 500;
}
body.lb-disable-scrolling {
  position: fixed;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  body img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.l-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 32rem;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  body {
    min-width: 120rem;
  }
  body .l-header {
    width: 120rem;
  }
  body .l-wrapper {
    max-width: 120rem;
  }
}
/*------------------------------------------------------------------------------------
1.2. RESET.
------------------------------------------------------------------------------------*/
/* ---------- START ANCHORLINK ---------- */
a {
  color: var(--theme-color-1);
  text-decoration: underline;
  background-color: transparent;
}
a:hover, a:active, a:focus {
  outline: none;
}
@media only screen and (min-width: 768px) {
  a {
    transition: all 0.3s ease;
  }
  a:hover {
    text-decoration: none;
    transition: all 0.3s ease;
  }
  a:hover img {
    opacity: 0.8;
  }
}

a[href*="tel:"] {
  cursor: default;
  text-decoration: none;
  color: var(--theme-color-1);
}
@media only screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}
@media only screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}

/*---------- START HOVER IMG  ----------*/
.ov-hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)";
}

/* ----------  START code set ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
}

pre,
code,
kbd,
samp,
var,
.font_mono {
  font-size: 1.3rem;
  line-height: 1.6;
}

pre {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
  overflow-x: auto;
}

img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  transition: All 0.3s ease;
}

input,
select,
option,
optgroup,
textarea {
  background-color: var(--theme-color-2);
  border-color: var(--theme-color-fifth);
  font-family: var(--theme-font-jp-primary);
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  color: var(--theme-color-1);
  border-radius: 0.5rem;
}

button,
input[type=submit],
input[type=button] {
  transition: all 0.3s ease;
  font-family: var(--theme-font-jp-primary);
}

picture {
  display: block;
  line-height: 1.6;
}

figure {
  margin: 0;
  padding: 0;
}

.white-space_pre-wrap {
  display: grid;
  width: 100%;
  white-space: pre-line;
}

/*====================================================================================
2. LAYOUT.
====================================================================================*/
/*------------------------------------------------------------------------------------
2.1. CONTAINER.
------------------------------------------------------------------------------------*/
.l-container {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .l-container {
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-container {
    max-width: 112rem;
    padding: 0 2rem;
  }
}

/*------------------------------------------------------------------------------------
2.2. HEADER.
------------------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .p-top {
    padding-bottom: 3rem;
  }
}

.lock-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.l-header {
  position: fixed;
  width: 100%;
  background: rgb(255, 255, 255);
  top: 0;
  left: 0;
  transition: all 0.5s;
  z-index: 9;
}
.l-header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.l-header.fixed {
  position: fixed;
  background: var(--theme-color-2);
  left: 0;
  top: 0;
  z-index: 999;
}
.l-header.hide {
  opacity: 0;
  pointer-events: none;
}
@media only screen and (min-width: 768px) {
  .l-header__logo {
    padding-left: 3rem;
  }
  .l-header__logo img {
    width: auto;
    height: 6.1rem;
  }
  .l-header__right {
    gap: 2rem;
  }
  .l-header .c-btn__contact {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 9.5rem;
    height: 8.7rem;
    min-width: auto;
    border-radius: 0;
    padding: 1rem 0;
    font-size: 1.4rem;
    margin-top: 0;
  }
  .l-header .c-btn__contact .icon-mail {
    background: url("../images/common_img/icon-mail.webp") no-repeat top center;
    background-size: 1.9rem;
    padding-top: 3rem;
  }
}
@media only screen and (max-width: 1366px) {
  .l-header__logo {
    padding-left: 2rem;
  }
  .l-header__logo img {
    height: 5.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .l-header {
    padding: 1rem;
  }
  .l-header.fixed {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  .l-header__logo {
    width: calc(100% - 17rem);
    padding-left: 0;
  }
  .l-header__logo img {
    height: auto;
  }
  .l-header__logo a {
    display: flex;
  }
  .l-header__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 14rem;
    gap: 1rem;
  }
  .l-header__right .c-list_SNS, .l-header__right .c-tel, .l-header__right .c-btn {
    display: none;
  }
  .l-header__right .c-yumelabo a {
    width: 10rem;
    height: 4rem;
    font-size: 1rem;
    padding: 0.2rem;
    gap: 0.8rem;
  }
  .l-header__right .c-yumelabo img {
    height: 2.5rem;
  }
  .l-header .l-gnav__link {
    display: inline-block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 1rem;
    border-bottom: 1px solid var(--theme-color-3);
    font-size: 1.6rem;
  }
  .l-header__main-sp .l-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--theme-color-3);
    padding: 1rem 0 0;
    margin-top: 1rem;
  }
  .l-header__main-sp .l-container div {
    width: calc((100% - 2rem) / 3);
  }
  .l-header__main-sp .l-container div a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.6rem;
    border: 1px solid var(--theme-color-3);
    border-radius: 0.5rem;
  }
  .l-header__main-sp .l-container .c-tel__link span {
    background-size: 1.2rem;
    padding-left: 2rem;
    font-size: 1.4rem;
  }
  .l-header__main-sp .l-container .c-btn-contact span {
    background: url("../images/common_img/icon-mail-pink.webp") no-repeat center left;
    background-size: 2rem;
    padding-left: 2.5rem;
  }
  .l-header__main-sp .l-container .c-btn-LINE span {
    background: url("../images/common_img/logo-LINE.webp") no-repeat center left;
    background-size: 2rem;
    padding-left: 2.5rem;
  }
}

/*------------------------------------------------------------------------------------
2.3. FOOTER.
------------------------------------------------------------------------------------*/
.l-footer {
  position: relative;
  padding-top: 4rem;
}
.l-footer__main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--theme-color-11);
}
.l-footer__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.l-footer__last {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  gap: 2rem;
}
.l-footer__last .l-gnav__list {
  width: auto;
  justify-content: flex-start;
}
.l-footer__last .l-gnav__link {
  text-decoration: none;
  padding: 0;
}
.l-footer__last .l-gnav__link:after {
  display: none;
}
.l-footer__copyright {
  word-break: keep-all;
  font-size: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .l-footer__logo img {
    height: 4rem;
  }
  .l-footer__right {
    width: 100%;
    justify-content: center;
    gap: 1.8rem;
  }
  .l-footer__right .c-list_SNS {
    gap: 1.8rem;
  }
  .l-footer__right .c-yumelabo {
    width: 14.8rem;
    white-space: nowrap;
  }
  .l-footer__last {
    padding-bottom: 4rem;
  }
  .l-footer__last .l-gnav__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }
  .l-footer__last .l-gnav__item {
    width: calc((100% - 2rem) / 2);
  }
  .l-footer__copyright {
    margin: auto;
  }
}
@media only screen and (min-width: 768px) {
  .l-footer {
    padding-top: 6rem;
  }
  .l-footer__main {
    justify-content: space-between;
    padding: 2rem 0;
  }
  .l-footer__logo img {
    width: auto;
    height: 6.8rem;
  }
  .l-footer__right {
    gap: 2rem;
  }
  .l-footer .l-gnav__list {
    gap: 0 4rem;
  }
}

.c-page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9;
}
.c-page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FBB8CC;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 2rem 2rem 0 0;
  padding: 0.3rem 2rem;
  gap: 0.8rem;
}
.c-page-top a .c-arr {
  position: relative;
  width: 1rem;
  margin-top: 0.7rem;
}
@media only screen and (min-width: 768px) {
  .c-page-top a {
    font-size: 1.4rem;
  }
  .c-page-top a:hover {
    opacity: 0.7;
  }
}

/*====================================================================================
3. COMPONENT.
====================================================================================*/
.l-main {
  margin-top: var(--headerH);
}

/*------------------------------------------------------------------------------------
3.1. CLEARFIX.
------------------------------------------------------------------------------------*/
.c-clearfix {
  display: block;
}

.c-clearfix::after {
  display: block;
  content: " ";
  height: 0;
  clear: both;
  visibility: hidden;
}

/*------------------------------------------------------------------------------------
3.2. BUTTON.
------------------------------------------------------------------------------------*/
/*---------- START HAMBURGER ----------*/
@media only screen and (max-width: 767px) {
  .c-trigger-menu {
    background: var(--theme-color-3);
    border-radius: 0.5rem;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-flow: column;
    width: 4rem;
    height: 4rem;
    gap: 0.5rem;
    border: none;
    z-index: 9999;
  }
  .c-trigger-menu .icon, .c-trigger-menu .txt {
    position: relative;
    display: block;
  }
  .c-trigger-menu .icon {
    width: 3rem;
    height: 2.2rem;
  }
  .c-trigger-menu .icon span {
    display: block;
    position: absolute;
    width: 2.5rem;
    height: 0.2rem;
    background: var(--theme-color-2);
    opacity: 1;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    font-weight: 500;
  }
  .c-trigger-menu .icon span:nth-child(1) {
    top: 0.2rem;
  }
  .c-trigger-menu .icon span:nth-child(2) {
    top: 0;
    bottom: 0;
  }
  .c-trigger-menu .icon span:nth-child(3) {
    bottom: 0.2rem;
  }
  .c-trigger-menu.active .icon span:nth-child(1) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    left: 0;
    top: 1rem;
  }
  .c-trigger-menu.active .icon span:nth-child(2) {
    opacity: 0;
  }
  .c-trigger-menu.active .icon span:nth-child(3) {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    left: 0;
    top: 0.3rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-trigger-menu {
    display: none;
  }
}

/*---------- START BUTTON  ----------*/
.c-btn {
  text-align: center;
}
.c-btn__link {
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, #FE7EAD, #FE934C);
  border-radius: 6rem;
  color: var(--theme-color-2);
  text-decoration: none;
  padding: 1.8rem 3rem;
  min-width: 15em;
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 3;
}
.c-btn__link .c-arr {
  position: absolute;
  width: 1.5rem;
  top: 0;
  bottom: 0;
  right: 1.5rem;
  margin: auto;
}
.c-btn__link--larger {
  margin-top: 5rem;
}
.c-btn__link.btn-back .c-arr {
  left: 1rem;
  right: auto;
}
.c-btn__link.external-link {
  padding: 1.8rem 5.5rem;
}
.c-btn__link.external-link:after {
  position: absolute;
  content: "";
  background: url("../images/about/icon-link.webp") no-repeat;
  background-size: 100%;
  width: 1.6rem;
  height: 1.6rem;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
}
.c-btn__contact {
  background: var(--theme-color-3);
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 0.5rem;
  min-width: 20rem;
  padding: 1.1rem;
  color: var(--theme-color-2);
}
.c-btn--white .c-btn__link {
  background: var(--theme-color-2);
  color: var(--theme-color-1);
}
.c-btn--gray .c-btn__link {
  background: var(--theme-color-11);
  color: var(--theme-color-2);
}
.c-btn--prev .c-btn__link .c-arr {
  right: auto;
  left: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-btn__link {
    font-size: 1.8rem;
    min-width: 28rem;
    margin-top: 3rem;
  }
  .c-btn__link--larger {
    font-size: 2.4rem;
    padding: 3.3rem 6rem;
    border-radius: 6rem;
    margin-top: 10rem;
  }
  .c-btn__link--larger .c-arr {
    right: 3rem;
  }
  .c-btn__link--larger .c-arr:before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .c-btn__link:hover {
    opacity: 0.7;
    transition: all 0.3s ease;
  }
  .c-btn__link.external-link {
    padding: 1.8rem 6.5rem;
  }
  .c-btn__link.external-link:after {
    width: 2.5rem;
    height: 2.5rem;
  }
  .c-btn__contact {
    min-width: 24rem;
  }
  .c-btn__contact:hover {
    background: var(--theme-color-3);
    opacity: 0.7;
  }
}

.c-btn_txt__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-btn_txt__link {
    margin-top: 3rem;
  }
  .c-btn_txt__link:hover {
    color: var(--theme-color-3);
  }
}

/*------------------------------------------------------------------------------------
3.3. ICON.
------------------------------------------------------------------------------------*/
/*---------- START ICON ZOOM  ----------*/
.icon-zoom {
  position: relative;
  display: block;
  overflow: hidden;
}
.icon-zoom:before {
  position: absolute;
  display: inline-block;
  content: "";
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  background-image: url("../common_img/lightbox/icon-zoom.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1.6rem 1.6rem;
  background-color: var(--bg-yellow);
}
@media only screen and (min-width: 768px) {
  .icon-zoom img {
    transition: transform 0.5s ease;
  }
  .icon-zoom:hover img {
    transform: scale(1.06);
  }
}

/*---------- START ARROW BUTTON  ----------*/
.c-arr {
  position: relative;
}
.c-arr:before {
  position: absolute;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid var(--theme-color-1);
  border-right: 2px solid var(--theme-color-1);
  border-radius: 0.2rem;
  transform: rotate(45deg);
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-arr--back:before {
  transform: rotate(-135deg);
}
.c-arr--up:before {
  transform: rotate(-45deg);
}
.c-arr--down:before {
  transform: rotate(135deg);
}
.c-arr--white:before {
  border-color: var(--theme-color-2);
}
.c-arr--pink:before {
  border-color: var(--theme-color-3);
}
.c-arr--bg_gradient {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(#FE7EAD, #FE934C);
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
}
.c-arr--bg_gradient:before {
  left: 0;
}

/*------------------------------------------------------------------------------------
3.4. TITLE.
------------------------------------------------------------------------------------*/
.c-title01 {
  text-align: center;
  margin-bottom: 2.5rem;
}
.c-title01 span {
  position: relative;
}
.c-title01 .txt-en {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  font-family: var(--theme-font-en-primary);
  font-weight: 500;
  color: var(--theme-color-3);
  padding: 0 1.5rem;
}
.c-title01 .txt-en:after, .c-title01 .txt-en:before {
  position: absolute;
  content: "";
  background: var(--theme-color-3);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-title01 .txt-en:after {
  left: 0;
}
.c-title01 .txt-en:before {
  right: 0;
}
.c-title01 .txt-jp {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 2.6rem;
}
.c-title01 .txt-jp strong {
  font-weight: bold;
  color: var(--theme-color-3);
}
.c-title01--white .txt-en {
  color: var(--theme-color-2);
}
.c-title01--white .txt-en:after, .c-title01--white .txt-en:before {
  background: var(--theme-color-2);
}
.c-title01--white .txt-jp {
  color: var(--theme-color-2);
}
.c-title01--sm {
  margin-bottom: 1.7rem;
}
.c-title01--sm .txt-jp {
  font-size: 2rem;
}
@media only screen and (min-width: 768px) {
  .c-title01 {
    margin-bottom: 5rem;
  }
  .c-title01 .txt-en {
    font-size: 2.2rem;
  }
  .c-title01 .txt-jp {
    font-size: 4.2rem;
  }
  .c-title01--sm {
    margin-bottom: 3.5rem;
  }
  .c-title01--sm .txt-jp {
    font-size: 2.8rem;
  }
}

.c-title02 {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 3rem;
}
.c-title02 .title-sub {
  font-size: 2rem;
}
.c-title02 .quote-l, .c-title02 .quote-r {
  color: var(--theme-color-3);
}
@media only screen and (min-width: 768px) {
  .c-title02 {
    font-size: 4.2rem;
    margin-bottom: 6rem;
  }
  .c-title02 .title-sub {
    font-size: 3.6rem;
  }
}

.c-title03 {
  position: relative;
  font-size: 2rem;
  background: url("../images/top/dot-pink.webp") no-repeat center bottom;
  background-size: 3.6rem;
  padding-bottom: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .c-title03 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
  }
}

.c-title04 {
  background: #FBE2E2;
  text-align: center;
  font-size: 2rem;
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 768px) {
  .c-title04 {
    font-size: 3.2rem;
    border-radius: 2rem;
    padding: 1.2rem;
    margin-bottom: 4rem;
  }
}

.c-title05 {
  position: relative;
  background: url("../images/about/s3_title-line.webp") no-repeat center bottom;
  background-size: 100%;
  text-align: center;
  color: var(--theme-color-3);
  border-radius: 1rem;
}
.c-title05:after, .c-title05:before {
  position: absolute;
  content: "";
}
.c-title05:after {
  background: url("../images/about/s3_title-icon01.webp") no-repeat;
  background-size: 100%;
}
.c-title05:before {
  background: url("../images/about/s3_title-icon02.webp") no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .c-title05 {
    font-size: 2rem;
    padding: 0 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  .c-title05:after, .c-title05:before {
    zoom: 50%;
  }
  .c-title05:after {
    width: 8.9rem;
    height: 6rem;
    bottom: 1.5rem;
    left: 2%;
  }
  .c-title05:before {
    width: 16.5rem;
    height: 6.65rem;
    bottom: 1rem;
    right: 2%;
  }
}
@media only screen and (min-width: 768px) {
  .c-title05 {
    font-size: 2.8rem;
    padding: 0 0.5rem 2.5rem;
    margin-bottom: 3.5rem;
  }
  .c-title05:after, .c-title05:before {
    zoom: 50%;
  }
  .c-title05:after {
    width: 17.8rem;
    height: 12rem;
    top: -2rem;
    left: 6%;
  }
  .c-title05:before {
    width: 33rem;
    height: 13.3rem;
    top: -3.5rem;
    right: 4%;
  }
}

/*------------------------------------------------------------------------------------
3.5. TEXT.
------------------------------------------------------------------------------------*/
/*---------- TEXT INDENT ----------*/
.c-text-indent {
  display: block;
  padding-inline-start: 1em;
  text-indent: -1em;
  margin-top: 1.2em;
}

/*---------- START TEXT  ----------*/
.u-txt--en {
  font-family: var(--theme-font-en-primary);
}
.u-txt--s {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.u-txt--m {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.u-txt--l {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.u-txt--xl {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .u-txt--s {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .u-txt--m {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .u-txt--l {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 3rem;
  }
  .u-txt--xl {
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 3rem;
  }
}

.u-txt_line {
  display: inline;
  background: linear-gradient(to bottom, transparent calc(100% - 2px), #2e6de9 calc(100% - 2px) 100%);
}
.u-txt_line--pink {
  background: linear-gradient(to bottom, transparent calc(100% - 6px), #FFCBDE calc(100% - 6px) 100%);
}
.u-txt_line--orange {
  background: linear-gradient(to bottom, transparent calc(100% - 6px), var(--theme-color-9) calc(100% - 6px) 100%);
}

/*---------- START BACKGROUND  ----------*/
.u-bg-yellow {
  background: #F9F0E5;
  padding: 5rem 0 12rem;
}
@media only screen and (min-width: 768px) {
  .u-bg-yellow {
    padding: 10rem 0 22rem;
  }
}

.u-bg_dot-pink {
  position: relative;
  background: url("../images/top/s5_bg.webp") repeat top center;
  background-size: 4.6rem;
  padding: 5rem 0;
}
@media only screen and (min-width: 768px) {
  .u-bg_dot-pink {
    padding: 10rem 0;
  }
}

/*------------------------------------------------------------------------------------
3.5. ITEM.
------------------------------------------------------------------------------------*/
/*---------- list_SNS ----------*/
.c-list_SNS {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.c-list_SNS a {
  display: flex;
  align-items: center;
}
.c-list_SNS a img {
  width: 2.9rem;
}
@media only screen and (min-width: 768px) {
  .c-list_SNS {
    gap: 2rem;
  }
}

/*---------- c-yumelabo ----------*/
.c-yumelabo a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--theme-color-3);
  border-radius: 0.5rem;
  padding: 0.8rem 1.4rem;
  text-decoration: none;
  line-height: 1.3;
  gap: 1rem;
}
.c-yumelabo a span {
  font-weight: bold;
}
.c-yumelabo a strong {
  display: block;
  color: var(--theme-color-3);
}
.c-yumelabo img {
  width: auto;
  height: 3.6rem;
}
@media only screen and (min-width: 768px) {
  .c-yumelabo a:hover {
    opacity: 0.7;
  }
}

/*---------- c-tel ----------*/
.c-tel__number {
  display: inline-block;
  background: url("../images/common_img/icon-tel.webp") no-repeat bottom left;
  background-size: 2.1rem;
  font-size: 3.2rem;
  padding-left: 3rem;
  line-height: 0.9;
}
.c-tel__time {
  display: block;
  font-size: 1.4rem;
  text-align: center;
}
.c-tel__link {
  display: inline-block;
}

/*------------------------------------------------------------------------------------
3.6. LIST.
------------------------------------------------------------------------------------*/
/*---------- LIST DOT ----------*/
.c-list-dot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.c-list-dot li {
  position: relative;
  padding-left: 1.2rem;
}
.c-list-dot li:after {
  position: absolute;
  content: "";
  background: var(--theme-color-3);
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  top: 0.6rem;
  left: 0;
}
.c-list-dot li.etc {
  width: 100% !important;
  padding-left: 0;
  text-align: right;
}
.c-list-dot li.etc:after {
  display: none;
}
.c-list-dot--dot-orange li:after {
  background: var(--theme-color-9);
}
.c-list-dot--dot-yellow li:after {
  background: #FFC77E;
}
.c-list-dot--dot-green li:after {
  background: var(--theme-color-6);
}
.c-list-dot--dot-blue li:after {
  background: var(--theme-color-4);
}
@media only screen and (max-width: 767px) {
  .c-list-dot li.etc {
    margin-top: -2.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-list-dot {
    gap: 0.5rem 3rem;
  }
  .c-list-dot li {
    width: calc((100% - 6rem) / 3);
  }
  .c-list-dot li:after {
    top: 0.8rem;
  }
  .c-list-dot li.etc {
    margin-top: -3rem;
  }
}

/*---------- LIST DOT ----------*/
.c-list-indent {
  margin-top: 1.5rem;
}
.c-list-indent li {
  text-indent: -1em;
  padding-left: 1em;
}

/*====================================================================================
4. PROJECT.
====================================================================================*/
/*------------------------------------------------------------------------------------
4.1. NAVIGATION.
------------------------------------------------------------------------------------*/
.l-gnav {
  border-top: 1px solid var(--theme-color-3);
  border-bottom: 1px solid var(--theme-color-3);
}
.l-gnav__list {
  width: 100%;
}
.l-gnav__item {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .l-gnav {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 100%;
    background: var(--theme-color-2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    border: none;
    padding: 1rem 1rem 18rem;
    overflow: auto;
    z-index: 9999;
  }
  .l-gnav.is-visible {
    opacity: 1;
    visibility: visible;
    height: 100vh;
    right: 0;
  }
  .l-gnav__box-SNS {
    background: #F9F0E5;
    border-radius: 0.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0;
    margin-top: 2rem;
  }
  .l-gnav__box-SNS p {
    font-size: 1.5rem;
  }
  .l-gnav__box-SNS .c-list_SNS {
    gap: 2.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-gnav {
    padding: 1.5rem 0;
  }
  .l-gnav__list {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .l-gnav__item:first-child .l-gnav__link {
    padding-left: 0;
  }
  .l-gnav__item:last-child .l-gnav__link {
    padding-right: 0;
  }
  .l-gnav__item:last-child .l-gnav__link:after {
    display: none;
  }
  .l-gnav__link {
    position: relative;
    text-decoration: none;
    display: inline-block;
    padding: 0 3rem;
  }
  .l-gnav__link:after {
    position: absolute;
    content: "";
    background: var(--theme-color-11);
    width: 1px;
    height: 2rem;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .l-gnav__link:hover {
    color: var(--theme-color-3);
  }
}

/*------------------------------------------------------------------------------------
4.2. SECTION COMMON.
------------------------------------------------------------------------------------*/
.c-accordion {
  background: var(--theme-color-2);
}
.c-accordion__item {
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid var(--theme-color-fifth);
}
.c-accordion__item:last-child {
  border-bottom: none;
}
.c-accordion__head {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.c-accordion__head:after, .c-accordion__head:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 2px;
  margin: auto;
  background-color: var(--theme-color-3);
}
.c-accordion__head:after {
  transform: rotate(-90deg);
  transition: transform 0.35s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.c-accordion__head.active:after {
  transform: rotate(0);
}
.c-accordion__head.active .c-accordion__title {
  color: var(--theme-color-3);
}
.c-accordion__title {
  width: 100%;
  display: flex;
  align-items: center;
}
.c-accordion__title-icon {
  display: flex;
  width: 2.5rem;
}
.c-accordion__title-icon img {
  width: 1.6rem;
  height: auto;
}
.c-accordion__title-txt {
  display: inline-block;
  font-weight: normal;
  font-size: 1.4rem;
}
.c-accordion__cont {
  display: none;
  padding-top: 1rem;
}
.c-accordion__list-link {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 1rem 2rem 1rem 1rem;
  border-top: 1px solid var(--theme-color-fifth);
}
.c-accordion__list-link .c-arr {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.8rem;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .c-accordion__list-link:hover {
    color: var(--theme-color-3);
  }
  .c-accordion__list-link:hover .c-arr:before {
    border-color: var(--theme-color-3);
  }
}

.c-readmore {
  width: 100%;
}
.c-readmore__text {
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: 3em;
}
.c-readmore__text.expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  max-height: none;
}
.c-readmore__btn {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 1.2rem;
  padding: 0;
  margin-top: 1rem;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
@media only screen and (min-width: 768px) {
  .c-readmore__btn:hover {
    color: var(--theme-color-3);
  }
}

/*============================== START SEC contact ==============================*/
.c-contact {
  position: relative;
  background: #FBE2E2;
  padding: 5rem 0 12rem;
}
.c-contact__main {
  background: var(--theme-color-2);
  border-radius: 2rem;
  box-shadow: 4px 4px 0 rgba(254, 125, 173, 0.5);
  padding: 2rem 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-contact {
    padding: 10rem 0 22rem;
  }
  .c-contact__main {
    border-radius: 3rem;
    padding: 5rem;
  }
}

/*---------- START form ----------*/
.c-form {
  display: block;
  width: 100%;
}
.c-form__content-dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
}
.c-form__content-dt {
  position: relative;
  background: var(--gray);
  display: flex;
  align-items: flex-start;
  font-weight: bold;
}
.c-form__content-dd {
  position: relative;
  background: #fff;
  box-sizing: border-box;
  font-size: 1.4rem;
}
.c-form__content-title {
  position: relative;
  width: 100%;
  font-weight: bold;
  color: #000;
  padding-left: 5rem;
}
.c-form__content-title:after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  text-align: center;
  width: 4rem;
  height: 2rem;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--theme-color-2);
  line-height: 2rem;
}
.c-form__content-title.hissu:after {
  background: var(--theme-color-3);
  content: "必須";
}
.c-form__content-title.ninni:after {
  background: var(--theme-color-11);
  content: "任意";
}
.c-form__content .error {
  color: #ff0000;
  font-size: 1.2rem;
  font-weight: normal;
}
.c-form .selectable {
  width: 50%;
  appearance: auto;
}
.c-form__format {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}
.c-form__format-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.c-form__format-item {
  width: 12rem;
  display: flex;
  flex-flow: column;
  background: var(--gray);
  text-align: center;
  color: var(--purple);
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.7rem;
  gap: 0.4rem;
}
.c-form__format-item span {
  display: block;
  width: 100%;
}
.c-form__group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem auto 0;
  gap: 2rem;
}
.c-form__group-btn .contact-btn {
  position: relative;
  display: inline-block;
  width: auto;
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  padding: 0;
  border-radius: 4rem;
  margin-top: 0;
  z-index: 3;
}
.c-form__group-btn .contact-btn input {
  outline: none;
  border: none;
  display: inline-block;
  width: 100%;
  background: none !important;
  font-weight: bold;
  color: var(--theme-color-2);
  cursor: pointer;
  padding: 1.8rem 3rem;
  font-size: 1.5rem;
}
.c-form__group-btn .contact-btn .c-btn__link {
  width: 100%;
  padding: 0;
}
.c-form__group-btn .contact-btn .c-btn__link.btn-white input {
  color: var(--dark_purple);
}
.c-form__group-btn .c-btn__link {
  margin-top: 0;
}
.c-form__group-btn .disabled#submitButton {
  pointer-events: none;
  overflow: hidden;
}
.c-form__group-btn .disabled#submitButton .c-btn__link {
  background: #ccc !important;
}
.c-form .h-adr div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.c-form .h-adr .p-postal-code {
  width: 20rem;
}
.c-form .c-list-radio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.c-form .js-kohbetsu-time {
  overflow: hidden;
  transition: all 0.3s ease;
}
.c-form .js-kohbetsu-time[style*="display: none"] {
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .c-form {
    margin: 2rem auto 0;
  }
  .c-form__content-dl {
    position: relative;
  }
  .c-form__content-dt, .c-form__content-dd {
    display: block;
    width: 100% !important;
    padding: 1rem 0;
  }
  .c-form__content-dd {
    font-size: 1.6rem;
    padding-top: 0;
  }
  .c-form__content-title {
    display: block;
    width: 100%;
    font-size: 1.4rem;
  }
  .c-form__end {
    margin-top: 3rem;
  }
  .c-form__format-list {
    width: 100%;
    gap: 0.2rem;
  }
  .c-form__format-item {
    width: calc((100% - 0.6rem) / 4);
    font-size: 1rem;
  }
  .c-form__format-item img {
    width: auto;
    height: 4rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-form {
    margin: 5rem auto 0;
  }
  .c-form__content-dt, .c-form__content-dd {
    padding: 2rem 0;
  }
  .c-form__content-dt {
    width: 32%;
  }
  .c-form__content-dd {
    width: 68%;
  }
  .c-form__content-title {
    font-size: 1.6rem;
  }
  .c-form__end {
    margin-top: 5rem;
  }
  .c-form__group-btn {
    margin: 4rem auto 0;
  }
  .c-form__group-btn .contact-btn input {
    font-size: 1.8rem;
  }
  .c-form .contact-btn .c-btn__link.btn-white:hover input {
    color: #fff;
  }
  .c-form__format {
    gap: 2rem;
  }
}

/*============================== START SEC contact_infor ==============================*/
.c-contact_infor {
  position: relative;
  width: 100%;
  background: var(--theme-color-3);
  padding-bottom: 1.5rem;
  margin: -3rem 0;
  z-index: 2;
}
.c-contact_infor:after {
  position: absolute;
  content: "";
  background: var(--theme-color-3);
  width: 40%;
  height: 32rem;
  border-radius: 50%;
  left: 0;
  right: 0;
  top: -2rem;
  margin: auto;
  z-index: -1;
}
.c-contact_infor:before {
  position: absolute;
  content: "";
  background: url("../images/top/contact_icon01.webp") no-repeat;
  background-size: 100%;
  width: 227px;
  height: 151px;
  top: -6rem;
  left: 25%;
  zoom: 30%;
}
.c-contact_infor__list-infor {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.c-contact_infor__list-infor .c-btn__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 29rem;
  height: 6.6rem;
  font-size: 1.8rem;
  border-radius: 4rem;
  margin-top: 0;
}
.c-contact_infor__list-infor .c-btn__link.btn-contact {
  position: relative;
}
.c-contact_infor__list-infor .c-btn__link.btn-contact:after {
  position: absolute;
  content: "";
  background: url("../images/top/contact_icon-mail.webp") no-repeat center left;
  background-size: 100%;
  width: 3.5rem;
  height: 2.6rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-contact_infor__list-infor .c-btn__link.btn-line {
  position: relative;
}
.c-contact_infor__list-infor .c-btn__link.btn-line:after {
  position: absolute;
  content: "";
  background: url("../images/top/contact_icon-LINE.webp") no-repeat center left;
  background-size: 100%;
  width: 7rem;
  height: 7rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-contact_infor__list-infor .c-tel__link {
  color: var(--theme-color-2);
}
.c-contact_infor__list-infor .c-tel__number {
  background: url(../images/top/contact_icon-tel.webp) no-repeat bottom left;
  background-size: 2.5rem;
  font-size: 4rem;
  padding-left: 3.5rem;
}
.c-contact_infor__list-infor .c-tel__time {
  font-size: 1.6rem;
  font-weight: bold;
}
.c-contact_infor__box-infor {
  width: 100%;
  background: var(--theme-color-2);
  margin-top: 2rem;
}
.c-contact_infor__title {
  text-align: center;
  margin-bottom: 1rem;
}
.c-contact_infor__title span {
  position: relative;
  display: inline-block;
  padding: 0 3rem;
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--theme-color-3);
}
.c-contact_infor__title span:after, .c-contact_infor__title span:before {
  position: absolute;
  content: "";
  background: url("../images/top/line-black.webp") no-repeat;
  background-size: 100%;
  width: 3.5rem;
  height: 4.9rem;
  top: 2rem;
  bottom: 0;
  margin: auto;
}
.c-contact_infor__title span:after {
  left: 0;
}
.c-contact_infor__title span:before {
  right: 0;
  transform: scale(-1, 1);
}
.c-contact_infor__list-card {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.c-contact_infor__card-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 1px solid var(--theme-color-4);
  padding: 1.5rem 2rem;
  border-radius: 2rem;
  gap: 1.5rem;
}
.c-contact_infor__card-item:nth-child(2) {
  border: 1px solid var(--theme-color-9);
}
.c-contact_infor__card-item:nth-child(2) .c-contact_infor__card-img {
  background: var(--theme-color-9);
}
.c-contact_infor__card-item:nth-child(3) {
  border: 1px solid var(--theme-color-6);
}
.c-contact_infor__card-item:nth-child(3) .c-contact_infor__card-img {
  background: var(--theme-color-6);
}
.c-contact_infor__card-img {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--theme-color-4);
  width: 7.4rem;
  height: 7.4rem;
  border-radius: 50%;
}
.c-contact_infor__card-img img {
  zoom: 50%;
}
.c-contact_infor__card-txt {
  width: calc(100% - 8.9rem);
}
.c-contact_infor__card-txt .u-txt--m {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .c-contact_infor {
    border-radius: 2rem;
  }
  .c-contact_infor__list-infor {
    justify-content: center;
    gap: 2rem;
  }
  .c-contact_infor__list-infor .c-btn__link:after {
    left: 2rem;
  }
  .c-contact_infor__list-infor .c-btn__link.btn-contact:after {
    width: 1.75rem;
    height: 1.3rem;
  }
  .c-contact_infor__list-infor .c-btn__link.btn-line:after {
    width: 3.5rem;
    height: 3.5rem;
  }
  .c-contact_infor__box-infor {
    border-radius: 2rem;
    padding: 2rem 1.5rem 1.5rem;
  }
  .c-contact_infor__title span:after, .c-contact_infor__title span:before {
    zoom: 30%;
    background-size: 50% !important;
    background-position: bottom 20px center;
  }
}
@media only screen and (min-width: 768px) {
  .c-contact_infor {
    border-radius: 4.5rem;
    padding-bottom: 5rem;
    margin: -6rem 0;
  }
  .c-contact_infor:after {
    top: -6rem;
  }
  .c-contact_infor:before {
    left: 30%;
    zoom: 50%;
  }
  .c-contact_infor__list-infor {
    position: relative;
    justify-content: space-between;
  }
  .c-contact_infor__list-infor:after, .c-contact_infor__list-infor:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    border-left: 1px dashed var(--theme-color-2);
    top: 0;
  }
  .c-contact_infor__list-infor:after {
    left: 32.5%;
  }
  .c-contact_infor__list-infor:before {
    right: 29.5%;
  }
  .c-contact_infor__list-infor .c-btn__link:after {
    left: 4rem;
    zoom: 50%;
  }
  .c-contact_infor__list-infor .c-btn__link:hover {
    background: var(--theme-color-2);
    opacity: 0.8;
  }
  .c-contact_infor__box-infor {
    border-radius: 3rem;
    padding: 3rem;
    margin-top: 4rem;
  }
  .c-contact_infor__title {
    margin-bottom: 2rem;
  }
  .c-contact_infor__title span {
    font-size: 2.4rem;
  }
  .c-contact_infor__title span:after, .c-contact_infor__title span:before {
    zoom: 50%;
  }
  .c-contact_infor__list-card {
    gap: 2.5rem;
  }
  .c-contact_infor__card-item {
    width: calc((100% - 5rem) / 3);
    border-radius: 3rem;
  }
}

/*============================== START c-box_SNS ==============================*/
.c-box_SNS {
  position: relative;
  width: 100%;
  background: #F9EFE5;
  border-radius: 1.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
.c-box_SNS:after, .c-box_SNS:before {
  position: absolute;
  content: "";
  bottom: -2.2rem;
}
.c-box_SNS:after {
  background: url("../images/top/s4_SNS-icon01.webp") no-repeat;
  background-size: 100%;
  width: 299px;
  height: 236px;
  left: 2rem;
}
.c-box_SNS:before {
  background: url("../images/top/s4_SNS-icon02.webp") no-repeat;
  background-size: 100%;
  width: 299px;
  height: 236px;
  right: 1rem;
}
.c-box_SNS__list {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .c-box_SNS {
    padding: 2rem 1.2rem 4.5rem;
  }
  .c-box_SNS:after, .c-box_SNS:before {
    zoom: 20%;
  }
  .c-box_SNS__list {
    justify-content: space-between;
  }
  .c-box_SNS__list img {
    zoom: 35%;
  }
}
@media only screen and (min-width: 768px) {
  .c-box_SNS {
    padding: 4.5rem;
    margin-bottom: 6rem;
  }
  .c-box_SNS:after, .c-box_SNS:before {
    zoom: 50%;
  }
  .c-box_SNS__list {
    justify-content: center;
    margin-top: 2rem;
    gap: 4rem;
  }
  .c-box_SNS__list img {
    zoom: 50%;
  }
}

/*============================== START SEC owner-card ==============================*/
.owner-card__main {
  position: relative;
  display: inline-block;
  width: 100%;
  background: #F8F1EA;
  border-radius: 1rem;
  box-shadow: 4px 4px 0 rgba(243, 124, 71, 0.5);
  transition: transform 0.3s ease;
  padding: 1.5rem;
  text-decoration: none;
  z-index: 3;
}
.owner-card__link {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.owner-card__img {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.owner-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.owner-card__body {
  position: relative;
  padding-bottom: 4rem;
}
.owner-card__list-lable {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.owner-card__label {
  position: relative;
  display: inline-block;
  background: var(--theme-color-3);
  border: 1px solid var(--theme-color-3);
  color: var(--theme-color-2);
  font-size: 1.3rem;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  text-decoration: none;
  margin-bottom: 1rem;
  z-index: 3;
}
.owner-card__label.label-blue_light {
  background: var(--theme-color-4);
  border-color: var(--theme-color-4);
}
.owner-card__label.label-green {
  background: var(--theme-color-6);
  border-color: var(--theme-color-6);
}
.owner-card__label.label-brown {
  background: var(--theme-color-7);
  border-color: var(--theme-color-7);
}
.owner-card__label.label-blue {
  background: var(--theme-color-8);
  border-color: var(--theme-color-8);
}
.owner-card__label.label-orange {
  background: var(--theme-color-9);
  border-color: var(--theme-color-9);
}
.owner-card__label.label-purple {
  background: var(--theme-color-10);
  border-color: var(--theme-color-10);
}
.owner-card__text {
  font-size: 1.5rem;
  font-weight: bold;
}
.owner-card__date {
  position: absolute;
  text-align: right;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: var(--theme-font-en-primary);
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .owner-card__body {
    padding-top: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .owner-card__main:hover .owner-card__img img {
    transform: scale(1.1);
  }
  .owner-card__label {
    margin-bottom: 1.5rem;
  }
  .owner-card__label:hover {
    background: var(--theme-color-2) !important;
    color: var(--theme-color-3);
  }
  .owner-card__label.label-blue_light:hover {
    color: var(--theme-color-4);
  }
  .owner-card__label.label-green:hover {
    color: var(--theme-color-6);
  }
  .owner-card__label.label-brown:hover {
    color: var(--theme-color-7);
  }
  .owner-card__label.label-blue:hover {
    color: var(--theme-color-8);
  }
  .owner-card__label.label-orange:hover {
    color: var(--theme-color-9);
  }
  .owner-card__label.label-purple:hover {
    color: var(--theme-color-10);
  }
  .owner-card__body {
    padding-top: 2rem;
  }
  .owner-card__text {
    font-size: 1.8rem;
  }
  .owner-card__date {
    font-size: 1.8rem;
  }
}

.c-list_owner-card {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.c-list_owner-card--white .owner-card__main {
  background: var(--theme-color-2);
  box-shadow: 4px 4px 0 rgba(248, 158, 191, 0.5);
}
.c-list_owner-card .owner-card {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .c-list_owner-card {
    gap: 4rem;
  }
  .c-list_owner-card .owner-card {
    width: calc((100% - 8rem) / 3);
  }
}

/*============================== START c-youtube ==============================*/
.c-youtube {
  margin: 0 auto 7rem;
}
.c-youtube__title {
  position: relative;
  text-align: center;
  margin-bottom: 1.5rem;
  z-index: 2;
}
.c-youtube__title:after {
  position: absolute;
  content: "";
  background: var(--theme-color-3);
  width: 100%;
  height: 3px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}
.c-youtube__title h3 {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
}
.c-youtube__title span {
  display: inline-block;
}
.c-youtube__title .s2_shape01 {
  position: absolute;
  z-index: 3;
}
.c-youtube__title .txt {
  position: relative;
  padding: 0 1rem;
  background: var(--theme-color-2);
}
.c-youtube__iframe {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.c-youtube__iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@media only screen and (max-width: 767px) {
  .c-youtube__title .s2_shape01 {
    zoom: 25%;
    top: -4.5rem;
    left: -16rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-youtube {
    max-width: 84rem;
    margin: 0 auto 14rem;
  }
  .c-youtube__title {
    margin-bottom: 3rem;
  }
  .c-youtube__title h3 {
    font-size: 3.2rem;
  }
  .c-youtube__title .txt {
    padding: 0 3rem;
  }
  .c-youtube__title .s2_shape01 {
    zoom: 50%;
    top: -5.5rem;
    left: -16rem;
  }
}

/*---------- START popup ----------*/
.popup {
  display: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.popup.active {
  display: block;
  opacity: 1;
}
.popup__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
}
.popup__inner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--theme-color-2);
  width: 90%;
  max-width: 100rem;
  padding: 2rem;
  border-radius: 2rem;
  border: 1px solid var(--theme-color-3);
  z-index: 11;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.popup.active .popup__inner {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.popup__close {
  position: absolute;
  top: 0;
  right: 6px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.popup__ttl {
  font-size: 18px;
  margin-bottom: 1rem;
}
.popup__content {
  max-height: 300px;
  overflow-y: auto;
  line-height: 1.6;
}
.popup__content h3 {
  margin-top: 2rem;
  margin: 2rem 0 0.7rem;
}
.popup__content p + p {
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .popup__inner {
    padding: 6rem;
    border-radius: 3rem;
  }
  .popup__close {
    top: 10px;
    right: 12px;
  }
  .popup__content {
    max-height: 500px;
  }
  .popup__content h3 {
    margin: 4rem 0 1.5rem;
  }
  .popup__content p + p {
    margin-top: 1.5rem;
  }
}