@charset "UTF-8";
/* ----------Font Family Noto Sans Jp------- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

/*#region var*/
:root {
    --pxunit: .83rem;
    --fontB: 'DM Sans', 'Noto Sans JP';
    /* Base font */
    --fontP: 'Poppins', serif;
    /* Title font */
    --headerH: 11rem;
    --bg-font-color: #333333;
    --bg-black-color: #000000;
    --bg-blue-color: #007AFF;
    --bg-grey-color: #E2E2E2;
    --bg-green-color: #00C300;
    --bg-white-color: #FFFFFF;
    --bg-border-color: #CCCCCC;
    --bg-red-color: #EF4444;
}

* {
    box-sizing: border-box;
    color: var(--bg-font-color);
    font-family: var(--fontB);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

html {
    font-size: .625vw;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

.hx1 {
    content: "";
    height: var(--pxunit);
}

.hx2 {
    content: "";
    height: calc(var(--pxunit)*2);
}

.hx3 {
    content: "";
    height: calc(var(--pxunit)*3);
}

.hx4 {
    content: "";
    height: calc(var(--pxunit)*4);
}

.hx5 {
    content: "";
    height: calc(var(--pxunit)*5);
}

.hx6 {
    content: "";
    height: calc(var(--pxunit)*6);
}

.hx7 {
    content: "";
    height: calc(var(--pxunit)*7);
}

.hx8 {
    content: "";
    height: calc(var(--pxunit)*8);
}

.hx9 {
    content: "";
    height: calc(var(--pxunit)*9);
}

.hx10 {
    content: "";
    height: calc(var(--pxunit)*10);
}

.hx11 {
    content: "";
    height: calc(var(--pxunit)*11);
}

.hx12 {
    content: "";
    height: calc(var(--pxunit)*12);
}

.hx13 {
    content: "";
    height: calc(var(--pxunit)*13);
}

.hx14 {
    content: "";
    height: calc(var(--pxunit)*14);
}

.hx15 {
    content: "";
    height: calc(var(--pxunit)*15);
}

.hx16 {
    content: "";
    height: calc(var(--pxunit)*16);
}

.hx17 {
    content: "";
    height: calc(var(--pxunit)*17);
}

.hx18 {
    content: "";
    height: calc(var(--pxunit)*18);
}

.hx19 {
    content: "";
    height: calc(var(--pxunit)*19);
}

.hx20 {
    content: "";
    height: calc(var(--pxunit)*20);
}

.hx30 {
    content: "";
    height: calc(var(--pxunit)*30);
}

/*#endregion var*/

/*#region RESET*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
    padding: 0px;
    font-weight: normal;
}

p {
    margin: 0px;
    padding: 0px;
}

a {
    text-decoration: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

a:hover,
a:focus,
a:active {
    outline: none;
    text-decoration: none;
}

input {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

input:hover,
input:focus,
input:active {
    outline: none;
}

input::-webkit-input-placeholder {
    color: #333333;
}

input::-moz-placeholder {
    color: #333333;
}

input:-ms-input-placeholder {
    color: #333333;
}

input:-moz-placeholder {
    color: #333333;
}

textarea::-webkit-input-placeholder {
    color: #333333;
}

textarea::-moz-placeholder {
    color: #333333;
}

textarea:-ms-input-placeholder {
    color: #333333;
}

textarea:-moz-placeholder {
    color: #333333;
}

button:focus {
    outline: 0;
}

ul {
    margin: 0px;
    padding: 0px;
}

ul li {
    list-style-type: none;
}

img {
    border: 0px;
}

.clearfix {
    clear: both;
    overflow: hidden;
}

/*#endregion RESET*/

/*#region pspander*/
.pspander_header {
    cursor: pointer;
}

.pspander_opened {
    display: block;
}

.pspander_closed {
    display: none;
}

.pspander.pst_show .pspander_opened {
    display: none;
}

.pspander.pst_show .pspander_closed {
    display: block;
}

.pspander_collapse {
    display: none;
}

/*#endregion pspander*/
/*#region ANIMATION*/
/*#region opacity animation*/
.js_opac {
    opacity: 0;
    transition: all 1s;
    transition-delay: 1s;
}

.js_opac.on {
    opacity: 1;
}

/*#endregion opacity animation*/
/*#region spin animation*/
/* spin1 */
@keyframes spin1 {
    0% {
        transform: rotate(0deg)translate3d(7px, 0, 0);
    }

    100% {
        transform: rotate(360deg)translate3d(7px, 0, 0);
    }
}

/* spin2 */
@keyframes spin2 {
    0% {
        transform: rotate(0deg)translate3d(5px, 0, 0);
    }

    100% {
        transform: rotate(360deg)translate3d(5px, 0, 0);
    }
}

/* spin3 */
@keyframes spin3 {
    0% {
        transform: rotate(0deg)translate3d(6px, 0, 0);
    }

    100% {
        transform: rotate(360deg)translate3d(6px, 0, 0);
    }
}

/* spin4 */
@keyframes spin4 {
    0% {
        transform: rotate(0deg)translate3d(3px, 0, 0);
    }

    100% {
        transform: rotate(-360deg)translate3d(3px, 0, 0);
    }
}

/* spin5 */
@keyframes spin5 {
    0% {
        transform: rotate(0deg)translate3d(2px, 0, 0);
    }

    100% {
        transform: rotate(-360deg)translate3d(2px, 0, 0);
    }
}

.circleWrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.c_pos01 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin1 5s linear infinite;
    -moz-animation: spin1 5s linear infinite;
    -ms-animation: spin1 5s linear infinite;
    -o-animation: spin1 5s linear infinite;
    animation: spin1 5s linear infinite;
    /*  	animation: bo-co1 10s infinite;
        -webkit-animation: bo-co1 10s infinite; */
}

.c_pos02 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin2 4s linear infinite;
    -moz-animation: spi2 4s linear infinite;
    -ms-animation: spin2 4s linear infinite;
    -o-animation: spin2 4s linear infinite;
    animation: spin2 4s linear infinite;
    /* 	animation: bo-co2 9s infinite;
        -webkit-animation: bo-co2 9s infinite; */
}

.c_pos03 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin3 7s linear infinite;
    -moz-animation: spi3 7s linear infinite;
    -ms-animation: spin3 7s linear infinite;
    -o-animation: spin3 7s linear infinite;
    animation: spin3 7s linear infinite;
    /* 	animation: bo-co3 11s infinite;
        -webkit-animation: bo-co3 11s infinite; */
}

.c_pos04 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin4 7s linear infinite;
    -moz-animation: spi4 7s linear infinite;
    -ms-animation: spin4 7s linear infinite;
    -o-animation: spin4 7s linear infinite;
    animation: spin4 7s linear infinite;
    /* 	animation: bo-co1 12s infinite;
        -webkit-animation: bo-co1 12s infinite; */
}

.c_pos05 {
    top: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.9);
    -webkit-animation: spin5 8s linear infinite;
    -moz-animation: spi5 8s linear infinite;
    -ms-animation: spin5 8s linear infinite;
    -o-animation: spin5 8s linear infinite;
    animation: spin5 8s linear infinite;
    /* 	animation: bo-co2 10s infinite;
        -webkit-animation: bo-co2 10s infinite; */
}

/*#endregion spn animation*/
/*#region rotate animation*/
.rot360 {
    transform: rotate(0deg);
    animation: anim_rotate360 10s linear infinite;
}

@keyframes anim_rotate360 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*#endregion rotate animation*/
/*#region clip-left-right animation*/
.panir3 {
    display: inline-block;
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
    transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
    vertical-align: middle;
}

.panir3.on {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}

.panil3 {
    display: inline-block;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
    transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
    vertical-align: middle;
}

.panil3.on {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}

/*#endregion clip-left-right animation*/
/*#region pani text rising animation*/
.pani4 {
    display: flex;
    overflow: hidden;
}

.pani4 span {
    display: block;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: transparent;
}

.pani4.on span {
    color: #222;
    transform: translateY(0);
}

.pani4 span:nth-child(0) {
    transition-delay: 0ms;
}

.pani4 span:nth-child(1) {
    transition-delay: 80ms;
}

.pani4 span:nth-child(2) {
    transition-delay: 160ms;
}

.pani4 span:nth-child(3) {
    transition-delay: 240ms;
}

.pani4 span:nth-child(4) {
    transition-delay: 320ms;
}

.pani4 span:nth-child(5) {
    transition-delay: 400ms;
}

.pani4 span:nth-child(6) {
    transition-delay: 480ms;
}

.pani4 span:nth-child(7) {
    transition-delay: 560ms;
}

.pani4 span:nth-child(8) {
    transition-delay: 640ms;
}

.pani4 span:nth-child(9) {
    transition-delay: 720ms;
}

.pani4 span:nth-child(10) {
    transition-delay: 800ms;
}

.pani4 span:nth-child(11) {
    transition-delay: 880ms;
}

.pani4 span:nth-child(12) {
    transition-delay: 960ms;
}

.pani4 span:nth-child(13) {
    transition-delay: 1040ms;
}

.pani4 span:nth-child(14) {
    transition-delay: 1120ms;
}

.pani4 span:nth-child(15) {
    transition-delay: 1200ms;
}

.pani4 span:nth-child(16) {
    transition-delay: 1280ms;
}

