@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #363636;
  background-color: #FCFAF3;
}

body {
  font-family: "Noto Sans JP", serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/* リキッドレイアウト対応のための設定 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: vw(375, 16);
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: vw(strip-unit(1200px), 16);
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/*横スクロール防止*/
html, body {
  overflow-x: hidden;
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
  color: #363636;
}

/* マウスホバーがあるデバイスでのアニメーション */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}
/* pc幅での電話発信しない */
@media screen and (any-hover: hover) and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

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

.inner {
  width: 100%;
  padding-inline: 15px;
  margin-inline: auto;
  max-width: 36.25rem;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 78.125rem;
    padding-inline: 25px;
  }
}

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

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9998;
  background-color: #FCFAF3;
}

.header--yellow {
  background-color: #E1B33F;
}

.header__inner {
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 100%;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 83.125rem;
    height: 6.875rem;
    margin-top: 1rem;
    margin-inline: auto;
  }
}

.header__logo {
  z-index: 9999;
  width: 4.375rem;
  height: 4rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 7.5rem;
    height: 6.875rem;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.375rem;
    border: 1px solid #E1B33F;
    border-radius: 6.25rem;
    background: #FFFFFF;
    padding-block: 1.125rem 1rem;
    padding-inline: 3.5rem 3.125rem;
  }
}

.header__nav-link {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.448125;
  color: #363636;
  padding-block: 1.125rem 1rem;
}

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

/* スマホメニュー*/
.sp-nav {
  background-color: #E1B33F;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  translate: 100% 0;
  -webkit-transition: translate 0.3s;
  transition: translate 0.3s;
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .sp-nav {
    display: none;
  }
}
.sp-nav.is-open {
  translate: 0 0;
}

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

.sp-nav__inner {
  padding-inline: 0;
  max-width: 100%;
}

.sp-nav__items {
  padding-block: 11rem 3.5rem;
  display: -ms-grid;
  display: grid;
  gap: 2.375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.sp-nav__item {
  font-size: 1rem;
  line-height: 1.448125;
  text-align: center;
  font-family: "Noto Sans JP", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: start;
  margin-left: 0.4375rem;
}

.sp-nav__item a {
  color: #FAF3E0;
  width: 100%;
  height: inherit;
  display: block;
}

.btn.sp-nav__btn {
  padding-block: 0.875rem;
  padding-inline: 2.5rem;
  margin-inline: auto;
  font-family: "Noto Sans JP", serif;
}

.hamburger {
  z-index: 9999;
  width: 2.375rem;
  padding: 0;
}

.hamburger span {
  display: block;
  position: relative;
  background-color: #E1B33F;
  height: 0.125rem;
  -webkit-transition: rotate 0.3s 0s ease;
  transition: rotate 0.3s 0s ease;
}

.hamburger span:nth-child(1) {
  width: 2.375rem;
  margin-top: 0.1875rem;
}

.hamburger span:nth-child(2) {
  margin-top: 0.4375rem;
  width: 1.875rem;
  margin-left: 0.5rem;
}

.hamburger span:nth-child(3) {
  margin-top: 0.4375rem;
  width: 1.375rem;
  margin-left: 1rem;
}

.hamburger.is-open span {
  background-color: #FAF3E0;
}

.hamburger.is-open span:nth-child(1) {
  top: 0.5625rem;
  width: 2.655625rem;
  rotate: 26.57deg;
  right: 0.0625rem;
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: -0.5625rem;
  width: 2.655625rem;
  rotate: -26.57deg;
  right: 1.125rem;
}

body.js-fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

.header--yellow .hamburger span {
  background-color: #FFFFFF;
}

.header--yellow .hamburger.is-open span {
  background-color: #FAF3E0;
}

.logo {
  width: 4.375rem;
}
@media screen and (min-width: 768px) {
  .logo {
    width: 7.5rem;
  }
}

.logo__header {
  position: relative;
  display: block;
}

.logo__header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/common/logoWHITE.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  z-index: -1;
}

body.js-fixed .logo__header:before {
  z-index: 1;
}

.btn {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: #FFFFFF;
  background-color: #E1B33F;
  padding-block: 0.8125rem;
  padding-inline: 1.9375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
  border-radius: 40px;
  white-space: nowrap;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  font-family: "Lato", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.1875;
  border: 1px solid #E1B33F;
}

.btn--sharp {
  padding: 0.5rem 1.375rem;
  height: 2.1875rem;
}

.btn__arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
  margin-left: 0.5rem;
}

.btn__arrow::before,
.btn__arrow::after {
  position: absolute;
  content: "";
}

.btn__arrow::before {
  background-image: url(../images/common/btnYELLOW.svg);
  background-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}

.btn__arrow::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 1;
}

.btn--white {
  background-color: #FFFFFF;
  color: #E1B33F;
  border: 1px solid #FFFFFF;
}

.btn.btn--white .btn__arrow::before {
  background-image: url(../images/common/btnYELLOW-h.svg);
}

.btn--red {
  background-color: #F08873;
  border: 1px solid rgb(240, 135, 115);
}

.btn.btn--red .btn__arrow::before {
  background-image: url(../images/common/btnRED.svg);
}

@media (any-hover: hover) {
  .btn:hover .btn__arrow::after {
    opacity: 1;
  }
  .btn:hover .btn__arrow::before {
    background-image: url(../images/common/btnYELLOW-h.svg);
  }
  .btn:hover {
    opacity: 1;
    background-color: #FFFFFF;
    color: #E1B33F;
  }
  .btn.btn--white:hover {
    background-color: #E1B33F;
    color: #FFFFFF;
  }
  .btn.btn--white:hover .btn__arrow::before {
    background-image: url(../images/common/btnYELLOW.svg);
  }
  .btn.btn--red:hover {
    background-color: #FFFFFF;
    color: #F08873;
  }
  .btn.btn--red:hover .btn__arrow::before {
    background-image: url(../images/common/btnRED-h.svg);
  }
}
@media (any-hover: hover) {
  .banner .btn.banner__btn:hover .icon__item.icon__item--mail::before {
    background-color: #E1B33F !important;
  }
}
.title {
  position: relative;
}

.title::before {
  content: "";
  position: absolute;
  top: -0.375rem;
  left: -0.375rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #E1B33F;
  border-radius: 50%;
}

@media (any-hover: hover) {
  .title:hover::before {
    opacity: 1;
  }
}
.title--white::before {
  content: "";
  position: absolute;
  top: -0.375rem;
  left: -0.375rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #FAF3E0;
  border-radius: 50%;
}

/*ファーストビュー*/
.fv {
  overflow: hidden;
  position: relative;
}

.fv__inner {
  position: relative;
  margin-inline: auto;
  width: 100%;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    max-width: 76.5625rem;
    padding-left: 25px;
  }
}

@media screen and (min-width: 768px) {
  .fv__slider {
    margin-inline: auto calc(50% - 50vi);
  }
}

.fv__image {
  aspect-ratio: 360/452;
  border-radius: 0 0 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .fv__image {
    aspect-ratio: 1320/514;
    border-radius: 0 0 0 3.75rem;
    margin-inline: auto calc(50% - 50vi);
  }
}

.fv__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) {
  .fv__image--bg {
    aspect-ratio: 1320/614;
  }
}

