@charset "UTF-8";

/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  opacity: 0;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

@font-face {
  font-family: "Verdana";
  src: url("/fonts/Verdana.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Verdana";
  src: url("/fonts/verdanab.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

body {
  color: #241503;
  font-family: "Noto Sans JP";
  font-weight: 400;
  background: #FFF9E9;
}

main {
  overflow: hidden;
}

html {
  font-size: 4.2666666667vw;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 1.25vw;
  }
}

@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }

  a:hover {
    opacity: 0.8;
  }
}

header {
  position: fixed;
  height: 60px;
  max-height: 60px;
  box-sizing: border-box;
  top: 0;
  background: #fff;
  z-index: 999;
  width: 100%;
}

@media screen and (min-width: 960px) {

  header {
    max-height: inherit;
  }

  .header__wrapper {
    max-width: 1200px;
    padding: 0 1rem;
    margin-inline: auto;
    height: inherit;
    display: flex;
    align-items: center;
  }
}

.header__logo {
  max-width: 240px;
  height: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  margin: auto;
  z-index: 999;
}

@media screen and (min-width: 960px) {
  .header__logo {
    position: static;
    margin: 0 auto 0 0;
  }
}

@media screen and (min-width: 960px) {
  .header__inner {
    width: fit-content;
    margin: 0 0 0 auto;
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 960px) {
  .header__nav {
    position: static;
    display: flex;
    align-items: center;
  }
}


.header-nav {
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background-color: #FE8B04;
  color: white;
}

@media screen and (min-width: 960px) {
  .header-nav {
    height: inherit;
    overflow-y: initial;
    padding-bottom: 0.3125rem;
    background-color: white;
  }
}

.header__nav-lists {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.header__nav-list {
  position: relative;
  cursor: pointer;
}

.header__nav-list p {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.header__nav-list:hover p {
  color: #FE8B04;
}

.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.5rem 0;
  min-width: 200px;
  display: none;
  z-index: 100;
}

.header__nav-list:hover .header__dropdown {
  display: block;
}

.header__dropdown li {
  list-style: none;
  margin: 0;
}

.header__dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

.header__dropdown a:hover {
  background-color: #f5f5f5;
  color: #FE8B04;
}

@media screen and (min-width: 960px) {
  .header__nav-lists {
    flex-direction: row;
    gap: 2rem;
  }
}

.header__tel {
  display: none;
}

@media screen and (min-width: 960px) {
  .header__tel {
    display: flex;
    flex-direction: column;
    color: #FE8B04;
    margin-right: 1.5rem;
  }
}

.mail__icon {
  width: 11.25rem;
  height: 5rem;
  background: #8DC941;
  margin: 0 auto;
  padding: 0.75rem 0;
}

.mail-icon img {
  width: 1.875rem;
  margin: 0 auto;
  padding-bottom: 0.75rem;
}

.mail-icon p {
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

@media screen and (min-width: 960px) {
  .tel-num {
    display: flex;
    align-items: center;
  }
}

.tel-num {
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 960px) {
  .tel-img {
    width: 1.75rem;
    text-align: center;
    margin-right: 0.1875rem;
  }
}

@media screen and (min-width: 960px) {
  .tel-img img {
    margin: 0 auto;
  }
}

@media screen and (min-width: 960px) {
  .tel-num p {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
  }
}

.tel-timezone {
  text-align: right;
}

@media screen and (min-width: 960px) {
  .tel-timezone {
    text-align: right;
    margin-top: -0.625rem;
  }
}

@media screen and (min-width: 960px) {
  .tel-timezone p {
    font-size: 0.875rem;
  }
}

.header__contact {
  display: none;
}

@media screen and (min-width: 960px) {
  .header__contact {
    display: flex;
    justify-content: center;
    background-color: #8DC941;
    color: white;
    background: #FE8B04;
    width: 11.25rem;
    height: 2.875rem;
    border-radius: 0.3125rem;
    text-align: center;
  }
}

.mail {
  display: flex;
  align-items: center;
}

@media screen and (min-width: 960px) {
  .mail img {
    width: 1.625rem;
    margin-right: 0.5rem;
  }
}

@media screen and (min-width: 960px) {
  .mail p {
    font-weight: 700;
    font-size: 0.875rem;
  }
}

footer {
  background: #FFF1CC;
  padding: 2.5rem 0;
}

.footer__logo {
  width: 13.6875rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .footer__logo {
    margin-bottom: 2rem;
  }
}

.footer__nav {
  width: 82%;
  padding: 0 0.625rem;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .footer__nav {
    width: 62%;
    margin-bottom: 1.5rem;
  }
}

.footer__nav-lists {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .footer__nav-lists {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 3.125rem;
  }
}

.footer__list-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .footer__list-wrap {
    gap: 3.125rem;
    margin-bottom: 0;
  }
}

.footer__list-wrap:last-of-type {
  margin-bottom: 0;
}

.footer__nav-list {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4375;
}

.footer__facilities {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .footer__facilities {
    width: 19%;
    margin-inline: auto;
  }
}

.footer__facility-item {
  font-weight: 700;
  font-size: 1rem;
  color: #FE8B04;
}

.copyright {
  width: 100%;
  background: #3D2609;
  padding: 0.5rem 0;
}

.copyright p {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  color: white;
  text-align: center;
}

.inner {
  width: 100%;
  padding-right: 1.875rem;
  padding-left: 1.875rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .inner {
    max-width: 1280px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.shadow {
  box-shadow: 0 0.0625rem 0.5rem rgba(0, 0, 0, 0.3);
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.click__wrapper {
  width: 16.75rem;
  border-radius: 3.125rem;
  padding: 0.625rem 0;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .click__wrapper {
    width: 17.875rem;
    height: 2.875rem;
    padding: 0.625rem 0;
    font-size: 1.0625rem;
  }
}

.click-or {
  background: white;
  border: 0.0625rem solid #FE8B04;
  color: #FE8B04;
}

.click-accent {
  background: #8DC941;
  color: white;
}

.click-dl {
  background: #FF763D;
  color: white;
}

.click-history-co {
  width: 10.5rem;
}

.check-arrow {
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  margin: 0 0.5rem;
  transform: rotate(45deg);
}

.check-or {
  border-top: 0.15625rem solid #FE8B04;
  border-right: 0.15625rem solid #FE8B04;
}

.check-wh {
  border-top: 0.15625rem solid white;
  border-right: 0.15625rem solid white;
}

.arrow-reverce {
  transform: rotate(-135deg);
}

.wave {
  min-width: 23.4375rem;
  width: 100%;
  height: 6.25rem;
  background: url(../img/top/wave.png) no-repeat;
  background-size: cover;
  margin-top: -12.5rem;
}

@media screen and (min-width: 768px) {
  .wave {
    position: relative;
    height: 25rem;
    background: url(../img/top/wave-pc.png) no-repeat;
    background-size: cover;
    margin-top: -25rem;
  }
}

@media screen and (min-width: 768px) {
  .stroke {
    width: 57%;
    position: absolute;
    top: 55%;
  }
}

.section__title {
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .section__title {
    font-size: 1.375rem;
  }
}

/* ハンバーガーメニュー */
.hamburger {
  width: 30px;
  height: 20px;
  transition: transform 0.5s ease 0s;
  position: absolute;
  z-index: 999;
  cursor: pointer;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

.hamburger--bar {
  position: absolute;
  left: 40%;
  width: 30px;
  height: 2px;
  background: #FE8B04;
  transition: 0.3s;
  transform: translate(-50%, -50%);
}

.hamburger--bar:nth-of-type(1) {
  top: 0px;
}

.hamburger--bar:nth-of-type(2) {
  top: 10px;
}

.hamburger--bar:nth-of-type(3) {
  top: 20px;
}

/* オープン時の動き */
.hamburger.is-open .hamburger--bar:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #FE8B04;
}

.hamburger.is-open .hamburger--bar:nth-of-type(2) {
  opacity: 0;
  transform: translate(-50%, -50%);
}

.hamburger.is-open .hamburger--bar:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: #FE8B04;
}

#rightTo {
  position: fixed;
  z-index: 999;
  padding: 1rem 0 0 1rem;
  top: 60px;
  right: -100%;
  width: 75%;
  height: 100vh;
  /*ナビの高さ*/
  background: #FE8B04;
  /*動き*/
  transition: right 0.6s ease-in-out;
}

@media screen and (min-width: 960px) {
  #rightTo {
    height: inherit;
    background: initial;
    width: initial;
    right: initial;
    position: static;
    padding: 0 1rem 0 0;
  }
}

/*アクティブクラスがついたら位置を0に*/
#rightTo.open {
  right: 0;
}

html.fixed {
  overflow: hidden;
  /* メニューが開いた時にスクロールを無効にする */
}

/* コンテンツカバー */
#nav-close {
  position: fixed;
  top: 3.75rem;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  /* メニューの背後に表示されるようにする */
  display: none;
  /* 初期状態で非表示 */
}

#nav-close.show {
  display: block;
  /* オーバーレイを表示 */
  transition: 0.8s ease-in-out;
}

.under__title {
  width: 100%;
  height: 10.375rem;
  background: #FFF9E9;
}

@media screen and (min-width: 768px) {
  .under__title {
    margin-top: 0;
    height: 19.6875rem;
  }
}

.title__wrapper {
  background: url(../img/top/title__bg.png) no-repeat;
  background-size: cover;
  background-position: center 0;
  width: 100%;
  height: 10.375rem;
}

@media screen and (min-width: 768px) {
  .title__wrapper {
    height: 18.75rem;
  }
}

.title__inner {
  height: inherit;
}

@media screen and (min-width: 768px) {
  .title__inner {
    display: flex;
    align-items: center;
  }
}

.title__inner-box {
  position: relative;
  padding-top: 3.75rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .title__inner-box {
    width: 100%;
    height: 3.75rem;
    padding-top: 0;
    display: flex;
    align-items: center;
    margin-inline: auto;
  }
}

.under-wave__wrapper {
  width: 100%;
  height: 1.25rem;
}