.pani4 span:nth-child(17) {
    transition-delay: 1360ms;
}

.pani4 span:nth-child(18) {
    transition-delay: 1440ms;
}

.pani4 span:nth-child(19) {
    transition-delay: 1520ms;
}

.pani4 span:nth-child(19) {
    transition-delay: 1600ms;
}

/*endregion pani text rising animation*/
/*#region evelit animaiton*/
.initani {
    overflow: hidden;
    position: relative;
}

.initani::before,
.initani::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.initani.initani_wb::before {
    background-color: #FFF;
}

.initani.initani_wb::after {
    background-color: var(--bg-blue-color);
}

.initani.initani_wbk::before {
    background-color: var(--bg-grey-color);
}

.initani.initani_wbk::after {
    background-color: var(--bg-grey-color);
}

.initani.initani_wy::before {
    background-color: #fff;
}

.initani.initani_wy::after {
    background-color: var(--bg-green-color);
}

.initani.initani_ww::before {
    background-color: #FFF;
}

.initani.initani_ww::after {
    background-color: #FFF;
}

.initani.initani_wg::after {
    background-color: var(--bg-green-color);
}

.initani.initani_wg::before {
    background-color: var(--bg-green-color);
}

[data-inview] {
    mask-image: linear-gradient(270deg, transparent 35%, #000 60%, #000);
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
    -webkit-mask-size: 250% 100%;
    mask-size: 250% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0
}

[data-inview].inview,
[data-inview] * {
    transition: opacity 3.5s, -webkit-mask-position 3.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 3.5s, mask-position 3.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: opacity 3.5s, mask-position 3.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-mask-position 2.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    opacity: 1;
}

.initani::before {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.8s 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.initani::after {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0) translateX(0);
    -ms-transform: scaleX(0) translateX(0);
    transform: scaleX(0) translateX(0);
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53), -webkit-transform 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.anistart::before {
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.anistart::after {
    -webkit-transform: scaleX(1) translateX(101%);
    -ms-transform: scaleX(1) translateX(101%);
    transform: scaleX(1) translateX(101%);
}

/*#endregion evelit animaiton*/
/*region coiran animation*/
@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1);
        -ms-transform: scale(1);
    }

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        transform: scale(1.1);
        -ms-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(1);
        -ms-transformm: scale(1);
    }
}

@-o-keyframes slideShow {
    0% {
        opacity: 0;
        -o-transform: scale(1);
    }

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -o-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -o-transformm: scale(1);
    }
}

@-moz-keyframes slideShow {
    0% {
        opacity: 0;
        -moz-transform: scale(1);
    }

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -moz-transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -moz-transformm: scale(1);
    }
}

@-webkit-keyframes slideShow {
    0% {
        opacity: 0;
        -webkit-transform: scale(1);
    }

    5% {
        opacity: 1
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
        -webkit-transform: scale(1.1);
    }

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

/*endregion coiran animation*/
/*#region io animation*/
.pioup {
    -webkit-transition: color 0.4s ease 0s, background-color 0.4s ease 0s, opacity 1.0s ease 0s, -webkit-transform 1.0s ease 0s;
    transition: color 0.4s ease 0s, background-color 0.4s ease 0s, opacity 1.0s ease 0s, transform 1.0s ease 0s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: opacity, transform;
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
}

.pioup.on {
    opacity: 1 !important;
    -webkit-transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg) !important;
}

/*#endregion io animation*/
/*#endregion ANIMATION*/

/*#region COMMON*/
.pmh_anchor {
    transform: translateY(-100px);
    content: "";
    width: 100%;
    height: 0;
}

.jp_wbr {
    word-break: keep-all;
}

.disb_sp {
    display: none !important;
}

.disb_pc {
    display: block !important;
}

/*#endregion COMMON*/

/*#region HEADER*/

header {
    margin: 0;
    padding: 0 3.5rem;
    width: 100%;
    position: fixed;
    top: 0;
    height: var(--headerH);
    z-index: 111;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    background-color: var(--bg-white-color);
    border-bottom: 1px solid var(--bg-border-color);
}

.header_set {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_left {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_logo {
    display: flex;
    font-size: 4rem;
    font-weight: bold;
    color: var(--bg-blue-color);
}

.header_logo img {
    height: 5rem;
}

.header_menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-right: auto;
    margin-left: 5rem;
}

.headmenu_ul {
    display: flex;
    justify-content: flex-end;
}

.headmenu_a {
    padding: 0 1.7rem;
    height: var(--headerH);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all .1s;
}

.headmenu_shape {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.headmenu_uline {
    position: absolute;
    bottom: -3px;
    left: 0;
    content: "";
    height: 2px;
    background-color: var(--bg-font-color);
    width: 0;
    transition: all .3s;
}

.headmenu_a:hover .headmenu_uline {
    width: 100%;
}

.headmenu_a .headmenu_shape .headmenu_cap {
    font-size: 1.6rem;
    font-weight: bold;
}

.search_set {
    display: flex;
}

.search_set.sp_version {
    display: none;
}

.search_form {
    display: flex;
}

.search_input {
    width: 17rem;
    font-size: 1.5rem;
    padding: .8rem 1rem;
    border: 1px solid var(--bg-font-color);
    border-radius: .4rem 0 0 .4rem;
    border-right: 0;
}

.search_input::placeholder {
    color: #919191;
}

.search_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-font-color);
    outline: none;
    border: 1px solid var(--bg-font-color);
    padding: 1.2rem;
    cursor: pointer;
    border-radius: 0 .4rem .4rem 0;
    transition: all .3s;
}

.search_icon {
    width: 1.7rem;
    height: 1.7rem;
    line-height: 0;
}

.search_icon path {
    transition: all .3s;
}

.search_btn:hover {
    background-color: transparent;
    border-color: var(--bg-font-color);
}

.search_btn:hover .search_icon path {
    stroke: var(--bg-font-color);
}

.hamburger_set {
    display: none;
    min-height: 36px;
    line-height: 34px;
    text-align: center;
    font-size: 10px;
    position: relative;
    z-index: 130;
}