.fv__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 0 0 1.875rem;
}
@media screen and (min-width: 768px) {
  .fv__image img {
    border-radius: 0 0 0 3.75rem;
  }
}

.fv__catch-title {
  position: absolute;
  top: 45.796460177%;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  text-align: center;
  font-family: "Lato", serif;
  color: #E1B33F;
  font-size: 2rem;
  line-height: 1.1875;
  font-weight: 700;
  display: inline-block;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .fv__catch-title {
    left: 0;
    top: 38.1107491857%;
    translate: initial;
    font-size: 3rem;
    padding-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .news {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 78.125rem;
    margin-inline: auto;
    height: 6.25rem;
    padding-inline: 1.5625rem;
  }
}

.news__container {
  margin-top: 2.5rem;
  background-color: #E1B33F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 1.5rem;
  padding-block: 2rem 2.375rem;
  width: 100%;
  border-radius: 0.625rem;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .news__container {
    margin-top: -6.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-inline: 2.5rem;
    padding-block: 2rem;
    width: 54.6527777778%;
    max-width: 49.1875rem;
    position: absolute;
    right: 1.5625rem;
    z-index: 10;
  }
}

.news__left-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .news__left-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: 0.375rem;
  }
}

@media screen and (min-width: 768px) {
  .news__btn {
    margin-top: 0.9375rem;
    margin-left: -0.3125rem;
  }
}

.news__category {
  font-family: "Lato", serif;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.2;
  border: 1px solid #E1B33F;
  border-radius: 1.25rem;
  color: #E1B33F;
  padding: 0.0625rem 0.5rem;
  background-color: #FFFFFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.25rem;
}

.news__right-container {
  width: 100%;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .news__right-container {
    margin-top: 0;
  }
}

.news__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #FFFFFF;
  padding-block: 1rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .news__content-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-block: 0.5rem 0.9375rem;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

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

.news__content:nth-child(1) {
  border-top: 1px solid #FFFFFF;
}

.news time {
  font-family: "Lato", serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.1666666667;
  color: #FFFFFF;
}

.news__title {
  font-family: "Noto Sans JP", serif;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4375;
  margin-top: 0.5rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .news__title {
    padding-left: 2.625rem;
  }
}

.section-title {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #E1B33F;
  padding-left: 0.375rem;
  position: relative;
  display: -ms-grid;
  display: grid;
}

.section-title--white::before {
  content: "";
  position: absolute;
  top: -0.375rem;
  left: -0.375rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #FAF3E0;
  border-radius: 50%;
}

.section-title__gap {
  gap: 0.1875rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .section-title__gap {
    margin-left: 0;
  }
}

.section-title--center {
  margin-inline: auto;
}

.section-title__heading {
  font-family: "Noto Sans JP", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4166666667;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .section-title__heading {
    font-size: 2rem;
    line-height: 1.4375;
  }
}

.section-title__sub {
  font-family: "Lato", serif;
  text-transform: capitalize;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.1666666667;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.section-title__heading--small {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.1875;
}

.section-title--white {
  color: #FFFFFF;
}

@media screen and (min-width: 768px) {
  .section-title___inner {
    margin-left: 0;
  }
}

.greeting {
  background: #FFFFFF;
}

.greeting__container {
  padding-block: 2.5rem;
}
@media screen and (min-width: 768px) {
  .greeting__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding-block: 11.25rem 5rem;
    padding-inline: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .greeting__text-content {
    margin-left: 3.75rem;
    max-width: 28.75rem;
  }
}

.greeting__text {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .greeting__text {
    margin-top: 2.5rem;
  }
}

.greeting__section-title {
  margin-top: 0.4375rem;
}

.grreting__campany {
  font-family: "Lato", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1428571429;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .grreting__campany {
    margin-top: 1.5rem;
  }
}

.greeting__profile {
  margin-top: 0.25rem;
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4375;
}
@media screen and (min-width: 768px) {
  .greeting__profile {
    line-height: 1.1875;
    margin-top: 0.5rem;
  }
}

.greeting__profile span {
  font-weight: 400;
  margin-left: 1.375rem;
  line-height: 1.1875;
}
@media screen and (min-width: 768px) {
  .greeting__profile span {
    margin-left: 2.5rem;
  }
}

.greeting__image {
  margin-top: 1.5rem;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .greeting__image {
    margin-top: 0;
    width: 32.5rem;
  }
}

.greeting__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 345/412;
  border-radius: 1.25rem;
}
@media screen and (min-width: 768px) {
  .greeting__image img {
    max-width: 32.5rem;
    aspect-ratio: 520/620;
  }
}

.greeting__btn {
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .greeting__btn {
    margin-top: 1.4375rem;
  }
}

.card {
  display: -ms-grid;
  display: grid;
  gap: 1.25rem;
  -ms-grid-columns: 1fr 1.25rem 1fr 1.25rem 1fr 1.25rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .card {
    gap: 1.1875rem;
    margin-inline: auto;
  }
}

.card__item {
  padding-block: 1rem 1.5rem;
  background-color: #FFFFFF;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(236, 201, 107, 0.3);
          box-shadow: 4px 4px 8px 0px rgba(236, 201, 107, 0.3);
  border-radius: 0.625rem;
}

.card__item span {
  padding-left: 0.1875rem;
}

.card__image {
  aspect-ratio: 164/164;
  width: 100%;
  overflow: hidden;
  margin-inline: auto;
  max-width: 10.25rem;
}

.card__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.card__title {
  background-color: #E1B33F;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.3125rem;
  color: #FFFFFF;
  margin-inline: auto;
  padding: 0.25rem 0.875rem;
  margin-top: 0.75rem;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4375;
}
@media screen and (min-width: 768px) {
  .card__title {
    margin-top: 0.875rem;
    padding: 0.25rem 0.75rem;
  }
}

.card__title--small {
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .card__title--small {
    font-size: 1rem;
    line-height: 1.4375;
  }
}

