@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Gentium+Book+Plus:wght@400;700&family=Shippori+Mincho:wght@400;500;600;700;800&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -10%, 0);
        transform: translate3d(0, -10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -10%, 0);
        transform: translate3d(0, -10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.animate__fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.animate__fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

.zoomin {
    -webkit-animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
    animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards
}

@-webkit-keyframes zoomIn {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 0
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes zoomIn {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 0
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    opacity: 0
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.delay-03s {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.animated.delay-05s {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.animated.delay-07s {
    -webkit-animation-delay: .7s;
    animation-delay: .7s
}

.animated.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.animated.delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.animated.delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.animated.delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.animated.delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s
}

.animated.fast {
    -webkit-animation-duration: 800ms;
    animation-duration: 800ms
}

.animated.faster {
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms
}

.animated.slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated.slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s
}

@media (print),
(prefers-reduced-motion: reduce) {
    .animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important
    }
}

@media all and (max-width: 769px) {

    .animated.delay-1s,
    .animated.delay-2s,
    .animated.delay-3s,
    .animated.delay-4s,
    .animated.delay-5s {
        -webkit-animation-duration: .3s;
        animation-duration: .3s
    }
}

.innerA {
    display: table;
    width: 100%;
    table-layout: fixed
}

.innerA .left_s {
    width: 30%;
    float: left
}

.innerA .right_l {
    width: 66%;
    float: left;
    margin-left: 4%
}

.innerB {
    display: table;
    width: 100%;
    table-layout: fixed
}

@media all and (max-width: 639px) {
    .innerB {
        display: block
    }
}

.innerB .left,
.innerB .right {
    width: 48%;
    float: left
}

@media all and (max-width: 639px) {

    .innerB .left,
    .innerB .right {
        width: 100%;
        float: none
    }
}

.innerB .right {
    margin-left: 4%
}

@media all and (max-width: 639px) {
    .innerB .right {
        margin-left: 0;
        margin-top: 15px
    }
}

.innerB .left_s {
    width: 30%;
    float: left
}

@media all and (max-width: 639px) {
    .innerB .left_s {
        width: 100%;
        float: none
    }
}

.innerB .right_l {
    width: 66%;
    float: left;
    margin-left: 4%
}

@media all and (max-width: 639px) {
    .innerB .right_l {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        float: none
    }
}

.innerC {
    display: table;
    width: 100%;
    table-layout: fixed
}

.innerC .left,
.innerC .right {
    width: 48%;
    float: left
}

.innerC .right {
    margin-left: 4%
}

.innerC .left_s {
    width: 30%;
    float: left
}

.innerC .right_l {
    width: 66%;
    float: left;
    margin-left: 4%
}

#entry {
    padding-bottom: 80px
}

#entry .entry__cotent {
    background: #fff;
    padding: 30px;
    font-family: "Shippori Mincho", serif
}

@media all and (max-width: 769px) {
    #entry .entry__cotent {
        padding: 15px
    }
}

#entry .entry__cotent .data span {
    background: #f5f5f5;
    padding: .3em .5em
}

#entry .entry__cotent .page_sec_title {
    margin: 10px 0;
    border-bottom: 1px solid #62574e
}

@media all and (max-width: 769px) {
    #entry .entry__cotent .entry__cotent__text {
        font-size: 14px
    }
}

html {
    height: 100%;
    font-size: 62.5%
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    width: 100%;
    height: 100%;
    color: #111;
    font-size: 1rem;
    *font-size: small;
    *font: x-small;
    line-height: 1.8;
    margin: 0 auto;
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    letter-spacing: .1em
}

body.is-opened {
    height: 100%;
    overflow: hidden
}

#body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 1.5rem;
    background-image: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%)
}

#page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

a:link,
a:visited,
a:hover {
    color: #f1eae4;
    text-decoration: none
}

.tbox {
    border: 2px solid #f1eae4;
    padding: 15px;
    width: calc(100% - 34px)
}

.sign_ttl {
    border-bottom: 1px solid #111;
    font-size: 1.5rem;
    padding: 5px 0;
    text-align: center;
    max-width: 300px;
    margin: 0 auto
}

.top_bg01 {
    background: url("../img/top_bg01.png") no-repeat center top;
    margin-bottom: 50px;
    padding-bottom: 50px
}

.top_bg01 section {
    padding: 50px 0
}

@media screen and (max-width: 768px) {
    .top_bg01 {
        margin-bottom: 0px;
        padding-bottom: 40px
    }
}

.infiniteslide1 {
    height: 200px !important;
    overflow: hidden;
    border-top: 3px solid #aaa;
    border-bottom: 3px solid #aaa
}

.infiniteslide1 li img {
    height: 200px !important
}

@media screen and (max-width: 768px) {
    .infiniteslide1 {
        height: 100px
    }

    .infiniteslide1 img {
        height: 100px
    }
}

.nbl {
    overflow: hidden
}

.nbl dt {
    float: left;
    width: 7em;
    padding: 3px 5px;
    line-height: 1.3;
    color: #fff;
    background: #f1eae4;
    text-align: center;
    margin: 0px 0
}

.grid .nbl dt {
    width: 4em
}

.grid .nbl dd {
    padding-left: 6em
}

.nbl dd {
    padding-left: 9em;
    padding-top: 0px;
    padding-bottom: 10px;
    line-height: 1.6;
    border-bottom: dotted 1px #aaa;
    margin: 0px 0 10px
}

.gallery {
    background: #f2f2f2;
    width: 100%;
    height: 200px;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    margin-bottom: 10px
}

.grid {
    position: relative;
    margin: 0 0 30px !important;
    padding: 0 !important;
    width: 100% !important;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.grid-item {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: calc(33% - 30px) !important;
    font-size: 12px;
    background: #fff;
    padding: 10px 10px 10px;
    margin-left: 5px;
    margin-right: 5px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 0 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 0 0px 1px
}

.grid-item a {
    display: block;
    text-align: center;
    width: 100%;
    height: 200px;
    margin-bottom: 10px;
    overflow: hidden;
    background-color: #fff;
    background-image: url(../img/pgb.png);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0 0 1px 1px;
    box-shadow: rgba(0, 0, 0, 0.4) 0 0 1px 1px
}

.grid-item * {
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.grid-item h5 {
    font-size: 1.6rem;
    text-align: center;
    color: #f1eae4
}

.grid-item p {
    line-height: 1.6em;
    font-size: 13px
}

.grid-item img {
    vertical-align: middle;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;"
}

.grid-item a:hover img {
    opacity: 0.1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2)
}

.split_bx {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: url("../img/bg_top.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    -moz-background-size: cover
}

.split_bx img {
    top: 35%;
    left: 0;
    right: 0;
    bottom: auto;
    margin: auto;
    display: block;
    position: absolute
}

@media screen and (max-width: 768px) {
    .split_bx {
        top: 0
    }
}

.split {
    visibility: hidden;
    font-weight: bold;
    font-size: 3rem;
    letter-spacing: 0.1em;
    color: #f1eae4;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    text-shadow: 0 2px 0 #fff, 2px 0 0 #fff, 0 -2px 0 #fff, -2px 0 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff,
        -2px 2px 0 #fff, 2px 2px 0 #fff
}

@media screen and (max-width: 768px) {
    .split {
        font-size: 1.8rem
    }
}

.scr2 {
    z-index: 999999999
}

.blanket li {
    padding: 0px 0;
    height: auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-bottom: -150px
}

.blanket li:nth-child(2n) {
    display: block
}

.blanket li:nth-child(2n) .image {
    margin: 0 auto
}

.blanket li:nth-child(2n) .blanket_ttl_top {
    text-align: left;
    color: #62574e !important
}

.blanket li .image,
.blanket li .detailBox {
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition-duration: 0.8s;
    transition-duration: 0.8s
}

.blanket li .image {
    -webkit-transform: translateY(0px);
    transform: translateY(0px)
}

.blanket li .image img {
    -webkit-box-shadow: rgba(241, 234, 228, 0.1) -50px 50px 0 0;
    box-shadow: rgba(241, 234, 228, 0.1) -50px 50px 0 0
}

.blanket li .detailBox {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative
}

.blanket li .textBox {
    background: rgba(255, 255, 255, 0.9);
    padding: 50px 60px;
    border: 1px solid #f1eae4
}

.blanket li .blanket_ttl_top {
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    letter-spacing: 0.2rem;
    font-size: 5rem;
    font-weight: normal;
    margin-bottom: 10px;
    text-indent: 2rem;
    text-align: right;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    position: relative
}

.blanket li .blanket_ttl_top span {
    display: block;
    font-size: 1.8rem
}

.blanket li .blanket_ttl {
    font-size: 2.4rem;
    font-weight: normal;
    color: #f1eae4;
    margin-bottom: 10px
}

.blanket li .btn {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -30px);
    transform: translate(-50%, -30px)
}

.btn_slash {
    line-height: 1;
    color: #fff;
    text-align: center;
    width: 270px;
    margin: 0 auto
}

.btn_slash:before {
    background: #62574e;
    -webkit-transform: skew(-12deg);
    transform: skew(-12deg);
    z-index: 2
}

.btn_slash:after {
    -webkit-transform: skew(-12deg) translate(8px, 8px);
    transform: skew(-12deg) translate(8px, 8px);
    border-color: #62574e;
    z-index: 1
}

.btn_slash:before,
.btn_slash:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #62574e;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out
}

.btn_slash a {
    padding: 20px 0 21px;
    color: #fff;
    display: block;
    position: relative;
    z-index: 3;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    text-decoration: none
}

.btn_slash:hover:before {
    border-color: #02672c;
    background-color: #02672c;
    -webkit-transform: skew(-12deg) translate(4px, 4px);
    transform: skew(-12deg) translate(4px, 4px)
}

.btn_slash:hover:after {
    border-color: #02672c;
    -webkit-transform: skew(-12deg) translate(4px, 4px);
    transform: skew(-12deg) translate(4px, 4px)
}

.btn_slash:hover a {
    -webkit-transform: translate(4px, 4px);
    transform: translate(4px, 4px)
}

@media screen and (max-width: 768px) {
    .blanket li {
        display: block;
        margin: 0
    }

    .blanket li:nth-child(2n) {
        display: block
    }

    .blanket li:nth-child(2n) .image {
        margin: 0 auto
    }

    .blanket li:nth-child(2n) .blanket_ttl_top {
        text-align: left
    }

    .blanket li .image,
    .blanket li .detailBox {
        width: 100%
    }

    .blanket li .detailBox {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        position: static;
        padding: 20px 0
    }

    .blanket li .image img {
        -webkit-box-shadow: rgba(241, 234, 228, 0.1) -10px 10px 0 0;
        box-shadow: rgba(241, 234, 228, 0.1) -10px 10px 0 0
    }

    .blanket li .textBox {
        width: calc(100% - 20px);
        background: #fff;
        padding: 15px 10px
    }

    .blanket li .blanket_ttl_top {
        font-size: 3rem;
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
        position: static;
        text-align: left;
        margin-bottom: 0;
        text-indent: 1rem
    }

    .blanket li .blanket_ttl_top span {
        font-size: 1.3rem
    }

    .blanket li .blanket_ttl {
        font-size: 2rem;
        font-weight: normal
    }

    .blanket li .btn {
        width: 90% !important;
        position: static;
        top: 0;
        left: 0;
        -webkit-transform: translate(0%, 0px);
        transform: translate(0%, 0px)
    }

    .blanket .btn_slash {
        line-height: 1;
        color: #fff;
        text-align: center;
        margin: 25px auto 0
    }
}

.bg_text1 {
    background: url("../img/bg_text1.png") no-repeat top center
}

.mtext1 {
    font-size: 1.8rem;
    line-height: 1.5;
    margin: 10px 0;
    color: #917c50;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif
}

@media screen and (max-width: 768px) {
    .mtext1 {
        font-size: 1.5rem !important
    }
}

.mtext2 {
    font-size: 2.5rem;
    line-height: 1.5;
    margin-bottom: 20px
}

