@charset "utf-8";
*,*::before,*::after {box-sizing: border-box;}ul,ol {padding: 0;}body,h1,h2,h3,h4,p,ul,ol,figure,blockquote,dl,dd {margin: 0;}html {scroll-behavior: smooth;}body {min-height: 100vh;text-rendering: optimizeLegibility;line-height: 1.5;}ul,ol {list-style: none;}a:not([class]) {text-decoration-skip-ink: auto;}img {max-width: 100%;display: block;width: 100%;}article > * + * {margin-top: 1em;}input,button,textarea,select {font: inherit;}img:not([alt]) {filter: blur(10px);}a {text-decoration: none;color: inherit;transition: opacity 0.3s;}.text-block{display: inline-block;}

.visually-hidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    margin: -1px;
}

/*******************
共通スタイル
********************/
:root{
    --red: #9a0000;
    --dark-gray: #212121;
    --light-gray: #eaeae8;
    --gray: #757575;
    --num-font: 'ヒラギノ明朝 ProN','Hiragino Mincho ProN',"Noto Serif JP", serif;
}

body{
    color: #000;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 2.125;

    font-feature-settings: "palt";/*自動文字つめ*/
    position: relative; 
}

a{
    transition: 0.3s;
}

a:hover,a:focus{
    opacity: 0.7;
    transition: 0.3s;
}

