@charset "UTF-8";
/* foundation
------------------------------------*/
/* ==========================================================================
// global
// ======================================================================== */
/* -----------------------------------------------------------------
// variables
// --------------------------------------------------------------- */
/* ==========================================================================
// variable
// ======================================================================== */
/* -----------------------------------------------------------------
// CSS custom properties (CSS variables)
// --------------------------------------------------------------- */
:root {
  --color-text: #231815;
}

/* -----------------------------------------------------------------
// color manage
// --------------------------------------------------------------- */
/* -----------------------------------------------------------------
// bg
// --------------------------------------------------------------- */
/* -----------------------------------------------------------------
// border
// --------------------------------------------------------------- */
/* ==========================================================================
// font-family
// ======================================================================== */
/* ==========================================================================
// variable
// ======================================================================== */
/* ==========================================================================
// font-weight
// ======================================================================== */
/* ==========================================================================
// variable
// ======================================================================== */
/* -----------------------------------------------------------------
// z-index manage：z-index: global.z(header);
// --------------------------------------------------------------- */
/* -----------------------------------------------------------------
// mixins
// --------------------------------------------------------------- */
/* ==========================================================================
// mixin
// updated --- 2023/01/17 01:02:33
// ======================================================================== */
/* ------------------------------------------------------------
   * @mixin：aspect-ratio
   * 
   * 比率維持のBOX
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
   * @mixin：aspect-ratio v2?
   * 
   * 比率維持のBOX
   * https://zenn.dev/tak_dcxi/articles/2cc1828e9c1fe2#%E7%94%BB%E5%83%8F%E3%81%AA%E3%81%A9%E3%82%92%E7%B8%A6%E6%A8%AA%E6%AF%94%E3%82%92%E7%B6%AD%E6%8C%81%E3%81%97%E3%81%9F%E3%81%BE%E3%81%BE%E3%83%AC%E3%82%B9%E3%83%9D%E3%83%B3%E3%82%B7%E3%83%96%E5%AF%BE%E5%BF%9C
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
	 * @mixin：clamp-value($min,$max,$vmin,$vmax)
   * ref：https://css-tricks.com/linearly-scale-font-size-with-css-clamp-based-on-the-viewport/
	 * 
	 * $min：最小サイズ〜$max：最大サイズ
	 * $vmin：viewport最小〜$vmax：viewport最大
	-------------------------------------------------------------- */
/* ------------------------------------------------------------
	 * @mixin：pxrem($px,$basepx)
	 * 
	 * px => rem
	 * base : 16px;
	-------------------------------------------------------------- */
/* ------------------------------------------------------------
	 * @mixin：pxvw($px,$basepx)
	 * 
	 * px => vw
	 * base : 750px;
	-------------------------------------------------------------- */
/* ------------------------------------------------------------
	 * @mixin：pxper($px,$basepx)
	 * 
	 * px => per
	-------------------------------------------------------------- */
/* ------------------------------------------------------------
   * @function：ease
   * 
   * Easing mixin http://www.kuma-de.com/blog/2016-12-08/7273
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
   * @mixin：hover
   * 
   * $hoverでfocus時の実行可否を制御
   * ※ie11の判別にcssua必須
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
   * @mixin：lineHeightCrop
   * 
   * line-heightの不要な余白を打ち消す
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
   * vertical
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
   * @mixin：indent
   * 
   * text-indent 制御 ※改善の余地あり
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
   * @mixin：triangle
   * 
   * 第1引数に方向を指定。上向き(upward)、右向き(rightward)、下向き(downward)、左向き(leftward)、左上(upper-left)、右上(upper-right)、右下(lower-right)、左下(lower-left)の８方向から選択します
   * 第2引数に三角形の横幅を指定します
   * 第3引数に三角形の縦幅を指定します
   * 第4引数に三角形の色を指定します。デフォルトは現在の文字色(currentColor)
  -------------------------------------------------------------- */
