/* root */
:root{
    --serif:'EB Garamond', serif;
    --sans:'Zen Kaku Gothic New', sans-serif;
    --gold:#ae8f41;
}
body,sans{
    font-family: var(--sans);
    color: #0e0a0a;
}
.serif{
    font-family: var(--serif);
}
p{
        font-size: 16px;;
}
span {
    font-size: inherit;
}
.sponly{
    display: none;
}

/* ヘッダー */
section.mainvisual {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 35%, rgba(20,25,73,1) 35%, rgba(20,25,73,1) 60%, rgba(11,34,110,1) 90%);
    min-height: 90vh;
    position: relative;
}
.mainvisual header {
    padding: 30px;
}
.header__indexlogo {
    width: 250px;
    height: auto;
}
.main__model__layer {
    position: absolute;
    background: url(../img/202304/model_compressed.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 20% bottom;
    width: 100%;
    height: 100%;
    top: 0;
}
section:not(.mainvisual_v4) .main__header__form {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}
.main__h1 {
    position: absolute;
    bottom: 20px;
    left: 50px;
    width: calc(100% - 540px - 250px);
}
.main__h1 img {
width: 100%;
}

.mainvisual_v4 {
    background-image: linear-gradient(90deg, rgba(20,25,73,1) 0%, rgba(20,25,73,1) 35%, rgba(20,25,73,1) 60%, rgba(11,34,110,1) 90%);
}

.mainvisual_v4 header {
    padding: 15px;
}
.mainvisual_v4 header .header__indexlogo {
    width: 130px;
    height: auto;
}
.mainvisual_v4 .contents-box {
    margin: 0 auto;
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.mainvisual_v4 .contents-box h1 {
    width: 58%;
}
.mainvisual_v4 .contents-box h1 img {
    width: 100%;
}
.mainvisual_v4 .contents-box .main__header__form  {
    margin-top: 15px;
    width: 40%;
    box-sizing: border-box;
}
.mainvisual_v4 .contents-box .main__header__form .in-page-form { width: 90% }
/* メインコンテンツ */
.lede {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin: 70px 0 40px;
}
.content__header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    gap: 2rem;
    color: #111b45;
    margin: 0 0 70px;
}
.content__header__h2.serif {
    font-size: 72px;
}

.content__header__ja {
    font-size: 36px;
}

/* ポイント */
.section__point {
    padding: 20px 0;
    background: rgb(20,25,73);
    background: linear-gradient(180deg, rgba(20,25,73,1) 30%, rgba(11,34,110,1) 90%);
}
.point__item {
    width: 1080px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    /* grid-template-rows: repeat(2, 1fr); */
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    color: #fff;;
}
.point__num {
    grid-area: 1 / 1 / 3 / 2;
    font-style: italic;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
}
.point__num__text {
    font-size: 50px;
}
.point__num__number {
    font-size: 120px;
}
.point__title{
    margin-bottom: 3em;;
}
.point__title h3 {
    font-size: 36px;
    font-weight: normal;
}
.point__title h3 b{
    font-size: 1.5em;
    font-weight: bold;
}
.color-gold{
    color: var(--gold);
}
.point__image {
    width: 100%;
    margin-bottom: 2em;
}
.point__text p {
    font-size: 24px;
    line-height: 2;
    margin-bottom: 2rem;
}
.underline-gold {
    text-decoration: underline;
    text-underline-offset: 0.4em;
    text-decoration-color: var(--gold);
}

.youtube__wrap {
    max-width: 840px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
  }
  .youtube__wrap iframe {
    width: 100%;
    height: 100%;
  }

  /* フッター */
footer,footer a {
    background: #141a29;
    color: #fff;
}

.footer__box {
    max-width: 1080px;
    margin: 0px auto;
    padding: 50px 0 200px;
    line-height: 1.7;
    font-size: 14px;
}

.footer__privacy {
    text-align: right;
}

p.footer__privacy a {
    color: #fff;
}

/* 固定ボタン */
.fixedcta {
    position: fixed;
    bottom: 0;
    width: 100%;
    display:none;
}

a.fixedcta__btn {
    FONT-WEIGHT: 500;
    display: block;
    background: #d91819;
    text-align: center;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    line-height: 70px;
    font-size: 26px;
    border-radius: 3px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 30%);
    transition: .3s;
}

a.fixedcta__btn:hover {
    background: #e86763;
}
p.small{
    font-size:0.75em !important;
}