a {
  opacity: 1;
}

div {
  margin: 0;
}

img{
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

body {
	background: #fff;
}

*{
	font-family: "Noto Serif", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings:"wdth" 100;
	color:#1A1919;
	letter-spacing:0.02em;
}

/* 詳細文（基本のPタグ）：PC 16px / SP 14px
   ※クラス等で個別にfont-sizeを指定しているPは、その指定が優先されます */
p {
	font-size: 16px;
}
@media screen and (max-width: 768px) {
	p {
		font-size: 14px;
	}
}
/* ============================================
   Layout
============================================ */
.l-main {
  overflow: hidden;
}

.l-inner {
  max-width: 1280px; /* インナー1200px + 左右padding40px = 実質1280px */
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
	.l-inner {
		padding: 0 16px;
	}
}
.l-inner--mini {
  max-width: 1280px; /* トップのインナー幅に統一（実質1200px） */
}

/* ============================================
   Header
============================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 201;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* スクロール時：薄い白背景を敷く。
   下層ページ（フロント以外）はスクロール前から常時表示。 */
.l-header.is-scrolled,
body:not(.home) .l-header {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}


.l-header__inner {
  display: flex;
  justify-content: space-between;
      align-items: center;
}

.l-header__logo a {
  text-decoration: none;
  color: #333;
  display: inline-block;
  width: auto;
  height: 48px;
}
@media screen and (max-width: 768px) {
	.l-header__logo a {
  height: 32px;
}
}

.l-header__logo a img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.l-header__logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
}

.l-header__nav-list a {
  font-size: 14px;
  text-decoration: none;
  color: #333;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.l-header__nav-list a:hover {
  opacity: 0.5;
}

.l-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 72px;
  height: 72px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  border-bottom-left-radius: 10px;
}
@media screen and (max-width: 768px) {
	.l-header__hamburger {
  width: 64px;
		height: 64px;
	}
}

.l-header__hamburger span {
  display: block;
  width: 32px;
  height: 1px;
  background: #333;
  transition: transform 0.3s, opacity 0.3s;
}

/* ハンバーガー open 状態 → ✕ */
.l-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   ドロワーメニュー
============================================ */
.l-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 100px 40px 40px;
  overflow-y: auto;
}

.l-drawer.is-open {
  transform: translateX(0);
}

.l-drawer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.l-drawer__nav-list li {
  border-bottom: 1px solid #e0e0e0;
}

.l-drawer__nav-list a {
  display: block;
  padding: 18px 0;
  font-size: 15px;
  text-decoration: none;
  color: #333;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.l-drawer__nav-list a:hover {
  opacity: 0.5;
}

.l-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.l-drawer__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   Footer
============================================ */
.l-footer {
  background: #1a1a1a;
  color: #fff;
  padding: 60px 0 32px;
}

.l-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:40px;
}
@media screen and (max-width: 768px) {
.l-footer__inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
	}
}

.l-footer__logo{
	display:inline-flex;
	align-items:center;
	width:auto;
	height:auto;
}
.l-footer__logo a{
	display:block;
	width:auto;
	height:44px;
}
.l-footer__logo a img{
	width:auto;
	height:100%;
	object-fit:contain;
}
@media screen and (max-width: 768px) {
	.l-footer__logo{
	align-self:flex-start;
}
	.l-footer__logo a{
	height:36px;
}
}

.l-footer__logo-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.l-footer__right {
	display:flex;
	flex-direction:column;
	align-items:flex-end;
	gap:16px;
}
@media screen and (max-width: 768px) {
	.l-footer__right {
		align-items:flex-start;
		gap:20px;
	}
}

.l-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
	gap:24px;
	justify-content:flex-end;
}
@media screen and (max-width: 768px) {
.l-footer__nav-list {
	justify-content:flex-start;
	gap:12px 20px;
}
}
.l-footer__nav-list a {
  font-size:15px;
  color: #fff;
  transition: opacity 0.2s;
}
@media screen and (max-width: 768px) {
	.l-footer__nav-list a {
		font-size:14px;
	}
}
.l-footer__nav-list a:hover {
  opacity: 0.6;
}