/* ------------------------------------------------------------
   * @function：z
   * 
   * z-index 管理
   * https://qiita.com/kojika17/items/b4694e3afe0da97e6335
  -------------------------------------------------------------- */
/*!
 * ress.css • v2.0.4
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

/* # =================================================================
   # General elements
   # ================================================================= */
hr {
  overflow: visible; /* Show the overflow in Edge and IE */
  height: 0; /* Add the correct box sizing in Firefox */
}

details,
main {
  display: block; /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item; /* Add the correct display in all browsers */
}

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none; /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none; /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

pre {
  font-size: 1em; /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder; /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto; /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  appearance: textfield;
  outline-offset: -2px; /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
  color: inherit;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
  appearance: button;
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
  appearance: none;
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge 18- and IE */
}

::-webkit-file-upload-button {
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
  color: inherit;
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not([fill]) {
  fill: currentColor;
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  width: 100%;
}

/* safari css hack */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 1px) {
  html {
    overflow-x: auto;
    overflow-y: hidden;
  }
}
body {
  background: #ffffff;
  color: #231815;
  font-family: "Zen Kaku Gothic New";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-wrap: break-word;
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom); /* セーフエリア余白 */
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  body {
    min-width: 320px;
    overflow-x: hidden;
  }
}
body.is-fixed {
  overflow-y: hidden;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
}

