@charset "UTF-8";

/* Template & Designed by Orihashi Ren */
/* http://kerry.php.xdomain.jp/ */

/* webフォント */
@import url('https://fonts.googleapis.com/css2?family=Jura:wght@500&family=Meddon&family=Noto+Sans+JP:wght@300&family=Noto+Serif+JP&family=Quicksand&display=swap');

/* 全体設定 */
* {
    padding: 0;
    margin: 0;
}
*, *::after, *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
* {
    -ms-overflow-style: none;    /* IE, Edge 対応 */
    scrollbar-width: none;       /* Firefox 対応 */
}
*::-webkit-scrollbar{  /* Chrome, Safari 対応 */
    display: none;
}
@-ms-viewport {
    width: device-width;
}

/* 基本設定 */

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;}
html,body {
    padding:0;
    margin:0;
    height: 100%;
}
html {
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 13px;
  }
}
@media screen and (min-width: 1280px) {
  html {
    font-size: 13px;
  }
}
body {
    width: 100%;
    text-align: justify;
    word-wrap: break-word; /* 禁則処理 */
    overflow-wrap: break-word;
    -webkit-text-size-adjust: 100%; /* Safari横向き対策 */
    background-color: var(--pure-gray);
    color: var(--black);
    font-family: 'Quicksand','Noto Sans JP', sans-serif;
}
@media screen and (max-width: 480px) {
    html, body {
        min-width: 320px;
    }
}
body, input, select, textarea, p {
    font-weight: 400;
    font-size: 1carrem;
    line-height: 1.7;
    letter-spacing: 0.055em;
}
@media screen and (min-width: 768px) {
    body, input, select, textarea, p {
        font-size: 1rem;
    }
}

/* リンク */
a {
    -moz-transition: color .1s ease-in-out, background-color .1s ease-in-out, border-bottom-color .1s ease-in-out;
    -webkit-transition: color .1s ease-in-out, background-color .1s ease-in-out, border-bottom-color .1s ease-in-out;
    -ms-transition: color .1s ease-in-out, background-color .1s ease-in-out, border-bottom-color .1s ease-in-out;
    transition: color .1s ease-in-out, background-color .1s ease-in-out, border-bottom-color .1s ease-in-out;
    border-bottom: solid 0px var(--blue);
    text-decoration: none;
    outline: none;
    color: var(--blue);
}
a:hover {
    border-bottom-color: transparent;
    color: #AD8F9F;
}

/* 文字装飾 */
strong, b, .b {
    font-weight: 700; /*太字*/
}
strong {
    color: #E20613;
}
em, i {
    font-style: italic; /*斜体*/
}
em {
    border-bottom: 1px dashed #E20613;
}

/* text */
p {
    text-align: justify;
    margin: 0 0;
    padding: 0rem 0;
}
h1, h2, h3, h4, h5, h6 {
    text-align: center;
    font-weight: 600;
    line-height: 1.7rem;
    letter-spacing: 0.055em; /*文字間隔*/
    font-family: 'Jura','Noto Sans JP', sans-serif;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    border-bottom: 0;
    color: inherit;
    text-decoration: none;
}
h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 1rem 0rem 1rem;
}
h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin: 1rem 0rem 1rem;
}
h3 {
    font-size: 1.3rem;
    margin: 1rem 0rem 1rem;
}
h4 {
    font-size: 1.2rem;
    margin: 1rem 0rem 1rem;
}
h5 {
    font-size: 1.1rem;
    margin: 1rem 0rem 1rem;
}
h6 {
    font-size: 1.3rem;
    margin: 1rem 0rem 1rem;
}

/* 上付き */
sub {
    font-size: 0.6rem;
    position: relative;
    top: 0.5rem;
}
/* 下付き */
sup {
    font-size: 0.6rem;
    position: relative;
    top: -0.5rem;
}

/* マーカー */
mark {
    display: inline-block;
    padding: 0rem .5rem;
    margin: 0rem 0;
    background: linear-gradient(transparent 10%, var(--pure-white) 10%);
    color: var(--dark);
    text-shadow: none;
}

/* 引用 */
blockquote {
    position: relative;
    padding: 5px 15px 5px 55px;
    box-sizing: border-box;
    font-style: italic;
    border-radius: 0px;
    color: var(--dark);
    background: rgba(246, 239, 231, .7);
}
blockquote:before{
    display: inline-block;
    position: absolute;
    top: 0;
    left: 8px;
    width: 38px;
    height: 30px;
    text-align: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    background: var(--gray);
    font-weight: 900;
}
blockquote:after{
    content: '';
    position: absolute;
    left: 8px;
    top: 30px;
    height: 0;
    width: 0;
    border-left: 19px solid var(--gray);
    border-right: 19px solid var(--gray);
    border-bottom: 10px solid transparent;
}
blockquote p {
    position: relative;
    padding: 0;
    margin: 10px 0;
    z-index: 3;
    line-height: 1.9;
}
blockquote cite {
    display: block;
    text-align: right;
    font-size: 0.9em;
    color: #888888;
    opacity: .8;
}