.under__wave {
  width: 100%;
  height: inherit;
  background: url(../img/top/wave-pc.png) no-repeat;
  background-size: cover;
}

.stroke {
  position: absolute;
  width: 15.625rem;
  height: 6.125rem;
  background: url(../img/top/stroke.png) no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .stroke {
    width: 57%;
  }
}

@media screen and (min-width: 1440px) {
  .stroke {
    width: 51.625rem;
  }
}

.stroke-nor {
  top: 20%;
  left: 0;
}

@media screen and (min-width: 768px) {
  .stroke-nor {
    top: -6.25rem;
  }
}

.stroke-inv {
  transform: scale(-1, -1);
  bottom: -50%;
  right: 0;
}

@media screen and (min-width: 768px) {
  .stroke-inv {
    bottom: 0;
    top: 6.25rem;
    right: -12.5rem;
  }
}

.page__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .page__title {
    font-size: 2.5rem;
    margin-top: 1.25rem;
    margin-inline: auto;
  }
}

.layer__wrapper {
  padding: 0 0.625rem;
}

@media screen and (min-width: 768px) {
  .layer__wrapper {
    padding: 0 1rem;
    max-width: 1040px;
    margin: auto;
    box-sizing: border-box;
  }
}

.under-layer__wrapper {
  padding: 0 0.625rem;
}

@media screen and (min-width: 768px) {
  .under-layer__wrapper {
    padding: 0 6.25rem;
  }
}

.bread__layer {
  width: 100%;
}

.bread-list {
  display: flex;
  align-items: center;
  color: #FDBA7A;
  gap: 0.625rem;
}

.bread-list {
  font-weight: 400;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .bread-list {
    font-size: 1.125rem;
    line-height: 2.5555555556;
  }
}

.section__wrapper {
  width: 100%;
  padding: 2.5rem 0;
}

@media screen and (min-width: 768px) {
  .section__wrapper {
    padding: 5.625rem 0 5rem;
  }
}

.bg-white {
  background: #FFFEF8;
}

.bg-light {
  background: #FFF9E9;
}

.bg-base {
  background: #FFF1CC;
}

.under-section__title {
  width: 100%;
  border-top: 0.125rem solid #3D2609;
  border-bottom: 0.125rem solid #3D2609;
  margin-bottom: 1.875rem;
}

@media screen and (min-width: 768px) {
  .under-section__title {
    margin-bottom: 3.75rem;
  }
}

.under-section__title h1 {
  font-weight: 700;
  font-size: 1.375rem;
  padding: 0.625rem;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .under-section__title h1 {
    font-size: 2.25rem;
    line-height: 1.4444444444;
  }
}

.under-section__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

@media screen and (min-width: 768px) {
  .under-section__inner {
    flex-direction: row;
    gap: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .row-reverse {
    flex-direction: row-reverse;
  }
}

.under-section__img {
  width: 100%;
  height: 14.375rem;
  background: #EAEAEA;
}

@media screen and (min-width: 768px) {
  .under-section__img {
    width: 21.875rem;
    height: 15.625rem;
  }
}

.under-section__txt {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2.8571428571;
}

@media screen and (min-width: 768px) {
  .under-section__txt {
    width: 60.5%;
    font-size: 1.125rem;
    line-height: 2.5555555556;
  }
}

.under-section__txt p {
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .under-section__txt p {
    margin-bottom: 1.25rem;
  }
}

.under-section__txt p:last-of-type {
  margin-bottom: 0;
}

.under__contents-wrapper {
  position: relative;
  margin-top: 3.75rem;
  height: 30vh;
}

@media screen and (min-width: 768px) {
  .under__contents-wrapper {
    margin-top: 0;
  }
}

.under__container {
  position: relative;
  background: #FFF1CC;
  height: 20vh;
}

.under-wave {
  position: absolute;
  height: 3.125rem;
  width: 100%;
  background: #FFF1CC;
  bottom: 0;
}

.under-wave::before, .under-wave::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50% 100%;
}

.under-wave::before {
  width: 55%;
  height: 109%;
  background-color: #FFF1CC;
  right: -1.5%;
  top: 40%;
}

.under-wave::after {
  width: 55%;
  height: 109%;
  background-color: #FFF9E9;
  left: -1.5%;
  top: 60%;
}

.under-contents__title {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  top: 20%;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .under-contents__title {
    top: 30%;
    left: 14%;
    flex-direction: row;
    gap: 3.125rem;
  }
}

.under-contents-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .under-contents-title {
    font-size: 2.5rem;
    line-height: 1.425;
  }
}

.sub-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FE8B04;
}

@media screen and (min-width: 768px) {
  .sub-title {
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}

.contents__stroke {
  position: absolute;
  width: 57%;
  transform: scale(-1, -1);
  right: 0;
  bottom: 25%;
}

.under-bread {
  position: absolute;
  bottom: 0;
}

@media screen and (min-width: 768px) {
  .under-bread {
    bottom: 1.25rem;
  }
}

.section__content {
  padding: 2.5rem 0;
}

@media screen and (min-width: 768px) {
  .section__content {
    padding: 5rem 0;
  }
}

.or__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .or__item {
    gap: 1.25rem;
    margin-bottom: 3.75rem;
  }
}

.or-line {
  width: 3.75rem;
  border: 0.0625rem solid #FE8B04;
}

@media screen and (min-width: 768px) {
  .or-line {
    width: 11.25rem;
  }
}

.or-item {
  font-family: "Noto Serif JP";
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FE8B04;
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .or-item {
    font-size: 3rem;
    line-height: 1.4166666667;
  }
}

.section__content-links {
  padding: 2.5rem 0;
}

@media screen and (min-width: 768px) {
  .section__content-links {
    padding: 7.5rem 0;
  }
}

.content-liks {
  padding: 2.5rem 0;
}

@media screen and (min-width: 768px) {
  .content-liks {
    padding: 6.25rem 0;
  }
}

.content__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 0.0625rem dotted #3D2609;
  border-bottom: 0.0625rem dotted #3D2609;
  padding: 0.625rem 1.25rem;
}

@media screen and (min-width: 768px) {
  .content__link {
    padding: 2.1875rem 4.375rem;
  }
}

.links__inner {
  width: 72%;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .content__link-top {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 80%;
  }
}

.link-title {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .link-title {
    width: 46%;
    margin-right: 1.25rem;
  }
}

.link-title h1 {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .link-title h1 {
    font-size: 2.25rem;
    line-height: 1.4444444444;
  }
}

.el-title {
  font-size: 1rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .el-title {
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}

.link-guide {
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .link-guide {
    font-size: 1.125rem;
  }
}

.link-btn {
  width: 3.125rem;
  height: 3.125rem;
  border: 0.3125rem solid #241503;
  border-radius: 50%;
  display: table;
}

@media screen and (min-width: 768px) {
  .link-btn {
    width: 4rem;
    height: 4rem;
  }
}

.link-arrow {
  display: table-cell;
  vertical-align: middle;
}

.arrow-btn {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 0.25rem;
  background-color: #241503;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .arrow-btn {
    width: 2.1875rem;
    height: 0.375rem;
  }
}

.arrow-btn::before {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.25rem;
  top: 0.1875rem;
  right: -0.09375rem;
  display: block;
  background-color: #241503;
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .arrow-btn::before {
    width: 1.125rem;
    height: 0.375rem;
    top: 0.3125rem;
    right: -0.1875rem;
  }
}

.arrow-btn::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.25rem;
  bottom: 0.1875rem;
  right: -0.09375rem;
  display: block;
  background-color: #241503;
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .arrow-btn::after {
    width: 1.125rem;
    height: 0.375rem;
    bottom: 0.3125rem;
    right: -0.1875rem;
  }
}

.under__content-img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .under__content-img {
    width: 41%;
  }
}

.under__contents-detail {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .under__contents-detail {
    width: 51%;
  }
}

.under__content-txt {
  width: 100%;
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .under__content-txt {
    margin-bottom: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .last-section {
    margin-bottom: 6.25rem;
  }
}

#fv {
  width: 100%;
  height: 100vh;
  position: relative;
}

.fv-swiper {
  position: absolute;
  top: 0;
  z-index: -1;
}

.fv-swiper img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.fv__wrapper{
  display: none;
}

@media screen and (min-width: 768px) {
  .fv__wrapper {
    display: block;
  }
}

.fv__items {
  width: 18.125rem;
  margin-inline: auto;
  padding-left: 0.625rem;
  position: absolute;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .fv__items {
    width: 30%;
    top: 40%;
    right: 5%;
  }
}

@media screen and (min-width: 1024px) {
  .fv__items {
    top: 44.6%;
    right: 6.3%;
  }
}

.fv__title {
  font-family: "Shippori Mincho B1";
  font-weight: 500;
  font-size: 2rem;
  color: white;
  text-shadow: 0 0.125rem 0.5rem #35230E;
  white-space: nowrap;
  margin-bottom: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}

.fv__catch {
  display: flex;
  align-items: center;
  color: #FE8B04;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .fv__catch {
    margin-bottom: 1.125rem;
  }
}

.fv__catch p {
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .fv__catch p {
    font-size: 1.25rem;
  }
}

.fv__catch img {
  width: 1.5rem;
}

