@charset "utf-8"; /* ==========================================
 共通
============================================*/
* {
    box-sizing: border-box;
    padding-top: 10 px;
    padding-bottom: 10 px;
}

html {
    scroll-behavior: smooth;
}

/* 定数定義 */
:root {
    --font-default: 'Hiragino Kaku Gothic Pro', 'meiryo', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    --font-serif: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    --font-gothic: "Noto Sans JP";
    --font-size: clamp(15px,4vw,16px);
    --line-height: 1.6;
    --container-size: 925px;
}

.font-default {
    font-family: var(--font-default);
}

.font-serif {
    font-family: var(--font-serif);
}

.font-gothic {
    font-family: var(--font-gothic);
}

body {
    font-family: 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    font-size: var( --font-size);
    line-height: var( --line-height);
    color: #383d5c;
    background-color: #f3f1f1;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

@media (min-width: 992px) {
    body {
        /* font-size: 22px; */
    }
}

/* カラー定義 */
:root {
    --gold: #d7a750;
    --beige: #f6f4f2;
    --orange: #fc6f57;
    --red: #ff0000;
    --red: #E30003;
    --pink: #e6316f;
    --winered: #920200;
    --yellow: #ffff5e;
    --yellow: #ffff00;
    --black: #000;
    --white: #fff;
    --gray: #8e8e8e;
}

.text-pink {
    color: var(--pink) !important;
}

.text-red {
    color: var(--red)!important;
}

.text-winered {
    color: var(--winered)!important;
}

.text-gold {
    color: var(--gold)!important;
    background-image: linear-gradient( 0deg , #B67B03 0.1em, #DAAF08 0.2em, #FEE9A0 0.3em, #DAAF08 0.4em, #B67B03 0.5em);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255,255,255,0);
}

.bg-red {
    background-color: var(--red)!important;
}

.bg-winered {
    background-color: var(--winered)!important;
}

.bg-gold {
    background-color: var(--gold)!important;
}

.bg-beige {
    background-color: var(--beige)!important;
}

/* 文字サイズ */
.text-larger {
    font-size: 1.3em;
}

.text-large {
    font-size: 1.9em;
}

/* ネオンシャドウ */
.x-sign {
    text-shadow: 0 0 10px var(--color1), 0 0 20px var(--color2), 0 0 40px var(--color3), 0 0 80px var(--color4);
}

.x-sign--type1 {
    color: yellow;
    --color1: goldenrod;
    --color2: orangered;
    --color3: mediumblue;
    --color4: purple;
}

.x-sign--type2 {
    color: lightpink;
    --color1: pink;
    --color2: orangered;
    --color3: red;
    --color4: magenta;
}

.x-sign--type3 {
    color: lightyellow;
    --color1: yellow;
    --color2: lime;
    --color3: green;
    --color4: mediumblue;
}

.x-sign--type4 {
    color: lightyellow;
    --color1: gold;
    --color2: firebrick;
    --color3: pink;
    --color4: red;
}

.x-sign--type5 {
    color: azure;
    --color1: azure;
    --color2: aqua;
    --color3: dodgerblue;
    --color4: blue;
}

.x-sign--type6 {
    color: tomato;
    --color1: orangered;
    --color2: firebrick;
    --color3: maroon;
    --color4: darkred;
}

.x-sign--type7 {
    color: lightyellow;
    --color1: yellow;
    --color2: orange;
    --color3: brown;
    --color4: purple;
}

.x-sign--type8 {
    color: yellow;
    --color1: yellow;
    --color2: lime;
    --color3: green;
    --color4: darkgreen;
}

.x-sign--type9 {
    color: lightyellow;
    --color1: yellow;
    --color2: gold;
    --color3: orange;
    --color4: darkred;
}

/* マーカー */
.mark, mark {
    background-color: var(--yellow);
    padding: 0;
}

.mark--orange {
    background-color: #ffd36f;
}

/* 画像 */
.img-wrap {
    position: relative;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}

a img {
    transition: 0.3s;
}

a:hover img {
    filter: brightness(1.2);
}

/* 段落 */
p {
    margin-bottom: 1.5em;
    margin-top: 1.5em;
}

/* スペーサー */
hr {
    margin: 0;
    border: none;
}

.spacer {
    margin-bottom: 2em;
    background-color: rgba(255,255,255,0);
}

.spacer--lg {
    margin-bottom: 3em;
}

/* マージン微調整 */
.-m1 {
    margin-top: -1px;
    margin-bottom: -1px;
}

.-mb1 {
    margin-bottom: -1px;
}

/* リスト */
ul,ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* ボタン */
.btn-wrap {
    width: 100%;
    text-align: center;
    position: relative;
}

.btn {
    position: relative;
    transition: 0.3s;
}

.btn:focus {
    box-shadow: none;
}

/* TOPに戻る */
#page-top {
    position: fixed;
    right: 5%;
    bottom: calc(20vw + 20px);
    bottom: 5%;
    font-size: 3vw;
    margin: 0;
    z-index: 10;
    opacity: 0;
    transform: translateY(100%);
    transition: 0.5s ease-in-out;
}

#page-top.show {
    opacity: 1;
    transform: translateY(0);
}