.medical-page__second-content {
  scroll-margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .medical-page__second-content {
    scroll-margin-top: 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .medical .section-title__gap {
    margin-left: 0.375rem;
  }
}

.medical__scroll {
  margin-top: 1.375rem;
  margin-inline: auto calc(50% - 50vi);
  overflow-x: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
@media screen and (min-width: 768px) {
  .medical__scroll {
    margin-top: 2.375rem;
    overflow-x: unset;
    margin-inline: auto;
  }
}

/*Google Chrome、Safariへの対応*/
.medical__scroll::-webkit-scrollbar {
  display: none;
}

.medical__card {
  width: 64.9375rem;
}
@media screen and (min-width: 768px) {
  .medical__card {
    width: 100%;
  }
}

.medical-yellow-aria {
  position: relative;
  background-color: #E1B33F;
  min-height: 16.875rem;
  margin-top: -9.375rem;
  border-radius: 10px 10px 0px 0px;
  z-index: -1;
  width: 66.8125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .medical-yellow-aria {
    height: 20.375rem;
    margin-top: -7.4375rem;
    max-width: 75rem;
    width: 100%;
  }
}

.medical-yellow-aria span::before {
  content: "";
  background-image: url(../images/common/logo02.svg);
  display: inline-block;
  position: absolute;
  bottom: 2.0625rem;
  translate: 0 2.0625rem;
  background-size: contain;
  background-repeat: no-repeat;
  width: 11.375rem;
  height: 10.4375rem;
}
@media screen and (min-width: 768px) {
  .medical-yellow-aria span::before {
    width: 21rem;
    height: 19.3125rem;
    bottom: 0.5625rem;
    translate: 0 0.5625rem;
  }
}

.medical__btn {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  margin-top: -5rem;
}
@media screen and (min-width: 768px) {
  .medical__btn {
    margin-top: -7.9375rem;
  }
}

.section-medical {
  padding-top: 3rem;
}
@media screen and (min-width: 768px) {
  .section-medical {
    padding-top: 7.75rem;
  }
}

@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 80s infinite linear 0.5s both;
          animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
  aspect-ratio: 174/116;
  width: 10.875rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .scroll-infinity__item {
    aspect-ratio: 420/280;
    width: 26.25rem;
  }
}

.scroll-infinity__item > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.column__container {
  display: -ms-grid;
  display: grid;
  margin-inline: auto;
  padding-inline: 1.5rem;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .column__container {
    -webkit-column-gap: 4.375rem;
       -moz-column-gap: 4.375rem;
            column-gap: 4.375rem;
    -ms-grid-columns: 1fr 4.375rem 1fr 4.375rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    padding-inline: 0;
  }
}

.column {
  margin-inline: auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.column__btn {
  margin-top: 3.5rem;
  margin-inline: 5.5rem 4.5625rem;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .column__btn {
    margin-top: 5.625rem;
    margin-inline: auto;
  }
}

.cards__item {
  width: 100%;
  display: -ms-grid;
  display: grid;
  margin-inline: auto;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .cards__item {
    margin-top: 0.9375rem;
    max-width: 18.75rem;
  }
}

.cards__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Lato", serif;
  font-weight: 400;
  gap: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .cards__item-head {
    display: contents;
    font-size: 0.875rem;
  }
}

.cards__item-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.375rem;
}
@media screen and (min-width: 768px) {
  .cards__item-category {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0.5rem;
  }
}

.cards__item-image {
  aspect-ratio: 300/200;
  width: 100%;
  overflow: hidden;
  margin-inline: auto;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .cards__item-image {
    max-width: 18.75rem;
  }
}

.cards__item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-radius: 0.3125rem;
}

.cards__item-content {
  color: #363636;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .cards__item-content {
    margin-top: 0.9375rem;
  }
}

.cards__item time {
  line-height: 1.7142857143;
  font-size: 0.875rem;
}

.cards__item h3 {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.125rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 任意の行数を指定 */
}

.cards__item-head p {
  line-height: 1.2;
  color: #E1B33F;
  background-color: #FFFFFF;
  border: 1px solid #E1B33F;
  border-radius: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.0625rem 0.5rem;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .cards__item-head p {
    padding: 0.1875rem 1.5rem;
    line-height: 1.1428571429;
    font-size: 0.875rem;
    margin-left: 0;
  }
}

.cards__btn {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .cards__btn {
    margin-top: 1.125rem;
  }
}

.section-column {
  padding-top: 5.25rem;
}
@media screen and (min-width: 768px) {
  .section-column {
    padding-top: 7.9375rem;
  }
}

.banner {
  max-width: 21.5625rem;
  width: 100%;
  margin-inline: auto;
  background-color: #FFFFFF;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(236, 201, 107, 0.3);
          box-shadow: 4px 4px 8px 0px rgba(236, 201, 107, 0.3);
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 51.25rem;
  }
}

.banner__image {
  display: none;
}
@media screen and (min-width: 768px) {
  .banner__image {
    display: block;
    height: auto;
    overflow: hidden;
    border-radius: 0.625rem;
    padding-block: 0.75rem;
    padding-left: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .banner__image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 0.625rem;
    aspect-ratio: 300/136;
    max-width: 18.75rem;
  }
}

.banner__content {
  padding-block: 0.75rem 0.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .banner__content {
    padding: 0.75rem 1.5rem;
  }
}

.banner__text {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  line-height: 1.5;
  font-size: 1rem;
  padding-left: 0.125rem;
}
@media screen and (min-width: 768px) {
  .banner__text {
    line-height: 1.3333333333;
    font-size: 1.5rem;
  }
}

.banner__tel {
  font-family: "Lato", serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.1666666667;
  padding-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .banner__tel {
    font-size: 2.5rem;
    line-height: 1.2;
    padding-left: 1.5625rem;
  }
}

.banner__tel-link {
  color: #363636;
}

.banner__btn {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1875;
  margin-top: 0.5rem;
  margin-inline: auto;
  padding: 0.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .banner__btn {
    margin-top: 0.9375rem;
    margin-left: 6.8125rem;
  }
}

.banner__btn:hover .icon-item--mail {
  background-color: #E1B33F;
}

.icon__item {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.icon__item--mail {
  display: inline-block;
  width: 1.3125rem;
  height: 1.125rem;
}

.icon__item.icon__item--tel {
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .icon__item.icon__item--tel {
    padding-left: 3.5rem;
  }
}

.icon__item::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.3125rem;
  height: 1.125rem;
}
@media screen and (min-width: 768px) {
  .icon__item::before {
    top: auto;
    bottom: 0;
    -webkit-transform: none;
            transform: none;
  }
}