@media screen and (max-width: 768px) {
    .mtext2 {
        font-size: 1.5rem !important
    }
}

.mtext2 span {
    font-size: 1.5rem
}

.border01 {
    border-top: 2px solid #62574e;
    max-width: 400px;
    margin: 0 auto;
    padding: 0
}

.mtext02 {
    font-size: 2.3rem;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif
}

.mtext_big {
    font-size: 3rem
}

#flashA {
    width: 100%;
    overflow: hidden;
    padding: 0
}

#flash {
    height: 414px;
    min-width: 950px;
    margin: 0 auto;
    padding: 0px;
    position: relative;
    overflow: hidden
}

.wideslider {
    width: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
    height: 414px
}

.wideslider ul {
    float: left;
    display: inline
}

.wideslider ul li {
    float: left;
    display: inline
}

.wideslider ul li img {
    width: 100%;
    display: none
}

.wideslider_base {
    top: 0;
    position: absolute
}

.wideslider_wrap {
    top: 0;
    position: absolute;
    overflow: hidden
}

.slider_prev,
.slider_next {
    top: 0;
    overflow: hidden;
    position: absolute;
    z-index: 100;
    cursor: pointer
}

.slider_prev {
    background: #fff url(../photo/prev.jpg) no-repeat right center
}

.slider_next {
    background: #fff url(../photo/next.jpg) no-repeat left center
}

.pagination {
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 15px;
    text-align: center;
    position: absolute;
    z-index: 200
}

.pagination a {
    margin: 0 5px;
    width: 15px;
    height: 15px;
    display: inline-block;
    overflow: hidden;
    background: #a6aaa9
}

.pagination a.active {
    filter: alpha(opacity=100) !important;
    -moz-opacity: 1 !important;
    opacity: 1 !important
}

@media screen and (max-width: 800px) {
    #flash {
        width: 100%;
        height: auto
    }

    #flashA {
        min-width: 100%
    }
}

.mttl_top01 {
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    font-weight: normal;
    font-size: 2.5rem;
    line-height: 1.2;
    letter-spacing: 0.2rem;
    margin-bottom: 20px
}

@media screen and (max-width: 768px) {
    .mttl_top01 {
        font-size: 2.2rem
    }
}

.mttl_02 {
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    font-weight: bold;
    font-size: 4rem;
    letter-spacing: 0.3rem;
    line-height: 1.2;
    margin-bottom: 10px
}

@media screen and (max-width: 768px) {
    .mttl_02 {
        font-size: 2.2rem
    }
}

.mttl_03 {
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    font-weight: normal;
    font-size: 4vw;
    letter-spacing: 0.3rem;
    line-height: 1.2;
    margin-bottom: 10px
}

.facebook {
    width: 500px;
    margin: 30px auto 0
}

@media screen and (max-width: 768px) {
    .facebook {
        width: 100%
    }
}

.newsbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0 auto
}

.news-ttl {
    width: 300px;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    vertical-align: middle;
    text-align: left;
    color: #f1eae4;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2
}

.news-ttl span {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-size: 1.2rem !important;
    display: block;
    color: #333
}

.news-bx {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: calc(100% - 20px);
    padding: 0 10px
}

.news {
    overflow: hidden;
    line-height: 1.6;
    margin: 10px auto 0
}

.news dt {
    float: left;
    width: 8em;
    font-weight: bold;
    color: #f1eae4
}

.news dd {
    padding-left: 8em;
    border-bottom: 1px solid #ccc;
    margin-bottom: 8px;
    padding-bottom: 5px
}

.message {
    overflow: hidden;
    line-height: 1.6;
    margin: 30px auto;
    max-width: 900px;
    color: #fff;
    font-size: 2rem;
    display: table;
    font-weight: bold
}

.message dt {
    display: table-cell;
    vertical-align: middle
}

.message dd {
    display: table-cell;
    text-align: left;
    padding-left: 30px
}

@media screen and (max-width: 768px) {
    .message {
        overflow: hidden;
        line-height: 1.6;
        margin: 20px auto;
        max-width: 100%;
        color: #fff;
        font-size: 1.5rem;
        display: block;
        text-align: center
    }

    .message dt {
        display: block;
        margin-bottom: 20px
    }

    .message dd {
        display: block;
        padding-left: 0
    }
}

@media screen and (max-width: 768px) {
    .newsbox {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .news-ttl {
        width: 100% !important;
        border-right: 0px solid #f1eae4;
        border-bottom: 1px solid #f1eae4;
        padding: 5px 0;
        text-align: center
    }

    .news-ttl span {
        font-size: 1.2rem !important
    }

    .news-bx {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        width: calc(100% - 0px);
        padding: 0 0px
    }

    .scrbr {
        width: 100%;
        padding: 15px 0px;
        max-height: 100px;
        overflow-y: scroll;
        overflow-x: hidden
    }
}

.f_flex {
    line-height: 1.5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 50px
}

.f_flex li {
    margin: 0 10px
}

.f_flex04 {
    padding: 5px 0;
    font-size: 15px;
    font-weight: normal;
    overflow: hidden;
    line-height: 1.5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.f_flex04 li {
    width: calc(25% - 10px);
    margin: 0 5px
}

@media screen and (max-width: 768px) {
    .f_flex04 li {
        width: calc(50% - 10px)
    }
}

.f_flex04 li img {
    width: 100%
}

@media screen and (max-width: 768px) {
    .f_flex04 {
        margin-bottom: 30px
    }
}

.staff_bg1 {
    background-image: url(../img/staff_bg1.jpg);
    background-position: center right
}

.staff_bg2 {
    background-image: url(../img/staff_bg2.jpg);
    background-position: center left
}

.staff_bg3 {
    background-image: url(../img/staff_bg3.jpg);
    background-position: center right
}

.staff_bg4 {
    background-image: url(../img/staff_bg4.jpg);
    background-position: center left
}

.staff_bg1a {
    background-image: url(../img/interview2/staff_bg1.jpg);
    background-position: center right
}

.staff_bg2a {
    background-image: url(../img/interview2/staff_bg2.jpg);
    background-position: center left
}

.staff_bg3a {
    background-image: url(../img/interview2/staff_bg3.jpg);
    background-position: center right
}

.staff_bg4a {
    background-image: url(../img/interview2/staff_bg4.jpg);
    background-position: center left
}

.staff_bg5 {
    background-image: url(../img/staff_bg5.jpg)
}

.staff_bg1,
.staff_bg2,
.staff_bg3,
.staff_bg4,
.staff_bg5,
.staff_bg1a,
.staff_bg2a,
.staff_bg3a,
.staff_bg4a,
.staff_bg5a {
    background-repeat: no-repeat;
    background-size: cover;
    -moz-background-size: cover
}

@media screen and (max-width: 768px) {

    .staff_bg1,
    .staff_bg2,
    .staff_bg3,
    .staff_bg4,
    .staff_bg5,
    .staff_bg1a,
    .staff_bg2a,
    .staff_bg3a,
    .staff_bg4a,
    .staff_bg5a {
        background-image: none;
        background-color: #fff
    }
}

.business_bg1 {
    background-image: url(../img/business_bg1.jpg);
    background-position: center right
}

.business_bg2 {
    background-image: url(../img/business_bg2.jpg);
    background-position: center left
}

.business_bg3 {
    background-image: url(../img/business_bg3.jpg);
    background-position: center right
}

.business_bg1,
.business_bg2,
.business_bg3 {
    background-repeat: no-repeat;
    background-size: cover;
    -moz-background-size: cover
}

.int_ttl {
    max-width: 1160px;
    margin: 0 auto;
    height: 300px;
    position: relative
}

.int_ttl img {
    position: absolute;
    top: -60px
}

@media screen and (max-width: 768px) {
    .int_ttl {
        height: auto
    }

    .int_ttl img {
        position: static;
        width: 90%;
        max-width: 558px;
        top: 0;
        z-index: 500
    }
}

.int_ttl02 {
    max-width: 1160px;
    margin: 0 auto;
    height: 300px;
    position: relative
}

.int_ttl02 img {
    position: absolute;
    top: -60px;
    right: 0
}

@media screen and (max-width: 768px) {
    .int_ttl02 {
        height: auto
    }

    .int_ttl02 img {
        position: static;
        width: 90%;
        max-width: 558px;
        top: 0;
        z-index: 500
    }
}

.bg-image1 {
    background-image: url(../img/bg-image1.png)
}

.bg-image1 {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -moz-background-size: cover;
    padding: 80px 0;
    margin: 80px 0
}

@media screen and (max-width: 768px) {
    .bg-image1 {
        padding: 0px 0;
        margin: 0px 0
    }
}

.bg-image2 {
    background-image: url(../img/bg-image2.jpg)
}

.bg-image2 {
    background-position: top center;
    background-repeat: no-repeat
}

.produxt_listpage_image {
    border: 2px solid #eee;
    position: relative;
    width: 100%;
    height: 350px;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto
}

.produxt_listpage_image img {
    height: 100%;
    width: 100%;
    margin: 0 auto;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: "object-fit: contain;";
    text-align: center
}

.product_list_info {
    font-size: 13px
}

.product_list_info dt {
    float: left;
    width: 6em;
    background: #f1eae4;
    padding: 5px 0px;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    margin: 2px 0 0
}

.product_list_info dd {
    padding-left: 7em;
    padding-top: 5px;
    padding-bottom: 10px;
    line-height: 1.6;
    border-bottom: dotted 1px #aaa;
    margin: 5px 0
}

.product_list_info dd:last-child {
    border-bottom: 0px
}

.product_list {
    width: 100%;
    margin: 10px auto 0
}

.product_list * {
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.product_list ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.product_list figcaption {
    position: relative;
    width: 95%;
    height: 250px;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto
}

.product_list figcaption img {
    height: 100%;
    width: 250px;
    margin: 0 auto;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: "object-fit: contain;";
    text-align: center
}

.product_list li {
    position: relative;
    width: calc(33.33% - 30px);
    margin: 10px;
    padding: 10px 5px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px
}

.product_list li:hover {
    background: rgba(242, 242, 242, 0.2)
}

.product_list li:hover img {
    opacity: 0.8
}

.product_list li:hover .btn {
    color: #fff;
    background: #f1eae4
}

.product_list li .btn {
    padding: 2px 0px;
    margin: 5px auto;
    font-size: 1.2rem;
    border: 1px solid #f1eae4;
    display: block;
    width: 160px;
    text-align: center;
    color: #f1eae4
}

.product_list li a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100
}

.product_list li h3 {
    font-size: 1.6rem;
    color: #f1eae4;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    margin: 10px 0;
    text-align: center
}

.product_list li .catch {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 100px;
    z-index: 9999;
    top: -20px;
    left: -10px;
    position: relative;
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    background: #f1eae4;
    color: #fff;
    margin-bottom: -10px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 0px 0px;
    box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 0px 0px
}

.product_list li .product_list_ttl {
    font-size: 1.8rem;
    margin: 10px 0;
    text-align: center;
    font-weight: normal;
    color: #f1eae4;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif
}

.product_list li .text {
    text-align: left;
    font-size: 13px
}

.product_list li .text:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0a9";
    margin-right: 3px;
    color: #f1eae4
}

@media screen and (max-width: 768px) {
    .product_list ul {
        display: block
    }

    .product_list figcaption {
        background: #fff;
        width: 95%;
        height: auto
    }

    .product_list li {
        width: 93%;
        margin-right: 0px;
        margin-bottom: 40px;
        padding: 0 5px 5px;
        -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 1px 1px 0px 1px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 0px 1px, rgba(0, 0, 0, 0.2) 1px 1px 0px 1px
    }

    .product_list_btn {
        position: relative
    }
}

.slider1 {
    width: 100%;
    overflow: hidden;
    position: relative;
    background-repeat: repeat;
    margin-bottom: 20px
}

.slider1 h3 {
    font-size: 1.2rem;
    color: #000;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    margin: 10px 0
}

.slider1 .viewport {
    width: 100%;
    margin: 0 auto;
    height: 240px;
    position: relative
}

.slider1 .buttons {
    font-family: "Font Awesome 5 Free";
    font-weight: normal;
    position: absolute;
    top: 85%;
    bottom: 0;
    left: -10px;
    width: 50px;
    height: 100%;
    color: #f1eae4;
    text-decoration: none;
    margin: 0 auto;
    z-index: 5;
    cursor: pointer;
    font-size: 1.5em;
    text-align: center;
    vertical-align: bottom
}

.slider1 .next {
    right: -10px;
    left: auto;
    top: 85%;
    bottom: 0
}

.slider1 .buttons:hover {
    opacity: 0.6
}

.slider1 .disable {
    visibility: hidden
}

.slider1 .overview {
    list-style: none;
    position: absolute;
    padding: 0;
    margin: 0;
    left: 0;
    top: -1px
}

.slider1 .overview li {
    width: 200px;
    height: 230px;
    float: left;
    text-align: center;
    vertical-align: middle;
    display: table;
    z-index: 99999;
    overflow: hidden;
    font-weight: bold;
    padding: 2px 0 0;
    margin: 0px 10px
}

.slider1 .overview li p {
    text-align: center;
    font-weight: normal;
    font-size: 13px !important;
    background: #F1E7CD
}

.slider1 .overview li a {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    z-index: 100;
    border: 1px solid #f1eae4
}

.slider1 img {
    width: 190px;
    height: 190px;
    vertical-align: middle;
    text-align: center;
    -o-object-fit: contain;
    object-fit: contain;
    font-family: "object-fit: contain;"
}

.contact {
    width: 1160px;
    margin: 0 auto;
    padding: 20px 0 10px;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif
}

.mttl_contact {
    float: left;
    font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
    color: #f1eae4;
    text-align: center;
    font-weight: normal;
    font-size: 3rem;
    line-height: 1.4;
    position: relative;
    letter-spacing: 0.1rem
}

.mttl_contact span {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    color: #333;
    font-size: 2rem;
    margin-left: 10px;
    border-left: 2px solid #ccc;
    padding-left: 10px
}

header {
    width: 100%;
    z-index: 2;
    padding: 23px 0;
    background: #e2d7ce
}

@media all and (max-width: 639px) {
    header {
        padding: 10px 0 8px
    }
}

@media screen and (max-width: 768px) {
    header #head {
        width: 100%;
        left: 0;
        top: 0
    }
}