#page-top a {
    padding: 1em;
    background: #005982;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s ease;
    border-radius: 5px;
    display: block;
    line-height: 1;
    box-shadow: 1px 2px 4px 0px rgb(0 0 0 / 62%);
}

#page-top a:hover {
}

@media (min-width: 992px) {
    #page-top {
        right: 25px;
        bottom: 25px;
        font-size: 1em;
    }
}

/* 遅延ロード */
[lazyload] {
    /*content-visibility: auto;*/
}

/* ==========================================
 アニメーション
============================================*/
/* パルス */
[data-aos="pulse"] {
    animation-name: pulse;
    animation-timing-function: ease-in-out;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        transform: scaleX(1)
    }

    50% {
        transform: scale(1.05,1.05);
    }

    to {
        transform: scaleX(1)
    }
}

/* 波紋 */
[data-aos=ring]::before, [data-aos=ring]::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 120px;
    box-shadow: 0 0 50px rgb(255, 255, 255) inset;
    animation: ring 2s ease-out infinite;
}

[data-aos=ring]::after {
    animation-delay: .4s;
}

@keyframes ring {
    0% {
        transform: scale(.95);
        opacity: 1
    }

    90% {
        opacity: .1
    }

    to {
        transform: scale(1.05,1.05);
        opacity: 0
    }
}

[data-aos=ring]::before, [data-aos=ring]::after {
    border-radius: 120px;
    box-shadow: 0 0 250px rgb(255 136 70 / 38%) inset;
}