/* コード */
code {
    border: none;
    font-family: "Courier New", monospace !important;
    margin: 0 .25rem;
    padding: .25rem .65rem;
    background: rgba(238, 238, 238, .7);
    border: solid 1px #eeeeee;
    color: var(--dark);
}
pre {
    width :100% !important;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    text-align: left;
    font-family: "Courier New", monospace !important;
    margin: .5rem 0;
}
pre code {
    width: 100% !important;
    overflow-x: auto;
    display: block;
    padding: .25rem 1.5rem;
    box-sizing: border-box !important;
}

/* 区分線 */
hr {
    border: 0;
    border-bottom: solid 2px;
    margin: 3rem 0rem;
    border-bottom-color: var(--pure-blown);
}

/* 文字揃え */
/*  <span class="align-center">例</span> 等と使用してください  */
.align-left {
    text-align: left;
}
.align-center,
.align-center p {
    text-align: center;
}
.align-right {
    text-align: right;
}

/* Box */
.box {
    text-align: left;
    width: 100%;
    height: auto;
    margin: 2rem 0rem;
    padding: 1.0rem;
    border-radius: 0px;
}
.box-1 {
    border: 1px solid var(--pure-white);
    background: var(--pure-white);
}
.box-2 {
    border: 1px solid #fff;
    background: #fff;
}
.box > p {
    padding: 0 0;
    text-shadow: none;
}
.box a {
    color: #fff;
}

/* lists */
ol, ul {
    text-align: left;
    margin: .5rem 0;
    list-style: none;
}
.list_no {
    list-style: none;
}
.list_un {
    list-style: disc;
}
.list_or {
    list-style: decimal;
}
.list_no > li,
.list_un > li,
.list_or > li {
    margin: 0 0 0 2rem;
    line-height: 1.5rem;
    padding-left: .5rem;
    text-align: left;
}
.float {
    margin: 0;
}
.float li {
    float: left;
    margin: 0 0.5rem;
}
.float:after {
    display: block;
    content: '';
    clear: both
}

/* dl */
dl {
    text-align: left;
}
.dltype1 {
    text-align: left;
    margin: 0.5rem 1rem;
}
.dltype1 > dt a,
.dltype1 > dt {
    color: var(--green);
    border-bottom: 1px solid var(--orange);
}
.dltype1 > dd {
    margin-left: 1.3rem;
    font-size: .9rem;
}

/* table */
.table_div {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    margin: 0 0rem;
}
table {
    margin: 0rem 0rem;
    width: 100%;
}
table thead {
    border-bottom: solid 2px #231d25;
}
table tbody tr {
    border: solid 1px;
    border-left: 0;
    border-right: 0;
    border-color: #231d25;
}
table tbody tr:nth-child(odd) {
    background-color: rgba(238, 238, 238, .7);
}
table td {
    padding: 0.75rem 0.75rem;
}
table th {
    font-family: 'Jura','Noto Sans JP', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.5;
    padding: 0 0.75rem 0.75rem 0.75rem;
    text-align: left;
}
table tfoot {
    border-top: solid 2px;
    border-top-color: #eeeeee;
}
@media screen and (max-width: 980px) {
    table th {
        font-size: 0.9rem;
    }
}

/* link button */
.link {
    display: inline-block;
    height: 25px;
    line-height: 19px;
    margin: .5rem auto;
    padding: 0 .3rem;
    font-size: .7rem;
    border-radius: 0px;
    border-top: 2px solid var(--blue) !important;
    border-bottom: 2px solid var(--blue) !important;
    color: var(--blue) !important;
    transition: all .1s;
}
.link:hover {
    background-color: var(--blue);
    color: #fff !important;
}
.btn {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    position: relative;
    white-space: nowrap;
    border: none;
    margin: 0.7rem;
    padding: 6px 20px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.1rem;
    font-weight: 400;
    border-radius: 0 0 15px 0;
    text-decoration: none;
    -webkit-transition: all .1s  !important;
    transition: all .1s !important;
    -moz-transition: all .1s !important;
    font-family: 'Quicksand','Noto Sans JP', sans-serif　!important;
}
.btn-1 {
    background: var(--dark);
    border: 1px solid var(--dark);
    color: #fff !important;
}
.btn-1:hover {
    background: #fff;
    border: 1px solid #fff;
    color: var(--dark) !important;
}
.btn-2 {
    background: #fff;
    border: 1px solid #fff;
    color: var(--dark) !important;
}
.btn-2:hover {
    background: var(--dark);
    border: 1px solid var(--dark);
    color: #fff !important;
}
.btn-3 {
    background: var(--gray);
    border: 1px solid var(--gray);
    color: #fff !important;
}
.btn-3:hover {
    background: #fff;
    border: 1px solid var(--gray);
    color: var(--gray) !important;
}
.btn-4 {
    background: #fff;
    border: 1px solid #fff;
    color: var(--dark) !important;
    width: 65px;
}
.btn-4:hover {
    background: var(--dark);
    border: 1px solid var(--dark);
    color: #fff !important;
}
.btn-1:hover svg {
    fill: var(--dark);
}
.btn svg {
    position: relative;
    left: -4px;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: top;
    font-weight: normal;
    margin: 2px 0;
    fill: #fff;
    transition: all .1s;
}

