@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}

body {
    font-family: "Manrope", "Noto Sans JP", "源ノ角ゴシック JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    color: #212122;
}

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

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
}

ul, li {
    list-style: none;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* 大きな背景画像 */
/*
.big-bg {
    background-image: url(../img/bg.jpeg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
*/

.image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background-size: cover;
    background-position: center center;

    animation: image-switch-animation 25s infinite;
    z-index: -1;
}

.src1 {
    background-image: url(../img/bg02.jpg);
}

.src2 {
    background-image: url(../img/bg01.jpg);
}

.src3 {
    background-image: url(../img/bg03.png);
}

.src4 {
    background-image: url(../img/bg04.jpeg);
}

.src5 {
    background-image: url(../img/bg05.jpg);
}

@keyframes image-switch-animation {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}

.image:nth-of-type(1) {
    animation-delay: 0s;
}

.image:nth-of-type(2) {
    animation-delay: 5s;
}

.image:nth-of-type(3) {
    animation-delay: 10s;
}

.image:nth-of-type(4) {
    animation-delay: 15s;
}


.image:nth-of-type(5) {
    animation-delay: 20s;
}

/* 見出し */
.contents-title {
    font-size: 3.375rem;
    padding: 60px 0 50px;
    font-weight: bold;
    letter-spacing: .08em;
    text-align: center;
    line-height: 1;
}

.contents-title.en {
    font-family: 'Manrope', sans-serif;
    padding-bottom: 10px;
    font-weight: 300;
}

.contents-title.jp {
    font-size: 1.25rem;
    font-weight: normal;
    padding-top: 10px;
    color: #8a8e94;
}

#contact {
    background-color: #F272AE;
}

.aside-contact .c-tel, .aside-contact .c-email {
    display: block;
    margin-bottom: 30px;
    margin-left: 30px;
    color: #fff;
    font-size: 2.25rem;
    font-weight: 400;
}

/* PC・SP表示/非表示設定 */
.pc {
    display: block;
}

.sp {
    display: none;
}

/* ボタン　*/
.btn {
    display: block !important;
    margin: 60px auto 0;
    text-align: center;
}

.btn .btn-link {
    line-height: 1;
    background-color: #FDDC71;
    margin: 0 auto;
    padding: 10px 8%;
    border-radius: 24px;
}

/* メインビジュアル
------------------------------- */
.mainvisual {
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
}

.page-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    align-items: center;
    position: absolute;
    top: 0;
    background-color: #fff;
}

.page-title {
    text-align: center;
    font-size: 2.395rem;
    font-weight: normal;
    text-transform: none;
    margin: 0 auto;
    margin-top: 70px;
    padding: 8px 30px;
    color: #f22b88;
    background-color: rgb(255 255 255 / 50%);
}

.page-header .logo {
    position: absolute;
    top: 25px;
    left: 43px;
    width: 50%;
}

.page-header .logo a {
    font-size: 1.125rem;
    font-weight: 700;
}

.main-nav {
    position: fixed;
    top: 25px;
    right: 30px;
}

.main-nav ul {
    display: flex;
    justify-content: space-between;
}

.main-nav ul li {
    padding: 0 20px;
}

