*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:where([hidden]:not([hidden='until-found'])) {
    display: none !important
}

:where(html) {
    -webkit-text-size-adjust: none;
    color-scheme: dark light
}

@supports not(min-block-size:100dvb) {
    :where(html) {
        block-size: 100%
    }
}

@media(prefers-reduced-motion:no-preference) {
    :where(html:focus-within) {
        scroll-behavior: smooth
    }
}

:where(body) {
    block-size: 100%;
    block-size: 100 dvb;
    line-height: 1.5;
    font-family: system-ui, sans-serif;
    -webkit-font-smoothing: antialiased
}

:where(input, button, textarea, select) {
    font: inherit;
    color: inherit
}

:where(textarea) {
    resize: vertical;
    resize: block
}

:where(button, label, select, summary, [role='button'], [role='option']) {
    cursor: pointer
}

:where(:disabled) {
    cursor: not-allowed
}

:where(label:has(> input:disabled), label:has(+input:disabled)) {
    cursor: not-allowed
}

:where(button) {
    border-style: solid
}

:where(a) {
    text-underline-offset: 0.2ex
}

:where(ul, ol) {
    list-style: none
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
    display: block
}

:where(img, picture, svg) {
    max-inline-size: 100%;
    block-size: auto
}

:where(p, h1, h2, h3, h4, h5, h6) {
    overflow-wrap: break-word
}

:where(h1, h2, h3) {
    line-height: calc(1em + 0.5rem)
}

:where(hr) {
    border: none;
    border-block-start: 1px solid;
    color: inherit;
    block-size: 0;
    overflow: visible
}

:where(:focus-visible) {
    outline: 2px solid var(--focus-color, Highlight);
    outline-offset: 2px
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
    clip-path: inset(50%) !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    position: absolute !important;
    white-space: nowrap !important;
    border: 0 !important
}

/* font */

@font-face {
    font-family: 'Muli';
    src: url('../font/Muli.woff2') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Muli';
    src: url('../font/Muli-Bold.woff2') format('woff');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Noto';
    src: url('../font/NotoSansJP-Regular.woff2') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Noto';
    src: url('../font/NotoSansJP-Bold.woff2') format('woff');
    font-weight: 700;
    font-display: swap;
}

/**/

a {
    color: #0b5464;
    text-decoration: none;
    transition: all 0.6s;
}

a:hover {
    color: #57290D;
}

img {box-sizing: border-box;}
img,
img a {
    border: 0;
    text-decoration: none;
}

a img {
    transition: opacity 0.4s;
}

a img:hover {
    opacity: .85;
}

strong {
    font-weight: bold;
}

h2 {
    font-weight: 700;
}

h3,
h4 {
    font-weight: 700;
}

/*  layout  */

body {
    background-color: #fff;
    color: #333;
    font-family: 'Muli', 'Noto', 'Helvetica Neue', Helvetica, Arial, Verdana, sans-serif;
}

main {
    margin: 0 auto;
    padding: 30px 30px 0;
    display: flex;
    align-items: flex-start;
}
header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #fff;
    filter: drop-shadow(0 0 7px rgba(16, 66, 56, 0.25));
}
header h1 {
    padding: 10px 0 0 30px;
    font-size:20px;
}

header h1 a {
    color: #0b5464;
}

header .about {
    padding: 10px 30px 0 0;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    align-items: center;
}
header hr {
        height: 1px;
        margin-top: 10px;
        width: 100%;
        border-width: 0;
        background-color: #fff;
}
.copyright {
    text-align: center;
    font-size: 11px;
}

/* modal */
/*モーダルを開くボタン*/
.modal-open{
cursor: pointer;
}
.modal-open #s:focus {
    outline: none;
}
.header__searchbox__inner input[type="text"]
{
    cursor: pointer;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
position: fixed;
z-index: 999;
flex-direction: column;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
background: rgba(240, 240, 240, 0.95);
/* padding: 20px 20px; */
overflow: auto;
opacity: 0;
visibility: hidden;
transition: .3s;
box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
content: "";
display: inline-block;
vertical-align: middle;
height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
opacity: 1;
visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
position: relative;
display: inline-block;
vertical-align: middle;
max-width: 1300px;
width: 95%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
position: absolute;
display: flex;
align-items: center;
justify-content: center;
top: 15px;
right: 15px;
width: 30px;
height: 30px;
font-size: 40px;
color: #000;
cursor: pointer;
}
.modal-close img{
    width: 30px;
    height: 30px;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
background: #fff;
text-align: left;
padding: 30px;
}

