@charset "UTF-8";
/**
 * メディアクエリ
 * @param {string} $mode - max または min
 * @param {number} $width - 設定値
 */
/**
 * メディアクエリ PC
 * @param {number} [$width:$breakpoin] - 設定値
 */
/**
 * メディアクエリ SP
 * @param {number} [$width:$breakpoin] - 設定値
 */
/**
 * メディアクエリによるIE11ハック
 */
/**
 * VW計算
 * @param {string} $property  - プロパティ
 * @param {number} $value - 基準となる値
 * @param {number} $basewidth - 基準となるウィンドウ幅
 * @param {number} [$maxwidth:0] - 拡大を停止するウィンドウ幅
 * @param {number} [$minwidth:0] - 縮小を停止するウィンドウ幅
 */
html {
  scroll-behavior: smooth;
}

#yametoma2026 {
  background-image: url("../img/wall.webp");
  background-size: 100%;
  background-position: center top;
}
#yametoma2026 .yametoma2026__inner {
  margin-inline: auto;
  width: min(100%, 1200px);
}
#yametoma2026 img {
  display: block;
  width: 100%;
}
#yametoma2026 * {
  margin: 0;
  padding: 0;
  margin-block: 0;
  margin-inline: 0;
  line-height: 1.4666666667;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #yametoma2026 * {
    font-size: clamp(0px, 1.25vw, 15px);
  }
}
@media screen and (max-width: 767px) {
  #yametoma2026 * {
    font-size: clamp(0px, 2.1333333333vw, 16px) !important;
    line-height: 1.7 !important;
  }
}
#yametoma2026 a {
  color: #2f6fb3;
  text-decoration: underline;
  transition: all 0.3s ease;
}
#yametoma2026 a:hover {
  transition: all 0.3s ease;
  opacity: 0.5;
}
#yametoma2026 .button-shadow {
  display: block;
  margin-inline: auto;
  position: relative;
  z-index: 0;
}
#yametoma2026 .button-shadow::after {
  content: "";
  width: 99%;
  height: 99%;
  display: block;
  box-shadow: clamp(0px, 0.9333333333vw, 7px) clamp(0px, 0.9333333333vw, 7px) clamp(0px, 0.9333333333vw, 7px) 0 rgba(0, 0, 0, 0.5);
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#yametoma2026 .animation.animation--swing {
  transform-origin: bottom center;
  -webkit-animation: handWave 8s ease-in-out infinite;
  animation: handWave 8s ease-in-out infinite;
}
@-webkit-keyframes handWave {
  /* ===== フリフリ① ===== */
  0% {
    transform: rotate(0deg);
  }
  3% {
    transform: rotate(-6deg);
  }
  6% {
    transform: rotate(6deg);
  }
  9% {
    transform: rotate(-6deg);
  }
  12% {
    transform: rotate(0deg);
  }
  /* ===== 長め停止 ===== */
  12%, 50% {
    transform: rotate(0deg);
  }
  /* ===== フリフリ② ===== */
  53% {
    transform: rotate(-6deg);
  }
  56% {
    transform: rotate(6deg);
  }
  59% {
    transform: rotate(-6deg);
  }
  62% {
    transform: rotate(0deg);
  }
  /* ===== 長め停止 ===== */
  62%, 100% {
    transform: rotate(0deg);
  }
}
@keyframes handWave {
  /* ===== フリフリ① ===== */
  0% {
    transform: rotate(0deg);
  }
  3% {
    transform: rotate(-6deg);
  }
  6% {
    transform: rotate(6deg);
  }
  9% {
    transform: rotate(-6deg);
  }
  12% {
    transform: rotate(0deg);
  }
  /* ===== 長め停止 ===== */
  12%, 50% {
    transform: rotate(0deg);
  }
  /* ===== フリフリ② ===== */
  53% {
    transform: rotate(-6deg);
  }
  56% {
    transform: rotate(6deg);
  }
  59% {
    transform: rotate(-6deg);
  }
  62% {
    transform: rotate(0deg);
  }
  /* ===== 長め停止 ===== */
  62%, 100% {
    transform: rotate(0deg);
  }
}
#yametoma2026 .js--fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(clamp(0px, 12.5vw, 150px));
}
#yametoma2026 .js--fade.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#yametoma2026 .js--shine {
  position: relative;
  display: inline-block;
}
#yametoma2026 .js--shine img {
  display: block;
  width: 100%;
  height: auto;
}
#yametoma2026 .js--shine::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0) 65%);
  transform: translateX(-160%) rotate(8deg);
  -webkit-animation: shineMove 5s ease-in-out infinite;
  animation: shineMove 5s ease-in-out infinite;
  filter: blur(8px);
  pointer-events: none;
}
@-webkit-keyframes shineMove {
  0% {
    transform: translateX(-160%) rotate(8deg);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  50% {
    transform: translateX(160%) rotate(8deg);
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  100% {
    transform: translateX(160%) rotate(8deg);
    opacity: 0;
  }
}
@keyframes shineMove {
  0% {
    transform: translateX(-160%) rotate(8deg);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  50% {
    transform: translateX(160%) rotate(8deg);
    opacity: 1;
  }
  51% {
    opacity: 0;
  }
  100% {
    transform: translateX(160%) rotate(8deg);
    opacity: 0;
  }
}
#yametoma2026 .wall-cover {
  background-repeat: repeat-y;
  background-size: 100%;
  background-position: center top;
}
#yametoma2026 .wall-cover.wall-cover--early {
  background-image: url("../img/wall-cover--early.png");
}
#yametoma2026 .wall-cover.wall-cover--late {
  background-image: url("../img/wall-cover--late.png");
}
#yametoma2026 .terms .terms__inner p + p {
  margin-top: 1.5em;
}
#yametoma2026 .terms .terms__dl dt {
  margin-top: 1.5em;
}
#yametoma2026 .terms .terms__list li {
  list-style: disc;
  margin-left: 1.5em;
}
#yametoma2026 .terms .terms__list--decimal li {
  list-style: decimal;
}
#yametoma2026 .terms .terms__list--line li {
  list-style-type: "─";
}
#yametoma2026 .imagebody {
  position: relative;
}
#yametoma2026 .imagebody .imagebody__image {
  position: relative;
}
#yametoma2026 .imagebody .imagebody__text {
  position: absolute;
  left: 0;
  top: 0;
}
#yametoma2026 .js--confetti canvas {
  height: 110%;
  width: 100%;
  position: absolute;
  top: -10%;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
