﻿@charset "utf-8";

/*-------------------------*/
/*  common
/*-------------------------*/
body {
    font-family: "Albert Sans", sans-serif, "メイリオ", Meiryo, 'Kosugi Maru', sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    position: relative;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    position: relative;
    /*    color: #d9b896;
    background: #0a0920;*/
}

img {
    display: inline-block;
    max-width: 100%;
}

h1 {
    font-size: 13cqw;
    letter-spacing: -1px;
    font-family: 'Comfortaa', cursive;
    text-align: center;
}

h1 img {
    width: 17%;
    margin-bottom: 0.3em;
}

h2 {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 3em;
}

h3 {
    text-align: left;
    letter-spacing: 0.02em;
    font-size: 1.2rem;
    margin: 2.5em 0;
    font-weight: bold;
}

#service h3 {
    text-align: left;
    letter-spacing: 0.02em;
    font-size: 1.2rem;
    margin: 2.5em 0 1em;
    font-weight: bold;
}

#service .img {
    max-width: 600px;
    margin: 0 auto;
}

#service .img img {
    border-radius: 20px;
}

#service .url {
    max-width: 600px;
    margin-bottom: 2em;
}

#service a {
    text-decoration: underline;
}


/*-------------------------*/
/*  section
/*-------------------------*/
#main-visual {
    height: 100svh;
    display: grid;
    color: #444;
    /*  background-image: url("https://assets.codepen.io/221808/kyoto_bg.jpg");
  background-position: center;
  background-size: cover;*/
    place-content: center;
}

#main-visual {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.text-container {
    width: max(200px, 30svw);
    padding: 24px 0;
    container-type: inline-size;
    text-align: center;
    /*  border-top: 2px solid currentcolor;
  border-bottom: 2px solid currentcolor;*/
}

section {
    position: relative;
    padding: 12em 0;
    margin: 0 auto;
}

.main-visual {
    margin: 0;
}

.inner {
    width: 1000px;
    max-width: 100%;
}

.w-600 {
    margin: 0 auto;
    max-width: 600px;
}

.mt30 {
    margin-bottom: 3em;
}


/*-------------------------*/
/*  info
/*-------------------------*/

#info {
    background: rgb(68, 68, 68);
    color: #fff;
}

#info h3 {
    margin: 0 0 2.5em;
}

#info .inner {
    width: 600px;
    max-width: 100%;
}

#info .inner table {
    width: 600px;
    max-width: 100%;
}

#info .inner table tr {
    max-width: 100%;
    border-bottom: 1px #eee dotted;
}

#info .inner table td {
    padding: 1em 0;
    box-sizing: border-box;
}

/*-------------------------*/
/*  info
/*-------------------------*/

.col2 {
    gap: 3rem 6%;
}

.col2>div {
    width: 47%;
    margin-right: 0;
}

.is-rev {
    flex-direction: row-reverse;
}

/*-------------------------*/
/*  footer
/*-------------------------*/
footer {
    padding: 40px 0;
    padding-top: 180px;
    background: #1a1a1a;
}

footer .cw {
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/*-------------------------*/
/*  footer
/*-------------------------*/
/*スクロールダウン全体の場所*/
.scrolldown1 {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    left: 50%;
    bottom: 10px;
    /*全体の高さ*/
    height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
    /*描画位置*/
    position: absolute;
    left: -15px;
    top: -15px;
    /*テキストの形状*/
    color: #444;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    /*線の形状*/
    width: 1px;
    height: 30px;
    background: #444;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }

    30% {
        height: 30px;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}

/*-------------------------*/
/*  mobile
/*-------------------------*/
@media (max-width: 767px) {
    .col2>div {
        width: 100%;
    }

    h3 {
        margin: 2.5em 0 1em;
    }

    h2 {
        margin-bottom: 1.5em;
    }

    #info .inner {
        width: 80%;
    }

    #info .inner table {
        width: 100%;
    }

    #info .inner table tr {
        width: 100%;
    }

    #info .inner table td {
        box-sizing: border-box;
    }

}