header #head .inner {
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

header #head .inner .in_left {
    width: 30%
}

header #head .inner .in_right {
    width: 70%
}

@media all and (max-width: 639px) {
    header #head .inner .in_right {
        display: none
    }
}

header #head .logo {
    margin: 0;
    width: 359px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin-top: 30px
}

@media all and (max-width: 639px) {
    header #head .logo {
        width: auto;
        left: 9px;
        position: relative;
        top: auto
    }
}

header #head .logo a {
    display: block;
    width: 100%;
    position: relative
}

@media all and (max-width: 639px) {
    header #head .logo a {
        width: 150px;
        line-height: 1em;
        margin-bottom: 20px
    }
}

header #head .logo a:link,
header #head .logo a:visited,
header #head .logo a:hover {
    color: #fff;
    text-decoration: none
}

header #head .logo img {
    width: 100%;
    display: block;
    margin: auto;
    margin-top: -4px
}

@media all and (max-width: 639px) {
    header #head .logo img {
        width: auto;
        margin-top: 0
    }
}

header #head .hed_tellink ul {
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end
}

header #head .hed_tellink ul li:nth-child(n+2) {
    margin-left: 20px
}

header #head .hed_tellink ul li p {
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    letter-spacing: .1em;
    color: #917c50;
    padding-top: 8px
}

header #head .hed_tellink ul li p.hed_tellink_text {
    color: #917c50;
    font-family: "Shippori Mincho", serif;
    font-size: 22px;
    letter-spacing: .1em;
    padding-top: 0
}

header #head .hed_tellink ul li a.links_icon {
    color: #917c50;
    font-size: 30px;
    line-height: 1em
}

header #head .head_nav {
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    margin-top: 20px
}

@media all and (max-width: 639px) {
    header #head .head_nav {
        display: none
    }
}

header #head .head_nav li:nth-child(n+2) {
    margin-left: 30px
}

header #head .head_nav li a,
header #head .head_nav li p {
    text-align: center;
    text-decoration: none;
    color: #62574e;
    display: block;
    line-height: 1em;
    -webkit-transition: .3s;
    transition: .3s;
    font-weight: bold;
    position: relative;
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    letter-spacing: .1em
}

header #head .head_nav li a span,
header #head .head_nav li p span {
    display: block;
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .1em;
    margin-top: 5px;
    color: #869c86
}

header #head .head_nav li ul {
    position: absolute;
    top: 140px;
    display: block !important
}

header #head .head_nav li ul li {
    visibility: hidden;
    overflow: hidden;
    display: block !important;
    width: 100%;
    height: 0;
    background: #f1eae4;
    border-right: 0px solid #ddd;
    border-left: 0px solid #ddd;
    padding: 0 0 !important;
    margin: 0 1px 1px !important;
    width: 240px !important
}

header #head .head_nav li ul li a {
    padding: 10px 0 !important;
    margin: 0 0px !important;
    display: block;
    width: 100%;
    text-align: left;
    text-indent: 10px;
    font-size: 13px;
    color: #e2d7ce
}

header #head .head_nav li ul li a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0da";
    margin-right: 5px
}

header #head .head_nav li ul li a:link,
header #head .head_nav li ul li a:visited {
    color: #e2d7ce;
    font-weight: normal
}

header #head .head_nav li ul li a:hover {
    font-weight: normal
}

header #head .head_nav li:hover ul li {
    visibility: visible;
    overflow: visible;
    height: 40px
}

header.fixd {
    display: block;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    z-index: 9
}

.scrollbar-y {
    width: 100%;
    height: 450px;
    overflow-x: hidden;
    overflow-y: scroll
}

@media screen and (max-width: 768px) {
    .scrollbar-y {
        height: 200px
    }
}

.scrollbar-y::-webkit-scrollbar {
    width: 5px
}

.scrollbar-y::-webkit-scrollbar-track {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1)
}

.scrollbar-y::-webkit-scrollbar-thumb {
    background-color: rgba(50, 50, 50, 0.5);
    border-radius: 10px;
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3)
}

.mailbtn {
    font-size: 15px;
    font-weight: bold;
    margin: 10px 0 5px
}

.mailbtn * {
    -webkit-transition: 0.3s;
    transition: 0.3s
}

.mailbtn a {
    margin: 0 auto;
    text-align: center;
    width: 250px;
    display: block;
    padding: 5px 5px;
    font-weight: normal;
    border: 2px solid #f1eae4
}

.mailbtn a:link {
    color: #f1eae4;
    text-decoration: none
}

.mailbtn a:visited {
    color: #f1eae4
}

.mailbtn a:hover {
    color: #fff;
    background: #f1eae4;
    text-decoration: none
}

.mailbtn a:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f003";
    margin-right: 5px
}

#contentwrap {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

#contentwrap.kasou {
    background: #f1eae4
}

.single {
    position: relative;
    width: 1160px;
    margin: 0 auto;
    padding: 80px 0
}

@media all and (max-width: 1190px) {
    .single {
        width: 95%
    }
}

footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    width: 100%;
    z-index: 100
}

footer #footer {
    width: 1160px;
    margin: 0 auto 0;
    padding: 40px 0
}

footer #footer address {
    margin-top: 10px
}

footer .copyright {
    text-align: center;
    padding: 10px 0;
    width: 100%;
    font-size: 1rem;
    color: #666;
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: .1em;
    position: relative;
    z-index: 2;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#cfd9df), to(#e2ebf0));
    background-image: linear-gradient(to top, #cfd9df 0%, #e2ebf0 100%)
}

#page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 990
}

#page-top a {
    display: block
}

#page-top a img {
    display: block;
    width: 36px
}

@media all and (max-width: 639px) {
    #page-top a img {
        width: 22px
    }
}

table {
    margin: 10px 0
}

table th {
    vertical-align: middle;
    padding: 3px 10px;
    font-weight: bold;
    line-height: 1.5;
    border: #ddd 1px solid;
    background: #f1eae4;
    color: #fff
}

table td {
    padding: 5px 10px;
    vertical-align: middle;
    border: #ddd 1px solid
}

table td b {
    color: #f1eae4;
    font-size: 12px
}

@media screen and (max-width: 800px) {
    table.rstable {
        width: 100%
    }

    table.rstable td {
        display: block;
        text-align: center;
        width: calc(100% - 2px) !important;
        padding: 5px 0
    }

    table.rstable th {
        display: block;
        width: calc(100% - 2px) !important;
        overflow: hidden;
        padding: 5px 0
    }
}

.form {
    margin: 10px 0 10px
}

.form dt span {
    color: #fff;
    background: #ff4f4f;
    padding: 0 5px 0;
    margin-right: 5px;
    font-size: 1.1rem;
    border-radius: 2px;
    position: relative;
    top: -2px
}

.form dl {
    margin: 10px 0;
    font-size: 1.6rem
}

.form dt {
    float: left;
    width: 280px;
    padding-top: 20px
}

.form dd {
    padding-left: 280px;
    padding-bottom: 20px;
    padding-top: 23px;
    line-height: 1.5;
    border-bottom: 1px solid #eee
}

.form dd p {
    padding-top: 5px;
    color: #888
}

.form dd:last-child {
    border-bottom: 0px;
    margin-bottom: 0px
}

.textarea,
textarea,
.dropdown {
    border-radius: 2px;
    border: 1px solid #ddd
}

.textarea {
    border-radius: 2px;
    border: 1px solid #ddd;
    height: 30px;
    padding: 0 5px
}

.form-button {
    padding: 5px;
    border-radius: 5px;
    text-align: center;
    margin: 10px 0
}

#mailform button {
    cursor: pointer;
    display: block;
    margin: 0 auto 5px;
    padding: 10px 0 10px;
    color: #fff;
    text-align: center;
    width: 250px;
    border-radius: 30px;
    background: #62574e;
    font-weight: bold;
    border: 2px solid #62574e
}

#mailform button:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f0e0";
    margin-right: 6px
}

#mailform button:hover {
    background: #fff;
    color: #62574e
}

#mailform button * {
    -webkit-transition: 0.2s;
    transition: 0.2s
}

.form-button * {
    -webkit-transition: 0.2s;
    transition: 0.2s
}

label.radio_text {
    cursor: pointer;
    position: relative;
    margin-right: 20px;
    overflow: hidden;
    padding-left: 20px;
    display: inline-block
}

label.radio_text:before {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid #ccc;
    border-radius: 50%;
    left: 0px;
    top: 2px;
    content: "";
    z-index: 3
}

label.radio_text:after {
    content: "";
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    left: 3px;
    top: 5px;
    background-color: #64bcff;
    z-index: 1
}

label.radio_text input[type="radio"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    z-index: 2;
    width: 20px;
    height: 20px;
    left: -23px;
    top: 0px;
    margin: 0px;
    -webkit-box-shadow: 20px -1px #fff;
    box-shadow: 20px -1px #fff
}

label.radio_text input[type="radio"]:checked {
    -webkit-box-shadow: none;
    box-shadow: none
}

label.radio_text input[type="radio"]:focus {
    opacity: 0.2;
    -webkit-box-shadow: 20px -1px #fff;
    box-shadow: 20px -1px #fff
}

label.checkbox_text {
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin-right: 20px;
    overflow: hidden;
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

label.checkbox_text:before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 0px;
    top: 0;
    border: 1px solid #ccc;
    z-index: 3
}

label.checkbox_text:after {
    content: "";
    position: absolute;
    top: 40%;
    left: 5px;
    display: block;
    margin-top: -9px;
    width: 8px;
    height: 12px;
    border-right: 3px solid #f1eae4;
    border-bottom: 3px solid #f1eae4;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 1
}