#yametoma2026 .kv {
  background-size: cover;
  background-position: center top;
}
#yametoma2026 .kv .kv__inner {
  width: 100%;
  height: clamp(0px, 37.8333333333vw, 454px);
  padding-top: clamp(0px, 7.3333333333vw, 88px);
  overflow: hidden;
  position: relative;
}
#yametoma2026 .kv .kv__title {
  width: clamp(0px, 90.5%, 1086px);
  margin-inline: auto;
}
#yametoma2026 .kv .kv__hr {
  border: none;
  margin: 0;
  width: 100%;
  height: clamp(0px, 5.8333333333vw, 70px);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center top;
}
#yametoma2026 .kv.kv--early {
  background-image: url("../img/kv__bg--early.webp");
}
#yametoma2026 .kv.kv--early .kv__hr {
  background-image: url("../img/kv__hr--early.webp");
}
#yametoma2026 .kv.kv--late {
  position: relative;
  height: clamp(0px, 46.1666666667vw, 554px);
  background-image: url("../img/kv__bg--late.webp");
}
#yametoma2026 .kv.kv--late .kv__inner {
  height: clamp(0px, 40.5vw, 486px);
  background-size: 100% 100%;
}
#yametoma2026 .kv.kv--late .kv__hr {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: clamp(0px, 9.5416666667vw, 114.5px);
  background-image: url("../img/kv__hr--late.webp"), url("../img/kv__hr--early.webp");
  background-size: clamp(0px, 100vw, 1200px), 100% clamp(0px, 5.8333333333vw, 70px);
  background-position: center top, center bottom;
}
#yametoma2026 .pagenav {
  height: clamp(0px, 39.1666666667vw, 470px);
  padding-top: clamp(0px, 4.1666666667vw, 50px);
  padding-bottom: clamp(0px, 5vw, 60px);
}
#yametoma2026 .pagenav .pagenav__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  gap: clamp(0px, 1.5vw, 18px);
}
#yametoma2026 .pagenav .pagenav__item {
  width: clamp(0px, 39.1666666667vw, 470px);
  height: clamp(0px, 29.9166666667vw, 359px);
}
#yametoma2026 .pagenav .pagenav__item a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#yametoma2026 .pagenav .pagenav__item a img {
  display: none;
}
#yametoma2026 .pagenav .pagenav__item--write a {
  background: url("../img/pagenav--write.png") no-repeat;
  background-size: clamp(0px, 40.3333333333vw, 484px);
  background-position: center left clamp(0px, 1.5vw, 18px);
}
#yametoma2026 .pagenav .pagenav__item--eat a {
  background: url("../img/pagenav--eat.png") no-repeat;
  background-size: clamp(0px, 38.125vw, 457.5px);
  background-position: center left clamp(-6px, -0.5vw, -6px);
}
#yametoma2026 .pagenav .pagenav__item--disabled {
  position: relative;
}
#yametoma2026 .pagenav .pagenav__item--disabled a {
  pointer-events: none;
}
#yametoma2026 .pagenav .pagenav__item--disabled::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: clamp(0px, 39.1666666667vw, 470px);
  height: clamp(0px, 16.6666666667vw, 200px);
  background: url("../img/pagenav--disabled.png") no-repeat;
  background-size: 100%;
  background-position: center center;
}
#yametoma2026 .eat .eat__inner {
  border-color: #e7380d;
  border-width: clamp(0px, 2.5vw, 30px);
  border-left-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
}
#yametoma2026 .eat .eat__heading {
  position: relative;
  height: clamp(0px, 11.0833333333vw, 133px);
  background-color: #e7380d;
  display: flex;
  justify-content: center;
  align-items: center;
}
#yametoma2026 .eat .eat__heading-icon {
  aspect-ratio: 1200/212;
  width: clamp(0px, 17.6666666667vw, 212px);
  position: absolute;
  left: clamp(0px, 10.8333333333vw, 130px);
}
#yametoma2026 .eat .eat__heading-title {
  width: clamp(0px, 38.5833333333vw, 463px);
}
#yametoma2026 .eat .eat__heading-image {
  width: clamp(0px, 16.8333333333vw, 202px);
  position: absolute;
  bottom: 0;
  right: clamp(0px, 6.4166666667vw, 77px);
}
#yametoma2026 .eat .eat__body {
  padding-top: clamp(0px, 8.3333333333vw, 100px);
  padding-bottom: clamp(0px, 7.75vw, 93px);
  padding-inline: clamp(0px, 13.9166666667vw, 167px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #yametoma2026 .eat .eat__body {
    padding-inline: clamp(0px, 3.3333333333vw, 40px);
  }
}
#yametoma2026 .eat .eat__period {
  margin-top: clamp(0px, 5.6666666667vw, 68px);
}
#yametoma2026 .eat .eat__howto {
  margin-top: clamp(0px, 4.1666666667vw, 50px);
}
#yametoma2026 .eat .eat__howto .imagebody__text {
  top: clamp(0px, 17.5833333333vw, 211px);
  left: clamp(0px, 47.6666666667vw, 572px);
}
@media screen and (max-width: 767px) {
  #yametoma2026 .eat .eat__howto .imagebody__text {
    left: auto;
    right: clamp(0px, 5.3333333333vw, 40px);
    top: clamp(0px, 20vw, 150px);
  }
}
#yametoma2026 .eat .eat__howto-dl {
  width: clamp(0px, 14.4166666667vw, 173px);
  display: flex;
  flex-flow: column nowrap;
  gap: clamp(0px, 1.5833333333vw, 19px);
}
@media screen and (max-width: 767px) {
  #yametoma2026 .eat .eat__howto-dl {
    width: clamp(0px, 23.0666666667vw, 173px);
  }
}
#yametoma2026 .eat .eat__howto-dl dt {
  width: clamp(0px, 13.9166666667vw, 167px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #yametoma2026 .eat .eat__howto-dl dt {
    width: 100%;
  }
}
#yametoma2026 .eat .eat__application {
  margin-top: clamp(0px, 2.75vw, 33px);
}
#yametoma2026 .eat .eat__application .imagebody__text {
  top: auto;
  bottom: clamp(0px, 5.5833333333vw, 67px);
  width: 100%;
  padding-inline: clamp(0px, 4.1666666667vw, 50px);
}
@media screen and (max-width: 767px) {
  #yametoma2026 .eat .eat__application .imagebody__text {
    padding-inline: clamp(0px, 6.6666666667vw, 50px);
  }
}
#yametoma2026 .eat .note {
  margin-top: clamp(0px, 1.0833333333vw, 13px);
  margin-left: clamp(0px, 0.25vw, 3px);
}
#yametoma2026 .eat .eat__terms {
  margin-top: clamp(0px, 5.1666666667vw, 62px);
}
#yametoma2026 .eat .eat__terms-lead {
  text-align: center;
  margin-top: clamp(0px, 3.75vw, 45px);
}
#yametoma2026 .eat .eat__terms-detail {
  margin-top: clamp(0px, 0.8333333333vw, 10px);
  margin-inline: auto;
  width: clamp(0px, 65vw, 780px);
  height: clamp(0px, 14vw, 168px);
  background: #fff;
  padding-block: clamp(0px, 1.5vw, 18px);
  padding-inline: clamp(0px, 1.5vw, 18px);
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  #yametoma2026 .eat .eat__terms-detail {
    width: clamp(0px, 86.6666666667vw, 650px);
    height: clamp(0px, 40vw, 300px);
    padding-block: clamp(0px, 2.6666666667vw, 20px);
    padding-inline: clamp(0px, 2.6666666667vw, 20px);
  }
}
#yametoma2026 .eat .eat__qa {
  margin-top: clamp(0px, 6.25vw, 75px);
}
#yametoma2026 .eat .eat__contact {
  margin-top: clamp(0px, 6.25vw, 75px);
}
#yametoma2026 .write .write__inner {
  border-color: #598e35;
  border-width: clamp(0px, 2.5vw, 30px);
  border-left-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  margin-bottom: clamp(0px, 13.3333333333vw, 160px);
}
#yametoma2026 .write .write__heading {
  position: relative;
  height: clamp(0px, 11.0833333333vw, 133px);
  background-color: #598e35;
  display: flex;
  justify-content: center;
  align-items: center;
}
#yametoma2026 .write .write__heading-icon {
  aspect-ratio: 1200/212;
  width: clamp(0px, 17.6666666667vw, 212px);
  position: absolute;
  left: clamp(0px, 10.8333333333vw, 130px);
}
#yametoma2026 .write .write__heading-title {
  width: clamp(0px, 37.2916666667vw, 447.5px);
  margin-right: clamp(0px, 2.25vw, 27px);
}
#yametoma2026 .write .write__heading-image {
  width: clamp(0px, 15.5416666667vw, 186.5px);
  position: absolute;
  bottom: clamp(0px, 1.5vw, 18px);
  right: clamp(0px, 10.5vw, 126px);
}
#yametoma2026 .write .write__body {
  padding-top: clamp(0px, 7.4166666667vw, 89px);
  padding-bottom: clamp(0px, 7.75vw, 93px);
  padding-inline: clamp(0px, 14.1666666667vw, 170px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #yametoma2026 .write .write__body {
    padding-inline: clamp(0px, 3.3333333333vw, 40px);
  }
}
#yametoma2026 .write .write__prize .write__prize--price {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
#yametoma2026 .write .write__prize .write__prize--icon {
  position: absolute;
  right: 0;
  bottom: clamp(-25px, -2.0833333333vw, -25px);
  width: clamp(0px, 19.6666666667vw, 236px);
}
@media screen and (max-width: 767px) {
  #yametoma2026 .write .write__prize .write__prize--icon {
    width: clamp(0px, 26.6666666667vw, 200px);
    bottom: clamp(-15px, -2vw, -15px);
  }
}
#yametoma2026 .write .write__period {
  margin-top: clamp(0px, 4.1666666667vw, 50px);
}
#yametoma2026 .write .write__period .note {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
#yametoma2026 .write .write__howto {
  margin-top: clamp(0px, 4.1666666667vw, 50px);
}
#yametoma2026 .write .write__howto .note {
  text-align: center;
  margin-top: clamp(0px, 2.5vw, 30px);
}
#yametoma2026 .write .write__howto-button {
  margin-top: clamp(0px, 6vw, 72px);
}
#yametoma2026 .write .write__flow {
  margin-top: clamp(0px, 7.5vw, 90px);
}
#yametoma2026 .write .write__flow .tabpanel {
  margin-top: clamp(0px, 3.5vw, 42px);
}
#yametoma2026 .write .write__flow .tabpanel .tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
#yametoma2026 .write .write__flow .tabpanel .tabs label {
  flex: 1;
  height: clamp(0px, 4.5833333333vw, 55px);
  cursor: pointer;
  background-size: 100%;
  background-repeat: no-repeat;
  transition: all 0.3s;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #yametoma2026 .write .write__flow .tabpanel .tabs label {
    height: clamp(0px, 14.6666666667vw, 110px);
  }
}
#yametoma2026 .write .write__flow .tabpanel .tabs .tabs__item {
  background-size: clamp(0px, 33.75vw, 405px);
}
@media screen and (max-width: 767px) {
  #yametoma2026 .write .write__flow .tabpanel .tabs .tabs__item {
    background-size: clamp(0px, 44.5333333333vw, 334px);
  }
}
#yametoma2026 .write .write__flow .tabpanel .tabs .tabs__item--1 {
  background-image: url("../img/tab1__heading-off.png");
  background-position: left top;
}
@media screen and (max-width: 767px) {
  #yametoma2026 .write .write__flow .tabpanel .tabs .tabs__item--1 {
    background-image: url("../img/tab1__heading-off.sp.png");
  }
}
#yametoma2026 .write .write__flow .tabpanel .tabs .tabs__item--2 {
  background-image: url("../img/tab2__heading-off.png");
  background-position: right top;
}
@media screen and (max-width: 767px) {
  #yametoma2026 .write .write__flow .tabpanel .tabs .tabs__item--2 {
    background-image: url("../img/tab2__heading-off.sp.png");
  }
}
#yametoma2026 .write .write__flow .tabpanel input[name=tab_flow] {
  display: none;
}
#yametoma2026 .write .write__flow .tabpanel #tab1:checked ~ .tabs label[for=tab1], #yametoma2026 .write .write__flow .tabpanel #tab2:checked ~ .tabs label[for=tab2] {
  transition: all 0.3s;
}
#yametoma2026 .write .write__flow .tabpanel #tab1:checked ~ .tabs label[for=tab1] {
  background-image: url("../img/tab1__heading-on.png");
}
@media screen and (max-width: 767px) {
  #yametoma2026 .write .write__flow .tabpanel #tab1:checked ~ .tabs label[for=tab1] {
    background-image: url("../img/tab1__heading-on.sp.png");
  }
}
#yametoma2026 .write .write__flow .tabpanel #tab2:checked ~ .tabs label[for=tab2] {
  background-image: url("../img/tab2__heading-on.png");
}
@media screen and (max-width: 767px) {
  #yametoma2026 .write .write__flow .tabpanel #tab2:checked ~ .tabs label[for=tab2] {
    background-image: url("../img/tab2__heading-on.sp.png");
  }
}
#yametoma2026 .write .write__flow .tabpanel .panels {
  margin: 0 auto;
  margin-top: -1px;
}
@media screen and (max-width: 767px) {
  #yametoma2026 .write .write__flow .tabpanel .panels {
    margin-top: -5px;
  }
}
#yametoma2026 .write .write__flow .tabpanel .panels .panel {
  display: none;
}
#yametoma2026 .write .write__flow .tabpanel #tab1:checked ~ .panels #panel1, #yametoma2026 .write .write__flow .tabpanel #tab2:checked ~ .panels #panel2 {
  display: block;
}
#yametoma2026 .write .write__flow .panel__inner {
  background-image: url("../img/tab__bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
  padding-inline: clamp(0px, 4.3333333333vw, 52px);
  padding-top: clamp(0px, 3.4166666667vw, 41px);
  padding-bottom: clamp(0px, 2.6666666667vw, 32px);
}
@media screen and (max-width: 767px) {
  #yametoma2026 .write .write__flow .panel__inner {
    background-image: url("../img/tab__bg.sp.png");
    padding-top: clamp(0px, 4.8vw, 36px);
    padding-bottom: clamp(0px, 6.6666666667vw, 50px);
  }
}
#yametoma2026 .write .write__flow .step {
  display: flex;
}
@media screen and (min-width: 768px) {
  #yametoma2026 .write .write__flow .step {
    justify-content: space-between;
    gap: clamp(0px, 1.6666666667vw, 20px);
  }
}
@media screen and (max-width: 767px) {
  #yametoma2026 .write .write__flow .step {
    flex-flow: column nowrap;
    gap: clamp(0px, 2.6666666667vw, 20px);
  }
}
#yametoma2026 .write .write__flow .step__item {
  flex: 1;
}
#yametoma2026 .write .write__flow .note {
  margin-top: clamp(0px, 1.6666666667vw, 20px);
}
#yametoma2026 .write .write__flow .note li {
  font-size: clamp(0px, 1.1666666667vw, 14px);
  line-height: 1.4285714286;
}
#yametoma2026 .write .write__flow .tab2__address {
  margin-top: clamp(0px, 3.75vw, 45px);
}
#yametoma2026 .write .write__result {
  margin-top: clamp(0px, 4.5833333333vw, 55px);
}
#yametoma2026 .write .write__result .note {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: clamp(0px, 2.9166666667vw, 35px);
}
#yametoma2026 .write .write__result .note li {
  font-size: clamp(0px, 1.25vw, 15px);
  line-height: 1.6;
}
#yametoma2026 .write .write__application {
  margin-top: clamp(0px, 2.75vw, 33px);
}
#yametoma2026 .write .write__application .imagebody__text {
  top: auto;
  bottom: clamp(0px, 3.1666666667vw, 38px);
  width: 100%;
}
#yametoma2026 .write .write__application-button {
  width: clamp(0px, 62vw, 744px);
}
#yametoma2026 .write .write__terms {
  margin-top: clamp(0px, 4.3333333333vw, 52px);
}
#yametoma2026 .write .write__terms-lead {
  text-align: center;
  margin-top: clamp(0px, 3.75vw, 45px);
  font-size: clamp(0px, 1.25vw, 15px);
  line-height: 1.6;
}
#yametoma2026 .write .write__terms-detail {
  margin-top: clamp(0px, 0.8333333333vw, 10px);
  margin-inline: auto;
  width: clamp(0px, 65vw, 780px);
  height: clamp(0px, 13.8333333333vw, 166px);
  background: #fff;
  padding-block: clamp(0px, 1.5vw, 18px);
  padding-left: clamp(0px, 1.5vw, 18px);
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  #yametoma2026 .write .write__terms-detail {
    width: clamp(0px, 86.6666666667vw, 650px);
    height: clamp(0px, 40vw, 300px);
    padding-block: clamp(0px, 2.6666666667vw, 20px);
    padding-inline: clamp(0px, 2.6666666667vw, 20px);
  }
}
#yametoma2026 .write .write__terms-inner * {
  font-size: clamp(0px, 1.1666666667vw, 14px);
  line-height: 1.6428571429;
}
#yametoma2026 .write .write__contact {
  margin-top: clamp(0px, 6.6666666667vw, 80px);
}
#yametoma2026 .footer {
  overflow: hidden;
}
#yametoma2026 .footer .footer__inner {
  padding-top: clamp(0px, 5.3333333333vw, 64px);
  padding-bottom: clamp(0px, 2.75vw, 33px);
}
#yametoma2026 .footer .footer__image {
  width: clamp(0px, 54vw, 648px);
  margin-left: clamp(0px, 22.5vw, 270px);
}