.icon__item.icon__item--tel::before {
  background-image: url(../images/common/tel.svg);
  width: 1.3125rem;
  height: 1.3125rem;
  left: 0.25rem;
}
@media screen and (min-width: 768px) {
  .icon__item.icon__item--tel::before {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.icon-item--mail {
  display: inline-block;
  width: 1.3125rem;
  height: 1.125rem;
  background-color: #FFFFFF;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="21" height="18" viewBox="0 0 21 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.525391 5.77398V13.9327C0.525391 14.8048 0.875702 15.6412 1.49926 16.2579C2.12282 16.8747 2.96855 17.2211 3.85039 17.2211H17.1504C18.0322 17.2211 18.878 16.8747 19.5015 16.2579C20.1251 15.6412 20.4754 14.8048 20.4754 13.9327V4.06727C20.4754 3.19512 20.1251 2.35868 19.5015 1.74198C18.878 1.12527 18.0322 0.778809 17.1504 0.778809H3.85039C2.96855 0.778809 2.12282 1.12527 1.49926 1.74198C0.875702 2.35868 0.525391 3.19512 0.525391 4.06727V5.77398ZM3.85039 2.42304H17.1504C17.5913 2.42304 18.0142 2.59627 18.326 2.90462C18.6377 3.21298 18.8129 3.63119 18.8129 4.06727V5.284L10.5004 9.71027L2.18789 5.284V4.06727C2.18789 3.63119 2.36305 3.21298 2.67483 2.90462C2.9866 2.59627 3.40947 2.42304 3.85039 2.42304ZM2.18789 7.15185L10.1064 11.3677C10.2275 11.4321 10.3629 11.4659 10.5004 11.4659C10.6379 11.4659 10.7733 11.4321 10.8944 11.3677L18.8129 7.15185V13.9327C18.8129 14.3687 18.6377 14.7869 18.326 15.0953C18.0142 15.4037 17.5913 15.5769 17.1504 15.5769H3.85039C3.40947 15.5769 2.9866 15.4037 2.67483 15.0953C2.36305 14.7869 2.18789 14.3687 2.18789 13.9327V7.15185Z" fill="white"/></svg>');
          mask-image: url('data:image/svg+xml;utf8,<svg width="21" height="18" viewBox="0 0 21 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.525391 5.77398V13.9327C0.525391 14.8048 0.875702 15.6412 1.49926 16.2579C2.12282 16.8747 2.96855 17.2211 3.85039 17.2211H17.1504C18.0322 17.2211 18.878 16.8747 19.5015 16.2579C20.1251 15.6412 20.4754 14.8048 20.4754 13.9327V4.06727C20.4754 3.19512 20.1251 2.35868 19.5015 1.74198C18.878 1.12527 18.0322 0.778809 17.1504 0.778809H3.85039C2.96855 0.778809 2.12282 1.12527 1.49926 1.74198C0.875702 2.35868 0.525391 3.19512 0.525391 4.06727V5.77398ZM3.85039 2.42304H17.1504C17.5913 2.42304 18.0142 2.59627 18.326 2.90462C18.6377 3.21298 18.8129 3.63119 18.8129 4.06727V5.284L10.5004 9.71027L2.18789 5.284V4.06727C2.18789 3.63119 2.36305 3.21298 2.67483 2.90462C2.9866 2.59627 3.40947 2.42304 3.85039 2.42304ZM2.18789 7.15185L10.1064 11.3677C10.2275 11.4321 10.3629 11.4659 10.5004 11.4659C10.6379 11.4659 10.7733 11.4321 10.8944 11.3677L18.8129 7.15185V13.9327C18.8129 14.3687 18.6377 14.7869 18.326 15.0953C18.0142 15.4037 17.5913 15.5769 17.1504 15.5769H3.85039C3.40947 15.5769 2.9866 15.4037 2.67483 15.0953C2.36305 14.7869 2.18789 14.3687 2.18789 13.9327V7.15185Z" fill="white"/></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  margin-right: 0.5rem;
}

.footer {
  background-color: #E1B33F;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 3rem;
  }
}

.footer__container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-top: 11.875rem;
}
@media screen and (min-width: 768px) {
  .footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-left: 14.9375rem;
    padding-top: 9.25rem;
  }
}

.footer__inner {
  position: relative;
}

.footer__inner::before {
  content: "";
  display: inline-block;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/common/footerSP.svg);
  width: 17.5rem;
  height: 19.5625rem;
  top: -6.375rem;
  left: -4.875rem;
}
@media screen and (min-width: 768px) {
  .footer__inner::before {
    background-image: url(../images/common/footer.svg);
    width: 28.5625rem;
    height: 31.5rem;
    top: -7.5rem;
    left: -9.5rem;
  }
}

.footer__btn {
  padding-inline: 2.5rem;
  margin-top: 1.5rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .footer__btn {
    display: none;
  }
}

.footer__copy {
  margin-top: 2.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    margin-top: 2.5rem;
    letter-spacing: 0.0625rem;
    margin-left: 0.25rem;
  }
}

.footer__copy small {
  color: #FFFFFF;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.1428571429;
  font-family: "Lato", serif;
  padding-left: 0.1875rem;
}

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

/* Safari自動リンク防止用スタイル */
.no-link {
  text-decoration: none;
  color: inherit;
  pointer-events: none;
  -webkit-text-decoration: none;
}

.tel-link {
  text-decoration: none;
  color: inherit;
}