label.checkbox_text input[type="checkbox"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    left: -40px;
    width: 20px;
    height: 20px;
    display: block;
    -webkit-box-shadow: 41px 0px #fff;
    box-shadow: 41px 0px #fff;
    z-index: 2;
    margin: 0px;
    padding: 0px
}

label.checkbox_text input[type="checkbox"]:checked {
    -webkit-box-shadow: none;
    box-shadow: none
}

label.checkbox_text input[type="checkbox"]:checked:focus {
    -webkit-box-shadow: 40px 0px #666;
    box-shadow: 40px 0px #666;
    opacity: 0.1
}

label.checkbox_text input[type="checkbox"]:focus {
    -webkit-box-shadow: 41px 0px #eee;
    box-shadow: 41px 0px #eee
}

.fm-text {
    padding: 10px;
    margin: 10px 0;
    text-align: center
}

.single_new {
    width: 90%;
    width: calc(100% - 100px);
    margin: auto
}

@media all and (max-width: 639px) {
    .single_new {
        width: 95%
    }
}

div,
section {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

#top_main {
    width: 100%;
    position: relative;
    height: 80vh;
    padding: 0 40px;
    background: -webkit-gradient(linear, left top, left bottom, from(#e2d7ce), color-stop(50%, #e2d7ce), color-stop(50%, #f1eae4), to(#f1eae4));
    background: linear-gradient(180deg, #e2d7ce 0%, #e2d7ce 50%, #f1eae4 50%, #f1eae4 100%)
}

@media all and (max-width: 639px) {
    #top_main {
        margin-top: 0;
        height: 54vh;
        padding: 0 15px
    }
}

#top_main .top_main_vis {
    width: 100%;
    height: 80vh;
    margin-left: auto
}

@media all and (max-width: 639px) {
    #top_main .top_main_vis {
        margin-top: 0;
        width: 100%;
        height: 54vh
    }
}

#top_main ul.slider {
    width: 100%
}

#top_main ul.slider li {
    width: 100%;
    height: 78vh;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(../img/slid-1.jpg)
}

@media all and (max-width: 639px) {
    #top_main ul.slider li {
        height: 49vh
    }
}

#top_main ul.slider li:nth-child(2) {
    background-image: url(../img/slid-2.jpg)
}

#top_main ul.slider li:nth-child(3) {
    background-image: url(../img/slid-3.jpg)
}

#top_main ul.slider li img {
    display: none
}

#top_main .top_main_box {
    height: 24vh;
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 70px;
    z-index: 333
}

@media all and (max-width: 639px) {
    #top_main .top_main_box {
        height: 10vh;
        bottom: 40px;
        left: 12px
    }
}

#top_main .top_main_box img {
    width: auto;
    height: 100%;
    margin: auto;
    display: block
}

#top_main.under {
    height: auto;
    position: relative;
    background-image: url(https://placehold.jp/150x150.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

#top_main.under.page_salon {
    background-image: url(../img/page_salon.jpg)
}

#top_main.under.page_staff {
    background-image: url(../img/page_staff.jpg)
}

#top_main.under.page_menu {
    background-image: url(../img/page_menu.jpg)
}

#top_main.under.page_product {
    background-image: url(../img/page_product.jpg)
}

#top_main.under.page_gallery {
    background-image: url(../img/page_gallery.jpg)
}

@media all and (max-width: 639px) {
    #top_main.under {
        padding: 0 0 0
    }
}

#top_main.under h2 {
    font-family: "Shippori Mincho", serif;
    font-size: 19px;
    letter-spacing: .1em;
    font-weight: 500;
    color: #e2d7ce;
    text-align: center;
    padding-top: 110px
}

@media all and (max-width: 639px) {
    #top_main.under h2 {
        font-family: "Shippori Mincho", serif;
        font-size: 17px;
        letter-spacing: .1em
    }
}

#top_main.under h2 span {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 39px;
    letter-spacing: .1em;
    display: block;
    line-height: 1em;
    letter-spacing: .15em;
    margin-bottom: 15px
}

@media all and (max-width: 639px) {
    #top_main.under h2 span {
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 30px;
        letter-spacing: .1em;
        line-height: 1em
    }
}

#top_1 {
    background: #f1eae4;
    padding: 50px 0
}

#top_1 .read_en {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 62px;
    letter-spacing: .1em;
    line-height: 1em;
    text-align: center;
    color: #62574e;
    opacity: .1
}

@media all and (max-width: 639px) {
    #top_1 .read_en {
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 26px;
        letter-spacing: .1em;
        line-height: 1em;
        margin-top: -46px
    }
}

#top_1 .read {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 29px;
    letter-spacing: .1em;
    color: #917c50;
    margin-top: -38px;
    z-index: 2;
    position: relative
}

@media all and (max-width: 639px) {
    #top_1 .read {
        font-family: "Shippori Mincho", serif;
        font-size: 24px;
        letter-spacing: .1em;
        margin-top: 0
    }
}

#top_1 ul {
    margin: 40px auto 0;
    border-top: 1px solid rgba(238, 238, 238, 0.2);
    width: 80%
}

@media all and (max-width: 639px) {
    #top_1 ul {
        width: 100%
    }
}

#top_1 ul li {
    border-bottom: 1px solid rgba(238, 238, 238, 0.2);
    padding: 25px
}

#top_1 ul li .info {
    margin-bottom: 15px
}

#top_1 ul li .info .data {
    font-family: "Gentium Book Plus", serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: .1em;
    color: #62574e
}

#top_1 ul li .info .cat {
    border: 1px solid #62574e;
    font-family: "Shippori Mincho", serif;
    font-size: 12px;
    letter-spacing: .1em;
    border-radius: 100px;
    margin-right: 10px;
    display: inline-block;
    padding: 0 0.8em;
    color: #62574e
}

#top_1 ul li .title {
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    letter-spacing: .1em;
    color: #4b3c2d
}

@media all and (max-width: 639px) {
    #top_1 ul li .title {
        font-family: "Shippori Mincho", serif;
        font-size: 14px;
        letter-spacing: .1em
    }
}

#top_2 {
    background-image: url(../img/top_2_bg.svg);
    background-size: 110px
}

@media all and (max-width: 1190px) {
    #top_2 {
        background: #e2d7ce;
        padding: 60px 0
    }
}

#top_2 .top_3_item_2 {
    position: relative
}

@media all and (max-width: 1190px) {
    #top_2 .top_3_item_2 {
        background-size: 200%
    }
}

@media all and (max-width: 769px) {
    #top_2 .top_3_item_2 {
        background-size: 300%
    }
}

@media all and (max-width: 639px) {
    #top_2 .top_3_item_2 {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        margin-top: 0
    }
}

#top_2 .top_3_item_2 .read_en {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 62px;
    letter-spacing: .1em;
    line-height: 1em;
    text-align: center;
    color: #62574e;
    opacity: .1
}

@media all and (max-width: 639px) {
    #top_2 .top_3_item_2 .read_en {
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 26px;
        letter-spacing: .1em;
        line-height: 1em
    }
}

#top_2 .top_3_item_2 .read {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 29px;
    letter-spacing: .1em;
    color: #917c50;
    margin-top: -38px;
    z-index: 2;
    position: relative
}

@media all and (max-width: 639px) {
    #top_2 .top_3_item_2 .read {
        font-family: "Shippori Mincho", serif;
        font-size: 24px;
        letter-spacing: .1em;
        margin-top: 0
    }
}

#top_2 .top_3_item_2 .read_sub {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 26px;
    letter-spacing: .1em;
    margin: 40px auto 30px;
    color: #4b3c2d
}

@media all and (max-width: 639px) {
    #top_2 .top_3_item_2 .read_sub {
        font-family: "Shippori Mincho", serif;
        font-size: 20px;
        letter-spacing: .1em
    }
}

#top_2 .top_3_item_2 .main {
    text-align: center;
    color: #4b3c2d;
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    letter-spacing: .1em
}

#top_2 .top_3_item_2 ul.list_1 {
    width: 100%;
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 60px
}

@media all and (max-width: 639px) {
    #top_2 .top_3_item_2 ul.list_1 {
        width: 100%
    }
}

#top_2 .top_3_item_2 ul.list_1 li {
    width: 48%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative
}

@media all and (max-width: 639px) {
    #top_2 .top_3_item_2 ul.list_1 li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px
    }
}

#top_2 .top_3_item_2 ul.list_1 li:last-child {
    margin-left: auto
}

@media all and (max-width: 639px) {
    #top_2 .top_3_item_2 ul.list_1 li:last-child {
        margin-top: 30px
    }
}

#top_2 .top_3_item_2 ul.list_1 li img {
    display: block;
    width: 100%
}

#top_2 .top_3_item_2 ul.list_1 li .item_main {
    font-family: "Shippori Mincho", serif;
    font-size: 28px;
    letter-spacing: .1em;
    line-height: 1em;
    color: #62574e;
    margin-top: 32px
}

#top_2 .top_3_item_2 ul.list_1 li .item_main span {
    display: block;
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    letter-spacing: .1em;
    margin-bottom: 5px
}

#top_2 .top_3_item_2 ul.list_1 li .item_main_text {
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
    letter-spacing: .1em;
    margin-top: 20px;
    color: #62574e
}

#top_3 {
    background: #f1eae4;
    padding-top: 100px;
    padding-bottom: 100px
}

#top_3 .single_new {
    padding-top: 100px;
    padding-bottom: 100px
}

@media all and (max-width: 639px) {
    #top_3 .single_new {
        padding-top: 40px
    }
}

#top_3 .inner {
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative
}

@media all and (max-width: 769px) {
    #top_3 .inner {
        display: block
    }
}

#top_3 .inner .in_phsoto {
    background-image: url(../img/top_3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 48%;
    border-radius: 0 330px 0 0
}

@media all and (max-width: 769px) {
    #top_3 .inner .in_phsoto {
        display: none
    }
}

#top_3 .inner .in_text {
    width: 48%;
    padding: 80px
}

@media all and (max-width: 769px) {
    #top_3 .inner .in_text {
        width: 100%;
        padding: 40px 15px
    }
}

#top_3 .inner .in_text .read_en {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 62px;
    letter-spacing: .1em;
    line-height: 1em;
    text-align: center;
    color: #62574e;
    opacity: .1
}

@media all and (max-width: 639px) {
    #top_3 .inner .in_text .read_en {
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 26px;
        letter-spacing: .1em;
        line-height: 1em;
        margin-top: 30px
    }
}

#top_3 .inner .in_text .read {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 29px;
    letter-spacing: .1em;
    color: #917c50;
    margin-top: -38px;
    z-index: 2;
    position: relative
}

@media all and (max-width: 639px) {
    #top_3 .inner .in_text .read {
        font-family: "Shippori Mincho", serif;
        font-size: 24px;
        letter-spacing: .1em;
        margin-top: 0
    }
}

#top_3 .inner .right {
    margin-left: auto
}

#top_3 .inner img._sp {
    display: none
}

@media all and (max-width: 769px) {
    #top_3 .inner img._sp {
        display: block;
        width: 100%
    }
}

#top_3 .inner ul {
    margin-top: 50px
}

#top_3 .inner ul li a.top_3_links {
    display: block;
    width: 100%;
    position: relative;
    padding: .8em;
    border-bottom: 1px solid #e2d7ce;
    -webkit-transition: .4s;
    transition: .4s
}

@media all and (max-width: 639px) {
    #top_3 .inner ul li a.top_3_links {
        width: 90%
    }
}

#top_3 .inner ul li a.top_3_links .item_text {
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    letter-spacing: .1em;
    color: #4b3c2d
}

#top_3 .inner ul li a.top_3_links .item_text span {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: .1em;
    margin-right: 10px
}

#top_3 .inner ul li a.top_3_links .more {
    display: block;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    margin: auto;
    border: 1px solid #4b3c2d;
    color: #4b3c2d;
    width: 26px;
    height: 26px;
    line-height: 26px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-size: 14px;
    right: 20px;
    margin: auto;
    top: 0;
    bottom: 0;
    opacity: 0.7
}

