#main {
    font-size: 16px;
    margin-top: 32px;
    background: #e9e9e9;
}

.content {
    padding: 2em 12px;
}

.article-list,
.shop-list,
.category {
    cursor: pointer;
}

li:last-child,
li:last-child>.article-list {
    border: none;
}

li.hover-animation {
    position: relative;
}

li.hover-animation::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #bbcfe8;
    position: absolute;
    transform: translateX(-100%);
    transition: transform 0.7s;
}

li.hover-animation:hover::before {
    transform: translateX(0%);
    transition: transform 0.7s;
}

figure {
    margin: 0;
}

img {
    width: 100%;
}

.box {
    padding: 1rem;
}

.grid-box-pc {
    display: flex;
    flex-wrap: wrap;
}

.mb-1 {
    margin-bottom: 1rem;
}

.grid-4 {
    flex: 0 0 auto;
    width: 100%;
}

.grid-6 {
    flex: 0 0 auto;
    width: 100%;
}

.font-bold {
    font-weight: bold;
}

.button {
    display: flex;
    flex: 0 0 auto;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.button-blue {
    background: var(--blue);
    color: #fff;
}

.border-top::before {
    content: "";
    display: block;
    width: 90%;
    height: 1px;
    margin: auto;
    background: #000;
    margin-bottom: 2rem;
}

.border-bottom::after {
    content: "";
    display: block;
    width: 90%;
    height: 1px;
    margin: auto;
    background: #000;
    margin-top: 2rem;
}

.questions {}

.grid-5 {
    flex: 0 0 auto;
    width: 100%;
}

/* ------------------------------------------------- */

.grid-box {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem 0;
}

.grid-main {
    display: grid;
    grid-column-start: 1;
    grid-column-end: 13;
}

.blog-list {}

.list-inner {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: #fff;
}

.list-inner h2 {
    background: #1e69c1;
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    font-size: 1.6rem;
    border: none;
}

.header-text {
    width: 90%;
    margin: 2rem auto;
    padding: 1rem;
    border-radius: 12px;
    background: #bacfe9;
    border: 2px solid #2369bf;
}

.text-box {
    line-height: 1.7;
}

.article-lists {}

.article-list {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 0;
    border-bottom: 1px solid #ccc;
}

.article-list::after {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background: url('./../img/icon/a-r.png') no-repeat center;
    background-size: contain;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

.article-list-figure {
    margin: 0;
    width: 100%;
    position: relative;
}

.article-list-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.article-list-info {
    width: 100%;
    position: relative;
}

.article-list-title {
    width: 100%;
    font-size: 1.2rem;
    font-weight: bold;
    color: #1869c3;
    margin-bottom: 1rem;
}

.article-list-text {}

.textbox {
    line-height: 1.7;
    color: #5f5f5f;
}

.date {
    color: #5f5f5f;
    background: url(./../img/icon/calender.png) no-repeat center 1vw;
    background-size: 1rem;
    background-position-x: 0px;
    padding-left: 1.2rem;
    display: inline-block;
    margin-top: 1rem;
}

.pager {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.btn-prev,
.btn-next {
    width: 30%;
    padding: 0.8rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(0deg, #144887, #185db1, #2369bf);
    color: #fff;
    position: relative;
}

.btn-prev::before {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background: url('./../img/icon/arrow-right-w.png') no-repeat center;
    background-size: contain;
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
}

.btn-next::after {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background: url('./../img/icon/arrow-right-w.png') no-repeat center;
    background-size: contain;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.grid-right {
    display: grid;
    grid-column-start: 1;
    grid-column-end: 13;
}

.right-inner {}

.right-banner {}

.banner-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #1e69c1;
}

.banner-img {
    width: 86%;
    margin-top: 1rem;
}

.banner-text {
    font-size: 1rem;
    font-weight: bold;
}

.banner-bottom {
    width: 100%;
    text-align: center;
    background: #1869c3;
    padding: 0.2rem;
    color: #fff;
}

.link-list {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
}

.link-list-title {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: #1e69c1;
}

.shop-lists {}

.shop-list {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
}

.shop-list-figure {
    width: 40%;
    margin: 0;
    position: relative;
}

.shop-list-figure>figcaption {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #1869c3;
    position: absolute;
}

.shop-lists li:first-child .shop-list-figure>figcaption {
    background: #a38e1f;
}

.shop-lists li:nth-child(2) .shop-list-figure>figcaption {
    background: #646c75;

}

.shop-lists li:nth-child(3) .shop-list-figure>figcaption {
    background: #534222;

}

.shop-list-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.shop-list .textbox {
    max-width: 60%;
}

.categories {}

.category {
    padding: 1rem 1rem 1rem 2rem;
    border-bottom: 1px solid #ccc;
    position: relative;
}

.category::after {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background: url('./../img/icon/a-r.png') no-repeat center;
    background-size: contain;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}


.category-title {
    font-weight: bold;
}

.archive-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid #ccc;
    padding: .5rem;
}

.archive-list a {
    padding: .5rem 0;
    flex: 0 1 90%;
}


/* ------------------------------------------------------------- */

.blog-main {}

.main-inner {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-header {
    display: flex;
    flex-direction: column;
    border-left: 12px solid #1869c3;
    margin-top: 3rem;
    margin-bottom: 3rem;
    gap: 1rem;
}

.blog-header-left {
    padding: 0 1rem;
    position: relative;
}

.blog-header-title {}

.header-category {
    margin-bottom: 1rem;
    display: block;
    width: fit-content;
    font-size: 0.8rem;
    padding: 0 0.4rem;
    background: #1869c3;
    color: #fff;
}

.header-title {
    font-weight: bold;
    font-size: 1.4rem;
    color: #1869c3;
    border: none;
}

.blog-header-left dd {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1em;
}

.blog-header-left dd a {
    display: block;
    width: 100%;
    text-decoration: underline;
    color: #5f5f5f;
}

.blog-header-left dd .date {
    position: unset;
}

.update {
    color: #5f5f5f;
    background: url(./../img/icon/update.png) no-repeat center;
    background-size: 1rem;
    background-position-x: 0px;
    padding-left: 1.2rem;
}

.profile-link {
    background: url(./../img/icon/pencil.png) no-repeat center;
    background-size: 1rem;
    background-position-x: 0px;
    padding-left: 1.2rem;
}

.blog-header-figure {}

.blog-header-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.blog-column {
    margin: 1rem;
    border: 2px solid #1869c3;
    border-radius: 4px;
    overflow: hidden;
}

.blog-column-st {
    width: 100%;
    background: #1869c3;
    color: #fff;
    padding: 0.4rem;
    font-weight: bold;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0;
    border: none;
}

.blog-column-st::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    background: url(./../img/icon/checkbox.png) left top no-repeat;
    width: 1rem;
    height: 1rem;
    background-size: contain;
    transform: translateY(-50%);
}

.blog-column ol {
    padding: 1rem;
    font-weight: bold;
}

.blog-column li {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    line-height: 2;
}

.blog-column li::before {
    content: var(--num);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    background: #1869c3;
    color: #fff;
    overflow: hidden;
}

.blog-index {
    margin: 1rem;
    border: 2px solid #0094cf;
    overflow: hidden;
}

.blog-index-st {
    width: 100%;
    background: #0094cf;
    color: #fff;
    font-weight: bold;
    padding: 0.4rem 1rem;
    border: none;
}

.blog-index-inner {
    padding: 1rem;
}

.blog-index-lists {}

.blog-index-list {}

.blog-index-list>a {
    display: inline-block;
    padding-left: 21px;
    line-height: 1.3529411765;
    font-size: 18px;
    font-weight: 700;
    color: #0094cf;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #b2b2b2;
    width: 100%;
    position: relative;
}


.blog-subhead {
    margin-bottom: 1rem;
}

.blog-subhead-list {}

.subhead-list>a {
    display: block;
    padding-left: 40px;
    font-size: 17px;
    font-weight: 400;
    color: #666;
    margin-bottom: 10px;
    position: relative;
}

.blog-index-list>a::before,
.subhead-list>a::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 2px;
    background: url(./../img/icon/a-r.png) left top no-repeat;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 0.8rem;
    height: 0.8rem;
    background-size: contain;
}

.subhead-list>a::before {
    left: 22px;
}

.blog-text {
    margin: 1rem;
    overflow: hidden;
}

.blog-text-inner {
    line-height: 2;
    margin: 2rem auto;

    word-break: break-all;
}

.blog-text-inner>* {
    line-height: 2;
}

.blog-text-inner>h2 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 70px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 30px;
    width: 100%;
    background-color: #e9f0f7;
    padding: 17px 17px 17px 49px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 6px;
    line-height: 1.5;
    font-size: 24px;
    font-weight: 700;
    color: #666;
    border: none;
}

.blog-text-inner>h2::after {
    content: "";
    position: absolute;
    top: 17px;
    bottom: 17px;
    left: 20px;
    display: block;
    content: '';
    width: 6px;
    background: #276db2;
}

.blog-text-inner>h3 {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 4px solid #b2b2b2;
    line-height: 1.4;
    font-size: 20px;
    font-weight: 700;
    color: #666;
    padding: 7px 0;
}

.blog-text-inner>h3::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    display: block;
    content: '';
    width: 160px;
    height: 4px;
    background-color: #276db2;
}