/* メールアドレスの下線を消す */
.company__mail {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.list {
  width: 100%;
  max-width: 21.5625rem;
  background-color: #FFFFFF;
  padding-inline: 1.375rem;
  padding-block: 1.4375rem 1.5625rem;
  border-radius: 0.625rem;
  color: #E1B33F;
}
@media screen and (min-width: 768px) {
  .list {
    max-width: 32.5rem;
    padding-inline: 2.5625rem 3.3125rem;
    padding-block: 2.8125rem;
  }
}

.list__hour {
  display: block;
  border-collapse: collapse;
  font-family: "Noto Sans JP", serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4166666667;
}
@media screen and (min-width: 768px) {
  .list__hour {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.list__hour th, .list__hour td {
  text-align: center;
  border-bottom: 1px solid #E1B33F;
  padding-inline: 0.5rem;
}
@media screen and (min-width: 768px) {
  .list__hour th, .list__hour td {
    padding-inline: 0.75rem;
  }
}

.list__hour th {
  padding-bottom: 0.4375rem;
  white-space: nowrap;
}

.list__hour td {
  padding-block: 0.4375rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .list__hour td {
    padding-block: 1rem 0.4375rem;
  }
}

.list__hour th:first-child,
.list__hour td:first-child {
  padding-left: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .list__hour th:first-child,
  .list__hour td:first-child {
    white-space: nowrap;
    padding-left: 0.5rem;
    padding-right: 0;
  }
}

.list__hour th:last-child,
.list__hour td:last-child {
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .list__hour th:last-child,
  .list__hour td:last-child {
    padding-right: 0.5rem;
  }
}

.list__text {
  font-family: "Noto Sans JP", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1428571429;
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .list__text {
    padding-top: 1.5rem;
    padding-left: 0.5rem;
  }
}

.company {
  color: #FFFFFF;
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .company {
    margin-top: 2.875rem;
  }
}

.company__head {
  font-family: "Lato", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1666666667;
}
@media screen and (min-width: 768px) {
  .company__head {
    white-space: nowrap;
  }
}

.company__address {
  display: -ms-grid;
  display: grid;
  margin-top: 0.6875rem;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .company__address {
    margin-top: 0.5rem;
  }
}

.company__content {
  font-family: "Noto Sans JP", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1428571429;
}

.company a {
  color: #FFFFFF;
}

.company__tel, .company__mail {
  margin-top: 0.5rem;
}

/*トップへ戻る*/
.pagetop {
  position: fixed;
  bottom: 11rem;
  right: 1.1875rem;
  z-index: 99;
  width: 3rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .pagetop {
    width: 3.625rem;
    bottom: 3rem;
    right: 7.5rem;
  }
}

.pagetop.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pagetop__link {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagetop__link img {
  width: 100%;
  height: auto;
}

.section-footer {
  margin-top: 7.8125rem;
}
@media screen and (min-width: 768px) {
  .section-footer {
    margin-top: 8.75rem;
  }
}

.contact-page-footer {
  margin-top: 6.9375rem;
}
@media screen and (min-width: 768px) {
  .contact-page-footer {
    margin-top: 10.375rem;
  }
}

.Thanks-page-footer {
  margin-top: 7.875rem;
}
@media screen and (min-width: 768px) {
  .Thanks-page-footer {
    margin-top: 6.25rem;
  }
}

.common__title {
  font-family: "Noto Sans JP", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3333333333;
}

.common__text {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.common__container {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
  width: 100%;
}

.common__image {
  aspect-ratio: 345/230;
  border-radius: 0.625rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .common__image {
    aspect-ratio: 580/386;
    border-radius: 1.25rem;
    margin-left: 0;
    max-width: 36.25rem;
  }
}

/*パンくずリスト*/
.pankuzu span {
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  white-space: normal; /* 通常の折り返しを有効にする */
  word-break: break-word; /* 自然な位置で単語を折り返す */
  overflow-wrap: break-word; /* 単語の途中で折り返す */
  max-width: 100%; /* 画面幅に収まるように */
}
@media screen and (min-width: 768px) {
  .pankuzu span {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.pankuzu span:has(a)::after {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  background-image: url(../images/under/pankuzu.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 0.5625rem;
  height: 0.9375rem;
}

.no-entry__page .pankuzu span:has(a)::after {
  background-image: url(../images/under/pankuzuWHITE.svg);
}

.pankuzu__arrow {
  display: inline-block;
  width: 9px;
  height: 15px;
  margin-left: 0.4375rem;
  margin-top: 0.3125rem;
}

.pankuzu .post {
  color: #A5A5A5;
}

.pankuzu-item {
  padding-inline: 0.5rem 1.0625rem;
  color: #A5A5A5;
}

.home {
  color: #A5A5A5;
  padding-left: 0;
}

.pankuzu .current-item {
  display: inline;
  color: #363636;
  background-color: #FCFAF3;
  border: none;
  font-family: "Noto Sans JP", serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7142857143;
  white-space: normal; /* 通常の折り返しを有効にする */
  word-break: break-word; /* 自然な位置で単語を折り返す */
  overflow-wrap: break-word; /* 単語の途中で折り返す */
  max-width: 100%; /* 画面幅に収まるように */
}
@media screen and (min-width: 768px) {
  .pankuzu .current-item {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.current {
  color: #FFFFFF;
  background-color: #E1B33F;
  pointer-events: none;
  text-align: center;
  font-family: "Lato", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.4375rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .current {
    font-size: 1.25rem;
    padding: 0.625rem 0.90625rem;
  }
}

.policy {
  margin-inline: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .policy {
    margin-inline: 5rem;
  }
}

.policy__card {
  display: -ms-grid;
  display: grid;
  gap: 2.5625rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .policy__card {
    -ms-grid-columns: 1fr 2.875rem 1fr 2.875rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.875rem;
  }
}

.policy__card-item {
  padding-block: 2.25rem;
  background-color: #FFFFFF;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(236, 201, 107, 0.3);
          box-shadow: 4px 4px 8px 0px rgba(236, 201, 107, 0.3);
  border-radius: 0.625rem;
  padding-inline: 1.25rem;
}

.policy__card-image {
  width: 100%;
  overflow: hidden;
  margin-inline: auto;
  max-width: 11.875rem;
  border-radius: 50%;
}

.policy__card-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 190/190;
}

.policy__card-title {
  background-color: #E1B33F;
  width: 10.125rem;
  border-radius: 0.3125rem;
  color: #FFFFFF;
  margin-inline: auto;
  padding-block: 0.25rem;
  text-align: center;
  margin-top: 1.4375rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4375;
}
@media screen and (min-width: 768px) {
  .policy__card-title {
    padding: 0.25rem 0.875rem;
  }
}

.policy__text {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
  margin-top: 1.75rem;
}

.access {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .access {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 65rem;
    margin-inline: auto;
  }
}

.access__info {
  margin-top: 0.625rem;
  display: -ms-grid;
  display: grid;
  gap: 0.5rem;
}

.access__image {
  aspect-ratio: 344/239;
  border-radius: 0.625rem;
  width: 100%;
  overflow: hidden;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .access__image {
    aspect-ratio: 843/356;
    max-width: 52.6875rem;
    border-radius: 1.25rem;
    margin-left: 0;
    width: 81.0576923077%;
  }
}

.access__map {
  aspect-ratio: 375/241;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .access__map {
    aspect-ratio: 600/386;
    width: 57.6923076923%;
    position: absolute;
    top: 9.1875rem;
    left: 42.3076923077%;
    margin-top: 0;
  }
}

.access__map iframe {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .access__map iframe {
    border-radius: 1.25rem;
  }
}

.access__content {
  margin-top: 2.875rem;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .access__content {
    margin-top: 2.625rem;
  }
}

.access__title {
  font-family: "Lato", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1666666667;
}

.access__info-item {
  font-family: "Noto Sans JP", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1428571429;
}

.access__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.tab {
  border: 1px solid #E1B33F;
  border-radius: 1.25rem;
  padding: 0.125rem 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #E1B33F;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.1666666667;
}

.news-item {
  display: -ms-grid;
  display: grid;
  background-color: #FFFFFF;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 3;
  grid-row: span 3;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .news-item {
    padding-bottom: 1.25rem;
  }
}

.news-item__image {
  aspect-ratio: 320/208;
  border-radius: 0.3125rem 0.3125rem 0 0;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .news-item__image {
    aspect-ratio: 284/185;
    max-width: 17.75rem;
  }
}

.news-item__image img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 1.5s ease;
  transition: -webkit-transform 1.5s ease;
  transition: transform 1.5s ease;
  transition: transform 1.5s ease, -webkit-transform 1.5s ease;
}

.news-item__title {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4375;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.news-item__text {
  font-family: "Noto Sans JP", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2142857143;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 0.4375rem;
}

.news-item time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Lato", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1428571429;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-item a.category {
  color: #E1B33F;
}

.news-item:hover .news-item__image img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  opacity: 1;
}

@media (any-hover: hover) {
  .news-item:hover {
    opacity: 1;
  }
}
.news-item__title,
.news-item__text {
  padding-inline: 1rem;
}

.category {
  font-family: "Noto Sans JP", serif;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.2;
  border: 1px solid #E1B33F;
  border-radius: 1.25rem;
  color: #E1B33F;
  padding-inline: 0.5rem;
  background-color: #FFFFFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}

.category--new {
  background-color: #E1B33F;
  color: #FFFFFF;
  font-family: "Lato", serif;
}

.category a {
  color: #E1B33F;
}

/*paginationスタイル*/
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 4.25rem;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    margin-top: 5.0625rem;
  }
}

.wp-pagenavi > * + * {
  margin-left: 2.25rem;
}

.wp-pagenavi a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1.75rem;
  height: 1.75rem;
  font-family: "Lato", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  color: #E1B33F;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi a {
    font-size: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}

.pagination__item-image {
  width: 0.625rem;
  height: 0.875rem;
}

.Pagination-Item-Link.isActive {
  pointer-events: none;
  background: #111;
  color: #fff;
}

.sidebar {
  display: -ms-grid;
  display: grid;
  gap: 4rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.sidebar__first {
  display: -ms-grid;
  display: grid;
  gap: 1.625rem;
}

.sidebar__first-content {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}

.sidebar__first-content .news-item__title {
  white-space: nowrap;
  display: block;
}

.sidebar__second {
  display: -ms-grid;
  display: grid;
  gap: 1.625rem;
}

.sidebar__three-content {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  margin-top: 1.125rem;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .sidebar__three-content {
    margin-top: 1.625rem;
    margin-left: 0.5rem;
  }
}

.sidebar__three-item {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1875;
  color: #363636;
}

.sideber__title {
  font-size: 1.5rem;
  line-height: 1.4166666667;
}

summary::marker {
  color: #E1B33F;
}

.year-title {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1875;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.year-title:hover {
  opacity: 0.8;
}

.month-list a {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.1428571429;
}

.month-list li:not(:first-child) {
  margin-top: 0.25rem;
}

.month-list {
  margin-left: 1.625rem;
}

.archive {
  display: -ms-grid;
  display: grid;
  gap: 1.625rem;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.js-month-list {
  -webkit-animation: fadeIn 0.5s ease infinite;
          animation: fadeIn 0.5s ease infinite;
}

.sidebar .news-item__title {
  padding-inline: 0;
}

.pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .pagenavi {
    width: 21.375rem;
  }
}

.pagenavi__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pagenavi__item a,
.pagenavi__item span {
  font-family: "Lato", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  color: #E1B33F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.pagenavi__item span {
  font-family: "Noto Sans JP", serif;
}

.pagenavi__prev .pagination__item-image {
  width: 4.8125rem;
  height: 1rem;
}

.pagenavi__next .pagination__item-image {
  width: 3.4375rem;
  height: 1rem;
}

.columns__item-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: 0.125rem;
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .columns__item-tab {
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
    margin-top: 0.625rem;
  }
}

.columns__item-tab time {
  font-family: "Noto Sans JP", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .columns__item-tab time {
    line-height: 1.7142857143;
  }
}

.columns__image {
  aspect-ratio: 345/225;
  border-radius: 0.3125rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .columns__image {
    aspect-ratio: 344/224;
    max-width: 21.5rem;
  }
}

.columns__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  border-radius: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .columns__image img {
    width: 100%;
    color: #E1B33F;
  }
}

.columns__content {
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .columns__content {
    margin-top: 0;
    margin-left: 2.5rem;
    width: 158.5365853659%;
  }
}

.columns__title {
  font-family: "Noto Sans JP", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4166666667;
  color: #E1B33F;
}
@media screen and (min-width: 768px) {
  .columns__title {
    background: #E1B33F;
    color: #FFFFFF;
    padding-left: 1rem;
    padding-block: 0.375rem;
  }
}

.columns__content p {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.4375rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 任意の行数を指定 */
}
@media screen and (min-width: 768px) {
  .columns__content p {
    margin-top: 0.5rem;
    -webkit-line-clamp: 2; /* 任意の行数を指定 */
  }
}

.columns__btn {
  margin-top: 1.5625rem;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .columns__btn {
    margin-top: 2.625rem;
  }
}

.columns__item-tab p {
  font-family: "Noto Sans JP", serif;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.2;
  border: 1px solid #E1B33F;
  border-radius: 1.25rem;
  color: #E1B33F;
  padding-inline: 0.5rem;
  background-color: #FFFFFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0.25rem;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .columns__item-tab p {
    font-size: 0.875rem;
    line-height: 1.1428571429;
    padding: 0.125rem 1.5rem;
    margin-left: 0.125rem;
  }
}

.column-list__item {
  margin-top: 2.5rem;
}

.column-list__item-title {
  font-family: "Noto Sans JP", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4166666667;
  color: #E1B33F;
}

.column-list__item-text {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1.5rem;
}

.Form-Items {
  width: 100%;
  display: -ms-grid;
  display: grid;
  gap: 1.625rem;
  margin-inline: auto;
  overflow: hidden;
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .Form-Items {
    gap: 1.125rem;
    width: 43.75rem;
  }
}

.Form-Item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .Form-Item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 2.5rem;
    gap: 4.0625rem;
    width: 43.75rem;
  }
}

.Form-Item-Label {
  color: #363636;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .Form-Item-Label {
    width: 8.125rem;
  }
}

.Form-Item input {
  color: #363636;
  padding-block: 0.6875rem;
  padding-left: 1.5rem;
  border-radius: 0.3125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .Form-Item input {
    min-width: 31.5625rem;
  }
}

.Form-Item input::-webkit-input-placeholder {
  color: #CACACA;
}

.Form-Item input::-moz-placeholder {
  color: #CACACA;
}

.Form-Item input:-ms-input-placeholder {
  color: #CACACA;
}

.Form-Item input::-ms-input-placeholder {
  color: #CACACA;
}

.Form-Item input::placeholder {
  color: #CACACA;
}

.Form-Item-Label span {
  color: #CB0000;
}

.Form-Item input,
textarea {
  background-color: #FFFFFF;
  border-radius: 0.3125rem;
  padding-block: 0.6875rem;
  padding-left: 1.5rem;
}
@media screen and (min-width: 768px) {
  .Form-Item input,
  textarea {
    min-width: 31.5625rem;
  }
}

.Form-Item-input {
  width: 100%;
  height: 2.875rem;
}
@media screen and (min-width: 768px) {
  .Form-Item-input {
    max-width: 31.25rem;
  }
}

textarea {
  height: 13.5625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  textarea {
    max-width: 31.25rem;
    height: 18.75rem;
  }
}

.Form-Item.form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .Form-Item.form__radio {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.0625rem;
    margin-top: 0.625rem 0;
  }
}