/* Instagram（下段右端） */
.l-footer__sns a {
	display:inline-flex;
	align-items:center;
	gap:8px;
	color:#fff;
	text-decoration:none;
	font-size:14px;
	letter-spacing:0.05em;
	transition:opacity 0.2s;
}
.l-footer__sns a:hover {
	opacity:0.6;
}
.l-footer__sns a span {
	color:#fff;
}
.l-footer__sns svg {
	width:20px;
	height:20px;
	flex-shrink:0;
	color:#fff;
}
.l-footer__sns svg,
.l-footer__sns svg * {
	color:#fff;
	stroke:#fff;
}
.l-footer__sns svg circle[fill="currentColor"] {
	fill:#fff;
	stroke:none;
}

.l-footer__copy {
	text-align:center;
	margin-top:80px;
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
	.l-footer__copy {
	margin-top:40px;
	margin-bottom: 64px;
}
}
.l-footer__copy small{
	color:#fff;
	text-align:center;
  font-size: 12px;
	
}
/* ============================================
   共通パーツ
============================================ */

/* セクション見出し（英字→日本語の縦並び） */
.c-section-head {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
	.c-section-head {
		margin-bottom: 32px;
	}
}
.c-section-head--left {
  text-align: left;
  align-items: flex-start;
}

/* マークアップ順に依らず、英字(sub)を常に上に表示 */
.c-section-head__sub {
  order: -1;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
	.c-section-head__sub {
		font-size: 13px;
		margin-bottom: 10px;
	}
}

.c-section-head__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.08em;
}
/* 左右の装飾（金色のSVG）。右側は反転 */
.c-section-head__title::before,
.c-section-head__title::after {
  content: "";
  flex-shrink: 0;
  width: 62px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg%20width='62'%20height='16'%20viewBox='0%200%2062%2016'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M8.51334e-05%209.54557L13.5945%209.5455L13.5945%200.999987L26.5002%200.999987L26.5002%2014.2617L39.5002%2014.2617L39.5002%200.999987L52.0002%200.999987L52.0002%209.5455L61.938%209.5455'%20stroke='%23D4AF37'%20stroke-width='2'/%3E%3C/svg%3E") no-repeat center / contain;
}
.c-section-head__title::after {
  transform: scaleX(-1);
}
/* 左寄せ見出しでは装飾を表示しない */
.c-section-head--left .c-section-head__title {
  justify-content: flex-start;
}
.c-section-head--left .c-section-head__title::before,
.c-section-head--left .c-section-head__title::after {
  display: none;
}
@media screen and (max-width: 768px) {
	.c-section-head__title {
		font-size: 22px;
		gap: 16px;
	}
	.c-section-head__title::before,
	.c-section-head__title::after {
		width: 46px;
		height: 12px;
	}
}

/* ボタン */
.c-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #333;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: opacity 0.2s;
  cursor: pointer;
	transition: all 0.3s;
}

.c-btn:hover {
  opacity: 0.7;
}

.c-btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 280px;
  max-width: 100%;
  padding: 22px 28px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 2px;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  font-size: 15px;
  letter-spacing: 0.1em;
}
.c-btn--outline::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 71px;
  height: 17px;
  background: url("../img/btn-arrow.svg") no-repeat center / contain;
  transition: transform 0.3s;
}
.c-btn--outline:hover {
  background: #000;
  color: #fff;
  opacity: 1;
}
.c-btn--outline:hover::after {
  transform: translateX(6px);
}

/* もっと見るエリア */
.c-more {
  text-align: center;
  margin-top: 40px;
	position:relative;
}

/* ページヘッダー（共通） */
.page-header {
  padding: 60px 0;
  background: #f5f5f0;
  text-align: center;
}

.page-header__title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}