.inner{
    width: 92%;
    max-width: 1000px;
    margin: 0 auto;
}
.inner02{
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.sp-block{
    display: none;
}

.block{
    display: block;
}

.inbl {
	display: inline-block;
}

.section{
    padding: 140px 0;
}

.section__title{
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-size: 50px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
}

.section__title--left{
    text-align-last: left;
}

.section__title-red{
    color: var(--red);
}

.section__title-line{
    display: block;
}

.section__title--arrest{
    line-height: 1.24;
}

.section__content{
    margin-top: 80px;
}

@media screen and (max-width: 1194px) {
    .section{
        padding-top: max(80px, 12.5vw);
        padding-bottom: max(80px, 12.5vw);
    }

    .section__content {
        margin-top: max(40px, 6.7vw) !important;
    }
}

@media screen and (max-width: 1023px) {
    .section__title {
        font-size: 32px;
        font-size: max(32px, 5.0vw);
    }
}

@media screen and (max-width: 767px){
    .sp-inner{
        max-width: 600px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /*.inner{
        padding-left: 5vw;
        padding-right: 5vw;
    }*/
}

/*******************
font
********************/
.mincho {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
}

.mincho-italic {
    font-family: "Noto Serif JP", serif;
    font-style: italic;
}

/* .noto-sans {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
} */

/*******************
header
********************/

/*******************
footer
********************/
.wide-inner{
    max-width: 1150px;
}

.breadcrumb-items {
    display: flex;
    /* gap: 5rem; */
    font-size: 0.78125rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.05em;
    padding: 1.75em 0;
}

.breadcrumb-items > *+*{
    padding-left: 2.8em;
}

.breadcrumb__item{
    position: relative;
}

.breadcrumb__item+*:before {
    content: ">";
    position: absolute;
    left: 1em;
}

.footer{
    background-color: var(--light-gray);
    padding: 105px 0 215px;
    position: relative;
}

.footer__logo,.footer__address{
    width: fit-content;
    margin-inline: auto;
}

.footer__logo img, .footer__address img{
    width: auto;
}

.footer__address{
    margin-top: 50px;
}

.footer__nav{
    margin-top: 40px;
}

.footer__nav-items{
    display: flex;
    justify-content: center;
}

.footer__nav-item{
    border-left: 1px solid #7e7e7e;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.footer__nav-item:last-of-type{
    border-right: 1px solid #7e7e7e;
}

.footer__nav-item a{
    padding: 0 0.8em;
}

.footer__nav-item:last-of-type a{
    padding: 0 1em 0 0.8em;
}

.footer__nav-item:last-of-type a::after{
    content: "";
    display: inline-block;
    background-image: url(../images/chikan_lp/icon-link.svg);
    width: 10px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    top: -2px;
    left: 2px;
}

.footer__copy{
    background-color: var(--red);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-align: center;
    padding: 0.7em 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    padding-bottom: 150px;
}

@media screen and (max-width: 1499px){
    .footer__logo{
        width: 70%;
    }

    .footer__copy{
        font-size: 16px;
    }
}

@media screen and (max-width: 1194px){
    .footer {
        padding-top: max(60px,10vw);
        /* padding: 105px 0 215px; */
        padding-bottom: max(150px, 258vw);
    }
}

@media screen and (max-width: 1050px){
    .footer__copy{
        font-size: 12px;
    }
}

@media screen and (max-width: 767px){
    .footer {
        padding-bottom: 300px;
    }
    .footer__copy{
        padding-bottom: 240px;
    }
}

@media screen and (max-width: 549px){
    .footer__copy {
        font-size: 11px;
    }

    .footer__nav-items {
        flex-direction: column;
        align-items: center;
    }

    .footer__nav-items > *+*{
        margin-top: 0.5em;
    }

    .footer__nav-item:first-of-type {
        border-right: 1px solid #7e7e7e;
    }

    .footer__nav-item a {
        width: 15em;
        display: inline-block;
        text-align: center;
    }
}
@media screen and (max-width: 500px){
    .footer__copy{
        padding-bottom: 150px;
    }

}
/*******************
h1
********************/
.site-title{
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-align: center;
    width: 90%;
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

@media screen and (max-width: 1499px){
    .site-title{
        font-size: 18px;
    }
}

@media screen and (max-width: 1194px){
    .site-title{
        font-size: 16px;
        bottom: 12.55vw;
    }
}

@media screen and (max-width: 1050px){
    .site-title{
        font-size: 14px;
    }
}

@media screen and (max-width: 767px){
    .site-title__line{
        display: block;
    }

    .site-title__border{
        display: none;
    }

    .site-title {
        bottom: 90px;
    }
}

/*******************
FV
********************/
.fv{
    background-image: url("../images/chikan_lp/mv_img.png"),url("../images/chikan_lp/mv_bg.png");
    background-repeat: no-repeat;
    background-size: auto 100%, cover;
    /*height: 750px;*/
    height: 47vw;
    /*background-position: 84%, center;*/
    background-position: 46vw, center;
    position: relative;
    display: flex;
    align-items: center;
}
.webp .fv{
    background-image: url("../images/chikan_lp/mv_img.png.webp"),url("../images/chikan_lp/mv_bg.png.webp");
}
.fv .catch_area{
    /*width: 784px;*/
    width: 40.7vw;
    margin-left: 10%;
}
.fv .catch_area .catch{
    margin-bottom: 0.3em;
    /*font-size: 68px;*/
    font-size: 3.6vw;
    color: #fff;
    line-height: 1.4;
    font-style: italic;
    letter-spacing: 0.1vw;
}
.fv .catch_area .catch .txt_bg{
    margin-right: 0.1em;
    /*padding: 4px 20px 12px 6px;*/
    padding: 0.208vw 1.042vw 0.625vw 0.313vw;
    /*font-size: 86px;*/
    font-size: 4.479vw;
    background: #990000;
    line-height: 1;
    display: inline-block;
}
.fv .catch_area .catch .txt_large{
    /*font-size: 86px;*/
    font-size: 4.479vw;
}
.fv .catch_area .catch .block{
    display: block;
}
.fv .catch_area .subcatch{
    padding: 4px 4px 6px;;
    background: #fff;
    /*font-size: 32px;*/
    font-size: 1.667vw;
    color: #990000;
    text-align: center;
    line-height: 1.4;
    font-style: italic;
}

@media screen and (max-width: 1023px){
    .fv{
        height: 54vw;
    }
    .fv .catch_area{
        width: 46vw;
        margin-left: 8%;
    }
    .fv .catch_area .catch{
        font-size: 4vw;
    }
    .fv .catch_area .catch .txt_bg{
        font-size: 4.8vw;
    }
    .fv .catch_area .catch .txt_large{
        font-size: 4.8vw;
    }
    .fv .catch_area .subcatch{
           font-size: 2vw; 
    }
}


@media screen and (max-width: 767px){
    .fv{
        /*margin-top: 84px;*/
        background-image: url("../images/chikan_lp/mv_sp_img.png"),url("../images/chikan_lp/mv_bg.png");
        background-repeat: no-repeat;
        background-size: contain,cover;
        height: 150vw;
        background-position: bottom,center;
        display: block;
    }
    .webp .fv{
        background-image: url("../images/chikan_lp/mv_img.png.webp"),url("../images/chikan_lp/mv_bg.png.webp");
    }
    .fv .catch_area{
        width: 90vw;
        margin: 0 auto 0;
        padding-top: 13vw;
    }
    .fv .catch_area .catch{
        font-size: 8vw;
        text-align: center;
    }
    .fv .catch_area .catch .txt_bg{
        font-size: 12vw;
        padding: 0.5vw 3vw 1.2vw 0.8vw;
    }
    .fv .catch_area .catch .txt_large{
        font-size: 12vw;
    }
    .fv .catch_area .catch .sp_block{
        display: block;
    }
    .fv .catch_area .subcatch{
           font-size: 5vw; 
    }
    .fv .catch_area .subcatch .sp_block{
        display: block;
    }
}

@media screen and (max-width: 499px){
    .fv{
        /*margin-top: 17vw;*/
    }
}

/*******************
data
********************/
.data{
    background-image: url(../images/chikan_lp/keijibengo-data.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px 0 ;
}

.webp .data{
    background-image: url(../images/chikan_lp/keijibengo-data.jpg.webp);
}

.data__inner{
    position: relative;
}

.data__items{
    display: flex;
    gap: 25px;

}

.data__item{
    flex-basis: calc((100% - 25px) / 2);
    background-image: url(../images/chikan_lp/keijibengo-data-deco-left.png),url(../images/chikan_lp/keijibengo-data-deco-right.png);
    background-repeat: no-repeat;
    background-position: left,right;
    background-size: contain;
    padding: 0 52px;
    text-align: center;
}

.webp .data__item{
    background-image: url(../images/chikan_lp/keijibengo-data-deco-left.png.webp),url(../images/chikan_lp/keijibengo-data-deco-right.png.webp);
}

.data__item-num{
    font-size: 38px;
    font-style: italic;
    font-weight: bold;
    line-height: 1;
    margin-top: -0.1em;
}

.data__item-num span:first-of-type{
    vertical-align: middle;
    position: relative;
    top: 0.1em;
}

.data__item-num span:nth-of-type(2){
    color: var(--red);
    font-size: 90px;
    vertical-align: middle;
    font-family: var(--num-font); 
}
.data__item-num span:nth-of-type(2) > span.info_lawyer_comm {
  color: var(--red);
  font-size: clamp(70px, 4.6838vw + 24.0749px, 80px);
  vertical-align: middle;
  font-family: var(--num-font);
  margin-left: -20px;
  margin-right: 20px;
  top: 0em;
}
.data__item-num span:last-of-type{
    font-size: 26px;
    vertical-align: bottom;
    position: relative;
    left: 0.3em;
    top: -0.2em;
}

.data__item-note{
    font-size: 14px;
    line-height: 1.285;
    margin-top: 0.5em;
    padding-top: 0.5em;
    background-image: url(../images/chikan_lp/keijibengo-data-line.png);
    background-position: top;
    background-repeat: no-repeat;
}

.webp .data__item-note{
    background-image: url(../images/chikan_lp/keijibengo-data-line.png.webp);
}

.data__coution{
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    position: absolute;
    right: -7.5em;
    bottom: 0;
}

@media screen and (max-width: 1350px){
    .data {
        padding: 30px 0 34px;
    }

    .data__coution {
        right: -7.5em;
        bottom: -2em;
        right: 1em;
    }
}

@media screen and (max-width: 1194px){
    .data__items {
        gap: 2.09vw;
    }

    .data__item-num {
        font-size: 3.18vw;
    }

    .data__item-num span:nth-of-type(2) {
        font-size: 7.53vw;
    }

    .data__item-num span:last-of-type {
        font-size: 2.17vw;
    }

    .data__item-note {
        font-size: max(12px, 1.17vw);
    }
}

@media screen and (max-width: 767px){
    .data {
        background-image: url(../images/chikan_lp/keijibengo-data_sp.jpg);
    }

    .webp .data {
        background-image: url(../images/chikan_lp/keijibengo-data_sp.jpg.webp);
    }

    .data__items {
        gap: 30px;
        flex-direction: column;
        width: 90%;
        max-width: 450px;
        margin-inline: auto;
    }

    .data__item-num {
        font-size: 30px;
    }

    .data__item-num span:nth-of-type(2) {
        font-size: 80px;
    }

    .data__item-num span:last-of-type {
        font-size: 26px;
    }

    .data__item-note {
        font-size: 12px;
    }

    .data__coution{
        font-size: 10px;
    }
}

@media screen and (max-width: 549px){
    .data__item-num {
        font-size: 5.45vw;
    }

    .data__item-num span:nth-of-type(2) {
        font-size: 14.5vw;
    }

    .data__item-num span:last-of-type {
        font-size: 4.7vw;
    }

    .data__item-note {
        font-size: max(10px, 2.3vw);
    }
}

@media screen and (max-width: 375px){
    .data__items{
        width: 94%;
    }
}

/*******************
CV
********************/
.cv{
    background: url("../images/chikan_lp/cv_bg_left.jpg"),url("../images/chikan_lp/cv_bg_right.jpg"),#262626;
    background-position: left, right;
    background-size: auto 100%;
    background-repeat: no-repeat;
    padding: 50px 0;
}
.webp .cv{
    background: url("../images/chikan_lp/cv_bg_left.jpg.webp"),url("../images/chikan_lp/cv_bg_right.jpg.webp"),#262626;
}
.cv .inner{
    width: 94%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 50px;
    background: #fff;
}
.cv .inner .title{
    margin-bottom: 20px;
    font-size: 28px;
    text-align: center;
    color: #9a0000;   
}
.cv .inner .title .borderline{
    padding: 0 0.2em 0.2em;
    border-bottom: 1px solid;
}
.cv .cv_contact{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5em;
}
.cv .cv_contact .tel{
    margin-right: 0.5em;
    font-size: 78px;
    font-family: 'ヒラギノ明朝 ProN W3','ヒラギノ明朝 ProN','游明朝', 'YuMincho', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN','Noto Serif JP', serif;
    line-height: 0;
    pointer-events: none;
    letter-spacing: -1px;
}
.cv .cv_contact .tel:before{
    content: "";
    background: url("../images/chikan_lp/tel.svg") no-repeat left / contain;
    display: inline-block;
    width: 54px;
    height: 54px;
}
.cv .cv_contact .mail{
    padding: 15px 30px;
    background: #262626;
    font-size: 18px;
    color: #fff;
    text-align: center;
    border-radius: 4px;
}
.cv .cv_contact .mail:before{
    content: "";
    background: url("../images/chikan_lp/mail.svg") no-repeat left / contain;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    margin-right: 0.2em;
}
.cv .cv__content-caution{
    text-align: center;
    font-size: 14px;
    line-height: 1.4;
}
@media screen and (max-width: 1200px){
   .cv{
        background: url("../images/chikan_lp/cv_bg_left.jpg"),#262626;
        background-position: left;
        background-size: auto 100%;
        background-repeat: no-repeat;
        padding: 50px 0;
    }
    .webp .cv{
        background: url("../images/chikan_lp/cv_bg_left.jpg.webp"),url("../images/chikan_lp/cv_bg_right.jpg.webp"),#262626;
    }
}
@media screen and (max-width: 1100px) {
    
    .cv .inner{
        padding: 3%;
    }
    .cv .cv_contact .tel{
        font-size: 7vw;
    }
    .cv .cv_contact .tel:before{
        width: 5vw;
        height: 5vw;
    }
    .cv .cv_contact .mail{
        padding: 15px 20px;
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .cv .inner .title{
        margin-bottom: 1em;
        line-height: 1.8;
    }
    .cv .cv_contact{
        display: block;
    }
    .cv .cv_contact .tel{
        margin: 0 0 0.2em;
        display: block;
        text-align: center;
        font-size: 10vw;
        pointer-events: auto;
    }
    .cv .cv_contact .tel:before{
        width: 7vw;
        height: 7vw;
    }
    .cv .cv_contact .mail{
        max-width: 300px;
        margin: 0 auto 1em;
        display: block;
    }
}
@media screen and (max-width: 499px){
    .cv .inner{
        padding: 4% 5%;
    }
    .cv .inner .title{
        font-size: 5.4vw;
    }
    .cv .cv_contact .tel{
        margin-bottom: 0.3em;
        font-size: 11.4vw;
    }
    .cv .cv_contact .tel:before{
        width: 8vw;
        height: 8vw;
    }
    .cv .cv_contact .mail{
        max-width:inherit;
    }
    .cv .cv__content-caution{
        font-size: 12px;
    }
}

/*******************
nayami
********************/
.nayami{
    background: url("../images/chikan_lp/nayami_bg.jpg") no-repeat center bottom / auto 494px;
}
.nayami ul.list{
    display: flex;
    justify-content: space-between;
}
.nayami ul.list li{
    width: 32%;
}
.nayami ul.list li .img{
    width: 100%;
    text-align: center;
}
.nayami ul.list li .img img{
    width: auto;
}
.nayami ul.list li .txtarea{
    width: 92%;
    min-height: 140px;
    margin: -6% auto 0;
    padding: 20px;
    background: #fff;
    position: relative;
    box-shadow: 1px 1px 4px #333;
    font-size: 24px;
    font-style: italic;
    line-height: 1.4;
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nayami ul.list li .point{
    margin-top: 30px;
    border-radius: 10px;
    border: 3px solid #9a0000;
    background: #fdf2f2;
    padding: 30px;
    color: #9a0000;
    font-size: 24px;
    text-align: center;
    line-height: 1.4;
    font-weight: bold;
    position: relative;
}
.nayami ul.list li .point:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border: 12px solid transparent;
  border-bottom: 45px solid #9a0000;
    transform: translate(-50%,-100%);
}
.nayami .picktxt{
    margin-top: 80px;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    line-height: 1.8;
}
.nayami .picktxt.txt_white{
    color: #fff;
}
.nayami dl.zenka dt{
    padding: 20px;
    background: #9a0000;
    color: #fff;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.4;
}
.nayami dl.zenka dt .title{
    margin-top: 6px;
    display: inline-block;
    padding: 4px 30px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    color: #9a0000;
    font-size: 38px;
}
.nayami dl.zenka dd{
    padding: 40px 60px;
    background: url("../images/chikan_lp//nayami_img04.jpg") no-repeat left / auto 100% ,#f4f4f4;
}
.nayami dl.zenka dd ul{
    width: 72%;
    margin-left: auto;
}
.nayami dl.zenka dd ul li{
    padding: 15px 15px 15px 30px;
    font-size: 26px;
    font-weight: bold;
    position: relative;
    line-height: 1.4;
}
.nayami dl.zenka dd ul li:before{
    content: "";
    background: url("../images/chikan_lp/check01.svg") no-repeat center / contain;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 24px;
    left: 0;
}
.nayami dl.zenka dd ul li:not(:last-child){
    border-bottom: 1px solid #9e9e9e;
}

@media screen and (max-width: 1300px){
    .nayami ul.list li .txtarea{
        padding: 3%;
        font-size: 2vw;
    }
    .nayami ul.list li .point{
        padding: 8% 3%;
        font-size: 2vw;
    }
    .nayami .picktxt{
        font-size: 28px;
    }
}

@media screen and (max-width: 1023px){
    .nayami dl.zenka dt{
        font-size: 3vw;
    }
    .nayami dl.zenka dt .title{
        font-size: 4vw;
    }
    .nayami dl.zenka dd{
        padding: 50px;
        background-position: -12vw;
    }
    .nayami dl.zenka dd ul{
        width: 70%;
    }
    .nayami dl.zenka dd ul li{
        font-size: 3.0vw;
    }
    .nayami ul.list li .txtarea{
        min-height: 120px;
        font-size: 2.2vw;
    }
    
}

@media screen and (max-width: 767px){
    .nayami ul.list{
        flex-wrap: wrap;
        justify-content: center;
    }
    .nayami ul.list li{
        width: 47%;
    }
    .nayami ul.list li:first-child{
        margin-right: 4%;
    }
    .nayami ul.list li:last-child{
        margin-top: 4%;
    }
    .nayami ul.list li .txtarea{
        padding: 3%;
        font-size: 3vw;
    }
    .nayami ul.list li .point{
        padding: 8% 3%;
        font-size: 2.8vw;
    }
    .nayami dl.zenka dd{
        padding: 6% 10%;
        background: url("../images/chikan_lp/nayami_img04_sp.jpg") no-repeat left / auto 100% ,#f0f0f0;
    }
    .nayami dl.zenka dd ul{
        width: 100%;
    }
    .nayami dl.zenka dd ul li{
        font-size: 3.8vw;
    }
    .nayami dl.zenka dd ul li:before{
        width: 3vw;
        height: 3vw;
        top: 4vw;
    }
    .nayami dl.zenka dt{
        font-size: 3.4vw;
    }
    .nayami dl.zenka dt .title{
        font-size: 4.4vw;
    }
    .nayami .picktxt{
        margin-top: 60px;
        font-size: 4vw;
    }
}

@media screen and (max-width: 499px){
    .nayami ul.list{
        display: block;
    }
    .nayami ul.list li{
        width: 100%;
    }
    .nayami ul.list li .img img{
        width: 100%;
    }
    .nayami ul.list li:first-child{
        margin-right: 0%;
    }
    .nayami ul.list li:not(:last-child){
        margin: 0 0 40px;
    }
    .nayami ul.list li .txtarea{
        padding: 4%;
        font-size: 5.4vw;
    }
    .nayami ul.list li .point{
        padding: 8% 3%;
        font-size: 5vw;
    }
    .nayami .picktxt{
        font-size: 5.4vw;
    }
    .nayami dl.zenka dd ul li{
        padding: 2vw 2vw 2vw 7vw;
        font-size: 4.6vw;
        line-height: 1.4;
    }
    .nayami dl.zenka dd ul li:before{
        width: 4vw;
        height: 4vw;
        top: 3.3vw;
    }
    .nayami dl.zenka dt{
        font-size: 4vw;
    }
    .nayami dl.zenka dt .title{
        font-size: 5.4vw;
    }
}

/**************************
事件セクション（incident）
***************************/
.incident {
	padding: 140px 0 0;
}
.incident__inner {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
}
.incident .serif, .incident h2, .incident h3, .incident .list_box__title {
    font-family: "Noto Serif JP", serif;
    line-height: 1.4em;
    font-weight: bold;
}
.incident__title {
    color: #990000;
    font-size: 60px;
    font-feature-settings: "palt";
    margin-bottom: 0;
	
    font-style: italic;
    text-align: center;
    letter-spacing: 2px;
}
.incident h3 {
    font-size: 42px;
    font-style: italic;
    letter-spacing: 0.05em;
    text-align: left;
    margin-bottom: 0;
}
.incident__info {
    display: flex;
    margin-top: 80px;
}
.incident__item {
	padding: 80px 0 0;
}
.incident__item:nth-of-type(even) {
    border-image: linear-gradient(#ebecef 0 0) fill 0 // 0 100vi;
    padding: 80px 0 140px;
}
.incident__info-body {
    flex: 1;
    padding-right: 55px;
}
.incident__subtitle{
    font-family: "NotoSerifCJKjp", serif;
    font-style: italic;
    width: fit-content;
}
.incident__text {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: calc(40/18);
    text-align: justify;
}
.incident__text > *+* {
    margin-top: 1em;
}
.incident__text span.red {
    font-weight: bold;
    color: #990000;
}
.incident__info {
    display: flex;
    margin-top: 115px;
}
.incident__info-body{
    flex: 1;
    padding-right: 55px;
}
.incident__info-text {
    margin-top: 25px;
    font-feature-settings: "palt";
}
.incident__info-img {
    flex-basis: 32.14%;
}
.incident__text p.gray_box {
	background-color:#ebecef;
	padding: 20px 30px;
	font-size: 20px;
}
.incident__text p.white_box {
	background-color:#fff;
	padding:10px 20px;
	font-size: 20px;
}
.incident_table {
	width: 100%;
	margin-top: 60px;
	margin-bottom: 60px;
	border-collapse: collapse;
}
.incident_table caption {
	background-color: #9a0000;
	padding: 1.2em;
	font-size: 26px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	line-height: 1.4;
}
.incident_table th {
	background-color: #2a221c;
	padding: 1.2em;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	text-align: center;
	line-height: 1.4;
	border: 2px solid #fff;
	border-left: none;
}
.incident_table th span.big {
	font-size: 1.2em;
	color: #fff;
}
.incident_table td {
	background-color: #eaeae8;
	padding: 20px;
	border: 2px solid #fff;
	border-right: none;
}
.incident_table ul {
	margin-left: 2em;
}
.incident_table ul li {
	list-style-type: disc;
}
.incident .list_box {
	display: flex;
	flex-direction: column;
	margin-top: 60px;
	margin-bottom: 60px;
}
.incident .list_box__title {
	width: 100%;
    background-color: #9a0000;
    padding: 1.2em;
    font-size: 26px;
    color: #fff;
    text-align: center;
}
.incident .list_box ul {
	padding: 40px 60px;
	background: url("../images/chikan_lp/incident_img03.jpg") no-repeat right / 50% ,#f4f4f4;
}
.incident .list_box ul li {
	list-style-type: disc;
	text-align: left;
	line-height: 1.8;
	margin-left: 1.4em;
}
.incident .list_box ul li:not(:first-child) {
	margin-top: 0.8em;
}

@media screen and (max-width: 1194px) {
    .incident {
    	padding-top: max(80px, 12.5vw);
    }
	.incident_table {
		margin-top: max(40px, 4vw);
		margin-bottom: max(40px, 4vw);
	}
    .incident__title {
        font-size: 50px;
    }
    .incident__item {
        padding: 80px 0 100px;
		padding-top: max(40px, 6.7vw) !important;
		padding-bottom: 0;
    }
	.incident__info {
		padding-top: max(80px, 12.5vw) !important;
	}
	.incident__item:nth-of-type(even) {
		padding-top: max(80px, 12.5vw) !important;
		padding-bottom: max(80px, 12.5vw) !important;
	}
	.incident .list_box {
		margin-top: max(40px, 6.7vw);
		margin-bottom: max(40px, 6.7vw);
	}
	.incident__info {
		margin-top: 0;
	}
    .incident h3 {
        font-size: 36px;
    }
}

@media screen and (max-width: 1024px) {
	.incident__title {
		font-size: max(32px, 5.0vw);
	}
    .incident h3 {
        font-size: 34px;
    }
    .incident__text {
        font-size: 16px;
    }
    .incident__info-body {
        padding-right: 50px;
    }
    .incident__info {
        align-items: center;
    }
    .incident__info-img img{
        aspect-ratio: 3 / 4;
        height: 100%;
        object-fit: cover;
    }
}

@media screen and (max-width: 767px) {
    .incident h3 {
        font-size: clamp(22px, 3.5vw, 26px);
    }
    .incident__text {
        padding-left: 0;
    }
    .incident__info {
        flex-direction: column;
    }
    .incident h3 {
        text-align: center;
        margin-inline: auto;
    }
    .incident__info-body {
        padding-right: 0;
    }
    .incident__info-img {
        width: 80%;
        min-width: 200px;
        margin-top: 40px;
    }
    .incident__info-img img {
        aspect-ratio: auto;
        height: auto;
    }
	.incident_table caption {
		font-size: clamp(18px, 4vw, 24px);
	}
	.incident_table th {
		font-size: 16px;
	}
	.incident table.sp_block th {
		width: 100%;
		display: block;
	}
	.incident table.sp_block td {
		width: 100%;
		display: block;
	}
	.incident__text p.gray_box, .incident__text p.white_box {
		font-size: 18px;
	}
	.incident .list_box__title {
		font-size: clamp(18px, 4vw, 24px);
	}
	.incident .list_box ul {
		padding: 8% 10%;
		background: url("../images/chikan_lp/incident_img03_sp.jpg") no-repeat right / auto 100% ,#f4f4f4;
	}
}
@media screen and (max-width: 499px) {
	.incident__info {
		padding-top: max(60px, 6.7vw) !important;
	}
}

/*------------------------------
   接見・面会が可能
------------------------------*/
.lp-contents {
	padding-bottom: 0;
}
.lp-contents .serif, .lp-contents h2, .lp-contents h3 {
    font-family: "Noto Serif JP", serif;
    line-height: 1.4em;
    font-weight: 500;
}
.meeting_box .img-text_box {
	display: flex;
	flex-direction: row-reverse;
	align-content: center;
	align-items: center;
	justify-content: space-around;
	margin-bottom: 140px;
}
.lp-contents .meeting_box .img-text_box h2 {
	text-align: left;
	font-size: 36px;
	font-family: "Noto Serif JP", serif;
	line-height: 1.4em;
	font-weight: 500;
	margin-bottom: 40px;
}
.lp-contents .meeting_box .img-text_box h2 .red {
	font-size: 46px;
}
	.meeting_box .img-text_box .image_box ,
	.meeting_box .img-text_box .text_box {
		width: 50%;
	}
.meeting_box .img-text_box .text_box  {
	padding-right: 60px;
	box-sizing: border-box;
}
.meeting_box .img-text_box .image_box {
	position: relative;
}
.meeting_box .img-text_box .image_box .meeting_img {
	position: relative;
	width: 80%;
	max-width: 450px;
	z-index: 1;
}
.meeting_box .img-text_box .image_box:after {
	position: absolute;
	content: "";
	width: 200px;
	height: 200px;
	background: #1c1c1c;
	right: 0;
	bottom: -60px;
	z-index: -1;
}
.comparison_box {
	overflow: hidden;
	background: linear-gradient(90deg, #f9f2f2 50%, #eaeae8 50%);
}
.comparison_head {
	display: flex;
}
.comparison_head p {
	width: 100%;
	padding: 20px;
	text-align: center;
	font-size: 26px;
	font-weight: 500;
	background: #990000;
	color: #fff;
	}
.comparison_head p:nth-child(2) {
	background: #2a221c;
	}
.comparison_wrap {
	position: relative;
	background: #fff;
	margin: 60px;
	text-align: center;
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}
.comparison_wrap .comparison_title {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 26px;
	font-weight: bold;
}
.comparison_wrap .comparison_left , .comparison_wrap .comparison_right {
	width: 370px;
	padding: 30px;
}
.lp-contents .comparison_wrap .red {
	font-weight: bold;
	font-size: 18px;
		}
.lp-contents .red {
		color: #990000;
		font-weight: 500;
	}
@media screen and (max-width: 1150px) {
	.meeting_box .img-text_box .text_box {
		padding-right: 40px;
		box-sizing: border-box;
		width: 54%;
	}
	.meeting_box .img-text_box .image_box {
		width: 46%;
	}
}
@media screen and (max-width: 1024px) {
	.comparison_wrap .comparison_left, .comparison_wrap .comparison_right {
		width: 300px;
	}
}
@media screen and (max-width: 960px) {
	.lp-contents .meeting_box .img-text_box h2 {
		font-size: 28px;
		margin-bottom: 30px;
	}
	.lp-contents .meeting_box .img-text_box h2 .red {
		font-size: 38px;
	}
	.meeting_box .img-text_box .image_box {
		width: 42%;
	}
	.meeting_box .img-text_box .text_box {
		width: 58%;
	}
	.meeting_box .img-text_box .image_box:after {
		width: 150px;
		height: 150px;
	}
	.comparison_wrap {
		margin: 40px;
	}
	.comparison_wrap .comparison_left, .comparison_wrap .comparison_right {
		width: 250px;
	}
	.comparison_wrap .comparison_title {
		font-size: 20px;
	}
}
@media screen and (max-width: 768px) {
	.lp-contents .meeting_box .img-text_box h2 {
		font-size: 4vw;
		margin-bottom: 30px;
	}
	.lp-contents .meeting_box .img-text_box h2 .red {
		font-size: 5.5vw;
	}
	.meeting_box .img-text_box .image_box {
		width: 35%;
	}
	.meeting_box .img-text_box .text_box {
		width: 65%;
	}
	.meeting_box .img-text_box .image_box:after {
		width: 120px;
		height: 120px;
		bottom: -40px;
	}
	.comparison_head p {
	    font-size: 3vw;
	}
}
@media screen and (max-width: 700px) {
	.comparison_wrap {
        margin: 20px;
    }
	.comparison_wrap .comparison_left, .comparison_wrap .comparison_right {
		width: 200px;
		padding: 20px;
	}
	.comparison_wrap .comparison_title {
    	font-size: 3vw;
    }
}
@media screen and (max-width: 650px) {
    .lp-contents .meeting_box .img-text_box h2 {
        font-size: 6vw;
        text-align: center;
    }
	.lp-contents .meeting_box .img-text_box h2 .red {
        font-size: 8vw;
    }
	.meeting_box .img-text_box {
		display: block;
		margin-bottom: 60px;
	}
	.meeting_box .img-text_box .text_box {
		width: 100%;
		padding: 0;
	}
	.meeting_box .img-text_box .image_box:after {
		width: 120px;
		height: 120px;
		bottom: -40px;
	}
	.meeting_box .img-text_box .image_box {
        width: 100%;
        margin-bottom: 60px;
    }
	.meeting_box .img-text_box .image_box .meeting_img {
		max-width: 350px;
		margin: auto;
	}
	.meeting_box .img-text_box .image_box:after {
        right: auto;
        left: 70%;
    }
}
@media screen and (max-width: 600px) {
    .comparison_head p {
        font-size: 4vw;
    }
	.comparison_wrap {
        padding-top: 35px;
    }
	.comparison_wrap .comparison_title {
		top: 10px;
		font-size: 4vw;
	}
	.comparison_wrap {
		justify-content: space-around;
	}
	.comparison_wrap .comparison_left,
	.comparison_wrap .comparison_right {
		width: 50%;
		max-height: 200px;
		padding: 20px;
		text-align: center;
	}
	.comparison_wrap .comparison_left .text_box,
	.comparison_wrap .comparison_right .text_box{
		writing-mode: vertical-rl;
		text-orientation: upright;
		text-align: justify;
		margin: auto;
	}
}
/*@media screen and (max-width: 500px) {
	.comparison_wrap .comparison_left {
        width: 200px;
        align-content: flex-end;
    }
	.comparison_wrap .comparison_right {
        width: 200px;
        align-content: flex-start;
    }
}*/
@media screen and (max-width: 500px) {
    .lp-contents .meeting_box .img-text_box h2 {
        font-size: 7vw;
    }
	.lp-contents .meeting_box .img-text_box h2 .red {
        font-size: 8.5vw;
    }
}
@media screen and (max-width: 400px) {
	.meeting_box .img-text_box .image_box:after {
        right: 0;
        left: auto;
    }
}

/*******************
arrest
********************/
.arrest{
    background-color: var(--gray);
    background-image: url(../images/chikan_lp/keijibengo-arrest-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 7.8125vw), 50% 100%, 0 calc(100% - 7.8125vw));
}

.webp .arrest{
    background-image: url(../images/chikan_lp/keijibengo-arrest-bg.jpg.webp);
}

.arrest__content{
    background-color: #fff;
    /* padding: 80px 100px 70px; */
    padding: 80px 0 70px;
}

.arrest__content-inner{
    max-width: 850px;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    margin-inline: auto;
}

.arrest__content-body{
    display: flex;
    flex-direction: column-reverse;
    margin-top: 50px;
}

.arrest__content-text{
    font-size: 18px;
    font-weight: 500;
    line-height: 2.08;
    margin-top: 30px;
    text-align: justify;
}

.arrest__content-text span{
    color: var(--red);
    font-weight: bold;
}

@media screen and (max-width: 1023px) {
    .arrest__content-text {
        font-size: max(16px, 1.75vw);
        font-weight: 500;
        line-height: 2.08;
        margin-top: 30px;
        text-align: justify;
    }

    .arrest__content {
        padding: 7.8vw 0 6.8vw;
    }

    .arrest__content-body {
        margin-top: max(20px, 5vw);
    }

    .arrest__content-img{
        height: max(120px, 19.5vw);
    }

    .arrest__content-img img{
        height: 100%;
        object-fit: cover;
    }
}

/*******************
arrest-happens
********************/
.arrest-happens__items > *+*{
    margin-top: 35px;
}

.arrest-happens__item{
    color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    padding: 58px 45px;
}

.arrest-happens__item:nth-last-of-type(1){
    background-image: url(../images/chikan_lp/keijibengo-happens-bg01_pc.jpg);
}

.webp .arrest-happens__item:nth-last-of-type(1){
    background-image: url(../images/chikan_lp/keijibengo-happens-bg01_pc.jpg.webp);
}

.arrest-happens__item:nth-last-of-type(2){
    background-image: url(../images/chikan_lp/keijibengo-happens-bg02_pc.jpg);
}

.webp .arrest-happens__item:nth-last-of-type(2){
    background-image: url(../images/chikan_lp/keijibengo-happens-bg02_pc.jpg.webp);
}

.arrest-happens__item:nth-last-of-type(3){
    background-image: url(../images/chikan_lp/keijibengo-happens-bg03_pc.jpg);
}

.webp .arrest-happens__item:nth-last-of-type(3){
    background-image: url(../images/chikan_lp/keijibengo-happens-bg03_pc.jpg.webp);
}

.arrest-happens__item-dlist{
    display: flex;
    align-items: center;
}

.arrest-happens__item-dlist dt{
    flex-basis: 38%;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.5;
}

.arrest-happens__item-dlist dt span{
    display: block;
}

.arrest-happens__item-dlist dd{
    flex-basis: 62%;
    font-weight: 500;
    padding-left: 2.1em;
    position: relative;
    letter-spacing: 0.05em;
    text-align: justify;
}

.arrest-happens__item-dlist dd::before{
    content: "";
    display: inline-block;
    background-color: #949494;
    height: 85%;
    width: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 1049px) {
    .arrest-happens__item {
        padding: 5.52vw 4.28vw;
    }

    .arrest-happens__item-dlist dt {
        font-size: max(21px, 2.66vw);
    }
}

@media screen and (max-width: 767px) {
    .arrest-happens__item-dlist {
        display: block;
    }

    .arrest-happens__item-dlist dd {
        font-weight: 400;
        padding-left: 0;
        margin-top: 1em;
        padding-top: 1em;
    }

    .arrest-happens__item-dlist dt {
        font-size: max(20px, 3.4vw);
    }

    .arrest-happens__item-dlist dd::before {
        height: 2px;
        width: 100%;
        left: 0;
        top: 0;
        transform: none;
    }

    .arrest-happens__item-dlist dt span {
        display: inline-block;
    }
}


/*******************
reaspn
********************/
.reason__items > *+*{
    margin-top: 80px;
}

.reason__item{
    display: flex;
    flex-direction: row-reverse;
}

.reason__item-img{
    flex-basis: 34%;
}

.reason__item-body{
    flex-basis: 66%;
    padding-left: 60px;
}

.reason__item-heading{
    display: flex;
    align-items: center;
    gap: 20px;
}

.reason__item-heading-title{
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5625;
    letter-spacing: 0.05em;
}

.reason__item-heading-title span:not(.section__title-line){
    background-color: var(--red);
    color: #fff;
    padding: 0 0.1em 0.1em;
}

.reason__item-body-text{
    font-size: 18px;
    font-weight: 500;
    line-height: 2.083;
    margin-top: 30px;
}

@media screen and (max-width: 1049px) {
    .reason__item-body {
        padding-left: 5.714vw;
    }

    .reason__item-heading-title {
        font-size: max(22px, 2.8vw);
    }

    .reason__item-heading-num{
        width: min(12vw, 130px);
        height: min(11vw, 120px);
    }

    .reason__item-heading {
        gap: 1.9vw;
    }

    .reason__item {
        align-items: center;
    }

    .reason__item-body-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .reason__item {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .reason__item-body {
        padding-left: 0;
        margin-top: 30px;
        /* max-width: 600px; */
    }

    .reason__item-heading {
        justify-content: center;
        gap: 20px;
    }

    .reason__item-heading-title {
        font-size: clamp(22px, 3.5vw, 26px);
    }

    .reason__item-heading-num {
        width: clamp(80px,15vw, 130px);
        height: clamp(75px, 12vw, 120px);
    }

    /* .reason__item-img {
        min-width: 300px;
        width: 60%;
    }

    .reason__item-img img{
        aspect-ratio: 4/3;
        height: 100%;
        object-fit: cover;
        object-position: top;
    } */
}

@media screen and (max-width: 499px) {
    .reason__item-heading {
        flex-direction: column;
        gap: 10px;
    }

    .reason__items > *+* {
        margin-top: 60px;
    }
    
    .reason__item-heading-title{        
        text-align: center;
    }
}

/*******************
timing
********************/
.timing{
    background-image: url("../images/chikan_lp/timing_bg.jpg");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: right;
    background-color: var(--light-gray);
}

.webp .timing{
    background-image: url(../images/chikan_lp/keijibengo-timing.jpg.webp);
}

@media screen and (max-width: 767px) {
    .timing{
        background-image: url(../images/chikan_lp/keijibengo-timing_sp.jpg);
        background-size: 60%;
        background-position: top right;
    }

    .webp .timing{
        background-image: url(../images/chikan_lp/keijibengo-timing_sp.jpg.webp);
    }

    .timing__content {
        max-width: 360px;
        margin-inline: auto;
        padding: 0 15px;
    }
}

/*******************
merit
********************/
.merit .merit__content{
    
}
.merit .merit__content .item{
    padding: 60px;

}
.merit .merit__content .item:not(:last-child){
    margin-bottom: 60px;
}
.merit .merit__content .item01{
    background: url("../images/chikan_lp/merit_icon01.png") no-repeat 94% 70%,#ebebeb;
}
.merit .merit__content .item02{
    background: url("../images/chikan_lp/merit_icon02.png") no-repeat 92% 70%,#ebebeb;
}
.merit .merit__content .item03{
    background: url("../images/chikan_lp/merit_icon03.png") no-repeat 90% 70%,#ebebeb;
}
.merit .merit__content .item h3{
    padding: 0 0 0 120px;
    font-size: 32px;
    font-weight: bold;
    position: relative;
    line-height: 1.4;
}
.merit .merit__content .item h3:before{
    content: "MERIT01";
    display: inline-block;
    background: #9a0000;
    color: #fff;
    font-size: 16px;
    font-family: "Noto Serif JP", serif;
    padding: 8px 15px;
    line-height: 1;
    vertical-align: middle;
    position: absolute;
    top: 8px;
    left: 0;
}

.merit .merit__content .item01 h3:before{
    content: "MERIT01";
}
.merit .merit__content .item02 h3:before{
    content: "MERIT02";
}
.merit .merit__content .item03 h3:before{
    content: "MERIT03";
}
.merit .merit__content .item p{
    margin-top: 1.5em;
    font-size: 18px;
    line-height: 2.083;
}
@media screen and (max-width: 1049px){
    .merit .merit__content .item h3{
        font-size: 26px;
    } 
    .merit .merit__content .item h3:before{
        top: 7px;
    }
    .merit .merit__content .item p{
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .merit .merit__content .item{
        padding: 9%;
    }
    .merit .merit__content .item h3{
        padding: 50px 0 0 ;
        text-align: center;
        font-size: 6vw;
    }
    .merit .merit__content .item h3:before{
        display: block;
        left: 50%;
        transform: translateX(-50%);
    }
    .merit .merit__content .item01{
        background-size: 40%;
        background-position: 90% 90%;
    }
    .merit .merit__content .item02{
        background-size: 30%;
        background-position: 90% 90%;
    }
    .merit .merit__content .item03{
        background-size: 26%;
        background-position: 90% 90%;
    }
}

@media screen and (max-width: 599px) {
    .merit .merit__content .item:not(:last-child){
        margin-bottom: 40px;
    }
    .merit .merit__content .item h3:before{
        font-size: 14px;
    }
}

/*******************
flow
********************/
.flow .flow__content ul{
    display: flex;
    justify-content: center;
    position: relative;
}
.flow .flow__content ul:after{
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    display: block;
    position: absolute;
    top: 36%;
    left: 0;
    z-index: -1;
}
.flow .flow__content ul li{
} 
.flow .flow__content ul li:not(:last-child){
    margin-right: 6.7%;
}
.flow .flow__content ul li .maru{
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
    background: #e0e0e0;
    border-radius: 100px;
    background-position: center;
    background-size: 80px;
    background-repeat: no-repeat;
} 
.flow .flow__content ul li:nth-child(1) .maru{
    background-image: url("../images/chikan_lp/flow_icon01.svg");
    background-size: 100px;
}
.flow .flow__content ul li:nth-child(2) .maru{
    background-image: url("../images/chikan_lp/flow_icon02.svg");
}
.flow .flow__content ul li:nth-child(3) .maru{
    background-image: url("../images/chikan_lp/flow_icon03.svg");
}
.flow .flow__content ul li:nth-child(4) .maru{
    background-image: url("../images/chikan_lp/flow_icon04.svg");
}
.flow .flow__content ul li .txt{
    font-size: 26px;
    text-align: center;
    font-weight: bold;
}
@media screen and (max-width: 1023px){
    .flow .flow__content ul:after{
        top: 10vw;
    }
    .flow .flow__content ul li{
    }
    .flow .flow__content ul li:not(:last-child) {
        margin-right: 4.7%;
    }
    .flow .flow__content ul li .maru{
        width: 20vw;
        height: 20vw;
        margin-bottom: 15px;
        background-size: 8vw;
    }
    .flow .flow__content ul li:nth-child(1) .maru{
        background-size: 9vw;
    }
    .flow .flow__content ul li .txt{
        font-size: 2.4vw;
    }
}

@media screen and (max-width: 499px){
    .flow .flow__content ul{
        display: block;
    }
    .flow .flow__content ul li{
        margin: 0 auto 30px !important;
    }
    .flow .flow__content ul:after{
        width: 1px;
        height: 90%;
        left: 50%;
        top: 0;
    }
    .flow .flow__content ul li .maru{
        width: 180px;
        height: 180px;
        margin: 0 auto;
        background-size: 60px;
    }
    .flow .flow__content ul li:nth-child(1) .maru{
        background-size: 70px;
    }
    .flow .flow__content ul li .txt{
        width: 160px;
        margin: 10px auto 0;
        background: #000;
        font-size: 18px;
        color: #fff;
        position: relative;
    }
}

/*******************
cost
********************/
.cost{
    background: url("../images/chikan_lp/cost_bg.jpg") no-repeat left top, #e0e0e0;
    background-size: auto 400px;
}
.cost h2{
    color: #fff;
}
.cost__content{
    background-color: #fff;
    padding: 60px 80px;
}
.cost ul.cost_list{
    display: flex;
    justify-content: space-between;
}
.cost ul.cost_list li{
    width: 31%;
}
.cost ul.cost_list li dt{
    padding: 15px;
    background: #9a0000;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    border-radius: 6px 6px 0 0;
    position: relative;
}
.cost ul.cost_list li dt .kome{
    position: absolute;
    font-size: 12px;
    top: 10px;
    right: 10px;
}
.cost ul.cost_list li dd{
    padding: 10px 15px;
    background: #eaeaea;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #9a0000;
    line-height: 1.6;
    text-indent: 1.5em;
}
.cost ul.cost_list li dd .num{
    font-size: 60px;
    margin-right: 2px;
}


.cost__caution{
    display: flex;
    gap: 20px;
    font-size: 10px;
    line-height: 1.83;
    letter-spacing: 0.05em;
    margin-top: 35px;
}

.cost__caution-item{
    padding-left: 2.5em;
    position: relative;
}

.cost__caution-item::before{
    content: "※1";
    position: absolute;
    left: 0;
}

.cost__caution-item:last-of-type:before,
.cost__caution-items:last-of-type .cost__caution-item:before{
    content: "※2";
}

.section__link{
    margin-top: 80px;
    /* text-align: center; */
}

.section__link a{
    display: inline-block;
    background-color: var(--dark-gray);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.05em;
    max-width: 400px;
    width: 100%;
    height: 75px;
    line-height: 75px;
    text-align: center;
    /* position: relative; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-inline: auto;
}

.section__link-text{
    padding-left: 10px;
}

.section__link-arrow{
    width: 20px;
    height: 20px;
    position: relative;
}

.section__link-arrow::before, .section__link-arrow::after {
    position: absolute;
    top: 1px;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.section__link-arrow::before {
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    /* border: 3px solid #030303; */
    background-color: #fff;
    right: 0;
    transition: 0.3s;
}

.section__link-arrow::after {
    right: 8px;
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--dark-gray);
    border-right: 2px solid var(--dark-gray);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: 0.3s;
}

@media screen and (max-width: 1050px) {
    .section__link {
        margin-top: max(50px, 7.6vw);
    }
}

@media screen and (max-width: 1023px){
    .cost__content{
        padding: 6%;
    }
    .cost ul.cost_list li dt{
        font-size: 2.4vw;
    }
    .cost ul.cost_list li dt .kome{
        font-size: 10px;
        top: 4px;
        right: 4px;
    }
    .cost ul.cost_list li dd{
        font-size: 18px;
    }
    .cost ul.cost_list li dd .num{
        font-size: 50px;
    }
    
}

@media screen and (max-width: 767px) {
    .cost__content {
        padding: 50px 35px 50px;
    }

    .cost__caution {
        display: block;
        width: fit-content;
        margin-inline: auto;
    }

    .cost__items {
        flex-wrap: wrap;
        gap: 10px 40px;
    }

    .cost__item:first-of-type{
        flex-basis: 100%;
    }

    .cost__item:first-of-type .cost__item-dlist{
        margin-inline: auto;
    }

    .section__link a {
        font-size: 20px;
    }
    
    .cost ul.cost_list li dt{
        padding: 2vw;
        font-size: 2.6vw;
    }
    .cost ul.cost_list li dd{
        font-size: 3vw;
        text-indent: 0.3em;
    }
    .cost ul.cost_list li dd .num{
        font-size: 8vw;
    }
}

@media screen and (max-width: 599px) {
    .cost__content {
        padding: 30px 15px 30px;
    }

    .cost__items {
        gap: 0 13px;
    }

    .cost__item-dlist {
        width: 140px;
        height: 140px;
    }

    .cost__item-term {
        font-size: 13px;
        /* margin-top: 14px;
        margin-bottom: 3px; */
    }

    .cost__item-desc-num {
        font-size: 60px;
    }

    .cost__item-term-1line {
        margin-top: 26px;
    }

    .cost__item-desc-text {
        font-size: 13px;
    }

    .section__link a {
        font-size: 16px;
        height: 65px;
        line-height: 65px;
    }
}

@media screen and (max-width: 499px){
    .cost__content{
        padding: 6%;
    }
    .cost ul.cost_list{
        flex-wrap: wrap;
        justify-content: center;
    }
    .cost ul.cost_list li{
        width: 48%;
    }
    .cost ul.cost_list li:first-child{
        margin-right: 4%;
    }
    .cost ul.cost_list li:last-child{
        margin-top: 4%;
    }
    .cost ul.cost_list li dt{
        padding: 2vw;
        font-size: 4vw;
    }
    .cost ul.cost_list li dd{
        padding: 2%;
        font-size: 4vw;
        text-indent: 0.3em;
        text-indent: 1em;
    }
    .cost ul.cost_list li dd .num{
        font-size: 10vw;
    }
    .cost ul.cost_list li dt .kome{
        top: 1px;
        right: 3px;
    }
}

/*******************
office
********************/

.office__items{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
}

.office__item{
    display: flex;
    flex-direction: column;
    background-color: var(--light-gray);
    padding: 25px;
}

.office__item-body{
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 14px;
}

.office__item-name{
    display: inline-block;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.office__item-address{
    font-style: normal;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.46;
    margin-top: 3px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.office__item-link{
    margin-top: auto;
}

.office__item-link a{
    display: block;
    background-color: var(--red);
    border-radius: 20px;
    color: #fff;
    font-weight: bold;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-inline: auto;
}

.office__item-name-bangkok{
    display: block;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.33;
    margin-top: 9px;
}

.office__item-address--bangkok{
    font-size: 14px;
    letter-spacing: 0;
    margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1049px) {
    .office__items {
        gap: 2.8vw;
    }

    .office__item {
        padding: 2vw;
    }

    .office__item-name {
        font-size: max(18px, 2.1vw);
    }

    .office__item-address {
        letter-spacing: 0.03em;
        font-size: max(12px,1.43vw);
    }

    .office__item-link a {
        font-size: max(13px, 1.523vw);
    }

    .office__item-name-bangkok {
        margin-top: 6px;
    }
}

@media (min-width: 550px) and (max-width: 767px) {
    .office__items {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .office__item {
        padding: 3.2vw;
    }

    .office__item-name {
        font-size: max(18px, 2.86vw);
    }

    .office__item-address {
        margin-bottom: 1em;
        font-size: max(13px, 1.95vw);
    }

    .office__item-link a {
        font-size: max(14px, 2.08vw);
    }
}

@media screen and (max-width: 549px) {
    .office__items {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
        margin-inline: auto;
    }

    .office__item {
        padding: 20px;
    }

    .office__item-body {
        margin-top: 5px;
    }

    .office__item-name {
        font-size: 20px;
    }
}

@media screen and (min-width: 1195px) {
.cv__content-tel span:last-of-type .tel{
	pointer-events: none;
}
}



/*動画*/
.movie{
   max-width: 100%; /* ここに動画の横幅を指定 */
}

/* 動画を囲うdiv */
.movie_box {
  position: relative;
  width:100%; /* 横幅は100%で固定 */
  height:0; /* 高さは0にしておく(padding-topで高さを指定するため) */
  padding-top: 56.25%; /* 高さを指定(16:9) */
}

/* YouTube埋め込み用のiframe */
.movie iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*------------------------------
  sapporo
------------------------------*/

.sapporo .office__item-name {
    display: inline-block;
    font-optical-sizing: auto;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.05em;
	text-align: center;
}

.sapporo .office__item-link{
    margin-top: -0.5em!important;
}

.sapporo .office__item-link a {
    display: block;
    background-color: #990000;
	background-color: #1c1c1c;
    border-radius: 0px;
    color: #fff;
    font-weight: bold;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-inline: auto;
    margin-top: 0.5em!important;
}

.office__item-body.sapporo{
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 14px;
    justify-content: center;
}


@media screen and (max-width: 1024px) {
.sapporo .office__item-name {
    font-size: 22px;
}
}


@media screen and (max-width: 550px) {
.sapporo .office__item-name {
    font-size: 20px;
}
}