.hamburger_btn {
    margin: 0;
    vertical-align: middle;
    display: inline-block;
    padding: 0px;
    width: 32px;
    height: 15px;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.hamburger_btn span {
    background: var(--bg-black-color);
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 0px;
    margin: 0px 1px 4px 1px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.hamburger_btn span:last-child {
    margin-bottom: 0px;
}

.hamburger_btn span:nth-child(2) {
    width: 23px;
}

.hamburger_btn span:nth-child(3) {
    width: 15px;
}

.hamburger_btn.pst_open span:nth-child(1),
.hamburger_btn.pst_open span:nth-child(3) {
    transform: translate(0px, 7px) rotate(-45deg) scalex(1);
    margin-bottom: 0px;
}

.hamburger_btn.pst_open span:nth-child(2) {
    height: 0;
    margin-bottom: 0px;
    width: 0px;
}

.hamburger_btn.pst_open span:nth-child(3) {
    transform: translate(0px, 5px) rotate(45deg) scalex(1);
    width: 30px;
}

.hide-scroll {
    overflow: hidden !important;
}

/*#endregion HEADER*/


/*#region pg specials*/
.display-flex {
    display: flex;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.justify-content-between {
    display: flex;
    justify-content: space-between;
}

.justify-content-end {
    display: flex;
    justify-content: flex-end;
}

.justify-content-center {
    display: flex;
    justify-content: center;
}

.justify-content-start {
    display: flex;
    justify-content: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-center {
    align-items: center;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.justify-flex-end {
    display: flex;
    justify-content: flex-end;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.row_reverse {
    flex-direction: row-reverse;
}

.sp_break {
    display: none !important;
}

.tb_break {
    display: none !important;
}

@media (max-width: 768px) {
    .tb_hide {
        display: none !important;
    }

    .tb_break {
        display: block !important;
    }
}

@media (max-width: 450px) {
    .sp_hide {
        display: none !important;
    }

    .sp_break {
        display: block !important;
    }
}

/* -----theme block start------- */
.wrapper {
    padding-top: var(--headerH);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .7);
    z-index: 100;
    opacity: 0;
    transition: opacity .3s;
    visibility: hidden;
    display: none;
}

.overlay.pst_open {
    opacity: 1;
    visibility: visible;
}

.container {
    width: 100%;
    padding: 0 15rem;
}

.l-inner,
.m-inner,
.s-inner {
    display: flex;
    flex-direction: column;
}

.l-inner {
    gap: 6.5rem;
}

.m-inner {
    gap: 5rem;
}

.s-inner {
    gap: 4rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 2.5rem;
    }

    .l-inner {
        gap: 3rem;
    }

    .m-inner {
        gap: 2.3rem;
    }

    .s-inner {
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .l-inner {
        gap: 45px;
    }

    .m-inner {
        gap: 35px;
    }

    .s-inner {
        gap: 25px;
    }
}

.pg_header {
    padding: 6rem 0 4rem 0;
}


.pg_hd-inner {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.pg_ttl {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pg_ttl h2 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.5;
    width: fit-content;
}

.pg_ttl h3 {
    font-size: 3.3rem;
    font-weight: 700;
    line-height: 1.5;
}

.pg_ttl p {
    font-size: 1.6rem;
}

.bread_list ul {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bread_list li a,
.bread_list li span {
    font-size: 1.4rem;
}

.bread_list li:first-child a {
    color: var(--bg-blue-color);
}

@media (max-width: 768px) {
    .pg_header {
        padding: 3rem 0 2rem 0;
    }

    .pg_hd-inner {
        gap: 1.8rem;
    }

    .pg_ttl {
        gap: .6rem;
    }

    .pg_ttl h2 {
        font-size: 1.8rem;
    }

    .pg_ttl h3 {
        font-size: 1.6rem;
    }

    .pg_ttl p {
        font-size: .8rem;
    }

    .bread_list ul {
        gap: .6rem;
    }

    .bread_list li a,
    .bread_list li span {
        font-size: .7rem;
    }
}

@media (max-width: 450px) {
    .pg_header {
        padding: 50px 0 30px 0;
    }

    .pg_hd-inner {
        gap: 20px;
    }

    .pg_ttl {
        gap: 8px;
    }

    .pg_ttl h2 {
        font-size: 28px;
    }

    .pg_ttl h3 {
        font-size: 24px;
    }

    .pg_ttl p {
        font-size: 13px;
    }

    .bread_list ul {
        gap: 5px;
    }

    .bread_list li a,
    .bread_list li span {
        font-size: 12px;
    }
}

.block_ttl h2 {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .block_ttl h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 450px) {
    .block_ttl h2 {
        font-size: 28px;
    }
}

.animation_txt span {
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.animation_txt>span {
    display: block;
}

.animated_img {
    position: relative;
    overflow: hidden;
}

.animated_img:hover::before,
.animated_img:hover::after {
    translate: 0% 0%;
}

.animated_img::before {
    background: rgba(255, 255, 255, .3);
    content: "";
    height: 100%;
    right: 0;
    position: absolute;
    top: 0;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
    width: 101%;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: 0;
    top: 0;
    translate: 100% -100%;
    z-index: 99;
}

.animated_img::after {
    background: rgba(255, 255, 255, .3);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: all .4s cubic-bezier(0.46, 0.16, 0.24, 0.77);
    width: 101%;
    bottom: 0;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    right: 0;
    translate: -100% 100%;
    z-index: 99;
}

.w_50 {
    width: 50%;
}

.w_45 {
    width: 45%;
}

.w_48 {
    width: 48%;
}

.w_60 {
    width: 60%;
}

.w_35 {
    width: 35%;
}

.w_25 {
    width: 25%;
}

.w_100 {
    width: 100%;
}

.w_70 {
    width: 70%;
}

img {
    object-fit: cover;
    margin: 0;
    padding: 0;
}

/* -----theme block end------- */



/* -------------page home style------------- */
.top_mv {
    display: flex;
    flex-direction: column;
}

.top_mv-ttl {
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 3rem 0;
}

.top_mv-ttl p {
    font-size: 1.4rem;
    padding: .5rem 1rem;
    background-color: #F7F7F7;
    width: fit-content;
}

.top_mv-slider {
    width: 100%;
}

.mv_slider-link {
    position: relative;
    display: block;
}

.mv_slider-link:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(60, 55, 47, 0);
    background: linear-gradient(180deg, rgba(60, 55, 47, 0) 0, #3c372f);
    background: linear-gradient(180deg, rgba(60, 55, 47, 0) 45%, rgba(60, 55, 47, .3) 70%, rgba(60, 55, 47, .8) 90%);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
}

.mv_slider-link:hover:before {
    background-color: rgba(60, 55, 47, .5);
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}

.mv_slider-link:after {
    content: "";
    display: block;
    width: 0;
    height: 4px;
    opacity: 0;
    background-color: var(--bg-blue-color);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    z-index: 10;
    opacity: .8;
}

.mv_slider-link:hover:after {
    width: 100%;
    opacity: 1;
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}

.mv_slider-thumb {
    display: flex;
    border-radius: .5rem;
    height: 34rem;
    overflow: hidden;
}

.mv_slider-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}

.mv_slider-link:hover .mv_slider-thumb img {
    transform: scale(1.1);
}

.mv_article-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    font-size: 1.7rem;
    font-weight: bold;
    padding: 1.5rem 1.7rem;
    color: var(--bg-white-color);
    z-index: 20;
}

.swiper-controller {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem 20rem;
    gap: 2rem;
}

.swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    width: fit-content !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #CCCCCC;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background-color: var(--bg-font-color);
}

.swiper-navigation {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.swiper-button-prev,
.swiper-button-next {
    position: static;
    display: flex;
    width: 5rem;
    height: 5rem;
    border: 1px solid var(--bg-font-color);
    border-radius: .3rem;
    margin: 0 !important;
    background-color: var(--bg-white-color);
}

.swiper-button-prev::after {
    content: url(../img/arrow_left.svg);
}

.swiper-button-next::after {
    content: url(../img/arrow_right.svg);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    width: 2rem;
    line-height: 0;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    display: none;
}

@media (max-width: 768px) {
    .top_mv-ttl {
        padding: 2rem 0;
    }

    .top_mv-ttl p {
        font-size: .7rem;
        padding: .2rem .5rem;
    }

    .mv_slider-thumb {
        border-radius: .3rem;
        height: 15rem;
    }

    .mv_article-title {
        font-size: .8rem;
        padding: .5rem .8rem;
    }

    .swiper-controller {
        padding: 2rem 2.5rem;
        gap: 1rem;
    }

    .swiper-navigation {
        gap: .6rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 3rem;
        height: 3rem;
        border-radius: .2rem;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        width: 1rem;
    }
}

@media (max-width: 450px) {
    .top_mv-ttl {
        padding: 20px 0;
    }

    .top_mv-ttl p {
        font-size: 13px;
        padding: 3px 5px;
    }

    .top_mv-slider {
        padding: 0 10px;
    }

    .mv_slider-thumb {
        border-radius: .3rem;
        height: 23rem;
    }

    .mv_article-title {
        font-size: 15px;
        padding: 8px;
    }

    .swiper-controller {
        justify-content: center;
        padding: 20px 25px;
        gap: 15px;
    }

    .swiper-navigation {
        gap: 8px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 40px;
        height: 40px;
        border-radius: 3px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        width: 15px;
    }
}

.search_result {
    font-size: 1.8rem;
    font-weight: 500;
}

.main_inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.main_column {
    width: calc(100% - 37rem);
}

.article_block {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.blocks_label,
.blocks_label span {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    padding: 1rem 0;
}

.blocks_label span {
    gap: 1.5rem;
    font-size: 2rem;
    color: #919191;
    font-weight: 400;
    line-height: 1;
}

.blocks_label span::before {
    content: '/';
    line-height: 1;
}

.blocks_container {
    display: flex;
    justify-content: space-between;
}

.blocks_pickup {
    width: 55%;
}

.pickup_article-link {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pickup_article-img {
    position: relative;
    display: flex;
    width: 100%;
    height: 33rem;
    border-radius: .5rem;
    overflow: hidden;
}

.pickup_article-img:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(60, 55, 47, 0);
    background: linear-gradient(180deg, rgba(60, 55, 47, 0) 0, #3c372f);
    background: linear-gradient(180deg, rgba(60, 55, 47, 0) 45%, rgba(60, 55, 47, .3) 70%, rgba(60, 55, 47, .8) 90%);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 10;
}

.pickup_article-link:hover .pickup_article-img:before {
    background-color: rgba(60, 55, 47, .5);
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}

.pickup_article-img:after {
    content: "";
    display: block;
    width: 0;
    height: 4px;
    opacity: 0;
    background-color: var(--bg-blue-color);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    z-index: 10;
    opacity: .8;
}

.pickup_article-link:hover .pickup_article-img:after {
    width: 100%;
    opacity: 1;
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
}

.pickup_article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pickup_article-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pickup_article-ttl {
    font-size: 2.2rem;
    font-weight: bold;
}

.pickup_article-txt {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.8;
}

.pickup_article-meta {
    display: flex;
    align-items: center;
    gap: 1.7rem;
}

.pickup_article-category,
.pickup_article-date {
    font-size: 1.5rem;
}

.pickup_article-category {
    color: var(--bg-blue-color);
    font-weight: 500;
}

.pickup_article-date {
    color: #919191;
}

.blocks_side {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 42%;
}

.side_article-link {
    display: flex;
    gap: 1rem;
}

.side_article-img {
    position: relative;
    width: 35%;
    height: 9rem;
    overflow: hidden;
    border-radius: .5rem;
}

.side_article-img::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-image: -webkit-gradient(linear, left top, right top, from(#40bcd4), to(#0043b3));
    background-image: linear-gradient(90deg, #40bcd4 0%, #0043b3 100%);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.side_article-link:hover .side_article-img::after {
    opacity: .5;
}

.side_article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.side_article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side_article-ttl {
    font-size: 1.5rem;
    font-weight: bold;
}

.side_article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.side_article-category,
.side_article-meta time {
    font-size: 1.4rem;
    color: var(--bg-blue-color);
    font-weight: 500;
}

.side_article-meta time {
    color: #919191;
}

.blocks_btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 18rem;
    height: 5.5rem;
    margin: 0 auto;
    border-radius: .4rem;
    background-color: var(--bg-blue-color);
    border: 1px solid var(--bg-blue-color);
    transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.blocks_btn span {
    position: absolute;
    white-space: nowrap;
    left: 1.7rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--bg-white-color);
    transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.blocks_btn svg {
    position: absolute;
    right: 1.7rem;
    width: 1.5rem;
    transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.blocks_btn:hover {
    background-color: var(--bg-white-color);
}

.blocks_btn:hover span {
    left: 50%;
    transform: translateX(-50%);
    color: var(--bg-blue-color);
}

.blocks_btn:hover svg {
    transform: scale(0);
}

@media (max-width: 768px) {
    .search_result {
        font-size: 1rem;
    }

    .main_inner {
        flex-direction: column;
    }

    .main_column {
        width: 100%;
    }

    .article_block {
        gap: 2rem;
    }

    .blocks_label,
    .blocks_label span {
        font-size: 1.5rem;
        gap: 1rem;
        padding: .6rem 0;
    }

    .blocks_label span {
        gap: .8rem;
        font-size: 1rem;
    }

    .blocks_container {
        flex-direction: column;
        gap: 2rem;
    }

    .blocks_pickup,
    .blocks_side {
        width: 100%;
    }

    .pickup_article-link {
        gap: 1.4rem;
    }

    .pickup_article-content {
        gap: .7rem;
    }

    .pickup_article-img {
        height: 20rem;
        border-radius: .3rem;
    }

    .pickup_article-ttl {
        font-size: 1.3rem;
    }

    .pickup_article-txt {
        font-size: .9rem;
    }

    .pickup_article-meta {
        gap: 1rem;
    }

    .pickup_article-category,
    .pickup_article-date {
        font-size: .9rem;
    }

    .blocks_side {
        gap: 1.5rem;
    }

    .side_article-link {
        border-top: 1px solid var(--bg-border-color);
        padding-top: 1.5rem;
    }

    .side_article-img {
        height: 7rem;
        border-radius: .3rem;
    }

    .side_article-ttl {
        font-size: 1rem;
    }

    .side_article-category,
    .side_article-meta time {
        font-size: .8rem;
    }

    .blocks_btn {
        width: 9.5rem;
        height: 3rem;
        border-radius: .2rem;
    }

    .blocks_btn span {
        left: .8rem;
        font-size: .8rem;
    }

    .blocks_btn svg {
        right: .8rem;
        width: 1rem;
    }
}

@media (max-width: 450px) {
    .search_result {
        font-size: 15px;
    }

    .article_block {
        gap: 30px;
    }

    .blocks_label,
    .blocks_label span {
        padding: 5px 0;
        font-size: 22px;
        gap: 10px;
    }

    .blocks_label span {
        gap: 8px;
        font-size: 15px;
    }

    .blocks_container {
        flex-direction: column;
        gap: 20px;
    }

    .pickup_article-link {
        gap: 15px;
    }

    .pickup_article-content {
        gap: 10px;
    }

    .pickup_article-img {
        height: 22rem;
        border-radius: 3px;
    }

    .pickup_article-ttl {
        font-size: 16px;
    }

    .pickup_article-txt {
        font-size: 14px;
    }

    .pickup_article-meta {
        gap: 15px;
    }

    .pickup_article-category,
    .pickup_article-date {
        font-size: 14px;
    }

    .blocks_side {
        gap: 20px;
    }

    .side_article-link {
        padding-top: 20px;
    }

    .side_article-img {
        height: 8rem;
        border-radius: 3px;
    }

    .side_article-ttl {
        font-size: 14px;
    }

    .side_article-category,
    .side_article-meta time {
        font-size: 12px;
    }

    .blocks_btn {
        width: 160px;
        height: 45px;
        border-radius: 3px;
    }

    .blocks_btn span {
        left: 15px;
        font-size: 13px;
    }

    .blocks_btn svg {
        right: 15px;
        width: 15px;
    }
}

.feature_block {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.features_content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 2rem;
    width: 100%;
}

.feature_card-box {
    display: flex;
    width: calc(50% - 1rem);
}

.feature_card-link {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.feature_card-thumb {
    position: relative;
    display: flex;
    width: 100%;
    height: 15rem;
    border-radius: .5rem;
    overflow: hidden;
}

.feature_card-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #007aff;
    opacity: 0;
    transition: all .3s;
}

.feature_card-link:hover .feature_card-thumb::before {
    opacity: .7;
}

.feature_card-thumb::after {
    border-radius: .5rem;
    color: transparent;
    content: 'READ MORE';
    font-size: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    letter-spacing: .3rem;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .3s;
    transition: .3s;
    color: #fff;
    opacity: 0;
}

.feature_card-link:hover .feature_card-thumb::after {
    opacity: 1;
}

.feature_card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.feature_card-ttl {
    font-size: 1.6rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .feature_block {
        gap: 2rem;
    }

    .features_content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .feature_card-box {
        width: 100%;
    }

    .feature_card-link {
        gap: .6rem;
        border-top: 1px solid var(--bg-border-color);
        padding-top: 2rem;
    }

    .feature_card-thumb {
        height: 9rem;
        border-radius: .2rem;
    }

    .feature_card-ttl {
        font-size: .9rem;
    }
}

@media (max-width: 450px) {
    .feature_block {
        gap: 30px;
    }

    .features_content {
        gap: 20px;
    }

    .feature_card-link {
        gap: 10px;
        padding-top: 15px;
    }

    .feature_card-thumb {
        height: 11rem;
        border-radius: 3px;
    }

    .feature_card-ttl {
        font-size: 14px;
    }
}

.social_links {
    display: flex;
    justify-content: space-between;
    gap: 3.3rem;
}

.social_links li {
    flex: 1;
}

.social_link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
    border-radius: .3rem;
    transition: opacity .2s;
}

.social_link:hover {
    opacity: .8;
}

.social_links li:nth-child(1) .social_link {
    background-color: #4B6AAA;
}

.social_links li:nth-child(1) svg {
    width: 1.4rem;
}

.social_links li:nth-child(2) .social_link {
    background-color: var(--bg-font-color);
}

.social_links li:nth-child(2) svg {
    width: 1.7rem;
}

.social_links li:nth-child(3) .social_link {
    background-color: var(--bg-green-color);
}

.social_links li:nth-child(3) svg {
    width: 2.7rem;
}

@media (max-width: 768px) {
    .social_links {
        gap: 1rem;
    }

    .social_link {
        height: 2.5rem;
        border-radius: .2rem;
    }

    .social_links li:nth-child(1) svg {
        width: .8rem;
    }

    .social_links li:nth-child(2) svg {
        width: 1rem;
    }

    .social_links li:nth-child(3) svg {
        width: 1.5rem;
    }
}

@media (max-width: 450px) {
    .social_links {
        gap: 10px;
    }

    .social_link {
        height: 40px;
        border-radius: 3px;
    }

    .social_links li:nth-child(1) svg {
        width: 11px;
    }

    .social_links li:nth-child(2) svg {
        width: 15px;
    }

    .social_links li:nth-child(3) svg {
        width: 22px;
    }
}

.readArticle_block {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.article_list {
    display: flex;
    flex-wrap: wrap;
    gap: 3.5rem 2rem;
}

.article_card-box {
    display: flex;
    width: calc(calc(100% - 4rem)/3);
}

.article_card-link {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
    width: 100%;
}

.article_card-thumb {
    position: relative;
    display: flex;
    width: 100%;
    height: 18rem;
    overflow: hidden;
    border-radius: .5rem;
}

.article_card-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #007aff;
    opacity: 0;
    transition: all .3s;
}

.article_card-link:hover .article_card-thumb::before {
    opacity: .7;
}

.article_card-thumb::after {
    border-radius: .5rem;
    color: transparent;
    content: 'READ MORE';
    font-size: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    letter-spacing: .3rem;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: .3s;
    transition: .3s;
    color: #fff;
    opacity: 0;
}

.article_card-link:hover .article_card-thumb::after {
    opacity: 1;
}

.article_card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article_card-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article_card-ttl {
    font-size: 1.6rem;
    font-weight: bold;
}

.article_card-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.article_card-category,
.article_card-date {
    font-size: 1.5rem;
}

.article_card-category {
    font-weight: bold;
    color: var(--bg-blue-color);
}

.article_card-date {
    color: #919191;
}

@media (max-width: 768px) {
    .readArticle_block {
        gap: 2rem;
    }

    .article_list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .article_card-box {
        padding-top: 1.5rem;
        width: 100%;
        border-top: 1px solid var(--bg-border-color);
    }

    .article_card-link {
        flex-direction: row;
        gap: 1rem;
    }

    .article_card-content {
        flex: 1;
    }

    .article_card-ttl {
        font-size: 1rem;
    }

    .article_card-thumb {
        width: 35%;
        height: 7rem;
    }

    .article_card-meta {
        gap: 1rem;
    }

    .article_card-category,
    .article_card-date {
        font-size: .8rem;
    }
}

@media (max-width: 450px) {
    .readArticle_block {
        gap: 30px;
    }

    .article_list {
        gap: 20px;
    }

    .article_card-box {
        padding-top: 20px;
    }

    .article_card-link {
        gap: 10px;
    }

    .article_card-ttl {
        font-size: 14px;
    }

    .article_card-thumb {
        height: 8rem;
    }

    .article_card-meta {
        gap: 10px;
    }

    .article_card-category,
    .article_card-date {
        font-size: 12px;
    }
}

.aside {
    position: relative;
    width: 33rem;
}

.aside_inner {
    position: sticky;
    position: -webkit-sticky;
    top: calc(var(--headerH) + 10px);
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-bottom: 9rem;
}

.aside_block,
.aside_articles {
    display: flex;
    flex-direction: column;
    gap: 1.7rem;
}

.aside_label {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    font-size: 2.3rem;
    font-weight: bold;
    padding: 1rem 0;
    border-top: 3px solid var(--bg-blue-color);
}

.aside_label span {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #919191;
    font-size: 2rem;
}

.aside_label span::before {
    content: '/';
}

.aside_article-link {
    display: flex;
    gap: 1.2rem;
    transition: opacity .3s;
}

.aside_article-thumb {
    position: relative;
    width: 28%;
    height: 6.5rem;
    overflow: hidden;
    border-radius: .4rem;
}

.aside_article[data-rank] .aside_article-thumb::before {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    color: var(--bg-white-color);
    font-size: 1.6rem;
    font-weight: 500;
    font-family: var(--fontP);
    border-radius: .4rem;
}

.aside_article[data-rank="1"] .aside_article-thumb::before {
    content: '1';
    background-color: #D4AB5A;
}

.aside_article[data-rank="2"] .aside_article-thumb::before {
    content: '2';
    background-color: #ADADAD;
}

.aside_article[data-rank="3"] .aside_article-thumb::before {
    content: '3';
    background-color: #AE7040;
}

.aside_article[data-rank="4"] .aside_article-thumb::before {
    content: '4';
    background-color: #333333;
}

.aside_article[data-rank="5"] .aside_article-thumb::before {
    content: '5';
    background-color: #333333;
}

.aside_article-thumb::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-image: -webkit-gradient(linear, left top, right top, from(#40bcd4), to(#0043b3));
    background-image: linear-gradient(90deg, #40bcd4 0%, #0043b3 100%);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.aside_article-link:hover .aside_article-thumb::after {
    opacity: .5;
}

.aside_article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.aside_article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aside_article-ttl {
    font-size: 1.5rem;
    font-weight: bold;
}

.aside_article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.aside_article-category,
.aside_article-date {
    font-size: 1.4rem;
}

.aside_article-category {
    font-weight: bold;
    color: var(--bg-blue-color);
}

.aside_article-date {
    color: #919191;
}


.aside_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.aside_tag-box {
    display: flex;
    font-size: 1.5rem;
    font-weight: 500;
    padding: .8rem 1.2rem;
    background-color: #F7F7F7;
    line-height: 1;
    border: 1px solid #DDDDDD;
}

.aside_tag-box:hover {
    animation: flash 1s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

@keyframes flash {
    0% {
        opacity: .6;
    }

    100% {
        opacity: 1;
    }
}

.aside_banner,
.aside_banner-link {
    display: flex;
    width: 100%;
}

.aside_banner img {
    width: 100%;
}

@media (max-width: 768px) {
    .aside {
        width: 100%;
    }

    .aside_inner {
        position: static;
        gap: 2.5rem;
        padding-bottom: 6rem;
    }

    .aside_block {
        gap: 1rem;
    }

    .aside_articles {
        gap: 1.5rem;
    }

    .aside_label {
        font-size: 1.5rem;
        padding: .6rem 0;
        gap: .3rem;
    }

    .aside_label span {
        gap: .6rem;
        font-size: 1rem;
    }

    .aside_article-link {
        padding-top: 1.5rem;
        gap: 1rem;
        border-top: 1px solid var(--bg-border-color);
    }

    .aside_article-thumb {
        width: 35%;
        height: 7rem;
        border-radius: .2rem;
    }

    .aside_article-ttl {
        font-size: 1rem;
    }

    .aside_article-category,
    .aside_article-date {
        font-size: .8rem;
    }

    .aside_article[data-rank] .aside_article-thumb::before {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
        border-radius: .2rem;
    }

    .aside_tags {
        gap: .6rem 1rem;
    }

    .aside_tag-box {
        font-size: .8rem;
        padding: .5rem 1rem;
    }
}

@media (max-width: 450px) {
    .main_inner {
        gap: 0;
    }

    .aside_inner {
        gap: 30px;
        padding-bottom: 80px;
    }

    .aside_block {
        gap: 15px;
    }

    .aside_articles {
        gap: 15px;
    }

    .aside_label {
        font-size: 22px;
        padding: 8px 0;
        gap: 5px;
    }

    .aside_label span {
        gap: 6px;
        font-size: 15px;
    }

    .aside_article-link {
        padding-top: 15px;
    }

    .aside_article-thumb {
        height: 8rem;
        border-radius: 3px;
    }

    .aside_article-ttl {
        font-size: 14px;
    }

    .aside_article-category,
    .aside_article-date {
        font-size: 12px;
    }

    .aside_article[data-rank] .aside_article-thumb::before {
        width: 25px;
        height: 25px;
        font-size: 15px;
        border-radius: 3px;
    }

    .aside_tags {
        gap: 8px 10px;
    }

    .aside_tag-box {
        font-size: 13px;
        padding: 5px 10px;
    }
}





/* -------------page feature style------------- */
.feature_header {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--bg-border-color);
}

.feature_thumb {
    display: flex;
    width: 100%;
    border-radius: .4rem;
    overflow: hidden;
}

.feature_thumb img {
    width: 100%;
}

.feature_title {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.feature_title h3 {
    font-size: 3rem;
    font-weight: bold;
}

.feature_title p {
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .feature_header {
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: unset;
    }

    .feature_title {
        gap: 1.5rem;
    }

    .feature_title h3 {
        font-size: 1.5rem;
    }

    .feature_title p {
        font-size: .9rem;
    }
}

@media (max-width: 450px) {
    .feature_header {
        gap: 25px;
        padding-bottom: 0;
    }

    .feature_title {
        gap: 15px;
    }

    .feature_title h3 {
        font-size: 20px;
    }

    .feature_title p {
        font-size: 14px;
    }
}



/* ----------page about style--------- */
.about_block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about_ttl {
    font-size: 3rem;
    font-weight: bold;
}

.about_txt {
    font-size: 1.7rem;
    line-height: 1.8;
}

.about_txt span {
    font-size: 2rem;
}

.about_area,
.about_value {
    display: flex;
    gap: 2rem;
}

.about_area-item,
.about_value-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about_area-item h5,
.about_value-item h5 {
    font-size: 2rem;
    font-weight: bold;
}

.about_area-item p,
.about_value-item p {
    font-size: 1.7rem;
}

.about_value-item {
    padding: 2rem;
    border: 1px solid var(--bg-border-color);
}

@media (max-width: 768px) {
    .about_block {
        gap: 1rem;
    }

    .about_ttl {
        font-size: 1.6rem;
    }

    .about_txt {
        font-size: .9rem;
    }

    .about_txt span {
        font-size: 1rem;
    }

    .about_area,
    .about_value {
        gap: 1rem;
    }

    .about_area-item,
    .about_value-item {
        gap: .6rem;
    }

    .about_area-item h5,
    .about_value-item h5 {
        font-size: .9rem;
    }

    .about_area-item p,
    .about_value-item p {
        font-size: .8rem;
    }

    .about_value-item {
        padding: .8rem;
    }
}

@media (max-width: 450px) {
    .about_block {
        gap: 10px;
    }

    .about_ttl {
        font-size: 22px;
    }

    .about_txt {
        font-size: 15px;
    }

    .about_txt span {
        font-size: 16px;
    }

    .about_area,
    .about_value {
        flex-direction: column;
        gap: 10px;
    }

    .about_area-item,
    .about_value-item {
        gap: 10px;
    }

    .about_area-item h5,
    .about_value-item h5 {
        font-size: 17px;
    }

    .about_area-item p,
    .about_value-item p {
        font-size: 15px;
    }

    .about_value-item {
        padding: 15px;
    }
}

.company_table {
    display: flex;
    flex-direction: column;
}

.table_row {
    display: flex;
    align-items: center;
    padding: 3rem 1.7rem;
    border-bottom: 1px solid var(--bg-border-color);
    margin: 0;
}

.table_row dt,
.table_row dd {
    font-size: 1.7rem;
    margin: 0;
}

.table_row dt {
    width: 30rem;
}

.table_row dd {
    flex: 1;
}

@media (max-width: 768px) {
    .table_row {
        padding: 1.5rem .8rem;
    }

    .table_row dt,
    .table_row dd {
        font-size: .9rem;
    }

    .table_row dt {
        width: 12rem;
    }
}

@media (max-width: 450px) {
    .table_row {
        padding: 20px 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .table_row:first-child {
        border-top: 1px solid var(--bg-border-color);
    }

    .table_row dt,
    .table_row dd {
        font-size: 15px;
    }

    .table_row dt {
        width: 100%;
        font-weight: bold;
    }
}


/* ----------page contact style--------- */
.contact_form {
    width: 65%;
    margin: 0 auto;
}

.form_field {
    display: flex;
    flex-direction: column;
    gap: .4rem;
    margin-bottom: 2.5rem;
}

.field_cap {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.field_cap span {
    display: inline-block;
    font-size: 1.3rem;
    padding: 0 .3rem;
    color: var(--bg-white-color);
    background-color: #EF4444;
    border: 1px solid #EF4444;
    border-radius: .3rem;
}

.field_control {
    display: flex;
}

.form_field input[type=text],
.form_field input[type=email],
.form_field textarea,
.form_field select {
    width: 100%;
    font-size: 1.7rem;
    padding: 1rem;
    border: 1px solid #CCCCCC;
    border-radius: .4rem;
    background-color: #FFFFFF;
    outline: none;
}

.form_field [type=text]:focus,
.form_field input[type=email]:focus,
.form_field textarea:focus,
.form_field select:focus {
    border-color: var(--bg-blue-color);
}

.field_control textarea {
    height: 17rem;
    outline: none;
}

input[type=checkbox] {
    margin: 0;
    width: 1.8rem;
    height: 1.8rem;
}

.field_contactbtn {
    text-align: center;
}

.field_privacy {
    display: flex;
    gap: 1rem;
    padding: 6rem 0;
}

.field_privacy input {
    margin: .3rem 0 0;
    width: 1.7rem;
    height: 1.7rem;
}

.field_privacy label {
    font-size: 1.7rem;
}

.field_privacy a {
    text-decoration: underline;
}

.field_contactbtn input[type=submit] {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 1.8rem 0;
    letter-spacing: 1rem;
    color: var(--bg-white-color);
    background-color: var(--bg-blue-color);
    border: 1px solid var(--bg-blue-color);
    border-radius: .4rem;
    cursor: pointer;
    outline: none;
    margin: 0 auto;
    transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.field_contactbtn input[type=submit]:hover {
    background-color: transparent;
    color: var(--bg-blue-color);
}

@media (max-width: 768px) {
    .contact_form {
        width: 100%;
    }

    .form_field {
        gap: .2rem;
        margin-bottom: 1.5rem;
    }

    .field_cap {
        gap: .3rem;
        font-size: .9rem;
    }

    .field_cap span {
        font-size: .7rem;
        padding: 0 .2rem;
        border-radius: .2rem;
    }

    .form_field input[type=text],
    .form_field input[type=email],
    .form_field textarea,
    .form_field select {
        font-size: 1rem;
        padding: .6rem .8rem;
        border-radius: .2rem;
    }

    .field_control textarea {
        height: 9rem;
    }

    .field_privacy {
        padding: 3rem 0;
        gap: .5rem;
    }

    .field_privacy input {
        width: 14px;
        height: 14px;
    }

    .field_privacy label {
        font-size: .9rem;
    }

    .field_contactbtn input[type=submit] {
        font-size: 1rem;
        padding: 1rem 0;
        border-radius: .2rem;
    }
}

@media (max-width: 450px) {
    .form_field {
        gap: 4px;
        margin-bottom: 18px;
    }

    .field_cap {
        gap: 5px;
        font-size: 14px;
    }

    .field_cap span {
        font-size: 12px;
        padding: 0 3px;
        border-radius: 2px;
        line-height: 1.3;
    }

    .form_field input[type=text],
    .form_field input[type=email],
    .form_field textarea,
    .form_field select {
        font-size: 15px;
        padding: 8px 10px;
        border-radius: 3px;
    }

    .contact_form .form_field .field_control textarea {
        height: 120px;
    }

    .field_privacy {
        padding: 35px 0;
        gap: 8px;
    }

    .field_privacy input {
        margin-top: 3px;
    }

    .field_privacy label {
        font-size: 14px;
    }

    .field_contactbtn input[type=submit] {
        font-size: 16px;
        padding: 13px 0;
        border-radius: 4px;
    }
}

/* ------------single page style---------- */
.post_article {
    padding: 3.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 7rem;
}

.post_head {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.post_category {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.post_category span {
    font-size: 1.5rem;
    padding: 0 1rem;
    border: 1px solid var(--bg-blue-color);
    color: var(--bg-blue-color);
}

.post_date {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.7rem;
    font-family: var(--fontP);
    font-weight: 500;
    line-height: 1;
    color: #6B7280;
}

.post_date img {
    width: 2rem;
}

.post_title {
    font-size: 4.4rem;
    font-weight: 600;
}

.post_body {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.post_thumb {
    display: flex;
    width: 100%;
}

.post_thumb img {
    width: 100%;
}

.post_toc {
    display: flex;
    gap: 6rem;
    padding: 6rem 3rem;
    border: 1px solid #DDDDDD;
}

.toc_ttl {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1;
}

.toc_list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 !important;
    background-color: transparent !important;
    margin: 0 !important;
}

.toc_list a {
    color: var(--bg-font-color) !important;
}

.toc_parent:first-child {
    margin: 0;
}

.toc_parent {
    display: flex;
    gap: 1.5rem;
    font-size: 2.2rem;
    margin-top: 2rem;
    list-style-type: none !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

.toc_parent a {
    font-weight: 600;
}

.toc_parent i {
    display: block;
    width: 3px;
    background-color: var(--bg-blue-color);
}

.toc_child {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: 1.7rem;
    padding-left: 3rem;
    list-style-type: none !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

.toc_child_list {
    padding: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
}

.toc_child_list li {
    list-style-type: none !important;
}

.toc_child i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--bg-blue-color);
}

.toc_child a {
    font-weight: 500;
}

.post_content :first-child {
    margin: 0;
}


.post_heading {
    font-weight: bold;
    margin-top: 6rem;
    padding-left: 2.5rem;
}

._level1 {
    font-size: 3.3rem;
    border-left: 4px solid var(--bg-blue-color);
}

._level2 {
    position: relative;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    padding-left: 2rem;
    padding-bottom: .8rem;
    border-bottom: 1px dashed var(--bg-border-color);
}

._level2::before {
    content: '';
    width: 6px;
    height: 6px;
    position: absolute;
    top: calc(50% - .4rem);
    transform: translateY(-50%);
    left: 0;
    background-color: var(--bg-blue-color);
    border-radius: 50%;
}

.post_content p,
.post_content ul,
.post_content ol {
    margin-top: 2rem;
    font-size: 1.8rem;
    line-height: 1.8;
}

.post_content li ul {
    margin-top: 0.5rem !important;
}

.post_content hr {
    background-color: var(--bg-border-color);
    height: 2px;
    margin: 5rem 0;
}

.post_content p {
    margin-bottom: 3rem;
}

.post_content a {
    color: var(--bg-blue-color);
}

.post_content a:hover {
    opacity: .8;
}

/* WordPressのフォントサイズクラスを統一 */
.post_content .has-small-font-size,
.post_content .has-normal-font-size,
.post_content .has-medium-font-size,
.post_content .has-large-font-size,
.post_content .has-huge-font-size {
    font-size: 1.8rem !important;
    line-height: 1.8 !important;
}

/* WordPressのコードブロックのフォントサイズも統一 */
.post_content .wp-block-code,
.post_content .wp-block-code code {
    font-size: 1.6rem !important;
    line-height: 1.6 !important;
}

.post_content .wp-block-code.has-small-font-size,
.post_content .wp-block-code.has-medium-font-size,
.post_content .wp-block-code.has-large-font-size {
    font-size: 1.6rem !important;
}

/* WordPressのリストアイテムのフォントサイズも統一 */
.post_content .wp-block-list li.has-small-font-size,
.post_content .wp-block-list li.has-medium-font-size,
.post_content .wp-block-list li.has-large-font-size {
    font-size: 1.8rem !important;
    line-height: 1.8 !important;
}

/* WordPressの段落ブロックの統一 */
.post_content .wp-block-paragraph.has-small-font-size,
.post_content .wp-block-paragraph.has-medium-font-size,
.post_content .wp-block-paragraph.has-large-font-size {
    font-size: 1.8rem !important;
    line-height: 1.8 !important;
}

/* WordPressの見出しブロックはそれぞれのサイズを維持 */
.post_content .wp-block-heading h1,
.post_content .wp-block-heading h2,
.post_content .wp-block-heading h3,
.post_content .wp-block-heading h4,
.post_content .wp-block-heading h5,
.post_content .wp-block-heading h6 {
    font-size: inherit !important;
}

.post_content strong {
    font-weight: bold;
}

.post_picture {
    display: flex;
    width: 100%;
    margin-top: 6rem;
}

.post_picture img {
    width: 100%;
}

.post_content>li {
    list-style: none; /* デフォルトの箇条書きを削除 */
    line-height: 2.2;
    font-weight: 500;
    font-size: 1.7rem;
    margin-top: 6rem;
}

.post_content ul,
.post_content ol {
    background-color: #f5f8fa;
    padding: 3rem 5rem;
}

.post_content ul li {
    list-style: none; /* デフォルトの箇条書きを削除 */
    line-height: 2.2;
    font-weight: 500;
}

.post_content ol li {
    line-height: 2.2;
    font-weight: 500;
}

/* 記事コンテンツ内のh1タグのスタイル */
.post_content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin: 4rem 0 2rem 0;
    padding-left: 2rem;
    border-left: 4px solid var(--bg-blue-color);
    line-height: 1.4;
}

.post_content h2 {
    font-size: 2.4rem;
    font-weight: bold;
    margin: 3.5rem 0 1.5rem 0;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--bg-border-color);
    line-height: 1.4;
}

.post_content h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 5rem 0 1rem 0;
    line-height: 1.4;
}

.post_content h4 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 2.5rem 0 1rem 0;
    line-height: 1.4;
}

/* 記事コンテンツ内のテーブルのスタイル */
.post_content table {
    width: 100%;
    margin: 3rem 0;
    border-collapse: collapse;
    border: 1px solid var(--bg-border-color);
    font-size: 1.6rem;
}

.post_content table th,
.post_content table td {
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--bg-border-color);
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
}

.post_content table th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: var(--bg-font-color);
}

.post_content table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.post_content table tr:hover {
    background-color: #e9ecef;
}

/* リストのスタイル調整 */
.post_content ul {
    padding-left: 2rem;
    margin-left: 0;
    list-style: none; /* デフォルトの箇条書きを削除 */
}

.post_content ol {
    padding-left: 2rem;
    margin-left: 0;
}

.post_content ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    list-style: none; /* 確実にデフォルトの箇条書きを削除 */
}

.post_content ul li::before {
    content: "•";
    color: var(--bg-blue-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.post_content ol li {
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.post_content li ul,
.post_content li ol {
    margin-top: 0.5rem;
    margin-bottom: 0;
    background-color: transparent;
    padding: 0;
}

.post_writer {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 3rem;
    border: 1px solid #D6D6D6;
}

.writer_thumb {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    overflow: hidden;
}

.writer_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.writer_info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.writer_job {
    font-size: 1.7rem;
    font-weight: 500;
    color: #565656;
}

.writer_name {
    font-size: 2rem;
    font-weight: 600;
}

.category_blocks {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}


.category_list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.related_category {
    display: flex;
    font-size: 1.5rem;
    font-weight: 500;
    padding: .8rem 1.2rem;
    background-color: #F7F7F7;
    line-height: 1;
    border: 1px solid #DDDDDD;
}

.related_category:hover {
    animation: flash 1s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

@keyframes flash {
    0% {
        opacity: .6;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .post_article {
        padding: 2rem 0;
        gap: 3rem;
    }

    .post_head {
        gap: 1.3rem;
    }

    .post_category {
        gap: .8rem;
    }

    .post_category span {
        font-size: .7rem;
        padding: 0 .6rem;
    }

    .post_date img {
        width: 1.2rem;
    }

    .post_date {
        gap: .5rem;
        font-size: .9rem;
    }

    .post_title {
        font-size: 1.7rem;
        line-height: 1.3;
    }

    .post_body {
        gap: 3rem;
    }

    .post_toc {
        flex-direction: column;
        gap: 2.5rem;
        padding: 2.5rem;
    }

    .toc_ttl {
        text-align: center;
        font-size: 1.7rem;
    }

    .toc_list {
        gap: .6rem;
    }

    .toc_parent {
        font-size: 1.1rem;
        gap: 1rem;
        margin-top: 1rem;
    }

    .toc_child {
        padding-left: 1.5rem;
        gap: .5rem;
        font-size: .9rem;
    }

    .post_heading {
        padding-left: 1.3rem;
        margin-top: 2.5rem;
    }

    ._level1 {
        font-size: 1.5rem;
    }

    ._level2 {
        font-size: 1.2rem;
        padding-left: 1rem;
        padding-bottom: .5rem;
    }

    ._level2::before {
        top: calc(50% - .25rem);
    }

    .post_picture {
        margin-top: 2rem;
    }

    .post_content p,
    .post_content ul,
    .post_content ol {
        margin-top: 2rem;
        font-size: .9rem;
    }

    .post_content hr {
        margin: 2rem 0;
    }

    .post_content p {
        margin-bottom: 1rem;
    }

    .post_content>li {
        margin-top: 3rem;
        font-size: .9rem;
    }

    /* スマートフォン用 WordPressのフォントサイズクラスを統一 */
    .post_content .has-small-font-size,
    .post_content .has-normal-font-size,
    .post_content .has-medium-font-size,
    .post_content .has-large-font-size,
    .post_content .has-huge-font-size {
        font-size: 1.5rem !important;
        line-height: 1.8 !important;
    }

    /* スマートフォン用 WordPressのコードブロック */
    .post_content .wp-block-code,
    .post_content .wp-block-code code {
        font-size: 1.3rem !important;
        line-height: 1.6 !important;
    }

    /* スマートフォン用 WordPressのリストアイテム */
    .post_content .wp-block-list li.has-small-font-size,
    .post_content .wp-block-list li.has-medium-font-size,
    .post_content .wp-block-list li.has-large-font-size {
        font-size: 1.5rem !important;
        line-height: 1.8 !important;
    }

    .post_content ul,
    .post_content ol {
        padding: 1.3rem 2.5rem;
    }

    .post_content li ul {
        margin-top: 0.5rem !important;
    }

    /* スマートフォン用 記事コンテンツのh1〜h4タグ */
    .post_content h1 {
        font-size: 2rem;
        margin: 2.5rem 0 1.5rem 0;
        padding-left: 1.5rem;
    }

    .post_content h2 {
        font-size: 1.8rem;
        margin: 2rem 0 1rem 0;
    }

    .post_content h3 {
        font-size: 1.6rem;
        margin: 5rem 0 1rem 0;
    }

    .post_content h4 {
        font-size: 1.4rem;
        margin: 1.5rem 0 0.5rem 0;
    }

    /* スマートフォン用 テーブルスタイル */
    .post_content table {
        font-size: 1.3rem;
        margin: 2rem 0;
    }

    .post_content table th,
    .post_content table td {
        padding: 0.8rem 1rem;
    }

    /* スマートフォン用 リストスタイル */
    .post_content ul,
    .post_content ol {
        margin-left: 0;
        padding-left: 1.5rem;
    }

    .post_content ul li {
        padding-left: 1.5rem;
        margin-bottom: 0.8rem;
        list-style: none; /* 確実にデフォルトの箇条書きを削除 */
    }

    .post_content ol li {
        padding-left: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .post_writer {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .writer_thumb {
        width: 7rem;
        height: 7rem;
    }

    .writer_info {
        gap: 1rem;
    }

    .writer_job {
        font-size: .9rem;
    }

    .writer_name {
        font-size: 1.1rem;
    }

    .category_blocks {
        gap: 2rem;
    }

    .category_list {
        gap: .6rem 1rem;
    }

    .related_category {
        font-size: .8rem;
        padding: .5rem 1rem;
    }
}

@media (max-width: 450px) {
    .post_article {
        padding: 20px 0;
        gap: 35px;
    }

    .post_head {
        gap: 15px;
    }

    .post_category {
        gap: 10px;
    }

    .post_category span {
        font-size: 12px;
        padding: 0 8px;
    }

    .post_date img {
        width: 18px;
    }

    .post_date {
        gap: 6px;
        font-size: 13px;
    }

    .post_title {
        font-size: 21px;
        line-height: 1.5;
    }

    .post_body {
        gap: 50px;
    }

    .post_toc {
        gap: 25px;
        padding: 25px 20px;
    }

    .post_content hr {
        margin: 30px 0;
    }

    .toc_ttl {
        font-size: 22px;
    }

    .toc_list {
        gap: 10px;
    }

    .toc_parent {
        font-size: 16px;
        gap: 10px;
        margin-top: 10px;
    }

    .toc_child {
        padding-left: 15px;
        gap: 6px;
        font-size: 14px;
    }

    .post_heading {
        padding-left: 10px;
        margin-top: 30px;
    }

    .post_picture {
        margin: 30px 0 15px;
    }

    ._level1 {
        font-size: 18px;
        border-width: 3px;
    }

    ._level2 {
        font-size: 15px;
        padding-left: 12px;
        padding-bottom: 6px;
    }

    ._level2::before {
        top: calc(50% - 3px);
        width: 5px;
        height: 5px;
    }

    .post_content p,
    .post_content ul,
    .post_content ol {
        margin-top: 30px;
        font-size: 15px;
    }

    .post_content>li {
        margin-top: 30px;
        font-size: 15px;
    }

    .post_content p {
        margin-bottom: 15px;
    }

    .post_content ul,
    .post_content ol {
        padding: 15px 35px;
    }

    .post_content li ul {
        margin-top: 15px !important;
    }

    .post_writer {
        gap: 20px;
        padding: 25px 20px;
    }

    .writer_thumb {
        width: 80px;
        height: 80px;
    }

    .writer_info {
        gap: 10px;
    }

    .writer_job {
        font-size: 15px;
    }

    .writer_name {
        font-size: 17px;
    }

    .category_blocks {
        gap: 20px;
    }

    .category_blocks .blocks_label {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .category_list {
        gap: 8px 10px;
    }

    .related_category {
        font-size: 13px;
        padding: 5px 10px;
    }
}


/* -------------footer style------------ */
footer {
    background-color: var(--bg-font-color);
}

.footer_top {
    display: flex;
    justify-content: space-between;
    padding: 6rem 0 4rem 0;
    border-bottom: 1px solid #FFFFFF20;
}

.footer_left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 47%;
}

.footer_logo {
    display: flex;
}

.footer_logo img {
    height: 5rem;
}

.footer_txt {
    font-size: 1.5rem;
    color: var(--bg-white-color);
}

.footer_menu ul {
    display: flex;
    align-items: center;
    gap: 3.3rem;
}

.footer_link {
    position: relative;
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--bg-white-color);
}

.footer_link::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    background-color: var(--bg-font-color);
    width: 0;
    transition: width .3s;
}

.footer_link:hover::before {
    width: 100%;
}

.footer_btm {
    padding: 3.3em 0;
}

.footer_btm p {
    font-size: 1.5rem;
    font-family: var(--fontP);
    color: var(--bg-white-color);
}

@media (max-width: 768px) {
    .footer_top {
        padding: 3.5rem 0 2rem 0;
        flex-direction: column;
        gap: 2rem;
    }

    .footer_left {
        text-align: center;
        width: 100%;
        align-items: center;
        gap: 1rem;
    }

    .footer_logo img {
        height: 3rem;
    }

    .footer_txt {
        font-size: .8rem;
    }

    .footer_menu ul {
        justify-content: center;
        gap: 1.5rem;
    }

    .footer_link {
        font-size: .9rem;
    }

    .footer_btm {
        padding: 1.5rem 0;
    }

    .footer_btm p {
        font-size: .8rem;
    }
}

@media (max-width: 450px) {
    .footer_top {
        padding: 45px 0 30px 0;
        gap: 30px;
    }

    .footer_left {
        gap: 20px;
    }

    .footer_logo img {
        height: 40px;
    }

    .footer_txt {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .footer_menu ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer_link {
        font-size: 15px;
    }

    .footer_btm {
        text-align: center;
        padding: 25px 0;
    }

    .footer_btm p {
        font-size: 12px;
    }
}

/* --------wp navigation style------ */
.pagination_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3rem;
}

.wp-pagenavi {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
}

.wp-pagenavi a,
.wp-pagenavi span {
    width: 3.7rem;
    height: 3.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    border: 1px solid var(--bg-blue-color);
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--bg-black-color);
}

.wp-pagenavi a.previouspostslink {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-black-color);
}

.wp-pagenavi span {
    color: var(--bg-black-color);
    background-color: transparent;
}

.wp-pagenavi a:hover {
    color: #FFF;
    background-color: var(--bg-blue-color);
}

.wp-pagenavi span.current {
    background-color: var(--bg-blue-color);
    color: #fff;
    border-color: var(--bg-blue-color);
}

@media(min-width:0px) and (max-width:767px) {
    .pagination_wrap {
        padding-top: 20px;
    }

    .wp-pagenavi a,
    .wp-pagenavi span {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .wp-pagenavi a.previouspostslink {
        width: 28px;
    }

    .wp-pagenavi a.nextpostslink {
        width: 28px;
    }
}


/* -----------mail poet reset---------- */
.contact_txt p {
    margin-bottom: 5rem;
    font-size: 1.7rem;
    line-height: 1.8;
}

.mailpoet_paragraph {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 3rem;
}

.mailpoet_text_label,
.mailpoet_date_label,
.mailpoet_checkbox_label {
    width: 100%;
    font-size: 1.7rem;
    font-weight: 600 !important;
}

.mailpoet_text_label span {
    color: var(--bg-red-color);
    font-size: 1.8rem;
}

.mailpoet_select,
.mailpoet_date_day {
    margin: 0 !important;
}

.mailpoet_checkbox_label {
    display: flex !important;
    gap: 1rem;
    margin-top: .7rem;
}

.mailpoet_checkbox_label input {
    margin-top: .4rem;
}

.mailpoet_checkbox_label .mailpoet_required {
    display: none !important;
}

.mailpoet_paragraph fieldset {
    width: 100%;
    display: flex !important;
    flex-direction: column;
    gap: .5rem;
}

.mailpoet_paragraph input[type=email],
.mailpoet_paragraph input[type=text],
.mailpoet_paragraph select {
    font-size: 1.7rem;
    padding: 1rem !important;
    border: 1px solid #CCCCCC;
    border-radius: .4rem;
    background-color: #FFFFFF;
    outline: none;
}

.mailpoet_paragraph input[type=email]:focus,
.mailpoet_paragraph input[type=text]:focus,
.mailpoet_paragraph select:focus {
    border-color: var(--bg-blue-color) !important;
}

.mailpoet_paragraph input[type=submit] {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 1.8rem 0 !important;
    letter-spacing: 1rem;
    color: var(--bg-white-color);
    background-color: var(--bg-blue-color);
    border: 1px solid var(--bg-blue-color) !important;
    border-radius: .4rem;
    cursor: pointer;
    outline: none;
    margin: 0 auto;
    transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
    margin-top: 5rem !important;
}

.mailpoet_paragraph input[type=submit]:hover {
    background-color: var(--bg-white-color);
    color: var(--bg-blue-color);
}

.mailpoet_validate_error {
    font-size: 1.5rem;
    color: var(--bg-red-color);
    margin-top: 3rem;
}

.parsley-errors-list {
    margin: 0 !important;
    font-size: 1.6rem !important;
}

@media (max-width: 768px) {
    .contact_txt p {
        font-size: .8rem;
        margin-bottom: 2rem;
    }

    .mailpoet_text_label,
    .mailpoet_date_label,
    .mailpoet_checkbox_label {
        font-size: .8rem;
    }

    .mailpoet_text_label span {
        font-size: .9rem;
    }

    .mailpoet_paragraph input[type=email],
    .mailpoet_paragraph input[type=text],
    .mailpoet_paragraph select {
        font-size: .9rem;
        padding: .5rem .8rem !important;
        border-radius: .2rem;
    }

    .mailpoet_checkbox_label {
        gap: .5rem;
    }

    .mailpoet_checkbox[type=checkbox] {
        width: 15px;
        height: 15px;
        margin-top: .1rem;
    }

    .mailpoet_paragraph input[type=submit] {
        margin-top: 2.5rem !important;
        font-size: 1rem;
        padding: 1rem 0 !important;
        border-radius: .2rem;
    }

    .parsley-errors-list {
        font-size: .7rem !important;
    }

    .mailpoet_validate_error {
        font-size: .7rem !important;
        margin-top: 1.3rem;
    }
}

@media (max-width: 450px) {
    .contact_txt p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .mailpoet_text_label span {
        font-size: 15px;
    }

    .mailpoet_paragraph input[type=email],
    .mailpoet_paragraph input[type=text],
    .mailpoet_paragraph select {
        font-size: 15px;
        padding: 8px 10px !important;
        border-radius: 3px;
    }

    .mailpoet_checkbox_label {
        gap: 8px;
    }

    .mailpoet_checkbox[type=checkbox] {
        margin-top: 3px;
    }

    .mailpoet_paragraph input[type=submit] {
        margin-top: 30px !important;
        font-size: 16px;
        padding: 13px 0 !important;
        border-radius: 3px;
    }

    .parsley-errors-list {
        font-size: 12px !important;
    }

    .mailpoet_validate_error {
        font-size: 12px !important;
        margin-top: 15px;
    }
}
/* ---------page thanks style---------- */
.thanks {
    background-color: var(--bg-lightblue-color);
}

.page_thanks {
    background-color: var(--bg-lightblue-color);
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thanks_content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.thanks_content h3 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.thanks_content h2 {
    font-size: 3rem;
    font-weight: 700;

}

.thanks_content a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    padding: 1.5rem 8rem;
    background-color: var(--bg-blue-color);
    box-shadow: 0px 4px 0px 0px var(--bg-blue-color);
    font-size: 1.7rem;
    font-weight: 700;
    color: #FFF;
    border-radius: 99999px;
    margin-top: 5rem;
    border: 1px solid var(--bg-blue-color);
}

.thanks_content a:hover {
    background-color: var(--bg-white-color);
    background-image: none;
    color: var(--bg-font-color);
}

@media (max-width: 768px) {
    .thanks_content {
        gap: 20px;
        padding: 0 20px;
    }

    .thanks_content h2 {
        font-size: 1.5rem;
    }

    .thanks_content h3 {
        font-size: 1.5rem;
    }

    .thanks_content a {
        margin-top: 20px;
        padding: 15px 70px;
        font-size: 16px;
    }
}

@media (max-width: 450px) {
    .thanks_content h2 {
        font-size: 18px;
    }

    .thanks_content h3 {
        font-size: 20px;
    }

    .thanks_content a {
        font-size: 15px;
        padding: 15px 65px;
    }
}

/* -------page confirm, notify style------ */
.pg_notify,
.pg_confirm {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    width: 100%;
    height: calc(100vh - var(--headerH));
}

.pg_notify p,
.pg_confirm p {
    font-size: 3rem;
    font-weight: bold;
}

.pg_notify a,
.pg_confirm a {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 6rem;
    background-color: var(--bg-blue-color);
    border: 1px solid var(--bg-blue-color);
    border-radius: 9999px;
    color: var(--bg-white-color);
}

.pg_notify a:hover,
.pg_confirm a:hover {
    background-color: transparent;
    color: var(--bg-blue-color);
}


@media (max-width: 768px) {
    .pg_notify,
    .pg_confirm {
        gap: 2rem;
    }

    .pg_notify p,
    .pg_confirm p {
        font-size: 1.4rem;
    }

    .pg_notify a,
    .pg_confirm a {
        font-size: 1rem;
        padding: 1rem 3.5rem;
    }
}

@media (max-width: 450px) {
    .pg_notify,
    .pg_confirm {
        gap: 35px;
    }

    .pg_notify p,
    .pg_confirm p {
        font-size: 20px;
    }

    .pg_notify a,
    .pg_confirm a {
        font-size: 16px;
        padding: 10px 40px;
    }
}