.blog-text-inner>h4 {
    font-weight: 700;
    color: #1869c3;
    position: relative;
    font-size: 1.2rem;
    margin: 1rem 0;
    border-bottom: 1px solid;
}

#new .blog-text-inner strong {
    position: relative;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #ffea92));
    background-image: linear-gradient(transparent 40%, #ffea92 40%);
    background-size: 100% 100%;
    background-position: 0 100%;
    background-repeat: no-repeat;
    font-weight: 700;
    color: #666;
    -webkit-transition: 1s;
    transition: 1s;
    padding-bottom: 3px;
    line-height: 2;
}

#old .blog-text-inner strong {
    line-height: 2;
}

.blog-text-inner span {
    /*
    text-decoration: underline;
    color: #276db2;
    */
}

.blog-text-inner>a {
    display: block;
    margin: 2rem 0;
    border-bottom: 1px solid;
    width: fit-content;
    font-weight: bold;
    color: #1869c3;
}

.blog-text-inner img {
    width: 100%;
    height: auto;
    aspect-ratio: 6/4;
    object-fit: contain;
    margin: 1rem auto;
}

.blog-text-inner iframe {
    width: 100%;
}

.blog-text-inner .related-article {
    display: flex;
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 0px 4px 4px #00000012;
    margin: 2rem;
    gap: 1rem;
    border: none;
    font-weight: normal;
    color: #404040;
}