.form__radio input[type=radio] {
  opacity: 0;
  position: absolute;
}

.form__radio-mark {
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  border: 1px solid #E1B33F;
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
}

.form__radio-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0.375rem;
  height: 0.375rem;
  background: #E1B33F;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.form__radio input[type=radio]:checked + .form__radio-mark::after {
  opacity: 1;
}

.form__radio:hover .form__radio-mark {
  color: #E1B33F;
}

div.wpcf7 .wpcf7-spinner {
  display: none;
}

.wpcf7-submit {
  color: #FFFFFF;
}

.wpcf7-submit:hover {
  color: #E1B33F;
}

.Form-Item textarea {
  height: 13.5625rem;
}
@media screen and (min-width: 768px) {
  .Form-Item textarea {
    height: 18.75rem;
  }
}

.ja {
  font-family: "Noto Sans JP", serif;
}

.taxonomy-column-category {
  display: none;
}

.taxonomy__pagination .wp-pagenavi {
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .taxonomy__pagination .wp-pagenavi {
    margin-top: 1.625rem;
  }
}

.section-fv {
  margin-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .section-fv {
    margin-top: 9.625rem;
  }
}

.section-banner {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .section-banner {
    margin-top: 7.5rem;
  }
}

.cat-item {
  list-style: none;
  font-family: "Noto Sans JP", serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.1428571429;
  color: #E1B33F;
  background-color: #FFFFFF;
  border: 1px solid #E1B33F;
  border-radius: 1.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.125rem 1.5rem;
}

.cat-item a {
  color: #E1B33F;
}

.sidebar__three .cat-item {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4375;
  border: none;
  background-color: #FCFAF3;
}

.sidebar__three .cat-item a {
  color: #363636;
}

.category-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.news-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 0.25rem;
  margin-top: 0.5rem;
  padding-inline: 1rem;
}

.under-page {
  padding-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .under-page {
    padding-top: 9.625rem;
  }
}

.under-page__first {
  position: relative;
  padding-top: 5.9375rem;
}
@media screen and (min-width: 768px) {
  .under-page__first {
    padding-top: 9.5rem;
  }
}

.under-page__first::before {
  content: "";
  background-image: url(../images/common/irodentalclinic..svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .under-page__first::before {
    aspect-ratio: 978/168;
    width: 67.9166666667%;
    top: 5.9375rem;
    left: 28.875rem;
  }
}

.under-page__catch {
  text-transform: capitalize;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .under-page__catch {
    margin-top: 2.5rem;
  }
}

.under-page__banner {
  margin-top: 2.875rem;
}
@media screen and (min-width: 768px) {
  .under-page__banner {
    margin-top: 7.5rem;
  }
}

.under-page__pankuzu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .under-page__pankuzu {
    margin-top: 0.375rem;
  }
}