@media screen and (min-width: 768px) {
  .fv__catch img {
    width: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .fv__click {
    margin-left: 2.5rem;
  }
}

.fv-wave svg {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 1;
  /* object-fit: cover;
  object-position: top; */
}


@media screen and (min-width: 768px) {
  .fv-stroke {
    width: 57%;
    position: absolute;
    bottom: 7%;
    z-index: 2;
  }
}

@media screen and (min-width: 768px) {
  #ABOUT {
    background: url(../img/top/top-contents-care.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
}

.about__wrapper {
  background: #FFF9E9;
  padding: 1.375rem 0;
}

@media screen and (min-width: 768px) {
  .about__wrapper {
    padding: 10.9375rem 0;
    background: rgba(0, 0, 0, 0.2);
  }
}

.about__contents {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .about__contents {
    margin-bottom: 1.25rem;
  }
}

.about__icon {
  width: 3.5rem;
  margin-inline: auto;
  margin-bottom: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .about__icon {
    width: 5.3125rem;
    margin-bottom: 1.25rem;
  }
}

.about__message {
  margin-bottom: 1rem;
}

.about__message-title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4545454545;
  margin-bottom: 1.4375rem;
}

@media screen and (min-width: 768px) {
  .about__message-title {
    font-size: 2.125rem;
    margin-bottom: 1.125rem;
  }
}

.about__sp-txt, .about__txt {
  font-size: 1rem;
  line-height: 2;
}

.about__sp-txt {
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .about__txt {
    font-size: 1.125rem;
    line-height: 2.6111111111;
  }
}

.about__click {
  margin-inline: auto;
}

#SNS {
  background: #FFF1CC;
  padding: 3.75rem 0 2.5rem;
}

@mediaeen and (min-width: 768px) {
  #SNS {
    padding: 5rem;
  }
}

.sns__wrapper {
  min-width: 23.4375rem;
  width: 100%;
  padding: 0 1rem;
}

.sns__marrygold {
  margin-bottom: 1.875rem;
}

@media screen and (min-width: 768px) {
  .sns__marrygold {
    margin-bottom: 5rem;
  }
}

.sns__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.75rem;
}

.sns__click {
  width: 9.625rem;
  border: 0.0625rem solid #FF5611;
  border-radius: 3.125rem;
  padding: 0.15625rem 1.25rem;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.sns__click a {
  display: flex;
  font-size: 1.25rem;
  color: #FF5611;
}

.inst {
  width: 1.5625rem;
  margin-right: 0.25rem;
}

@media screen and (min-width: 768px) {
  .sns__post {
    width: 100%;
    margin-inline: auto;
  }
}

.sns__post ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (min-width: 768px) {
  .sns__post ul {
    display: flex;
    justify-content: center;
    gap: 0.625rem;
  }
}

.sns-post {
  width: 10rem;
  height: 10rem;
  border-radius: 1.25rem;
  background: #EAEAEA;
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .sns-post {
    width: 12.5rem;
    height: 12.5rem;
    margin-bottom: 0;
  }
}

.sns-post:nth-last-child(2) {
  margin-bottom: 0;
}

.sns-post:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .sns-post:last-child {
    visibility: hidden;
  }
}

.hr-accent {
  height: 0.0625rem;
  background: #8DC941;
  margin-bottom: 1.875rem;
}

@media screen and (min-width: 768px) {
  .hr-accent {
    margin-bottom: 5rem;
  }
}

#CONTENTS {
  padding: 3.125rem 0;
  background: #fff;
}

@media screen and (min-width: 768px) {
  #CONTENTS {
    padding: 5rem 0;
  }
}

.contents__title {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .contents__title {
    margin-bottom: 2.5rem;
  }
}