/* form */
form {
    text-align: center;
}
.box-a {
    max-width: 340px;
    margin: 1rem auto;
    padding: 0rem;
    border: 1px solid transparent;
    background: transparent;
}
input[type=text],
input[type=search],
textarea {
    outline: none;
    display: block;
    width: 100%;
    -webkit-appearance: none;
    background: var(--pure-white);
    border: 1px solid var(--pure-white);
    border-radius: 0 0 15px 0;
    padding: 8px 16px;
    line-height: 22px;
    color: var(--blown);
}
input[type=text]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--blown);
}
input[type=text]::-moz-placeholder,
textarea::-moz-placeholder {
    color: var(--blown);
}
input[type=text]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: var(--blown);
}
input[type=text]::placeholder,
textarea::placeholder,
.cp_ipselect select::placeholder {
    color: var(--blown);
}
input[type],
textarea,
.cp_ipselect select {
    -moz-transition: border-color .1s ease-in-out, box-shadow .1s ease-in-out, background-color .1s ease-in-out;
    -webkit-transition: border-color .1s ease-in-out, box-shadow .1s ease-in-out, background-color .1s ease-in-out;
    -ms-transition: border-color .1s ease-in-out, box-shadow .1s ease-in-out, background-color .1s ease-in-out;
    transition: border-color .1s ease-in-out, box-shadow .1s ease-in-out, background-color .1s ease-in-out;
    font-family: 'Quicksand','Noto Sans JP', sans-serif !important;
}
input[type=text]:focus,
textarea:focus,
.cp_ipselect select:focus {
    outline: none;
    border-color: var(--pure-blown);
    background: var(--pure-blown);
    color: #fff;
}
input[type=text]:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder,
.cp_ipselect select:focus::-webkit-input-placeholder {
    color: #fff;
}
input[type=text]:focus::-moz-placeholder,
textarea:focus::-moz-placeholder,
.cp_ipselect select:focus::-moz-placeholder {
    color: #fff;
}
input[type=text]:focus:-ms-input-placeholder,
textarea:focus::-ms-input-placeholder,
.cp_ipselect select:focus::-ms-input-placeholder {
    color: #fff;
}
input[type=text]:focus::placeholder,
textarea:focus::placeholder,
.cp_ipselect select:focus::placeholder {
    color: #fff;
}
.form-element {
    margin-bottom: 20px;
}
form label {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    color: var(--dark-blown);
    font-weight: 500;
}
.cp_ipselect {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.cp_ipselect select {
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl01 {
    position: relative;
    border: 1px solid var(--pure-white);
    border-radius: 0 0 15px 0;
    background: var(--pure-white);
}
.cp_ipselect.cp_sl01::before {
    position: absolute;
    top: 0.8em;
    right: 0.9em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #999;
    pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
    padding: 8px 38px 8px 8px;
    color: #999
}
.cp_ipselect select option{
    background-color: var(--pure-blown);
    color: #fff;
}

/*-------------------- index --------------------*/

/* color */
:root {
    --pure-gray: #f5f5f5;
    --gray: #d5dedd;
    --dark: #2c2724;
    --pure-blown: #cec5bc;
    --blown: #8a6f5e;
    --dark-blown: #493d35;
    --pure-white: #f0ebe5;
    --blue: #7583A2;
}

/* corner */
nav {
    position: fixed;
    left: 3.4rem;
    top: 3rem;
    z-index: 12;
    font-size: 1.5rem;
    font-family: 'Meddon','Noto Serif JP', serif;
    color: #888;
}
.corner {
    position: fixed;
    width: 192px;
    height: 192px;
    background-image: radial-gradient(#fff 15%, transparent 16%),
        radial-gradient(#fff 15%, transparent 16%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    transform:rotate(45deg);
    z-index: 10;
}
.corner-1 {
    left: -98px;
    top: -98px;
}
.corner-2 {
    bottom: -98px;
    right: -98px;
}

/* header */
header {
    position: relative;
    overflow: hidden;
    width: 100%;
    top: 0;
    margin: 2.5rem auto 20vh;
    animation-name: FadeIn;
    animation-duration: 1s;
}
header img {
    width: 100%;
}
.menu,
.long h4::before {
    position: absolute;
}
header h1 {
    position: absolute;
    top: 5%;
    right: 10%;
    letter-spacing: 0;
    font-size: 2rem;
    font-family: 'Hannari', serif;
    color: var(--brown)
}
header h1::before,
header h1::after {
    position: absolute;
    display: block;
    content: '';
    right: -4rem;
    height: 1px;
    background: var(--dark);
}
header h1::before {
    width: 250%;
    top: 4rem;
}
header h1::after {
    width: 170%;
    top: 5rem;
}
.long h4::before {
    display: block;
    content: '';
    width: 200%;
    height: 1px;
    top: 50%;
    left: 110%;
    background-color: var(--dark);
}

/* menu */
.menu {
    bottom: 10%;
    right: 3%;
}
.menu li {
    margin: 0.1rem auto;
    transform: rotate(-20deg);
    font-size: 1.2rem;
    font-family: 'Jura','Noto Sans JP', sans-serif;
}
.menu li a {
    border-bottom: none;
    color: var(--dark);
}

/* line */
.hr,
.hr::before,
.hr::after {
    display: block;
    height: 1px;
    left: 0;
    background-color: var(--dark);
}
.hr::before,
.hr::after {
    position: absolute;
    content: '';
}
.hr {
    position: relative;
    margin: 1rem 0;
    width: 80%;
}
.hr::before {
    bottom: -1rem;
    width: 60%;
}
.hr::after {
    bottom: -2rem;
    width: 40%;
}

/* main */
main {
    overflow-x: hidden;
    margin-bottom: 10vh;
}
main > div {
    margin: 0 auto 4rem;
}
main section, main .section {
    padding: 0 2.5rem;
}
section > div, .section > div {
    text-align: left;
}
.pd-l {
    padding-left: .7rem;
}
/*section全般の設定*/
section + section {
	padding-top: 50px;	/*sectionの間に空けるスペース*/
}

/* text */
h2 {
    margin: 0 auto 1.5rem;
    font-size: 1.2rem;
}
h2 img {
    width: 50px;
    height: auto;
}
h3 {
    display: inline-block;
    text-align: left;
    margin: 1rem 0 .7rem;
    padding: 0 .5rem 0 .5rem;
    border-left: 3px solid var(--dark-blown);
    border-bottom: 1px solid var(--dark-blown);
    font-size: 1rem;
}

/* wide, margin */
.max-600 {
    max-width: 600px;
    margin: 0 auto;
}
.mg {
    margin-bottom: 2rem;
}

/* dl */
.dltype2 dt,
.dltype2 dd,
.dltype2 .dt,
.dltype2 .dd {
    display: inline-block;
    position: relative;
}
.dltype2 dd, .dltype2 .dd {
    margin-left: 3rem;
}
.dltype2 dt::after, .dltype2 .dt::after {
    position: absolute;
    content: "";
    display: block;
    height: 1px;
    width: 2rem;
    top: 50%;
    left: 100%;
    margin: 0 .5rem;
    background: var(--dark-blown)
}

/* aside */
aside {
    margin: .5rem 0;
    padding: .7rem;
    background: #fff;
}

/* scroll box */
.scroll {
    position: relative;
    overflow-y: scroll;
    height: 8rem;
    width: 100%;
    margin: 0 auto 0rem;
    padding: 0;
    font-size: 11px;
    border-radius: 0px;
    border: 1px solid transparent;
    background: transparent;
}
.scroll .list_no {
    margin: 0;
}
.scroll .list_no li {
    margin: 0 0;
    padding-left: 0rem;
}

/* new */
.new::after {
    content: "new";
    color: var(--blown);
    margin-left: 0.5rem;
    opacity: .8;
    font-family: 'Quicksand','Noto Serif JP', serif;
}

/* profile */
.pro-img {
    display: inline-block;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0 0 15px 0;
    vertical-align: middle;
    opacity: .8;
}
.name {
    display: inline-block;
    vertical-align: middle;
    margin: 0 1rem;
}

/* footer */
footer {
    text-align: center;
    margin: .5rem auto;
    font-size: .8rem;
}

/* animation */
img {
    animation-name: FadeIn;
    animation-duration: 1s;
}
@keyframes FadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@media screen and (min-width:768px) {
    header {
        float: left;
        width: 40%;
        margin: 1.5rem auto;
    }
    main {
        margin: 3rem auto;
        overflow: hidden;
    }
    main::after {
        display: block;
        content: '';
        clear: both;
    }
}

@media screen and (min-width:1280px) {
    header {
        width: 30%;
    }
    main {
        width: 60%;
    }
    main > div,
    .col-2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .column {
        columns: auto 2;
        flex-basis: 100%;
    }
    .column h2 {
        column-span: all
    }
    .col-1 {
        flex-basis: 100% !important;
        column-span: all
    }
    article {
        flex-basis: 45%;
    }
    main > div section, main > div .section {
        flex-basis: 50%;
    }
}

/*-------------------- main --------------------*/

/* text */
.short h4 {
    display: inline-block;
    text-align: left;
    margin: 0 1rem 0 0;
    font-size: .8rem;
}

/* コンテナの設定 */
.container {
  display: grid;
  grid-template-columns: 1fr; /* 1列 */
  grid-template-rows: repeat(30, 150px); /* 30行、高さ150px */
  gap: 20px; /* カード間の間隔 */
  width: 100%;
  max-width: 800px; /* コンテナの最大幅 */
  margin: 20px auto; /* 中央揃え */
}
.container2 {
  display: grid;
  grid-template-columns: 2fr; /* 2列 */
  grid-template-rows: repeat(30, 350px); /* 30行、高さ150px */
  gap: 20px; /* カード間の間隔 */
  width: 100%;
  max-width: 800px; /* コンテナの最大幅 */
  margin: 20px auto; /* 中央揃え */
}

/* long */
.card {
    position: relative;
    width: 90%;
    height: auto;
    margin: 0 auto;
    padding: 1rem 0;
}
.card::before {
    position: absolute;
    display: block;
    content: '';
    top: 1rem;
    height: 11rem;
    width: 100%;
    border-radius: 5px;
    background: rgba(255,255,255,.4);
    z-index: 1;
}
.card img {
    width: 100%;
    height: 11rem;
    object-fit: cover;
    border-radius: 5px;
    z-index: 0;
    background: #fff;
    vertical-align: bottom;
}
.card > div {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    padding: .5rem;
    margin: auto 0;
    z-index: 2;
}
.card .img {
    display: block;
    position: relative;
    width: 100%;
    height: 11rem;
    border-radius: 5px;
    z-index: 0;
    background: #fff;
}
.card a {
    position: relative;
    margin: auto;
    height: auto;
    border-bottom: none;
}
.card p {
    overflow-y: hidden;
    text-overflow: ellipsis;
    max-height: 7.5rem;
    line-height: 1.2rem;
    margin-bottom: .2rem;
    font-size: 11px;
    color: var(--black)
}
.card h4,
article h4 {
    text-align: right;
    margin: 0 -.5rem;
    padding: .1rem 1rem;
    font-size: 0.9rem;
    background: #fff;
    z-index: 3;
}

/* short */
.short span {
    line-height: 1.2rem;
    font-size: 10px;
    color: var(--blown)
}

/* form */
.main form {
    display: inline-block;
    margin: 1rem -1rem;
    max-width: 370px;
}
.main input[type] {
    display: inline-block;
}
.main input[type=text] {
    width: 40%;
    padding: .2rem .3rem;
    color: #141c1c;
}
.main input[type=submit] {
    -webkit-appearance: none;
    transition: all .1s;
    padding: .1rem .3rem;
    border-radius: 0 0 15px 0;
    background: var(--pure-blown);
    border: 1px solid var(--pure-blown);
    color: #fff !important;
}
.main input[type=submit]:hover {
    background: #fff;
    border: 1px solid #fff;
    color: var(--pure-blown) !important;
}

/* right */
.right,
.right p,
.right a {
    text-align: right;
}

/*-------------------- long --------------------*/

/* text */
.one h4 {
    position: relative;
    display: inline-block;
    letter-spacing: 0;
    font-size: 1.3rem;
    font-family: 'Meddon','Noto Serif JP', serif;
    color: var(--dark)
}
.long h4::before {
    width: 500%;
    max-width: 17rem;
}

/* center */
.one .col-1 {
    text-align: center;
}

/* top image */
.long-img {
    object-fit: cover;
    position: relative;
    display: inline-block;
    width: 200px !important;
    height: 200px !important;
    margin: 3.5rem auto 4rem;
    box-shadow: 1px 1px 10px silver;
}

/* list */
.long .long-l {
    padding-left: 1rem;
    border-left: 10px solid #fff;
}
.long-l a {
    border-bottom: none;
}

/* form */
.one input[type=text],
.one textarea {
    background: #fff;
    border: 1px solid #fff;
    color: var(--blown)
}
.one input[type=text]:focus,
.one textarea:focus {
    outline: none;
    border-color: var(--pure-blown);
    background: var(--pure-blown);
    color: #fff;
}
.one input[type=text]:focus::-webkit-input-placeholder,
.one textarea:focus::-webkit-input-placeholder {
    color: #fff;
}
.one input[type=text]:focus::-moz-placeholder,
.one textarea:focus::-moz-placeholder {
    color: #fff;
}
.one input[type=text]:focus:-ms-input-placeholder,
.one textarea:focus::-ms-input-placeholder {
    color: #fff;
}
.one input[type=text]:focus::placeholder,
.one textarea:focus::placeholder {
    color: #fff;
}

@media screen and (min-width:1280px) {
    .long-img {
        width: 300px !important;
        height: 300px !important;
    }
}

/*-------------------- novel --------------------*/

/* caption, afterword */
.cap-af {
    margin: 1rem 0;
    padding: .5rem 1rem;
    background: #fff;
}

/* story */
.novel h5 {
    text-align: left;
    margin: 1.5rem 0;
}
.novel {
    text-align: center !important;
    padding: 1rem;
    margin: 2rem 0;
    background: #fff
}
.novel > p {
    /*小説部分の段落に間隔を作りたくない場合はmargin-topに0を指定してください*/
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 2rem; /*小説部分の行間*/
    letter-spacing: 0.025rem; /*小説部分の文字間隔*/
}
.novel > p:first-of-type {
    margin-top: 0;
}

/* ruby */
[data-ruby] {
  display: inline-block;
  position: relative;
}
[data-ruby]::before {
  content: attr(data-ruby);
  display: inline-block;
  position: absolute;
  transform: translateX(-50%) scale(.5);
  white-space: nowrap;
  top: -1rem;
  left: calc(50%);
  text-align: center;
  letter-spacing: 0.25em;
  font-size: 1em;
  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}
[data-ruby] rt {
  display: none;
}

/* pagination */
ul.pagination {
    display: inline-block;
    position: relative;
    text-align: center !important;
    margin: 1.5rem auto;
    padding: .3rem 1rem;
    line-height: 1.9rem;
    transition: all .1s;
    background: transparent;
}
ul.pagination > li {
    display: inline-block;
    margin: 0 5px 0 0;
}
ul.pagination > li a {
    border: none;
}
ul.pagination > li:last-child {
    margin: 0 0;
}
ul.pagination img {
    margin-bottom: -.5rem;
    width: 2rem;
    height: auto;
}

/*-------------------- note --------------------*/

/* time */
time, .time {
    margin: 0 1rem;
    font-weight: bold;
}

/* article */
article {
    position: relative;
    margin: 2rem .5rem;
    padding: .5rem;
    line-height: 1.2rem;
    font-size: 10px;
    border-radius: 5px;
    color: var(--dark-blown);
    background: #fff;
}
article p {
  font-size: 10px;
}
article div {
    text-align: center;
    overflow-y: scroll;
    height: 10rem;
}
article img {
    display: inline-block;
    height: 15rem;
    width: auto;
    max-width: 100%;
    margin: .5rem auto;
    object-fit: cover;
}
article aside,
.article aside,
.novel aside {
    background: var(--pure-white);
}
article aside mark,
.article aside mark,
.novel aside mark {
    background: linear-gradient(transparent 10%, var(--pure-blown) 10%);
    color: #fff;
}
article .link {
    text-align: right;
}

.a-img,
[id^="figure"] a {
    border-bottom: none;
}
figure{
    margin: 0;
    display: none;
}
figure:target{
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
figure:target [id^="overlay"]{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    color: inherit;
}
figure:target img{
    height: 20rem;
    max-width: none;
    max-height: none;
    width: auto;
    object-fit: fill;
    animation: fadein .1s;
}



@keyframes fadein{
    0%{
        transform: scale(0.2);
        opacity: 0.2;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}

@media screen and (min-width:768px) {
    figure:target img{
        height: 30rem;
    }
    article {
        margin: 1rem .5rem;
    }
}
@media screen and (min-width:1280px) {
    figure:target img{
        height: 40rem;
    }
}

/*-------------------- article --------------------*/

.article {
    margin: 1rem auto;
    padding: 1rem;
    background: #fff;
}
.one img {
    width: 100%;
    height: auto;
    max-height: 17rem;
    object-fit: cover;
    margin: .5rem auto 0;
}

/*-------------------- elements --------------------*/

h5 {
    display: inline-block;
    padding-left: .7rem;
    font-size: .9rem;
    border-left: 10px solid #fff;
}
h6 {
    display: block;
    text-align: left;
    font-size: .9rem;
    border-bottom: 1px solid #fff;
}
.sub {
    display: inline-block;
    margin: .5rem 0;
}

article .border-r,
.article .border-r,
.novel .border-r {
    border-right: solid 3px var(--pure-blown);
}
article h5,
.article h5,
.novel h5 {
    border-left: 10px solid var(--pure-blown);
}
article h6,
.article h6,
.novel h6 {
    border-bottom: 1px solid var(--pure-blown);
}
article .box-2,
.article .box-2,
.novel .box-2 {
    border: 1px solid var(--gray);
    background: var(--gray);
    color: #fff;
}
article .box-2 h3,
.article .box-2 h3,
.novel .box-2 h3 {
    border-left: 3px solid #fff;
    border-bottom: solid 1px #fff;
}
article .box-2 h4,
.article .box-2 h4,
.novel .box-2 h4 {
    color: #fff;
}
article .box-2 h4::before,
.article .box-2 h4:before,
.novel .box-2 h4::before {
    background: #fff;
}
article .btn-2,
.article .btn-2,
.novel .btn-2,
article .btn-1:hover,
.article .btn-1:hover,
.novel .btn-1:hover {
    border: 1px solid var(--pure-blown);
}


/*-------------------- other --------------------*/

/* pagetop button */
#page-top {
    position: fixed;
    bottom: 1%;
    right: 1%;
    z-index: 100;
}
#page-top a {
    display: block;
    padding: .1rem .4rem;
    border-bottom: none;
}
#page-top img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

/* loader */
.page-loader {
    display: inline-block;
    position: fixed;
    height: 100vh;
    width: 100%;
    background: var(--pure-gray);
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    z-index: 9998;
}
.intersecting-circles-spinner, .intersecting-circles-spinner * {
    box-sizing: border-box;
}
.intersecting-circles-spinner {
    height: 70px;
    width: 70px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    margin:0;
    padding:0;
}
.intersecting-circles-spinner .spinnerBlock {
    animation: intersecting-circles-spinners-animation 1200ms linear infinite;
    transform-origin: center;
    display: block;
    height: 35px;
    width: 35px;
}
.intersecting-circles-spinner .circle {
    display: block;
    border: 2px solid var(--dark-blown);
    border-radius: 50%;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.intersecting-circles-spinner .circle:nth-child(1) {
    left: 0;
    top: 0;
}
.intersecting-circles-spinner .circle:nth-child(2) {
    left: calc(35px * -0.36);
    top: calc(35px * 0.2);
}
.intersecting-circles-spinner .circle:nth-child(3) {
    left: calc(35px * -0.36);
    top: calc(35px * -0.2);
}
.intersecting-circles-spinner .circle:nth-child(4) {
    left: 0;
    top: calc(35px * -0.36);
}
.intersecting-circles-spinner .circle:nth-child(5) {
    left: calc(35px * 0.36);
    top: calc(35px * -0.2);
}
.intersecting-circles-spinner .circle:nth-child(6) {
    left: calc(35px * 0.36);
    top: calc(35px * 0.2);
}
.intersecting-circles-spinner .circle:nth-child(7) {
    left: 0;
    top: calc(35px * 0.36);
}
@keyframes intersecting-circles-spinners-animation {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/*-------------------- color --------------------*/

/* white */
.white {
    color: #fff !important;
    display: inline;
}
/* pure-white */
.pure-white {
    color: var(--pure-white) !important;
    display: inline;
}
/* blue */
.blue {
    color: var(--blue) !important;
    display: inline;
}
/* gray */
.gray {
    color: var(--gray) !important;
    display: inline;
}
/* blown */
.pure-blown {
    color: var(--pure-blown) !important;
    display: inline;
}
.blown {
    color: var(--blown) !important;
    display: inline;
}
.dark-blown {
    color: var(--dark-blown) !important;
    display: inline;
}

/*-------------------- font size --------------------*/
.s_12 {
    font-size: 12px;
}
.s_14 {
    font-size: 14px;
}

/*-------------------- font family --------------------*/

.serif {
    font-family: 'Noto Serif JP', serif;
}

/*--------------------アンダーライン--------------------*/
.dot {
    border-bottom: dotted 1px var(--blue);
    display: inline;
}
.none {
    border-bottom: none;
}

/*--------------------マーカー--------------------*/
.marker {
    padding: 0;
    height: 2rem;
    font-weight: bold;
}
.marker1 {
    background: linear-gradient(transparent 60%, var(--pure-white) 60%);
    color: var(--dark);
}
.marker2 {
    background: linear-gradient(transparent 60%, var(--pure-blown) 60%);
    color: var(--dark);
}
.marker3 {
    background: linear-gradient(transparent 60%, var(--gray) 60%);
    color: var(--dark);
}
.marker4 {
    background: linear-gradient(transparent 60%, white 60%);
    color: var(--dark);
}

/*--------------------横線--------------------*/
.border-r {
    padding-right: .7rem;
    margin-right: .7rem;
    border-right: 3px solid #fff
}
div.vid_contents {
width: 100%;/*背景色を横幅いっぱいに広げる*/
text-align: center;
margin: auto;
padding: 4% 4% 4% 4%;/*ここで動画の周りの余白を調整*/
background: #e6e6e6;/*余白の背景色*/
}
video.vid_main {
width: 100%;
max-width: 920px;/*PC版での最大幅*/
}

.cp_tab *, .cp_tab *:before, .cp_tab *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_tab {
	margin: 1em auto;
}
.cp_tab > input[type='radio'] {
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
	background: none;
	-webkit-appearance: none;
	        appearance: none;
	display: none;
}
.cp_tab .cp_tabpanel {
	display: none;
}
.cp_tab > input:first-child:checked ~ .cp_tabpanels > .cp_tabpanel:first-child,
.cp_tab > input:nth-child(3):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(2),
.cp_tab > input:nth-child(5):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(3),
.cp_tab > input:nth-child(7):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(4),
.cp_tab > input:nth-child(9):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(5),
.cp_tab > input:nth-child(11):checked ~ .cp_tabpanels > .cp_tabpanel:nth-child(6) {
	display: block;
}
.cp_tab > label {
	position: relative;
	display: inline-block;
	padding: 15px;
	cursor: pointer;
	border: 1px solid transparent;
	border-bottom: 0;
}
.cp_tab > label:hover,
.cp_tab > input:focus + label {
	color: #0066cc;
}
.cp_tab > input:checked + label {
	margin-bottom: -1px;
	border-color: #cccccc;
	border-bottom: 1px solid #ffffff;/*背景色と同じ*/
	border-radius: 6px 6px 0 0;
}
.cp_tab .cp_tabpanel {
	padding: 0.5em 1em;
	border-top: 1px solid #cccccc;
}
@media (max-width: 480px) {
	.cp_tab {
		width: 100%;
		font-size: 1.2em;
	}
	.cp_tab label {
		padding: 0.5em;
	}
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}


.cp_qa02 {
  margin: 0 auto;
}
.cp_qa02 .cp_actab input[type=checkbox] {
  display: none;
}
.cp_qa02 .cp_actab {
  padding: 20px 0;
  border-bottom: 1px dotted #cccccc;
}
/*質問テキスト*/
.cp_qa02 label {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 120%;
  width: calc(100% - 70px);
  margin: 0 0 0 50px;
  padding: 10px;
  cursor: pointer;
}
/*＋アイコン*/
.cp_qa02 label::before {
  position: absolute;
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 210%;
  font-weight: bold;
  margin-left: -50px;
  padding: 0 0 0 0;
  transition: 0.4s ease;
}
.cp_qa02 .cp_actab input[type=checkbox]:checked ~ label::before {
  transform: rotate(45deg);
}
/*答えテキスト*/
.cp_qa02 .cp_actab-content {
  font-size: 1em;
  position: relative;
  overflow: hidden;
  height: 0;
  margin: 0 0px;
  padding: 0 14px;
  transition: 0.4s ease;
  opacity: 0;
}
.cp_qa02 .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
  height: auto;
  padding: 14px;
  opacity: 1;
}

/*listブロック
---------------------------------------------------------------------------*/
/*listブロック全体を囲むブロック*/
.list-container {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}

/*１個あたりのボックス設定*/
.list {
    width: 100%;            /* 幅。48%で２列にする場合は後で調整 */
    margin-bottom: 30px;    /* ボックス同士の上下間に空けるスペース */
    padding: 20px;         /* ボックス内の余白 */
    background: #fff;      /* 背景色 */
    color: #000;           /* 文字色 */
    box-shadow: 5px 5px 20px rgba(0,0,0,0.1); /* ボックスの影 */
    content-visibility: auto;
    contain-intrinsic-size: 1000px 200px; /* CLS防止のための仮サイズ */
}

.list img {
    width: 100%;
    height: 11rem;
    object-fit: cover;
    border-radius: 5px;
    z-index: 0;
    background: #fff;
    vertical-align: bottom;
}

/*ボックス内のh4タグ*/
.list h4 {
	margin: 10px 0;	/*上下、左右への余白*/
	color: #666;	/*文字色*/
}
.list h4 a {
	color: #666;	/*リンクテキストの文字色*/
}

/*ボックス内のpタグ*/
.list p {
	margin: 0;
	font-size: 0.8em;	/*文字サイズを80%に*/
}


/*---------------------------------------------------------------------------
ここから下は画面幅1200px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:1000px) {


/*listブロック
---------------------------------------------------------------------------*/
/*１個あたりのボックス設定*/
.list {
	width: 48%;		/*幅。24%で４列になります。*/
}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}

.cp_box1 {
  position: relative;
}
.cp_box1 input {
  display: none;
}
/*開くためのボタンとテキストを隠すグラデーションの設定*/
.cp_box1 label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  bottom: -10px;
  width: 100%;
  height: 140px; /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}
/* 開いた時にグラデーションを消す */
.cp_box1 input:checked + label {
  background: inherit;
}
.cp_box1 input:checked + label {
  /* display: none ; 閉じるボタンを消す場合コメントアウトを外す */
}
.cp_box1 .cp_container {
  overflow: hidden;
  height: 250px; /* 開く前に見えている部分の高さ */
  transition: all 0.5s;
}
/*続きをよむボタン*/
.cp_box1 label:after,
.cp_box1 label::before {
  content: '';
  position: absolute;
  line-height: 2.5rem;
}
.cp_box1 label:after {
  z-index: 2;
  bottom: 20px;
  width: 13em;
  content: '続きをよむ';
  color: #ffffff;
  background: #1b2538;
  border-radius: 20px;
}
.cp_box1 label::before {
  position: absolute;
  bottom: 38px;
  left: calc(50% - 3.5em);
  z-index: 3;
  width: 10px;
  height: 5px;
  background: #ffffff;
  clip-path: polygon(50% 100%, 0 0, 100% 0)
}
/*閉じるボタン*/
.cp_box1 input:checked + label:after {
  content: '閉じる';
}
.cp_box1 input:checked + label:before {
  left: calc(50% - 2.5em);
  transform: scale(1, -1);
}
.cp_box1 input:checked ~ .cp_container {
  height: auto;
  padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
  transition: all 0.5s;
}


/*list2ブロック
---------------------------------------------------------------------------*/
/*list2ブロック全体を囲むブロック*/
.list-container {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	justify-content: space-between;	/*並びかたの種類の指定*/
}

/*１個あたりのボックス設定*/
.list2 {
    width: 100%;            /* 幅。48%で２列にする場合は後で調整 */
    margin-bottom: 30px;    /* ボックス同士の上下間に空けるスペース */
    padding: 10px;         /* ボックス内の余白 */
    background: #fff;      /* 背景色 */
    color: #000;           /* 文字色 */
    box-shadow: 5px 5px 20px rgba(0,0,0,0.1); /* ボックスの影 */
    content-visibility: auto;
    contain-intrinsic-size: 1000px 200px; /* CLS防止のための仮サイズ */
}

.list2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    z-index: 0;
    background: #fff;
    vertical-align: bottom;
}

/*ボックス内のh4タグ*/
.list2 h4 {
	margin: 10px 0;	/*上下、左右への余白*/
	color: #666;	/*文字色*/
}
.list h4 a {
	color: #666;	/*リンクテキストの文字色*/
}

/*ボックス内のpタグ*/
.list2 p {
	margin: 0;
	font-size: 0.8em;	/*文字サイズを80%に*/
}


/*---------------------------------------------------------------------------
ここから下は画面幅1200px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:1000px) {


/*list2ブロック
---------------------------------------------------------------------------*/
/*１個あたりのボックス設定*/
.list2 {
	width: 48%;		/*幅。24%で４列になります。*/
}


/*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/

}

.cp_box1 {
  position: relative;
}
.cp_box1 input {
  display: none;
}
/*開くためのボタンとテキストを隠すグラデーションの設定*/
.cp_box1 label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  bottom: -10px;
  width: 100%;
  height: 140px; /* グラデーションの高さ */
  cursor: pointer;
  text-align: center;
  /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
  background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}
/* 開いた時にグラデーションを消す */
.cp_box1 input:checked + label {
  background: inherit;
}
.cp_box1 input:checked + label {
  /* display: none ; 閉じるボタンを消す場合コメントアウトを外す */
}
.cp_box1 .cp_container {
  overflow: hidden;
  height: 250px; /* 開く前に見えている部分の高さ */
  transition: all 0.5s;
}
/*続きをよむボタン*/
.cp_box1 label:after,
.cp_box1 label::before {
  content: '';
  position: absolute;
  line-height: 2.5rem;
}
.cp_box1 label:after {
  z-index: 2;
  bottom: 20px;
  width: 13em;
  content: '続きをよむ';
  color: #ffffff;
  background: #1b2538;
  border-radius: 20px;
}
.cp_box1 label::before {
  position: absolute;
  bottom: 38px;
  left: calc(50% - 3.5em);
  z-index: 3;
  width: 10px;
  height: 5px;
  background: #ffffff;
  clip-path: polygon(50% 100%, 0 0, 100% 0)
}
/*閉じるボタン*/
.cp_box1 input:checked + label:after {
  content: '閉じる';
}
.cp_box1 input:checked + label:before {
  left: calc(50% - 2.5em);
  transform: scale(1, -1);
}
.cp_box1 input:checked ~ .cp_container {
  height: auto;
  padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
  transition: all 0.5s;
}