#top_3 .inner ul li a.top_3_links:hover {
    background: #e2d7ce;
    -webkit-transition: .4s;
    transition: .4s
}

#top_3 .bottom .read_en {
    font-family: "Gentium Book Plus", serif;
    font-weight: 500;
    font-size: 34px;
    letter-spacing: .1em;
    line-height: 1em;
    color: #62574e
}

@media all and (max-width: 639px) {
    #top_3 .bottom .read_en {
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 30px;
        letter-spacing: .1em
    }
}

#top_3 .bottom .read {
    font-family: "Shippori Mincho", serif;
    font-size: 24px;
    letter-spacing: .1em;
    font-weight: 400;
    line-height: 1.6em
}

@media all and (max-width: 639px) {
    #top_3 .bottom .read {
        font-family: "Shippori Mincho", serif;
        font-size: 17px;
        letter-spacing: .1em
    }
}

#top_3 .bottom .flow_list {
    margin-top: 30px
}

#top_3 .bottom .flow_list ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

#top_3 .bottom .flow_list ul li {
    width: 20%
}

@media all and (max-width: 639px) {
    #top_3 .bottom .flow_list ul li {
        width: 48%
    }
}

@media all and (max-width: 639px) {
    #top_3 .bottom .flow_list ul li:nth-child(even) {
        margin-left: auto
    }
}

#top_3 .bottom .flow_list ul li img {
    display: block;
    margin: auto;
    width: 46%
}

#top_3 .bottom .flow_list ul li .item_main {
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    letter-spacing: .1em;
    font-weight: 500;
    margin-top: 10px
}

footer {
    display: block
}

footer #foot_you {
    background: #f1eae4;
    position: relative;
    width: 100%
}

@media all and (max-width: 639px) {
    footer #foot_you {
        padding-bottom: 60px
    }
}

footer #foot_you img.foot_logo {
    display: block;
    margin: auto;
    width: 220px
}

footer #foot_you .tete_link {
    display: block;
    color: #62574e;
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 42px;
    letter-spacing: .1em;
    font-weight: 300;
    text-align: center;
    margin-top: 40px;
    line-height: 1em;
    margin-bottom: 20px
}

@media all and (max-width: 639px) {
    footer #foot_you .tete_link {
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 38px;
        letter-spacing: .1em
    }
}

footer #foot_you .tete_link i {
    font-size: 65%
}

footer #foot_you .juusho {
    text-align: center;
    color: #62574e;
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    letter-spacing: .1em
}

footer #foot_you .col-2 {
    width: 100%;
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 30px
}

footer #foot_you .col-2 li {
    width: 30%
}

@media all and (max-width: 639px) {
    footer #foot_you .col-2 li {
        width: 78%
    }
}

footer #foot_you .col-2 li:nth-child(n+2) {
    margin-left: 40px
}

@media all and (max-width: 639px) {
    footer #foot_you .col-2 li:nth-child(n+2) {
        margin-left: auto
    }
}

footer #foot_you .col-2 li a {
    display: block;
    border: 1px solid #62574e;
    text-align: center;
    padding: .5em;
    color: #62574e;
    -webkit-transition: .4s;
    transition: .4s
}

footer #foot_you .col-2 li a:hover {
    background: #62574e;
    color: #e2d7ce;
    -webkit-transition: .4s;
    transition: .4s
}

footer #foot_you .foot_text {
    color: #62574e;
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
    letter-spacing: .1em
}

@media all and (max-width: 639px) {
    footer #foot_you .foot_text {
        text-align: left
    }
}

footer #foot_you .foot_text span {
    display: table;
    border-bottom: 1px solid #62574e;
    margin-bottom: 4px
}

footer #foot_you .foot_text span:nth-child(n+2) {
    margin-top: 20px
}

footer #foot_you .copy {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
    letter-spacing: .1em;
    display: block;
    width: 100%;
    position: relative;
    z-index: 2;
    font-weight: 500;
    padding: 10px 0;
    color: #f1eae4;
    background: #62574e
}

footer #foot_you ._sp_only {
    display: none
}

@media all and (max-width: 639px) {
    footer #foot_you ._sp_only {
        display: block;
        width: 100%;
        position: fixed;
        bottom: 0;
        background: #917c50;
        z-index: 333
    }
}

footer #foot_you ._sp_only ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

footer #foot_you ._sp_only ul li {
    width: 50%
}

footer #foot_you ._sp_only ul li a {
    display: block;
    text-align: center;
    padding: 14px 10px;
    font-size: 16px;
    color: #fff
}

footer #foot_you ._sp_only ul li:nth-child(even) {
    background: #f5f5f5
}

footer #foot_you ._sp_only ul li:nth-child(even) a {
    color: #917c50
}

#hanb_nav {
    position: fixed;
    padding: 15px 15px 40px;
    background: #f1eae4;
    right: 0;
    width: 96px;
    height: 82px;
    z-index: 99999;
    display: none
}

@media all and (max-width: 639px) {
    #hanb_nav {
        width: 76px;
        height: 62px;
        display: block
    }
}

.menu {
    height: 20px;
    position: fixed;
    right: 30px;
    top: 32px;
    width: 30px;
    z-index: 99999;
    cursor: pointer;
    cursor: hand
}

@media all and (max-width: 769px) {
    .menu {
        display: block
    }
}

@media all and (max-width: 639px) {
    .menu {
        right: 21px;
        top: 18px
    }
}

.menu__line {
    background: #917c50;
    display: block;
    height: 2px;
    position: absolute;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    width: 100%
}

.menu__line--center {
    top: 9px
}

.menu__line--bottom {
    bottom: 0
}

.menu__line--top.active {
    top: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.menu__line--center.active {
    -webkit-transform: scaleX(0);
    transform: scaleX(0)
}

.menu__line--bottom.active {
    bottom: 10px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}

.gnav {
    background: #869c86;
    opacity: 0;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    left: 0;
    -webkit-transform: translateY(-200%);
    transform: translateY(-200%);
    -webkit-transition: 0.4s cubic-bezier(0.26, 0.06, 0, 1) all;
    transition: 0.4s cubic-bezier(0.26, 0.06, 0, 1) all
}

.gnav.is-active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

.gnav__wrap {
    padding: 70px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background: #f1eae4;
    overflow-y: auto
}

@media all and (max-width: 639px) {
    .gnav__wrap {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 70px 0 40px
    }
}

.sp-logo {
    max-width: 350px;
    margin: 0 auto 50px
}

.sp-logo img {
    max-width: 100%
}

@media all and (max-width: 639px) {
    .sp-logo {
        max-width: 180px
    }
}

.gnav__menu {
    width: 100%;
    max-width: 500px;
    padding: 0 20px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.gnav__menu__item {
    text-align: left
}

.gnav__menu__item:not(:last-of-type) {
    margin-bottom: 20px
}

.gnav__menu__item .item_read {
    color: #2E1500;
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    letter-spacing: .1em;
    font-weight: 600;
    padding: 0;
    display: block;
    letter-spacing: 0.2em
}

.gnav__menu__item .item_read.js-sp-parent {
    position: relative;
    display: block;
    cursor: pointer
}

.gnav__menu__item .item_read.js-sp-parent:after {
    font-family: "Font Awesome 5 Free";
    content: "\f067";
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff
}

.gnav__menu__item .item_read.js-sp-parent.is-open:after {
    content: "\f068"
}

.gnav__menu__item .gnav__menu_sub {
    display: none
}

.gnav__menu__item .gnav__menu_sub li {
    margin-top: 8px
}

.gnav__menu__item .gnav__menu_sub li a {
    display: block;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    letter-spacing: .1em;
    font-weight: 500;
    font-weight: 500;
    color: #fff
}

.gnav__menu__item a:hover {
    color: #000
}

#salon_1 .single_new {
    margin-bottom: 50px;
    margin-top: 50px;
    background: #fff
}

#salon_1 .sub_read {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 29px;
    letter-spacing: .1em;
    color: #62574e
}

@media all and (max-width: 639px) {
    #salon_1 .sub_read {
        font-family: "Shippori Mincho", serif;
        font-size: 21px;
        letter-spacing: .1em
    }
}

#salon_1 .main {
    text-align: center;
    margin-top: 40px;
    color: #62574e;
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    letter-spacing: .1em
}

@media all and (max-width: 639px) {
    #salon_1 .main {
        font-family: "Shippori Mincho", serif;
        font-size: 15px;
        letter-spacing: .1em
    }
}

#salon_1 ul {
    margin-top: 80px
}

#salon_1 ul li {
    position: relative
}

#salon_1 ul li:nth-child(n+2) {
    margin-top: 60px
}

#salon_1 ul li img {
    display: block;
    width: 100%
}

#salon_1 ul li .list_item_read_en {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 77px;
    letter-spacing: .1em;
    line-height: 1em;
    color: #e2d7ce;
    position: absolute;
    z-index: 1;
    opacity: .4
}

@media all and (max-width: 639px) {
    #salon_1 ul li .list_item_read_en {
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 37px;
        letter-spacing: .1em
    }
}

#salon_1 ul li .lite_item_read {
    font-family: "Shippori Mincho", serif;
    font-size: 25px;
    letter-spacing: .1em;
    color: #62574e;
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin-top: 30px
}

#salon_1 ul li .list_item_main {
    margin-top: 10px;
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    letter-spacing: .1em;
    color: #62574e
}

#salon_1 .bottom {
    margin-top: 90px;
    padding-top: 90px;
    border-top: 1px solid #a89d87
}

#salon_1 .bottom .read_en {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 62px;
    letter-spacing: .1em;
    line-height: 1em;
    color: #62574e;
    opacity: .1
}

@media all and (max-width: 639px) {
    #salon_1 .bottom .read_en {
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 26px;
        letter-spacing: .1em;
        line-height: 1em;
        margin-top: -46px
    }
}

#salon_1 .bottom .read {
    font-family: "Shippori Mincho", serif;
    font-size: 29px;
    letter-spacing: .1em;
    color: #917c50;
    margin-top: -38px;
    z-index: 2;
    position: relative
}

@media all and (max-width: 639px) {
    #salon_1 .bottom .read {
        font-family: "Shippori Mincho", serif;
        font-size: 24px;
        letter-spacing: .1em;
        margin-top: 0
    }
}

#salon_1 .bottom .innerB {
    margin-top: 30px
}

#salon_1 .bottom .innerB img {
    display: block;
    width: 100%
}

#salon_1 .bottom .innerB .name {
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    letter-spacing: .1em;
    font-weight: 600;
    color: #2E1500
}

#salon_1 .bottom .innerB .name span {
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    letter-spacing: .1em;
    margin-right: 10px
}

#salon_1 .bottom .innerB .plof_keireki {
    margin-top: 15px;
    font-family: "Shippori Mincho", serif;
    font-size: 13px;
    letter-spacing: .1em;
    color: #2E1500
}

#salon_1 .bottom .innerB .plof_main {
    margin-top: 30px;
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    letter-spacing: .1em;
    color: #62574e
}

#staff_1 .single_new {
    margin-bottom: 50px;
    margin-top: 50px;
    background: #fff
}

#staff_1 .read_en {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 62px;
    letter-spacing: .1em;
    line-height: 1em;
    color: #62574e;
    opacity: .1
}

@media all and (max-width: 639px) {
    #staff_1 .read_en {
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 26px;
        letter-spacing: .1em;
        line-height: 1em
    }
}

#staff_1 .read {
    font-family: "Shippori Mincho", serif;
    font-size: 29px;
    letter-spacing: .1em;
    color: #917c50;
    margin-top: -38px;
    z-index: 2;
    position: relative
}

@media all and (max-width: 639px) {
    #staff_1 .read {
        font-family: "Shippori Mincho", serif;
        font-size: 24px;
        letter-spacing: .1em;
        margin-top: 0
    }
}

#staff_1 ul {
    margin-top: 70px
}

#staff_1 ul li:nth-child(n+2) {
    margin-top: 50px
}