.contents__items {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .contents__items {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.contents__item {
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .contents__item {
    margin-bottom: 0;
  }
}

.contents__item:last-of-type {
  margin-bottom: 0;
}

.contents__item-img {
  width: 21.4375rem;
  height: 14.3125rem;
  background-position: center;
  margin-inline: auto;
  border-radius: 1.5625rem;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .contents__item-img {
    width: 27.875rem;
    height: 17.4375rem;
    margin-bottom: 1.625rem;
  }
}

.contents__item-img--care {
  background: url(../img/top/top-contents-care.jpg) no-repeat;
  background-size: cover;
}

.contents__item-img--welfare {
  background: url(../img/top/top-contents-welfare.jpg) no-repeat;
  background-size: cover;
}

.contents__item-title {
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .contents__item-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

.leaf img {
  width: 1.5625rem;
  margin-right: 0.25rem;
}

@media screen and (min-width: 768px) {
  .leaf img {
    width: 1.875rem;
    margin-right: 0.625rem;
  }
}


.contents__click {
  margin-inline: auto;
}

#FACILITY {
  background: #FFF9E9;
  padding: 2.8125rem 0;
}

@media screen and (min-width: 768px) {
  #FACILITY {
    padding: 5rem 0;
  }
}

.facility__title {
  margin-bottom: 1.75rem;
}

@media screen and (min-width: 768px) {
  .facility__title {
    margin-bottom: 2.375rem;
  }
}

.facility__items {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .facility__items {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.facility__item {
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .facility__item {
    max-width: 27.875rem;
    margin-bottom: 0;
  }
}

.facility__item:last-of-type {
  margin-bottom: 0;
}

.facility__item-img {
  width: 21.4375rem;
  height: 14.3125rem;
  margin-inline: auto;
  border-radius: 1.5625rem;
}

@media screen and (min-width: 768px) {
  .facility__item-img {
    width: 27.875rem;
    height: 17.4375rem;
  }
}

.facility__item--marry {
  background: url(../img/top/top-facility-mallygold.jpg);
  background-size: cover;
  border: 0.125rem solid #FF9F2F;
}

.facility__item--smile {
  background: url(../img/top/top-facility-smileheart.jpg);
  background-size: cover;
  border: 0.125rem solid #27BAF9;
}

.facility__detail {
  width: 91%;
  margin-inline: auto;
  margin-top: -2.375rem;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .facility__detail {
    width: 100%;
    margin-top: -3.375rem;
  }
}

.facility__icon {
  width: 4.8125rem;
  margin-inline: auto;
  margin-bottom: 0.75rem;
}

@media screen and (min-width: 768px) {
  .facility__icon {
    width: 6.3125rem;
    margin-bottom: 1.25rem;
  }
}

.facility__name {
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .facility__name {
    font-size: 2rem;
    margin-bottom: 1.125rem;
  }
}

.sub-name {
  font-weight: 400;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

@media screen and (min-width: 768px) {
  .sub-name {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}

.facility__txt {
  font-size: 1rem;
  line-height: 1.6875;
}

.facility__click {
  margin-inline: auto;
  margin-bottom: 0.75rem;
}

.facility__click-accent {
  margin-bottom: 0;
}

#PR {
  padding: 2.8125rem 0 2.375rem;
}

@media screen and (min-width: 768px) {
  #PR {
    padding: 5rem 0;
  }
}

.pr__title {
  margin-bottom: 1.75rem;
}

@media screen and (min-width: 768px) {
  .pr__title {
    margin-bottom: 2.25rem;
  }
}

.pr__items ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.375rem;
}

@media screen and (min-width: 768px) {
  .pr__items ul {
    max-width: 56.25rem;
    width: 100%;
    margin-inline: auto;
    gap: 1.5rem;
  }
}

.pr__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pr__img {
  flex: 0 0 300px;
  width: 300px;
  height: 200px;
  overflow: hidden;
}

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

.pr__img:empty {
  display: none;
}

.pr__article {
  flex: 1;
  min-width: 0;
}

.pr__item:has(.pr__img:empty) .pr__article {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .pr__item {
    flex-direction: row;
  }
}

.pr__img img{
  display: block;
  width: 100%;
  height: fit-content;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  overflow: hidden;
}

.pr__article {
  padding: 1.75rem 0.625rem 0.9375rem;
}

@media screen and (min-width: 768px) {
  .pr__article {
    width: 70%;
    padding: 0.625rem 0 0.875rem;
  }
}

.article__date {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.article__title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.article__txt {
  font-size: 1rem;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pr__wrapper {
  padding: 1.875rem 1rem;
}

@media screen and (min-width: 768px) {
  .pr__wrapper {
    padding: 3.75rem 0;
  }
}

.pr__lists {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .pr__lists {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 3.75rem;
  }
}

.blogbox {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.25rem;
  background: #FFFEF8;
  border-radius: 1.25rem;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .blogbox {
    padding: 2.5rem;
    margin-bottom: 5rem;
  }
}

.blogtitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .blogtitle {
    flex-direction: row;
    margin-bottom: 2.5rem;
  }
}

.blog-title {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .blog-title {
    width: 50%;
  }
}

.blogphoto {
  width: 100%;
  border-radius: 1.5625rem;
}

@media screen and (min-width: 768px) {
  .blogphoto {
    width: 45%;
    margin-inline: auto;
  }
}

.blogphoto img {
  width: 100%;
  height: auto;
  border-radius: 1.5625rem;
}

.pagination__wrapper {
  width: 100%;
}

.pagination {
  width: 25%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cdp_i {
  width: 3.125rem;
  height: 3.125rem;
  border: 0.125rem solid #FE8B04;
  border-radius: 50%;
  background: white;
  color: #FE8B04;
  padding: 0.625rem;
  text-align: center;
}

.page-active {
  background: #FE8B04;
  color: white;
}

#RECRUIT {
  width: 100%;
  height: 10.9375rem;
  background: url(../img/top/recruit-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (min-width: 768px) {
  #RECRUIT {
    height: 12.9375rem;
    background: url(../img/top/recruit-bg.jpg) no-repeat;
    background-size: 100%;
    background-position: center;
  }
}

.recruit__wrapper {
  height: inherit;
  padding: 2.4375rem 0 2.5rem;
}

@media screen and (min-width: 768px) {
  .recruit__wrapper {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .recruit__detail {
    position: absolute;
    top: 2.8125rem;
    left: 25.6%;
  }
}

.recruit__txt {
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 1.125rem;
}

@media screen and (min-width: 768px) {
  .recruit__txt {
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
    letter-spacing: 0.08em;
  }
}

.recruit__click {
  border: 0.0625rem solid white;
  margin-inline: auto;
  color: white;
}

.under__recruit-detail {
  width: 100%;
  height: 12.5rem;
  background: #D4D4D4;
  position: relative;
}

@media screen and (min-width: 768px) {
  .under__recruit-detail {
    height: 15.625rem;
  }
}

.under__recruit-detail p {
  font-size: 1.25rem;
  position: absolute;
  top: 45%;
  left: 50%;
}

@media screen and (min-width: 768px) {
  .under__recruit-detail p {
    font-size: 2.25rem;
  }
}

.under__recruit-link {
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .under__recruit-link {
    height: 12.5rem;
    align-items: center;
    flex-direction: row;
  }
}

.under__recruit-img {
  width: 100%;
  height: 6.9375rem;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../img/top/top-contents-care.jpg) no-repeat;
  background-size: cover;
  background-position: center 30%;
  text-align: center;
  color: white;
  padding: 1.25rem 0;
}

@media screen and (min-width: 768px) {
  .under__recruit-img {
    width: 48%;
    height: inherit;
    background-position: center;
    padding: 3.5rem 0;
  }
}

.under__recruit-img h3 {
  font-size: 1.75rem;
}

@media screen and (min-width: 768px) {
  .under__recruit-img h3 {
    font-size: 2.25rem;
  }
}

.under__recruit-img p {
  font-size: 1.125rem;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .under__recruit-img p {
    font-size: 1.5rem;
  }
}

.under__recruit-golink {
  width: 100%;
  height: 6.9375rem;
  background: #242424;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem 0 3.125rem;
}

@media screen and (min-width: 768px) {
  .under__recruit-golink {
    width: 52%;
    height: inherit;
  }
}

.under__recruit-golink p {
  color: white;
  font-size: 0.75rem;
  line-height: 2.6666666667;
}

@media screen and (min-width: 768px) {
  .under__recruit-golink p {
    font-size: 1.125rem;
    line-height: 2.5555555556;
  }
}

.job__link-btn {
  width: 3.125rem;
  height: 3.125rem;
  border: 0.3125rem solid white;
  border-radius: 50%;
  display: table;
}

@media screen and (min-width: 768px) {
  .job__link-btn {
    width: 4rem;
    height: 4rem;
  }
}

.job__link-arrow {
  display: table-cell;
  vertical-align: middle;
}

.job__arrow-btn {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 0.25rem;
  background-color: white;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .job__arrow-btn {
    width: 2.1875rem;
    height: 0.375rem;
  }
}

.job__arrow-btn::before {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.25rem;
  top: 0.1875rem;
  right: -0.09375rem;
  display: block;
  background-color: white;
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .job__arrow-btn::before {
    width: 1.125rem;
    height: 0.375rem;
    top: 0.3125rem;
    right: -0.1875rem;
  }
}

.job__arrow-btn::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.25rem;
  bottom: 0.1875rem;
  right: -0.09375rem;
  display: block;
  background-color: white;
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .job__arrow-btn::after {
    width: 1.125rem;
    height: 0.375rem;
    bottom: 0.3125rem;
    right: -0.1875rem;
  }
}

.job__fv {
  width: 100%;
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../img/top/top-contents-care.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  display: table;
  margin-bottom: 3.125rem;
}

@media screen and (min-width: 768px) {
  .job__fv {
    height: 65vh;
    background-position: center 30%;
    margin-bottom: 6.25rem;
  }
}

.job__cc {
  display: table-cell;
  vertical-align: middle;
}

.job__cc h3 {
  font-size: 1.75rem;
  line-height: 1.6428571429;
}

@media screen and (min-width: 768px) {
  .job__cc h3 {
    font-size: 2.25rem;
    line-height: 1.4444444444;
  }
}

.job__message {
  width: 100%;
  text-align: center;
  margin-bottom: 3.75rem;
}

@media screen and (min-width: 768px) {
  .job__message {
    margin-bottom: 7.5rem;
  }
}

.job__message h3 {
  font-size: 1.125rem;
  font-family: "Noto Serif JP";
  font-weight: 700;
  color: #FE8B04;
  margin-bottom: 3.125rem;
}

@media screen and (min-width: 768px) {
  .job__message h3 {
    font-size: 2.5rem;
    line-height: 1.425;
    margin-bottom: 6.25rem;
  }
}

.click-entry {
  margin-inline: auto;
}

.job {
  padding: 2.5rem 0;
}

@media screen and (min-width: 768px) {
  .job {
    padding: 5rem 0;
  }
}

.job__line {
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .job__line {
    margin-bottom: 6.25rem;
  }
}

.job__line-title {
  border-bottom: 0.0625rem solid #241503;
  padding: 0.625rem 0.625rem 0.75rem 0.625rem;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .job__line-title {
    margin-bottom: 3.75rem;
  }
}

.job__line-title h4 {
  font-size: 1.25rem;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .job__line-title h4 {
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}

.job__line-txt {
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .job__line-txt {
    margin-bottom: 3.75rem;
  }
}

.job__line-txt p {
  font-size: 1rem;
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .job__line-txt p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

.job__line-txt p:last-of-type {
  margin-bottom: 0;
}

.job__line-message {
  text-align: center;
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .job__line-message {
    margin-bottom: 1.25rem;
  }
}

.job__line-message h3 {
  font-size: 1.5625rem;
  font-weight: 400;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .job__line-message h3 {
    font-size: 2rem;
    line-height: 2.59375;
  }
}

.click-contactform {
  width: 18.75rem;
  margin-inline: auto;
  margin-bottom: 1.875rem;
}

@media screen and (min-width: 768px) {
  .click-contactform {
    width: 25rem;
    margin-bottom: 3.75rem;
  }
}

#INFO {
  background: white;
}

@media screen and (min-width: 768px) {
  #INFO {
    height: 18.1875rem;
  }
}

.info__wrapper {
  min-width: 23.4375rem;
  width: 100%;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .info__wrapper {
    max-width: 90rem;
    padding: 3.125rem 0;
    flex-direction: row;
    align-items: center;
    margin-inline: auto;
  }
}

.info__address {
  padding: 0 0.9375rem;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .info__address {
    width: 50%;
  }
}

.info__detail {
  display: flex;
  flex-direction: column;
  padding-bottom: 0.5rem;
  border-bottom: 0.0625rem solid #D4D4D4;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .info__detail {
    flex-direction: row;
    align-items: center;
    padding-left: 0.75rem;
  }
}

.info__detail:last-child {
  margin-bottom: 0;
}

.info__item {
  font-weight: 700;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .info__item {
    width: 25%;
    text-align: center;
    margin-right: 3.125rem;
  }
}

.info__cont {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}

.info__map {
  min-width: 23.4375rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .info__map {
    width: 21.6875rem;
  }
}

.map__inner iframe {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .map__inner iframe {
    width: 21.6875rem;
    height: 11.9375rem;
    border-radius: 1.25rem;
  }
}

.contact {
  padding: 2.5rem 0;
}

@media screen and (min-width: 768px) {
  .contact {
    padding: 2.5rem 0 6.25rem;
  }
}

.contact__message {
  padding: 1.875rem 0;
}

@media screen and (min-width: 768px) {
  .contact__message {
    padding: 3.75rem 0;
  }
}

.contact-message {
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .contact-message {
    font-size: 1.125rem;
    line-height: 2.5555555556;
    margin-bottom: 1.875rem;
  }
}

.contact-message:last-of-type {
  margin-bottom: 0;
}

.contact__item {
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .contact__item {
    margin-bottom: 2.5rem;
  }
}

.item-label {
  margin-right: 0.625rem;
  margin-bottom: 0.25rem;
}

@media screen and (min-width: 768px) {
  .item-label {
    margin-right: 1rem;
    margin-bottom: 0.5rem;
  }
}

.item-label label {
  font-size: 0.875rem;
  font-family: "Verdana"sans-serif;
  font-weight: 700;
  margin-right: 0.625rem;
}

@media screen and (min-width: 768px) {
  .item-label label {
    font-size: 1rem;
    margin-right: 1rem;
  }
}

.req {
  background: #FF0000;
  color: white;
  border-radius: 3.125rem;
  padding: 0.15625rem 0.625rem;
  font-size: 0.75rem;
  font-family: "Verdana"sans-serif;
  font-weight: 400;
}

.radio-input {
  display: flex;
  flex-direction: column;
  padding-left: 0.625rem;
}

/* ラベルをブロック要素として扱い、垂直に並べる */
.radio-input label {
  display: flex;
  align-items: center;
  margin-bottom: 0.6875rem;
  font-size: 0.875rem;
  position: relative;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .radio-input label {
    font-size: 1.125rem;
  }
}

/* デフォルトのボタン */
input[type=radio] {
  opacity: 0;
  /* デフォルトのボタンを非表示 */
  position: absolute;
}

/* チェック前のボタン */
.wpcf7-list-item-label::before {
  position: absolute;
  top: 0.1875rem;
  left: -1.5625rem;
  background: #fff;
  border: 1px solid #333;
  border-radius: 100%;
  /* ラジオボタンっぽく丸くする */
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  transition: background-color 0.5s;
  /* 色をじんわり変化させる */
}

/* チェック後のボタン */
input[type=radio]:checked+.wpcf7-list-item-label::before {
  background-color: #000;
  /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 3px #fff;
  /* 中心の色のスタイル */
}

input[type=text], input[type=email], input[type=tel] {
  width: 100%;
  height: 2.1875rem;
  background: white;
  border-radius: 0.625rem;
  padding: 0 0.625rem;
  border: 0.0625rem solid #D4D4D4;
}

textarea {
  width: 100%;
  height: 7.8125rem;
  background: white;
  border-radius: 0.625rem;
  border: 0.0625rem solid #D4D4D4;
  padding: 0 0.625rem;
}

::placeholder {
  font-family: "Verdana"sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: #D4D4D4;
}

@media screen and (min-width: 768px) {
  ::placeholder {
    font-size: 1rem;
  }
}

.submit__wrapper {
  width: 100%;
  text-align: center;
  margin-bottom: 2.5rem;
}

input[type=submit] {
  width: 8.75rem;
  height: 2.8125rem;
  background: #FF763D;
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 0.625rem;
  display: block;
}

.contact-alert {
  font-size: 0.875rem;
  font-family: "Verdana"sans-serif;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .contact-alert {
    font-size: 1rem;
    line-height: 1.5625;
  }
}

.confirm__wrapper {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
}

.wpcf7-previous {
  width: 8.75rem;
  height: 2.8125rem;
  background: #FF763D;
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 0.625rem;
  margin-bottom: 1.25rem;
}

.wpcf7-spinner {
  display: none;
}

.return-home {
  text-align: center;
}

.return {
  width: 8.75rem;
  height: 2.8125rem;
  background: #FF763D;
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 0.625rem;
}

.under-message__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

@media screen and (min-width: 768px) {
  .under-message__inner {
    flex-direction: row;
    gap: 3.75rem;
  }
}

.message-section__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
}

.message-img__wrapper {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .message-img__wrapper {
    max-width: 43.75rem; /* 700px */
  }
}

.message-img__wrapper img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}