.page-header__sub {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

/* ============================================
   下層FV（共通）
============================================ */
.common_under-fv {
  width: 100%;
	margin-bottom:120px;
}
@media screen and (max-width: 768px) {
	.common_under-fv {
	margin-bottom:80px;
}
}
/* 下層FVと直後セクションの間隔を統一（間隔は .common_under-fv の margin-bottom が担う）。
   各ページ先頭セクションが独自に付けている上余白を打ち消す。 */
.common_under-fv + section,
.common_under-fv + article,
.common_under-fv + .l-inner {
	padding-top: 0;
}

.common_under-fv__bg {
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
padding-top: 60px;
}
@media screen and (max-width: 768px) {
	.common_under-fv__bg {
		height: 240px;
	}
}
.common_under-fv__bg--empty {
  background-color: #c8c8c8;
}

/* 左右2枚分割 */
.common_under-fv__bg--split {
  position: relative;
}
.common_under-fv__half {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.common_under-fv__half--left {
  left: 0;
}
.common_under-fv__half--right {
  right: 0;
}
.common_under-fv__bg--split .l-inner {
  position: relative;
  z-index: 1;
}

.common_under-fv__bg .l-inner {
	margin: 0 auto;
	padding: 0 40px;
}
@media screen and (max-width: 768px) {
	.common_under-fv__bg .l-inner {
	padding: 0 24px;
}
}

.common_under-fv__head {
  display: inline-block;
  background: rgba(255, 255, 255, 0.72);
  padding: 24px;
  min-width: 320px;
    width: 100%;
}

/* 英字サブ（上） */
.common_under-fv__sub {
  font-size: 15px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1.4;
  color: #1A1919;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
	.common_under-fv__sub {
		font-size: 13px;
		margin-bottom: 12px;
	}
}

.common_under-fv__title {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #1A1919;
}
@media screen and (max-width: 768px) {
.common_under-fv__title {
	font-size: 24px;
	}
}

/* ============================================
   一覧ページページネーション（共通）
============================================ */
.archive_more{
	    text-align: center;
    margin-top: 40px;
    margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
	.archive_more{
    margin-bottom: 80px;
}
}
.nav-links{
    display: flex;
    justify-content: center;
	align-items: center;
	gap:16px;
}
.nav-links .page-numbers{
	display: block;
	width:16px;
	font-size:14px;
	font-weight: 400;
	position:relative;
	padding-bottom: 5px;
	color:#9F9F9F;
}

.nav-links .page-numbers.current{
	border-bottom:1px solid #1A1919;
	color:#1A1919;
	padding-bottom: 4px;

}
.nav-links .page-numbers.next{
	 width:12px;
	height:auto;
	aspect-ratio:25/27;
	background:url(../img/cmn-next_icon.png);
	background-size:contain;
	background-position:center center;
	background-repeat:no-repeat;
	padding:0;
}
.nav-links .page-numbers.prev{
	 width:12px;
	height:auto;
	aspect-ratio:25/27;
	background:url(../img/cmn-prev_icon.png);
	background-size:contain;
	background-position:center center;
	background-repeat:no-repeat;
	padding:0;
}
/* ============================================
   追従ナビ
============================================ */
.l-fixed-nav {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 198;
}
@media screen and (max-width: 768px) {
  .l-fixed-nav {
    transform: unset;
    bottom: 4px;
    top: unset;
    width: 100%;
  }
}

.l-fixed-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .l-fixed-nav__list {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
}

.l-fixed-nav__list a {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 26px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
  background: #FFFDF5;
  transition: opacity 0.2s;
  border-radius: 20px 0 0 20px;
  border: solid 1px #17645E;
}
@media screen and (max-width: 768px) {
  .l-fixed-nav__list a {
    writing-mode: unset;
    height: max-content;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 0;
  }
}
.l-fixed-nav__list a:hover {
  opacity: 0.7;
}


/* ============================================
   ナビゲーション：メニュー説明テキスト
============================================ */
.c-nav-desc {
    display: inline-block;
    font-size: 11px;
    font-weight: 400;
    color: #999;
    margin-left: 10px;
    letter-spacing: 0.05em;
    vertical-align: middle;
}

/* ============================================
   テキストアニメーション（汎用）
============================================ */
@keyframes animLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.u-anim-left {
  opacity: 0;
}

.u-anim-left.is-animated {
  animation: animLeft 1s ease forwards;
}

/* ============================================
   スクロール出現アニメーション（高級感演出）
   .u-reveal            … 単体をフェード＋浮上で表示
   [data-reveal-group]  … 子要素を時間差（スタッガー）で表示
   ※ JS(main.js)が画面内に入った要素に .is-inview を付与
============================================ */
.u-reveal,
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.u-reveal.is-inview,
[data-reveal-group].is-inview > * {
  opacity: 1;
  transform: none;
}
/* scatter：上下移動させず、フェードのみでばらけて表示
   （既存レイアウトの transform＝メニュー写真のジグザグ等と干渉しない） */
[data-reveal-group="scatter"] > * {
  transform: none;
}

/* 見出し英字サブ：出現に合わせて字間がゆっくり広がる */
.c-section-head.u-reveal .c-section-head__sub {
  letter-spacing: 0.05em;
  transition: letter-spacing 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.c-section-head.u-reveal.is-inview .c-section-head__sub {
  letter-spacing: 0.25em;
}

/* ===== 画像のスローズーム（ホバー） ===== */
.u-zoom {
  overflow: hidden;
}
.u-zoom img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.u-zoom:hover img {
  transform: scale(1.06);
}

/* モーション軽減設定を尊重（アニメーションを無効化） */
@media (prefers-reduced-motion: reduce) {
  .u-reveal,
  [data-reveal-group] > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .c-section-head.u-reveal .c-section-head__sub {
    letter-spacing: 0.25em !important;
    transition: none !important;
  }
  .u-zoom img {
    transition: none !important;
  }
  .u-zoom:hover img {
    transform: none !important;
  }
}

/* ===== エントリーフォーム共通 ===== */
.entry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 920px;
  margin: auto;
}

.entry-form__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.entry-form__input {
  width: calc(100% - 240px);
}

.entry-form__input span input:not([type="radio"]):not([type="checkbox"]),
.entry-form__input span textarea {
  width: 100%;
  display: block;
  padding: 14px 18px;
  background: #F4F4F4;
  border-radius: 0;
}

.entry-form__input .wpcf7-radio {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 10px 0;
}

.entry-form__input .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

.entry-form__input .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  cursor: pointer;
}

.entry-form__input input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: #A22012;
}

