/*!
Theme Name: Frame
Description: Frame は、コンテンツの魅力を引き立てるミニマルで洗練されたWordPressテーマです。シンプルな構造と柔軟なレイアウトで、ブログやポートフォリオ、ビジネスサイトまで幅広く対応します。
Author URI: https://frame.ortega-works.com
Author: Syota Odaira
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/


.section-bg {
  position: relative;
  isolation: isolate;
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media only screen and (max-width: 767px) {
  .section-bg {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.section-bg::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: var(--themeColor);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.2;
  z-index: -1;
}
.section-bg .btn a, .section-bg .btn button {
  border: none;
}

.iframe {
  position: relative;
  aspect-ratio: 16/9;
}
.iframe iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}