@charset "UTF-8";
:root {
    --base-color: rgba(51, 63, 80);
    --link-color: #165e8e;
    --linkhover-color: #0a8ee6;
    --blue-color: rgba(0, 160, 233);
    --navy-color: rgba(46, 98, 130);
    --his-color: rgba(124, 111, 177);
    --geo-color: rgba(76, 163, 107);
}
/*!
* "Roboto" is lisenced under the SIL Open Font License 1.1
* Designed by Christian Robertson, Paratype, Font Bureau

* "Roboto" is lisenced under the SIL Open Font License 1.1
* Designed by Christian Robertson, Paratype, Font Bureau 
*/
html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 0.1rem;
    color: var(--base-color);
    font-feature-settings: "palt";
    background-color: #FFF;
}
@media screen and (max-width: 640px) {
    body {
        font-size: 1.4rem;
    }
}
* {
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
    /*高さ自動*/
}
a {
    display: block;
    color: var(--link-color);
    text-decoration-line: none;
    transition: all 0.5s ease-in-out;
}
a:hover {
    color: var(--linkhover-color);
}
li {
    list-style: none;
}
/* 基礎 */
main {
    position: relative;
    letter-spacing: 0.175rem;
}
.footer {
    position: relative;
    margin-top: 10vw;
}
@media screen and (max-width: 1023px) {
    .introduction .footer {
        margin-top: 0;
        background-color: rgb(from var(--blue-color) r g b / 0.1);
    }
}
.footer_bg {
    position: relative;
    padding-bottom: calc(280 / 375 * 100%);
    /*calc(画像の高さ / 画像の幅 * widthの値)*/
    height: 0;
    background: url(../img/bg_foot_sp.svg) no-repeat bottom center;
    background-size: 100%;
    filter: invert(71%) sepia(56%) saturate(408%) hue-rotate(169deg) brightness(100%) contrast(92%);
    z-index: -1;
}
.geography .footer_bg {
    filter: invert(84%) sepia(19%) saturate(370%) hue-rotate(89deg) brightness(95%) contrast(84%);
}
.history .footer_bg {
    filter: invert(97%) sepia(80%) saturate(7127%) hue-rotate(181deg) brightness(91%) contrast(83%);
}
.footer .notice {
    position: absolute;
    top: 8%;
    right: 10px;
    font-size: 1.0rem;
}
.footer .copyright {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    font-size: 1.2rem;
}
.pc-only {
    display: none;
}
.basic p,
.history p,
.geography p {
    line-height: 2.0;
}
@media screen and (min-width: 640px) and (max-width: 1023px) {
    main {
        padding-top: 70px;
    }
    .geography .pc-only,
    .history .pc-only {
        display: inline-block;
    }
    .geography .sp-only,
    .history .sp-only {
        display: none !important;
    }
}
@media screen and (min-width: 1024px) {
    main {
        padding-top: 70px;
    }
    .footer_bg {
        padding-bottom: calc(500 / 1600 * 100% + 30px);
        background: url(../img/bg_foot_pc.svg) no-repeat top center;
        background-size: 100%;
    }
    .footer .copyright {
        position: absolute;
        top: 92%;
        width: 100%;
        height: 100px;
        text-align: center;
        background-color: #80CFF4;
    }
    .geography .footer .copyright {
        background-color: #A5D1B5;
    }
    .history .footer .copyright {
        background-color: #BDB7D8;
    }
    .sp-only {
        display: none !important;
    }
    .pc-only {
        display: inline-block;
    }
}
@media screen and (min-width: 1024px) {
    .footer .notice {
        top: 20%;
        padding-right: 5vw;
        font-size: 1.3rem;
    }
    .footer .copyright {
        font-size: 1.6rem;
    }
}
/* ここまで基礎 */
/* 共通パーツ */
#pagetop {
    position: fixed;
    right: 10px;
    bottom: 80px;
    z-index: 3;
    display: block;
    width: 15vw;
    height: 15vw;
    cursor: pointer;
    background: var(--base-color);
    border-radius: 15vw;
    opacity: 0;
    transition: .5s;
}
#pagetop.visible {
    opacity: 1;
    pointer-events: auto;
}
#pagetop span {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 10%;
    height: 25%;
    background: #fff;
    clip-path: polygon(0 46.2%, 50% 0, 100% 46.2%, 59.4% 46.2%, 59.4% 100%, 40.6% 100%, 40.6% 46.2%);
}
@media screen and (min-width: 768px) {
    #pagetop {
        position: fixed;
        right: 2vw;
        bottom: 2vw;
        width: 7vw;
        height: 7vw;
        border-radius: 7vw;
    }
}
/* ここまで共通パーツ */
/*ヘッダー
-------------------------------------*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5.33vw 15px;
    width: 100%;
}
.header .logo {
    width: 120px;
    padding: 2px 0;
    line-height: 0;
		position: relative;
		z-index: 20;
}
@media screen and (min-width: 768px) {
    .header {
        padding: 30px 2.604vw 10px;
        position: fixed;
        top: 0;
        z-index: 999;
        transition: background .5s;
    }
    .fixedmenu {
        background: #FFF;
        background-color: rgba(255, 255, 255, 0.9);
        ;
    }
    .header .logo {
        width: 160px;
    }
    .nav-button {
        display: none;
    }
    .nav-wrap {
        display: block !important;
    }
    .nav a {
        position: relative;
        text-decoration: none;
        font-size: clamp(0.688rem, 0.439rem + 1.06vw, 1.8rem);
        color: var(--base-color);
        text-align: center;
        font-weight: bold;
    }
    .nav-wrap li {
        display: inline-block;
        margin-left: 4vw;
    }
    .nav a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #000000;
        bottom: -8px;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform 0.3s;
    }
    .nav a:hover::after {
        transform: scale(1, 1);
    }
}
@media screen and (min-width:768px) and (max-width:1279px) {
    .nav-wrap li {
        display: inline-block;
        margin-left: 2vw;
    }
}
@media screen and (max-width: 767px) {
    /*メニューボタン*/
    .nav-button,
    .nav-button span {
        display: inline-block;
        transition: all 0.4s;
        box-sizing: border-box;
    }
    .nav-button {
        display: block;
        cursor: pointer;
        position: fixed;
        right: 5.33vw;
        z-index: 20;
        width: 40px;
        height: 30px;
    }
    .nav-button span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--base-color);
        border-radius: 3px;
    }
    .nav-button span:nth-of-type(1) {
        top: 0;
    }
    .nav-button span:nth-of-type(2) {
        top: 13px;
    }
    .nav-button span:nth-of-type(3) {
        bottom: 0;
    }
    .nav-button.active span:nth-of-type(1) {
        -webkit-transform: translateY(12px) rotate(-45deg);
        transform: translateY(14px) rotate(-45deg);
        background-color: #fff;
    }
    .nav-button.active span:nth-of-type(2) {
        opacity: 0;
    }
    .nav-button.active span:nth-of-type(3) {
        -webkit-transform: translateY(-12px) rotate(45deg);
        transform: translateY(-14px) rotate(45deg);
        background-color: #fff;
    }
    /*ナビメニュー*/
    .nav-wrap {
        position: fixed;
        left: 0;
        top: 0;
        display: none;
        z-index: 10;
        background-color: rgb(from var(--base-color) r g b / 0.95);
        width: 100%;
        height: 100%;
    }
    .nav-wrap .nav {
        height: 100%;
        display: grid;
        place-items: center;
        margin: auto;
        padding: 50vw 0;
    }
    .nav-wrap li {
        display: block;
        margin: 1em;
        font-size: 1.7rem;
    }
    .nav-wrap li a {
        color: #fff;
    }
    .nav-wrap.open {
        display: block;
    }
    .nav-wrap.close {
        display: none;
    }
}
/*固定メニュー
-------------------------------------*/
.side_menu {
    position: fixed;
    bottom: 10px;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}
