@charset "utf-8";

/* Setting */
:root {
  /* 描画範囲 */
  --vw: 100vw;
  --vh: 100vh;

  /* コンテンツ幅 (余白を除く) */
  --cw: 1080px;

  /* コンテンツ左右余白 */
  --csp: 10px;

  /* マージン小 */
  --block1-gap: 20px;

  /* マージン中 */
  --block2-gap: 48px;

  /* マージン大 */
  --block3-gap: 72px;

  /* マージン特大 */
  --sec-gap: 120px;

  /* 段落間のマージン */
  --para-gap: 28px;

  /* フォント  */
  --gothic: 'Noto Sans JP', 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Meiryo', sans-serif;

  /* デフォルトフォント */
  --ff: var(--gothic);
  --fs: 16px;
  --fc: #333;
  --fl: 1.75;

  /* カラー */
  --color-link: #626f76;
  --color-visited: #800080;
  --blue: #668AC4;
  --dblue: #001A45;
  --dblue2: #012255;
  --lblue: #F5F8FF;
  --red: #d91819;
  --yellow: #FBF034;
  --green: #5E8E9F;
  --orange: #D65A43;
  --lorange: #F49C0F;
  --pink: #F69;
  --lgray: #f5f5f5;
  --gray: #666666;
  --brown: #7E5E1B;
  --lbrown: #D5B87D;
  --black: #333333;
  --white: #ffffff;
}
.has-myblue-color {color: var(--blue) !important;}
.has-myblue-background-color {background-color: var(--blue) !important;}
.has-mydblue-color {color: var(--dblue) !important;}
.has-mydblue-background-color {background-color: var(--dblue) !important;}
.has-mydblue2-color {color: var(--dblue2) !important;}
.has-mydblue2-background-color {background-color: var(--dblue2) !important;}
.has-mylblue-color {color: var(--lblue) !important;}
.has-mylblue-background-color {background-color: var(--lblue) !important;}
.has-myred-color {color: var(--red) !important;}
.has-myred-background-color {background-color: var(--red) !important;}
.has-myyellow-color {color: var(--yellow) !important;}
.has-myyellow-background-color {background-color: var(--yellow) !important;}
.has-mygreen-color {color: var(--green) !important;}
.has-mygreen-background-color {background-color: var(--green) !important;}
.has-myorange-color {color: var(--orange) !important;}
.has-myorange-background-color {background-color: var(--orange) !important;}
.has-mylorange-color {color: var(--lorange) !important;}
.has-mylorange-background-color {background-color: var(--lorange) !important;}
.has-mypink-color {color: var(--pink) !important;}
.has-mypink-background-color {background-color: var(--pink) !important;}
.has-mylgray-color {color: var(--lgray) !important;}
.has-mylgray-background-color {background-color: var(--lgray) !important;}
.has-mygray-color {color: var(--gray) !important;}
.has-mygray-background-color {background-color: var(--gray) !important;}
.has-mybrown-color {color: var(--brown) !important;}
.has-mybrown-background-color {background-color: var(--brown) !important;}
.has-mylbrown-color {color: var(--lbrown) !important;}
.has-mylbrown-background-color {background-color: var(--lbrown) !important;}
.has-myblack-color {color: var(--black) !important;}
.has-myblack-background-color {background-color: var(--black) !important;}
.has-mywhite-color {color: var(--white) !important;}
.has-mywhite-background-color {background-color: var(--white) !important;}
.red {color: var(--red);}
.gray {color: var(--gray);}

@media ( max-width: 768px ) {
  :root {
    --csp: 20px;
  }
}

@media ( max-width: 599px ) {
  :root {
    /* マージン小 */
    --block1-gap: 20px;

    /* マージン中 */
    --block2-gap: 36px;

    /* マージン大 */
    --block3-gap: 64px;

    /* マージン特大 */
    --sec-gap: 90px;

    /* 段落間のマージン */
    --para-gap: 28px;
  }
}
/* /Setting */



/* Initial */
body {word-wrap: break-word;margin: auto;font-size: var(--fs);line-height: var(--fl);font-family: var(--ff);font-weight: normal;text-align: justify;min-width: calc(var(--cw) + var(--csp)*2);color: var(--fc);position: relative;}
body.spmenu_active {overflow: hidden;}
a {color: var(--color-link);cursor: pointer;text-decoration: underline;}
a:hover {text-decoration: none;}
strong, b {font-family: var(--gothic-normal);font-weight: bold;}
sup {vertical-align: super;font-size: 0.7em;}
sub {vertical-align: sub;font-size: 0.7em;}
small {font-size: 0.6em;}
iframe {display: block;}

@media ( max-width: 768px ) {
  body {min-width: 0;}
  .pc {display: none !important;}
}

@media ( min-width: 769px ) {
  .sp {display: none !important;}
  a[href^="tel:"] {color: inherit;text-decoration: inherit;}
}

@media ( min-width: 600px ) {
  .sp599 {display: none !important;}
}

@media ( min-width: 480px ) {
  .sp480 {display: none !important;}
}
/* /Initial */