input {
  border-radius: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input[type=submit],
a {
  transition: all 0.2s ease;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
button,
input[type=button] {
  border-radius: 0;
  appearance: none;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
button::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
button:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

summary::-webkit-details-marker {
  display: none;
}

.c-preload * {
  transition: none !important;
}

/* commons
------------------------------------*/
/* foundation
------------------------------------*/
.c-header-default {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.c-header-default .c-header-default__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 35px 50px 0;
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  .c-header-default .c-header-default__inner {
    padding: 30px 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .c-header-default .c-header-default__inner {
    padding: 30px 20px 0;
  }
}
.c-header-default .c-header-default__right {
  padding: 0 280px 0 0;
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  .c-header-default .c-header-default__right {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .c-header-default .c-header-default__right {
    display: none;
  }
}

.c-header-logo {
  display: block;
  line-height: 0;
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  .c-header-logo {
    width: 110px;
  }
}
@media screen and (max-width: 768px) {
  .c-header-logo {
    width: 110px;
  }
}

.c-header-nav .c-header-nav__sub {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  list-style: none;
}
.c-header-nav .c-header-nav__sub li a {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  padding: 5px;
}
.c-header-nav .c-header-nav__sub li a:hover {
  color: #C3B4AC;
}
.c-header-nav .c-header-nav__main {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 20px;
}
.c-header-nav .c-header-nav__main li {
  overflow: hidden;
}
.c-header-nav .c-header-nav__main li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  padding: 5px 0;
  position: relative;
  transition: color 0.3s ease;
}
.c-header-nav .c-header-nav__main li a::before {
  background: #C3B4AC;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.3s ease;
}
.c-header-nav .c-header-nav__main li a:hover {
  color: #C3B4AC;
}
.c-header-nav .c-header-nav__main li a:hover::before {
  transform: translate3d(0, 0, 0);
}

.c-header-button {
  position: fixed;
  right: 50px;
  top: 42px;
}

/* foundation
------------------------------------*/
.c-footer-default {
  display: flex;
  justify-content: center;
  width: 100%;
}
.c-footer-default .c-footer-default__inner {
  border-top: 1px solid #C3B4AC;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 20px;
  padding: 40px 0 50px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-footer-default .c-footer-default__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0 96px;
  }
}
.c-footer-default .c-footer-default__left {
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .c-footer-default .c-footer-default__left {
    flex-direction: column;
    gap: 0;
  }
}

.c-footer-logo {
  display: block;
  line-height: 0;
}

.c-footer-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .c-footer-menu {
    flex-direction: column;
    gap: 3px;
    margin: 20px 0 0;
  }
}
.c-footer-menu li {
  line-height: 0;
}
.c-footer-menu li a {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
}
.c-footer-menu li a:hover {
  color: #C3B4AC;
}

.c-footer-copyright {
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .c-footer-copyright {
    margin: 30px 0 0;
  }
}

/* foundation
------------------------------------*/
/* foundation
------------------------------------*/
.c-drawer-default {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
@media screen and (min-width: 769px) {
  .c-drawer-default {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  .c-drawer-default {
    display: block;
  }
}
.c-drawer-default.is-open {
  opacity: 1;
  visibility: visible;
}

.c-drawer-default__inner {
  background: #F2F5FA;
  padding: 95px 20px 35px;
  position: fixed;
  top: 0;
  right: 0;
  max-width: 400px;
  width: 100%;
  height: 100%;
  z-index: 41;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.c-drawer-default.is-open .c-drawer-default__inner {
  opacity: 1;
  visibility: visible;
}

.c-drawer-nav {
  display: grid;
  gap: 50px;
}
.c-drawer-nav .c-drawer-nav__main {
  display: grid;
  gap: 20px;
  list-style: none;
  width: fit-content;
}
.c-drawer-nav .c-drawer-nav__main li {
  overflow: hidden;
}
.c-drawer-nav .c-drawer-nav__main li a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.8px;
  padding: 5px 0 5px 20px;
  position: relative;
  transition: color 0.3s ease;
}
.c-drawer-nav .c-drawer-nav__main li a::before {
  background: #C3B4AC;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate3d(-95%, 0, 0);
  transition: transform 0.3s ease;
}
.c-drawer-nav .c-drawer-nav__main li a:hover {
  color: #C3B4AC;
}
.c-drawer-nav .c-drawer-nav__main li a:hover::before {
  transform: translate3d(0, 0, 0);
}
.c-drawer-nav .c-drawer-nav__sub {
  display: grid;
  gap: 15px;
  list-style: none;
}
.c-drawer-nav .c-drawer-nav__sub li a {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.c-drawer-nav .c-drawer-nav__sub li a:hover {
  color: #C3B4AC;
}

.c-drawer-button {
  margin: 60px 0 0;
}
@media screen and (max-width: 768px) {
  .c-drawer-button {
    display: grid;
    justify-content: center;
  }
}

.c-drawer-footer {
  display: grid;
  gap: 20px;
  margin: 50px 0 0;
}
.c-drawer-footer .c-drawer-footer__logo {
  display: block;
  line-height: 0;
  width: 100px;
}
.c-drawer-footer .c-drawer-footer__logo img {
  width: 100%;
}
.c-drawer-footer .c-drawer-footer__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 19px; /* 158.333% */
  letter-spacing: 0.6px;
}

/* foundation
------------------------------------*/
.c-heading-primary {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}
.c-heading-primary.is-center {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-heading-primary.is-sp-center {
    text-align: center;
  }
}

.c-heading-secondary {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
  margin: 80px 0 0;
}
.c-heading-secondary::before {
  background: #C3B4AC;
  content: "";
  display: block;
  height: 1px;
  width: 40px;
}

/* foundation
------------------------------------*/
.c-wrap {
  margin: 0;
  /* overflow: hidden; */ /* iOS Safari対応で無効化 */
  position: relative;
  width: 100vw;
}

.c-contents {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 20px;
}

.c-contents__header {
  margin: 180px 0 0;
}
@media screen and (max-width: 768px) {
  .c-contents__header {
    margin: 150px 0 0;
  }
}

.c-bg {
  position: relative;
}
.c-bg::before {
  background: url("/assets/images/bg-gray.png") repeat center left/100px 100px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.c-bg.is-white::before {
  background: #fff;
}

.c-hr-photo {
  margin: 0 calc(50% - 50vw);
  height: 25vw;
  line-height: 0;
  overflow: hidden;
  width: 100vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-hr-photo {
    height: 35.8974358974vw;
  }
}
.c-hr-photo::before {
  background: rgba(195, 180, 172, 0.4);
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.c-hr-photo img {
  width: 100%;
}

.c-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .c-sticky-cta {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .c-sticky-cta {
    display: block;
  }
}

/* foundation
------------------------------------*/
.c-button-back {
  border-bottom: 1px solid color-mix(in srgb, var(--color-text) 10%, transparent);
  display: inline-flex;
  align-items: center;
  font-weight: 900;
}
@media screen and (min-width: 769px) {
  .c-button-back {
    gap: min(1.8055555556vw, 1.625rem);
    font-size: min(1.1111111111vw, 1rem);
    font-size: clamp(0.875rem, 1.1111111111vw, 1rem);
    padding: 0 0 min(0.5555555556vw, 0.5rem);
  }
}
@media screen and (max-width: 768px) {
  .c-button-back {
    gap: 5.641025641vw;
    font-size: 3.5897435897vw;
    padding: 0 0 2.0512820513vw;
  }
}
.c-button-back img {
  transition: transform 0.2s ease;
}
@media screen and (min-width: 769px) {
  .c-button-back img {
    width: min(0.6944444444vw, 0.625rem);
  }
}
@media screen and (max-width: 768px) {
  .c-button-back img {
    width: 2.8205128205vw;
  }
}
@media screen and (min-width: 769px) {
  .c-button-back:hover img {
    transform: translate3d(min(0.2777777778vw, 0.25rem), 0, 0);
  }
}
@media screen and (max-width: 768px) {
  .c-button-back:hover img {
    transform: translate3d(1.0256410256vw, 0, 0);
  }
}

.c-button-cta {
  background: #947B71;
  border: 1px solid #947B71;
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.c-button-cta:hover {
  background: #fff;
  color: #947B71;
}
.c-button-cta:hover svg path {
  fill: #947B71;
}
.c-button-cta.is-beginner, .c-button-cta.is-sticky {
  padding: 20px 50px;
}

.c-button-hamburger {
  display: grid;
  gap: 6px;
  padding: 10px 0;
  position: fixed;
  top: 32px;
  right: 20px;
  z-index: 50;
}
@media screen and (min-width: 769px) {
  .c-button-hamburger {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  .c-button-hamburger {
    display: grid;
  }
}
.c-button-hamburger.is-open span:nth-child(1) {
  transform: translate3d(0, 4px, 0) rotate(16deg);
}
.c-button-hamburger.is-open span:nth-child(2) {
  transform: translate3d(0, -3px, 0) rotate(-16deg);
}
.c-button-hamburger span {
  background: var(--color-text);
  display: block;
  height: 1px;
  width: 32px;
  transition: transform 0.3s ease;
  transform-origin: 50% 50%;
}

.c-button-drawer {
  background: #947B71;
  border: 1px solid #947B71;
  display: flex;
  padding: 16px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  width: fit-content;
}
.c-button-drawer:hover {
  background: #fff;
  color: #947B71;
}
.c-button-drawer:hover svg path {
  fill: #947B71;
}

/* foundation
------------------------------------*/
/* foundation
------------------------------------*/
/* foundation
------------------------------------*/
.c-list-cta {
  display: inline-flex;
  justify-content: center;
  list-style: none;
}
@media screen and (min-width: 769px) {
  .c-list-cta {
    gap: min(2.7777777778vw, 2.5rem);
  }
}
@media screen and (max-width: 768px) {
  .c-list-cta {
    flex-direction: column;
    gap: 10.2564102564vw;
  }
}

/* foundation
------------------------------------*/
/* foundation
------------------------------------*/
/* foundation
------------------------------------*/
.a-fadein {
  opacity: 0;
}
.a-fadein.is-animated {
  animation: fadeIn 2s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.a-fadein-up {
  opacity: 0;
  transform: translateY(20px);
}
.a-fadein-up.is-animated {
  animation: fadeInUp 2s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-heading-primary.is-animated span {
  animation: pororon 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.c-heading-primary span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
}
.c-heading-primary span:nth-child(1) {
  animation-delay: 0s;
}
.c-heading-primary span:nth-child(2) {
  animation-delay: 0.08s;
}
.c-heading-primary span:nth-child(3) {
  animation-delay: 0.16s;
}
.c-heading-primary span:nth-child(4) {
  animation-delay: 0.24s;
}
.c-heading-primary span:nth-child(5) {
  animation-delay: 0.32s;
}
.c-heading-primary span:nth-child(6) {
  animation-delay: 0.4s;
}
.c-heading-primary span:nth-child(7) {
  animation-delay: 0.48s;
}
.c-heading-primary span:nth-child(8) {
  animation-delay: 0.56s;
}
.c-heading-primary span:nth-child(9) {
  animation-delay: 0.64s;
}
.c-heading-primary span:nth-child(10) {
  animation-delay: 0.72s;
}
.c-heading-primary span:nth-child(11) {
  animation-delay: 0.8s;
}
.c-heading-primary span:nth-child(12) {
  animation-delay: 0.88s;
}
.c-heading-primary span:nth-child(13) {
  animation-delay: 0.96s;
}
.c-heading-primary span:nth-child(14) {
  animation-delay: 1.04s;
}
.c-heading-primary span:nth-child(15) {
  animation-delay: 1.12s;
}
.c-heading-primary span:nth-child(16) {
  animation-delay: 1.2s;
}
.c-heading-primary span:nth-child(17) {
  animation-delay: 1.28s;
}
.c-heading-primary span:nth-child(18) {
  animation-delay: 1.36s;
}
.c-heading-primary span:nth-child(19) {
  animation-delay: 1.44s;
}
.c-heading-primary span:nth-child(20) {
  animation-delay: 1.52s;
}

@keyframes pororon {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.a-pageshow {
  opacity: 0;
}
.a-pageshow.is-animated {
  animation: fadeIn 2s ease forwards 0.6s;
}
.a-pageshow.is-delay {
  animation-delay: 1.4s;
}

/* utility
------------------------------------*/
/* foundation
------------------------------------*/
/* 表示&非表示を操作するユーティリティ */
.u-hide {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}

.u-tab {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  .u-tab {
    display: inline-block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1080px) {
  .u-tab-none {
    display: none !important;
  }
}

.u-sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block !important;
  }
}

.u-small {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-small {
    display: inline-block;
  }
}

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

/* pages
------------------------------------*/
/* foundation
------------------------------------*/
.p-top-fv {
  margin: 0 calc(50% - 50vw);
  height: 100dvh;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  z-index: -3;
}
.p-top-fv.is-animated img {
  animation: scale 10s ease-out forwards;
}
.p-top-fv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-fv .p-top-fv__text {
  font-family: "Zen Old Mincho";
  font-size: min(26px, 1.8vw);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 5.2px;
  position: absolute;
  left: calc(50% + 18.6805555556vw);
  bottom: 292px;
}
@media screen and (max-width: 768px) {
  .p-top-fv .p-top-fv__text {
    display: block;
    font-size: 14px;
    letter-spacing: 2.2px;
    left: auto;
    right: 20px;
    bottom: 35%;
  }
}
.p-top-fv .p-top-fv__scroll {
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.95px;
  position: absolute;
  right: 50px;
  bottom: 55px;
}
@media screen and (max-width: 768px) {
  .p-top-fv .p-top-fv__scroll {
    right: 20px;
    bottom: 100px;
  }
}
.p-top-fv .p-top-fv__scroll span {
  background: #B7A9A2;
  display: block;
  width: 1px;
  height: 55px;
  position: absolute;
  right: 3px;
  top: -60px;
  overflow: hidden;
}
.p-top-fv .p-top-fv__scroll span::before {
  animation: scroll 2s linear infinite;
  background: var(--color-text);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(110%);
  }
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.p-top-about {
  height: 180dvh;
  margin: 120dvh calc(50% - 50vw) 0;
  position: relative;
}
.p-top-about::before {
  background: rgba(195, 180, 172, 0.4);
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.p-top-about .p-top-about__bg {
  width: 100%;
  height: 100dvh;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.p-top-about .p-top-about__inner {
  max-width: 1020px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top-about .p-top-about__inner {
    flex-direction: column;
    gap: 100px;
  }
}
.p-top-about .p-top-about__title {
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.95px;
}
.p-top-about .p-top-about__text {
  display: grid;
  gap: 100px;
}
.p-top-about .p-top-about__text p {
  color: #FFF;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 400;
  line-height: 38px; /* 237.5% */
  letter-spacing: 2.4px;
}
@media screen and (max-width: 768px) {
  .p-top-about .p-top-about__text p {
    font-size: 14px;
    text-align: center;
  }
}

.p-top-lesson {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-top-lesson {
    padding: 60px 0;
  }
}
.p-top-lesson .p-top-lesson__photo {
  display: block;
  line-height: 0;
  margin: 30px 0 0;
}
.p-top-lesson .p-top-lesson__photo img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-top-yoga {
    display: grid;
    gap: 60px;
  }
}
.p-top-yoga .p-top-yoga__inner {
  display: grid;
  gap: 60px;
  grid-template-columns: 43.3333333333vw 1fr;
  margin: 0 0 0 calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-top-yoga .p-top-yoga__inner {
    grid-template-columns: auto;
    margin: 0 calc(50% - 50vw);
  }
}
.p-top-yoga .p-top-yoga__inner:nth-child(even) {
  grid-template-columns: 1fr 43.3333333333vw;
  justify-content: end;
  margin: 0 calc(50% - 50vw) 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top-yoga .p-top-yoga__inner:nth-child(even) {
    display: flex;
    flex-direction: column-reverse;
    margin: 0 calc(50% - 50vw);
  }
}
.p-top-yoga .p-top-yoga__photo {
  display: block;
  line-height: 0;
  position: sticky;
  top: 0;
  align-self: start;
  height: 100dvh;
}
@media screen and (max-width: 768px) {
  .p-top-yoga .p-top-yoga__photo {
    position: static;
    height: auto;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.p-top-yoga .p-top-yoga__photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.p-top-yoga .p-top-yoga__contents {
  display: grid;
  gap: 60px;
  padding: 100px 0;
  min-height: 100vh;
}
@media screen and (max-width: 768px) {
  .p-top-yoga .p-top-yoga__contents {
    gap: 40px;
    padding: 0 20px;
    min-height: unset;
  }
}
.p-top-yoga .p-top-yoga__list {
  display: grid;
  gap: 80px;
  counter-reset: item;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .p-top-yoga .p-top-yoga__list {
    gap: 40px;
  }
}
.p-top-yoga .p-top-yoga__item-header {
  counter-increment: item;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-top-yoga .p-top-yoga__item-header {
    gap: 10px;
  }
}
.p-top-yoga .p-top-yoga__item-header::before {
  content: counter(item, decimal-leading-zero);
  color: #947B71;
  display: block;
  font-family: "Zen Kaku Gothic New";
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
}
.p-top-yoga .p-top-yoga__item-heading {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .p-top-yoga .p-top-yoga__item-heading {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}
.p-top-yoga .p-top-yoga__item-heading span {
  font-size: 14px;
  letter-spacing: 1.4px;
}
.p-top-yoga .p-top-yoga__item-time {
  background: #B7A9A2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 70px;
  padding: 3px 0;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
}
.p-top-yoga .p-top-yoga__item-time.is-30 {
  background: #947B71;
}
.p-top-yoga .p-top-yoga__item-meta {
  margin: 5px 0 0;
}
.p-top-yoga .p-top-yoga__item-meta p {
  color: #947B71;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.p-top-yoga .p-top-yoga__item-description {
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.39px;
  margin: 10px 0 0;
}

.p-top-hr {
  padding: 100px 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-hr {
    padding: 60px 0 0;
  }
}

.p-top-price {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-top-price {
    padding: 60px 0;
  }
}
.p-top-price .p-top-price__list {
  display: grid;
  gap: 60px;
  list-style: none;
  margin: 60px 0 0;
}
.p-top-price .p-top-price__item-label {
  border: 1px solid #493B37;
  color: #493B37;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.4px;
  text-align: center;
  padding: 3px 0;
  width: 85px;
}
.p-top-price .p-top-price__item-header {
  border-bottom: 1px solid #B7A9A2;
  display: flex;
  justify-content: space-between;
  margin: 6px 0 0;
  padding: 0 0 8px;
}
@media screen and (max-width: 768px) {
  .p-top-price .p-top-price__item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.p-top-price .p-top-price__item-heading {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
}
.p-top-price .p-top-price__item-price {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2px;
}
.p-top-price .p-top-price__item-price span {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
}
.p-top-price .p-top-price__item-description {
  margin: 15px 0 0;
  list-style: none;
}
.p-top-price .p-top-price__item-description li {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  margin: 16px 0 0;
  padding: 0 0 0 1em;
  position: relative;
}
.p-top-price .p-top-price__item-description li::before {
  border-radius: 50%;
  background: #947B71;
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  position: absolute;
  left: 0;
  top: 8px;
}
.p-top-price .p-top-price__item-description li a {
  text-decoration: underline;
}
.p-top-price .p-top-price__item-description li a:hover {
  text-decoration: none;
}

.p-top-instructors {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-top-instructors {
    padding: 60px 0;
  }
}
.p-top-instructors .p-top-instructors__main {
  display: grid;
  grid-template-columns: 53.4722222222vw 1fr;
  align-items: center;
  gap: 30px;
  margin: 40px 0 0 calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-top-instructors .p-top-instructors__main {
    grid-template-columns: auto;
    margin: 40px calc(50% - 50vw) 0;
    gap: 30px;
  }
}
.p-top-instructors .p-top-instructors__main-photo {
  display: block;
  line-height: 0;
}
.p-top-instructors .p-top-instructors__main-photo img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-instructors .p-top-instructors__main-body {
    padding: 0 20px;
  }
}
.p-top-instructors .p-top-instructors__main-body h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
}
.p-top-instructors .p-top-instructors__main-body h3 span {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.p-top-instructors .p-top-instructors__main-body p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.7px;
  margin: 15px 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-instructors .p-top-instructors__main-body p {
    line-height: 22px; /* 157.143% */
    letter-spacing: 0.7px;
    margin: 10px 0 0;
  }
}
.p-top-instructors .p-top-instructors__main-body small {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  margin: 15px 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-instructors .p-top-instructors__main-body small {
    line-height: 19px; /* 158.333% */
    letter-spacing: 0.6px;
  }
}
.p-top-instructors .p-top-instructors__main-body small a {
  text-decoration: underline;
}
.p-top-instructors .p-top-instructors__main-body small a:hover {
  opacity: 0.6;
}
.p-top-instructors .p-top-instructors__sub {
  list-style: none;
  margin: 60px 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-instructors .p-top-instructors__sub {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-top-instructors .p-top-instructors__sub li {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .p-top-instructors .p-top-instructors__sub li {
    grid-template-columns: auto;
    gap: 20px;
  }
}
.p-top-instructors .p-top-instructors__sub li figure {
  display: block;
  line-height: 0;
}
.p-top-instructors .p-top-instructors__sub li figure img {
  width: 100%;
}
.p-top-instructors .p-top-instructors__sub li div {
  max-width: 488px;
}
.p-top-instructors .p-top-instructors__sub li div h3 {
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 768px) {
  .p-top-instructors .p-top-instructors__sub li div h3 {
    line-height: 1;
  }
}
.p-top-instructors .p-top-instructors__sub li div h3 span {
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.p-top-instructors .p-top-instructors__sub li div p {
  color: #000;
  font-family: "Zen Kaku Gothic New";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.7px;
  margin: 15px 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-instructors .p-top-instructors__sub li div p {
    line-height: 22px; /* 157.143% */
    letter-spacing: 0.7px;
  }
}

.p-top-beginner {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-top-beginner {
    padding: 60px 0;
  }
}
.p-top-beginner .p-top-beginner__text {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  margin: 40px 0 0;
}
.p-top-beginner .p-top-beginner__button {
  margin: 40px 0 0;
  width: fit-content;
}
.p-top-beginner .p-top-beginner__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 min(80px, 5.5555555556vw);
  justify-content: space-between;
  counter-reset: item 0;
  list-style: none;
  margin: 40px 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-beginner .p-top-beginner__list {
    grid-template-columns: auto;
    gap: 0;
  }
}
.p-top-beginner .p-top-beginner__list li {
  border-top: 1px solid #C3B4AC;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 40px;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .p-top-beginner .p-top-beginner__list li {
    padding: 30px 0;
  }
}
.p-top-beginner .p-top-beginner__list li::before {
  background: #947B71;
  border-radius: 50%;
  content: counter(item, decimal-leading-zero);
  counter-increment: item;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
  margin-bottom: 10px;
  width: 40px;
  height: 40px;
}
.p-top-beginner .p-top-beginner__list li:last-child, .p-top-beginner .p-top-beginner__list li:nth-last-child(2) {
  border-bottom: 1px solid #C3B4AC;
}
.p-top-beginner .p-top-beginner__list li h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 768px) {
  .p-top-beginner .p-top-beginner__list li h4 {
    font-size: 20px;
    letter-spacing: 2px;
  }
}
.p-top-beginner .p-top-beginner__list li p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.42px;
  margin: 9px 0 0;
}
.p-top-beginner .p-top-beginner__list2 {
  display: grid;
  gap: 10px;
  margin: 40px 0 0;
  list-style: none;
}
.p-top-beginner .p-top-beginner__list2 li {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  padding: 0 0 0 1em;
  position: relative;
}
.p-top-beginner .p-top-beginner__list2 li::before {
  border-radius: 50%;
  background: #947B71;
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  position: absolute;
  left: 0;
  top: 8px;
}

.p-top-guide {
  display: grid;
  align-items: center;
  grid-template-columns: 200px 1fr;
  gap: 100px;
  padding: 100px 0 0;
}
@media screen and (max-width: 768px) {
  .p-top-guide {
    grid-template-columns: auto;
    gap: 40px;
    padding: 60px 0 0;
  }
}
.p-top-guide .p-top-guide__text {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
}
.p-top-guide .p-top-guide__list {
  list-style: none;
  margin: 80px 0 0;
  display: grid;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-top-guide .p-top-guide__list {
    gap: 30px;
    margin: 40px 0 0;
  }
}
.p-top-guide .p-top-guide__list li {
  display: grid;
  gap: 15px;
}
.p-top-guide .p-top-guide__list p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
}
.p-top-guide .p-top-guide__list h3 {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.54px;
}
.p-top-guide .p-top-guide__list h3::before {
  background: #B7A9A2;
  content: "";
  display: block;
  height: 26px;
  width: 6px;
}
.p-top-guide .p-top-guide__item {
  display: grid;
  gap: 15px;
}

.p-top-access {
  display: grid;
  align-items: center;
  grid-template-columns: 200px 1fr;
  gap: 100px;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-top-access {
    grid-template-columns: auto;
    gap: 40px;
    padding: 60px 0;
  }
}
.p-top-access .p-top-access__map {
  aspect-ratio: 691/422;
  display: block;
  line-height: 0;
}
.p-top-access .p-top-access__map iframe {
  height: 100%;
  width: 100%;
}
.p-top-access .p-top-access__link {
  text-align: right;
  margin: 5px 0 0;
}
.p-top-access .p-top-access__link a {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.7px;
  text-decoration-line: underline;
}
.p-top-access .p-top-access__link a:hover {
  text-decoration-line: none;
}
.p-top-access .p-top-access__text {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  margin: 30px 0 0;
}

/* foundation
------------------------------------*/
.p-policy-contents {
  margin: 60px auto 100px;
  max-width: 800px;
}
.p-policy-contents p {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
}/*# sourceMappingURL=style.css.map */