/* 全体に対してクリック・選択のハイライトを無効化 */
* {
    -webkit-tap-highlight-color: transparent; /* モバイルでの青ハイライト消す */
}
a {
    color: var(--color-text);
    transition: all .5s;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
    color: var(--background-main);
    opacity: 0.7;
}
::selection {
  background: #717171;   /* 選択時の背景色 */
  color: #fff;        /* 選択時の文字色 */
}
ul, ol {
    list-style: none;
    margin: 0;
    padding-left: 0;
}
img {
    width: 100%;
    height: auto;
    display: block;
}
.img-100 {
    width: 100%;
}
.small, small {
    font-size: .7em;
}
/* レスポンシブ */
.pc {
    display: none;
}
.sp {
    display: block;
}
/* ボタン */
.btn-m {
    text-align: center;
}
.btn-m a {
    min-width: 240px;
    max-width: 90%;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
    background-color: #FFFFFF;
    color: #191919;
    border: 1px solid #191919;
    border-radius: 999px;
    padding: 0.8em 3em 0.8em 2.5em;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
}
.btn-white a {
    background-color: #909EA0;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}
.arrow-icon-right {
    position: absolute;
    top: 50%;
    right: 1.1em;
    transform: translateY(-50%);
    width: 0.8em;
    height: 0.8em;
    transition: transform 0.3s ease;
}
.arrow-icon-left {
    position: absolute;
    top: 50%;
    left: 1.1em;
    transform: translateY(-50%);
    width: 0.8em;
    height: 0.8em;
    transition: transform 0.3s ease;
}
.btn-arrow-right:hover .arrow-icon-right, .btn-l a:hover .arrow-icon-right {
    transform: translateY(-50%) translateX(-0.2em);
}
.btn-arrow-left:hover .arrow-icon-left, .btn-l a:hover .arrow-icon-left {
    transform: translateY(-50%) translateX(0.2em);
}
.disabled {
    pointer-events: none;
}
html {
    font-size: 14px;
}
body {
    color: #191919;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    scroll-behavior: smooth;
    overflow-x: hidden;
    letter-spacing: 0.03rem;
    line-height: 1.7;
		background-image: url("../images/bg_001.webp");
	background-position: center center; 
	background-size: cover; 
	background-repeat: no-repeat; 
	background-attachment: fixed; 

}
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}
#main {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.inner-width {
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
    box-sizing: border-box;
}
.bg-frame {
    position: relative;
    background: #EBEBEB;
    padding: 3rem;
    z-index: 1;
    display: grid;
    place-items: center;
}
.img-100 {
    width: 100%;
}
/* CONTACT セクション */
#contact-block {
    background-color: #909EA0;
    padding: 4rem 0;
    margin-top: 3rem;
}
#contact-block p {
    font-size: 1.2rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}
#contact-block p {
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}
#contact-block .btn-m a {
    background-color: #909EA0;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}
@media screen and (min-width: 992px) {
    .pc {
        display: block;
    }
    .sp {
        display: none;
    }
    html {
        font-size: 16px;
    }
    .inner-width {
        padding-left: 10%;
        padding-right: 10%;
    }
    .inner-width-m {
        max-width: 900px;
        margin: 0 auto;
        padding: 0;
    }
    .inner-width-s {
        max-width: 700px;
        margin: 0 auto;
        padding: 0;
    }
    .bg-width {
        padding-left: 10%;
        padding-right: 10%;
    }
}
@media screen and (min-width: 1200px) {
    .inner-width {
        padding-left: 10%;
        padding-right: 10%;
    }
}
@media screen and (min-width: 1400px) {}
/* マテリアル */
hr.short {
    width: 60px;
    margin: 0 auto;
    border-top: 1px #000000 solid;
    opacity: 1;
    margin-bottom: 2.5rem;
}
hr.short-s {
    width: 30px;
    margin: 0 auto;
    border-top: 1px #000000 solid;
    opacity: 1;
    margin-bottom: 1rem;
}
/* カラー */
.color-yellow {
    color: #F5EE88;
}
.color-green {
    color: #C3DC82;
}
.color-pink {
    color: #F5CDCD;
}
.color-white {
    color: #FFFFFF;
}
.color-gray {
    color: #808080;
}
.bg-yellow {
    background-color: #F5EE88;
}
.bg-green {
    background-color: #C3DC82;
}
.bg-pink {
    background-color: #F5CDCD;
}
.bg-yellow-light {
    background-color: #FFFDDD;
}
.bg-green-light {
    background-color: #ECF5D8;
}
.bg-pink-light {
    background-color: #FFF0F0;
}
.bg-gray {
    background-color: #808080;
}
.bg-gray-light {
    background-color: #F9F9F7;
}
.bg-black {
    background-color: #000000;
}
.bg-white {
    background-color: #FFFFFF;
}
/* フォントサイズ */
.txt-xs {
    font-size: 0.8rem;
}
.txt-s {
    font-size: 0.9rem;
}
.txt-m {
    font-size: 1rem;
}
.txt-l {
    font-size: 1.5rem;
}
.txt-xl {
    font-size: 2rem;
}
.txt-xxl {
    font-size: 3rem;
}
/* 英文フォント用 */
.font-en {
    font-family: "Marcellus", serif;
    letter-spacing: 0.1em;
}
/* フォントウェイトユーティリティ */
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-900 {
    font-weight: 900;
}