/* 点滅 */
[data-aos=blink] {
    opacity: 0;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* バウンス */
[data-aos=bounce] {
    visibility: visible;
    animation-duration: 2s;
    animation-iteration-count: 1000;
    animation-name: bounce;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(-50px);
        -ms-transform: translateY(50px);
        transform: translateY(-50px);
    }

    60% {
        -webkit-transform: translateY(-25px);
        -ms-transform: translateY(-25px);
        transform: translateY(-25px);
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

/* ==========================================
 コンテナ
============================================*/
.container {
    max-width: var(--container-size);
    /* padding-left: 0; */
    /* padding-right: 0; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* ==========================================
 コンテンツ：共通スタイル
============================================*/
/* セクション */
.section {
    overflow: hidden;
    position: relative;
}

.section__header {
    position: relative;
}

.section__heading {
    margin-bottom: 0;
}

/* テキストを入れるインナーボックス */
.innerTxt {
    padding: 0 clamp(30px,8vw,50px);
}

/* テキストエリア：基本スタイル */
.txtbox {
    width: calc(100% * (1000 / 1100));
    margin-left: auto;
    margin-right: auto;
    padding: 0 3.7vw;
    z-index: 1;
    position: relative;
}

@media (min-width: 992px) {
    .txtbox {
        width: calc(100vw * (1000 / 1920));
        padding: 50px;
    }
}

/* テキストエリア：背景ホワイト半透明 */
.txtbox--type1 {
    background-color: rgba(255,255,255,0.5);
}

/* テキストエリア：文字ホワイト */
.txtbox--type2 {
    color: var(--white);
}

/* テキストエリア：文字ホワイト＋背景ブラック半透明 */
.txtbox--type3 {
    color: var(--white);
    background-color: rgba(0,0,0,0.7);
}

/* テキストエリア：背景ホワイト+左右グレーボーダー */
.txtbox--type4 {
    background-color: var(--white);
    border-left: 2px solid #757273;
    border-right: 2px solid #757273;
    padding: clamp(30px,8vw,50px) 0;
}

/* テキストエリア：文字ホワイト＋背景ピンク半透明 */
.txtbox--type5 {
    color: var(--white);
    background-color: rgba(179, 62 ,89,0.7);
}

/* テキストエリア：背景格子＋左右ボーダー */
.txtbox--type6 {
    background: url(../images/bg-cross.png);
    border-left: 2px solid #757273;
    border-right: 2px solid #757273;
    /*padding: clamp(15px,4vw,25px);*/
}

/* テキストエリア内の全幅ボックス */
.txtbox .full {
    margin-left: -3.7vw;
    margin-right: -3.7vw;
    margin-left: clamp(-30px,-8vw,-50px);
    margin-right: clamp(-30px,-8vw,-50px);
}

@media (min-width: 992px) {
    .txtbox .full {
        margin-left: -50px;
        margin-right: -50px;
    }
}

/* ==========================================
 ヘッダー
============================================*/
.header {
    background-color: #005982;
    padding-top: 10px;
    padding-bottom: 10px;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 40%;
}

.phone {
    width: 48%;
}

@media (min-width: 992px) {
    .header {
    }

    .header .container {
        max-width: 913px;
    }

    .logo {
        width: 22%;
    }

    .phone {
        width: 32%;
    }
}

/* ==========================================
 コンテンツ
============================================*/
/* Box1 */
.box1 {
    background-color: #fff;
    padding: 15px;
}

.box1 h2 {
    margin-bottom: 5%;
}

.box1 h3 {
    margin-bottom: 5%;
}

.box1__body {
}

.box1__body p:first-child {
    margin-top: 0;
}

@media (min-width: 992px) {
    .box1 {
        padding: 70px 70px 50px;
    }

    .box1 h3 {
        margin-bottom: 40px;
    }
}

/* Box2 */
.box2 {
    margin-bottom: 2%;
    background-color: #fff;
}

.box2 h3 {
    background-color: #0ac1e0;
    margin-bottom: 0;
}

.box2 h3 img {
    margin-left: 0;
    width: 48%;
}

.box2__body {
    padding: 15px;
    line-height: 2;
}

.box2__body img {
    margin-bottom: 5%;
}

@media (min-width: 992px) {
    .box2 {
        margin-bottom: 45px;
    }

    .box2 h3 img {
        width: 20%;
    }

    .box2__body {
        padding: 30px 40px;
    }

    .box2__body img {
        margin-bottom: 0;
    }
}

/* Box3 */
.box3 {
    background-color: #f8f8f8;
    padding: 15px;
}

.box3 h2 {
    margin-bottom: 5%;
}

.box3__body {
    padding: 15px;
}

.box3__body .row>div {
    background-color: #fff;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 3%;
}

.box3__body p {
    padding: 0 1em;
    line-height: 2;
}

.box3__body h3 {
    background-color: #00a0e9;
    padding: 5%;
    margin-bottom: 0;
}

.box3__body img {
    width: 66%;
}

@media (min-width: 992px) {
    .box3 {
        padding: 70px 70px 50px;
    }

    .box3 h2 {
        margin-bottom: 30px;
    }

    .box3__body .row>div {
        width: calc(50% - 25px);
    }

    .box3__body h3 {
        padding: 15px;
        height: 6.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .box3__body img {
        width: auto;
    }

    .box3__body p {
        padding: 0 25px;
    }
}

/* Main Visual */
.mv {
    padding-top: 5%;
    padding-bottom: 5%;
    text-align: center;
    background-color: #fbfbf7;
}

.mv__img {
}

.mv .container {
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 992px) {
    .mv {
        padding: 35px 0;
    }

    .mv .container {
        max-width: 100%;
    }
}

/* Response Device */
.rd {
    background-color: #005982;
    padding-top: 5%;
    padding-bottom: 5%;
}

.rd__img {
    margin-bottom: 15px;
    transform: translateX(-3%);
}

.txt-01 {
    margin-bottom: 15px;
}

.rd__annotation {
    color: #fff;
    line-height: 1.3;
    font-size: 70%;
    max-height: 6em;
    overflow-y: scroll;
    margin: 0;
}

@media (min-width: 992px) {
    .rd {
        padding-top: 60px;
        padding-bottom: 50px;
    }

    .rd__img {
        margin-bottom: 0;
        transform: translateX(-3%) translateY(-15px);
    }

    .txt-01 {
        margin-bottom: 25px;
        margin-left: 0;
    }

    .rd .col-12 {
        text-align: center;
    }

    .rd__annotation {
        max-height: none;
        overflow-y: hidden;
        max-width: 900px;
        display: inline-block;
        text-align: left;
    }
}

/* Introduction */
.intro {
    padding-top: 5%;
    padding-bottom: 13%;
}

.intro h2 {
    margin-bottom: 5%;
}

.intro__video {
    margin-bottom: 8%;
}

@media (min-width: 992px) {
    .intro {
        padding-top: 50px;
        padding-bottom: 130px;
    }

    .intro h2 {
        margin-bottom: 25px;
    }

    .intro__video {
        max-width: 800px;
        margin: 0 auto 50px;
    }
}

/* Target */
.target {
    padding-top: 5%;
    padding-bottom: 5%;
    background-color: #005982;
}

.target__img {
    margin-top: -14%;
}

@media (min-width: 992px) {
    .target {
        padding-top: 70px;
        padding-bottom: 50px;
    }

    .target__img {
        width: 100%;
        margin-top: -145px;
    }
}

/* Contents */
.contents {
    padding-top: 10%;
    padding-bottom: 5%;
}

.contents h2 {
    margin-bottom: 5%;
}

@media (min-width: 992px) {
    .contents {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .contents h2 {
        margin-bottom: 40px;
    }
}

/* Message */
.message {
    padding-top: 8%;
    padding-bottom: 8%;
    line-height: 2;
}

@media (min-width: 992px) {
    .message {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* Profile */
.profile {
    padding-top: 5%;
    padding-bottom: 5%;
    line-height: 2;
}

.profile h2 {
    background-color: #03a5c0;
    padding: 5%;
}

.profile h2 img {
    width: 57%;
}

@media (min-width: 992px) {
    .profile {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .profile h2 {
        padding: 15px;
        margin-bottom: 30px;
    }

    .profile h2 img {
        width: 267px;
    }
}

/* Price */
.price {
    padding-top: 5%;
    padding-bottom: 5%;
    background-color: #fff;
}

@media (min-width: 992px) {
    .price {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* Caution */
.caution {
    padding-top: 8%;
    padding-bottom: 8%;
}

@media (min-width: 992px) {
    .caution {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

/* フォーム */
.c-form {
}

.c-form--1 {
    top: 46%;
    max-width: 867px;
}

/* プレースホルダ */
.form-control::placeholder {
    color: #707070;
}

/* 行 */
.form-group {
    margin-bottom: 1em;
}

/* 入力コントロール */
.form-control, .form-select {
    border: 4px solid #707070;
    border-radius: 0;
    font-size: 16px;
    text-align: center;
    font-weight: bold;
}

.form-control--type1 {
    border: solid 3px #fcc786;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 3%;
    font-size: clamp(12px,3.2vw, 24px);
    padding: clamp(1em,3vw,2em) 0.5em;
}

/* 諾否チェックボックス */
.form-acceptance {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 2em;
    padding: 1em 0;
}

.form-acceptance .form-check-input {
    float: none;
    display: block;
    margin: 0;
    width: 4em;
    height: 4em;
    background-color: transparent;
    border-color: var(--black);
}

.form-acceptance .form-check-input:checked {
    background-color: var(--black);
}

/* 送信ボタン */
.c-form-submit {
    padding: 15px 10px;
    border: none;
    display: block;
    margin: auto;
}

.c-form-submit.disabled {
    filter: grayscale(1);
    opacity: 1;
}

.c-form-submit img {
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.c-form-submit:hover img {
    filter: brightness(1.15);
}

@media (min-width: 992px) {
    .c-form {
        max-width: 450px;
    }

    .c-form--1 {
        width: calc(100vw * (867 / 1920));
    }

    /* 入力コントロール */
    .form-control, .form-select {
        font-size: inherit;
    }
}

/* ==========================================
 フッター
============================================*/
.c-footer {
    color: #666666;
    background: #e5e5e5;
    font-size: 12px;
}

.c-footer__body {
    font-size: clamp(10px,2.6vw,20px);
    color: var(--gray);
    background: var(--black);
    line-height: 1.6;
    text-align: center;
    font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
    padding: 40px 15px;
    padding-bottom: clamp(40px,6vw,80px);
}

.fNav {
    display: flex;
    justify-content: center;
}

.fNav__link {
    color: inherit;
    display: block;
    padding: 1em;
    text-decoration: none;
    position: relative;
}

.fNav__link:hover {
    color: #666666;
    ; }

.fNav__link:not(:last-child)::after {
    background-color: #666666;
    height: 50%;
    width: 1px;
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.c-copy {
    /* letter-spacing: 0.1em; */
    margin: 0;
    line-height: 1.3;
    text-align: center;
    margin: 0 calc((100% - 100vw) / 2);
    color: #fff;
    background-color: #bfbfbf;
    padding: 1em 0.5em;
}