div.search {
    display: flex;
    align-items: baseline;
    color:#fff;
    font-size:14px;
    background-color: #009D90;
    padding: 3px .7em;
    border-radius: 4px;
    margin: 0 20px 0 0;
}




/* list */

.list_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.list_wrap .box{
    width: 18%;
    margin: 0 1% 30px 1%;
}
.list_wrap .box img{
    width: 100%;
}
.list_wrap .box .cate {
    display: flex;
    flex-wrap: wrap;
}
.list_wrap .box .cate a{
    padding: 2px .7em 3px;
    border-radius: 4px;
    display: flex;
    border: 1px solid #0b5464;
    background-color: #fff;
    color:#0b5464;
    font-size: 12px;
    line-height: 1;
    margin: 5px 10px 0 0;
    transition: all .4s;
}
.list_wrap .box .cate a:hover{
    background-color: #316677;
    color: #fff;
}
.list_wrap .box h4 {
    font-weight: normal;
    font-size: 15px;
    text-align: left;
    padding: 3px 0 0;
    color:#333;
}

@media (max-width: 1919px) {
    .list_wrap .box{
        width: 18%;
    }
}
@media (max-width: 1460px) {
    .list_wrap .box{
        width: 23%;
    }
}
@media (max-width: 1020px) {
    .list_wrap .box{
        width: 31.3%;
    }
}
@media (max-width: 800px) {
    .list_wrap .box{
        width: 48%;
    }
}
@media (max-width: 420px) {
    .list_wrap .box{
        width: 100%;
        margin: 0 0 30px 0;
    }
}

@media (max-width: 1919px) {
    #search.list_wrap .box{
        width: 18%;
    }
}
@media (max-width: 1600px) {
    #search.list_wrap .box{
        width: 23%;
    }
}
@media (max-width: 1410px) {
    #search.list_wrap .box{
        width: 31.3%;
    }
}
@media (max-width: 1100px) {
    #search.list_wrap .box{
        width: 48%;
    }
}
@media (max-width: 880px) {
    #search.list_wrap .box{
        width: 100%;
        margin: 0 0 30px 0;
    }
}


#side {
    width:400px;
    margin-left: 20px;
    flex-shrink: 0;
    font-size: 13px;
}

/* single */
#single {
    width:100%;
}
time {
    display: block;
    font-size: 12px;
    color:#0b5464;
    padding: 5px 0 8px;
    font-weight: bold;
}
.photo_box .cap{
    font-size: 12px;
}
.photo_box p span {
    font-size:11px;
    font-weight: 700;
}
main .free {
    line-height: 1.75;
}
h5.subtitle {
    font-size:18px;
    padding: 1em .8em .2em;
    color:#666;
}
h5.subtitle i {
    color: #316677;
}
.nas_ti {
    font-size: 17px;
    padding: 2em 0 .2em;
}
.nas_ti span {
    font-size: 14px;
}
.nas_pass {
    background-color: #ddd;
    padding: 3px 1em;
    margin-top: 10px;
    display:inline-block;
    border-radius: 4px;
    letter-spacing: 0.1em;
    font-size: 12px;
}

.balloon {
    position: relative;
    display: inline-block;
    margin: 0 0 .3em 15px;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #FFF;
    border: solid 1px #555;
    border-radius: 8px;
    box-sizing: border-box;
}
  
.balloon:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -11px;
    margin-top: -6px;
    border: 6px solid transparent;
    border-right: 6px solid #FFF;
    z-index: 2;
}
  
.balloon:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -13px;
    margin-top: -7px;
    border: 7px solid transparent;
    border-right: 7px solid #555;
    z-index: 1;
}
  
.balloon p {
    margin: 0;
    padding: 0;
}

.map_wrap,
.map_top {
    margin: 30px;
}
.map_top h4 {
    font-size: 16px;
    font-weight: 800;
    padding-bottom: .5em;
    color: #0b5464;
}

/* form */
input {
    background-color: #fff;
    padding: 0 3px;
    height: 24px;
    transition: all .4s;
}
input:focus {
    border: 2px solid #009D90;
    outline: none;
}
button {
    background-color: #ccc;
    height: 24px;
    font-size: 12px;
    padding: 0 3px;
}
button i {
    padding-left: .2em;
    font-size: .7rem;
}
#side h4,
.modal-content h4 {
    font-size:18px;
    padding: 0 0 5px;
}
.note {
    font-size: 12px;
    padding: .5em 0;
}
.input_warp_s {
    display: flex;
    align-items: flex-start;
}
.input_warp_s input {
    margin-right: 4px;
}
.search_type_box {
    display: flex;
}
.search_type_box div {
    display: flex;
    align-items: center;
    padding-right: 12px;
}
.search_type_box div input {
    margin-right: 5px;
}