.side_menu li {
    width: 32%;
    text-align: center;
}
.side_menu li a {
    padding: 10px 0;
    font-size: clamp(1.4rem, calc(12.342541436464089px + 0.44198895027624313vw), 1.8rem);
    letter-spacing: 0rem;
    font-weight: 500;
    color: #fff;
    border-radius: 6px;
    background-color: #EF7C91;
}
.side_menu li a:hover {
    color: #fff;
    background-color: #f4a0af;
}
@media screen and (min-width: 1025px) {
    .side_menu {
        width: auto;
        right: 0;
        top: 120px;
        display: block;
        padding: 0;
    }
    .side_menu li a {
        position: relative;
        width: auto;
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        text-orientation: upright;
        margin-bottom: 20px;
        padding: 2rem 1.5rem;
        letter-spacing: 0.1rem;
        border-radius: 20px 0 0 20px;
    }
}
/*ここまでヘッダー・共通ナビ周り


/* 上部背景 */
.bg,
.bg_ill {
    position: absolute;
    top: 0;
    width: 100%;
    padding-top: 100%;
    z-index: -1;
}
.bg {
    background: url(../img/bg_ttl_sp.svg) no-repeat center top;
    background-size: 100%;
    filter: invert(71%) sepia(56%) saturate(408%) hue-rotate(169deg) brightness(100%) contrast(92%);
}
.geography .bg {
    filter: invert(95%) sepia(96%) saturate(265%) hue-rotate(63deg) brightness(86%) contrast(88%);
}
.history .bg {
    filter: invert(97%) sepia(80%) saturate(7127%) hue-rotate(181deg) brightness(91%) contrast(83%);
}
.bg_ill {
    background: url(../img/bg_ill_sp.png) no-repeat center top;
    background-size: 100%;
}
.basic {
    background-image: linear-gradient(#CCECFB 60vw, #fff 60vw);
}
.basic.top {
    position: relative;
    background-image: linear-gradient(#CCECFB 60vw, #E5F5FD 60vw);
    z-index: 0;
}
.geography {
    background-image: linear-gradient(#DBEDE1 60vw, #fff 60vw);
}
.history {
    background-image: linear-gradient(#E5E2EF 60vw, #fff 60vw);
}
@media screen and (min-width:768px) and (max-width:1279px) {
    .bg {
        background: url(../img/bg_ttl_pc.svg) no-repeat top center;
        background-size: 100%;
    }
    .geography .bg {
        background: url(../img/bg_ttl_pc.svg) no-repeat top center;
        background-size: 100%;
    }
    .history .bg {
        background: url(../img/bg_ttl_pc.svg) no-repeat top center;
        background-size: 100%;
    }
    .bg_ill {
        background: url(../img/bg_ill_pc.png) no-repeat top center;
        background-size: 100%;
    }
    .basic {
        background-image: linear-gradient(#CCECFB 35vw, #fff 35vw);
    }
    .basic.top {
        background-image: linear-gradient(#CCECFB 35vw, #fff 35vw);
    }
    .geography {
        background-image: linear-gradient(#DBEDE1 35vw, #fff 35vw);
    }
    .history {
        background-image: linear-gradient(#E5E2EF 35vw, #fff 35vw);
    }
}
@media screen and (min-width: 1280px) {
    .bg {
        background: url(../img/bg_ttl_pc.svg) no-repeat top center;
        background-size: 100%;
    }
    .bg_ill {
        background: url(../img/bg_ill_pc.png) no-repeat top center;
        background-size: 100%;
    }
    .basic {
        background-image: linear-gradient(#CCECFB 35vw, #fff 35vw);
    }
    .basic.top {
        background-image: linear-gradient(#CCECFB 35vw, #fff 35vw);
    }
    .geography {
        background-image: linear-gradient(#DBEDE1 35vw, #fff 35vw);
    }
    .history {
        background-image: linear-gradient(#E5E2EF 35vw, #fff 35vw);
    }
}
/* ここまで上部背景 */
/* トップページ */
/* MV */
.mv {
    position: relative;
    padding: 10px;
}
.wrap_txt {
    margin: -55px 15px 0;
}
p.mv_date {
    margin-bottom: 1rem;
    font-size: clamp(1.75rem, 1.025rem + 3.09vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
}
.mv_shoulder {
    font-size: clamp(1.3rem, 0.761rem + 2.3vw, 2.6rem);
}
.top p.mv_ttl {
    margin: 5px 0 30px;
    font-size: clamp(2.7rem, 1.581rem + 4.77vw, 5.4rem);
    font-weight: 600;
    line-height: 1.6;
}
.bg_white {
    padding: 0 0.25rem;
    background-color: #FFF;
}
.mv_intro {
    text-align: center;
}
p.mv_intro-head {
    margin: 5px 0 20px;
    font-size: 2.0rem;
    font-weight: 600;
    line-height: 1.6;
}
.wrap_point {
    margin: 15px 6vw 15px;
}
.point {
    position: relative;
    margin-top: -27px;
    padding: 32px 5px 20px;
    font-size: clamp(1.3rem, 1.065rem + 0.59vw, 1.8rem);
    border-radius: 16px;
    border: solid 1px var(--base-color);
    background-color: #FFF;
}
.mv_intro .speechBubble {
    width: 55%;
    padding: 0.8rem;
    font-size: clamp(1.3rem, 1.239rem + 0.26vw, 1.5rem);
    letter-spacing: 0rem;
    color: #FFF;
    background-color: var(--blue-color);
    z-index: 2;
}
.mv_intro .speechBubble::after {
    border-color: var(--blue-color) transparent transparent;
}
@media screen and (max-width:640px) {
    .top .article {
        background-color: #FFF;
    }
}
@media screen and (min-width:640px) and (max-width:1029px) {
    p.mv_date {
        font-size: 3vw;
    }
    .mv_shoulder {
        font-size: 2vw;
    }
    .top p.mv_ttl {
        font-size: 5vw;
    }
}
@media screen and (min-width: 768px) {
    .mv {
        max-width: 1280px;
        margin: auto;
    }
    .mv figure {
        position: absolute;
        top: 20px;
        right: 1vw;
        width: 60vw;
        max-width: 780px;
    }
    .wrap_txt {
        margin: 65px 3vw 0;
    }
    p.mv_date {
        margin-bottom: 5rem;
    }
}
@media screen and (min-width: 1024px) {
    .top_lead {
        margin: 0 100px 20px;
        font-size: 2.3rem;
    }
    .mv_flex {
        padding: 0 10vw;
        display: flex;
        justify-content: center;
        align-content: center;
    }
    .mv_intro {
        margin: 3vw auto 0;
        padding: 4rem 0px;
        border-radius: 30px;
        background-color: rgba(229, 245, 253, 0.8);
    }
    p.mv_intro-head {
        margin: 5px 0 20px;
        font-size: 3.0rem;
    }
    .wrap_point {
        margin: 15px 0.75vw 15px;
    }
    .point {
        width: 30vw;
        max-width: 370px;
        margin-top: -30px;
        padding: 42px 1vw 30px;
        border-radius: 20px;
        border: solid 1px var(--base-color);
        background-color: #FFF;
    }
    .mv_intro .speechBubble {
        width: 65%;
        padding: 1rem;
    }
}
/* ここまでMV */
.top .heading {
    width: 80%;
    max-width: 500px;
    margin: 60px auto 10px;
}
.product {
    padding: 50px 20px 60px;
    background-color: rgb(from var(--blue-color) r g b / 0.1);
}
.related_flex {
    margin-bottom: 50px;
}
.related_flex .btn.-flat {
    width: 70%;
    max-width: auto;
    position: relative;
}
.related_flex .btn.-flat a {
    padding-left: 60px;
}
.related_flex .btn.-flat img {
    position: absolute;
    width: 24px;
    top: 50%;
    left: 2rem;
    ;
    transform: translateY(-50%);
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
.top_flex .wrap_flex-pct {
    padding-bottom: 10px;
}
.wrap_flex-pct p {
    margin-bottom: 1rem;
}
.top_section:last-of-type {
    padding-bottom: 50px;
}
@media screen and (min-width: 1024px) {
    .top .heading {
        width: 420px;
        margin: 20px 0 10px -40px;
    }
    .top_flex {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }
    .top_flex:nth-child(even) {
        flex-direction: row;
    }
    .top_flex .wrap_flex-txt {
        width: 45%;
        margin: auto 0;
        padding: 0 50px;
    }
    .top_flex .wrap_flex-pct {
        width: 55%;
        padding: 100px 50px;
        display: flex;
        flex-direction: column;
        background-image: linear-gradient(to right, #FFF 300px, #CCECFB 300px);
    }
    .top_flex:nth-child(even) .wrap_flex-pct {
        background-image: linear-gradient(to right, #CCECFB 300px, #FFF 300px);
    }
    .top_flex .wrap_flex-pct img {
        margin: auto 0;
    }
    .top_section {
        margin-top: 80px;
        padding-top: 80px;
    }
    .top_section:first-of-type {
        margin-top: 0;
        padding-top: 0px;
    }
    .product {
        margin: 100px 0;
        padding: 70px 20px 100px;
    }
    .related_flex {
        max-width: 1080px;
        margin: 60px auto;
        display: flex;
        justify-content: center;
    }
    .related_flex li {
        width: 100%;
        padding: 120px 70px 20px;
        border-left: solid 1px var(--base-color);
    }
    .related_flex li:first-child {
        border-left: none;
    }
    .related_flex img {
        width: 60px;
        filter: invert(49%) sepia(97%) saturate(2964%) hue-rotate(163deg) brightness(97%) contrast(102%);
    }
    .related_flex .btn.-flat img {
        position: absolute;
        width: 60px;
        top: 50px;
        left: 50%;
        translate: -50% 0;
        filter: invert(49%) sepia(97%) saturate(2964%) hue-rotate(163deg) brightness(97%) contrast(102%);
    }
    .related_flex .btn.-flat a {
        padding-left: 50px;
    }
}
/* ここまでトップページ */
/* 下層ページタイトル */
.pttl {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}
.pttl .wrap_txt {
    position: relative;
    padding: 8vw 6vw;
}
.pttl_en {
    font-size: clamp(1.0rem, calc(7.513812154696133px + 0.6629834254143646vw), 16rem);
    color: var(--base-color);
    font-weight: 400;
}
.pttl_en .underline {
    padding-bottom: 0.25rem;
    border-bottom: solid 1px var(--base-color);
}
.pttl_ttl {
    margin: 1.5vw 0 0 0.3vw;
    font-size: clamp(2.7rem, calc(15.812154696132596px + 2.983425414364641vw), 5.4rem);
    font-weight: 600;
}
.pttl_sub {
    margin: 0.5vw;
    font-size: 1.3rem;
    font-size: clamp(1.3rem, calc(8.441988950276244px + 1.2154696132596685vw), 2.4rem);
    font-weight: 500;
}
.pttl_cap {
    margin: 0.5vw;
    font-size: clamp(1.0rem, calc(8.756906077348066px + 0.3314917127071823vw), 1.3rem);
}
.pttl .wrap_btn {
    position: relative;
    padding: 0vw 6vw 6vw
}
.pttl_intro {
    position: relative;
    margin: 1rem 3vw;
    padding: 40px;
    border-radius: 20px;
    background-color: rgba(229, 245, 253, 0.8);
}
.pttl_intro p {
    font-size: clamp(1.4rem, calc(12.342541436464089px + 0.44198895027624313vw), 1.8rem);
}
.geography .pttl_intro {
    background-color: rgba(237, 246, 240, 0.8);
}
.history .pttl_intro {
    background-color: rgba(242, 241, 247, 0.8);
}
@media screen and (max-width: 640px) {
    .pttl_sub,
    .pttl_cap {
        letter-spacing: 0.1rem;
    }
    .pttl .wrap_txt {
        position: relative;
        padding: 90px 4vw 30px;
    }
}
@media screen and (min-width: 1024px) {
    .pttl_en {
        margin-left: -1vw;
    }
    .pttl {
        max-width: 1280px;
        margin: auto;
    }
    .pttl .wrap_txt {
        padding: 2.0vw 0 3vw;
    }
    .pttl_ttl {
        margin: 5vh 0 0 0vw;
        font-size: clamp(2.7rem, calc(15.812154696132596px + 2.983425414364641vw), 5.4rem);
        font-weight: 600;
    }
    .pttl_sub,
    .pttl_cap {
        display: inline-block;
    }
    .pttl .wrap_btn {
        width: 500px;
        width: 40%;
        padding: 90px 0 0;
    }
    .pttl_intro {
        width: 100%;
        max-width: 1280px;
        margin: 4vw auto 10vw;
        padding: 9rem 0;
        border-radius: 30px;
    }
    .pttl_intro p {
        text-align: center;
        font-size: clamp(1.4rem, calc(12.342541436464089px + 0.44198895027624313vw), 1.8rem);
    }
    .pttl_intro.flex {
        display: flex;
        justify-content: center;
    }
    .pttl_intro p {
        text-align: left;
    }
}
/* ここまで下層ページタイトル */
/* コンテンツ */
.wrap_content {
    max-width: 1280px;
    margin: 0 auto;
    font-size: 1.4rem;
}
.space_content {
    padding: 0 18px;
    text-align: center;
}
.space_content img {
    margin-bottom: -0.25rem;
    border: solid 1px var(--base-color);
}
.space_content img.no-border {
    border: none;
}
.ar_section {
    padding-bottom: 5rem;
    border-bottom: solid 1px var(--base-color);
}
.management .ar_section:last-child {
    border-bottom: none;
}
.wrap_ar-txt .btn:last-child {
    margin-bottom: -2rem;
}
.explain {
    padding-bottom: 2rem;
    text-align: left;
}
.speechBubble {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    padding: 1.2rem 2rem;
    font-size: 1.3rem;
    border-radius: 20px;
    background-color: #b0dde2;
}
.speechBubble::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 16px 6px 0 6px;
    border-color: #b0dde2 transparent transparent;
    translate: -50% 100%;
}
.speechBubble.-up {
    margin-top: 7px;
}
.speechBubble.-up::after {
    top: 0;
    border-width: 0 6px 16px 6px;
    border-color: transparent transparent #b0dde2;
    translate: -50% -100%;
}
/* 5.導入までのご案内 */
.checklist {
    position: relative;
    margin-top: 2rem;
    padding-left: 3.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: left;
}
.checklist::before {
    content: '';
    position: absolute;
    top: 0%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-image: url(../img/ico_check.svg);
}
.supplement {
    margin-top: 1rem;
    padding-left: 3.5rem;
    font-size: 1.2rem;
    text-align: left;
}
/* 人物紹介 */
.guide {
    margin: 3rem 0 0;
    padding: 40px 20px;
    text-align: left;
    background-color: rgb(from var(--blue-color) r g b / 0.1);
}
.introduction .guide {
    margin: 8rem auto 0;
}
.geography .guide {
    background-color: #EDF6F0;
}
.history .guide {
    background-color: #F2F1F7;
}
.guide figure {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    border-radius: 200px;
    background-color: #fff;
    overflow: hidden;
}
.guide figure img {
    width: 55px;
    padding-top: 10px;
}
.geography .guide figure img,
.history .guide figure img {
    width: 75px;
}
.guide figure,
.-lv03 {
    display: inline-block;
    vertical-align: middle;
}
.guide_txt {
    margin-top: 2rem;
}
@media screen and (min-width: 1024px) {
    .wrap_content {
        font-size: 1.6rem;
    }
    .space_content {
        padding: 0;
        text-align: left;
    }
    .ar_section {
        margin-top: 20px;
        padding-top: 80px;
        padding-bottom: 80px;
        font-size: 1.8rem;
    }
    .introduction .ar_section {
        margin: 0 80px 80px;
        padding-top: 0px;
    }
    .management .ar_section:first-child {
        margin-top: 8vw;
        padding-top: 40px;
    }
    .management .ar_section:first-child {
        margin-top: 3vw;
    }
    .geography .ar_section:first-child,
    .history .ar_section:first-child {
        margin-top: 0;
    }
    .ar_flex {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        align-items: flex-start;
    }
    .author .ar_flex {
        justify-content: flex-start;
    }
    .introduction .guide {
        margin-top: 16rem;
    }
    .guide .ar_flex {
        justify-content: space-around;
        align-items: flex-end;
    }
    .ar_flex.-alignend {
        align-items: center;
    }
    .ar_flex.-alignend .wrap_btn {
        padding-top: 100px;
    }
    .wrap_ar-txt {
        padding-left: 140px;
    }
    .ar_flex .wrap_ar-txt {
        width: 45%;
    }
    .ar_flex .heading {
        width: 35%;
    }
    .ar_section figure {
        width: 50%;
        margin-top: 15px;
        text-align: right;
    }
    .explain {
        padding: 2rem 0 4rem;
        font-size: 1.8rem;
    }
    .top .explain {
        padding-bottom: 0;
    }
    .speechBubble {
        position: relative;
        display: inline-block;
        margin: 0 auto 15px;
        padding: 2rem 3rem;
        font-size: 1.8rem;
    }
    .speechBubble::after {
        border-width: 30px 10px 0 10px;
    }
    .speechBubble.-up::after {
        border-width: 0 10px 30px 10px;
    }
    /* 5.導入までのご案内1280 */
    .checklist {
        margin-top: 5rem;
        margin-bottom: 5rem;
        padding-left: 8rem;
        font-size: 2.3rem;
    }
    .checklist::before {
        top: -4px;
        width: 5rem;
        height: 5rem;
    }
    .supplement {
        margin: -2.5rem 0 2.5rem;
        padding-left: 5.5rem;
        font-size: 1.8rem;
        line-height: 2;
    }
    .guide {
        max-width: 1280px;
        margin: 100px auto 0;
        padding: 80px 100px;
        text-align: left;
        border-radius: 30px;
        overflow: auto;
    }
    .geography .guide,
    .history .guide {
        width: 100%;
        padding: 60px 120px 60px 90px;
        clear: both;
    }
    .guide figure {
        width: 260px;
        height: 260px;
        margin: 0;
        padding: 0;
        text-align: center;
        border-radius: 200px;
        background-color: #fff;
        overflow: hidden;
        float: left;
    }
    .geography .guide figure,
    .history .guide figure {
        float: right;
    }
    .guide figure img {
        width: 170px;
        padding-top: 30px;
    }
    .geography .guide figure img,
    .history .guide figure img {
        width: 230px;
        padding-top: 30px;
    }
    .guide_txt {
        margin: 0 0 -10px;
        font-size: 1.8rem;
    }
    .geography .guide_txt,
    .history .guide_txt {
        width: 420px;
    }
    .inlineblock {
        display: inline-block;
        margin-left: 30px;
    }
}
/* ここまでコンテンツ */
/* 歴史と地理 */
/* エリア */
.area_step {
    margin: 0 0 0;
    padding: 30px 0 20px;
    background-color: #EDF6F0;
}
.history .area_step {
    background-color: #F2F1F7;
}
.area_step figure {
    margin-bottom: 4rem;
}
.area_package {
    margin: 0 0 1.5rem;
    padding-bottom: 60px;
    border-top: solid 1px var(--base-color);
    background-color: rgb(from var(--geo-color) r g b / 0.2);
}
.history .area_package {
    background-color: rgb(from var(--his-color) r g b / 0.2);
}
.or_intro {
    margin: 0 20px;
}
/* 著者一覧 */
.author dt {
    margin-bottom: 2rem;
    padding: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    border-bottom: solid 1px var(--base-color);
}
.author dd {
    margin: 1rem 1rem 3rem;
}
.author .heading {
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
.area_author {
    padding: 20px;
}
.wrap-extend img:nth-child(2) {
    width: 70%;
    max-width: 400px;
    margin-top: 10px;
}
@media screen and (min-width: 1024px) {
    .area_step {
        position: relative;
        max-width: 1080px;
        margin: 2rem auto -100px;
        padding: 90px 200px;
        border-radius: 30px;
        z-index: 2;
    }
    .area_step figure {
        margin-bottom: 8rem;
    }
    .area_step figure:last-child {
        margin-bottom: 0;
    }
    .wrap-extend {
        margin: 0 calc(50% - 50vw);
        text-align: center;
    }
    .area_package {
        margin: -100px 0 8rem;
        padding: 180px 0 60px;
        border-top: none;
    }
    .area_original {
        position: relative;
        width: 960px;
        margin: 2rem auto 0;
    }
    .or_intro {
        margin: -30px 0;
        font-size: 1.8rem;
        text-align: center;
    }
    .area_author {
        width: 990px;
        margin: 2rem auto 100px;
    }
    .author {
        width: 700px;
        margin-top: 6rem;
    }
    .author:first-child {
        margin-top: 0;
    }
    .author dt {
        padding: 0.5rem 0.9rem;
        font-size: 2.1rem;
    }
    .author .heading {
        font-size: 1.8rem;
    }
}
@media screen and (min-width: 1280px) {
    .wrap-extend {
        margin: 0 calc(50% - 50vw);
        white-space: nowrap;
        text-align: center;
    }
    .wrap-extend img {
        width: auto;
        margin: 0 20px;
    }
    .wrap-extend img:nth-child(2) {
        width: 100%;
        max-width: 460px;
    }
}
/* 収録の表組 */
.package {
    margin: 2rem 0;
    border-top: solid 1px var(--base-color);
    border-bottom: solid 1px var(--base-color);
}
.package dt.package_head {
    padding: 5vw;
    color: #fff;
    font-weight: 600;
    text-align: left;
    background-color: rgb(from var(--his-color) r g b / 0.8);
}
.package dt.package_head span {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--base-color);
}
.package .package_inner {
    display: flex;
    padding: 5vw;
    text-align: left;
    border-top: solid 1px var(--base-color);
    background-color: #F5F5F6;
}
.package .package_inner:nth-child(even) {
    background-color: #FFF;
}
.package .package_inner.-bordernone {
    border-top: none;
}
.package dd p {
    width: 40%;
    font-weight: 600;
}
.history .package dd p {
    width: 29%;
}
.package dd li {
    padding: 0 0 0.4rem;
    letter-spacing: 0.1rem;
}
.package.-original {
    margin: 0 auto 1rem;
    padding: 5vw 2vw 5.5vw;
    text-align: left;
    line-height: 1.8;
    display: grid;
    justify-items: center;
    background-color: #FFF;
}
.package.-product {
    display: flex;
    flex-wrap: wrap;
    margin: 1rem auto;
    padding: 0;
    text-align: left;
    line-height: 1.8;
    background-color: #FFF;
}
.package.-product dt {
    width: 42%;
    padding: 2rem 1rem;
    display: grid;
    align-items: center;
    text-align: center;
    font-weight: 600;
    color: #fff;
    border-top: solid 1px var(--base-color);
    background-color: rgb(from var(--blue-color) r g b / 0.8);
}
.package.-product dd {
    width: 58%;
    padding: 2rem 1rem;
    display: grid;
    align-items: center;
    line-height: 1.3;
    border-top: solid 1px var(--base-color);
}
.package.-product dd .cap {
    display: block;
    margin-top: 0.5rem;
    line-height: 1.3;
}
.package.-product dt:first-child,
.package.-product dd:first-of-type {
    border-top: none;
}
@media screen and (min-width: 1024px) {
    .package {
        max-width: 1000px;
        margin: 3rem auto 0;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        border-top: solid 2px var(--base-color);
        border-bottom: solid 2px var(--base-color);
    }
    .package .package_inner {
        padding: 1.5vw 2vw;
        align-items: center;
        line-height: 2;
    }
    .package .package_inner:first-child {
        border-top: none;
    }
    .package dt.package_head {
        width: 20%;
        padding: 0;
        display: grid;
        place-content: center;
        font-size: 2.1rem;
        font-weight: 600;
    }
    .package dd {
        width: 80%;
    }
    .geography .package dd {
        width: 100%;
    }
    .package ul {
        width: 87%;
    }
    .package dd p {
        width: 13%;
    }
    .geography .package dd p {
        width: 18%;
    }
    .history .package dd p {
        width: 14%;
    }
    .package dd li {
        display: inline-block;
        margin: 0 1.5rem;
    }
    .package.-original {
        margin: 1rem auto 0;
        padding: 2.5vw 2vw 3vw;
    }
    .package.-product {
        display: flex;
        flex-wrap: wrap;
        margin: 1rem auto;
        background-color: #FFF;
    }
    .package.-product dt {
        width: 30%;
        height: 100px;
        padding: 0;
        font-size: 2.1rem;
    }
    .package.-product dd {
        width: 70%;
        height: 100px;
        padding: 2rem 4rem;
    }
    .package.-product dd .cap {
        display: block;
        margin-top: 0;
    }
}
/* 収録の黄色いやつ */
.package_info {
    position: relative;
    margin: 3rem 0 1em;
    padding: 2rem 2.5rem 3rem 2.5rem;
    text-align: left;
    font-weight: 600;
    border-radius: 20px;
    background-color: #FFD800;
    z-index: 2;
}
.package_info:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: -5px;
    top: -5px;
    box-sizing: border-box;
    border-radius: 20px;
    z-index: -1;
    border: 2px solid #333333;
}
.package_info:before {
    content: '';
    /*何も入れない*/
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    /*画像の幅*/
    height: 35px;
    /*画像の高さ*/
    background-image: url(../img/ico_light.svg);
    background-size: contain;
}
.package_info:nth-child(2):before {
    content: '';
    /*何も入れない*/
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 46.2px;
    /*画像の幅*/
    height: 35px;
    /*画像の高さ*/
    background-image: url(../img/ico_megaphone.svg);
    background-size: contain;
}
@media screen and (min-width: 1024px) {
    .package_flex {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: stretch;
    }
    .package_info {
        position: relative;
        margin: 5rem 2rem;
        1em;
        padding: 3rem 5rem 4rem;
        font-size: 1.8rem;
        text-align: center;
    }
    .package_info.oneline {
        display: flex;
        align-items: center;
    }
    .package_info:before {
        top: -35px;
        width: 50px;
        /*画像の幅*/
        height: 50px;
        /*画像の高さ*/
    }
    .package_info:nth-child(2):before {
        top: -37px;
        width: 66px;
        /*画像の幅*/
        height: 50px;
        /*画像の高さ*/
    }
}
/* 歴史の画像 */
.pct_gr-1 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.pct_gr-1 figure:first-child {
    width: 100%;
    margin-bottom: 1.5rem;
}
.pct_gr-1 figure:nth-child(2),
.pct_gr-1 figure:nth-child(3) {
    width: 49%;
}
@media screen and (min-width: 1024px) {
    .tac_pc {
        text-align: center !important;
    }
    .tar_pc {
        text-align: right;
    }
    .cap {
        font-size: 1.2rem;
    }
    .pct_gr-1 {
        display: block;
        position: relative;
        width: 800px;
        height: 355px;
        margin: 0 -60px;
        text-align: right;
    }
    .pct_gr-1 figure:first-child {
        position: absolute;
        max-width: 520px;
        top: 0;
        right: 0;
    }
    .pct_gr-1 figure:nth-child(2) {
        position: absolute;
        max-width: 260px;
        top: 32px;
        left: 0;
    }
    .pct_gr-1 figure:nth-child(3) {
        position: absolute;
        max-width: 260px;
        top: 200px;
        left: 65px;
    }
}
/* パーツ
-------------------------------*/
@media screen and (min-width: 768px) {
    #id01,
    #id02,
    #id03 {
        margin-top: -70px;
        padding-top: 70px;
    }
}
/* 見出し */
.ttl.-lv09 {
    margin: 5rem 0 0;
    padding: 0.5rem;
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    border-top: solid 2px var(--navy-color);
    border-bottom: solid 2px var(--navy-color);
}
.guide .ttl.-lv09 {
    margin-bottom: 2rem;
}
.ttl.-lv01 {
    padding-top: 4rem;
    font-size: 2.2rem;
    font-weight: 600;
}
.top .ttl.-lv01,
.geography .ttl.-lv01,
.history .ttl.-lv01 {
    margin-top: 40px;
    padding: 5rem 0 3rem;
    text-align: center;
}
.geography .ttl.-lv01 {
    background: url(../img/bg_lv01geo_sp.png) no-repeat top center;
    background-size: 100%;
}
.history .ttl.-lv01 {
    background: url(../img/bg_lv01his_sp.png) no-repeat top center;
    background-size: 100%;
}
.ttl.-lv01.-nobg {
    margin-top: 0;
    padding: 3rem 0 3rem;
    background: none;
}
.ttl.-lv01 .-break {
    display: block;
    font-size: 80%;
}
.ttl.-lv01 .number {
    display: block;
    font-size: 2.8rem;
    font-weight: 300;
    letter-spacing: 0;
    color: var(--blue-color);
}
.ttl.-lv02 {
    margin: 2rem 0 1.5rem;
    color: #fff;
}
.ttl.-lv02 span {
    padding: 0.6rem 1rem;
    letter-spacing: 0.1rem;
    border-radius: 4px;
    background-color: var(--base-color);
}
.ttl.-lv03 {
    width: 50%;
    margin: 2rem -1vw 1.5rem 0;
    font-size: 2.0rem;
    font-weight: 600;
    white-space: nowrap;
}
.geography .ttl.-lv04,
.history .ttl.-lv04 {
    margin: 2rem 0 1.5rem;
    font-size: 2.0rem;
    font-weight: 600;
    color: #fff;
    background-color: var(--base-color);
}
.geography .ttl.-lv04 {
    background-color: var(--geo-color);
}
.history .ttl.-lv04 {
    background-color: var(--his-color);
}
.ttl.-lv05 {
    margin: 2rem 0 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: left;
}
.ttl.-lv06 {
    margin: 4rem 0 1.5rem;
    font-size: 2.0rem;
    font-weight: 600;
}
.ttl.-lv07 {
    margin-top: -0.35rem;
    font-size: 1.45rem;
    letter-spacing: 0.1rem;
}
.ttl.-lv08 {
    margin: 1rem 0;
    font-size: 2.0rem;
    font-weight: 600;
    text-align: left;
}
@media screen and (min-width: 1024px) {
    .ttl.-lv09 {
        margin: 1rem 0 5rem;
        padding: 1rem;
        font-size: 3.2rem;
    }
    .ttl.-lv01 {
        margin-bottom: 50px;
        padding: 0;
        font-size: 3.0rem;
    }
    .top .ttl.-lv01 {
        font-size: 3.8rem;
        background: url(../img/bg_lv01_pc.png) no-repeat top center;
        background-size: 840px;
    }
    .geography .ttl.-lv01 {
        font-size: 3.8rem;
        background: url(../img/bg_lv01geo_pc.png) no-repeat top center;
        background-size: 840px;
    }
    .history .ttl.-lv01 {
        font-size: 3.8rem;
        background: url(../img/bg_lv01his_pc.png) no-repeat top center;
        background-size: 840px;
    }
    .ttl.-lv01.-nobg {
        margin: 0;
        padding: 0;
        background: none;
    }
    .ttl.-lv02 {
        margin: 0 0;
    }
    .ttl.-lv02 span {
        padding: 0.6rem 1rem;
        font-size: 2.0rem;
    }
    .ttl.-lv01 .number {
        display: inline-block;
        margin-left: -80px;
        padding-right: 30px;
        font-size: 4.2rem;
        font-weight: 3;
        letter-spacing: 0;
        color: var(--blue-color);
    }
    .ttl.-lv03 {
        width: 50%;
        margin: 1rem 30px 1.5rem;
        margin: 2.5rem 30px;
        font-size: 3.0rem;
    }
    .geography .ttl.-lv04,
    .history .ttl.-lv04 {
        margin: 2rem 0 1.5rem;
        padding: 0.25rem;
        font-size: 3.2rem;
        text-align: center;
    }
    .ttl.-lv05 {
        margin: 3.2rem 0 0;
        font-size: 2.3rem;
        font-weight: 600;
        text-align: center;
    }
    .ttl.-lv06 {
        margin: 0 0 0;
        font-size: 3.0rem;
        text-align: center;
    }
    .ttl.-lv07 {
        font-size: 1.8rem;
    }
    .ttl.-lv08 {
        margin: 2rem 0 0;
        font-size: 2.3rem;
    }
    .product .ttl.-lv08 {
        margin-bottom: 2rem;
        font-size: 3.0rem;
    }
}
/* ここまで見出し */
/* ボタン */
.btn a {
    position: relative;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 1.75rem 3rem;
    font-weight: 500;
    text-align: left;
    letter-spacing: 0.1rem;
    border-radius: 50px;
}
.btn a::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 22px;
    height: 22px;
    margin: auto;
    border-radius: 20px;
}
.btn a::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    width: 10px;
    height: 6px;
    background: var(--blue-color);
    clip-path: polygon(0 40%, 56.7% 40%, 56.7% 0, 100% 50%, 56.7% 100%, 56.7% 60%, 0 60%);
}
/* ベタ塗りのボタン */
.btn.-flat {
    width: 100%;
    max-width: 440px;
    margin: auto;
}
.btn.-flat a {
    color: #fff;
    background-color: var(--blue-color);
}
.btn.-flat.btn_ill {
    width: 100%;
}
.btn.-flat.btn_ill a {
    margin: 0;
    padding-left: 100px;
}
.btn.-flat a img {
    position: absolute;
    bottom: 0;
    left: 30px;
    width: 49px;
}
.btn.-flat a::before {
    background-color: #fff;
}
.btn.-flat a::after {
    background: var(--blue-color);
}
.btn.-flat a:hover {
    background-color: var(--base-color);
}
.btn.-flat a:hover::after {
    background: var(--base-color);
    transition: all 0.5s ease-in-out;
}
.btn.-flat.-geo,
.btn.-flat.-his {
    max-width: 80%;
}
.btn.-flat.-his a,
.btn.-flat.-geo a {
    margin: 1.5rem auto 1.5rem;
    padding: 2rem 3vw 2.25rem 6vw;
    border-radius: 10px;
}
.btn.-flat.-geo a {
    background-color: var(--geo-color);
}
.btn.-flat.-his a {
    background-color: var(--his-color);
}
.btn.-flat.-geo a:hover {
    background-color: #11853A;
    transform: scale(1.05);
}
.btn.-flat.-his a:hover {
    background-color: #6C5DA7;
    transform: scale(1.05);
}
.btn.-flat.-geo a::after,
.btn.-flat.-his a::after {
    right: 28px;
    width: 6px;
    height: 10px;
    clip-path: polygon(0 56.7%, 40% 56.7%, 40% 0, 60% 0, 60% 56.7%, 100% 56.7%, 50% 100%);
}
.btn.-flat.-geo a::after {
    background: var(--geo-color);
    clip-path: polygon(0 56.7%, 40% 56.7%, 40% 0, 60% 0, 60% 56.7%, 100% 56.7%, 50% 100%);
}
.btn.-flat.-his a::after {
    background: var(--his-color);
    clip-path: polygon(0 56.7%, 40% 56.7%, 40% 0, 60% 0, 60% 56.7%, 100% 56.7%, 50% 100%);
}
/* ライン囲みのボタン */
.btn.-line {
    margin: auto;
    width: 90%;
    max-width: 500px;
}
.btn.-line a {
    margin: 2.5rem auto 3rem;
    font-size: clamp(1.6rem, calc(14.342541436464089px + 0.44198895027624313vw), 2.0rem);
    border: solid 2px var(--navy-color);
    background-color: #fff;
}
.btn.-line a::before {
    background-color: var(--navy-color);
}
.btn.-line a::after {
    background: #fff;
}
.btn.-line.-geo a {
    color: var(--geo-color);
    border: solid 2px var(--geo-color);
}
.btn.-line.-his a {
    color: var(--his-color);
    border: solid 2px var(--his-color);
}
.btn.-line.-experience a {
    color: #EF7C91;
    border: solid 2px #EF7C91;
}
.btn.-line.-geo a::before {
    background-color: var(--geo-color);
}
.btn.-line.-his a::before {
    background-color: var(--his-color);
}
.btn.-line.-experience a::before {
    background-color: #EF7C91;
}
.btn.-line a:hover {
    background-color: #EAEFF2;
}
.btn.-line.-geo a:hover {
    background-color: #EDF6F0;
}
.btn.-line.-his a:hover {
    background-color: #F2F1F7;
}
.btn.-line.-experience a:hover {
    background-color: #fceff1;
}
@media screen and (max-width:1280px) {
    .btn.-flat.btn_ill:first-child {
        margin-bottom: 30px;
    }
}
@media screen and (min-width: 1280px) {
    .btn.-flat a {
        position: relative;
        margin: 2em 0 0;
        padding-left: 4rem;
    }
    .btn.-flat.btn_ill {
        width: 320px;
        margin: 10px 30px;
    }
    .btn.-flat a img {
        width: 60px;
    }
    .btn.-line {
        max-width: 440px;
        width: 100%;
        margin: 3rem auto;
    }
    .wrap_flex-txt .btn.-line {
        margin: 3rem 0;
    }
    .introduction .btn.-line {
        margin: 3rem 0;
    }
    .btn.-line a {
        margin: 4rem 0;
        padding: 2rem 3rem 2.25rem 4rem;
    }
    .btn.-flat.-his a,
    .btn.-flat.-geo a {
        margin: 1rem auto 2rem;
        padding: 2rem 2rem 2.25rem 3rem;
        font-size: 2.2rem;
        border-radius: 20px;
    }
    .btn.-line a::before {
        width: 30px;
        height: 30px;
        right: 28px;
    }
    .btn.-line a::after {
        width: 14px;
        height: 6px;
        right: 35px;
    }
}
/* ここまでボタン */
/* アニメーション */
.inview_fiU {
    opacity: 0;
    transition: 1s;
}
.inview_fiU.move {
    transform: translate(0, 20%);
    opacity: 0;
    transition: 1s;
}
.inview_fiU.show {
    transform: translate(0, 0);
    opacity: 1;
}
@media screen and (max-width: 640px) {
    .pttl_intro_pct {
        max-width: 500px;
        margin: auto;
        padding: 10px 20px;
    }
}
@media screen and (min-width: 641px) and (max-width: 1280px) {
    .pttl_intro_pct li {
        position: absolute;
        max-width: 1360px;
        bottom: 7vw;
        left: -1vw;
    }
}
@media screen and (min-width: 641px) {
    .geography .pttl_intro,
    .history .pttl_intro {
        margin-top: 4rem;
        margin-bottom: 4rem;
        padding: 9rem 9vw 54vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    @keyframes fadeIn {
        from {
            opacity: 0;
            /* 初期状態は透明 */
        }
        to {
            opacity: 1;
            /* 完全に表示された状態 */
        }
    }
    .pttl_intro_pct li:nth-of-type(1) {
        animation: fadeIn 2s ease-in-out;
        /* 2秒でフェードインするアニメーションを設定 */
    }
    .pttl_intro_pct li:nth-of-type(1) {
        transition-delay: 0.0s;
    }
    .pttl_intro_pct li:nth-of-type(2) {
        transition-delay: 0.2s;
    }
    .pttl_intro_pct li:nth-of-type(3) {
        transition-delay: 0.4s;
    }
    .pttl_intro_pct li:nth-of-type(4) {
        transition-delay: 0.6s;
    }
    .pttl_intro_pct li:nth-of-type(5) {
        transition-delay: 0.8s;
    }
    .pttl_intro_pct li:nth-of-type(6) {
        transition-delay: 1.0s;
    }
    .pttl_intro_pct li:nth-of-type(7) {
        transition-delay: 1.1s;
    }
    .pttl_intro_pct li:nth-of-type(8) {
        transition-delay: 1.2s;
    }
    .pttl_intro_pct li:nth-of-type(9) {
        transition-delay: 1.3s;
    }
    .pttl_intro_pct li:nth-of-type(10) {
        transition-delay: 1.4s;
    }
    .pttl_intro_pct li:nth-of-type(11) {
        transition-delay: 1.5s;
    }
    .pttl_intro_pct li:nth-of-type(12) {
        transition-delay: 1.6s;
    }
    .pttl_intro_pct li:nth-of-type(13) {
        transition-delay: 1.7s;
    }
    .pttl_intro_pct li:nth-of-type(14) {
        transition-delay: 1.8s;
    }
    .pttl_intro_pct li:nth-of-type(15) {
        transition-delay: 1.9s;
    }
    .pttl_intro_pct li:nth-of-type(16) {
        transition-delay: 2.0s;
    }
}
@media screen and (min-width: 1281px) {
    .geography .pttl_intro,
    .history .pttl_intro {
        padding-bottom: 720px;
    }
    .pttl_intro_pct li {
        position: absolute;
        max-width: 1360px;
        top: 290px;
        left: -40px;
        right: -40px;
    }
}
/* ここまでアニメーション */
/* 汎用 */
.cap {
    font-size: 1.0rem;
    letter-spacing: 0.1rem;
}
.l-space-wide {
    letter-spacing: 0.3rem;
}
.l-space-tight {
    letter-spacing: 0.1rem;
}
.strong {
    font-weight: 800;
    background: linear-gradient(transparent 60%, #FFFF84 60%);
}
.bg_white {
    background-color: #fff;
}
.txt_blue {
    color: var(--blue-color);
}
.pct_small {
    width: 80%;
    margin: auto;
}
.mt0 {
    margin-top: 0;
}
.mt1 {
    margin-top: 1rem;
}
.tar {
    text-align: right;
}
.tal {
    text-align: left;
}
.tac {
    text-align: center !important;
}
@media screen and (max-width: 768px) {
    .w100 {
        width: 100% !important;
    }
}