.about-page__inner {
  position: relative;
}
.about-page__inner::before {
  content: "";
  background-image: url(../images/common/teeth.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  aspect-ratio: 298/329;
  top: -4.125rem;
  width: 79.4666666667%;
  left: -4.625rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .about-page__inner::before {
    max-width: 43.5rem;
    max-height: 48.125rem;
    left: -17.0625rem;
    top: -6.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .about-page__wrapper {
    margin-inline: 5rem;
  }
}

.about-page__first-container {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .about-page__first-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 65rem;
    margin-top: 2.5rem;
    gap: 3rem;
  }
}

.about-page__first-content {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .about-page__first-content {
    margin-bottom: 1.75rem;
    width: 39.6153846154%;
  }
}

.about-page__first-image {
  aspect-ratio: 345/230;
  border-radius: 0.625rem;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .about-page__first-image {
    aspect-ratio: 580/386;
    border-radius: 1.25rem;
    margin-left: 0;
    width: 36.25rem;
    margin-top: 3.625rem;
  }
}

.about-page__text-item {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .about-page__text-item {
    margin-top: 2.5rem;
  }
}

.about-page__text {
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .about-page__text {
    line-height: 1.5;
  }
}

.about-page__second {
  margin-top: 5.375rem;
}
@media screen and (min-width: 768px) {
  .about-page__second {
    margin-top: 7.875rem;
  }
}

.about-page__second-container {
  margin-top: 2.5rem;
}

.about-page__three {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .about-page__three {
    margin-top: 7.5rem;
    padding-bottom: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .about-page__three-container {
    margin-inline: 5rem;
    max-width: 65rem;
  }
}

.medical-page__card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.3125rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0.9375rem;
  -webkit-column-gap: 1.3125rem;
     -moz-column-gap: 1.3125rem;
          column-gap: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .medical-page__card {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}

.medical-page__card-item {
  padding-block: 0.625rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .medical-page__card-item {
    padding-block: 0.9375rem 1.5rem;
  }
}

.medical-page__card-image {
  aspect-ratio: 104/104;
  max-width: 6.5rem;
}
@media screen and (min-width: 768px) {
  .medical-page__card-image {
    aspect-ratio: 164/164;
    max-width: 10.25rem;
  }
}

.medical-page__card-title {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .medical-page__card-title {
    margin-top: 0.875rem;
  }
}

.medical-page__first-container {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .medical-page__first-container {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .medical-page__wrapper {
    margin-inline: 5rem;
  }
}

.medical-page__second-container {
  margin-top: 3.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}
@media screen and (min-width: 768px) {
  .medical-page__second-container {
    margin-top: 5.125rem;
    -ms-flex-line-pack: start;
        align-content: start;
  }
}

@media screen and (min-width: 768px) {
  .medical-page__second-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 65rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 3rem;
  }
}

@media screen and (min-width: 768px) {
  .medical-page__second-item {
    max-width: 39.6153846154%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.medical-page__second-text {
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .medical-page__second-text {
    margin-top: 2.5rem;
    margin-bottom: 0;
  }
}

.medical-page__second-text:first-child {
  margin-top: 1.5625rem;
}

.medical-page__second-image {
  margin-top: 1.5rem;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .medical-page__second-image {
    margin-top: 0;
    max-width: 55.7692307692%;
    margin-top: 0;
    border-radius: 1.25rem;
  }
}

.medical-page__second-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
  aspect-ratio: 345/230;
}
@media screen and (min-width: 768px) {
  .medical-page__second-image img {
    aspect-ratio: 580/386;
    border-radius: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .medical-page__second-item-title {
    margin-top: 0.25rem;
  }
}

.news-page__container {
  display: -ms-grid;
  display: grid;
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .news-page__container {
    -ms-grid-columns: 75% 25%;
    grid-template-columns: 75% 25%;
    margin-top: 2.5rem;
  }
}

.news-page__left-container {
  padding-inline: 0.8125rem;
  display: -ms-grid;
  display: grid;
  gap: 2.9375rem;
}
@media screen and (min-width: 768px) {
  .news-page__left-container {
    -ms-grid-columns: 1fr 1.5rem 1fr 1.5rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    padding-inline: 0;
    gap: 3.625rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
}

.news-page__pagination {
  margin-inline: auto;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .news-page__pagination {
    margin-top: 5rem;
  }
}

.news-page__right {
  margin-top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .news-page__right {
    margin-left: 3.75rem;
    margin-top: 0.375rem;
  }
}

.single-page {
  padding-top: 6.125rem;
}
@media screen and (min-width: 768px) {
  .single-page {
    padding-top: 9.375rem;
  }
}

.single-page__container {
  display: -ms-grid;
  display: grid;
  margin-top: 1.375rem;
  margin-inline: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .single-page__container {
    margin-top: 3.125rem;
    -ms-grid-columns: 65.2985074627% 11.25rem 17.9104477612%;
    grid-template-columns: 65.2985074627% 17.9104477612%;
    gap: 11.25rem;
    max-width: 67rem;
    margin-inline: 12.5rem 10.5rem;
  }
}

.single-page__image {
  aspect-ratio: 345/222;
  border-radius: 0.3125rem 0.3125rem 0 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .single-page__image {
    aspect-ratio: 700/450;
    max-width: 43.75rem;
  }
}

.single-page__left-first {
  margin-top: 3rem;
}

.single-page__tab {
  margin-left: 0.25rem;
}

.single-page__text p {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.single-page__text {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .single-page__text {
    margin-top: 2.5rem;
  }
}

.single-page__text h2 {
  position: relative;
  font-family: "Noto Sans JP", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-left: 1rem;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .single-page__text h2 {
    font-size: 1.5rem;
    line-height: 1;
    margin-top: 0.8125rem;
  }
}

.single-page__text h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1rem;
  width: 0.5rem;
  height: 1.75rem;
  background: #E1B33F;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .single-page__text h2::before {
    width: 0.625rem;
    height: 2rem;
    top: -0.1875rem;
  }
}

.single-page__text h3 {
  font-family: "Noto Sans JP", serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3333333333;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .single-page__text h3 {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-top: 1.5rem;
  }
}

.single-page__text p {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.single-page__text a {
  color: #1093DD;
  text-decoration: underline;
}

.single-page__right {
  margin-top: 7.25rem;
}
@media screen and (min-width: 768px) {
  .single-page__right {
    margin-top: 0.5rem;
  }
}

.single-page__pagenavi {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .single-page__pagenavi {
    margin-left: 11.125rem;
  }
}

.single-page__time {
  font-family: Lato;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.1666666667;
  color: #E1B33F;
  padding-left: 0.375rem;
}
@media screen and (min-width: 768px) {
  .single-page__time {
    font-size: 0.875rem;
    line-height: 1.1428571429;
  }
}

.wp-block-list {
  list-style: none; /* デフォルトの数字を削除 */
  padding-left: 0; /* 余白調整 */
  margin-top: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .wp-block-list {
    margin-top: 0.9375rem;
  }
}

.wp-block-list li {
  counter-increment: list-counter; /* カウンターを増やす */
  position: relative;
  padding-left: 0.9375rem; /* 番号のためのスペースを確保 */
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 0.25rem;
}

.wp-block-list li::before {
  content: counter(list-counter) "）"; /* 数字＋括弧 */
  position: absolute;
  left: 0;
  font-weight: 400; /* 強調 */
}

.single-page__banner {
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .single-page__banner {
    margin-top: 6.25rem;
  }
}

.column-page__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1.125rem;
  gap: 1rem;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .column-page__tab {
    margin-top: 2.5rem;
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
  }
}

.column-page__pagenavi .wp-pagenavi {
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .column-page__pagenavi .wp-pagenavi {
    margin-top: 5rem;
  }
}

.column-page__content {
  display: -ms-grid;
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .column-page__content {
    gap: 3.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .column-page__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .column-page__wrapper {
    padding-inline: 5rem;
  }
}

.column-page__banner {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .column-page__banner {
    margin-top: 7.5rem;
  }
}

.single-column__list {
  margin-top: 2.5rem;
}

.single-column__content {
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .single-column__content {
    margin-top: 3.25rem;
    margin-inline: 10.625rem;
  }
}

.single-column .under-page__pankuzu {
  margin-top: 0.125rem;
}
@media screen and (min-width: 768px) {
  .single-column .under-page__pankuzu {
    margin-top: 0;
  }
}

.single-column__pagenavi {
  margin-top: 3.5rem;
}

.single-column__banner {
  margin-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .single-column__banner {
    margin-top: 7.5rem;
  }
}

.single-column__text {
  display: inline-block;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .single-column__text {
    margin-top: 3.125rem;
  }
}

.single-column__item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 0.3125rem;
  aspect-ratio: 345/222;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 0.3125rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .single-column__item img {
    aspect-ratio: 700/450;
    margin-top: 2.5rem;
  }
}

.single-column__tab {
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .single-column__tab {
    margin-top: 1.5rem;
    -webkit-column-gap: 1.5rem;
       -moz-column-gap: 1.5rem;
            column-gap: 1.5rem;
  }
}

.single-column__title {
  padding-block: 0.375rem;
  padding-left: 1rem;
  font-family: "Noto Sans JP", serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4166666667;
  color: #FFFFFF;
  background-color: #E1B33F;
}
@media screen and (min-width: 768px) {
  .single-column__title {
    padding-block: 0.5rem;
  }
}

.single-column__item {
  margin-top: -0.625rem;
}

.single-column__item h2 {
  margin-top: 2.5rem;
  color: #E1B33F;
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.4166666667;
}

.single-column__item p {
  margin-top: 1.5625rem;
}

.single-column__item-text {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .single-column__item-text {
    margin-top: 2.5rem;
  }
}

.contact-page-items {
  margin-top: 1.5625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .contact-page-items {
    margin-top: 1.875rem;
  }
}

.contact-page__button {
  margin-inline: auto;
  margin-top: 2.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .contact-page__button {
    margin-top: 5rem;
  }
}

.contact-page__footer-btn {
  display: none;
}
@media screen and (min-width: 768px) {
  .contact-page__footer-btn {
    padding-inline: 2.5rem;
    margin: 1.5rem auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact-btn {
  position: relative;
  font-family: "Noto Sans JP", serif;
  display: inline-block;
  -webkit-box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.1294117647);
          box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.1294117647);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2.5rem;
  width: 10.5rem;
  z-index: 1;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.contact-btn::after {
  content: "";
  background-image: url(../images/common/btnYELLOW.svg);
  background-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  translate: 0 -50%;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: background-image 0.5s;
  transition: background-image 0.5s;
}

.contact-btn--pre::after {
  right: 3.5rem;
}

.contact-btn input {
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF;
  display: inline;
  padding-right: 0.5rem;
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding-block: 0.875rem;
  padding-inline: 2.5rem 4rem;
  background-color: #E1B33F;
  border-radius: 2.5rem;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

.contact-page__btn:hover .contact-btn::after {
  background-image: url(../images/common/btnYELLOW-h.svg);
}

.contact-page__btn:hover input {
  color: #E1B33F;
  background-color: #FFFFFF;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-form-control {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.5rem;
  }
}

.wpcf7-list-item-label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

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

/*確認画面と完了画面を非表示*/
.confirm_area {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.confirmation-page__items {
  margin-top: 1.25rem;
  padding-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .confirmation-page__items {
    margin-top: 1.75rem;
  }
}

.confirmation-page__form-items {
  gap: 2.9375rem;
}
@media screen and (min-width: 768px) {
  .confirmation-page__form-items {
    gap: 2.5rem;
  }
}

.confirmation-page__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  gap: 1.375rem;
  margin-top: 2.5625rem;
}
@media screen and (min-width: 768px) {
  .confirmation-page__btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 5rem;
    margin-top: 2.375rem;
  }
}

.thanks-page {
  padding-top: 6.125rem;
}
@media screen and (min-width: 768px) {
  .thanks-page {
    padding-top: 9.375rem;
  }
}

.thanks-page__title {
  font-family: "Noto Sans JP", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4166666667;
  text-align: center;
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .thanks-page__title {
    font-size: 2rem;
    line-height: 1.4375;
  }
}

.thanks-page__text-item {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .thanks-page__text-item {
    margin-top: 2.5rem;
  }
}

.thanks-page__container {
  text-align: center;
}

.thanks-page__btn {
  margin-top: 3.5rem;
  margin-inline: auto;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .thanks-page__btn {
    margin-top: 2.375rem;
  }
}

.no-entry__page {
  background-color: #E1B33F;
  padding-top: 5.625rem;
  height: 100vh;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .no-entry__page {
    padding-top: 9.375rem;
    height: 100vh;
  }
}

.no-entry__container {
  margin-top: 5rem;
  color: #FFFFFF;
}
@media screen and (min-width: 768px) {
  .no-entry__container {
    margin-top: 2.125rem;
  }
}

.no-entry__image {
  aspect-ratio: 307/127;
  max-width: 19.1875rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .no-entry__image {
    aspect-ratio: 720/276;
    max-width: 45rem;
  }
}

.no-entry__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.no-entry__title {
  font-family: "Noto Sans JP", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4166666667;
  text-align: center;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .no-entry__title {
    font-size: 2rem;
    line-height: 1.4375;
    margin-top: 2.375rem;
  }
}

.no-entry__text {
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .no-entry__text {
    margin-top: 1.5rem;
  }
}

.no-entry__btn {
  margin-top: 3.5rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #FFFFFF;
  font-family: "Noto Sans JP", serif;
}
@media screen and (min-width: 768px) {
  .no-entry__btn {
    margin-top: 2.5rem;
  }
}

.no-entry__page .pankuzu span {
  color: #FFFFFF;
}

.no-entry__link {
  color: #FFFFFF;
}

.no-entry__hamburger span {
  background-color: #FFFFFF;
}

.no-entry__nav {
  background-color: #E1B33F;
  border: 1px solid #FFFFFF;
}

.no-entry__nav a {
  color: #FFFFFF;
  opacity: 0.8;
}

.no-entry__nav .title::before {
  background-color: #FFFFFF;
}

@media screen and (min-width: 768px) {
  .no-entry__page .under-page__pankuzu {
    margin-top: 0;
  }
}

.no-entry__page .footer {
  display: none;
}