/* Common */
.mtp {margin-top: var(--para-gap) !important;}
.mt0 {margin-top: 0 !important;}
.mt10 {margin-top: 10px !important;}
.mt20 {margin-top: 20px !important;}
.mt30 {margin-top: 30px !important;}
.mt40 {margin-top: 40px !important;}
.mt50 {margin-top: 50px !important;}
.mt60 {margin-top: 60px !important;}
.mt70 {margin-top: 70px !important;}
.mt80 {margin-top: 80px !important;}
.mt90 {margin-top: 90px !important;}
.mt100 {margin-top: 100px !important;}
.mt110 {margin-top: 110px !important;}
.mt120 {margin-top: 120px !important;}
.mt-para-gap {margin-top: var(--para-gap) !important;}
.mt-csp-gap {margin-top: var(--csp-gap) !important;}
.mt-sec-gap {margin-top: var(--sec-gap) !important;}
.mt-block1-gap {margin-top: var(--block1-gap) !important;}
.mt-block2-gap {margin-top: var(--block2-gap) !important;}
.mt-block3-gap {margin-top: var(--block3-gap) !important;}
.mb0 {margin-bottom: 0 !important;}
.mb10 {margin-bottom: 10px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb70 {margin-bottom: 70px !important;}
.mb80 {margin-bottom: 80px !important;}
.mb90 {margin-bottom: 90px !important;}
.mb100 {margin-bottom: 100px !important;}
.mb110 {margin-bottom: 110px !important;}
.mb120 {margin-bottom: 120px !important;}
.mb-para-gap {margin-bottom: var(--para-gap) !important;}
.mb-csp-gap {margin-bottom: var(--csp-gap) !important;}
.mb-sec-gap {margin-bottom: var(--sec-gap) !important;}
.mb-block1-gap {margin-bottom: var(--block1-gap) !important;}
.mb-block2-gap {margin-bottom: var(--block2-gap) !important;}
.mb-block3-gap {margin-bottom: var(--block3-gap) !important;}
.ml0 {margin-left: 0 !important;}
.ml10 {margin-left: 10px !important;}
.ml20 {margin-left: 20px !important;}
.ml25 {margin-left: 25px !important;}
.ml30 {margin-left: 30px !important;}
.ml40 {margin-left: 40px !important;}
.ml50 {margin-left: 50px !important;}
.ml60 {margin-left: 60px !important;}
.ml70 {margin-left: 70px !important;}
.ml80 {margin-left: 80px !important;}
.ml90 {margin-left: 90px !important;}
.ml100 {margin-left: 100px !important;}
.ml110 {margin-left: 110px !important;}
.ml120 {margin-left: 120px !important;}
.fs10 {font-size: 10px !important;}
.fs11 {font-size: 11px !important;}
.fs12 {font-size: 12px !important;}
.fs13 {font-size: 13px !important;}
.fs14 {font-size: 14px !important;}
.fs15 {font-size: 15px !important;}
.fs16 {font-size: 16px !important;}
.fs17 {font-size: 17px !important;}
.fs18 {font-size: 18px !important;}
.fs19 {font-size: 19px !important;}
.fs20 {font-size: 20px !important;}
.fs21 {font-size: 21px !important;}
.fs22 {font-size: 22px !important;}
.fs23 {font-size: 23px !important;}
.fs24 {font-size: 24px !important;}
.fs25 {font-size: 25px !important;}
.fs26 {font-size: 26px !important;}
.fs27 {font-size: 27px !important;}
.fs28 {font-size: 28px !important;}
.fs29 {font-size: 29px !important;}
.fs30 {font-size: 30px !important;}
.pt-para-gap {padding-top: var(--para-gap) !important;}
.pt-csp-gap {padding-top: var(--csp-gap) !important;}
.pt-sec-gap {padding-top: var(--sec-gap) !important;}
.pt-block1-gap {padding-top: var(--block1-gap) !important;}
.pt-block2-gap {padding-top: var(--block2-gap) !important;}
.pt-block3-gap {padding-top: var(--block3-gap) !important;}
.pb-para-gap {padding-bottom: var(--para-gap) !important;}
.pb-csp-gap {padding-bottom: var(--csp-gap) !important;}
.pb-sec-gap {padding-bottom: var(--sec-gap) !important;}
.pb-block1-gap {padding-bottom: var(--block1-gap) !important;}
.pb-block2-gap {padding-bottom: var(--block2-gap) !important;}
.pb-block3-gap {padding-bottom: var(--block3-gap) !important;}
.pl-para-gap {padding-left: var(--para-gap) !important;}
.pl-csp-gap {padding-left: var(--csp-gap) !important;}
.pl-sec-gap {padding-left: var(--sec-gap) !important;}
.pl-block1-gap {padding-left: var(--block1-gap) !important;}
.pl-block2-gap {padding-left: var(--block2-gap) !important;}
.pl-block3-gap {padding-left: var(--block3-gap) !important;}
.pr-para-gap {padding-right: var(--para-gap) !important;}
.pr-csp-gap {padding-right: var(--csp-gap) !important;}
.pr-sec-gap {padding-right: var(--sec-gap) !important;}
.pr-block1-gap {padding-right: var(--block1-gap) !important;}
.pr-block2-gap {padding-right: var(--block2-gap) !important;}
.pr-block3-gap {padding-right: var(--block3-gap) !important;}
.p-para-gap {padding: var(--para-gap) !important;}
.p-csp-gap {padding: var(--csp-gap) !important;}
.p-sec-gap {padding: var(--sec-gap) !important;}
.p-block1-gap {padding: var(--block1-gap) !important;}
.p-block2-gap {padding: var(--block2-gap) !important;}
.p-block3-gap {padding: var(--block3-gap) !important;}
.ptb-para-gap {padding-top: var(--para-gap) !important;padding-bottom: var(--para-gap) !important;}
.ptb-csp-gap {padding-top: var(--csp-gap) !important;padding-bottom: var(--csp-gap) !important;}
.ptb-sec-gap {padding-top: var(--sec-gap) !important;padding-bottom: var(--sec-gap) !important;}
.ptb-block1-gap {padding-top: var(--block1-gap) !important;padding-bottom: var(--block1-gap) !important;}
.ptb-block2-gap {padding-top: var(--block2-gap) !important;padding-bottom: var(--block2-gap) !important;}
.ptb-block3-gap {padding-top: var(--block3-gap) !important;padding-bottom: var(--block3-gap) !important;}
.plr-para-gap {padding-left: var(--para-gap) !important;padding-right: var(--para-gap) !important;}
.plr-csp-gap {padding-left: var(--csp-gap) !important;padding-right: var(--csp-gap) !important;}
.plr-sec-gap {padding-left: var(--sec-gap) !important;padding-right: var(--sec-gap) !important;}
.plr-block1-gap {padding-left: var(--block1-gap) !important;padding-right: var(--block1-gap) !important;}
.plr-block2-gap {padding-left: var(--block2-gap) !important;padding-right: var(--block2-gap) !important;}
.plr-block3-gap {padding-left: var(--block3-gap) !important;padding-right: var(--block3-gap) !important;}
.center {text-align: center !important;}
.hidden {display: none !important;}
.noindent {text-indent: 0 !important;}
.ta-center {text-align: center !important;}
.ta-left {text-align: left !important;}
.ta-right {text-align: right !important;}
.word {display: inline-block !important;text-decoration: inherit;}
.thin {letter-spacing: -0.1em !important;}
.centerbox {width: max-content !important;max-width: 100% !important;margin-left: auto !important;margin-right: auto !important;}

@media ( max-width: 768px ) {
  .smt0 {margin-top: 0 !important;}
  .smt10 {margin-top: 10px !important;}
  .smt20 {margin-top: 20px !important;}
  .smt30 {margin-top: 30px !important;}
  .smt40 {margin-top: 40px !important;}
  .smt50 {margin-top: 50px !important;}
  .smt60 {margin-top: 60px !important;}
  .smt70 {margin-top: 70px !important;}
  .smt80 {margin-top: 80px !important;}
  .smt90 {margin-top: 90px !important;}
  .smt100 {margin-top: 100px !important;}
  .smt110 {margin-top: 110px !important;}
  .smt120 {margin-top: 120px !important;}
  .smb0 {margin-bottom: 0 !important;}
  .smb10 {margin-bottom: 10px !important;}
  .smb20 {margin-bottom: 20px !important;}
  .smb30 {margin-bottom: 30px !important;}
  .smb40 {margin-bottom: 40px !important;}
  .smb50 {margin-bottom: 50px !important;}
  .smb60 {margin-bottom: 60px !important;}
  .smb70 {margin-bottom: 70px !important;}
  .smb80 {margin-bottom: 80px !important;}
  .smb90 {margin-bottom: 90px !important;}
  .smb100 {margin-bottom: 100px !important;}
  .smb110 {margin-bottom: 110px !important;}
  .smb120 {margin-bottom: 120px !important;}
  .sml0 {margin-left: 0 !important;}
  .sml10 {margin-left: 10px !important;}
  .sml20 {margin-left: 20px !important;}
  .sml30 {margin-left: 30px !important;}
  .sml40 {margin-left: 40px !important;}
  .sml50 {margin-left: 50px !important;}
  .sml60 {margin-left: 60px !important;}
  .sml70 {margin-left: 70px !important;}
  .sml80 {margin-left: 80px !important;}
  .sml90 {margin-left: 90px !important;}
  .sml100 {margin-left: 100px !important;}
  .sml110 {margin-left: 110px !important;}
  .sml120 {margin-left: 120px !important;}
  .sfs10 {font-size: 10px !important;}
  .sfs11 {font-size: 11px !important;}
  .sfs12 {font-size: 12px !important;}
  .sfs13 {font-size: 13px !important;}
  .sfs14 {font-size: 14px !important;}
  .sfs15 {font-size: 15px !important;}
  .sfs16 {font-size: 16px !important;}
  .sfs17 {font-size: 17px !important;}
  .sfs18 {font-size: 18px !important;}
  .sfs19 {font-size: 19px !important;}
  .sfs20 {font-size: 20px !important;}
  .sfs21 {font-size: 21px !important;}
  .sfs22 {font-size: 22px !important;}
  .sfs23 {font-size: 23px !important;}
  .sfs24 {font-size: 24px !important;}
  .sfs25 {font-size: 25px !important;}
  .sfs26 {font-size: 26px !important;}
  .sfs27 {font-size: 27px !important;}
  .sfs28 {font-size: 28px !important;}
  .sfs29 {font-size: 29px !important;}
  .sfs30 {font-size: 30px !important;}
  .sp_center {text-align: center !important;}
  .sp_justify {text-align: justify !important;}
  .sp_left {text-align: justify !important;}
  .js-scrollable {white-space: nowrap;}
}

@media ( max-width: 599px ) {
  .sp599_justify {text-align: justify !important;}
}

@media ( max-width: 480px ) {
  .s480fs10 {font-size: 10px !important;}
  .s480fs11 {font-size: 11px !important;}
  .s480fs12 {font-size: 12px !important;}
  .s480fs13 {font-size: 13px !important;}
  .s480fs14 {font-size: 14px !important;}
  .s480fs15 {font-size: 15px !important;}
  .s480fs16 {font-size: 16px !important;}
  .s480fs17 {font-size: 17px !important;}
  .s480fs18 {font-size: 18px !important;}
  .s480fs19 {font-size: 19px !important;}
  .s480fs20 {font-size: 20px !important;}
  .s480fs21 {font-size: 21px !important;}
  .s480fs22 {font-size: 22px !important;}
  .s480fs23 {font-size: 23px !important;}
  .s480fs24 {font-size: 24px !important;}
  .s480fs25 {font-size: 25px !important;}
  .s480fs26 {font-size: 26px !important;}
  .s480fs27 {font-size: 27px !important;}
  .s480fs28 {font-size: 28px !important;}
  .s480fs29 {font-size: 29px !important;}
  .s480fs30 {font-size: 30px !important;}
}
/* /Common */



/* Gutenberg */
:is(.block_editor, .is-root-container) > * {max-width: var(--cw);margin-left: auto;margin-right: auto;}
:is(.block_editor, .is-root-container) > * + * {margin-top: var(--sec-gap);margin-bottom: 0;}
.wp-block-cover,
.wp-block-cover-image {min-height: 0;padding: 15px var(--csp);}
.wp-block-cover__inner-container {max-width: var(--cw);}
:is(.block_editor, .is-root-container) p:not(.noorg) {margin-top: var(--para-gap);}
:is(.block_editor, .is-root-container) p:not(.noorg) img {vertical-align: baseline;}
.wp-block-quote > :first-child {margin-top: 0 !important;}
.wp-block-quote > :last-child {margin-bottom: 0 !important;}
.wp-block-separator {margin: 30px auto;}
.wp-block-column > :first-child {margin-top: 0 !important;}
.wp-block-column > :last-child {margin-bottom: 0 !important;}
.wp-block-column > [class*="wp-block-lazyblock-"]:last-child > :last-child {margin-bottom: 0 !important;}
.wp-block-column > [class*="wp-block-lazyblock-"]:first-child > :first-child {margin-top: 0 !important;}
.blocks-gallery-grid {margin-bottom: 0 !important;}
.wp-block-column h3:not(.noorg) {padding: 0;}
.wp-block-separator.alignfull {width: var(--cw) !important;max-width: cals(100% - var(--csp)*2);}
.wp-block-spacer {margin: 0 !important;}
.alignfull {max-width: none;width: 100%;}
.wp-block-embed {margin-top: var(--para-gap) !important;}
.wp-block-gallery {margin-top: var(--para-gap);}
h2:not([class^="hd_"]).wp-block-heading, .hd_h2 {font-size: 34px;font-weight: normal;line-height: 1.5;margin-top: var(--sec-gap);border-top: 1px solid #e0e0e0;position: relative;padding: 30px 0 0;}
h2:not([class^="hd_"]).wp-block-heading::before, .hd_h2::before {content: "";display: block;position: absolute;top: 0;width: 132px;max-width: 40%;height: 4px;background: #1f3178;}
h3:not([class^="hd_"]).wp-block-heading, .hd_h3 {font-size: 28px;font-weight: normal;line-height: 1.6;color: #1f3178;border-left: 4px solid #dfe5f6;padding: 0 0 0 0.8em;margin-top: var(--block3-gap);}
h4:not([class^="hd_"]).wp-block-heading, .hd_h4 {font-size: 24px;font-weight: normal;line-height: 1.6;margin-top: var(--block2-gap);background: #f6f9fc;border-left: 0.7em solid #dfe5f6;padding: 0.25em 0.5em 0.25em 0.8em;}
h5:not([class^="hd_"]).wp-block-heading, .hd_h5 {font-size: 20px;font-weight: bold;margin-top: var(--block1-gap);}
h6:not([class^="hd_"]).wp-block-heading, .hd_h6 {font-size: var(--fs);font-weight: bold;margin-top: var(--block1-gap);}
:is(.block_editor, .is-root-container) ul:not(.noorg,[class^="list_"],[class*="block-editor-"]) {margin-top: var(--block1-gap);list-style: none;padding: 0;}
:is(.block_editor, .is-root-container) ul:not(.noorg,[class^="list_"],[class*="block-editor-"]) > li {position: relative;padding-left: 1.2em;margin: 0;}
:is(.block_editor, .is-root-container) ul:not(.noorg,[class^="list_"],[class*="block-editor-"]) > li:nth-child(n+2) {margin-top: 12px;}
:is(.block_editor, .is-root-container) ul:not(.noorg,[class^="list_"],[class*="block-editor-"]) > li::before {content: "";position: absolute;top: 0.65em;left: 0;width: 0.5em;height: 0.5em;background: #85c4d8;border-radius: 9999px;}
:is(.block_editor, .is-root-container) ol:not(.noorg,[class^="list_"],[class*="block-editor-"]) {margin-top: var(--block1-gap);}
:is(.block_editor, .is-root-container) ol:not(.noorg,[class^="list_"],[class*="block-editor-"]) > li {position: relative;padding-left: 1.5em;counter-increment: ol;margin: 0;}
:is(.block_editor, .is-root-container) ol:not(.noorg,[class^="list_"],[class*="block-editor-"]) > li:nth-child(n+2) {margin-top: 12px;}
:is(.block_editor, .is-root-container) ol:not(.noorg,[class^="list_"],[class*="block-editor-"]) > li::before {content: counter(ol)".";position: absolute;left: 0.5em;}
:is(.block_editor, .is-root-container) ol:not(.noorg,[class^="list_"],[class*="block-editor-"]) > li:nth-child(n+10)::before {left: 0;}
:is(.block_editor, .is-root-container) ol:not(.noorg,[class^="list_"],[class*="block-editor-"]) {counter-reset: ol;list-style: none;padding: 0;}
:is(.block_editor, .is-root-container) .wp-block-table:not(.noorg) {margin-top: var(--para-gap);}
:is(.block_editor, .is-root-container) .wp-block-table:not(.noorg) table {border-left: 1px solid #e4e4e4;border-right: 1px solid #e4e4e4;}
:is(.block_editor, .is-root-container) .wp-block-table:not(.noorg) td {padding: 20px;}
:is(.block_editor, .is-root-container) .wp-block-table:not(.noorg) th {background: #f2f2f2;padding: 20px;width: 160px;}
:is(.block_editor, .is-root-container) .wp-block-table:not(.noorg) tr > * {border: 1px solid #e4e4e4;border-left: none;border-right: none;}
:is(.block_editor, .is-root-container) .wp-block-table:not(.noorg) :is(thead, tfoot) {border: none;}
:is(.block_editor, .is-root-container) .wp-block-image {margin-top: var(--para-gap);}
:is(.block_editor, .is-root-container) .wp-block-quote {margin-top: var(--para-gap);}
.has-normal-font-size {font-size: var(--fs) !important;}
.has-medium-font-size {font-size: 20px;}
.wp-block-cover__inner-container > :first-child,
.wp-block-cover__inner-container > [class*="wp-block-lazyblock"]:first-child > :first-child {margin-top: 0 !important;}
.wp-block-cover__inner-container > :last-child, .wp-block-cover__inner-container > [class*="wp-block-lazyblock"]:last-child > :last-child {margin-bottom: 0 !important;}
figure {margin: 0;}
[class*="wp-block-lazyblock"] {margin-top: 0;}
.wp-block[data-type="core/widget-area"] {max-width: var(--cw);}
.blocks-widgets-container .editor-styles-wrapper {max-width: none;}

@media ( max-width: 781px ) {
  .wp-block-columns {gap: var(--block1-gap) 0;}
}

@media ( max-width: 768px ) {
  :is(.block_editor, .is-root-container) > * {padding-left: var(--csp);padding-right: var(--csp);}
  :is(.block_editor, .is-root-container) .alignfull.wp-block-image {padding-left: 0;padding-right: 0;}
  :is(.block_editor, .is-root-container) > .wp-block-cover:not(.alignfull) {margin-left: var(--csp);margin-right: var(--csp);width: calc(100% - var(--csp)*2) !important;}
  h2:not([class^="hd_"]).wp-block-heading, .hd_h2 {margin-left: var(--csp);margin-right: var(--csp);}
  h3:not([class^="hd_"]).wp-block-heading, .hd_h3 {margin-left: var(--csp);margin-right: var(--csp);}
  h4:not([class^="hd_"]).wp-block-heading, .hd_h4 {margin-left: var(--csp);margin-right: var(--csp);}
  :is(.block_editor, .is-root-container) ul:not(.noorg):not([class^="list_"]) {margin-left: var(--csp);margin-right: var(--csp);}
  :is(.block_editor, .is-root-container) ol:not(.noorg):not([class^="list_"]) {margin-left: var(--csp);margin-right: var(--csp);}
}

@media ( max-width: 599px ) {
  h2:not([class^="hd_"]).wp-block-heading, .hd_h2 {font-size: 26px;padding: 24px 0 0;}
  h2:not([class^="hd_"]).wp-block-heading::before, .hd_h2::before {width: 77px;}
  h3:not([class^="hd_"]).wp-block-heading, .hd_h3 {font-size: 24px;}
  h4:not([class^="hd_"]).wp-block-heading, .hd_h4 {font-size: 22px;}
}

@media ( max-width: 480px ) {
  .wp-block-table--sp480_tandem tr > * {display: block;}
  .wp-block-table--sp480_tandem th {width: auto !important;border-bottom: none !important;padding: 10px 15px !important;}
  .wp-block-table--sp480_tandem td {border-bottom: none !important;padding: 10px 15px !important;}
  .wp-block-table--sp480_tandem table {border-bottom: 1px solid #e4e4e4;}
}
/* /Gutenberg */



/* Gutenberg Editor */
.is-root-container {word-wrap: break-word;font-size: var(--fs);line-height: var(--fl);font-family: var(--ff);text-align: justify;color: var(--fc);}
.lazyblock.wp-block {background: inherit;}
/* /Gutenberg Editor */



/* Header */
.header {position: relative;}
.header:not(.header--child) {min-height: 500px;}
.header__toparea {position: absolute;top: 0;margin: auto;max-width: var(--cw);width: 100%;left: 50%;transform: translateX(-50%);z-index: 3;display: flex;gap: 10px;justify-content: space-between;}
.header__logo_wrapper {padding-top: 15px;}
.logo a {transition: .3s;}
.logo a:hover {opacity: .7;}
.logo img {filter: drop-shadow(0 0 6px white);}

@media ( max-width: 768px ) {
  .header {--toparea_height: 74px;margin-top: calc(var(--toparea_height) - 1px);}
  .header__toparea {background: #fff;z-index: 99999;position: fixed;top: 0;left: 0;right: 0;transform: none;box-shadow: 0 0 8px rgb(0 0 0 / 50%);}
  .header__logo_wrapper {padding: 10px 15px;}
  .logo {width: 166px;}
}

@media ( max-width: 425px ) {
  .header {--toparea_height: 17.41176470588235vw;}
  .header .logo {width: 39.05882352941176vw;}
  .header__logo_wrapper {padding: 2.352941176470588vw 3.529411764705882vw;}
}

.iconmenu__inner {display: flex;}
.iconmenu .menu__itemlink {display: flex;align-items: center;justify-content: center;height: 100%;text-decoration: none;padding: 5px;transition: .3s;}
.iconmenu .menu__itemlink:hover {opacity: .7;}
.iconmenu .menu__itemIcon {display: flex;min-height: 48px;justify-content: center;align-items: center;}
.iconmenu .menu__itemMainText {display: block;}
.iconmenu {font-size: 20px;text-align: center;line-height: 1;background: #fff;}
.iconmenu .menu__item {min-width: 140px;min-height: 82px;}

@media ( min-width: 769px ) {
  .iconmenu .menu__itemShortText {display: none !important;}
  .menu__sp_menu_btn {display: none !important;}
}

@media ( max-width: 768px ) {
  .iconmenu {font-size: 15px;}
  .iconmenu .menu__item {min-width: 74px;min-height: calc(var(--toparea_height) - 1);}
  .iconmenu .menu__item--pc {display: none !important;}
  .iconmenu .menu__itemShortText + .menu__itemMainText {display: none;}
  .iconmenu .menu__sp_menu_btn {background: var(--bgcolor);position: relative;}
  .menu__sp_menu_btn_line {height: 2px;background: #fff;width: 41.66666666666667%;position: absolute;left: 50%;transform: translateX(-50%);}
  .menu__sp_menu_btn_line:nth-child(1) {animation: spmenubtn1-close .5s forwards;top: 25px;}
  .menu__sp_menu_btn_line:nth-child(2) {animation: spmenubtn2-close .5s forwards;top: 50%;}
  .menu__sp_menu_btn_line:nth-child(3) {animation: spmenubtn3-close .5s forwards;top: 50px;}
  .spmenu_active .menu__sp_menu_btn_line:nth-child(1) {animation: spmenubtn1 .5s forwards;}
  .spmenu_active .menu__sp_menu_btn_line:nth-child(2) {animation: spmenubtn2 .5s forwards;}
  .spmenu_active .menu__sp_menu_btn_line:nth-child(3) {animation: spmenubtn3 .5s forwards;}

  @keyframes spmenubtn1 {
    50% {top: 50%;transform: translate(-50%) rotate(0deg);}
    100% {top: 50%;transform: translate(-50%) rotate(45deg);}
  }

  @keyframes spmenubtn2 {
    100% {opacity: 0;}
  }

  @keyframes spmenubtn3 {
    50% {top: 50%;transform: translate(-50%) rotate(0deg);}
    100% {top: 50%;transform: translate(-50%) rotate(-45deg);}
  }

  @keyframes spmenubtn1-close {
    0% {top: 50%;transform: translate(-50%) rotate(45deg);}
    50% {top: 50%;transform: translate(-50%) rotate(0deg);}
    100% {top: 25px;transform: translate(-50%) rotate(0deg);}
  }

  @keyframes spmenubtn2-close {
    0% {opacity: 0;}
    100% {opacity: 1;}
  }

  @keyframes spmenubtn3-close {
    0% {top: 50%;transform: translate(-50%) rotate(-45deg);}
    50% {top: 50%;transform: translate(-50%) rotate(0deg);}
    100% {top: 50px;transform: translate(-50%) rotate(0deg);}
  }
}

@media ( max-width: 425px ) {
  .iconmenu {font-size: 3.529411764705882vw;}
  .iconmenu .menu__item {min-width: 17.41176470588235vw;}
  .iconmenu .menu__itemlink {padding: 1.176470588235294vw;}
  .iconmenu .menu__itemIcon {min-height: 11.29411764705882vw;}
  .iconmenu .menu__itemIcon img {width: 8vw;}
  .menu__sp_menu_btn_line:nth-child(1) {top: 5.882352941176471vw;}
  .menu__sp_menu_btn_line:nth-child(3) {top: 11.76470588235294vw;}
  .menu__sp_menu_btn_line {height: 0.4705882352941176vw;}

  @keyframes spmenubtn1-close {
    0% {top: 50%;transform: translate(-50%) rotate(45deg);}
    50% {top: 50%;transform: translate(-50%) rotate(0deg);}
    100% {top: 5.882352941176471vw;transform: translate(-50%) rotate(0deg);}
  }

  @keyframes spmenubtn3-close {
    0% {top: 50%;transform: translate(-50%) rotate(-45deg);}
    50% {top: 50%;transform: translate(-50%) rotate(0deg);}
    100% {top: 11.76470588235294vw;transform: translate(-50%) rotate(0deg);}
  }
}

@media ( min-width: 769px ) {
  .spmenu {display: none !important;}
}

@media ( max-width: 768px ) {
  .spmenu {position: absolute;top: var(--toparea_height);left: 0;right: 0;height: 0;background: #fff;overflow-y: scroll;transition: .3s;}
  .spmenu_active .spmenu {height: calc(var(--vh) - var(--toparea_height));}
  .spmenu .menu__item a {display: flex;font-size: 19px;font-weight: bold;line-height: 1.2;color: #008dd7;text-decoration: none;padding: 5px 50px 5px 20px;position: relative;align-items: center;min-height: 70px;}
  .spmenu .menu__item {border-bottom: 1px solid #c5cfd5;}
  .spmenu .menu__item a::after {content: "";position: absolute;background: url(/img/icon-arrow-box-lblue-white.svg) center/contain no-repeat;width: 18px;height: 18px;top: 50%;transform: translateY(-50%);right: 20px;}
  .spmenu .menu__subitem a {display: flex;font-size: 16px;line-height: 1.2;text-decoration: none;color: #333;padding: 5px 50px 5px 20px;position: relative;min-height: 50px;align-items: center;}
  .spmenu .menu__subitem a::after {content: "";background: url(/img/icon-arrow-graygreen.svg) center/contain no-repeat;width: 8px;height: 14px;position: absolute;top: 50%;transform: translateY(-50%);right: 25px;}
  .spmenu .menu__subitem {border-bottom: 1px solid #c5cfd5;}
}

.mv {position: relative;aspect-ratio: 1920/720;display: flex;align-items: center;user-select: none;}
.mv__slide {position: absolute !important;top: 0;left: 0;width: 100%;height: 100%;}
.mv__imgstr {position: relative;z-index: 2;max-width: var(--cw);width: 100%;margin: auto;}
.mv__slide_img {width: 100%;height: 100%;object-fit: cover;}
.mv__slide_img_wrapper {width: 100%;height: 100%;}

.mv_child {min-height: 420px;display: flex;justify-content: center;align-items: center;padding: 90px var(--csp);position: relative;}
.mv_child__bg {position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: #A5C1DC;}
.mv_child__bg img {width: 100%;height: 100%;object-fit: cover;opacity: .8;}
.mv_child__title {position: relative;z-index: 1;color: #fff;text-align: center;text-shadow: 0 0 20px rgb(0 0 0 / 50%);}
.mv_child__engtitle {display: block;font-size: 20px;font-weight: 300;line-height: 1.5;}
.mv_child__jptitle {display: block;font-size: 54px;font-weight: bold;line-height: 1.2;}

@media ( max-width: 768px ) {
  .mv {aspect-ratio: 1536/1000;}
}

@media ( max-width: 599px ) {
  .mv_child__jptitle {font-size: 34px;}
}

@media ( max-width: 480px ) {
  .mv {aspect-ratio: 1/1;}
}

.gn {width: 100%;max-width: var(--cw);margin: 0 auto calc(var(--gn-height) / 2 * -1);background: #1f3178;color: #fff;border-radius: 10px;box-shadow: 0 3px 6px rgb(0 0 0 / 16%);font-size: 16px;font-weight: bold;text-align: center;line-height: 1;position: relative;transform: translateY(-50%);z-index: 4;}
.gn__inner {display: flex;}
.gn .menu__item {width: 100%;min-height: 74px;position: relative;}
.gn .menu__itemlink {color: inherit;text-decoration: none;display: flex;justify-content: center;align-items: center;height: 100%;transition: .3s;}
.gn .menu__item:nth-child(n+1)::before {content: "";position: absolute;top: 5px;bottom: 5px;left: 0;width: 1px;background: #525f8f;}
.gn .menu__itemSubText {display: block;font-weight: 300;font-size: 0.75em;}
.gn .menu__itemMainText {display: block;margin-top: 0.4em;}
.gn .menu__itemlink:hover, .gn .menu__item--current .menu__itemlink {background: rgb(255 255 255 / 16%);}

@media ( max-width: 768px ) {
  .mv__imgstr {padding: 0 var(--csp);}
  .gn {margin: 0 auto;transform: none;border-radius: 0;font-size: 14px;}
  .gn .menu__item {min-height: 75px;}
}

@media ( max-width: 599px ) {
  .gn {font-size: 12px;}
}

@media ( max-width: 480px ) {
  .gn {font-size: 15px;line-height: 1.3;}
  .gn .menu__itemSubText {display: none;}
  .gn .menu__itemMainText {margin: 0;}
}

@media ( max-width: 374px ) {
  .gn {font-size: 13px;}
  .gn .menu__item {min-height: 60px;}
}
/* /Header */



/* Footer */
.footer {border-top: 3px solid #1f3178;}
.footer__main {max-width: var(--cw);margin: auto;display: flex;justify-content: space-between;gap: 30px;padding: 35px 0;}

.footer__address {margin-top: var(--para-gap);}

.fmn {font-size: 12px;color: #616161;line-height: 1.4;white-space: nowrap;margin-top: var(--para-gap);}
.fmn .menu__item {position: relative;padding-left: 12px;}
.fmn .menu__item::before {content: "";position: absolute;top: 50%;transform: translateY(-50%);left: 0;width: 4px;height: 6px;background: url(/img/icon-arrow-gray.svg) center/contain no-repeat;}
.fmn .menu__itemlink {text-decoration: none;clear: inherit;}
.fmn .menu__itemlink:hover {text-decoration: underline;}

.fn {display: flex;gap: 60px;justify-content: flex-end;font-size: 18px;color: #1F3178;line-height: 1.3;}
.fn .menu__itemlink {color: inherit;text-decoration: none;position: relative;padding-right: 24px;display: inline-block;}
.fn .menu__itemlink::after {content: "";position: absolute;top: 50%;transform: translateY(-50%);right: 8px;width: 7px;height: 14px;background: url(/img/icon-arrow-blue.svg) center/contain no-repeat;transition: .3s;}
.fn .menu__itemlink:hover {text-decoration: underline;}
.fn .menu__itemlink:hover::after {right: 0;}
.fn .menu__subitem {font-size: 0.777em;color: #333333;max-width: 15em;margin-top: 0.8em;}
.fn .menu__subitemlink {color: inherit;text-decoration: none;}
.fn .menu__subitemlink:hover {text-decoration: underline;}
.fn .menu__item:not(:first-child) {margin-top: 1em;}

.copyright {font-size: 12px;text-align: center;line-height: 1.5;background: #1f3178;color: #fff;padding: 8px var(--csp);}

@media ( max-width: 768px ) {
  .fn {display: block;padding: 0 var(--csp);margin-top: var(--block2-gap);line-height: 1.2;}
  .fn .menu__itemlink {display: flex;max-width: max-content;width: 100%;padding: 5px 24px 5px 0;min-height: 70px;align-items: center;}
  .footer__main {display: block;padding: 30px var(--csp);}
  .footer__left {padding: 0 var(--csp);}
  .footer .logo {margin: auto;width: 211px;}
  .footer__address {max-width: max-content;width: 100%;margin: var(--para-gap) auto 0;}
  .fn .menu__item {border-top: 1px solid #dfdfdf;margin: 0 !important;}
  .fn .menu__subitem {max-width: none;}
  .fn .menu__subitem:last-child {margin-bottom: 1.7em;}
  .fn > .menu__itemWrapper:last-child, .fn > .menu__item:last-child {border-bottom: 1px solid #dfdfdf;}
}
/* /Footer */



/* Form */
:is(.form input, .form textarea)::placeholder {color: #B7B6B6;}
.form {margin: var(--block1-gap) auto;}
.form-body {max-width: var(--inner-width);margin: auto;}
.form-field {overflow: hidden;width: 100%;}
.form-field-row {display: block;}
.form-field-row + .form-field-row {margin-top: var(--para-gap);}
.form-row {display: flex;gap: var(--para-gap);align-items: center;border: 1px solid #E6E6E6;border-left: none;border-right: none;padding: var(--para-gap) 0;margin: -1px 0;}
.form-row-l {width: 180px;flex-shrink: 0;}
.form-row-l {width: auto;}
.form-row-r {overflow: hidden;width: 100%;}
.form input#year {display: inline-block !important;width: auto !important;}
.form input:checked + .mwform-radio-field-text {border-color: #626f76;}
.form input:checked+.mwform-radio-field-text::after {content: "";position: absolute;top: 50%;left: 5px;transform: translateY(-50%);color: #f49c0f;width: 33px;height: 33px;background: url(../img/icon-radiochecked2.svg) center/contain no-repeat;}
.form input[type="checkbox"] {width: 20px;height: 20px;border: 1px solid;border-radius: 5px;position: relative;top: 4px;cursor: pointer;}
.form input[type="checkbox"]:checked::after {content: "✓";position: absolute;top: -5px;left: 3px;color: #002b84;font-weight: bold;}
.form input[type="number"] {margin-right: 10px;}
.form input[type="text"], .form input[type="email"], .form textarea, .form input[type="number"], .form select {background: #F4F4F4;border: none;font-family: var(--noto);font-weight: normal;font-size: 18px;line-height: 1.2;padding: 10px 20px;display: flex;align-items: center;min-height: 57px;width: 100%;}
.form select {cursor: pointer;background: url(../img/icon-arrow-select.svg) right 10px center/17px 6px no-repeat #F4F4F4;padding-right: 40px;}
.form textarea {min-height: calc(1.2em * 12);}
.form .error {clear: both;width: 100%;background: #FFEBED;font-size: 16px;font-weight: normal;line-height: 1.3;color: var(--red);padding: 15px;}
.form-error input[type="text"], .form-error input[type="email"], .form-error textarea, .form-error input[type="number"] {border-color: #D83434;}
.form-ajaxzip {background: #002B84;border: 3px solid #002B84;color: #fff;font-family: var(--zenmin);font-weight: 900;font-size: 14px;padding: 10px 20px;border-radius: 4px;cursor: pointer;transition: .3s;}
.form-ajaxzip:hover {opacity: .6;}
.form-ajaxzip:focus {border-color: #9E9E9E;}
.form-blank-wrapper {display: flex;align-items: center;}
.form-blank-wrapper input[type="number"] {width: 5em;}
.form-hosoku {padding: var(--para-gap) 0 0;text-align: center;}
.form-list th {background: #F4F4F4;padding: 20px 10px;text-align: center;font-weight: bold;border: 1px solid #E6E6E6;}
.form-list thead tr:last-child > * {border-bottom: none !important;}
.form-list tbody tr > :last-child {width: 10px;white-space: nowrap;}
.form-list tr:first-child > * {border-top: none !important;overflow: hidden;}
.form-list tr > :first-child {border-left: none !important;}
.form-list tr > :last-child {border-right: none !important;}
.form-list tfoot td {border: none !important;}
.form-notice {margin-top: var(--para-gap);margin-bottom: 10px !important;width: 100%;}
.form-field > .form-notice:first-child {margin-top: 0 !important;}
.form-notice2 {margin-top: var(--block2-gap) !important;font-family: var(--zenmin);font-size: 21px;font-weight: bold;line-height: 1.5;}
.form-notice3 {margin-top: 0 !important;}
.form-notice3-head {display: block;font-weight: bold;}
.form-radio-wrapper {display: flex;flex-wrap: wrap;gap: 10px;}
.form-radio-wrapper .mwform-radio-field {float: none;margin: 0 !important;}
.form-radio-wrapper .mwform-radio-field label {width: auto;}
.form-reki-wrapper {display: flex;align-items: center;}
.form-reki-wrapper input[type="number"] {width: 5em;}
.form-row > label {font-family: var(--zenmin);font-weight: bold;color: #707070;width: 190px;flex-shrink: 0;}
.form-row > label.required::after {content: "必須";display: inline-block;font-family: var(--noto);font-size: 11px;font-weight: bold;line-height: 1;color: #fff;background: #BE5F5F;padding: 2px 4px;margin-left: 10px;}
.form-seimei > input {width: calc((100% - var(--gap)) / 2) !important;}
.form-seimei {display: flex;justify-content: space-between;flex-wrap: wrap;--gap: 10px;gap: 10px;}
.form-year {display: flex;align-items: center;flex-wrap: wrap;}
.form-zip-wrapper {display: flex;gap: 30px;align-items: center;flex-wrap: wrap;}
.form-zipbtn {background: #efefef;padding: 5px 10px;border-radius: 4px;border: 1px solid #888;cursor: pointer;}
.form-head {font-family: var(--zenmin);font-size: 34px;font-weight: bold;line-height: 1.294117647058824;color: #604343;}
.form-list {width: 100%;}
.form-list td {border: 1px solid #E6E6E6;text-align: center;padding: 10px;}
.form-radio-wrapper-1col .mwform-radio-field label {width: 100%;}
.form-radio-wrapper-1col .mwform-radio-field {width: 100% !important;margin-left: 0 !important;}
.form-radio-wrapper-1col .mwform-radio-field-text {width: 100%;}
.form-radio-wrapper-1col .mwform-radio-field:nth-child(n+2) {margin-top: 10px !important;}
.form-reki-wrapper .error {margin-left: 10px;}
.form-blank-wrapper .error {margin-left: 10px;}
.mw_wp_form {margin-top: var(--block1-gap);margin-bottom: var(--sec-gap);}
.mw_wp_form_confirm #order_list-items td {text-align: left;border: none;border-bottom: 1px solid #888;}
.mw_wp_form_confirm #order_list-result {background: none;font-size: 2em;padding: 0;min-width: 0;line-height: 1.3;}
.mw_wp_form_confirm .form-field {font-size: 24px;font-weight: bold;}
.mw_wp_form_confirm .form-row > label::after {content: none !important;}
.mw_wp_form_confirm .form-row label.required::after {content: none;}
.mw_wp_form_confirm .form-row {padding-bottom: 15px;border: none;display: block;padding: 0;}
.mw_wp_form_confirm .form-row-l a {color: inherit;text-decoration: none;pointer-events: none;}
.mw_wp_form_confirm .form-row-l a::after {content: none;}
.mw_wp_form_confirm .form-row-r {font-weight: bold;font-size: 1.3em;}
.mw_wp_form_confirm .form-row:nth-child(n+2) {margin-top: 15px;border-top: 1px solid #ddd;padding-top: 15px;}
.mw_wp_form_confirm .mw_wp_form_confirm-hidden {display: none !important;}
.mw_wp_form_confirm .mw_wp_form_confirm-visible {display: block !important;}
.mw_wp_form_confirm .order_list-result-wrapper {align-items: flex-end;}
.mwform-checkbox-field label {cursor: pointer;}
.mwform-radio-field input {display: none;}
.mwform-radio-field {display: flex !important;float: left;margin-top: 0 !important;}
.mwform-radio-field-text {display: flex;border: 1px solid #E1DDDD;background: #fff;font-family: var(--noto);font-size: 18px;font-weight: normal;line-height: 1.1;align-items: center;padding: 10px 10px 10px 45px;position: relative;user-select: none;cursor: pointer;width: 185px;min-height: 66px;text-align: left;border-radius: 5px;}
.mwform-radio-field-text::before {content: "";position: absolute;top: 50%;transform: translateY(-50%);left: 5px;width: 33px;height: 33px;border-radius: 9999px;background: #F4F4F4;}
.mwform-tel-field input[type="text"] {width: 6em;}
.mwform-tel-field {display: flex;align-items: center;gap: 1em;}
.mwform-zip-field input[type="text"] {width: 6em;}
.mwform-zip-field {display: flex;gap: 1em;align-items: center;}
.form-field-dates-row {display: flex;align-items: center;gap: 10px;}
.form-field-dates-input {display: flex;align-items: center;}
.form-field-dates .form-field-dates-input input {font-size: 13px;padding: 0;width: auto;min-height: 3em;}
.form-field-dates .form-field-dates-input input[name*="date"] {width: 10em;padding-left: 0.8em;}
.form-field-dates .form-field-dates-input input[name*="hour"], .form-field-dates .form-field-dates-input input[name*="min"] {width: 3em;margin-right: 5px;margin-left: 10px;padding-left: 0.5em;}
.form-field-wrapper > :nth-child(n+2) {margin-top: var(--para-gap);}
.form-reki {display: flex;align-items: baseline;gap: 10px;}
.form-reki input {width: 5em !important;}
.form_btns {display: flex;flex-wrap: wrap;justify-content: center;gap: 20px;margin-top: var(--block2-gap);}
.form_btn__btn {font-size: 22px;font-weight: bold;line-height: 1.2;text-align: center;background: #002b84;color: #fff;position: relative;padding: 8px 50px;min-width: 351px;min-height: 66px;border-radius: 10px;transition: .3s;cursor: pointer;}
.form_btn__btn::after {content: "";position: absolute;top: 50%;transform: translateY(-50%);right: 14px;width: 24px;height: 24px;background: url(/img/icon-arrow-box-white-blue.svg) center/contain no-repeat;transition: .3s;}
.form_btn__btn:hover {opacity: .7;}
.form_btn__btn:hover::after {right: 4px;}
.form_btn__btn--back {background: #888;min-width: 180px;}
.form_btn__btn--back::after {content: none;}
.form__confirm_message {display: none;border: 1px solid #009d2c;background: #e6ffe1;font-size: 18px;padding: 10px 20px;margin-bottom: var(--para-gap);}

@media (max-width: 768px) {
  .form-list th {font-size: 12px;padding: 5px;}
  .form-radio-wrapper .mwform-radio-field label {width: 100%;}
  .form-radio-wrapper .mwform-radio-field {width: calc((100% - 10px) / 2);}
  .form-row {align-items: flex-start;}
  .mwform-radio-field-text {width: 111px;}
  .mwform-tel-field input[type="text"] {width: calc((100% - 3em) / 3);padding: 10px;}
  .mwform-tel-field {gap: 0.5em;}
  .mwform-zip-field {gap: 0.5em;}
  .order_list-itemnum {font-size: 12px !important;width: auto !important;padding: 5px !important;min-height: 34px !important;}
  .order_list-price {padding: 5px;min-width: 60px;}
  .form-field-dates-row {display: block;}
  .form_btn__btn {font-size: 18px;min-width: 0;min-height: 0;padding: 5px 40px;border-radius: 8px;min-width: 200px;min-height: 40px;}
  .form_btn__btn::after {width: 15px;height: 15px;}
  .form_btn__btn--back {min-width: 120px;}
}

@media ( max-width: 599px ) {
  .form-radio-wrapper .mwform-radio-field {width: 100%;}
  .form-row > label {width: 100%;}
  .form-row {flex-direction: column;align-items: flex-start;}
}

@media ( max-width: 374px ) {
  .form_btn__btn {font-size: 16px;min-width: 160px;}
  .form_btn__btn--back {min-width: 100px;padding: 5px 20px;}
}
/* /Form */



/* パンくずリスト */
.breadcrumbs {max-width: var(--cw);margin: 15px auto 0;font-size: 11px;font-weight: 300;color: #1D1D1D;line-height: 1.3;position: relative;z-index: 2;}
.breadcrumbs a {text-decoration: none;color: inherit;}
.breadcrumbs a:hover {text-decoration: underline;}

@media ( max-width: 768px ) {
  .breadcrumbs {padding: 0 var(--csp);}
}
/* /パンくずリスト */



/* カスタマイズギャラリー */
.my_gallery {display: flex;--num: 3;--gap: 10px;--gap_tate: 10px;--img_height: auto;gap: var(--gap_tate) var(--gap);flex-wrap: wrap;list-style: none;}
.my_gallery__item {width: calc( ( 100% - var(--gap) * ( var(--num) - 1 ) ) / var(--num) );}
.my_gallery__item a {display: block;text-decoration: none;color: inherit;transition: .3s;}
.my_gallery__item a:hover {opacity: .7;}
.my_gallery__img_wrapper {height: var(--img_height);}
.my_gallery__img {width: 100%;height: 100% !important;object-fit: cover;}
.my_gallery__caption {max-width: 100%;width: max-content;margin: auto;font-weight: bold;text-align: justify;font-size: 18px;line-height: 1.5;}
.my_gallery__pagetitle {font-size: 20px;font-weight: bold;line-height: 1.2;}
.my_gallery--notfound {text-align: center;margin-top: var(--para-gap);font-size: 18px;}

.my_gallery__item--private {position: relative;pointer-events: none !important;}
.my_gallery__item--private .my_gallery__img_wrapper {position: relative;}
.my_gallery__item--private .my_gallery__img_wrapper::before {content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: #fff;opacity: 0.5;}
.my_gallery__item--private .my_gallery__img_wrapper::after {font-weight: bold;position: absolute;top: 0;left: 0;width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;color: #666;}
.my_gallery--recruit .my_gallery__item--private .my_gallery__img_wrapper::after {content: "現在は募集しておりません";}

.my_gallery--posts .my_gallery__text_wrapper {background: #fff;border-radius: 5px;width: calc(100% - 26px);margin: -15px auto 0;box-shadow: 0 3px 6px rgb(0 0 0 / 16%);padding: 14px 16px;position: relative;z-index: 1;}
.my_gallery--posts .my_gallery__pagetitle {position: relative;padding-left: 34px;}
.my_gallery--posts .my_gallery__pagetitle::before {content: "";position: absolute;top: 0;left: 0;width: 24px;height: 24px;background: url(/img/icon-arrow-box-blue-white.svg) center/contain no-repeat;}
.my_gallery--posts .my_gallery__pagetitle + .my_gallery__text {margin-top: 0.6em;}
.my_gallery--posts .my_gallery__text {font-size: 16px;font-weight: normal;line-height: 1.375;}

.my_gallery--posts2 .my_gallery__text_wrapper {background: #fff;border-radius: 5px;width: calc(100% - 26px);margin: -15px auto 0;box-shadow: 0 3px 6px rgb(0 0 0 / 16%);padding: 14px 16px;position: relative;z-index: 1;}
.my_gallery--posts2 .my_gallery__text::before {content: "";position: absolute;bottom: -5px;right: -10px;width: 24px;height: 24px;background: url(/img/icon-arrow-box-blue-white.svg) center/contain no-repeat;}
.my_gallery--posts2 .my_gallery__pagetitle + .my_gallery__text {margin-top: 0.6em;}
.my_gallery--posts2 .my_gallery__text {font-size: 16px;font-weight: normal;line-height: 1.375;position: relative;padding-right: 25px;}

.my_gallery--posts_blueframe .my_gallery__caption {position: relative;padding-left: 34px;width: 100%;font-size: 20px;font-weight: bold;line-height: 1.2;color: #1F3178;text-overflow: ellipsis;white-space: nowrap;overflow: hidden;}
.my_gallery--posts_blueframe .my_gallery__caption::before {content: "";position: absolute;top: 0;left: 0;width: 24px;height: 24px;background: url(/img/icon-arrow-box-blue-white.svg) center/contain no-repeat;}
.my_gallery--posts_blueframe .my_gallery__img {border: 5px solid #1f3178;}
.my_gallery--posts_blueframe .my_gallery__fig {display: flex;flex-direction: column-reverse;}
.my_gallery--posts_blueframe .my_gallery__img_wrapper {margin-top: 10px;}
.my_gallery--posts_blueframe .my_gallery__text {font-size: 16px;line-height: 1.5;padding: 0 12px;margin-top: 10px;}

.my_gallery--simplegray .my_gallery__caption {background: #f0f0f1;color: #1f3178;width: auto;text-align: center;padding: 5px 10px;}

@media ( max-width: 480px ) {
  .my_gallery--posts .my_gallery__text_wrapper {width: auto;border-radius: 0;}
  .my_gallery--posts2 .my_gallery__text_wrapper {width: auto;border-radius: 0;}
}
/* /カスタマイズギャラリー */



/* お知らせ */
.news__item {display: flex;border-top: 2px solid #efefef;padding: 18px 0;}
.news__date {flex-shrink: 0;width: 130px;font-size: 12px;font-weight: bold;line-height: 1.5;}
.news__head {font-size: 16px;font-weight: bold;line-height: 1.5;}
.news__content p {line-height: 1.5;}
.news__content > :first-child {margin-top: 0 !important;}
.news__content {margin-top: 12px;}
.news__item:last-child {border-bottom: 2px solid #efefef;}

@media ( max-width: 768px ) {
  .news__date {width: 90px;}
}

@media ( max-width: 480px ) {
  .news__item {display: block;}
}
/* /お知らせ */



/* リンク装飾 */
.link--icon_box_blue_white {display: inline-block;position: relative;padding-left: 32px;font-size: 18px;font-weight: bold;text-decoration: underline;color: #1f3178;}
.link--icon_box_blue_white::before {content: "";position: absolute;top: 4px;left: 0;width: 24px;height: 24px;background: url(/img/icon-arrow-box-blue-white.svg) center/contain no-repeat;}
.link_newtab::after {content: "";display: inline-block;width: 0.8em;height: 0.8em;background: url(/img/icon-newtab-darkblue.svg) center/contain no-repeat;margin-left: 0.3em;}
/* /リンク装飾 */



/* 画像＋コンテンツレイアウト */
.layout_imgtxt {display: flex;gap: var(--gap);justify-content: space-between;}
.layout_imgtxt__content > :first-child,
.layout_imgtxt__content > [class*="wp-block-lazyblock-"]:first-child > :first-child {margin-top: 0 !important;}
.layout_imgtxt__content > :last-child,
.layout_imgtxt__content > [class*="wp-block-lazyblock-"]:last-child > :last-child {margin-bottom: 0 !important;}
.layout_imgtxt__img {flex-shrink: 0;max-width: 45%;}
.layout_imgtxt__img img {width: 100%;}
.layout_imgtxt__content {width: 100%;--csp: 0;}
.layout_imgtxt--right {flex-direction: row-reverse;}
.layout_imgtxt--left {flex-direction: row;}

@media ( max-width: 768px ) {
  .layout_imgtxt--tabright {flex-direction: row-reverse;}
  .layout_imgtxt--tableft {flex-direction: row;}
  .layout_imgtxt--tabbefore {flex-direction: column;}
  .layout_imgtxt--tabafter {flex-direction: column-reverse;}
  .layout_imgtxt--tabbefore .layout_imgtxt__img {max-width: none;text-align: center;}
  .layout_imgtxt--tabafter .layout_imgtxt__img {max-width: none;text-align: center;}
}

@media ( max-width: 480px ) {
  .layout_imgtxt--spright {flex-direction: row-reverse;}
  .layout_imgtxt--spleft {flex-direction: row;}
  .layout_imgtxt--spbefore {flex-direction: column;}
  .layout_imgtxt--spafter {flex-direction: column-reverse;}
  .layout_imgtxt--spbefore .layout_imgtxt__img {max-width: none;text-align: center;}
  .layout_imgtxt--spafter .layout_imgtxt__img {max-width: none;text-align: center;}
}
/* /画像＋コンテンツレイアウト */



/* 埋め込みブロック */
.customize_html--fill > * {width: 100%;}
/* /埋め込みブロック */



/* カスタマイズ見出し */
.customize_head--with_en .customize_head__maintext {display: block;}
.customize_head--with_en .customize_head__subtext {display: block;font-size: 0.63em;font-weight: normal;line-height: 1.1;margin-top: 0.3em;}

@media ( max-width: 768px ) {
  .customize_head {font-size: var(--fontsize_tab) !important;}
}

@media ( max-width: 480px ) {
  .customize_head {font-size: var(--fontsize_sp) !important;}
}
/* /カスタマイズ見出し */



/* カスタマイズボタン */
.wp-block-lazyblock-cutomize-button {max-width: none;padding: 0 !important;}
.customize_btns {display: flex;justify-content: center;flex-wrap: wrap;gap: 15px;max-width: var(--cw);margin: auto;padding: 0 var(--csp);}
.customize_btns__item {background: var(--bgcolor);color: var(--textcolor) !important;font-size: 22px;font-weight: bold;line-height: 1.4;text-decoration: none !important;padding: 10px 50px;min-width: 350px;min-height: 66px;display: flex;justify-content: center;align-items: center;position: relative;border-radius: 10px;transition: .3s;}
.customize_btns__item::after {content: "";position: absolute;top: 50%;transform: translateY(-50%);right: 14px;width: 24px;height: 24px;background: var(--icon) center/100% 100% no-repeat;transition: 0.3s;}
.customize_btns__item:hover {opacity: .7;}
.customize_btns__item:hover::after {right: 4px;}
.customize_btns__subtext  {display: none;}

.customize_btns--entry {max-width: none;background: var(--bgimg) center/cover no-repeat;padding: var(--block3-gap) var(--csp);gap: 30px;}
.customize_btns--entry .customize_btns__item {max-width: var(--cw);width: 100%;border-radius: 9999px;min-height: 115px;}
.customize_btns--entry .customize_btns__item:hover {opacity: 1;filter: brightness(1.3);}
.customize_btns--entry .customize_btns__item::after {content: none !important;}

.customize_btns--maeicon {gap: 30px !important;}
.customize_btns--maeicon .customize_btns__item {border: var(--wakuwidth) solid var(--wakucolor);border-radius: 9999px;font-size: 32px;line-height: 1.3;min-height: 115px;min-width: 515px;}
.customize_btns--maeicon .customize_btns__subtext {display: block;font-size: 16px;font-weight: normal;color: #434343;text-align: center;}
.customize_btns--maeicon .customize_btns__item::after {content: none !important;}
.customize_btns--maeicon .customize_btns__maintext {display: block;max-width: 100%;width: max-content;margin: auto;position: relative;padding-left: 45px;}
.customize_btns--maeicon .customize_btns__maintext::before {content: "";position: absolute;top: 50%;transform: translateY(-50%);left: 0;width: 38px;height: 47px;background: var(--icon) center right/contain no-repeat;}
.customize_btns--maeicon .customize_btns__iteminner {max-width: 100%;}

@media ( max-width: 599px ) {
  .customize_btns--entry .customize_btns__item {min-height: 80px;padding: 10px 30px;}

  .customize_btns--maeicon .customize_btns__item {min-width: 0;width: 100%;}
}

@media ( max-width: 480px ) {
  .customize_btns__item {min-width: 90%;}

  .customize_btns--maeicon .customize_btns__item {font-size: 24px;min-height: 80px;padding: 10px;}
  .customize_btns--maeicon .customize_btns__maintext {padding-left: 35px;}
  .customize_btns--maeicon .customize_btns__maintext::before {width: 24px;height: 30px;}
  .customize_btns--maeicon .customize_btns__subtext {font-size: 12px;}
}

@media ( max-width: 374px ) {
  .customize_btns--maeicon .customize_btns__item {font-size: 18px;min-height: 60px;}
  .customize_btns--maeicon .customize_btns__subtext {font-size: 10px;margin-top: 4px;}
}
/* /カスタマイズボタン */



/* フロー図 */
.flow {display: flex;flex-wrap: wrap;}
.flow--normal {font-size: 30px;font-weight: bold;line-height: 1;color: #008dd7;counter-reset: flow;justify-content: center;gap: 52px;}
.flow--small {font-size: 21px;font-weight: bold;line-height: 1;color: #008dd7;counter-reset: flow;justify-content: center;gap: 38px;}
.flow__text {display: block;writing-mode: vertical-lr;padding: 20px 8px;}
.flow__item {background: #f2f2f2;counter-increment: flow;display: flex;flex-direction: column;align-items: center;position: relative;}
.flow__item::before {content: counter(flow);display: flex;color: #fff;background: #008dd7;width: 100%;min-width: 68px;height: 57px;justify-content: center;align-items: center;line-height: 1;}
.flow__item:nth-child(n+2)::after {content: "";position: absolute;top: 50%;transform: translateY(-50%);left: -33px;border: 15px solid transparent;border-left-color: #85c4d8;border-left-width: 18px;border-right: none;}
.flow__subtext {font-size: 20px;color: #000;margin-top: 10px;}
.flow--small .flow__item::after {border-width: 10px;border-left-width: 13px;left: -23px;}
.flow--small .flow__item::before {min-width: 49px;height: 41px;}

.flow--tatenarabi {flex-direction: column;gap: 20px;}
.flow--tatenarabi .flow__item {background: none;color: #002b84;border: 2px solid #002b84;font-size: 20px;line-height: 1.4;}
.flow--tatenarabi .flow__item::before {content: none !important;}
.flow--tatenarabi .flow__text {writing-mode: lr;padding: 18px 15px;}
.flow--tatenarabi .flow__item:nth-child(n+2)::after {top: -22px;left: 50%;transform: translateX(-50%);border: 13px solid transparent;border-top: 9px solid #002b84;}
.flow--tatenarabi .flow__item:last-child {background: #002b84;color: #fff;}

@media ( max-width: 599px ) {
  .flow--tatenarabi .flow__text {padding: 10px;}
}
/* /フロー図 */



/* テーブル */
.tbl_border :is(table, thead, tbody) {border: none !important;}
.tbl_border tr > * {border: 1px solid #e1e1e1 !important;}
.tbl_fit table, table.tbl_fit {width: max-content;max-width: 100%;}
/* /テーブル */



/* カスタマイズウィンドウ */
.customize_window {background: var(--bgcolor);border: var(--borderwidth) solid var(--bordercolor);}
.customize_window__head {background: var(--headbgcolor);color: var(--headtextcolor);}
.customize_window__contentinner > :first-child,
.customize_window__contentinner > [class*="wp-block-lazyblock-"]:first-child > :first-child {margin-top: 0 !important;}
.customize_window__contentinner > :last-child,
.customize_window__contentinner > [class*="wp-block-lazyblock-"]:last-child > :last-child {margin-bottom: 0 !important;}
.customize_window--normal .customize_window__head {font-size: 16px;font-weight: bold;text-align: center;line-height: 1.75;padding: 2px 24px;}
.customize_window--normal .customize_window__content {padding: 20px 24px;}
/* /カスタマイズウィンドウ */



/* カスタマイズリスト */
.customize_list--normal {font-size: var(--fontsize);color: var(--color);}
.customize_list--normal .customize_list__inner {display: flex;gap: var(--gap);flex-wrap: wrap;justify-content: center;}
.customize_list--normal .customize_list__item {background: var(--bgcolor);padding: 15px;display: flex;justify-content: center;align-items: center;text-align: center;line-height: 1.2;min-width: 193px;min-height: 136px;}

.customize_list--cnum_middlebold {font-size: 26px;font-weight: bold;line-height: 1.4;}
.customize_list--cnum_middlebold .customize_list__inner {display: flex;flex-direction: column;gap: 0.4em;}
.customize_list--cnum_middlebold .customize_list__item {padding-left: 1.2em;position: relative;}
.customize_list--cnum_middlebold .customize_list__item::before {position: absolute;left: 0;}
.customize_list--cnum_middlebold .customize_list__item:nth-child(1)::before {content: "①";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(2)::before {content: "②";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(3)::before {content: "③";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(4)::before {content: "④";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(5)::before {content: "⑤";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(6)::before {content: "⑥";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(7)::before {content: "⑦";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(8)::before {content: "⑧";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(9)::before {content: "⑨";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(10)::before {content: "⑩";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(11)::before {content: "⑪";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(12)::before {content: "⑫";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(13)::before {content: "⑬";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(14)::before {content: "⑭";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(15)::before {content: "⑮";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(16)::before {content: "⑯";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(17)::before {content: "⑰";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(18)::before {content: "⑱";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(19)::before {content: "⑲";}
.customize_list--cnum_middlebold .customize_list__item:nth-child(20)::before {content: "⑳";}

@media ( max-width: 768px ) {
  .customize_list--cnum_middlebold {font-size: 22px;}
}

@media ( max-width: 480px ) {
  .customize_list--normal {font-size: var(--fontsizesp);}
}
/* /カスタマイズリスト */



/* pictureブロック */
.wp-block-lazyblock-picture figure {--picturesize: auto;--picturesizesp: var(--picturesize);--picturesizetab: var(--picturesizesp);--wakuwidth: 0;--wakucolor: #f6f9fc;--paddinglr: 0;--paddingtb: 0;--paddinglrtab: var(--paddinglr);--paddingtbtab: var(--paddingtb);--paddinglrsp: var(--paddinglrtab);--paddingtbsp: var(--paddingtbtab);}
.wp-block-lazyblock-picture figure img {max-width: 100%;width: var(--picturesize);border: var(--wakuwidth) solid var(--wakucolor);padding: var(--paddingtb) var(--paddinglr);}
.wp-block-lazyblock-picture a {transition: .3s;}
.wp-block-lazyblock-picture a:hover {opacity: .7;}

@media ( max-width: 768px ) {
  .wp-block-lazyblock-picture figure img {padding: var(--paddingtbtab) var(--paddinglrtab);}
}

@media ( max-width: 480px ) {
  .wp-block-lazyblock-picture figure img {padding: var(--paddingtbsp) var(--paddinglrsp);}
}
/* /pictureブロック */



/* カスタマイズテキスト */
.customize_text--lr_bar .customize_text__inner {display: block;width: 100%;max-width: max-content;margin: auto;position: relative;padding: 0 20px;}
.customize_text--lr_bar .customize_text__inner::before, .customize_text--lr_bar .customize_text__inner::after {content: "";position: absolute;top: 50%;transform: translateY(-50%);width: 6px;height: 0px;border: 1px solid;}
.customize_text--lr_bar .customize_text__inner::before {left: 0;}
.customize_text--lr_bar .customize_text__inner::after {right: 0;}
/* /カスタマイズテキスト */



/* 求人個別ページ */
.recpost__mv {max-width: 728px;width: 100%;height: auto;aspect-ratio: 728/448;margin: auto;overflow: hidden;margin-top: var(--block3-gap);}
.recpost__mv img {width: 100%;height: 100%;object-fit: cover;}
.recpost__dounyu {margin-top: var(--block3-gap);}
.recpost__dounyu > :first-child,
.recpost__dounyu > [class*="wp-block-lazyblock"]:first-child > :first-child {margin-top: 0 !important;}
.recpost__dounyu > :last-child,
.recpost__dounyu > [class*="wp-block-lazyblock"]:last-child > :last-child {margin-bottom: 0 !important;}
.recpost__about {margin-top: var(--para-gap);}
.recpost__about > :first-child,
.recpost__about > [class*="wp-block-lazyblock"]:first-child > :first-child {margin-top: 0 !important;}
.recpost__about > :last-child,
.recpost__about > [class*="wp-block-lazyblock"]:last-child > :last-child {margin-bottom: 0 !important;}

@media ( max-width: 768px ) {
  .recpost__dounyu ul {margin-left: auto !important; margin-right: auto !important;}
  .recpost__about ul {margin-left: auto !important; margin-right: auto !important;}
}
/* /求人個別ページ */



/* 先輩スタッフの声 */
.senpai_message {padding: 32px;background: #f5f5f5;margin-top: var(--sec-gap);}
.senpai_message__head {margin-top: 0 !important;}
.senpai_message__detail {font-size: 16px;font-weight: normal;line-height: 1.75;margin-top: var(--block1-gap);}
.senpai_message__subhead {font-size: 28px;font-weight: normal;line-height: 1.428571428571429;color: #002b84;margin-top: var(--block1-gap);}
.senpai_message__prof {font-size: 18px;font-weight: bold;line-height: 1.3;margin-top: var(--block1-gap);}
.senpai_message__continue {display: flex;justify-content: flex-end;margin-top: 10px;}
.senpai_message__cotinuemaintext {font-size: 22px;font-weight: bold;line-height: 1.2;color: inherit;}
.senpai_message__continuelink {display: flex;align-items: center;color: #002b84 !important;gap: 5px;text-decoration: none;}
.senpai_message__cotinuelinkinner {display: flex;align-items: center;}
.senpai_message__continuelink::after {content: "";width: 24px;height: 24px;background: url(/img/icon-arrow-box-blue-white.svg) center/contain no-repeat;position: relative;top: 2px;right: 0;transition: .3s;}
.senpai_message__continuelink:hover {text-decoration: underline;}
.senpai_message__continuelink:hover::after {right: -5px;}

.senpai_message__inner {display: flex;gap: var(--para-gap);margin: var(--para-gap) 0 0;}
.senpai_message__img {width: 25%;flex-shrink: 0;}
.senpai_message__img img {width: 100%;height: auto;aspect-ratio: 1/1;object-fit: cover;}
.senpai_messege__texts > :first-child {margin-top: 0 !important;}

@media ( max-width: 768px ) {
  .senpai_message__head {margin: 0 auto !important;}
  .senpai_message__img {width: 40%;}
}

@media ( max-width: 599px ) {
  .senpai_message__subhead {font-size: 22px;}
  .senpai_message__cotinuemaintext {font-size: 18px;}
  .senpai_message__continuelink::after {width: 18px;height: 18px;top: 0;}
}

@media ( max-width: 480px ) {
  .senpai_message {padding: 20px var(--csp);}

  .senpai_message__inner {flex-direction: column;}
  .senpai_message__img {width: 100%;}
  .senpai_message__img img {aspect-ratio: 16/9;}
}
/* /先輩スタッフの声 */



/* 募集要項 */
.youkou__head {margin-left: 0 !important;margin-right: 0 !important;}
.youkou__table {margin-top: var(--para-gap);border: 1px solid #dfdfdf;border-top: none;}
.youkou__table tr > * {border-top: 1px solid #dfdfdf;padding: var(--para-gap);}
.youkou__table th {background: #f5f7f9;}
.youkou__syokusyu_cell {font-size: 1.2em;font-weight: bold;}

@media ( max-width: 768px ) {
  .youkou__table tr > * {display: block;padding: 20px 15px;}
  .youkou__table td {border-top: none;}
  .youkou__table th {padding: 10px;}
}
/* /募集要項 */



/* FAQ */
.faq {margin: var(--para-gap) auto 0;}
.faq__q {font-size: 20px;font-weight: bold;line-height: 1.5;margin: var(--para-gap) auto 0;}
.faq__q,.faq__a {padding-left: 30px;position: relative;}
.faq__q::before {content: "Q.";color: #002b84;}
.faq__a {font-size: 16px;font-weight: normal;line-height: 1.75;margin: 10px auto 0;}
.faq__a::before {content: "A.";color: #d66;}
.faq__q::before,.faq__a::before {font-size: 20px;font-weight: bold;position: absolute;left: 0;}
.faq__a + .faq__q {border-top: 1px dashed #ccc;padding-top: var(--para-gap);}
/* /FAQ */



/* 求人ページギャラリー */
.rec_gallery {margin-top: var(--block2-gap);}
.rec_gallery__inner.noorg {display: flex;flex-wrap: wrap;--num: 3;--gap: 10px;gap: var(--gap);}
.rec_gallery__item {width: calc( ( 100% - var(--gap) * ( var(--num) - 1 ) ) / var(--num) );}
.rec_gallery__img img {width: 100%;height: auto;aspect-ratio: 3/2;object-fit: cover;}
.rec_gallery__img {width: 100%;}

@media ( max-width: 599px ) {
  .rec_gallery__inner.noorg {--num: 2;}
}
/* /求人ページギャラリー */



/* Lightboxギャラリー */
.gallery_lightbox {display: flex;flex-wrap: wrap;gap: var(--gap_tate) var(--gap);}
.gallery_lightbox__item {width: calc( ( 100% - var(--gap) * ( var(--num) - 1 ) ) / var(--num) );}
.gallery_lightbox__anchor {display: block;cursor: zoom-in;transition: .2s;position: relative;}
.gallery_lightbox__anchor:hover {opacity: .7;}
.gallery_lightbox__anchor::after {content: "";position: absolute;top: 10px;right: 10px;width: 30px;height: 30px;background: url(/img/icon-zoom-in-white.svg) center/contain no-repeat;}
.gallery_lightbox__img {width: 100%;height: auto;aspect-ratio: 3/2;object-fit: cover;}
/* /Lightboxギャラリー */



/* カスタマイズカバー */
.customize_cover {margin-left: auto;margin-right: auto;}
/* /カスタマイズカバー */

/* 健康経営優良法人ロゴ */
.footer__logo {display: flex;justify-content: center;align-items: center;gap: 10px;}
.container__yuryo_logo {display: flex;margin-top: 30px;}

@media ( max-width: 768px ) {
.footer__logo {display: block;text-align: center;}
.logo__yuryo2024 {margin-top: 15px;}
}
/* /健康経営優良法人ロゴ */

/* 採用情報グローバルナビ */
.recgn {margin: 4rem 1rem 1rem;}
.recgn > ul {max-width: calc(var(--cw) * 0.8);margin: auto;display: flex;background: #008dd7;border-radius: 10px;box-shadow: 0 3px 6px rgb(0 0 0 / 16%);font-size: 16px;font-weight: bold;text-align: center;line-height: 1;color: #fff;}
.recgn .menu__item {width: 100%;min-height: 50px;position: relative;}
.recgn .menu__item:nth-child(n+1)::before {content: "";position: absolute;top: 5px;bottom: 5px;left: 0;width: 1px;background: #51b3e6;}
.recgn .menu__itemlink {color: inherit;text-decoration: none;display: flex;justify-content: center;align-items: center;height: 100%;transition: .3s;padding: 10px;}
.recgn .menu__itemlink:hover, .recgn .menu__item--current .menu__itemlink {background: rgb(255 255 255 / 16%);}

@media ( max-width: 768px ) {
  .recgn > ul {font-size: 14px;}
}

@media ( max-width: 599px ) {
  .recgn > ul {font-size: 12px;}
}

@media ( max-width: 480px ) {
  .recgn {margin: 4rem 0.5rem 1rem;}
  .recgn > ul {font-size: clamp(0px, 3.5vw, 14px);}
}
/* /採用情報グローバルナビ */