@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;600;700;800&family=Noto+Sans:wght@300;400;600;700;800&display=swap');


/* Base Style
------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    color: #333;
    font-size: 1.6rem;
    line-height: 1.5;
    font-family: 'Noto Sans', 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    /* padding: 0 16px; */
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.5;
    margin: 0;
}

p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

button {
    border: none;
    outline: none;
}

/* 各ページ共通
------------------------------ */
/* コンテナ */
.container {
    width: 100%;
    max-width: 1100px;
    padding: 0 4%;
    margin: 0 auto 150px;
}
/* ボタン */
.btn {
    display: inline-block;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    padding: 0.5em 1em;
    border-radius: 4px;
    border-bottom: solid 3px #5e7fca;
    background: linear-gradient(45deg, #67ceff 0%, #6795fd 100%);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
    cursor: pointer;
    overflow: hidden;
    transition: all .15s ease;
}
.btn:hover {
    color: #fff;
}
.btn:active {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
    border-bottom: none;
}
/* セクションタイトル */
.sectionTitle {
    max-width: 860px;
    margin: 0 auto 80px;
}
.sectionTitle > .heading {
    font-size: 4.8rem;
    font-weight: bold;
    color: #6795fd; /* 非対応のブラウザの為に色を設定 */
}
.sectionTitle > .heading span {
    display: flex;
	align-items: center;
    justify-content: left;
	color: #6795fd;
	font-size: 18px;
}
.sectionTitle > .heading span::before {
	content: '';
	display: inline-block;
	margin-right: 20px;
	width: 40px;
	height: 2px;
	background: linear-gradient(45deg, #6795fd 0%, #91fdb7 100%);
}
.textBold {
    font-weight: bold;
    background: linear-gradient(transparent 75%, #fff799 75%);
}
@media (max-width: 834px) {
    .sectionTitle {
        text-align: center;
    }
    .sectionTitle > .heading {
        font-size: 3.6rem;
    }
    .sectionTitle > .heading span {
        justify-content: center;
        color: #6795fd;
        font-size: 16px;
    }
    .sectionTitle > .heading span::before {
        display: none;
    }
}
@media (max-width: 450px){
    .sectionTitle > .heading {
        font-size: 3.2rem;
    }
}
.anchor {
    padding-top: 120px;
    margin-top: -120px;
}

/* Login Modal
------------------------------ */
.modal-content {
    border-radius: 10px;
    overflow: hidden;
    border: none; /* bootstrapのプロパティキャンセル */
    outline: none; /* bootstrapのプロパティキャンセル */
}
.modal-header {
    background: linear-gradient(120deg, rgba(255,255,255,1) 40%, rgba(161,196,253,0.8) 70%, rgba(194,233,251,0.8) 100%);
    border-bottom: none;
    box-shadow:  0px 4px 10px rgba(0, 0, 0, .2);
    margin-bottom: 5px;
}
.login-modal .modal-header img {
    margin-left: 20px;
}
.modal-body > p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}
.modal-body > a {
    color: #fff;
}
.modal-body > .btn:hover {
    background-image: linear-gradient(45deg, #6795fd 0%, #67ceff 100%);
    opacity: .9;
}
.modal-body > a > img {
    display: inline-block;
}
.modal-body > .mb_20 {
    margin-bottom: 20px;
}
.modal-body > .text-center > a {
    color: #6795fd;
}
.modal-body > .text-center > a:hover {
    cursor: pointer;
    opacity: .7;
}

@media (max-width: 450px) {
    .modal-body > p {
        font-size: 1.4rem;
    }
}
/* Header
------------------------------ */
.header {
    width: 100%;
    height: 90px;
    padding: 20px 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(120deg, rgba(255,255,255,1) 25%, rgba(161,196,253,0.8) 50%, rgba(194,233,251,0.8) 100%);
    box-shadow: 0px 8px 10px rgba(0, 0, 0, .2);
    position: sticky;
    top: 0;
    z-index: 10;
    margin-bottom: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.headerLogo {
    width: 200px;
    height:50px;
}
.navItems {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.signUpBtn {
    background-image: linear-gradient(45deg, #FFC107 0%, #ff8b5f 100%);
    border-bottom: solid 3px #c58668;
}
.loginBtn:hover {
    background-image: linear-gradient(45deg, #6795fd 0%, #67ceff 100%);
}
.signUpBtn:hover {
    background-image: linear-gradient(45deg, #ff8b5f 0%, #FFC107 100%);
}
.loginBtn:hover,
.signUpBtn:hover {
    opacity: .9;
}
.headerNav > .navItems > .navItem {
    padding-left: 20px;
}
.headerNav > .navItems > .navItem > .itemLink {
    font-size: 1.6rem;
    position: relative;
}
.headerNav > .navItems > .navItem > .itemLink::after {
    position: absolute;
    content: '';
    display: block;
    height: 2px;
    background-color: #333;
    bottom: -10px;
    left: 0;
    width: 0;
    transition: all .5s ease;
}
.headerNav > .navItems > .navItem > .itemLink:hover {
    /* font-weight: bold; */
    cursor: pointer;
    opacity: .8;
}
.headerNav > .navItems > .navItem > .itemLink:hover::after {
    width: 100%;
}
.openBtn {
    display: none;
}
.globalNav {
    display: none;
}
/* レスポンシブ */
/* グラデーションの設定 */
@media (max-width: 1024px) {
    .header {
        background: linear-gradient(120deg, rgba(255,255,255,1) 30%, rgba(161,196,253,0.8) 50%, rgba(194,233,251,0.8) 100%);
    }
}
@media (max-width: 834px) {
    .header {
        background: linear-gradient(120deg, rgba(255,255,255,1) 30%, rgba(161,196,253,0.8) 80%, rgba(194,233,251,0.8) 100%);
    }
}
@media (max-width: 600px) {
    .header {
        background: linear-gradient(120deg, rgba(255,255,255,1) 45%, rgba(161,196,253,0.8) 70%, rgba(194,233,251,0.8) 100%);
    }
}
@media (max-width: 450px) {
    .header {
        background: linear-gradient(120deg, rgba(255,255,255,1) 50%, rgba(161,196,253,0.8) 70%, rgba(194,233,251,0.8) 100%);
    }
}
/* ハンバーガーメニュー・パネル */
@media (max-width:834px) {
    .headerNav {
        display: none;
    }
    /* ハンバーガーメニュー */
    .openBtn {
        display: block;
        position: relative; /* ボタン内側の基点となるためrelativeを指定 */
        background: linear-gradient(45deg, #67ceff 0%, #6795fd 100%);
        cursor: pointer;
        width: 50px;
        height:50px;
        border-radius: 5px;
        z-index: 99;
    }
    /* ボタン内側 */
    .openBtn span {
        display: inline-block;
        transition: all .4s; /* アニメーションの設定 */
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 5px;
        background: #fff;
        width: 45%;
    }
    .openBtn span:nth-of-type(1) {
        top:13px;
    }
    .openBtn span:nth-of-type(2) {
        top:19px;
    }
    .openBtn span:nth-of-type(3) {
        top:25px;
    }
    .openBtn span:nth-of-type(3)::after {
        content:"Menu"; /* 3つ目の要素のafterにMenu表示を指定 */
        position: absolute;
        top:5px;
        left:-3px;
        color: #fff;
        font-size: 0.6rem;
        text-transform: uppercase;
    }
    /* safariの設定 */
    _::-webkit-full-page-media,
    _:future,
    :root .openBtn span:nth-of-type(3)::after {
        top: 8px;
        left: 1px;
        font-size: 0.7rem;
    }
    /* firefoxの設定 */
    @-moz-document url-prefix(){
        .openBtn span:nth-of-type(3)::after {
            top: 8px;
            left: 1px;
            font-size: 0.7rem;
        }
    }
    /* activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更 */
    .openBtn.active span:nth-of-type(1) {
        top: 14px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    .openBtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    .openBtn.active span:nth-of-type(3) {
        top: 26px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
    .openBtn.active span:nth-of-type(3)::after {
        content:"Close"; /* 3つ目の要素のafterにClose表示を指定 */
        transform: translateY(0) rotate(-45deg);
        top:5px;
        left:4px;
    }
    /* safariの設定 */
    _::-webkit-full-page-media,
    _:future,
    :root .openBtn.active span:nth-of-type(3)::after {
        top:8px;
        left: 8px;
        font-size: 0.7rem;
    }
    /* firefoxの設定 */
    @-moz-document url-prefix(){
        .openBtn.active span:nth-of-type(3)::after {
            top:8px;
            left: 8px;
            font-size: 0.7rem;
        }
    }
    /* ナビゲーションパネル */
    .globalNav {
        display: block;
        /* position:fixed;にし、z-indexの数値を大きくして前面へ */
        position:fixed;
        z-index: 15;
        /* ナビのスタート位置と形状 */
        top:0;
        right: -120%;
        width:100%;
        height: 100vh; /* ナビの高さ */
        background:#fff;
        /* 動き */
        transition: all 0.6s;
    }
    /* アクティブクラスがついたら位置を0に */
    .globalNav.panelactive {
        right: 0;
    }
    /* ナビゲーション */
    .globalNav > .globalNavItems {
        /* ナビゲーション天地中央揃え */
        position: absolute;
        z-index: 15;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
    }
    /* リストのレイアウト設定 */
    .globalNav > .globalNavItems > .navItem {
        text-align: center;
        padding-bottom: 20px;
    }
}

/* Hero
------------------------------ */
.hero {
    width: 100%;
    /* margin-bottom: 150px; */
    margin-bottom: 12%;
}
.hero > .heroContainer {
    position: relative;
}
.hero > .heroContainer > .heroContent {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-end;
}
.heroContent > .imageWrapper {
    width: 100%;
    height: 650px;
    background-image: url('../img/back_1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(5.5px);
    border-radius: 20px 0 0 20px;
    overflow: hidden;
}
.heroContent > .btnWrapper {
    width: 40%;
    padding: 0 50px 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.heroContent > .btnWrapper > .catchSub {
    display: inline-block;
    white-space: nowrap;
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    background: linear-gradient(transparent 75%, #fff799 75%);
}
.heroContent > .btnWrapper > .entryBtn {
    width: 250px;
    padding: 20px 0;
    border-radius: 8px;
    font-size: 1.8rem;
    margin: 0 auto;
}
.heroContent > .btnWrapper > .entryBtn:hover {
    background: linear-gradient(45deg, #6795fd 0%, #67ceff 100%);
    opacity: .9;
}
.heroContent > .btnWrapper >.entryBtn:active {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
    border-bottom: none;
}
.heroContainer > .catch {
    position: absolute;
    top: 30%;
    left: 4%;
    z-index: 2;
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    /* 背景色にグラデーションを指定 */
    background: linear-gradient(45deg, #6795fd 40%, #3DD980 80%);
    padding: 15px 40px;
    margin: 0;
}
.heroContainer > .imageWrapper > .imageSub {
    position: absolute;
    top: 47%;
    right: 4%;
    width: 60%;
}
/* レスポンシブ */
@media (min-width: 1500px) {
    .hero {
        margin-bottom: 15%;
    }
}
@media (min-width: 1800px) {
    .hero {
        margin-bottom: 18%;
    }
}
@media (max-width: 1200px) {
    .hero > .heroContainer > .heroContent {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }
    .heroContent > .imageWrapper {
        width: 100%;
        height: 600px;
        border-radius: 0;
        overflow: hidden;
    }
    .heroContent > .btnWrapper {
        margin-top: 80px;
        width: 100%;
        padding: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .heroContainer > .catch {
        width: 70%;
        position: absolute;
        top: 25%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 42px;
    }
    .heroContainer > .imageWrapper > .imageSub {
        position: absolute;
        top: 35%;
        right: 20%;
    }
}
@media (max-width: 1024px) {
    .heroContainer > .imageWrapper > .imageSub {
        position: absolute;
        top: 35%;
        right: 18%;
        width: 65%;
    }
}
@media (max-width: 900px) {
    .heroContainer > .imageWrapper > .imageSub {
        position: absolute;
        top: 35%;
        right: 10%;
        width: 80vw;
    }
}
@media (max-width: 700px) {
    .heroContainer > .imageWrapper > .imageSub {
        position: absolute;
        top: 45%;
        right: 10%;
        width: 80vw;
    }
}
@media (max-width: 600px) {
    .hero {
        width: 100%;
        margin-bottom: 120px;
    }
    .heroContent > .btnWrapper > .catchSub {
        font-size: 1.6rem;
    }
    .heroContent > .btnWrapper > .entryBtn {
        width: 200px;
        font-size: 1.6rem;
    }
    .heroContainer > .catch {
        font-size: 38px;
    }
    .heroContainer > .imageWrapper > .imageSub {
        position: absolute;
        top: 45%;
        right: 10%;
        width: 80vw;
    }
}
@media (max-width: 550px) {
    .heroContainer > .catch {
        width: 90%;
        font-size: 5.5vw;
    }
    .heroContent > .imageWrapper {
        height: 440px
    }
    .heroContainer > .imageWrapper > .imageSub {
        position: absolute;
        top: 32%;
        right: 0%;
        width: 100vw;
    }
}

/* Main
------------------------------ */
.contentWrapper {
    margin: 0 auto;
}
/* Movie section */
.movie {
    max-width: 800px;
    margin-bottom: 100px;
}
.movie > .textContainer > .headline {
    margin-bottom: 20px;
}
.movie > .textContainer > .text {
    font-size: 2rem;
    margin-bottom: 10px;
}
iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}
/* レスポンシブ */
@media (max-width: 600px) {
    .movie > .textContainer > .text {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
}
/* About section */
.about > .contentWrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 100px;
}
.about > .contentWrapper.reverse {
    flex-direction: row-reverse;
}
.textContainer > .headline {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: bold;
}
.about > .contentWrapper > .imageWrapper {
    min-width: 250px;
    width: 250px;
}
.about > .textContainer > .text {
    font-size: 1.8rem;
}
/* レスポンシブ */
@media (max-width: 834px) {
    .about > .contentWrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 60px;
        margin-bottom: 120px;
    }
    .about > .contentWrapper.reverse {
        flex-direction: column;
    }
    .textContainer > .headline {
        font-size: 2.4rem;
        margin-bottom: 20px;
        text-align: center;
    }
    .about > .contentWrapper > .imageWrapper {
        max-width: 350px;
    }
    .imageWrapper > .aboutImage3 {
        width: 300px;
    }
    .about > .textContainer {
        width: 100%;
        max-width: 450px;
        padding: 0 3%;;
    }
    .about > .textContainer > .text {
        font-size: 1.6rem;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .about {
        margin-bottom: 120px;
    }
    .about > .contentWrapper {
        margin-bottom: 100px;
    }
}
@media (max-width: 450px) {
    .about > .contentWrapper {
        margin-bottom: 80px;
    }
}
/* Function section */
.funcitonInfo > .contentWrapper {
    padding-bottom: 50px;
}
.cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    gap: 30px;
}
.cards > .card {
    max-width: 100%;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    transition: all .25s;
    text-align: justify;
    word-wrap: none;
}
.cards > .card:hover {
    transform: scale(1.1);
}
.cards > .card > .headingWrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}
.card > .headingWrapper > .functionIcon {
    width: 50px;
}
.cards > .card > .headingWrapper > .title {
    font-size: 2.4rem;
    font-weight: bold;
}
.cards > .card > .headingWrapper > .title.title-s {
    font-size: 1.8rem;
}
.card > .headingWrapper > .functionIcon > .number {
    font-size: 2.9rem;
    font-weight: bold;
    color: #6795fd;
}
.cards > .card > .textContainer {
    padding-top: 20px;
    border-top: 2px solid #dcdcdc;
}
.cards > .card > .textContainer > .text {
    font-size: 1.6rem;
    line-height: 1.8;
}
/* レスポンシブ */
@media (max-width: 834px) {
    .cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    .cards > .card {
        margin-bottom: 0;
    }
}
@media (max-width: 600px) {
    .cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .cards > .card {
        margin-bottom: 0;
    }
}

/* Price section */
.price {
    width: 100%;
    background-color: #f2f2f2;
    padding: 50px 0 150px;
}
.price.anchor {
    padding-top: 120px;
    margin-top: -120px;
}
.price.bottomArrow {
    position: relative;
}
.price.bottomArrow::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    top: 100%;
    left: 0;
    border-color: #f2f2f2 transparent transparent transparent;
    border-style: solid;
    border-width: 85px 49.4vw 0;
    z-index: 2;
}
.price > .container {
    margin-bottom: 0;
}
.price > .priceContainer > .cards {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}
.price > .priceContainer > .cards > .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.priceContainer > .cards > .card > .headingWrapper {
    gap: 0;
    margin-bottom: 20px;
}
.priceContainer > .cards > .card > .headingWrapper.mb-0 {
    margin-bottom: 0px;
}
.price > .priceContainer > .cards > .card > .priceWrapper {
    width: 100%;
    text-align: center;
    padding: 20px 0 10px;
    border-top: 2px solid #dcdcdc;
}
.price > .priceContainer > .cards > .card > .priceWrapper > .priceText {
    color: #ff8b5f;
    font-size: 2.8rem;
    font-weight: bold;
}
.price > .priceContainer > .cards > .card > .priceWrapper > .taxOff {
    color: #888;
    font-size: 1.6rem;
}
.price > .priceContainer > .cards > .card > .priceWrapper > .priceText.lineThrough {
    text-decoration: line-through;
}
.price > .priceContainer > .textContainer {
    margin-bottom: 50px;
}
.priceContainer > .textContainer > .text {
    font-size: 1.8rem;
    line-height: 2.2;
}
.priceContainer > .cards > .card {
    background-color: #fff;
}
.priceContainer > .cards > .card > .textContainer {
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;


}
.priceContainer > .cards > .card > .textContainer > .text {
    font-size: 1.6rem;
}
.priceContainer > .cards > .card > .textContainer > .btnWrapper {
    text-align: center;
}
.priceContainer > .cards > .card > .textContainer > .btnWrapper > .infoBtn {
    display: block;
    background-image: linear-gradient(45deg, #FDCDE0 0%, #FC81B3 100%);
    border-bottom: solid 3px #C9678E;
}
.priceContainer > .cards > .card > .textContainer > .btnWrapper > .infoBtn:hover {
    background-image: linear-gradient(45deg, #FC81B3 0%, #FDCDE0 100%);
    opacity: .8;
}
.priceContainer > .cards > .card > .textContainer > .btnWrapper > .infoBtn:active {
    border-bottom: none;
}
/* レスポンシブ */
@media (max-width: 600px) {
    .priceContainer > .textContainer > .text {
        font-size: 1.6rem;
        line-height: 2;
    }
    .price > .priceContainer > .cards {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .price.bottomArrow::after {
        bottom: -55px;
        border-width: 55px 50vw 0;
    }
}

/* Conversion section */
.conversion {
    position: relative;
    width: 100%;
    margin-bottom: 120px;
}
.conversion > .imageWrapper {
    height: 500px;
    background-image: url('../img/back_2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.conversion > .conversionHeading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.conversion > .conversionHeading > h4 {
    /* display: inline-block; */
    position: relative;
    color: #333;
    font-size: clamp(24px, 5vw, 36px);
    font-weight: bold;
    padding: .25em 1em;
    margin-bottom: 20px;
}
.conversion > .conversionHeading > h4::before,
.conversion > .conversionHeading > h4::after {
    content: '';
    width: 20px;
    height: 30px;
    position: absolute;
    display: inline-block;
}
.conversion > .conversionHeading > h4::before {
    border-top: 3px solid #333;
    border-left: 3px solid #333;
    top: 0;
    left: 0;
}
.conversion > .conversionHeading > h4::after {
    border-bottom: 3px solid #333;
    border-right: 3px solid #333;
    bottom: 0;
    right: 0;
}
.conversion > .conversionHeading > span {
    color: #333;
    font-size: 2rem;
    display: inline-block;
    background: linear-gradient(transparent 75%, #fff799 75%);
}
.conversion > .btnWrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(255,255,255,0.6);
    padding: 30px 0;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.conversion > .btnWrapper > .infoBtn {
    width: 250px;
    padding: 20px 0;
    border-radius: 8px;
    font-size: 1.8rem;
    background-image: linear-gradient(45deg, #FDCDE0 0%, #FC81B3 100%);
    border-bottom: solid 3px #C9678E;
}
.conversion > .btnWrapper > .entryBtn {
    width: 250px;
    padding: 20px 0;
    border-radius: 8px;
    font-size: 1.8rem;
}
.conversion > .btnWrapper > .entryBtn:hover {
    background: linear-gradient(45deg, #6795fd 0%, #67ceff 100%);
    opacity: .9;
}
.conversion > .btnWrapper > .infoBtn:hover {
    background-image: linear-gradient(45deg, #FC81B3 0%, #FDCDE0 100%);
    opacity: .9;
}
.conversion > .btnWrapper >.infoBtn:active {
    border-bottom: none;
}
/* レスポンシブ */
@media (max-width: 600px) {
    .conversion {
        margin-bottom: 120px;
    }
    .conversion > .imageWrapper {
        height: 400px;
    }
    .conversion > .conversionHeading {
        width: 280px;
    }
    .conversion > .conversionHeading > h4 {
        padding: 5px 10px;
        margin-bottom: 15px;
    }
    .conversion > .conversionHeading > h4::before,
    .conversion > .conversionHeading > h4::after {
        width: 15px;
        height: 25px;
    }
    .conversion > .conversionHeading > h4::before {
        border-top: 2px solid #333;
        border-left: 2px solid #333;
    }
    .conversion > .conversionHeading > h4::after {
        border-bottom: 2px solid #333;
        border-right: 2px solid #333;
    }
    .conversion > .conversionHeading > span {
        font-size: 1.8rem;
    }
    .conversion > .btnWrapper {
        padding: 20px 0;
    }
    .conversion > .btnWrapper > .entryBtn,
    .conversion > .btnWrapper > .infoBtn {
        width: 200px;
        font-size: 1.6rem;
    }
}
@media (max-width: 500px) {
    .conversion > .imageWrapper {
        height: 550px;
    }
    .conversion > .conversionHeading {
        padding-bottom: 100px;
    }
    .conversion > .btnWrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }
}
/* Service section */
.serviceInfo {
    width: 100%;
    background-color: #f2f2f2;
}
.serviceInfoContainer {
    padding-bottom: 8%;
}
.serviceInfoContent {
    position: relative;
}
.blob {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    height: 40vw;
    background: linear-gradient(45deg, #67ceff 0%, #6795fd 100%);
    animation: blobrotate 30s ease 0s infinite; /* アニメーションの設定 */
    z-index: 1;
    opacity: .5;
}
@keyframes blobrotate {

    0%, 100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
    }
    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }

}
.serviceInfoContent > .textContainer > .text {
    font-size: 1.8rem;
    line-height: 2.2;
    text-align: justify;
}
@media (min-width: 1500px) {
    .blob {
        width: 590px;
        height: 590px;
    }
}
@media (max-width: 960px) {
    .blob {
        width: 500px;
        height: 500px;
    }
}
@media (max-width: 834px) {
    .blob {
        display: none;
    }
    .serviceInfoContent > .textContainer > .text {
        font-size: 1.6rem;
        line-height: 2;
        text-align: justify;
    }
}
/* Screenshot section */
.screenshot {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 180px;
}
.screenshot > .sectionTitle > .notes {
    color: #666;
    font-size: 1.4rem;
}
.screenshot > .screenshotContainer {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}
.swiper {
    width: 100%;
    max-width: 1100px;
    padding-bottom: 20px;
}
.swiper-slide {
    /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
    height: 100%;
    text-align: center;
}
.slideItem {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.slideItem > .slideMedia {
    width: 100%;
    border-bottom: 2px solid #dcdcdc;
}
.slideItem > .slideContent {
    width: 100%;
    padding: 30px;
    font-size: 1.8rem;
    font-weight: bold;
}
.slideContent > .figureCaption {
    color: #666;
}
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    z-index: 2;
}
.swiper-button-prev {
    left: 4%;
    transform: rotate(-135deg);
}
.swiper-button-next {
    right: 4%;
    transform: rotate(45deg);
}
.swiper-button-prev::before,
.swiper-button-next::before {
    width: 15px;
    height: 15px;
    content: '';
    outline: none;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
}
/* ページネーションの位置 */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -50px;
    left: 0;
    width: 100%;
    z-index: 1;
}
/* ページネーションの色 */
.swiper-pagination-bullet {
    background-color: #6795fd;
}
@media (max-width: 834px) {
    .swiper {
        width: 70%;
    }
    .slideItem > .slideContent {
        padding: 20px;
        font-size: 1.6rem;
    }
}
@media (max-width: 600px) {
    .swiper-button-prev,
    .swiper-button-next {
        width: 30px;
        height: 30px;
    }
    .swiper-button-prev::before,
    .swiper-button-next::before {
        width: 10px;
        height: 10px;
        border-top: 1px solid #666;
        border-right: 1px solid #666;
    }
}
/* Footer */
.footer {
    width: 100%;
    background-color: #333;
}
.footerContainer {
    max-width: 1280px;
    padding: 50px 80px 30px;
    margin: 0 auto;
}
.footerContent {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    color: #fff;
    gap: 60px;
    margin-bottom: 80px;
}
.footerLogo {
    width: 250px;
    padding-bottom: 20px;
    transition: .3s;
}
.footerLogo:hover {
    opacity: .6;
}
.footerNav > .navItems {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.footerNav > .navItems > .navItem {
    padding-bottom: 15px;
}
.footerNav > .navItems > .navItem > .itemLink {
    position: relative;
    color: #fff;
    font-size: 1.6rem;
}
.footerNav > .navItems > .navItem > .itemLink:hover {
    opacity: .6;
}
.footerNav > .navItems > .navItem > .itemLink::after {
    position: absolute;
    content: '';
    display: block;
    height: 1px;
    background-color: #fff;
    bottom: -5px;
    left: 0;
    width: 0;
    transition: all .5s ease;
}
.footerNav > .navItems > .navItem > .itemLink:hover::after {
    width: 100%;
}
.copyRight {
    text-align: center;
    color: #fff;
}

/* プライバシーポリシー
    利用規約
    お問い合わせ
    共通
------------------------------ */
.privacy_policy > .sectionTitle,
.container.contanct > .sectionTitle {
    margin-bottom: 50px;
}
.text_end {
    line-height: 1.8;
    text-align: right;
    margin-bottom: 5%;
}
.lead {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 5%;
}
.lead.mb_3 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 3%;
}
.sentence > .textContainer {
    margin-bottom: 7%;
}
.sentence > .textContainer > .title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}
.sentence > .textContainer > p {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 15px;
}
.textContainer > ol {
    padding-left: 0;
}
.textContainer > ol > li {
    margin-bottom: 15px;
}
.textContainer .mt_20 {
    margin-top: 20px;
}
.textContainer .mt_20.pl_2rem {
    padding-left: 2rem;
}
.textContainer .mt_20 > li {
    list-style: inside;
    /* 改行時の文頭を揃える */
    margin-left: 1.4em;
    text-indent: -1.4em;
    margin-bottom: 15px;
}

/* お問い合わせ
------------------------------ */
.badge {
    background-color: #6795fd;
    border-radius: 15px;
    padding: 5px 10px;
}
.inputFormWrapper {
    margin-bottom: 30px;
}
.inputFormWrapper input {
    padding: .5em .5em;
    font-size: 1.6rem;
    outline: .5px solid #c0c0c0;
}
.inputFormWrapper input::placeholder {
    color: #c0c0c0;
}
.inputFormWrapper textarea {
    padding: .5em .5em;
    font-size: 1.6rem;
    outline: .5px solid #c0c0c0;
}
.inputFormWrapper textarea::placeholder {
    color: #c0c0c0;
}

/* アラート
------------------------------ */
.alert-light-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}
.alert-light-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}
.alert-light-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}