.message__name {
  text-align: center;
}

.content-message__name {
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .content-message__name {
    font-size: 1.125rem;
    line-height: 1.4444444444;
  }
}

.under__close-message {
  margin-bottom: 1.25rem;
}

.under-message__close {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2.8571428571;
}

@media screen and (min-width: 768px) {
  .under-message__close {
    font-size: 1.125rem;
    line-height: 2.5555555556;
  }
}

.section__about {
  margin-bottom: 5rem;
}

.content__message-inner {
  padding: 0 0.625rem;
}

@media screen and (min-width: 768px) {
  .content__message-inner {
    padding: 0.625rem 12.5rem;
  }
}

.content__history-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  padding: 0 0.625rem;
}

@media screen and (min-width: 768px) {
  .content__history-inner {
    gap: 3.75rem;
  }
}

.history__line {
  width: 90%;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .history__line {
    width: 65rem;
  }
}

.history {
  width: 100%;
  border: 0.0625rem solid #241503;
  border-collapse: collapse;
}

.history th, .history td {
  border: 0.0625rem solid #241503;
}

.history th {
  width: 24%;
  padding: 0.375rem 0;
  font-size: 0.875rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .history th {
    font-size: 1.5rem;
  }
}

.history td {
  width: 75%;
  padding: 0 1.25rem;
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .history td {
    font-size: 1.125rem;
    line-height: 2.5555555556;
  }
}

.click-history {
  margin-left: 13.8%;
}

.history__item {
  margin-bottom: 1.875rem;
}

@media screen and (min-width: 768px) {
  .history__item {
    margin-bottom: 3.75rem;
  }
}

.history__item-title {
  display: flex;
  align-items: center;
  padding: 0.625rem 0 0.75rem;
  border-bottom: 0.0625rem solid #241503;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .history__item-title {
    font-size: 1.5rem;
    line-height: 1.4166666667;
    margin-bottom: 3.75rem;
  }
}

.CC {
  width: 100%;
  text-align: center;
}

.YM {
  width: 25%;
}

@media screen and (min-width: 768px) {
  .YM {
    width: 16%;
  }
}

.history__item-txt p {
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
  line-height: 2.5714285714;
}

@media screen and (min-width: 768px) {
  .history__item-txt p {
    font-size: myre(18);
    line-height: 2.5555555556;
    margin-bottom: 1.25rem;
    letter-spacing: 0.09em;
  }
}

.history__item-txt p:last-of-type {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .under-care__wrapper {
    margin-bottom: 5rem;
  }
}


.under__facility-intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
}

@media screen and (min-width: 768px) {
  .under__facility-intro {
    flex-direction: row;
  }
}

.under__facility-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .under__facility-top {
    width: 36%;
    margin-right: 3.75rem;
  }
}

.under__facility-name {
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .under__facility-name {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
}

.under__facility-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .under__facility-bottom {
    width: 57%;
  }
}

.under__facility-bottom p {
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .under__facility-bottom p {
    font-size: 1rem;
    line-height: 1.6875;
  }
}

.under__facility-bottom--item {
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .under__facility-bottom--item {
    margin-bottom: 1.25rem;
  }
}

.bold {
  font-weight: 700;
}

.upper {
  text-transform: uppercase;
}

.home-care__cards {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.home-care__card {
  width: 18.75rem;
  min-height: 29.6875rem;
  height: 100%;
  padding: 1.25rem;
  background: #FFFEF8;
  margin-inline: auto;
  border-radius: 1.25rem;
}

@media screen and (min-width: 768px) {
  .home-care__card {
    width: 24.125rem;
    margin-inline: initial;
  }
}

.uf__detail-txt {
  margin-top: 1.25rem;
}

.inclusive__title {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  top: 10%;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .inclusive__title {
    top: 10%;
    left: 14%;
    flex-direction: row;
    align-items: end;
    gap: 3.125rem;
  }
}

.inclusive-title p {
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .inclusive-title p {
    font-size: 1.125rem;
    line-height: 2.5555555556;
  }
}

.inclusive-txt {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .inclusive-txt {
    font-size: 1.125rem;
    line-height: 2.5555555556;
    margin-bottom: 1.25rem;
  }
}

.inclusive-txt:last-of-type {
  margin-bottom: 0;
}

#marrygold-fv {
  width: 100%;
  height: 8.5625rem;
  background: #FFF9E9;
  padding-top: 3.75rem;
  margin-bottom: 5rem;
}

@media screen and (min-width: 768px) {
  #marrygold-fv {
    height: 18.75rem;
    padding-top: 0;
  }
}

.marrygold-fv__wrapper {
  width: 100%;
  height: inherit;
  background: url(../img/marrygold/marrygold-fv.png) no-repeat;
  background-size: cover;
  display: table;
  margin-inline: auto;
  padding-top: 2.0625rem;
}

@media screen and (min-width: 768px) {
  .marrygold-fv__wrapper {
    padding-top: 0;
    background: url(../img/marrygold/marrygold-fv-pc.png) no-repeat;
    background-size: 100%;
  }
}

.marrygold-fv__title {
  display: table-cell;
  vertical-align: middle;
  color: #FFFEF8;
  text-align: center;
}

.marrygold__sub-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4375;
}

@media screen and (min-width: 768px) {
  .marrygold__sub-title {
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}

.marrygold-fv-title {
  font-size: 1.25rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .marrygold-fv-title {
    font-size: 2.25rem;
    line-height: 1.4444444444;
  }
}

@media screen and (min-width: 768px) {
  .marrygold-fv__bg-light {
    background: #FFF9E9;
    padding-bottom: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .marrygold__contact-click {
    margin-inline: auto;
    width: 29.25rem;
    background: #FF763D;
    text-align: center;
    border-radius: 0.625rem;
    padding: 0.625rem 0;
  }
}

.marrygold__contact-click button {
  color: #FFFEF8;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4166666667;
}

.marrygold-dl__wrapper {
  width: 3.75rem;
  display: inline-block;
  background: #FF763D;
  padding: 1.3125rem 0.4375rem;
  border-radius: 1.25rem 0 0 1.25rem;
  text-align: center;
  position: absolute;
  top: 70%;
  right: 0;
  z-index: 999;
}

.marrygold-dl__wrapper button {
  color: white;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.assignment {
  width: 1.25rem;
  height: 1.25rem;
  margin-bottom: 0.625rem;
}

.marrygold-dl__wrapper p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.marrygold-slider__slide {
  width: 10.8125rem;
  height: 8.375rem;
  margin-right: 0.625rem;
}

@media screen and (min-width: 768px) {
  .marrygold-slider__slide {
    width: 33.3125rem;
    height: 25rem;
    margin-right: 1.25rem;
  }
}

.marrygold-slider__slide img {
  width: 100%;
  height: inherit;
  object-fit: cover;
}

/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear;
}

.marrygold__message {
  padding: 1.5rem 1rem 2.5rem;
}

@media screen and (min-width: 768px) {
  .marrygold__message {
    padding: 5rem 0;
  }
}

.marrygold__wrapper {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .marrygold__wrapper {
    width: 62%;
    margin-inline: auto;
  }
}

.marrygold__message-txt {
  font-size: 1rem;
  line-height: 1.6875;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .marrygold__message-txt {
    font-size: 1.125rem;
    line-height: 2.5555555556;
    text-align: center;
  }
}

.marrygold__message-txt p {
  margin-bottom: 1.25rem;
}

.marrygold__message-click {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .marrygold__message-click {
    width: 70%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
    gap: 0;
  }
}

.marrygold-click__wrapper {
  width: 17.875rem;
  border-radius: 3.125rem;
  padding: 0.875rem 0;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 1rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .marrygold-click__wrapper {
    width: 23.5rem;
    height: 2.875rem;
    padding: 0.625rem 0;
  }
}

.marrygold-sns__title {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0.1em;
  color: #FF5611;
  text-align: center;
  margin-bottom: 1.75rem;
}

@media screen and (min-width: 768px) {
  .marrygold-sns__title {
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}

.marrygold__section {
  padding: 2.5rem 1rem;
}

@media screen and (min-width: 768px) {
  .marrygold__section {
    padding: 5rem 0;
  }
}

@media screen and (min-width: 768px) {
  #SERVICE {
    padding: 5rem 0 2.5rem;
  }
}

.service__title {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .service__title {
    margin-bottom: 2.5rem;
  }
}

.service-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.4090909091;
}

@media screen and (min-width: 768px) {
  .service-title {
    font-size: 2rem;
    line-height: 1.4375;
  }
}

.service__items {
  width: 100%;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .service__items {
    max-width: 65rem;
  }
}

.service__item {
  width: 21.4375rem;
  min-height: 20rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .service__item {
    width: 27.875rem;
    gap: 2.5rem;
    margin-bottom: 0;
  }
}

.service__item-top, .service__item-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .service__item-top, .service__item-bottom {
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 2.5rem;
  }
}

.service__item-img {
  width: 100%;
  height: 13.25rem;
  background: #E4E4E4;
  border-radius: 1.5625rem;
}

@media screen and (min-width: 768px) {
  .service__item-img {
    height: 17.4375rem;
  }
}

.service__item-cc {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.1666666667;
  text-align: center;
  color: #FE8B04;
}

@media screen and (min-width: 768px) {
  .service__item-cc {
    font-size: 1.5rem;
    line-height: 1.1666666667;
  }
}

.service__item-txt {
  font-size: 1rem;
  line-height: 1.6875;
  letter-spacing: 0.1em;
}