/* label */
.search_box label,
.photo_box label {
    margin-right: 9px; /* ボタン同士の間隔 */
}
.search_box label input,
.photo_box label input {
    display: none; /* デフォルトのinputは非表示にする */
}
.search_box label span,
.photo_box label span {
    color: #333; /* 文字色を黒に */
    font-size: 13px; /* 文字サイズを14pxに */
    border: 1px solid #666; /* 淵の線を指定 */
    padding: 1px .8em; /* 上下左右に余白をトル */
    display: inline-block;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all .4s;
}
.photo_box label span {
    padding: 0 1em;
    margin-left: .5em;
    border-radius: 4px;
    line-height: 1.1;
    font-size: 12px;
}
.search_box label input:checked + span,
.photo_box label input:checked + span {
    color: #fff;
    background: #009D90;
    border: 1px solid #666;
}
.btn_wrap {
    display: flex;
    flex-wrap: wrap;
}
.inbtn {
    cursor: pointer;
    font-size: 13px;
    padding: 3px 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    line-height: 1;
    height: 22px;
    margin: 5px 10px 0 0;
    border:1px solid #999;
}
.inbtn.dl {
    background-color: #009D90;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    height: 31px;
    margin: 15px 0 0;
    border: 0;
}




/* mix */
.mix {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    border-radius: 2px;
	padding-bottom:0;
    margin-bottom: 0;
    position: relative;

    backface-visibility: hidden; /* prevents flicker in chrome */
    will-change: transform, opacity; /* prevents flicker in safari */
}

.mix:before {
    content: '';
    display: inline-block;
}

@media screen and (min-width: 600px) {
    .grid {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
    }
}
@media screen and (min-width: 900px) {
    .grid {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
    }
}
@media screen and (min-width: 1100px) {
    .grid {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
    }
}
@media screen and (min-width: 1600px) {
    .grid {
        -webkit-column-count: 4;
        -moz-column-count: 4;
        column-count: 4;
    }
}
@media screen and (min-width: 2000px) {
    .grid {
        -webkit-column-count: 5;
        -moz-column-count: 5;
        column-count: 5;
    }
}

@media (max-width: 740px) {
    main {
        flex-direction: column;
    }
    #side {
        width:100%;
        margin: 80px 0 0;
    }
}

/* pass btn */
.pass_btn {
    background-color: #009D90;
    color: #fff;
    font-size:14px;
    font-weight: bold;
    margin-top: 6px;
    margin-bottom: 1em;
    line-height: 1.8;
    border-radius: 5px;
    border: 1px solid #009D90;
    display: flex;
    align-items: baseline;
    height: 28px;
    padding: 0 1em;
}
.pass_btn span {
    font-size: 12px;
    padding-left: 1em;
}

/* pager */
.pagination{
    margin:40px 0 0;
 }
 .nav-links{
    display:flex;
 }
 .pagination .page-numbers{
    display:inline-block;
    margin-right:20px;
    padding:10px 15px;
    color:#333;
    border-radius:3px;
    box-shadow:0 3px 4px #bbb;
    background:#fff;
 }
 .pagination .current{
    padding:10px 15px;
    background:#0b5464;
    color:#fff;
 }
 .pagination .prev,
 .pagination .next{
    background:transparent;
    box-shadow:none;
    color:#0b5464;
 }
 .pagination .dots{
    background:transparent;
    box-shadow:none;
 }
.navigation {
    width: 100%;
    padding: 0 30px 0 calc(30px + 1%);
}
.pager_foot .pagination {
    margin: 0;
    padding-bottom: 70px;
}

/* about page */
.free {
    padding: 1em 0;
}
.free h2,
.free h3,
.free h4,
.free h5 {
    padding:1.5em 0 .4em;
    font-weight: bold;
}

.free ul{
    margin-left: 1.3em;
    list-style: disc;
    margin-bottom: 1em;
}
.free ul li{
    padding-bottom: .5em;
}
.free ol{
    margin-left: 1.3em;
    list-style: decimal;
    margin-bottom: 1em;
}
.free ol li{
    padding-bottom: .5em;
}