.main-nav ul li a {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.main-nav.sp {
    display: none;
}

.fa-solid.fa-magnifying-glass {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

/* ハンバーガーメニュー
------------------------------- */
.menu-btn {
    position: fixed;
    right: 40px;
    width: 27px;
    height: 27px;
    user-select: none;
    z-index: 999;
    transition: 0.5s all;
}

.menu-btn .menu-bar {
    width: 35px;
    height: 2px;
    background-color: #f22b88;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: top .2s .2s ease, -webkit-transform .2s ease;
    transition: top .2s .2s ease, -webkit-transform .2s ease;
    transition: top .2s .2s ease, transform .2s ease;
    transition: top .2s .2s ease, transform .2s ease, -webkit-transform .2s ease;
}

.menu-btn .menu-bar.b-1 {
    top: calc(50% - 10px);
}

.menu-btn .menu-bar.b-2 {
    top: 50%;
    -webkit-transition: opacity .2s .2s ease;
    transition: opacity .2s .2s ease;
}

.menu-btn .menu-bar.b-2 {
    top: calc(50% + 10px);
}

.menu-btn.js-is-open .menu-bar.b-1 {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 999;
    background-color: #fff;
}

.menu-btn.js-is-open .menu-bar.b-2 {
    opacity: 0;
}

.menu-btn.js-is-open .menu-bar.b-3 {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 999;
    background-color: #fff;
}

.sub-nav {
    display: none;
    width: 100%;
    height: 100%;
    background-color: #F272AE;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.sub-nav ul {
    width: 80%;
    padding: 3rem 0 2rem;
    margin: 0 auto;
    text-align: center;
}

.sub-nav ul:last-child {
    padding-top: 1.5rem;
    border-top: 1px solid #fff;
}

.sub-nav ul li {
    padding: 10px 0;
}

.sub-nav ul li a {
    color: #fff;
}

.sub-nav.active {
    display: block;
}

/* メインコンテンツ
------------------------------- */
.contents p {
    font-size: 1rem;
    /*    margin: 15px 0 20px; */
}

.contents-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* コンテンツ詳細
------------------------------- */
.contents-bg {
    background-color: #fff;
}

.items {
    padding: 1rem 0 6rem;
}

.service-products__main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.service-products__item--imgbg {
    position: relative;
    width: 100%;
    border-radius: 100vh;
    background-color: #f2f4f5;
}

.service-products__item {
    flex: 0 0 33.3%;
    max-width: 400px;
    margin-bottom: 70px;
    padding: 0 25px;
}

.service-products__item--img {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    transform: scale(.8);
    border-radius: 100vh;
}

.service-products__item--img img {
    -o-object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-products__item--title {
    margin: 20px 0;
    color: #F272AE;
    font-size: 1.375rem;
    text-align: center;
}

.service-products__item--text {
    font-size: .875rem;
}

#contact {
    color: #fff;
}

#product {
    background-color: #f2f4f5;
}

.items-title {
    font-size: 1.5rem;
}

.company-outline__block {
    padding: 50px 40px;
    border: 1px solid #d6d9e1;
    border-radius: 15px;
}

.company-outline__block--inner {
    width: 960px;
    max-width: 100%;
    margin: 0 auto;
}

.c-table__dl {
    font-size: .875rem;
    font-weight: 500;
}

.c-table__dl .table-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #d6d9e1;
}

.c-table__dt {
    flex: 0 0 200px;
    max-width: 200px;
    margin-bottom: 0;
    padding: 20px 10px 20px 30px;
    color: #212122;
}

/* 矢印 */
.arrow {
    position: relative;
    display: inline-block;
    padding-right: 20px;
}

.arrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    right: 0;
    top: 9px;
}

.c-table__dd {
    flex: 0 0 calc(100% - 200px);
    margin-bottom: 0;
    padding: 20px 10px 20px 0;
}

.arrow.arrow-right::before {
    transform: rotate(45deg);
}

.arrow.arrow-top::before {
    transform: rotate(315deg);
}

.arrow:last-child::before {
    display: none;
}

/*　商品　*/
.grid-container {
    grid-gap: 20px 20px;
    display: grid;
    grid-template: 370px 370px 370px/1fr 1fr 1fr;
}

.grid-item {
    padding-top: 40px;
    border-radius: 15px;
    background-color: #fff;
}

.product__main--title {
    margin-bottom: 20px;
    font-size: 1.125rem;
    text-align: center;
    color: #F272AE;
}

.product__main--value {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.product__main--value img {
    width: 300px;
    height: 260px;
    object-fit: cover;
}

/* お問い合わせ*/
.l-aside-contact__inner {
    position: relative;
    padding: 30px 100px;
    border-radius: 50px 0 0 50px;
    background-color: #F272AE;
    color: #fff;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.l-aside-contact__tel {
    display: block;
    margin-bottom: 10px;
    margin-left: 30px;
    color: #fff;
    font-size: 2.25rem;
    font-weight: 400;
}

.l-aside-contact__tel span {
    padding-right: 10px;
    font-size: 1.5rem;
}

#contact .contents-title.jp {
    color: #fff;
}

/* ページトップボタン
------------------------------- */
#home {
    position: relative;
}

.pagetop {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 20px;
    right: 20px;
    background-color: #F2C4DE;
    border-radius: 50%;
}

.pagetop.arrow {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transition-duration: 0.5s;
    transition: all 0.3s ease;
    opacity: 0;
    transition-duration: 0.5s;
}

#js-page-top.UpMove:hover {
    transform: scale(1.1);
}

.pagetop.arrow::before {
    position: unset;
    border-color: #212122;
    width: 10px;
    height: 10px;
    top: 0;
    right: 0;
}

/* 広告枠
------------------------------- */
.ads.items .inner {
    display: flex;
    height: 200px;
    width: 100%;
    background-color: #9e9e9e;
    align-items: center;
    justify-content: center;
}