#staff_1 .innerB img {
    display: block;
    width: 100%
}

#staff_1 .innerB .name {
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    letter-spacing: .1em;
    font-weight: 600;
    color: #2E1500
}

#staff_1 .innerB .name span {
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    letter-spacing: .1em;
    margin-right: 10px
}

#staff_1 .innerB .name ._sp {
    display: none
}

@media all and (max-width: 639px) {
    #staff_1 .innerB .name ._sp {
        display: block
    }
}

#staff_1 .innerB .plof_keireki {
    margin-top: 15px;
    font-family: "Shippori Mincho", serif;
    font-size: 13px;
    letter-spacing: .1em;
    color: #2E1500
}

#staff_1 .innerB .plof_main {
    margin-top: 30px;
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    letter-spacing: .1em;
    color: #62574e
}

#menu_1 .single_new {
    margin-bottom: 50px;
    margin-top: 50px;
    background: #fff
}

#menu_1 .read_en {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 62px;
    letter-spacing: .1em;
    line-height: 1em;
    color: #62574e;
    opacity: .1
}

@media all and (max-width: 639px) {
    #menu_1 .read_en {
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 26px;
        letter-spacing: .1em;
        line-height: 1em
    }
}

#menu_1 .read {
    font-family: "Shippori Mincho", serif;
    font-size: 29px;
    letter-spacing: .1em;
    color: #917c50;
    margin-top: -38px;
    z-index: 2;
    position: relative
}

@media all and (max-width: 639px) {
    #menu_1 .read {
        font-family: "Shippori Mincho", serif;
        font-size: 24px;
        letter-spacing: .1em;
        margin-top: 0
    }
}

#menu_1 ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media all and (max-width: 639px) {
    #menu_1 ul {
        display: block
    }
}

#menu_1 ul li {
    width: 45%;
    margin-top: 60px
}

@media all and (max-width: 639px) {
    #menu_1 ul li {
        width: 100%
    }
}

#menu_1 ul li:nth-child(even) {
    margin-left: auto
}

#menu_1 ul li .list_read {
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    letter-spacing: .1em;
    color: #917c50
}

@media all and (max-width: 639px) {
    #menu_1 ul li .list_read {
        font-family: "Shippori Mincho", serif;
        font-size: 17px;
        letter-spacing: .1em;
        font-weight: 500
    }
}

#menu_1 ul li .list_read span {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: .1em;
    margin-right: 10px;
    line-height: 1em;
    color: #869c86
}

@media all and (max-width: 639px) {
    #menu_1 ul li .list_read span {
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 25px;
        letter-spacing: .1em
    }
}

#menu_1 ul li table {
    width: 100%
}

#menu_1 ul li table tr {
    position: relative
}

#menu_1 ul li table tr:before {
    content: "";
    border-bottom: 2px dotted #eee;
    width: 100%;
    height: 2px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    z-index: 1
}

#menu_1 ul li table th {
    text-align: left
}

#menu_1 ul li table th span {
    padding-right: 15px
}

#menu_1 ul li table td {
    text-align: right
}

#menu_1 ul li table td span {
    padding-left: 15px
}

#menu_1 ul li table th,
#menu_1 ul li table td {
    background: none;
    border: none;
    padding: 5px 0
}

#menu_1 ul li table th span,
#menu_1 ul li table td span {
    background: #fff;
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    letter-spacing: .1em;
    font-weight: 500;
    color: #62574e;
    position: relative;
    z-index: 2
}

#menu_1 ul li table th span.dis_b,
#menu_1 ul li table td span.dis_b {
    display: block;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 13px;
    letter-spacing: .1em;
    font-weight: 500;
    font-weight: 500;
    color: #f1eae4;
    text-align: left
}

#menu_1 ul li .table_bottom {
    margin-top: 30px;
    background: rgba(238, 238, 238, 0.3);
    padding: 20px 30px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 13px;
    letter-spacing: .1em;
    font-weight: 500;
    font-weight: 500;
    color: #4b3c2d
}

#menu_1 ul li .link_bottom {
    display: block;
    background: #fff;
    text-align: center;
    width: 100%;
    border-radius: 100px;
    padding: 1.2em 0;
    margin: 50px auto 0;
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: .1em;
    font-weight: 400;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px
}


#menu_2 .single_new {
    margin-bottom: 50px;
    margin-top: 50px;
    background: #fff
}

#menu_2 .read_en {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 62px;
    letter-spacing: .1em;
    line-height: 1em;
    color: #62574e;
    opacity: .1
}

@media all and (max-width: 639px) {
    #menu_2 .read_en {
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 26px;
        letter-spacing: .1em;
        line-height: 1em
    }
}

#menu_2 .read {
    font-family: "Shippori Mincho", serif;
    font-size: 29px;
    letter-spacing: .1em;
    color: #917c50;
    margin-top: -38px;
    z-index: 2;
    position: relative
}

@media all and (max-width: 639px) {
    #menu_2 .read {
        font-family: "Shippori Mincho", serif;
        font-size: 24px;
        letter-spacing: .1em;
        margin-top: 0
    }
}

.before-after{
    width: 100%;
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.justify-center{
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}

@media all and (max-width: 639px) {
    .before-after {

    }
}

.before-after .child{
    width: calc(50% - 19px);
    position: relative;
}

.before-after .child:first-child::before{
    font-family: "Font Awesome 5 Free";
    content: '\f0da';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    font-size: 60px;
    color: #869c86;
}

.ul_column{
    width: 100%;
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media all and (max-width: 639px) {
    .ul_column {
        display: block
    }
}

.ul_column>li{
    width: 45%;
    margin-top: 60px
}

@media all and (max-width: 639px) {
    .ul_column>li {
        width: 100%
    }
}

.ul_column>li:nth-child(even) {
    margin-left: auto
}

.mtitle01{
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    letter-spacing: .1em;
    color: #917c50
}

@media all and (max-width: 639px) {
    .mtitle01 {
        font-family: "Shippori Mincho", serif;
        font-size: 17px;
        letter-spacing: .1em;
        font-weight: 500
    }
}

.mtitle01 span {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: .1em;
    margin-right: 10px;
    line-height: 1em;
    color: #869c86
}

@media all and (max-width: 639px) {
    .mtitle01 span {
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 25px;
        letter-spacing: .1em
    }
}

.list-007 {
    list-style-type: none;
    padding: 1em 0;
}

.list-007>li {
    display: flex;
    align-items: center;
    gap: 0 10px;
    padding: .3em;
}

.list-007>li::before {
    transform: rotate(-45deg);
    width: .4em;
    height: .4em;
    border-bottom: 3px solid #869c86;
    border-right: 3px solid #869c86;
    content: '';
}



#product_1 .single_new {
    margin-bottom: 50px;
    margin-top: 50px;
    background: #fff
}

#product_1 .sub_read {
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 29px;
    letter-spacing: .1em;
    color: #62574e
}

#product_1 .main {
    text-align: center;
    margin-top: 40px;
    color: #62574e;
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    letter-spacing: .1em
}

#product_1 ul {
    margin-top: 50px
}

#product_1 ul li {
    position: relative
}

#product_1 ul li:nth-child(n+2) {
    margin-top: 80px
}

#product_1 ul li img {
    display: block;
    width: 100%
}

#product_1 ul li .list_item_read_en {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: .1em;
    line-height: 1em;
    color: #917c50;
    z-index: 1;
    opacity: .4
}

#product_1 ul li .lite_item_read {
    font-family: "Shippori Mincho", serif;
    font-size: 25px;
    letter-spacing: .1em;
    color: #62574e;
    font-weight: 600;
    position: relative;
    z-index: 2
}

#product_1 ul li .list_item_main {
    margin-top: 10px;
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    letter-spacing: .1em;
    color: #62574e
}

#product_1 ul li a {
    display: block;
    width: 500px;
    border-radius: 100px;
    margin-top: 30px;
    text-align: center;
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    letter-spacing: .1em;
    color: #917c50;
    padding: .8em;
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px
}

@media all and (max-width: 639px) {
    #product_1 ul li a {
        width: 100%;
        padding: .8em 0
    }
}

#gallery_1 .single_new {
    margin-bottom: 50px;
    margin-top: 50px;
    background: #fff
}

#gallery_1 ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

#gallery_1 ul li {
    width: 23.5%;
    margin-right: 2%;
    position: relative
}

#gallery_1 ul li:nth-child(4n) {
    margin-right: 0
}

#gallery_1 ul li:nth-child(n+5) {
    margin-top: 30px
}

@media all and (max-width: 639px) {
    #gallery_1 ul li:nth-child(n+5) {
        margin-top: 30px
    }
}

@media all and (max-width: 639px) {
    #gallery_1 ul li {
        width: 48%;
        margin-right: 0
    }
}

@media all and (max-width: 639px) {
    #gallery_1 ul li:nth-child(even) {
        margin-left: auto
    }
}

@media all and (max-width: 639px) {
    #gallery_1 ul li:nth-child(n+3) {
        margin-top: 30px
    }
}

#gallery_1 ul li a {
    display: block;
    width: 100%;
    height: 248px;
    line-height: 248px;
    overflow: hidden;
    background: #eee
}

@media all and (max-width: 639px) {
    #gallery_1 ul li a {
        height: 108px;
        line-height: 108px
    }
}

#gallery_1 ul li a img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    font-family: "object-fit: contain;"
}

#treatment_uncor {
    position: fixed;
    width: 200px;
    left: 30px;
    bottom: 20px;
    z-index: 333
}

@media all and (max-width: 639px) {
    #treatment_uncor {
        display: none
    }
}

@media all and (max-width: 639px) {
    #treatment_uncor ul {
        width: 100%
    }
}

#treatment_uncor ul li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative
}

#treatment_uncor ul li:before {
    content: "";
    width: 1px;
    height: 100%;
    background: #e2d7ce;
    position: absolute;
    top: 0;
    left: 2px;
    z-index: 1;
    opacity: .4
}

@media all and (max-width: 639px) {
    #treatment_uncor ul li {
        width: 25%;
        border: 1px solid #869c86
    }
}

#treatment_uncor ul li:first-child:before {
    display: none
}

#treatment_uncor ul li:nth-child(n+2):before {
    top: 1em
}

#treatment_uncor ul li:last-child:before {
    display: none
}

#treatment_uncor ul li .uncor_nv {
    font-family: "Shippori Mincho", serif;
    font-size: 22px;
    letter-spacing: .1em;
    color: #e2d7ce;
    line-height: 1em;
    margin-bottom: 15px
}

#treatment_uncor ul li a {
    display: block;
    position: relative;
    font-family: "Shippori Mincho", serif;
    font-size: 12px;
    letter-spacing: .1em;
    color: #e2d7ce;
    -webkit-transition: .4s;
    transition: .4s;
    padding: .3em 0 .3em 20px
}

#treatment_uncor ul li a:before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background: #e2d7ce;
    border-radius: 50%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 2
}

#treatment_uncor ul li a:hover {
    color: #917c50;
    -webkit-transition: .4s;
    transition: .4s
}

#treatment_uncor ul li a:hover:before {
    background: #917c50;
    -webkit-transition: .4s;
    transition: .4s
}

#treatment_1 .single_new,
#treatment_2 .single_new,
#treatment_3 .single_new,
#treatment_4 .single_new,
#treatment_5 .single_new,
#treatment_6 .single_new,
#treatment_7 .single_new,
#treatment_8 .single_new,
#treatment_9 .single_new {
    margin-bottom: 50px
}

#treatment_1 .read_en,
#treatment_2 .read_en,
#treatment_3 .read_en,
#treatment_4 .read_en,
#treatment_5 .read_en,
#treatment_6 .read_en,
#treatment_7 .read_en,
#treatment_8 .read_en,
#treatment_9 .read_en {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 53px;
    letter-spacing: .1em;
    line-height: 1em;
    color: #fff;
    opacity: .1
}