.entry-form__label p {
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  width: 200px;
  align-items: center;
}

.entry-form__label span {
  line-height: 14px;
  font-size: 10px;
  background-color: #A22012;
  letter-spacing: .1em;
  color: #fff;
  font-weight: 700;
  display: flex;
  padding: 4px 10px;
  border-radius: 5px;
  justify-content: space-between;
}

span.tag {
  border-radius: 0;
}

span.tag.tag--required {
  background: #D4AF37;
}

span.tag.tag--optional {
  background: #ccc;
}

.entry-form__input.has-note {
  display: flex;
  align-items: center;
  gap: 20px;
}

span.note {
  font-size: 12px;
}

.entry-form__consent {
  text-align: center;
}

.entry-form__consent p {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
	.entry-form__consent p {
	font-size: 14px;
}
}

.entry-form__consent span.wpcf7-list-item {
  margin: auto;
}

.entry-form__consent a {
  text-decoration: underline;
}

.entry-form__submit {
  position: relative;
  text-align: center;
  max-width: 318px;
  margin-left: auto;
  margin-right: auto;
}

.entry-form__submit input.wpcf7-submit {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  max-width: 318px;
  height: 70px;
  background: #A22012;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.2em;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: opacity 0.3s;
  padding: 0 60px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
	.entry-form__submit input.wpcf7-submit {
		height: 52px;
}
}

.entry-form__submit input.wpcf7-submit:hover {
  opacity: 0.8;
}

.entry-form__submit::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
  z-index: 2;
  background-image: url(../img/lp202603/arrows.webp);
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .entry-form__row {
    flex-direction: column;
    align-items: stretch;
  }
  .entry-form__label p {
    width: 100%;
    margin-bottom: 8px;
  }
  .entry-form__input {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .entry-form__submit::after,
  .entry-form__submit::before {
    right: 25px;
  }
}


.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.show-640{
	display:none;
}
@media screen and (max-width: 640px) {
	.show-640{
	display:block;
}
	.hide-640{
	display:none;
}
}

/* ============================================
   ローディング
============================================ */
.l-loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #FFFDF5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.l-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.l-loading__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.l-loading__logo {
  width: 80px;
  height: 80px;
  margin: 0;
  animation: loadingLogoPulse 1.6s ease-in-out infinite;
}

.l-loading__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes loadingLogoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.95); }
}

/* リングスピナー */
.l-loading__ring {
  position: relative;
  width: 48px;
  height: 48px;
}

.l-loading__ring span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(23, 100, 94, 0.15);
  border-top-color: #17645E;
  animation: loadingRingSpin 0.9s linear infinite;
}

@keyframes loadingRingSpin {
  to { transform: rotate(360deg); }
}