.blog-text-inner .related-article-inner {
    width: calc(80% - 1rem);
}

.blog-text-inner .related-article-inner span {
    color: #1e69c1;
    font-weight: bold;
    margin-bottom: 1rem;
    display: block;
}

.related-article figure {
    width: 20%;
}

.related-article figure img {
    aspect-ratio: 1/1;
    object-fit: cover;
}


.writer-box {
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
}

.writer-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.writer-inner figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #999999;
}

.writer-inner figcaption {
    text-align: center;
    background: #404040;
    color: #fff;
    padding: 0.6rem;
    margin-bottom: 1rem;
    width: 100%;
}

.writer-inner img {
    width: 70%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    margin: auto;
}


.shop-box {
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
}

.shop-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.shop-inner figure {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1rem;
}

.shop-inner img {
    aspect-ratio: 16/9;
    object-fit: cover;
    margin: auto;
}

.shop-inner .shop-info {
    width: 100%;
}

.shop-inner .shop-info .shop-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #404040;
}

.shop-inner .shop-info ul li {
    margin: 0.5em auto;
    line-height: 1.5;
    font-size: 1em;
}

.shop-inner .shop-btn {
    display: block;
    background: #2369bf;
    color: #fff;
    padding: 0.5em 1em;
    width: 100%;
    border-radius: 4px;
    text-align: center;
}

.column-block {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: #fff;
}

.column-block-inner {}

.column-st {
    background: #1e69c1;
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    font-size: 1.6rem;
    margin-bottom: 0;
    border: none;
}

.column-lists {
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.column-list {
    overflow: hidden;
}

.column-list a{
    display:flex;
    flex-direction:column;
    height:100%;
}

.column-figure{
    width:100%;
    aspect-ratio:3/2;
    background:#f4f4f4;
    overflow:hidden;
}

.column-img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* レイアウトコピー */

form {
    margin: 1rem 1rem 2rem;
}

.copybox {
    width: 100%;
    font-size: 0.8rem;
    background: #8b949f;
    color: #ffffff;
    margin: 1rem auto;
}

textarea.copybox {
    height: 120px;
}

input.copybox {
    height: 2rem;
}

.copybtn {
    width: 100%;
    height: 2rem;
    cursor: pointer;
    background: #2980db;
    color: #fff;
    border: none;
}

/*プロフィールページ用のstyle */
.profile-msg {
    font-weight: 700;
    color: #1869c3;
    position: relative;
    font-size: 1.2rem;
    margin: 1rem 0;
    border-bottom: 1px solid;
}

/* dates */

.dates {
    display: flex;
    gap: 0;
    flex-direction: column;
    margin-top: 1rem;
}

.dates .update {}

.dates .date {
    position: unset;
    margin: 0;
}