@media all and (max-width: 639px) {

    #treatment_1 .read_en,
    #treatment_2 .read_en,
    #treatment_3 .read_en,
    #treatment_4 .read_en,
    #treatment_5 .read_en,
    #treatment_6 .read_en,
    #treatment_7 .read_en,
    #treatment_8 .read_en,
    #treatment_9 .read_en {
        font-family: "Cinzel", serif;
        font-weight: 500;
        font-size: 26px;
        letter-spacing: .1em;
        line-height: 1em
    }
}

#treatment_1 .read,
#treatment_2 .read,
#treatment_3 .read,
#treatment_4 .read,
#treatment_5 .read,
#treatment_6 .read,
#treatment_7 .read,
#treatment_8 .read,
#treatment_9 .read {
    font-family: "Shippori Mincho", serif;
    font-size: 29px;
    letter-spacing: .1em;
    font-weight: 500;
    color: #917c50;
    margin-top: -38px;
    z-index: 2;
    position: relative
}

@media all and (max-width: 639px) {

    #treatment_1 .read,
    #treatment_2 .read,
    #treatment_3 .read,
    #treatment_4 .read,
    #treatment_5 .read,
    #treatment_6 .read,
    #treatment_7 .read,
    #treatment_8 .read,
    #treatment_9 .read {
        font-family: "Shippori Mincho", serif;
        font-size: 24px;
        letter-spacing: .1em;
        margin-top: 0
    }
}

#treatment_1 .sub_read,
#treatment_2 .sub_read,
#treatment_3 .sub_read,
#treatment_4 .sub_read,
#treatment_5 .sub_read,
#treatment_6 .sub_read,
#treatment_7 .sub_read,
#treatment_8 .sub_read,
#treatment_9 .sub_read {
    margin: 40px 0 0;
    font-family: "Shippori Mincho", serif;
    font-size: 17px;
    letter-spacing: .1em;
    color: #e2d7ce
}

@media all and (max-width: 639px) {

    #treatment_1 .sub_read,
    #treatment_2 .sub_read,
    #treatment_3 .sub_read,
    #treatment_4 .sub_read,
    #treatment_5 .sub_read,
    #treatment_6 .sub_read,
    #treatment_7 .sub_read,
    #treatment_8 .sub_read,
    #treatment_9 .sub_read {
        font-family: "Shippori Mincho", serif;
        font-size: 15px;
        letter-spacing: .1em
    }
}

#treatment_1 .treatment_item,
#treatment_2 .treatment_item,
#treatment_3 .treatment_item,
#treatment_4 .treatment_item,
#treatment_5 .treatment_item,
#treatment_6 .treatment_item,
#treatment_7 .treatment_item,
#treatment_8 .treatment_item,
#treatment_9 .treatment_item {
    margin-top: 80px
}

#treatment_1 .treatment_item .treatment_item_read,
#treatment_2 .treatment_item .treatment_item_read,
#treatment_3 .treatment_item .treatment_item_read,
#treatment_4 .treatment_item .treatment_item_read,
#treatment_5 .treatment_item .treatment_item_read,
#treatment_6 .treatment_item .treatment_item_read,
#treatment_7 .treatment_item .treatment_item_read,
#treatment_8 .treatment_item .treatment_item_read,
#treatment_9 .treatment_item .treatment_item_read {
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    letter-spacing: .1em;
    color: #e2d7ce;
    border-bottom: 1px solid #e2d7ce;
    border-top: 1px solid #e2d7ce;
    opacity: .7;
    padding: 0.5em;
    margin-bottom: 20px
}

#treatment_1 .treatment_item .treatment_item_sub_read,
#treatment_2 .treatment_item .treatment_item_sub_read,
#treatment_3 .treatment_item .treatment_item_sub_read,
#treatment_4 .treatment_item .treatment_item_sub_read,
#treatment_5 .treatment_item .treatment_item_sub_read,
#treatment_6 .treatment_item .treatment_item_sub_read,
#treatment_7 .treatment_item .treatment_item_sub_read,
#treatment_8 .treatment_item .treatment_item_sub_read,
#treatment_9 .treatment_item .treatment_item_sub_read {
    font-family: "Shippori Mincho", serif;
    font-size: 18px;
    letter-spacing: .1em;
    color: #917c50
}

#treatment_1 .treatment_item .treatment_item_main,
#treatment_2 .treatment_item .treatment_item_main,
#treatment_3 .treatment_item .treatment_item_main,
#treatment_4 .treatment_item .treatment_item_main,
#treatment_5 .treatment_item .treatment_item_main,
#treatment_6 .treatment_item .treatment_item_main,
#treatment_7 .treatment_item .treatment_item_main,
#treatment_8 .treatment_item .treatment_item_main,
#treatment_9 .treatment_item .treatment_item_main {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    letter-spacing: .1em;
    font-weight: 500;
    color: #e2d7ce
}

#treatment_1 .treatment_item .item_sub_text,
#treatment_2 .treatment_item .item_sub_text,
#treatment_3 .treatment_item .item_sub_text,
#treatment_4 .treatment_item .item_sub_text,
#treatment_5 .treatment_item .item_sub_text,
#treatment_6 .treatment_item .item_sub_text,
#treatment_7 .treatment_item .item_sub_text,
#treatment_8 .treatment_item .item_sub_text,
#treatment_9 .treatment_item .item_sub_text {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    letter-spacing: .1em;
    font-weight: 500;
    color: #e2d7ce
}

#treatment_1 .treatment_item .item_sub_text span,
#treatment_2 .treatment_item .item_sub_text span,
#treatment_3 .treatment_item .item_sub_text span,
#treatment_4 .treatment_item .item_sub_text span,
#treatment_5 .treatment_item .item_sub_text span,
#treatment_6 .treatment_item .item_sub_text span,
#treatment_7 .treatment_item .item_sub_text span,
#treatment_8 .treatment_item .item_sub_text span,
#treatment_9 .treatment_item .item_sub_text span {
    display: block;
    font-family: "Shippori Mincho", serif;
    font-size: 19px;
    letter-spacing: .1em;
    color: #e2d7ce;
    line-height: 1.6em
}

#treatment_1 .treatment_item img,
#treatment_2 .treatment_item img,
#treatment_3 .treatment_item img,
#treatment_4 .treatment_item img,
#treatment_5 .treatment_item img,
#treatment_6 .treatment_item img,
#treatment_7 .treatment_item img,
#treatment_8 .treatment_item img,
#treatment_9 .treatment_item img {
    display: block;
    width: 100%
}

#treatment_1 .col-3,
#treatment_2 .col-3,
#treatment_3 .col-3,
#treatment_4 .col-3,
#treatment_5 .col-3,
#treatment_6 .col-3,
#treatment_7 .col-3,
#treatment_8 .col-3,
#treatment_9 .col-3 {
    width: 100%;
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media all and (max-width: 639px) {

    #treatment_1 .col-3,
    #treatment_2 .col-3,
    #treatment_3 .col-3,
    #treatment_4 .col-3,
    #treatment_5 .col-3,
    #treatment_6 .col-3,
    #treatment_7 .col-3,
    #treatment_8 .col-3,
    #treatment_9 .col-3 {
        display: block
    }
}

#treatment_1 .col-3 .col-3-item,
#treatment_2 .col-3 .col-3-item,
#treatment_3 .col-3 .col-3-item,
#treatment_4 .col-3 .col-3-item,
#treatment_5 .col-3 .col-3-item,
#treatment_6 .col-3 .col-3-item,
#treatment_7 .col-3 .col-3-item,
#treatment_8 .col-3 .col-3-item,
#treatment_9 .col-3 .col-3-item {
    width: 32%;
    margin-right: 2%
}

@media all and (max-width: 639px) {

    #treatment_1 .col-3 .col-3-item,
    #treatment_2 .col-3 .col-3-item,
    #treatment_3 .col-3 .col-3-item,
    #treatment_4 .col-3 .col-3-item,
    #treatment_5 .col-3 .col-3-item,
    #treatment_6 .col-3 .col-3-item,
    #treatment_7 .col-3 .col-3-item,
    #treatment_8 .col-3 .col-3-item,
    #treatment_9 .col-3 .col-3-item {
        width: 100%;
        margin-right: 0
    }
}

#treatment_1 .col-3 .col-3-item:nth-child(3n),
#treatment_2 .col-3 .col-3-item:nth-child(3n),
#treatment_3 .col-3 .col-3-item:nth-child(3n),
#treatment_4 .col-3 .col-3-item:nth-child(3n),
#treatment_5 .col-3 .col-3-item:nth-child(3n),
#treatment_6 .col-3 .col-3-item:nth-child(3n),
#treatment_7 .col-3 .col-3-item:nth-child(3n),
#treatment_8 .col-3 .col-3-item:nth-child(3n),
#treatment_9 .col-3 .col-3-item:nth-child(3n) {
    margin-right: 0
}

@media all and (max-width: 639px) {

    #treatment_1 .col-3 .col-3-item:nth-child(n+2),
    #treatment_2 .col-3 .col-3-item:nth-child(n+2),
    #treatment_3 .col-3 .col-3-item:nth-child(n+2),
    #treatment_4 .col-3 .col-3-item:nth-child(n+2),
    #treatment_5 .col-3 .col-3-item:nth-child(n+2),
    #treatment_6 .col-3 .col-3-item:nth-child(n+2),
    #treatment_7 .col-3 .col-3-item:nth-child(n+2),
    #treatment_8 .col-3 .col-3-item:nth-child(n+2),
    #treatment_9 .col-3 .col-3-item:nth-child(n+2) {
        margin-top: 30px
    }
}

#treatment_1 .col-3 .item_no,
#treatment_2 .col-3 .item_no,
#treatment_3 .col-3 .item_no,
#treatment_4 .col-3 .item_no,
#treatment_5 .col-3 .item_no,
#treatment_6 .col-3 .item_no,
#treatment_7 .col-3 .item_no,
#treatment_8 .col-3 .item_no,
#treatment_9 .col-3 .item_no {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: .1em;
    color: #e2d7ce;
    opacity: .5;
    margin-top: 10px
}

#treatment_1 .col-3 .item_sub_text,
#treatment_2 .col-3 .item_sub_text,
#treatment_3 .col-3 .item_sub_text,
#treatment_4 .col-3 .item_sub_text,
#treatment_5 .col-3 .item_sub_text,
#treatment_6 .col-3 .item_sub_text,
#treatment_7 .col-3 .item_sub_text,
#treatment_8 .col-3 .item_sub_text,
#treatment_9 .col-3 .item_sub_text {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    letter-spacing: .1em;
    font-weight: 500;
    color: #e2d7ce;
    line-height: 1.6em
}

#treatment_1 .col-3 .item_sub_text span,
#treatment_2 .col-3 .item_sub_text span,
#treatment_3 .col-3 .item_sub_text span,
#treatment_4 .col-3 .item_sub_text span,
#treatment_5 .col-3 .item_sub_text span,
#treatment_6 .col-3 .item_sub_text span,
#treatment_7 .col-3 .item_sub_text span,
#treatment_8 .col-3 .item_sub_text span,
#treatment_9 .col-3 .item_sub_text span {
    display: block;
    font-family: "Shippori Mincho", serif;
    font-size: 19px;
    letter-spacing: .1em;
    color: #e2d7ce;
    margin-bottom: 10px
}

#treatment_1 .kouka_list li:nth-child(n+2),
#treatment_2 .kouka_list li:nth-child(n+2),
#treatment_3 .kouka_list li:nth-child(n+2),
#treatment_4 .kouka_list li:nth-child(n+2),
#treatment_5 .kouka_list li:nth-child(n+2),
#treatment_6 .kouka_list li:nth-child(n+2),
#treatment_7 .kouka_list li:nth-child(n+2),
#treatment_8 .kouka_list li:nth-child(n+2),
#treatment_9 .kouka_list li:nth-child(n+2) {
    margin-top: 40px
}