.txt-last {
  margin-bottom: 1.25rem;
}

.item-txt__list {
  list-style: inside;
  font-weight: 700;
}

.cost__img {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .cost__img {
    width: 86%;
    flex-direction: row;
    justify-content: space-around;
    gap: 0;
    margin-bottom: 2.5rem;
  }
}

.cost-img {
  width: 19.5rem;
  height: 13.25rem;
  background: #e4e4e4;
  border-radius: 1.5625rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .cost-img {
    width: 27.875rem;
    height: 17.4375rem;
    margin-inline: initial;
  }
}

.cost__lists {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .cost__lists {
    width: 50%;
  }
}

.cost-list {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.6875;
  letter-spacing: 0.1em;
  padding: 0 0 0.5rem 0.625rem;
  border-bottom: 0.0625rem solid #d4d4d4;
}

@media screen and (min-width: 768px) {
  .cost-list {
    padding: 0 0 0.5rem 1.25rem;
  }
}

.cost-list:last-of-type {
  border-bottom: 0;
}

.min-txt {
  font-size: 0.8125rem;
  line-height: 1.4;
}

.sum {
  text-align: right;
}

.cost-list-item {
  width: 41%;
  margin-right: 1.25rem;
}

@media screen and (min-width: 768px) {
  .cost-list-item {
    width: 29%;
    margin-right: 2.5rem;
  }
}

.cost__notes {
  width: 100%;
  font-weight: 500;
  color: #807262;
  margin-bottom: 1.5rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .cost__notes {
    width: 50%;
    margin-bottom: 2.5rem;
  }
}

.cost__notes p {
  font-size: 0.625rem;
  line-height: 1.7;
}

@media screen and (min-width: 768px) {
  .cost__notes p {
    font-size: 0.75rem;
    line-height: 1.6666666667;
  }
}

.cost__link {
  text-align: center;
}

.cost__link p {
  font-size: 1rem;
  line-height: 1.6875;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .cost__link p {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.marrygold-cost__click {
  width: 17.875rem;
  height: 2.875rem;
  border-radius: 3.125rem;
  padding: 0.625rem 0 0;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 1rem;
  line-height: 1.125;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .marrygold-cost__click {
    width: 23.5rem;
    height: 2.875rem;
    padding: 0.625rem 0;
  }
}

.marrygold__flow {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  gap: 1.5rem;
}

@media screen and (min-width: 768px) {
  .marrygold__flow {
    width: 50%;
    gap: 2.5rem;
  }
}

.marrygold__flow-item {
  display: flex;
}

.flow__item-num {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #FE8B04;
  font-size: 1.625rem;
  line-height: 1.3846153846;
  text-align: center;
  margin-right: 0.5rem;
}

@media screen and (min-width: 768px) {
  .flow__item-num {
    margin-right: 1rem;
  }
}

.flow__item-title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  color: #FE8B04;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .flow__item-title {
    font-size: 1.25rem;
    line-height: 1.7;
  }
}

.flow__item-txt {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6875;
  letter-spacing: 0.1em;
}

.ex__title {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .ex__title {
    margin-bottom: 2.5rem;
  }
}

.ex__items ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .ex__items ul {
    width: 66.8%;
    flex-direction: row;
    gap: 1.5rem;
    margin-inline: auto;
  }
}

.ex__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.375rem;
}

@media screen and (min-width: 768px) {
  .ex__item {
    width: 33.3333333333%;
    flex-direction: row;
    margin-bottom: 0;
  }
}

.ex__item:last-child {
  margin-bottom: 0;
}

.ex__img {
  width: 100%;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .ex__img {
    display: none;
  }
}

.ex__img img {
  border-radius: 1.5625rem;
}

@media screen and (min-width: 768px) {
  .ex__img img {
    width: 13.8125rem;
    height: 100%;
  }
}

.ex__article {
  font-size: 1rem;
  line-height: 1.6875;
}

.marrygold__contacts {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .marrygold__contacts {
    width: 60%;
    flex-direction: row;
    justify-content: space-between;
    margin-inline: auto;
  }
}

.marrygold__contact-btn {
  width: 21.4375rem;
  height: 7.375rem;
  border-radius: 1.25rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .marrygold__contact-btn {
    width: 25.375rem;
    height: 7.375rem;
  }
}

.tel__contact {
  background: #FFFEF8;
  border: 0.0625rem solid #FE8B04;
  padding: 1rem 0;
  margin-bottom: 0.875rem;
}

@media screen and (min-width: 768px) {
  .tel__contact {
    margin-bottom: 0;
  }
}

.mail__contact {
  background: #FE8B04;
  color: white;
  padding: 1.625rem 0;
}

.contact-btn__txt {
  margin-bottom: 0.375rem;
}

.contact-btn__link {
  width: 80%;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .contact-btn__link {
    width: 70%;
  }
}

.tel-num {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tel-img img {
  width: 2rem;
  height: 2rem;
  margin-right: 0.375rem;
}

.contact-btn__link p {
  font-size: 2.25rem;
}

.tel-link {
  color: #FE8B04;
}

.contact-timezone p {
  font-size: 0.875rem;
}

.marrygold-mail {
  display: flex;
  justify-content: center;
  align-items: center;
}

.marrygold-mail img {
  width: 2rem;
  margin-right: 0.375rem;
}

.marrygold-mail p {
  font-size: 1.5rem;
}

.marrygold-ov__items {
  width: 100%;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .marrygold-ov__items {
    width: 50%;
    margin-bottom: 2.5rem;
  }
}

.ov__item {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  border-bottom: 0.0625rem solid #D4D4D4;
  padding-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.6875;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .ov__item {
    flex-direction: row;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .ov__item p:nth-of-type(2n) {
    text-align: left;
  }
}

.ov-item {
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .ov-item {
    width: 23%;
    margin-bottom: 0;
    margin-right: 2.5rem;
  }
}

.marrygold__img {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .marrygold__img {
    width: 62%;
    margin-inline: auto;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .marrygold__img img {
    width: 26.625rem;
  }
}

.marrygold__ov-click {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .marrygold__ov-click {
    width: 50%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
    gap: 0;
  }
}

.marrygold-ov__click {
  width: 17.875rem;
  height: 2.875rem;
  border-radius: 3.125rem;
  padding: 0.625rem 0 0;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 1rem;
  line-height: 1.125;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 768px) {
  .marrygold-ov__click {
    margin-bottom: 2.5rem;
  }
}

.marrygold-ov__map {
  width: 100%;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .marrygold-ov__map {
    max-width: 56.25rem;
    width: 100%;
    margin-inline: auto;
  }
}

.marrygold-ov__map iframe {
  width: 21.0625rem;
  height: 11.6875rem;
  border-radius: 1.25rem;
}

@media screen and (min-width: 768px) {
  .marrygold-ov__map iframe {
    width: 100%;
    min-height: 11.6875rem;
    height: 100%;
  }
}

@media screen and (min-width: 1440px) {
  .marrygold-ov__map iframe {
    width: 56.25rem;
    height: 31.25rem;
  }
}

#smilehert-fv {
  width: 100%;
  height: 40vh;
  position: relative;
  margin-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  #smilehert-fv {
    margin-top: 0;
    height: 40rem;
  }
}

.sh__inner {
  min-width: 23.4375rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .sh__inner {
    max-width: 90rem;
    margin-inline: auto;
  }
}

.smileheart-fv__container {
  position: relative;
  background: #FF9F2F;
  height: 10vh;
  opacity: 0.3;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .smileheart-fv__container {
    height: 14.828125rem;
  }
}

.smileheart-wave {
  position: absolute;
  height: 88px;
  width: 100%;
  background: #FF9F2F;
  bottom: 0;
}

.smileheart-wave::before, .smileheart-wave::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50% 100%;
}

.smileheart-wave::before {
  width: 55%;
  height: 100%;
  background-color: #FF9F2F;
  right: -1.5%;
  top: 40%;
}

@media screen and (min-width: 768px) {
  .smileheart-wave::before {
    height: 110%;
    top: 56.5%;
    right: -3%;
  }
}

.smileheart-wave::after {
  width: 55%;
  height: 109%;
  background-color: #FFF9E9;
  left: -1.5%;
  top: 60%;
}

@media screen and (min-width: 768px) {
  .smileheart-wave::after {
    height: 110%;
    top: 65%;
    left: -2.2%;
  }
}

.sh-fv__title {
  margin-top: -1.25rem;
  text-align: center;
  color: #FF5611;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .sh-fv__title {
    margin-top: -11.25rem;
    margin-bottom: 7.5rem;
  }
}

.sh__sub-title {
  font-size: 1.125rem;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .sh__sub-title {
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}

.sh-fv-title {
  font-size: 1.5rem;
  line-height: 1.4166666667;
}

@media screen and (min-width: 768px) {
  .sh-fv-title {
    font-size: 4rem;
    line-height: 1.4375;
  }
}

.sh-fv__img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .sh-fv__img {
    width: 100%;
    margin-top: -9.375rem;
  }
}