/* フッター
------------------------------- */
footer {
    background: #F2C4DE;
    text-align: center;
    padding: 7vh 0 4vh;
}

footer p, footer a {
    color: #212122;
    font-size: 0.875rem;
}

.footer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer .logo img {
    width: 140px;
    margin-bottom: 20px;
}

.footer .left-content {
    width: 50%;
    text-align: left;
}

.footer .right-content {
    width: 50%;
    display: flex;
}

.footer .right-content .menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 5px;
    color: #fff;
    text-align: left;

}

/* アニメーション
-------------------------------------------------------*/
/*　上に上がる動き　*/
#js-page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/
#js-page-top.DownMove {
    bottom: 0 !important;
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}

@keyframes Zoomout {
    from {
        transform: scale(1, 1);
    }

    to {
        transform: scale(1.1, 1.1);
    }
}

/* モバイル版
------------------------------- */
@media (max-width: 767px) {
    html {
        font-size: 14px;
    }

    /* PC・SP表示/非表示設定 */
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .page-header .logo {
        display: inline-block;
        width: 80%;
        left: 25px;
        top: 20px;
    }

    .page-header .logo a {
        font-size: 1rem;
    }

    .menu-btn {
        right: 30px;
    }

    .wrapper {
        width: 90%;
    }

    .page-header {
        height: 70px;
        flex-direction: row;
        align-items: center;
    }

    .page-title {
        font-size: 1.875rem;
    }

    /*　コンテンツ詳細　*/
    .contents {
        padding: 0;
    }

    .contents p {
        font-size: 0.925rem;
        margin: 15px 0 0;
    }

    .contents-inner {
        margin-top: 2rem;
    }

    .contents-title {
        font-size: 1.5rem;
        padding: 40px 0 20px;
    }

    .outline li a {
        padding-left: 0;
    }

    .desc {
        flex-direction: column-reverse;
        margin-bottom: 20px;
    }

    .desc .text, .desc figure {
        width: 100%;
        margin: 0;
    }

    .btn {
        margin-top: 30px;
    }

    .points {
        margin-bottom: 0;
    }

    .items {
        padding-bottom: 4.5rem;
    }

    .items-title {
        font-size: 1.125rem;
    }

    /*　サービス説明　*/
    .service-products__main {
        flex-direction: column;
        gap: 30px;
    }

    .service-products__item {
        margin-bottom: 20px;
        margin-top: 40px;
        padding: 0;
    }

    .service-products__item--title {
        font-size: 1.15rem;
    }

    .service-products__item--img {
        transform: scale(.9);
    }

    .grid-container {
        display: flex;
        flex-wrap: wrap;
    }

    .grid-item {
        padding-top: 20px;
        padding-bottom: 20px;
        width: 100%;
    }

    .product__main--value img {
        height: 230px;
    }

    .product__main--title {
        margin-bottom: 10px;
    }

    /* 会社紹介　*/
    .company-outline__block {
        padding: 30px;
    }

    .c-table__dd {
        flex: 100%;
    }

    .c-table__dt {
        padding: 20px 0px 0 0;
    }

    /*　お問い合わせ　*/
    .l-aside-contact__inner {
        padding: 0 20px;
    }

    .row {
        flex-direction: column;
    }

    .col-lg-6 {
        flex: 100%;
        max-width: 100%;
    }

    .l-aside-contact__tel {
        margin-top: 20px;
        margin-left: 0;
        font-size: 1.5rem;
    }

    .l-aside-contact__tel:last-child {
        margin-top: 0;
    }

    /*　ページトップボタン　*/
    .pagetop {
        width: 16vw;
        height: 16vw;
    }

    /*　フッター　*/
    .footer {
        flex-direction: column;
    }

    footer p, footer a {
        font-size: 0.825rem;
    }

    .footer .left-content {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer .right-content {
        gap: 20px;
    }

    .footer .left-content, .footer .right-content {
        width: 100%;
    }

    .footer .logo img {
        width: 30vw;
    }

    .footer .right-content .menu, .footer .right-content .company {
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: flex-start;
    }

    .footer .right-content .menu li, .footer .right-content .company li {
        width: 100%;
        text-align: left;
    }

}


/* タブレット版
------------------------------- */
@media (min-width:768px) and (max-width: 1199px) {
    .items {
        padding-left: 2vw;
        padding-right: 2vw;
    }

    .footer.wrapper {
        padding-left: 2vw;
        padding-right: 2vw;
    }
}