#treatment_1 .kouka_list li .item_sub_text,
#treatment_2 .kouka_list li .item_sub_text,
#treatment_3 .kouka_list li .item_sub_text,
#treatment_4 .kouka_list li .item_sub_text,
#treatment_5 .kouka_list li .item_sub_text,
#treatment_6 .kouka_list li .item_sub_text,
#treatment_7 .kouka_list li .item_sub_text,
#treatment_8 .kouka_list li .item_sub_text,
#treatment_9 .kouka_list li .item_sub_text {
    line-height: 1.6em
}

#treatment_1 .kouka_list li .item_sub_text span,
#treatment_2 .kouka_list li .item_sub_text span,
#treatment_3 .kouka_list li .item_sub_text span,
#treatment_4 .kouka_list li .item_sub_text span,
#treatment_5 .kouka_list li .item_sub_text span,
#treatment_6 .kouka_list li .item_sub_text span,
#treatment_7 .kouka_list li .item_sub_text span,
#treatment_8 .kouka_list li .item_sub_text span,
#treatment_9 .kouka_list li .item_sub_text span {
    margin-bottom: 10px;
    line-height: 1.5em
}

#treatment_1 table.ryoukkin,
#treatment_2 table.ryoukkin,
#treatment_3 table.ryoukkin,
#treatment_4 table.ryoukkin,
#treatment_5 table.ryoukkin,
#treatment_6 table.ryoukkin,
#treatment_7 table.ryoukkin,
#treatment_8 table.ryoukkin,
#treatment_9 table.ryoukkin {
    width: 100%;
    border-top: 1px dashed rgba(202, 204, 204, 0.5)
}

#treatment_1 table.ryoukkin th,
#treatment_1 table.ryoukkin td,
#treatment_2 table.ryoukkin th,
#treatment_2 table.ryoukkin td,
#treatment_3 table.ryoukkin th,
#treatment_3 table.ryoukkin td,
#treatment_4 table.ryoukkin th,
#treatment_4 table.ryoukkin td,
#treatment_5 table.ryoukkin th,
#treatment_5 table.ryoukkin td,
#treatment_6 table.ryoukkin th,
#treatment_6 table.ryoukkin td,
#treatment_7 table.ryoukkin th,
#treatment_7 table.ryoukkin td,
#treatment_8 table.ryoukkin th,
#treatment_8 table.ryoukkin td,
#treatment_9 table.ryoukkin th,
#treatment_9 table.ryoukkin td {
    background: none;
    border: none;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    letter-spacing: .1em;
    font-weight: 500;
    color: #e2d7ce;
    border-bottom: 1px dashed rgba(202, 204, 204, 0.5);
    padding: .8em
}

@media all and (max-width: 639px) {

    #treatment_1 table.ryoukkin th,
    #treatment_1 table.ryoukkin td,
    #treatment_2 table.ryoukkin th,
    #treatment_2 table.ryoukkin td,
    #treatment_3 table.ryoukkin th,
    #treatment_3 table.ryoukkin td,
    #treatment_4 table.ryoukkin th,
    #treatment_4 table.ryoukkin td,
    #treatment_5 table.ryoukkin th,
    #treatment_5 table.ryoukkin td,
    #treatment_6 table.ryoukkin th,
    #treatment_6 table.ryoukkin td,
    #treatment_7 table.ryoukkin th,
    #treatment_7 table.ryoukkin td,
    #treatment_8 table.ryoukkin th,
    #treatment_8 table.ryoukkin td,
    #treatment_9 table.ryoukkin th,
    #treatment_9 table.ryoukkin td {
        display: block;
        text-align: center
    }
}

#treatment_1 table.ryoukkin th,
#treatment_2 table.ryoukkin th,
#treatment_3 table.ryoukkin th,
#treatment_4 table.ryoukkin th,
#treatment_5 table.ryoukkin th,
#treatment_6 table.ryoukkin th,
#treatment_7 table.ryoukkin th,
#treatment_8 table.ryoukkin th,
#treatment_9 table.ryoukkin th {
    font-family: "Shippori Mincho", serif;
    font-size: 19px;
    letter-spacing: .1em
}

@media all and (max-width: 639px) {

    #treatment_1 table.ryoukkin th,
    #treatment_2 table.ryoukkin th,
    #treatment_3 table.ryoukkin th,
    #treatment_4 table.ryoukkin th,
    #treatment_5 table.ryoukkin th,
    #treatment_6 table.ryoukkin th,
    #treatment_7 table.ryoukkin th,
    #treatment_8 table.ryoukkin th,
    #treatment_9 table.ryoukkin th {
        font-family: "Shippori Mincho", serif;
        font-size: 15px;
        letter-spacing: .1em;
        background: rgba(0, 0, 0, 0.6)
    }
}

#treatment_1 table.ryoukkin th span,
#treatment_2 table.ryoukkin th span,
#treatment_3 table.ryoukkin th span,
#treatment_4 table.ryoukkin th span,
#treatment_5 table.ryoukkin th span,
#treatment_6 table.ryoukkin th span,
#treatment_7 table.ryoukkin th span,
#treatment_8 table.ryoukkin th span,
#treatment_9 table.ryoukkin th span {
    display: block;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 15px;
    letter-spacing: .1em;
    font-weight: 500
}

@media all and (max-width: 639px) {
    #blog_1 {
        width: 90%;
        margin: auto;
        padding-bottom: 50px
    }
}

#blog_1 .inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media all and (max-width: 639px) {
    #blog_1 .inner {
        display: block
    }
}

#blog_1 .inner .left {
    width: 70%
}

@media all and (max-width: 639px) {
    #blog_1 .inner .left {
        width: 100%
    }
}

#blog_1 .inner .left ul {
    width: 100%;
    margin: 20px auto;
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media all and (max-width: 639px) {
    #blog_1 .inner .left ul {
        width: 100%
    }
}

#blog_1 .inner .left ul li {
    width: 45%;
    position: relative;
    margin-right: 5%;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

#blog_1 .inner .left ul li:nth-child(even) {
    margin-right: 0
}

#blog_1 .inner .left ul li:nth-child(n+3) {
    margin-top: 40px
}

@media all and (max-width: 639px) {
    #blog_1 .inner .left ul li:nth-child(n+3) {
        margin-top: 0
    }
}

@media all and (max-width: 639px) {
    #blog_1 .inner .left ul li {
        width: 100%;
        float: none;
        margin-bottom: 20px
    }
}

#blog_1 .inner .left ul li .thams {
    display: block;
    width: 100%;
    height: 198px;
    line-height: 198px;
    overflow: hidden;
    background: #eee
}

@media all and (max-width: 639px) {
    #blog_1 .inner .left ul li .thams {
        width: 90%;
        margin: auto
    }
}

#blog_1 .inner .left ul li .thams img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    font-family: "object-fit: contain;"
}

#blog_1 .inner .left ul li .data {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    letter-spacing: .1em;
    font-weight: 500;
    display: table;
    margin-top: 15px;
    color: #917c50
}

@media all and (max-width: 639px) {
    #blog_1 .inner .left ul li .data {
        margin-left: 5%
    }
}

#blog_1 .inner .left ul li .data span {
    display: inline-block;
    border: 1px solid #917c50;
    color: #917c50;
    margin-left: 10px;
    border-radius: 100px;
    font-family: "Shippori Mincho", serif;
    font-size: 12px;
    letter-spacing: .1em;
    padding: 0 1em
}

#blog_1 .inner .left ul li .title {
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    letter-spacing: .1em;
    display: block;
    margin-top: 5px;
    color: #e2d7ce;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.4em
}

@media all and (max-width: 639px) {
    #blog_1 .inner .left ul li .title {
        width: 90%;
        margin: auto
    }
}

#blog_1 .inner .right {
    width: 27%;
    margin-left: auto
}

@media all and (max-width: 639px) {
    #blog_1 .inner .right {
        width: 100%;
        margin: 50px 0 0
    }
}

#blog_1 .inner .right .side_titem {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 25px;
    letter-spacing: .1em;
    font-weight: 500;
    color: #917c50
}

#blog_1 .inner .right .side_titem span {
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    letter-spacing: .1em;
    display: block
}

#blog_1 .inner .right ul.post_list li {
    border-bottom: 1px solid rgba(202, 204, 204, 0.5)
}

#blog_1 .inner .right ul.post_list li a {
    display: block;
    position: relative;
    padding: 0.8em;
    -webkit-transition: 0.4s;
    transition: 0.4s
}

#blog_1 .inner .right ul.post_list li a .data {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 13px;
    letter-spacing: .1em;
    font-weight: 500;
    color: #e2d7ce;
    position: relative;
    opacity: .6
}

#blog_1 .inner .right ul.post_list li a .data span {
    display: inline-block;
    border: 1px solid #917c50;
    color: #917c50;
    margin-left: 10px;
    border-radius: 100px;
    font-family: "Shippori Mincho", serif;
    font-size: 12px;
    letter-spacing: .1em;
    padding: 0 1em
}

#blog_1 .inner .right ul.post_list li a .title {
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
    letter-spacing: .1em;
    letter-spacing: 0.2em;
    color: #e2d7ce;
    display: block;
    margin-top: 4px
}

#blog_1 .inner .right ul.post_list li a:hover {
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: 0.4s;
    transition: 0.4s
}

@media all and (max-width: 639px) {
    #infomation_post {
        width: 90%;
        margin: auto;
        padding-bottom: 50px
    }
}

#infomation_post .inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media all and (max-width: 639px) {
    #infomation_post .inner {
        display: block
    }
}

#infomation_post .inner .left {
    width: 70%
}

@media all and (max-width: 639px) {
    #infomation_post .inner .left {
        width: 100%
    }
}

#infomation_post .inner .right {
    width: 27%;
    margin-left: auto
}

@media all and (max-width: 639px) {
    #infomation_post .inner .right {
        width: 100%;
        margin: 50px 0 0
    }
}

#infomation_post .inner .right .side_titem {
    font-family: "Cinzel", serif;
    font-weight: 500;
    font-size: 25px;
    letter-spacing: .1em;
    font-weight: 500;
    color: #917c50
}

#infomation_post .inner .right .side_titem span {
    font-family: "Shippori Mincho", serif;
    font-size: 15px;
    letter-spacing: .1em;
    display: block
}

#infomation_post .inner .right ul.post_list li {
    border-bottom: 1px solid rgba(202, 204, 204, 0.5)
}

#infomation_post .inner .right ul.post_list li a {
    display: block;
    position: relative;
    padding: 0.8em;
    -webkit-transition: 0.4s;
    transition: 0.4s
}

#infomation_post .inner .right ul.post_list li a .data {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 13px;
    letter-spacing: .1em;
    font-weight: 500;
    color: #e2d7ce;
    position: relative;
    opacity: .6
}

#infomation_post .inner .right ul.post_list li a .data span {
    display: inline-block;
    border: 1px solid #917c50;
    color: #917c50;
    margin-left: 10px;
    border-radius: 100px;
    font-family: "Shippori Mincho", serif;
    font-size: 12px;
    letter-spacing: .1em;
    padding: 0 1em
}

#infomation_post .inner .right ul.post_list li a .title {
    font-family: "Shippori Mincho", serif;
    font-size: 14px;
    letter-spacing: .1em;
    letter-spacing: 0.2em;
    color: #e2d7ce;
    display: block;
    margin-top: 4px
}

#infomation_post .inner .right ul.post_list li a:hover {
    background: rgba(0, 0, 0, 0.6);
    -webkit-transition: 0.4s;
    transition: 0.4s
}

#infomation_post .entry .data {
    font-family: "Shippori Mincho", serif;
    font-size: 13px;
    letter-spacing: .1em;
    color: #e2d7ce;
    opacity: .6
}

#infomation_post .entry .title {
    font-family: "Shippori Mincho", serif;
    font-size: 21px;
    letter-spacing: .1em;
    font-weight: 500;
    color: #e2d7ce
}

#infomation_post .entry .main_cont {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 14px;
    letter-spacing: .1em;
    font-weight: 500;
    margin-top: 30px;
    color: #e2d7ce
}

#infomation_post .entry .main_cont img {
    max-width: 100%;
    display: block
}

/*# sourceMappingURL=style.css.map */