.sh-fv__txt-wrap {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

@media screen and (min-width: 768px) {
  .sh-fv__txt-wrap {
    width: 85%;
    margin-inline: auto;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1440px) {
  .sh-fv__txt-wrap {
    padding-top: 1.5625rem;
  }
}

.sh-fv__txt {
  font-size: 1rem;
  color: #FF5611;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .sh-fv__txt {
    font-size: 2.25rem;
  }
}

.sh-fv__img img {
  width: 50%;
}

.sh-fv__deco {
  width: 19%;
  position: absolute;
}

.sh-fv__deco01 {
  top: 5%;
  left: 10%;
}

.sh-fv__deco02 {
  top: 5%;
  right: 10%;
}

.sh-fv__deco03 {
  top: 60%;
  left: 6%;
}

.sh-fv__deco04 {
  top: 60%;
  right: 5%;
}

.sh-section__wrapper {
  width: 100%;
  padding: 2.5rem 0;
}

@media screen and (min-width: 768px) {
  .sh-section__wrapper {
    padding: 5rem 0;
  }
}

.sh-section__inner {
  padding: 0 1rem;
}

@media screen and (min-width: 768px) {
  .sh-section__inner {
    padding: 0;
  }
}

.sh-section-title {
  font-size: 1.375rem;
  line-height: 1.4090909091;
}

@media screen and (min-width: 768px) {
  .sh-section-title {
    font-size: 2.5rem;
    line-height: 1.425;
  }
}

.sh-dl__wrapper {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .sh-dl__wrapper {
    opacity: 1;
    width: 3.75rem;
    display: inline-block;
    background: #FF763D;
    padding: 1.3125rem 0.4375rem;
    border-radius: 1.25rem 0 0 1.25rem;
    text-align: center;
    position: absolute;
    top: 70%;
    right: 0;
    z-index: 999;
  }
}

.sh-dl__wrapper button {
  color: white;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.sh-dl__wrapper p {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.worry__title {
  margin-bottom: 6.25rem;
}

.worry__img-wrapper {
  position: relative;
  width: 100%;
  height: 8.125rem;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .worry__img-wrapper {
    width: 62%;
    height: 33rem;
    margin-bottom: 2.5rem;
  }
}

.sh-worry-txt {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .sh-worry-txt {
    font-size: 2rem;
    line-height: 1.4375;
    margin-bottom: 2.5rem;
  }
}

.sh-click__wrapper {
  width: 17.875rem;
  border-radius: 3.125rem;
  padding: 0.875rem 0;
  margin-inline: auto;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .sh-click__wrapper {
    padding: 0.625rem 0;
  }
}

.bubble-wrap {
  position: absolute;
  height: 13.125rem;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 0.625rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .bubble-wrap {
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}

.bubble-01 {
  top: -40%;
  left: 35%;
  z-index: 40;
}

@media screen and (min-width: 768px) {
  .bubble-01 {
    top: 0;
    left: 30%;
  }
}

.bubble-02 {
  top: -34%;
  left: 2%;
}

@media screen and (min-width: 768px) {
  .bubble-02 {
    top: 12%;
    left: 0;
  }
}

.bubble-03 {
  top: -18%;
  right: -2%;
}

@media screen and (min-width: 768px) {
  .bubble-03 {
    top: 10%;
    right: -23%;
  }
}

.bubble-04 {
  top: 5%;
  left: -2%;
  z-index: 30;
}

@media screen and (min-width: 768px) {
  .bubble-04 {
    top: 35%;
    left: -20%;
  }
}

.bubble-05 {
  top: 10%;
  right: -5%;
}

@media screen and (min-width: 768px) {
  .bubble-05 {
    top: 35%;
    right: -24%;
  }
}

.bubble-07 {
  right: -10%;
  bottom: -100%;
  z-index: 40;
}

@media screen and (min-width: 768px) {
  .bubble-07 {
    right: -30%;
    bottom: 0;
  }
}

.bubble-01, .bubble-07 {
  width: 9.375rem;
  padding-top: 0.625rem;
  background: url(../img/smileheart/bubble-17.png) no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .bubble-01, .bubble-07 {
    width: 28.125rem;
    padding-top: 1.875rem;
  }
}

.bubble-02 {
  width: 7.5rem;
  padding-top: 0.8125rem;
  background: url(../img/smileheart/bubble-24.png) no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .bubble-02 {
    width: 20rem;
    padding-top: 2.1875rem;
  }
}

.bubble-03, .bubble-04, .bubble-05 {
  width: 6.875rem;
  padding-top: 0.4375rem;
  background: url(../img/smileheart/bubble-35.png) no-repeat;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .bubble-03, .bubble-04, .bubble-05 {
    width: 25.625rem;
    padding-top: 3.125rem;
  }
}

.bubble-06 {
  width: 7.5rem;
  background: url(../img/smileheart/bubble-6.png) no-repeat;
  background-size: contain;
  padding-top: 0.4375rem;
  font-size: 0.5rem;
  line-height: 1.375;
  left: -5%;
  bottom: -98%;
  z-index: 40;
}

@media screen and (min-width: 768px) {
  .bubble-06 {
    width: 26.25rem;
    font-size: 1.5rem;
    line-height: 1.4166666667;
    padding-top: 1.875rem;
    bottom: 0;
    left: -20%;
  }
}

.worry-img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 10rem;
  z-index: 50;
}

@media screen and (min-width: 768px) {
  .worry-img {
    width: 27.625rem;
  }
}

.sh-about__title {
  padding-bottom: 0.625rem 0 0.75rem 0.625rem;
  border-bottom: 0.125rem solid #3D2609;
  text-align: left;
  margin-bottom: 0.625rem;
}

@media screen and (min-width: 768px) {
  .sh-about__title {
    width: 72%;
    margin-inline: auto;
  }
}

.sh__about-cc {
  width: 100%;
  padding: 1.25rem 0;
  text-align: center;
  margin-bottom: 2rem;
}

.sh__about-cc h3 {
  font-size: 1.375rem;
  line-height: 1.4090909091;
  color: #FF5611;
}

@media screen and (min-width: 768px) {
  .sh__about-cc h3 {
    font-size: 2.25rem;
    line-height: 1.4444444444;
  }
}

@media screen and (min-width: 768px) {
  .sh__about-detail {
    width: 62%;
    margin-inline: auto;
  }
}

.sh__about-txt {
  font-size: 1rem;
  line-height: 1.6875;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .sh__about-txt {
    font-size: 1.125rem;
    line-height: 2.5555555556;
  }
}

.sh__about-img {
  width: 100%;
  position: relative;
}

@media screen and (min-width: 768px) {
  .sh__about-img {
    width: 77%;
    margin-inline: auto;
  }
}

.sh-about-img {
  width: 8.75rem;
  position: absolute;
  top: -1.25rem;
  right: 2%;
}

@media screen and (min-width: 768px) {
  .sh-about-img {
    bottom: 10%;
    right: -50%;
    width: 25rem;
  }
}

.sh__about-lists {
  width: 100%;
  padding: 0.625rem 1.25rem;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .sh__about-lists {
    width: 77%;
    margin-inline: auto;
    padding: 1.25rem 2.5rem;
  }
}

.sh__about-list {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}

.sh-service__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .sh-service__content {
    width: 58%;
    margin-inline: auto;
  }
}

.service-pre {
  margin-bottom: 2.5rem;
}

@media screen and (min-width: 768px) {
  .service-pre {
    margin-bottom: 5rem;
  }
}

.sh-service__content-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .sh-service__content-title {
    margin-bottom: 2.5rem;
  }
}

.service__content-title {
  font-size: 1.125rem;
  line-height: 1.3333333333;
  text-align: center;
  color: #FF5611;
}

@media screen and (min-width: 768px) {
  .service__content-title {
    font-size: 1.5rem;
    line-height: 1.1666666667;
  }
}

.pre-title-sub {
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .pre-title-sub {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

.sh-service__content-img {
  width: 64%;
}

.sh__service-detail {
  width: 100%;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .sh__service-detail {
    max-width: 52.5rem;
    margin-inline: auto;
  }
}

.sh__service-txt {
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .sh__service-txt {
    font-size: 1.5rem;
    line-height: 1.4166666667;
    margin-bottom: 2.5rem;
  }
}

.sh__service-lists {
  width: 100%;
  padding: 0.625rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 768px) {
  .sh__service-lists {
    gap: 1.25rem;
  }
}

.sh__service-list {
  display: flex;
  align-items: baseline;
  font-size: 0.875rem;
  line-height: 2.5;
}

@media screen and (min-width: 768px) {
  .sh__service-list {
    font-size: 1.125rem;
    line-height: 2.5555555556;
  }
}

.sh-list-arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 1rem;
  vertical-align: middle;
  text-decoration: none;
  margin-right: 1.25rem;
}

.sh-list-arrow::before,
.sh-list-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
}

.sh-list-arrow::before {
  width: 1.25rem;
  height: 1.25rem;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #FE8B04;
}

@media screen and (min-width: 768px) {
  .sh-list-arrow::before {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.sh-list-arrow::after {
  width: 0.5rem;
  height: 0.5rem;
  left: 0.25rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 768px) {
  .sh-list-arrow::after {
    width: 0.625rem;
    height: 0.625rem;
    left: 0.375rem;
  }
}

.events__title {
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .events__title {
    margin-bottom: 2.5rem;
  }
}

.sh__events-cc {
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .sh__events-cc {
    font-size: 1.5rem;
    line-height: 1.4166666667;
    margin-bottom: 2.5rem;
  }
}

.transfer__title {
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .transfer__title {
    margin-bottom: 2.5rem;
  }
}

.sh__transfer-cc {
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .sh__transfer-cc {
    font-size: 1.5rem;
    line-height: 1.4166666667;
    margin-bottom: 2.5rem;
  }
}

.sh__transfer-content {
  width: 100%;
  margin-inline: auto;
  display: flex;
}

@media screen and (min-width: 768px) {
  .sh__transfer-content {
    width: 54%;
  }
}

.sh__transfer-txt {
  font-size: 0.875rem;
  line-height: 2.5;
  margin-right: 0.625rem;
}

@media screen and (min-width: 768px) {
  .sh__transfer-txt {
    font-size: 1.125rem;
    line-height: 2.5555555556;
    margin-right: 2.5rem;
  }
}

.sh__transfer-img {
  width: 50%;
}

.guidance__content-title {
  font-size: 1.125rem;
  line-height: 1.3333333333;
  text-align: center;
  color: #FF5611;
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .guidance__content-title {
    font-size: 1.5rem;
    line-height: 1.1666666667;
    margin-bottom: 2.5rem;
  }
}

.sh__guidance-contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

@media screen and (min-width: 768px) {
  .sh__guidance-contents {
    width: 70%;
    flex-direction: row;
    gap: 3.75rem;
    margin-inline: auto;
  }
}

.sh__guidance-content {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .sh__guidance-content {
    width: 47%;
  }
}

.guidance__content-lists {
  width: 100%;
  margin-inline: auto;
  display: flex;
  padding: 0 1rem;
  flex-direction: column;
  gap: 0.5rem;
}

@media screen and (min-width: 768px) {
  .guidance__content-lists {
    padding: 0 1.09375rem;
  }
}

.guidance__content-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6428571429;
  padding-bottom: 0.5rem;
  border-bottom: 0.0625rem solid #D4D4D4;
}

@media screen and (min-width: 768px) {
  .guidance__content-list {
    gap: 2.5rem;
    font-size: 1rem;
    line-height: 1.6875;
  }
}

.guidance-item {
  width: 33%;
  padding: 0.375rem 0 0.375rem 1.25rem;
}

.guidance-txt-wrapper {
  width: 58%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media screen and (min-width: 768px) {
  .guidance-txt-wrapper {
    gap: 2.5rem;
  }
}

.align__title {
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .align__title {
    margin-bottom: 2.5rem;
  }
}

.align__wrapper {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .align__wrapper {
    width: 72%;
    margin-inline: auto;
  }
}

.align__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media screen and (min-width: 768px) {
  .align__inner {
    gap: 2.5rem;
  }
}

.align__items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.border-black {
  width: 6.25rem;
  height: 6.25rem;
  border: 0.1875rem solid #241503;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: baseline;
  align-items: center;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .border-black {
    width: 17.25rem;
    height: 17.25rem;
  }
}

.align-item-img {
  width: 4.0625rem;
  padding: 0.3125rem;
}

@media screen and (min-width: 768px) {
  .align-item-img {
    width: 11.125rem;
    padding: 1.0625rem;
  }
}

.align-item-txt {
  font-size: 0.625rem;
  line-height: 1.4;
}

@media screen and (min-width: 768px) {
  .align-item-txt {
    font-size: 1.5rem;
    line-height: 1.4166666667;
  }
}

.vrl {
  width: 2.1875rem;
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/smileheart/arrow-both.png) no-repeat;
  background-size: contain;
  background-position: center;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 0.625rem;
  line-height: 1.1;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .vrl {
    width: 4.875rem;
    height: 18.75rem;
    font-size: 1.25rem;
  }
}

.arrow-both {
  width: 6.25rem;
  height: 4.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/smileheart/arrow-both-beside.png) no-repeat;
  background-size: contain;
  background-position: center;
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .arrow-both {
    width: 19.0625rem;
    height: 4.8125rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.diago-line {
  width: 6.25rem;
  height: 1.875rem;
  background: #FF9F2F;
  position: relative;
  transform: rotate(-130deg);
}

@media screen and (min-width: 768px) {
  .diago-line {
    width: 22.1875rem;
    height: 3.125rem;
  }
}

.diago-line::before, .diago-line::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.9375rem solid transparent;
  border-bottom: 0.9375rem solid transparent;
}

@media screen and (min-width: 768px) {
  .diago-line::before, .diago-line::after {
    border-top: 1.5625rem solid transparent;
    border-bottom: 1.5625rem solid transparent;
  }
}

.diago-line::before {
  border-right: 1.625rem solid #FF9F2F;
  border-left: 0;
  left: -1.59375rem;
}

@media screen and (min-width: 768px) {
  .diago-line::before {
    border-right: 2.6875rem solid #FF9F2F;
    left: -2.65625rem;
  }
}

.diago-line::after {
  border-left: 1.625rem solid #FF9F2F;
  border-right: 0;
  right: -1.59375rem;
}

@media screen and (min-width: 768px) {
  .diago-line::after {
    border-left: 2.6875rem solid #FF9F2F;
    right: -2.65625rem;
  }
}

.sh__img-wrapper {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .sh__img-wrapper {
    opacity: 1;
    width: 100%;
    position: relative;
    width: 60%;
    margin-inline: auto;
  }
}

.sh-img {
  width: 9.1875rem;
  position: absolute;
  top: -7.5rem;
  right: 3.125rem;
}

.sh__contacts {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .sh__contacts {
    width: 60%;
    flex-direction: row;
    justify-content: space-between;
    margin-inline: auto;
  }
}

.sh__contact-btn {
  width: 21.4375rem;
  height: 7.375rem;
  border-radius: 1.25rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .sh__contact-btn {
    width: 25.375rem;
    height: 7.375rem;
  }
}

.sh-contact-timezone {
  margin-top: -0.625rem;
}

.sh-mail {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sh-mail img {
  width: 2rem;
  margin-right: 0.375rem;
}

.sh-mail p {
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .sh__ov-img {
    margin-inline: auto;
    width: inherit;
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .sh-ov-img {
    width: 14.4375rem;
    position: absolute;
    bottom: 0;
    right: -95%;
  }
}

.sh-ov__map {
  width: 100%;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .sh-ov__map {
    max-width: 56.25rem;
    width: 100%;
    margin-inline: auto;
  }
}

.sh-ov__map iframe {
  width: 21.0625rem;
  height: 11.6875rem;
  border-radius: 1.25rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .sh-ov__map iframe {
    width: 100%;
    min-height: 11.6875rem;
    height: 100%;
  }
}

@media screen and (min-width: 1440px) {
  .sh-ov__map iframe {
    width: 56.25rem;
    height: 31.25rem;
  }
}

.u-desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

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


/* 2025/04/09 追記 */
.about__title {
  text-align: center;
  color: #FDBA7A;
}

.page__txt {
  font-size: 1.125rem;
  line-height: 2.5555555556;
}

.about__img {
  width: 100%;
  margin: 1rem auto;
  display: flex;
}

.about__img img {
  width: 25%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .about__img {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 10px;
  }
}

.article__date {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article__category {
  font-size: 0.9rem;
  color: #FFF1CC;
  background: #FDBA7A;
  padding: .3rem .8rem;
  border-radius: 1rem;
}

.single-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.single-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.single-thumbnail {
  margin-bottom: 2rem;
}

.single-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.single-content {
  line-height: 1.8;
}

.single-content p {
  margin-bottom: 1.5rem;
}

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

@media screen and (min-width: 768px) {
  .single-article {
    padding: 3rem;
  }

  .single-title {
    font-size: 2.5rem;
  }
}

.back-to-list {
  margin-top: 3rem;
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s;
}

.back-link:hover {
  opacity: .5;
}

.back-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #333;
  border-left: 2px solid #333;
  transform: rotate(-45deg);
}

@media screen and (min-width: 768px) {
  .back-to-list {
    margin-top: 4rem;
  }

  .back-link {
    padding: 1rem 2rem;
  }
}

.accordion-button {
  margin-top: 2rem;
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #FE8B04;
  text-align: center;
}

.accordion-trigger p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.accordion-trigger .check-arrow {
  transition: transform 0.3s ease;
  transform: rotate(-45deg);
}

.accordion-trigger[aria-expanded="true"] .check-arrow {
  transform: rotate(135deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content[aria-hidden="false"] {
  max-height: none;
}

@media screen and (min-width: 768px) {
  .accordion-button {
    margin-top: 3rem;
  }
}


.detail-cards__wrapper {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.detail__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

@media screen and (min-width: 768px) {
  .detail__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 0 2rem;
  }
}



.detail__card {
  width: 18.75rem;
  height: 100%;
  padding: 1.25rem;
  background: #FFFEF8;
  border-radius: 1.25rem;
  margin-inline: auto;
  margin-bottom: 0.625rem;
}


.detail__cards:last-of-type {
  margin-bottom: 0;
}

.detail__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.625rem;
  gap: 0.5rem;
}

.detail-icon {
  flex: 0 0 3.125rem;
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-icon img {
  width: 1.4375rem;
  height: 1.4375rem;
  object-fit: contain;
}

.detail-item {
  font-size: 1.25rem;
  line-height: 1.2;
  flex: 1;
}

.detail__card-img {
  width: 100%;
  border-radius: 1.5625rem;
  margin-bottom: 1.625rem;
  position: relative;
  overflow: hidden;
}

.detail__card-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.detail__card-txt {
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}

.detail__card-txt p {
  margin-bottom: 1rem;
}

.detail__card-txt p:last-of-type {
  margin-bottom: 0;
}

/* 沿革セクションのスタイル */
.history__timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.history__timeline-item {
    margin-bottom: 30px;
    padding: 15px;
    border-left: 3px solid #e0e0e0;
    position: relative;
}

.history__timeline-item:last-child {
    margin-bottom: 0;
}

.history__date {
    margin-bottom: 10px;
}

.history__year {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    margin-right: 5px;
}

.history__month {
    font-size: 1rem;
    color: #666;
}

.history__content {
    padding: 10px 0;
}

.history__content p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .history__timeline {
        padding: 20px 0;
    }

    .history__timeline-item {
        margin-bottom: 20px;
        padding: 10px;
    }
}

/* 会社概要セクションのスタイル */
.company__info {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.company__info-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.company__info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.company__info-label {
    width: 120px;
    font-weight: bold;
    color: #333;
}

.company__info-content {
    flex: 1;
    color: #333;
}

.company__info-content ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.company__info-content li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 1.5em;
}

.company__info-content li::before {
    content: "・";
    position: absolute;
    left: 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .company__info {
        padding: 15px;
    }

    .company__info-item {
        flex-direction: column;
        margin-bottom: 15px;
    }

    .company__info-label {
        width: 100%;
        margin-bottom: 5px;
    }
}

.address-list,
.office-number-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.address-list li,
.office-number-list li {
    margin: 0 0 1rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid #ddd;
}

.address-list li:last-child,
.office-number-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.address-name,
.office-name {
    display: block;
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #333;
}

.address-list p,
.office-number-list p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: #666;
}

@media screen and (min-width: 768px) {
    .address-list li,
    .office-number-list li {
        margin: 0 0 1.5rem;
        padding: 0 0 1.5rem;
    }

    .address-name,
    .office-name {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .address-list p,
    .office-number-list p {
        font-size: 1.125rem;
    }
}

.page_image1 {
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .page_image1 {
        max-width: 49%;
    }
}

.page_image1 img{
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 0.5rem;
}