@charset "UTF-8";
/*
*   CSS 変数
*----------------------------*/
:root {
  /********** font family **********/
  --fontFamily_base: "Noto Sans JP", sans-serif;
  --fontFamily_sub: "Noto Sans JP", sans-serif;
  /********** font size **********/
  --fontSize_base: 16px;
  --fontSize_base_mbl: 16px;
  /********** font weight **********/
  --font-weight_base: 400;
  /********** line height **********/
  --lineHeight_base: 1.7;
  /********** letter spacing **********/
  --letterSpacing_base: 0.06em;
  /********** color **********/
  /*** BASE ***/
  --color_main: #007CBE;
  --color_sub: #e5f6ff;
  --color_accent: #f0de40;
  --color_font: #000;
  --color_link: var(--color_main);
  --color_bg: #fff;
  --color_white: #fff;
  --color_lightBeige: #fdfae4;
  --color_lightBlue: #d6eef2;
  --color_lightBlue2: #c8e5f5;
  --color_lightBlue3: #e7f3f7;
  --color_lightBlue4: #e8f3f9;
  --color_blue: #007cbf;
  --color_blue2: #0066a5;
  --color_gray: #b3b3b3;
  --color_lightGray: #f2f2f2;
  --color_lightRed: #ffebe6;
  --color_yellow: #f6ec90;
  /* メインカラー透過色（style9で使用） */
  --color_main_alpha: rgba(13, 49, 143, 0.2);
  /*** TABLE ***/
  --tableTh_color: #e5f6ff;
  --tableLine_color: #ccc;
  /* accordion */
  --accordionArrow_color: var(--color_lightBlue3);
  /* contact-button */
  --color_contactButton: #f8f0a5;

  /********** width **********/
  /* コンテンツ幅 */
  --width_base: 1000px;
  --width_full: 94%;
  /* 最小ブラウザ幅（設定幅未満は横スクロール） */
  --width_min_base: 320px;
  /* MOBILEメニュー幅 */
  --mobileMenu_width_tab: 360px;
  --mobileMenu_width_sp: 320px;
  /********** base padding **********/
  --sidePadding_base: 3%;
  --sidePadding_base_mbl: 5.333%;
  /********** break point **********/
  --width-tab__min: 600px;
  --width-tab__max: 1024px;
  /********** base header height **********/
  --height-header: 170px;
  --height-header_scrolled: 152px;
  --height-header_mbl: 95px;
}

/*
  File Name   : body.css
  Description : Write content styles
*/
/* default
============================================================ */
/*** structure ***/
html {
  overflow-y: scroll;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: unset;
  background-color: var(--color_bg);
  overflow-x: clip;
}
@media only screen and (max-width: 1024px) {
  html {
    font-size: var(--fontSize_base_mbl);
  }
}
:root:has(header.isMenuOpen) {
  overflow: hidden;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: border-box;
  font-style: normal;
}

body {  
  min-width: var(--width_min_base);
  margin: 0;
  color: var(--color_font);
  font-family: var(--fontFamily_base);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: var(--fontSize_base);
  font-weight: var(--font-weight_base);
  letter-spacing: var(--letterSpacing_base);
  line-height: var(--lineHeight_base);
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  word-break: break-all;
  margin-top: var(--height-header);
  background-color: var(--color_bg);
  overflow-x: clip;
}
@media only screen and (max-width: 1024px) {
  body {
    font-size: var(--fontSize_base_mbl);
    margin-top: var(--height-header_mbl);
  }
}
@media print {
  body {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }
}
body#tinymce, body.contentBody {
  background-color: #fff;
}
@media (max-width: 1024px) {
  body {
    font-size: calc(14 / 16 * 1rem);
  }
}

body > footer,
body > header {
  width: 100%;
  min-width: var(--width_min_base);
}

/*** text ***/
p {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: var(--letterSpacing_base);
  line-height: var(--lineHeight_base);
}

div {
  font-style: normal;
  font-weight: inherit;
  letter-spacing: var(--letterSpacing_base);
  line-height: var(--lineHeight_base);
}

picture {
  display: block;
}

h1,
h2,
h3,
h4 {
  line-height: 1;
  margin: 0;
}

h4,
h5,
h6 {
  font-size: 1em;
  margin: 0;
}

small,
.font-small {
  font-size: 0.875em;
}

sub {
  vertical-align: baseline;
  position: relative;
  bottom: -0.2em;
  margin-left: 1px;
}

sup {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
  margin-left: 1px;
}

iframe {
  max-width: 100%;
  border: none;
}

/*** list ***/
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-style: normal;
  font-weight: normal;
}

li,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
}

/*** object ***/
embed,
object {
  vertical-align: bottom;
}

/*** presentation ***/
u {
  font-size: inherit;
  text-decoration: underline;
}

/*** hypertext ***/
a {
  font-size: inherit;
  color: var(--color_link);
  text-decoration: none;
}

a:hover,
a:active {
  opacity: 0.8;
  text-decoration: none;
  cursor: pointer;
}

.contentBody a{
	text-decoration:underline;
}

a img {
  border: none;
}

/*** a tel: ***/
a[href^="tel:"] {
  color: inherit;
}
@media print, screen and (min-width: 600px) {
  a[href^="tel:"] {
    color: inherit;
    display: inline-block;
    pointer-events: none;
    text-decoration: none;
  }
}

/*** edit ***/
del {
  color: #666;
  font-size: inherit;
  text-decoration: line-through;
}

ins {
  border-bottom: 1px dotted #ccc;
  font-size: inherit;
  text-decoration: none;
}

/*** forms ***/
legend {
  white-space: normal;
}

button,
input,
label,
select,
textarea,
form img {
  vertical-align: middle;
}

button,
input,
select,
textarea {
  max-width: 100%;
}

input,
select,
textarea {
  outline: none;
  color: var(--color_font);
  border: 1px solid #6c6c6c;
}

input[type=text],
input[type=number],
input[type=search],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=time],
input[type=email],
input[type=tel],
input[type=telephone],
input[type=url],
input[type=password],
select,
textarea {
  max-width: 100%;
  border-radius: 0;
}

button,
input[type=color],
input[type=file],
input[type=image],
input[type=range] {
  border: none;
  padding: 0;
  background: none;
}

input[type=checkbox],
input[type=color],
input[type=radio],
input[type=range],
select {
  cursor: pointer;
}

input[type=color],
input[type=file],
input[type=image],
input[type=range] {
  border: none;
}

input[type=password] {
  ime-mode: disabled;
}

input[disabled],
input[readonly],
select[disabled],
select[readonly] {
  cursor: default;
}

textarea {
  resize: vertical;
}

label + label,
label + input[type=checkbox],
label + input[type=radio] {
  margin-left: 10px;
}

label > input[type=checkbox],
label > input[type=radio] {
  margin-right: 5px;
}

input[type=checkbox] + label,
input[type=radio] + label {
  margin-left: 5px;
}

form a img {
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}

form a img,
input[type=button],
input[type=image],
input[type=reset],
input[type=submit],
button {
  border-radius: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

form a:hover img,
form a:active img,
input[type=button]:hover,
input[type=button]:active,
input[type=image]:hover,
input[type=image]:active,
input[type=reset]:hover,
input[type=reset]:active,
input[type=submit]:hover,
input[type=submit]:active,
button:hover,
button:active {
  opacity: 0.8;
}

label.error,
input.error {
  background: #ffeeee;
}

/*** tables ***/
table {
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

table th,
table td {
  font-size: inherit;
  word-break: break-all;
}

table th > :last-child,
table td > :last-child {
  margin-bottom: 0;
}

/*** image ***/
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

.contentBody img,
.page-body img {
  border-radius: 8px;
  width: auto;
}


/*** selection ***/
::-moz-selection {
  color: #fff;
  background: #999;
  text-shadow: none;
}

::selection {
  color: #fff;
  background: #999;
  text-shadow: none;
}

input::-moz-selection, textarea::-moz-selection {
  color: var(--color_font);
}

input::selection,
textarea::selection {
  color: var(--color_font);
}

/*** placeholder ***/
::-webkit-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}
::-moz-placeholder {
  color: #6c6c6c;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}
::-ms-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}
::placeholder {
  color: #6c6c6c;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

:focus:-ms-input-placeholder {
  color: transparent;
}

:focus::-ms-input-placeholder {
  color: transparent;
}

:focus::placeholder {
  color: transparent;
}

:focus::-ms-input-placeholder {
  color: transparent;
}

/* utiiities
============================================================ */
/*** float ***/
.com-clear {
  clear: both;
}

/*** hide ***/
.com-hide {
  position: absolute;
  z-index: -1;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
}

/*** clearfix ***/
.com-clearfix::before,
.com-clearfix::after {
  content: "";
  display: table;
}

.com-clearfix::after {
  clear: both;
}

/*** align ***/
.com-align_r {
  text-align: right !important;
}

.com-align_c {
  text-align: center !important;
}

.com-align_l {
  text-align: left !important;
}

.com-justify {
  text-align: justify;
}

/*** panel layout ***/
.com-panel-layout {
  display: table;
  width: auto;
  table-layout: fixed;
  word-spacing: -0.4em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.com-panel-layout .panel-layout-child,
.com-panel-layout > article,
.com-panel-layout > figure,
.com-panel-layout > li,
.com-panel-layout > div,
.com-panel-layout > p,
.com-panel-layout > section {
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: top;
  word-spacing: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*** disable-tel ***/
.com-disable-tel {
  cursor: default !important;
  pointer-events: none !important;
  text-decoration: none !important;
}

/*** color ***/
.red {
  color: red;
}

.red2 {
  color: #f80000;
}

.orange {
  color: orange;
}

.blue {
  color: blue;
}

.navy {
  color: navy;
}

.green {
  color: green;
}

.yellow {
  color: yellow;
}

.yellow2 {
  color: #ffff00;
}

/*** 印刷時用設定 ***/
@media print {
  body,
header,
footer {
    min-width: 1060px !important;
  }

  header {
    position: absolute !important;
  }
}
/*
============================================================ */
/* container
============================================================ */
#lay-container {
  position: relative;
  z-index: 3;
  text-align: left;
}

@media only screen and (max-width: 1024px) {
  #lay-container {
    margin-top: 0;
  }
}
/*
============================================================ */
/* main
============================================================ */
#lay-main {
  width: 100%;
  overflow: hidden;
}
#home #lay-main {
  max-width: inherit;
  padding: 0;
}
#lay-main > h1.withDate {
  margin-bottom: 0;
}

.lay-page,
.lay-blog {
  position: relative;
  padding: 100px var(--sidePadding_base) 140px;
}
@media print, screen and (min-width: 1025px) {
  .lay-page,
.lay-blog {
    max-width: calc(var(--width_base) + (var(--sidePadding_base) * 2));
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1024px) {
  .lay-page,
  .lay-blog {
    padding-top: 35px;
    padding-bottom: 80px;
  }
}

.lay-contentsContainer {
  width: 100%;
  padding: 0 var(--sidePadding_base);
}
@media print, screen and (min-width: 1025px) {
  .lay-contentsContainer {
    max-width: calc(var(--width_base) + (var(--sidePadding_base) * 2));
    margin: 0 auto;
  }
}

/********** 汎用セクション **********/
.com-subSection {
  margin: 80px 0 80px;
}
@media only screen and (max-width: 1024px) {
  .com-subSection {
    margin: 50px 0 50px;
  }
}
.com-subSection:first-child {
  margin-top: 0;
}

/*
*   汎用Class
*----------------------------*/
.attached_icon {
  width: auto;
  height: 20px;
  margin: 5px 5px 5px 0;
  vertical-align: middle;
}

.com-section > section {
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .com-section > section {
    margin-bottom: 50px;
  }
}
.com-section > section:last-child {
  margin-bottom: 0;
}

.com-sect-desc {
  margin-bottom: 1.5rem;
}
.com-sect-desc:last-child {
  margin-bottom: 0;
}

.com-date-txt {
  color: var(--color_main);
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
  margin-bottom: 3em !important;
}

h1 + .com-date-txt {
  margin: 1rem 0;
}

.com-print-txt {
  margin-bottom: 2.5em !important;
  text-align: right;
}

.com-print-txt a {
  display: inline-block;
  padding-left: 25px;
  background: url(../images/common/print-bg.svg) no-repeat left center;
  background-size: 20px auto;
}

h1 + .com-print-txt {
  margin-top: -3.5em !important;
}
@media only screen and (max-width: 1024px) {
  h1 + .com-print-txt {
    margin-top: -1.25em !important;
  }
}

.com-date-txt + .com-print-txt {
  margin-top: -2.5em !important;
}

.com-print-link {
  margin-bottom: 2.5em !important;
  text-align: right;
}
.com-print-link a {
  display: inline-block;
  padding-left: 25px;
  background: url(../images/common/print-bg.png) no-repeat left center;
  background-size: 20px auto;
}

.com-print-btn-list {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2000;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  text-align: center;
}
@media print {
  .com-print-btn-list {
    display: none;
  }
}
.com-print-btn-list a {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.08em;
}
.com-print-btn-list a.close {
  padding-left: 23px;
}
.com-print-btn-list a.close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 19px;
  height: 2px;
  background: #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.com-print-btn-list a.close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 19px;
  height: 2px;
  background: #fff;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}
.com-print-btn-list a.print {
  padding-left: 25px;
  background: url(../images/common/print-bg-wht.svg) no-repeat left center;
  background-size: 20px auto;
}

.com-signature address {
  margin-top: 100px;
    padding: 20px;
    border: 2px solid #1c7dbe;
    border-radius: 10px;
}

.com-signature address span {
  display: block;
  font-style: normal;
}

.com-signature address .department {
  margin-bottom: 0.5em;
  border-bottom: 1px solid #1c7dbe;
  font-size: 1.3333333333em;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) {
  .com-signature address {
    margin-top: 50px;
    padding: 20px;
  }

  .com-signature address .department {
    font-size: 1.2em;
  }
}
/*
*  画像用汎用Style
*----------------------------*/
/* 標準 */
.imgDefault {
  display: block;
  width: 100%;
  height: auto;
}

/* トリミング系 */
.imgCover {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.imgContain {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.imgScaleDown {
  display: block;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  width: 100%;
  height: 100%;
}

/*
*  要素 非表示
*----------------------------*/
.dNone {
  display: none !important;
}

@media print, screen and (min-width: 1025px) {
  .dNone-pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 599px) {
  .dNone-pcTab {
    display: none !important;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .dNone-pcTab {
    display: none !important;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .dNone-tab {
    display: none !important;
  }
}

@media only screen and (max-width: 1024px) {
  .dNone-mbl {
    display: none !important;
  }
}

@media only screen and (max-width: 599px) {
  .dNone-sp {
    display: none !important;
  }
}

@media print {
  .dNnone-prt {
    display: none !important;
  }
}

/*
*  flex 左寄dummy要素用Class
*----------------------------*/
.isEmpty {
  height: 0 !important;
  min-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: none !important;
}
.isEmpty::before, .isEmpty::after {
  content: none !important;
}

/*
*  非表示テキスト
*----------------------------*/
.hdnTxt {
  display: block !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  color: transparent !important;
  line-height: 0 !important;
  letter-spacing: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
}
.hdnTxt::before, .hdnTxt::after {
  content: none !important;
}

.noWrap {
  display: inline-block;
}

.no-content {
  font-size: 1.2rem;
  text-align: center;
  padding: 1em 0 1em;
}

.desc {
  display: none !important;
}

body:not(#tinymce) .com-iframeWrap,
.com-iframeWrap .mce-object-iframe {
  display: block;
  position: relative;
  width: 100%;
  max-width: var(--width-tab__max);
  margin: 2rem auto 2rem;
}
body:not(#tinymce) .com-iframeWrap:first-child,
.com-iframeWrap .mce-object-iframe:first-child {
  margin-top: 0 !important;
}
body:not(#tinymce) .com-iframeWrap:last-child,
.com-iframeWrap .mce-object-iframe:last-child {
  margin-bottom: 0 !important;
}
body:not(#tinymce) .com-iframeWrap::before,
.com-iframeWrap .mce-object-iframe::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: calc(100% * (9 / 16));
}
body:not(#tinymce) .com-iframeWrap > iframe,
.com-iframeWrap .mce-object-iframe > iframe {
  position: absolute;
  display: block;
  width: 100% !important;
  height: 100% !important;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

.com-space {
  display: block;
  width: 100% !important;
  margin: 0 !important;
  font-size: 1rem;
  line-height: 0;
  letter-spacing: 0;
  opacity: 0 !important;
  overflow: hidden;
}

#tinymce .com-space,
body.contentBody .com-space {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  text-align: center;
  border: 1px dashed #666;
  opacity: 1 !important;
}
#tinymce .com-space::before,
body.contentBody .com-space::before {
  content: "追加余白";
  display: block;
  color: #666;
  font-size: inherit;
  line-height: 1em;
  letter-spacing: 0em;
  text-indent: 0em;
}

.com-space.row__05 {
  height: 0.9em !important;
}

#tinymce .com-space.row__05::before,
body.contentBody .com-space.row__05::before {
  content: "追加余白(0.5行分)";
  font-weight: 400;
  font-size: max(12px, 0.5rem);
}

.com-space.row__10 {
  height: 1.8em !important;
}

#tinymce .com-space.row__10::before,
body.contentBody .com-space.row__10::before {
  content: "追加余白(1行分)";
}

.com-space.row__15 {
  height: 2.7em !important;
}

#tinymce .com-space.row__15::before,
body.contentBody .com-space.row__15::before {
  content: "追加余白(1.5行分)";
}

.com-space.row__20 {
  height: 3.6em !important;
}

#tinymce .com-space.row__20::before,
body.contentBody .com-space.row__20::before {
  content: "追加余白(2行分)";
}

.com-space.row__25 {
  height: 4.5em !important;
}

#tinymce .com-space.row__25::before,
body.contentBody .com-space.row__25::before {
  content: "追加余白(2.5行分)";
}

.com-img {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.com-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
}
.com-img > img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.com-img.isHeight40per::before {
  padding-bottom: 40%;
}
.com-img.isHeight50per::before {
  padding-bottom: 50%;
}
.com-img.isHeight60per::before {
  padding-bottom: 60%;
}
.com-img.isHeight70per::before {
  padding-bottom: 70%;
}
.com-img.isHeight80per::before {
  padding-bottom: 80%;
}

.com-maxWidth300 {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.com-maxWidth350 {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.com-maxWidth400 {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.com-maxWidth450 {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.com-maxWidth500 {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.com-maxWidth550 {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.com-maxWidth600 {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/*
*   list
*----------------------------*/
/* ul BASE */
.com-ul-base > li, .com-cercle-list > li, .com-cercle-list2 > li, .com-asterisk-num-list > li, .com-asterisk-list > li, .com-ul-dot > li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.8em;
  margin-bottom: 0.5em;
}
.com-ul-base > li:last-child, .com-cercle-list > li:last-child, .com-cercle-list2 > li:last-child, .com-asterisk-num-list > li:last-child, .com-asterisk-list > li:last-child, .com-ul-dot > li:last-child {
  margin-bottom: 0;
}
.com-ul-base > li::before, .com-cercle-list > li::before, .com-cercle-list2 > li::before, .com-asterisk-num-list > li::before, .com-asterisk-list > li::before, .com-ul-dot > li::before {
  content: "";
  position: absolute;
  left: 0;
}

/* ol BASE */
.com-ol-base, .com-circle-num-list_02, .com-circle-num-list, .com-paren-num-list, .com-ol-circle {
  counter-reset: item;
}
.com-ol-base > li, .com-circle-num-list_02 > li, .com-circle-num-list > li, .com-paren-num-list > li, .com-ol-circle > li {
  position: relative;
  padding-left: 2em;
  line-height: 1.8em;
  margin-bottom: 0.5em;
}
.com-ol-base > li:last-child, .com-circle-num-list_02 > li:last-child, .com-circle-num-list > li:last-child, .com-paren-num-list > li:last-child, .com-ol-circle > li:last-child {
  margin-bottom: 0;
}
.com-ol-base > li::before, .com-circle-num-list_02 > li::before, .com-circle-num-list > li::before, .com-paren-num-list > li::before, .com-ol-circle > li::before {
  content: counter(item) ".";
  position: absolute;
  counter-increment: item;
  position: absolute;
  left: 0;
}

.com-ul-dot {
  margin: 1rem 0 1rem;
}
.com-ul-dot > li::before {
  content: "・";
  color: var(--color_main);
}

.com-ol-circle {
  counter-reset: item;
  margin-bottom: 1em;
}
.com-ol-circle > li {
  position: relative;
  padding-left: 1.75em;
  line-height: 1.8em;
  margin-bottom: 0.5em;
}
.com-ol-circle > li:last-child {
  margin-bottom: 0;
}
.com-ol-circle > li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  top: 0.625em;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  color: #fff;
  font-size: 0.75em;
  line-height: 1em;
  text-align: center;
  letter-spacing: 0em;
  background-color: var(--color_main);
  border-radius: 50%;
  padding: 0 0 0.1em;
}

.com-asterisk-list > li {
  padding-left: 1.5em;
}
.com-asterisk-list > li::before {
  content: "※";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 1.5em;
  height: 1.8em;
  top: 0;
  left: 0;
  background: none;
  border-radius: 0;
}

.com-asterisk-num-list {
  counter-reset: anum;
  list-style: none;
  text-indent: 0;
}
.com-asterisk-num-list > li {
  counter-increment: anum;
  padding-left: 2em;
}
.com-asterisk-num-list > li::before {
  content: "※" counter(anum);
  display: inline;
  width: auto;
  height: auto;
}

.com-cercle-list > li::before, .com-cercle-list2 > li::before {
  display: block;
  width: 0.8em;
  height: 0.8em;
  top: 0.5em;
  background: var(--color_font);
  border-radius: 50%;
}

.com-cercle-list2 > li::before {
  background: none;
  border: 1px solid var(--color_font);
}

.com-paren-num-list > li::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: "(" counter(item) ") ";
}

.com-circle-num-list > li::before {
  content: counter(item);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1.25rem;
  height: 1.25rem;
  top: 0.45em;
  font-size: 0.75em;
  font-weight: bold;
  letter-spacing: -0.02em;
  line-height: 1em;
  border: 1px solid var(--color_font);
  border-radius: 50%;
  text-align: center;
  padding: 0.3em 0 0;
}

.com-circle-num-list_02 > li::before {
  content: counter(item);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1.5rem;
  height: 1.5rem;
  top: 0.25em;
  color: #fff;
  font-size: 0.75em;
  font-weight: bold;
  letter-spacing: -0.02em;
  background-color: var(--color_main);
  border-radius: 50%;
  text-align: center;
  padding: 0.3em 0 0;
}

/*
*   hl
*----------------------------*/
/********** 共通設定 **********/
.com-hl-01, .contentBody h1, .pageTitle,
.com-hl-02,
.contentBody h2,
.com-hl-03,
.contentBody h3,
.com-hl-04,
.contentBody h4,
.com-hl-05,
.contentBody h5,
.com-hl-06,
.contentBody h6 {
  line-height: 1.5;
  letter-spacing: var(--letterSpacing_base);
  text-indent: var(--letterSpacing_base);
}

/********** 外部余白設定 **********/
.com-hl-01, .contentBody h1, .pageTitle {
  margin-top: 2em;
  margin-bottom: 1.5em;
}
.com-hl-01:first-child, .contentBody h1:first-child, .pageTitle:first-child {
  margin-top: 0;
}

.com-hl-02, .contentBody h2 {
  margin-top: 2em;
  margin-bottom: 1.5em;
}
.com-hl-02:first-child, .contentBody h2:first-child {
  margin-top: 0;
}

.com-hl-03, .contentBody h3,
.com-hl-04,
.contentBody h4,
.com-hl-05,
.contentBody h5,
.com-hl-06,
.contentBody h6 {
  margin-top: 2em;
  margin-bottom: 1.5em;
}
.com-hl-03:first-child, .contentBody h3:first-child,
.com-hl-04:first-child,
.contentBody h4:first-child,
.com-hl-05:first-child,
.contentBody h5:first-child,
.com-hl-06:first-child,
.contentBody h6:first-child {
  margin-top: 0;
}

/********** 各見出しStyle **********/
.com-hl-01, .contentBody h1, .pageTitle {
  text-align: center;
  font-size: calc(37 / 16 * 1rem);
  font-weight: 700;
  display: grid;
  place-items: center;
  gap: 24px;
  margin-top: 80px;
}
.contentBody h1::before,
.reservation .pageTitle::before,
.top-category_coordinators .pageTitle::before,
.problem-coordinator .pageTitle::before {
  content: "";
  background-image: url(../images/common/icon/icon_human.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 38px;
  height: 45px;
  margin-inline: auto;
}
.com-hl-01::after,
.contentBody h1::after,
.pageTitle::after {
  content: "";
  width: 138px;
  height: 6px;
  border-radius: 100vmax;
  background-color: var(--color_accent);
}
@media  (max-width: 599px) {
  .com-hl-01, .contentBody h1, .pageTitle {
    font-size: calc(25 / 16 * 1rem);
    gap: 10px;
    margin-top: 45px;
  }
  .contentBody h1::before,
  .reservation .pageTitle::before,
  .top-category_coordinators .pageTitle::before,
  .problem-coordinator .pageTitle::before {
    width: 26px;
    height: 30px;
/*    margin-bottom: 10px;*/
  }
  .com-hl-01::after,
  .contentBody h1::after,
  .pageTitle::after {
    width: 94px;
    height: 4px;
  }
}

.com-hl-02, .contentBody h2,
.coordinators-form-checkbox p,
.coordinators-search-label {
  position: relative;
    color: var(--color_font);
    font-weight: 700;
    font-size: calc(28 / 16* 1rem);
    padding: 0.3em 0.75em;
    background-color: var(--color_sub);
    border-radius: 7px;
    border-left: 18px solid var(--color_main);
}
@media (max-width: 1024px) {
  .com-hl-02, .contentBody h2,
  .coordinators-form-checkbox p,
  .coordinators-search-label {
    font-size: calc(25 / 16 * 1rem);
    padding: 0.5em 0.5em;
    border-width: 7px;
    border-radius: 4px;
  }
}

@media (max-width: 599px) {
    .com-hl-02, .contentBody h2, .coordinators-form-checkbox p, .coordinators-search-label {
        font-size: calc(21 / 16* 1rem);
        padding: 0.2em 0.5em;
    }
}


.com-hl-03, .contentBody h3 {
  position: relative;
  color: var(--color_font);
  font-size: calc(24 / 16 * 1rem);
  font-weight: 800;
  padding: 0 0.1em 0.25em;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.com-hl-03::before, .contentBody h3::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--color_accent);
  border-radius: 50%;
  position: relative;
  top: 3px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .com-hl-03, .contentBody h3 {
    font-size: calc(18 / 16 * 1rem);
  }
  .com-hl-03::before, .contentBody h3::before {
    width: 18px;
    height: 18px;
  }
}

.com-hl-04, .contentBody h4 {
  position: relative;
  color: var(--color_font);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0 0 0 0.75em;
}
.com-hl-04::before, .contentBody h4::before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: calc(100% - 0.5em);
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: -webkit-linear-gradient(var(--color_main) 0, var(--color_main) 10px, var(--color_font) 10px, var(--color_font));
  background: linear-gradient(var(--color_main) 0, var(--color_main) 10px, var(--color_font) 10px, var(--color_font));
}
@media only screen and (max-width: 1024px) {
  .com-hl-04::before, .contentBody h4::before {
    width: 4px;
  }
}

.com-hl-05, .contentBody h5 {
  position: relative;
  color: var(--color_main);
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0 0 0 1.25em;
}
.com-hl-05::before, .contentBody h5::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.65em;
  height: 2px;
  top: calc(1.53em * 0.5 + 1px);
  left: 0;
  background-color: var(--color_main);
}
@media only screen and (max-width: 1024px) {
  .com-hl-05::before, .contentBody h5::before {
    height: 2px;
  }
}

.com-hl-06, .contentBody h6 {
  color: var(--color_font);
  font-size: 1.2rem;
  font-weight: 600;
}

/********** 下層ページページタイトル用見出し **********/
.pageTitle {
  margin-bottom: 1.5em;
}
.pageTitle.withDate {
  margin-bottom: 0;
}

/*
*   table
*----------------------------*/
.com-table__base, .contentBody table, .com-table__dafault, .com-table-transform__sp, .com-table-transform__mbl, .com-table__03, .com-table__02, .com-table__01 {
  border-color: var(--tableLine_color);
}
.com-table__base, .contentBody table, .com-table__dafault, .com-table-transform__sp, .com-table-transform__mbl, .com-table__03, .com-table__02, .com-table__01,
.com-table__base td,
.contentBody table td,
.com-table__dafault td,
.com-table-transform__sp td,
.com-table-transform__mbl td,
.com-table__03 td,
.com-table__02 td,
.com-table__01 td,
.com-table__base th,
.contentBody table th,
.com-table__dafault th,
.com-table-transform__sp th,
.com-table-transform__mbl th,
.com-table__03 th,
.com-table__02 th,
.com-table__01 th {
  border-collapse: collapse;
}
.com-table__base th, .contentBody table th, .com-table__dafault th, .com-table-transform__sp th, .com-table-transform__mbl th, .com-table__03 th, .com-table__02 th, .com-table__01 th, .com-table__base td, .contentBody table td, .com-table__dafault td, .com-table-transform__sp td, .com-table-transform__mbl td, .com-table__03 td, .com-table__02 td, .com-table__01 td {
  color: var(--color_font);
  font-size: 1rem;
  line-height: var(--lineHeight_base);
  letter-spacing: var(--letterSpacing_base);
  text-align: left;
  vertical-align: middle;
  padding: 0.75em 0.75em 0.75em;
}
.com-table__base th, .contentBody table th, .com-table__dafault th, .com-table-transform__sp th, .com-table-transform__mbl th, .com-table__03 th, .com-table__02 th, .com-table__01 th {
  font-weight: var(--font-weight_base);
  background-color: var(--tableTh_color);
}

.com-table__dafault, .com-table-transform__sp, .com-table-transform__mbl, .com-table__03, .com-table__02, .com-table__01,
.com-table__dafault td,
.com-table-transform__sp td,
.com-table-transform__mbl td,
.com-table__03 td,
.com-table__02 td,
.com-table__01 td,
.com-table__dafault th,
.com-table-transform__sp th,
.com-table-transform__mbl th,
.com-table__03 th,
.com-table__02 th,
.com-table__01 th {
  border: 1px solid var(--tableLine_color);
}

/********** table01 **********/
/*
* table幅：自動
* 列幅：自動
* SP時レイアウト：変更なし
*/
/********** table02 **********/
/*
* table幅：100%
* 列幅：自動
* TABレイアウト：変更なし
* SPレイアウト：変更なし
*/
.com-table__02 {
  width: 100%;
}

/********** table03 **********/
/*
* table幅：100%
* 列幅：均等
* TABレイアウト：変更なし
* SPレイアウト：変更なし
*/
.com-table__03 {
  width: 100%;
  table-layout: fixed;
}

/********** com-table-transform__mbl **********/
/*
* table幅：100%
* 列幅：自動
* TABレイアウト：変更あり（一列 上：見出し/下：値）
* SPレイアウト：変更あり（一列 上：見出し/下：値）
*/
.com-table-transform__mbl {
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .com-table-transform__mbl {
    table-layout: fixed;
  }
}
@media only screen and (max-width: 1024px) {
  .com-table-transform__mbl {
    border-bottom: none;
  }
}
@media only screen and (max-width: 1024px) {
  .com-table-transform__mbl tr {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .com-table-transform__mbl th {
    display: block;
    width: 100% !important;
    border: none;
    border-bottom: 1px solid var(--tableLine_color);
  }
}
@media only screen and (max-width: 1024px) {
  .com-table-transform__mbl td {
    display: block;
    width: 100% !important;
    border: none;
    border-bottom: 1px solid var(--tableLine_color);
  }
}
@media only screen and (max-width: 1024px) {
  .com-table-transform__mbl colgroup col {
    width: 100% !important;
  }
}

/********** com-table-transform__sp **********/
/*
* table幅：100%
* 列幅：自動
* TABレイアウト：変更なし
* SPレイアウト：変更あり（一列 上：見出し/下：値）
*/
.com-table-transform__sp {
  width: 100%;
}
@media print, screen and (min-width: 600px) {
  .com-table-transform__sp {
    table-layout: fixed;
  }
}
@media only screen and (max-width: 599px) {
  .com-table-transform__sp {
    border-bottom: none;
  }
}
@media only screen and (max-width: 599px) {
  .com-table-transform__sp tr {
    display: block;
  }
}
@media only screen and (max-width: 599px) {
  .com-table-transform__sp th {
    display: block;
    width: 100% !important;
    border: none;
    border-bottom: 1px solid var(--tableLine_color);
  }
}
@media print, screen and (min-width: 600px) {
  .com-table-transform__sp td {
    vertical-align: middle;
  }
}
@media only screen and (max-width: 599px) {
  .com-table-transform__sp td {
    display: block;
    width: 100% !important;
    border: none;
    border-bottom: 1px solid var(--tableLine_color);
  }
}
@media only screen and (max-width: 1024px) {
  .com-table-transform__sp colgroup col {
    width: 100% !important;
  }
}

/********** scroll table MBL **********/
@media only screen and (max-width: 1024px) {
  .com-scrollTableBlock__mbl {
    overflow-x: scroll;
    border: 1px solid var(--tableLine_color);
  }
}
@media only screen and (max-width: 1024px) {
  .com-scrollTableBlock__mbl > table {
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    min-width: var(--width_base);
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .com-scrollTableBlock__mbl > table thead:first-child > tr > th, .com-scrollTableBlock__mbl > table thead:first-child > tr > td, .com-scrollTableBlock__mbl > table tbody:first-child > tr > th, .com-scrollTableBlock__mbl > table tbody:first-child > tr > td {
    border-top: none !important;
  }
  .com-scrollTableBlock__mbl > table thead:last-child > tr:last-child > th, .com-scrollTableBlock__mbl > table thead:last-child > tr:last-child > td, .com-scrollTableBlock__mbl > table tbody:last-child > tr:last-child > th, .com-scrollTableBlock__mbl > table tbody:last-child > tr:last-child > td {
    border-bottom: none !important;
  }
  .com-scrollTableBlock__mbl > table thead > tr:first-child > th, .com-scrollTableBlock__mbl > table thead > tr:first-child > td {
    border-top: none !important;
  }
  .com-scrollTableBlock__mbl > table tr > th:first-child, .com-scrollTableBlock__mbl > table tr > td:first-child {
    border-left: none !important;
  }
  .com-scrollTableBlock__mbl > table tr > th:last-child, .com-scrollTableBlock__mbl > table tr > td:last-child {
    border-right: none !important;
  }
}

/********** scroll table SP **********/
@media only screen and (max-width: 599px) {
  .com-scrollTableBlock__sp {
    overflow-x: scroll;
    border: 1px solid var(--tableLine_color);
  }
}
@media only screen and (max-width: 599px) {
  .com-scrollTableBlock__sp > table {
    border-top: none;
    border-bottom: none;
    border-left: none;
    border-right: none;
    min-width: calc(var(--width-tab__min) + 200px);
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .com-scrollTableBlock__sp > table thead:first-child > tr > th, .com-scrollTableBlock__sp > table thead:first-child > tr > td, .com-scrollTableBlock__sp > table tbody:first-child > tr > th, .com-scrollTableBlock__sp > table tbody:first-child > tr > td {
    border-top: none !important;
  }
  .com-scrollTableBlock__sp > table thead:last-child > tr:last-child > th, .com-scrollTableBlock__sp > table thead:last-child > tr:last-child > td, .com-scrollTableBlock__sp > table tbody:last-child > tr:last-child > th, .com-scrollTableBlock__sp > table tbody:last-child > tr:last-child > td {
    border-bottom: none !important;
  }
  .com-scrollTableBlock__sp > table thead > tr:first-child > th, .com-scrollTableBlock__sp > table thead > tr:first-child > td {
    border-top: none !important;
  }
  .com-scrollTableBlock__sp > table tr > th:first-child, .com-scrollTableBlock__sp > table tr > td:first-child {
    border-left: none !important;
  }
  .com-scrollTableBlock__sp > table tr > th:last-child, .com-scrollTableBlock__sp > table tr > td:last-child {
    border-right: none !important;
  }
}

/********** scroll table scroll text **********/
.com-scrollTableBlock-memo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 0 0 0 45px;
  min-height: 30px;
}
.com-scrollTableBlock-memo::before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: url(../images/common/icon/icon_scroll.svg) no-repeat center/contain;
}

/* HTML エディタ Style
============================================================ */
#tinymce {
  margin: 0 0 0;
  padding: 15px;
}

/* HTML エディタ内タグ標準 Style
============================================================ */
.contentBody a [target=_blank]::after,
.contentBody a .download::after,
.contentBody a [download]::after {
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: underline;
}
.contentBody a [target=_blank]::after {
  content: "";
}
.contentBody a .download::after,
.contentBody a [download]::after {
  content: "";
}
.contentBody p {
  margin-top: var(--lineHeight_base);
  margin-bottom: var(--lineHeight_base);
}
.contentBody u {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(255, 255, 0, 0.4)));
  background: -webkit-linear-gradient(transparent 60%, rgba(255, 255, 0, 0.4) 60%);
  background: linear-gradient(transparent 60%, rgba(255, 255, 0, 0.4) 60%);
  text-decoration: none;
}
.contentBody blockquote {
  position: relative;
  display: block;
  margin: 0 0 0;
  padding: 0.5em 0.5em 0.5em 1.5em;
  border-left: 5px solid #ccc;
  border-radius: 2px;
  font-size: 1rem;
}
.contentBody blockquote::before {
  content: "";
  position: absolute;
  display: block;
  height: 0.8em;
  width: 0.8em;
  top: 0;
  left: 0.25em;
  -webkit-mask: url("../../images/common/icon/icon_glyph.svg");
          mask: url("../../images/common/icon/icon_glyph.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: #ccc;
}
.contentBody blockquote > *:first-child {
  margin-top: 0;
}
.contentBody blockquote > *:last-child {
  margin-bottom: 0;
}
.contentBody cite {
  padding: 0 0.25em 0 0;
  font-size: 1rem;
}
.contentBody cite, .contentBody cite > * {
  font-style: oblique !important;
}
.contentBody pre {
  margin: 2em 0;
  padding: 11px 20px;
  border-radius: 2px;
  background: #eee;
  font-size: 0.875em;
  white-space: pre-wrap;
}
.contentBody pre,
.contentBody samp {
  font-family: sans-serif;
}
.contentBody code {
  margin: 0 2px;
  padding: 0 3px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #fafafa;
  font-family: sans-serif;
  font-size: 0.875em;
}
.contentBody kbd {
  margin: 0 2px;
  padding: 0 3px;
  border: 1px solid #ddd;
  border-bottom: 3px solid #ddd;
  border-radius: 3px;
  background-color: #fafafa;
  font-family: sans-serif;
  font-size: 0.875em;
}
.contentBody .col-2,
.contentBody .col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 0.5em 1em;
}
.contentBody .col-2:first-child,
.contentBody .col-3:first-child {
  padding-left: 0;
}
.contentBody .col-2:last-child,
.contentBody .col-3:last-child {
  padding-right: 0;
}
.contentBody .col-2 > * {
  width: -o-calc(50% - 0.5em);
  width: calc(50% - 0.5em);
}
@media only screen and (max-width: 599px) {
  .contentBody .col-2 > * {
    width: 100%;
  }
}
.contentBody .col-3 > * {
  width: -o-calc(100% / 3 - (1.0em * 2 / 3));
  width: calc(100% / 3 - (1.0em * 2 / 3));
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .contentBody .col-3 > * {
    width: -o-calc(50% - 0.5em);
    width: calc(50% - 0.5em);
  }
}
@media only screen and (max-width: 599px) {
  .contentBody .col-3 > * {
    width: 100%;
  }
}
.contentBody ul:not(:not(.col-2):not(.col-3)[class]) {
  margin: var(--lineHeight_base) 0;
}
.contentBody ul:not(:not(.col-2):not(.col-3)[class]) > li {
  position: relative;
  padding-left: 1.5em;
  line-height: 1.8em;
  margin-bottom: 0.5em;
}
.contentBody ul:not(:not(.col-2):not(.col-3)[class]) > li:last-child {
  margin-bottom: 0;
}
.contentBody ul:not(:not(.col-2):not(.col-3)[class]) > li::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.5em;
  height: 0.5em;
  top: 0.7em;
  left: 0;
  font-weight: 800;
  background-color: var(--color_main);
  border-radius: 50%;
}
.contentBody ol:not(:not(.col-2):not(.col-3)[class]) {
  counter-reset: item;
  margin: var(--lineHeight_base) 0;
}
.contentBody ol:not(:not(.col-2):not(.col-3)[class]) > li {
  position: relative;
  padding-left: 1.75em;
  line-height: var(--lineHeight_base);
  margin-bottom: 0.5em;
}
.contentBody ol:not(:not(.col-2):not(.col-3)[class]) > li:last-child {
  margin-bottom: 0;
}
.contentBody ol:not(:not(.col-2):not(.col-3)[class]) > li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  top: 0.625em;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  color: #fff;
  font-size: 0.75em;
  line-height: 1em;
  text-align: center;
  letter-spacing: 0em;
  text-indent: 0em;
  background-color: var(--color_main);
  border-radius: 50%;
  padding: 0 0 0.1em;
}
.contentBody table {
  margin-top: var(--lineHeight_base);
  margin-bottom: var(--lineHeight_base);
}
.contentBody table,
.contentBody table thead,
.contentBody table tbody,
.contentBody table tr,
.contentBody table td,
.contentBody table th {
  height: auto !important;
}
@media only screen and (max-width: 1024px) {
  .contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) {
    max-width: inherit;
  }
}
.contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) thead, .contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) tbody, .contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) tfoot, .contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) tr, .contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) th, .contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) td {
  border: inherit;
}
.contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) th {
  width: 25%;
}
.contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) td {
  background: transparent;
}
.contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) td > *:last-child {
  margin-bottom: 0 !important;
}
.contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body) caption {
  margin: 0 0 0.5em;
  text-align: left;
}
.contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body).table_borders {
  border: 1px solid var(--tableLine_color);
}
.contentBody table:not(.com-table__01, .com-table__02, .com-table__03, .com-table-transform__mbl, .com-table-transform__sp, .sect-form-body).table_no_borders {
  border: none !important;
}
.contentBody h1, .contentBody h2, .contentBody h3, .contentBody h4, .contentBody h5, .contentBody h6 {
  clear: both;
}
.contentBody h1:first-child, .contentBody h2:first-child, .contentBody h3:first-child, .contentBody h4:first-child, .contentBody h5:first-child, .contentBody h6:first-child {
  margin-top: 0;
}
.contentBody .u-align-right {
  text-align: right;
}
.contentBody .u-align-left {
  text-align: left;
}
.contentBody .u-align-center {
  text-align: center;
}
.contentBody .alignRight,
.contentBody img.u-align-right,
.contentBody img[style*="float:right"],
.contentBody img[style*="float: right"] {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.contentBody .alignLeft,
.contentBody img.u-align-left,
.contentBody img[style*="float:left"],
.contentBody img[style*="float: left"] {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .contentBody .alignRight,
.contentBody .alignLeft,
.contentBody img.u-align-right,
.contentBody img.u-align-left,
.contentBody img[style*="float:right"],
.contentBody img[style*="float: right"],
.contentBody img[style*="float:left"],
.contentBody img[style*="float: left"] {
    max-width: 38.2%;
  }
}
@media only screen and (max-width: 599px) {
  .contentBody .alignRight,
.contentBody .alignLeft,
.contentBody img.u-align-right,
.contentBody img.u-align-left,
.contentBody img[style*="float:right"],
.contentBody img[style*="float: right"],
.contentBody img[style*="float:left"],
.contentBody img[style*="float: left"] {
    display: block;
    float: none;
    max-width: 100%;
    margin: 0 auto 2.666em;
  }
}
.contentBody .alignCenter,
.contentBody .u-align-center {
  display: block;
  margin: 0 auto 20px;
}
.contentBody > *:first-child {
  margin-top: 0;
}
.contentBody > *:last-child {
  margin-bottom: 0;
}
.contentBody i {
  font-style: italic;
}

/*
*   TEXT STYLE
*----------------------------*/
/****** エディタ用テキストStyle ******/
/* selector:style class:style1 title:スタイル1 */
.style1, .style2 {
  display: inline;
  color: #fff;
  font-size: 1rem;
  background: var(--color_main);
}

/* selector:style class:style2 title:スタイル2 */
.style2 {
  background: var(--color_font);
}

/* selector:style class:style3 title:スタイル3 */
.style3 {
  color: var(--color_main);
  font-size: 2rem;
  font-weight: 700;
}

/* selector:style class:style4 title:スタイル4 */
.style4 {
  font-size: 2rem;
  font-weight: 700;
}

/* selector:style class:style5 title:スタイル5 */
.style5 {
  color: var(--color_main);
  font-size: 1.5rem;
  font-weight: 700;
}

/* selector:style class:style6 title:スタイル6 */
.style6 {
  font-size: 1.5rem;
  font-weight: 700;
}

/* selector:style class:style7 title:スタイル7 */
.style7 {
  color: var(--color_main);
  font-size: 1.2rem;
  font-weight: 700;
}

/* selector:style class:style8 title:スタイル8 */
.style8 {
  font-size: 1.2rem;
  font-weight: 700;
}

/* selector:style class:style9 title:スタイル9 */
.style9 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, var(--color_main_alpha)));
  background: -webkit-linear-gradient(transparent 60%, var(--color_main_alpha) 0%);
  background: linear-gradient(transparent 60%, var(--color_main_alpha) 0%);
}

/* selector:style class:style10 title:スタイル10 */
.style10 {
  font-size: 0.8em;
}

/****** エディタ用その他テキスト装飾 ******/
.com-underLine_double {
  -webkit-text-decoration: underline double;
  text-decoration: underline double;
}

.com-strike {
  text-decoration: line-through;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  -webkit-text-decoration-style: double;
  text-decoration-style: double;
  -webkit-text-decoration-color: #f80000;
  text-decoration-color: #f80000;
  -webkit-text-decoration-thickness: 2px;
  text-decoration-thickness: 2px;
}

/*
*   本文テンプレート レイアウトパーツ
*----------------------------*/
.com-columnBlock {
  margin: 3rem 0;
}
.com-columnBlock .columnBox {
  display: grid;
  gap: 3rem 2rem;
  margin: 3rem 0 0;
}
@media only screen and (max-width: 599px) {
  .com-columnBlock .columnBox {
    gap: 2rem 1.5rem;
  }
}
.com-columnBlock .columnBox:first-child {
  margin-top: 0;
}
.com-columnBlock .columnBox .imgWrap > img {
  display: block;
  width: 100%;
  height: auto;
}
.com-columnBlock .columnBox .txtWrap > *:first-child {
  margin-top: 0 !important;
}
.com-columnBlock .columnBox .txtWrap > *:last-child {
  margin-bottom: 0 !important;
}
.com-columnBlock .columnBox .columnBox-item > *:nth-child(2) {
  margin-top: 1.5rem;
}
@media print, screen and (min-width: 600px) {
  .com-columnBlock.isReverse .columnBox > *:first-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .com-columnBlock.isReverse .columnBox > *:nth-child(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.com-columnBlock.isColumn2 .columnBox {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 599px) {
  .com-columnBlock.isColumn2 .columnBox {
    grid-template-columns: repeat(1, 1fr);
  }
}
.com-columnBlock.isColumn2.photoWidth300 .columnBox {
  grid-template-columns: 300px 1fr;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-columnBlock.isColumn2.photoWidth300 .columnBox {
    grid-template-columns: 0.5fr 1fr;
  }
}
@media only screen and (max-width: 599px) {
  .com-columnBlock.isColumn2.photoWidth300 .columnBox {
    grid-template-columns: repeat(1, 1fr);
  }
}
.com-columnBlock.isColumn2.photoWidth300 .columnBox > .imgWrap {
  max-width: 300px;
  margin: 0 auto 0;
}
.com-columnBlock.isColumn2.photoWidth300.isReverse .columnBox {
  grid-template-columns: 1fr 300px;
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .com-columnBlock.isColumn2.photoWidth300.isReverse .columnBox {
    grid-template-columns: 1fr 0.5fr;
  }
}
@media only screen and (max-width: 599px) {
  .com-columnBlock.isColumn2.photoWidth300.isReverse .columnBox {
    grid-template-columns: repeat(1, 1fr);
  }
}
.com-columnBlock.isColumn3 .columnBox {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 599px) {
  .com-columnBlock.isColumn3 .columnBox {
    grid-template-columns: repeat(1, 1fr);
  }
}
.com-columnBlock.isColumn4 .columnBox {
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 1024px) {
  .com-columnBlock.isColumn4 .columnBox {
    grid-template-columns: repeat(2, 1fr);
  }
}
.com-columnBlock.isColumn5 .columnBox {
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 1.25rem;
}
@media only screen and (max-width: 1024px) {
  .com-columnBlock.isColumn5 .columnBox {
    grid-template-columns: repeat(3, 1fr);
  }
}
.com-columnBlock.isColumn5 .columnBox .columnBox-item > .txtWrap {
  margin-top: 1rem;
}

h1 + .com-columnBlock,
h2 + .com-columnBlock,
h3 + .com-columnBlock,
h4 + .com-columnBlock,
h5 + .com-columnBlock,
h6 + .com-columnBlock {
  margin-top: 0;
}

.com-border-box, .com-bgBox {
  border: 1px solid var(--color_main);
  margin: 2rem 0 2rem;
  padding: 25px 30px;
}
@media only screen and (max-width: 1024px) {
  .com-border-box, .com-bgBox {
    padding: 20px;
  }
}
.com-border-box > *:first-child, .com-bgBox > *:first-child {
  margin-top: 0 !important;
}
.com-border-box > *:last-child, .com-bgBox > *:last-child {
  margin-bottom: 0 !important;
}

.com-bgBox {
  border: none;
  background-color: var(--color_sub);
}

/*
*   FAQ
*----------------------------*/
.com-faq-wrap {
  width: 100%;
  margin: 0 auto;
}

.com-faq {
  position: relative;
  margin-bottom: 40px;
}

.com-faq:last-child {
  margin-bottom: 0;
}

.com-faq .title {
  position: relative;
  border: 1px solid #6c6c6c;
  margin: 0;
  padding: 13px 55px 13px calc(1.2em + 15px + 20px);
  font-size: 1.3333333333em;
  font-weight: bold;
  color: var(--color_font);
  background: #fff;
  line-height: 1.4;
  text-indent: calc(-1.2em - 15px);
  cursor: pointer;
}

.com-faq .title::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 25px;
  top: calc(50% - 4px);
  width: 15px;
  height: 15px;
  border-top: 1px solid #6c6c6c;
  border-right: 1px solid #6c6c6c;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

.com-faq .title.active::after {
  top: calc(50% + 4px);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.com-faq .title .title-q {
  display: inline-block;
  margin-right: 15px;
  font-weight: bold;
  text-indent: 0;
}

.com-faq .body {
  display: none;
  background: #f8f8f8;
}

.com-faq .body .body-inner {
  padding: 25px 30px;
  text-align: justify;
}

.com-faq .body .body-inner > :last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
  .com-faq {
    margin-bottom: 30px;
  }

  .com-faq .title {
    padding: 13px 45px 13px calc(1.2em + 10px + 20px);
    text-indent: calc(-1.2em - 10px);
  }

  .com-faq .title::after {
    right: 20px;
    width: 13px;
    height: 13px;
  }

  .com-faq .title .title-q {
    margin-right: 10px;
  }

  .com-faq .body .body-inner {
    padding: 20px 25px;
  }
}
@media only screen and (max-width: 599px) {
  .com-faq {
    margin-bottom: 25px;
  }

  .com-faq .title {
    padding: 8px 40px 8px calc(1.2em + 5px + 15px);
    text-indent: calc(-1.2em - 5px);
    font-size: 1.2em;
    line-height: 1.35;
  }

  .com-faq .title::after {
    right: 15px;
    width: 12px;
    height: 12px;
  }

  .com-faq .title .title-q {
    margin-right: 5px;
  }

  .com-faq .body .body-inner {
    padding: 15px 20px;
  }
}
/*
*   BUTTON
*----------------------------*/
.com-btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 1rem;
  width: 100%;
  text-align: center;
  margin: 4rem 0;
}

.com-btn,
.com-btn-list a {
  border-radius: 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  max-width: 360px;
  min-height: 4em;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.4em;
  letter-spacing: var(--letterSpacing_base);
  text-decoration: none;
  padding: 0.25em 2.5em;
  border: 2px solid var(--color_main);
  background: var(--color_main);
  cursor: pointer;
  -webkit-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}
@media only screen and (max-width: 599px) {
  .com-btn,
.com-btn-list a {
    min-width: initial;
    max-width: 360px;
  }
}
.com-btn::after,
.com-btn-list a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border: 0.4em solid transparent;
  border-left: 0.5em solid #fff;
  border-right: none;
  top: 50%;
  right: 1em;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: right 0.2s ease-in, left 0.2s ease-in;
  transition: right 0.2s ease-in, left 0.2s ease-in;
}
.com-btn:hover,
.com-btn-list a:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .com-btn:hover::after,
.com-btn-list a:hover::after {
    right: 0.5em;
  }
}
.com-btn.left-arrow::after,
.com-btn-list a.left-arrow::after {
  right: auto;
  left: 1em;
  -webkit-transform: translate(0, -50%) scale(-1, 1);
          transform: translate(0, -50%) scale(-1, 1);
}
.com-btn.left-arrow:hover,
.com-btn-list a.left-arrow:hover {
  opacity: 1 !important;
}
@media print, screen and (min-width: 1025px) {
  .com-btn.left-arrow:hover::after,
.com-btn-list a.left-arrow:hover::after {
    left: 0.5em;
  }
}
.com-btn.com-btn-external::after, .com-btn[target=_blank]::after,
.com-btn-list a.com-btn-external::after,
.com-btn-list a[target=_blank]::after {
  width: 1rem;
  height: 1rem;
  border: none;
  background: url(../images/common/icon/icon_new-window_white.svg) no-repeat center/contain;
}
.com-btn.com-btn-large,
.com-btn-list a.com-btn-large {
  min-width: initial;
  max-width: initial;
  width: 100%;
  font-size: 1.5em;
  text-align: left;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  letter-spacing: 0.1em;
}
@media print, screen and (min-width: 1025px) {
  .com-btn.com-btn-large,
.com-btn-list a.com-btn-large {
    border-width: 4px;
  }
}
@media print, screen and (min-width: 1025px) {
  .isColumn3 .com-btn,
.isColumn3 .com-btn-list a {
    width: calc((100% / 3) - ((1rem * 2) / 3) - 1px);
  }
}
@media print, screen and (min-width: 1025px) {
  .isColumn2 .com-btn,
.isColumn2 .com-btn-list a {
    width: calc(50% - 1rem - 1px);
  }
}

/*
*   BUTTON
*----------------------------*/
.button {
  background-color: var(--color_accent);
  position: relative;
  border-radius: calc(1px / 0);
  font-size: clamp(calc(18 / 16 * 1em), calc(24 / 768 * 100vw), calc(24 / 16 * 1em));
  font-weight: 700;
  color: var(--color_font);
  text-decoration: none;
  padding: 10px 47px 10px 27px;
  display: block;
  width: fit-content;
/*  letter-spacing: 0.15em;*/
  overflow: clip;
  z-index: 0;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  border: 3px solid var(--color_accent);
}
@media (any-hover: hover) {
  .button:hover {
    opacity: 1;
    color: var(--color_white);
    background-color: var(--color_main);
  }
}
.button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  mask-image: url(../images/common/arrow_b.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--color_main);
  width: 14px;
  height: 20px;
  transition: mask-image 0.3s ease, background-color 0.3s ease;
}
.button::after {
  content: "";
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  transition: mask-image 0.3s ease, background-color 0.3s ease;
  mask-size: contain;
  mask-repeat: no-repeat;
}
@media (any-hover: hover) {
  .button:hover::before {
    mask-image: url(../images/common/arrow_y.svg);
    background-color: var(--color_accent);
  }
}

/* blue */
.button.-blue {
  background-color: var(--color_main);
  color: var(--color_white);
  border-color: var(--color_main);
}
.button.-blue::before {
  mask-image: url(../images/common/arrow_y.svg);
  background-color: var(--color_accent);
}
@media (any-hover: hover) {
  .button.-blue:hover {
    color: var(--color_main);
    background-color: var(--color_accent);
  }
  .button.-blue:hover::before {
    mask-image: url(../images/common/arrow_b.svg);
    background-color: var(--color_main);
  }
}

/* white */
.button.-white {
  background-color: var(--color_white);
  border-color: var(--color_white);
}
@media (any-hover: hover) {
  .button.-white:hover {
    background-color: var(--color_main);
    color: var(--color_white);
  }
}

/* small */
.button.-small {
  padding: 12px 90px 12px 32px;
  font-size: clamp(calc(16 / 16 * 1rem), calc(20 / 768 * 100vw), calc(20 / 16 * 1rem));
  letter-spacing: 0.1em;
}
@media (max-width: 599px) {
  .button.-small {
    padding: 8px 57px 6px 15px;
    font-size: clamp(calc(12 / 16 * 1rem), calc(14 / 768 * 100vw), calc(14 / 16 * 1rem));
  }
  .button.-small::before {
    width: 10px;
    height: 12px;
    right: 8px;
  }
}

/* consult */
.button.-consult {
  background-color: var(--color_main);
  color: var(--color_white);
  font-size: calc(28 / 16 * 1rem);
  letter-spacing: 0.1em;
  padding: 28px 125px 30px 126px;
}
.button.-consult::before {
  mask-image: url(../images/common/arrow_y.svg);
  background-color: var(--color_accent);
  right: 50px;
  width: 24px;
  height: 40px;
}
.button.-consult::after {
  mask-image: url(../images/common/search_y.svg);
  background-color: var(--color_accent);
  left: 50px;
  width: 58px;
  height: 58px;
}
@media (any-hover: hover) {
  .button.-consult:hover::after {
    mask-image: url(../images/common/search_b.svg);
    background-color: var(--color_main);
  }
}
@media (max-width: 800px) {
  .button.-consult {
   max-width: 495px;
        width: 100%;
        padding: 15px 35px 12px 60px;
        font-size: calc(21 / 16* 1rem);
  }
  .button.-consult::before {
    width: 14px;
    height: 18px;
    right: 20px;
  }
  .button.-consult::after {
    width: 28px;
    height: 28px;
    left: 20px;
  }
}
@media (max-width: 600px) {
.button.-consult {
        max-width: 415px;
        width: 100%;
        padding: 15px 45px 12px 70px;
        font-size: calc(21 / 16* 1rem);
    }
}
@media (max-width: 460px) {
.button.-consult {
        max-width: 375px;
        padding: 15px 45px 12px 70px;
        font-size: calc(18 / 16* 1rem);
    }
}

@media (max-width: 415px) {
.button.-consult {
        font-size: calc(16 / 16* 1rem);
    }

}
@media (max-width: 380px) {
.button.-consult {
        max-width: 345px;
        font-size: calc(14 / 16* 1rem);
    }
}

/* lightBlue */
.button.-lightBlue {
  background-color: var(--color_lightBlue2);
  color: var(--color_font);
  border-color: var(--color_lightBlue2);
  font-size: calc(31 / 16 * 1rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 45px 117px 38px 110px;
}
.button.-lightBlue::after {
  mask-image: url(../images/home/moushikomi_icon.svg);
  background-color: var(--color_main);
  width: 54px;
  height: 54px;
  left: 46px;
}
.button.-lightBlue::before {
  mask-image: url(../images/common/arrow_b.svg);
  background-color: var(--color_main);
  width: 20px;
  height: 30px;
  right: 42px;
}

@media (any-hover: hover) {
  .button.-lightBlue:hover {
    background-color: var(--color_main);
    color: var(--color_white);
    border-color: var(--color_lightBlue);
  }
  .button.-lightBlue:hover::after {
    background-color: var(--color_white);
  }
  .button.-lightBlue:hover::before {
    background-color: var(--color_white);
  }
}
@media (max-width: 1024px) {

  .button.-lightBlue {
    padding: 20px 50px 15px 50px;
    font-size: calc(24 / 16 * 1rem);
  }
  .button.-lightBlue::before {
    width: 14px;
    height: 18px;
    right: 20px;
  }
  .button.-lightBlue::after {
    width: 28px;
    height: 28px;
    left: 20px;
  }
}
@media (max-width: 599px) {
  .button.-lightBlue {
    font-size: calc(14 / 16 * 1rem);
    padding: 15px 25px 10px 50px;
    width: 100%;
    max-width: 235px;
  }
  .button.-lightBlue::before {
    width: 10px;
    height: 14px;
    right: 16px;
  }
  .button.-lightBlue::after {
    width: 28px;
    height: 28px;
    left: 16px;
  }
}
@media (max-width: 345px) {
  .button.-lightBlue {
    padding: 15px 25px 10px 40px;
  }
  .button.-lightBlue::after {
    width: 20px;
    height: 20px;
    left: 12px;
  }
}

/* -contact */
.button.-contact {
  font-size: clamp(calc(16 / 16* 1rem), calc(18 / 768* 100vw), calc(18 / 16* 1rem));
  padding: 16px 50px 16px 61px;
  letter-spacing: 0.1em;
}
.button.-contact::after {
  mask-image: url(../images/common/mail_icon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--color_main);
  width: 40px;
  height: 40px;
  left: 20px;
}
@media (any-hover: hover) {
  .button.-contact:hover {
    color: var(--color_main);
    background-color: var(--color_accent);
  }
  .button.-contact:hover::before {
    background-color: var(--color_main);
  }
}
@media (max-width: 599px) {
  .button.-contact {
    font-size: clamp(calc(12 / 16* 1rem), calc(14 / 768* 100vw), calc(14 / 16* 1rem));
    padding: 12px 17px 10px 41px;
    max-width: 215px;
    width: 100%;
  }
  .button::before {
    right: 7px;
    width: 10px;
    height: 15px;
  }
  .button.-contact::after {
    width: 28px;
    height: 28px;
    left: 12px;
  }
}

/* footer */
.button.-footer {
  font-size: clamp(calc(24 / 16* 1em), calc(35/ 768* 100vw), calc(35 / 16* 1em));
  padding: 43px 101px 40px 60px;
  letter-spacing: 0.06em;
}
.button.-footer::before {
  right: 40px;
  width: 20px;
  height: 30px;
}

@media (max-width: 1024px) {
  .button.-footer {
    margin-inline: auto;
  }
}
@media screen and (max-width: 599px) {
  .button.-footer {
    font-size: clamp(calc(16 / 16* 1em), calc(22 / 599 * 100vw), calc(22 / 16* 1em));
    padding: 23px 30px 20px 27px;
    letter-spacing: 0.06em;
    width: 90%;
    max-width: 320px;
  }
  .button.-footer::before {
    right: 16px;
    width: 12px;
    height: 20px;
  }
}

/* calendar */
.button.-calendar {
  font-size: 34px;
  padding: 35px 100px 35px 100px;
}
.button.-calendar::before {
  width: 20px;
  height: 30px;
  right: 40px;
}
.button.-calendar::after {
  position: absolute;
  top: 50%;
  left: 30px;
  translate: 0 -50%;
  mask-image: url(../images/common/icon/icon_calendar.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--color_accent);
  width: 40px;
  height: 40px;
}

@media (any-hover: hover) {
  .button.-calendar:hover::before, .button.-calendar:hover::after {
    background-color: var(--color_main);
  }
}
@media (max-width: 599px) {
  .button.-calendar {
    font-size: clamp(calc(10 / 16 * 1rem), calc(16 / 375 * 100vw), calc(19 / 16 * 1rem));
    padding: 20px 60px;
  }
  .button.-calendar::before {
    width: 12px;
    height: 18px;
    right: 20px;
  }
  .button.-calendar::after {
    position: absolute;
    top: 50%;
    left: 20px;
    width: 22px;
    height: 23px;
  }
}

/* -coordinator */
.button.-coordinator {
  font-size: 15px;
  padding: 5px 40px 5px 15px;
  border: 1px solid var(--color_main);
  background-color: white;
  color: var(--color_main);
}
.button.-coordinator::before {
  width: 15px;
  height: 15px;
  right: 10px;
}
@media (any-hover: hover) {
  .button.-coordinator:hover {
    background-color: var(--color_main);
    color: white;
  }
  .button.-coordinator:hover::before {
    background-color: white;
  }
}



/* contact-button */
.contact-button {
	background-color: var(--color_contactButton);
    color: var(--color_font);
    font-size: calc(33 / 16* 1rem);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0.1em;
    padding: 32px 114px 35px 120px;
    border-radius: 45px;
    border: 3px solid var(--color_main);
    box-shadow: 0 10px 0 0 var(--color_main);
    display: block;
    width: fit-content;
    transition: box-shadow 0.3s ease-out, translate 0.3s ease-out;
    position: relative;
}
.contact-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 34px;
  translate: 0 -50%;
  width: 70px;
  height: 70px;
  mask-image: url(../images/home/mail_icon.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
  background-color: var(--color_main);
}
.contact-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 35px;
  translate: 0 -50%;
  mask-image: url(../images/common/arrow_b.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: var(--color_main);
  width: 20px;
  height: 30px;
}

@media (any-hover: hover) {
  .contact-button:hover {
    box-shadow: 0 0 0 0 var(--color_main);
    translate: 0 10px;
    opacity: 1;
  }
}
@media (max-width: 1024px) {
  .contact-button {
    padding: 30px 80px 30px 80px;
        font-size: calc(25 / 16* 1rem);
  }
  .contact-button::before {
    width: 55px;
        height: 55px;
        left: 12px;
  }

}
@media (max-width: 599px) {
  .contact-button {
    font-size: min(calc(17 / 16 * 1rem), calc(24 / 599 * 100vw));
    padding: 19px 29px 15px 56px;
    border-radius: 15px;
    box-shadow: 0 3px 0 0 var(--color_main);
    max-width: 230px;
    width: 100%;
  }
  .contact-button::before {
    width: 30px;
    height: 30px;
    left: 12px;
  }
  .contact-button::after {
    right: 20px;
    width: 11px;
    height: 17px;
  }
}

/*
*  section-title
*----------------------------*/
.section-title {
  font-size: calc(42 / 16 * 1rem);
  font-weight: 700;
  color: var(--color_main);
}
.section-title.-white {
  color: var(--color_white);
}

@media (max-width: 1024px) {
  .section-title {
    font-size: clamp(calc(30 / 16* 1rem), calc(42 / 1024 * 100vw), calc(42 / 16* 1rem));
  }
}
@media (max-width: 599px) {
  .section-title {
    font-size: calc(24 / 16* 1rem);
  }
}

/*
*  FAQ
*----------------------------*/
.accordion {
  border: 2px solid var(--color_main);
  border-radius: 20px;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion__title {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 12px;
  width: 100%;
  padding: 13px 31px 31px 34px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  font-size: calc(21 / 16 * 1rem);
  letter-spacing: 0.1em;
}
.accordion__title::after {
  content: "";
  background-image: url(../images/common/arrow_y.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 15px;
  height: 22px;
  transition: rotate 0.3s ease;
  position: absolute;
  right: 30px;
  top: 50%;
  translate: 0 -50%;
}
.accordion.is-open .accordion__title::after {
  rotate: 90deg;
}
.accordion__title-number,
.accordion__content-number {
  font-size: calc(38 / 16 * 1rem);
  font-weight: 700;
  color: var(--color_main);
  font-family: var(--fontFamily_sub);
  position: relative;
  top: -2px;
}
.accordion__title-number {
  top: 4px;
}
.accordion__content {
  overflow: hidden;
  text-decoration: none;
  border-top: 2px solid var(--color_main);
  background-color: var(--accordionArrow_color);
  font-size: calc(21 / 16 * 1rem);
  border-radius: 0 0 20px 20px;
}
.accordion__content-inner {
  padding: 16px 40px 33px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 12px;
  line-height: 1.7;
}
.accordion__content-number {
  position: relative;
  top: 5px;
}

@media (max-width: 599px) {
  .accordion {
    border-radius: 10px;
  }
  .accordion__title {
    gap: 6px;
    padding: 5px 18px 14px 9px;
    font-size: calc(14 / 16 * 1rem);
  }
  .accordion__title::after {
    width: 10px;
    height: 12px;
    right: 10px;
  }
  .accordion__title-number, .accordion__content-number {
    font-size: calc(18 / 16 * 1rem);
    top: 4px;
  }
  .accordion__content {
    border-radius: 0 0 10px 10px;
  }
  .accordion__content-inner {
    padding: 6px 11px 13px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 6px;
    line-height: 1.7;
  }
  .accordion__content-inner  .contentBody {
    font-size: calc(14 / 16 * 1rem);
  }
}


/*
*  coordinators-form
*----------------------------*/
.coordinators-form-checkbox > div {
  margin-top: 100px;
}
.coordinators-form-checkbox ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
.coordinators-form-checkbox label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.coordinators-form-checkbox input[type="checkbox"] {
  appearance: none;
  position: relative;
  padding-left: 33px;
  border: none;
}
.coordinators-form-checkbox input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    border: 2px solid var(--color_main);
}
.coordinators-form-checkbox input[type="checkbox"]:checked::before {
  background-color: var(--color_main);
}
.coordinators-form-checkbox input[type="checkbox"]::after {
  position: absolute;
    top: 50%;
    left: 8px;
    translate: 0 -55%;
    width: 9px;
    height: 15px;
    border-right: 4px solid white;
    border-bottom: 4px solid white;
    rotate: 45deg;
}
.coordinators-form-checkbox input[type="checkbox"]:checked::after {
  content: "";
}
.coordinators-form-checkbox span {
  font-size: calc(16 / 16 * 1rem);
}
@media (max-width: 1024px) {
  .coordinators-form-checkbox ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .coordinators-form-checkbox > div {
    margin-top: 40px;
  }
  .coordinators-form-checkbox ul {
    gap: 25px 10px;
    margin-top: 25px;
  }
  .coordinators-form-checkbox input[type="checkbox"] {
    padding-left: 25px;
  }
  .coordinators-form-checkbox input[type="checkbox"]::before {
    width: 21px;
    height: 21px;
    border: 2px solid var(--color_main);
  }
  .coordinators-form-checkbox input[type="checkbox"]::after {
    left: 10px;
    translate: 0 -55%;
    width: 8px;
    height: 16px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
  }
  .coordinators-form-checkbox span {
    font-size: calc(14 / 16 * 1rem);
  }
}

/*
*  coordinators-search
*----------------------------*/
.coordinators-search-input {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 830px;
  margin-inline: auto;
  gap: 20px;
  margin-top: 40px;
}
.coordinators-search-input input {
  border: 3px solid var(--color_main);
  border-radius: 10px;
  padding: 15px 20px;
  width: 100%;
  font-size: calc(25 / 16 * 1rem);
}
.coordinators-search-input button {
  background-color: var(--color_main);
  border-radius: 10px;
  padding: 15px 20px;
  color: var(--color_white);
  font-size: calc(25 / 16 * 1rem);
  display: flex;
  gap: 12px;
  align-items: center;
}
.coordinators-search-input button::before {
  content: "";
  background-image: url(../images/common/icon/icon_search_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
}

@media (max-width: 599px) {
  .coordinators-search-input {
    gap: 10px;
    margin-top: 25px;
  }
  .coordinators-search-input input {
    border: 2px solid var(--color_main);
    border-radius: 6px;
    padding: 10px 15px;
    font-size: calc(18 / 16 * 1rem);
  }
  .coordinators-search-input button {
    border-radius: 6px;
    padding: 15px;
    font-size: calc(13 / 16 * 1rem);
    gap: 5px;
  }
  .coordinators-search-input button::before {
    width: 15px;
    height: 15px;
  }
}

/*
*  coordinators-form-submit
*----------------------------*/
.coordinators-form-submit {
  margin-block: 100px;
  display: grid;
  gap: 10px;
  width: fit-content;
  margin-inline: auto;
}
.coordinators-form-submit button {
  background-color: var(--color_main);
  border-radius: 10px;
  padding: 40px;
  color: var(--color_white);
  font-size: calc(33 / 16 * 1rem);
  display: flex;
  gap: 12px;
}
.coordinators-form-submit button::before {
  content: "";
  background-image: url(../images/common/icon/icon_search_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 37px;
  height: 37px;
}
.coordinators-form-submit a {
  font-size: calc(20 / 16 * 1rem);
  text-align: center;
}

@media (max-width: 599px) {
  .coordinators-form-submit {
    margin-block: 35px;
  }
  .coordinators-form-submit button {
    padding: 20px;
    font-size: calc(15 / 16 * 1rem);
  }
  .coordinators-form-submit button::before {
    width: 16px;
    height: 16px;
  }
  .coordinators-form-submit a {
    font-size: calc(13 / 16 * 1rem);
    text-align: center;
  }
}

/*
*  coordinators-list
*----------------------------*/
.coordinators-list {
  border-top: 2px solid var(--color_main);
  padding-top: 80px;
}
@media (max-width: 599px) {
  .coordinators-list {
    padding-top: 45px;
  }
}
.coordinators-item {
  background-color: var(--color_lightBlue4);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
  "thumbnail info"
  "link info";
  align-items: start;
  gap: 40px 45px;
  margin-top: 60px;
}
.coordinators-item:first-child {
  margin-top: 80px;
}
.coordinators-item-thumbnail {
  display: grid;
  place-items: center;
  grid-area: thumbnail;
}
.coordinators-item-image {
  aspect-ratio: 1;
  width: 100%;
  overflow: hidden;
}
.coordinators-item-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.coordinators-item-link {
  grid-area: link;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: var(--color_main);
  border-radius: 10px;
  padding: 20px;
  color: var(--color_white);
  font-size: calc(16 / 16 * 1rem);
  font-weight: 700;
}
.coordinators-item-link::after {
  content: "";
  background-image: url(../images/common/arrow_y.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  height: 16px;
}
.coordinators-info {
  grid-area: info;
}
.coordinators-info-item:not(:last-child) {
  border-bottom: 1px solid var(--tableLine_color);
}
.coordinators-info-item {
  display: grid;
  grid-template-columns: 200px auto;
  font-size: calc(19 / 16 * 1rem);
  padding: 20px 5px;
  line-height: 2;
}
.coordinators-info-item:first-child {
  padding-top: 0;
}
.coordinators-info-item p {
  line-height: 2;
}
.coordinators-info-item dt {
  font-weight: 700;
  color: var(--color_main);
}
.coordinators-info-item:first-child dd {
  font-weight: 700;
}
@media (max-width: 1024px) {
  .coordinators-item {
	max-width: 450px;
    margin: 30px auto;
    grid-template-columns: 1fr;
    grid-template-rows: unset;
    grid-template-areas:
    "thumbnail"
    "info"
    "link";
  }
  .coordinators-item-thumbnail {
    max-width: 66%;
    margin-inline: auto;
  }
  .coordinators-item-link {
    max-width: 220px;
    margin-inline: auto;
  }
}
@media (max-width: 1024px) {
  .coordinators-item {
    border-radius: 10px;
    padding: 35px 20px;
    gap: 35px;
    margin-top: 40px;
  }
  .coordinators-item:first-child {
    margin-top: 40px;
  }
  .coordinators-item-link {
    gap: 12px;
    border-radius: 5px;
    padding: 15px;
    font-size: calc(13 / 16 * 1rem);
    max-width: 170px;
  }
  .coordinators-item-link::after {
    width: 8px;
    height: 12px;
  }
  .coordinators-info-item {
    grid-template-columns: 1fr;
    font-size: calc(17 / 16 * 1rem);
    padding: 15px 5px;
  }
}

/*
*  page-contact
*----------------------------*/
.page-contact {
  background-color: var(--color_main);
    border-radius: 20px;
    padding: 0 80px 70px;
    width: 100%;
    max-width: 1000px;
    margin: 200px auto 0 auto;
}
.page-contact-head {
  position: relative;
    padding-block: 65px 65px;
}
.page-contact-head::before {
  content: "";
    position: absolute;
    width: 220px;
    height: 180px;
    background-image: url(../images/home/human.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: -85px;
    left: 0;
}
.page-contact-head-image {
  max-width: 310px;
    position: absolute;
    top: -80px;
    inset: -60px auto 0 50%;
    text-align: center;
    translate: -50% 0;
}
.page-contact-head .section-title {
  text-align: center;
  font-size: 30px;
}
.page-contact-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 65px;
}
.page-contact-link {
  border-radius: 20px;
    padding: 30px 20px 55px;
    background-color: var(--color_white);
    border: 4px solid var(--color_accent);
    color: var(--color_font);
    position: relative;
    display: grid;
    place-items: center;
    gap: 20px;
}
.page-contact-link::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 20px;
  background-image: url(../images/common/arrow_b.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 20px;
  left: 50%;
  translate: -50% 0;
  rotate: 90deg;
  transition: bottom 0.3s ease;
}
.page-contact-link-icon {
  width: 100%;
  height: 100%;
}
.page-contact-link-icon.-tel {
  width: 69px;
  height: 50px;
}
.page-contact-link-icon.-web {
  height: 40px;
}
.page-contact-text {
/*  font-size: calc(34 / 16 * 1rem);*/
  font-weight: 700;
  transition: color 0.3s ease;
  font-size: 25px;
}
@media (any-hover: hover) {
  .page-contact-link:hover {
    opacity: 1;
  }
  .page-contact-link:hover::after {
    bottom: 15px;
  }
  .page-contact-link:hover .page-contact-text {
    color: var(--color_main);
  }
}
@media (max-width: 1024px) {
  .page-contact-head::before {
    width: 25%;
    height: 80%;
    top: -85px;
    left: -30px;
  }
  .page-contact-head-image {
    max-width: 250px;
    inset: -50px auto 0 50%;
  }
  .page-contact-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-inline: auto;
    max-width: 600px;
  }
}
@media (max-width: 599px) {
  .page-contact {
    padding-top: 5px;
    padding: 0 55px 50px;
    margin-top: 100px;
	max-width: 430px;
  }
  .page-contact-head::before {
    width: 100px;
    height: 80px;
    top: -55px;
    left: calc(50% - 148px);
  }

.page-contact-head .section-title {
    font-size: 22px;
}

  .page-contact-head-image {
    max-width: 190px;
    top: -80px;
    inset: -40px auto 0 calc(50% + 57px);
  }
  .page-contact-head {
    padding-block: 50px 35px;
  }
  .page-contact-block {
    gap: 25px;
  }
  .page-contact-link {
    border-radius: 10px;
    padding: 20px 20px 40px;
    border-width: 5px;
    gap: 10px;
  }
  .page-contact-link::after {
    width: 20px;
    height: 15px;
    bottom: 12px;
  }
  .page-contact-link-icon.-tel {
    width: 41px;
    height: 41px;
  }
  .page-contact-link-icon.-web {
    width: 82px;
    height: 31px;
  }
  .page-contact-text {
    font-size: calc(20 / 16 * 1rem);
  }
}

/*
*  coordinator
*----------------------------*/
.coordinator-photo {
  max-width: 400px;
  margin-inline: auto;
}
.coordinator-info {
  max-width: 830px;
  margin-inline: auto;
  border-radius: 20px;
  border: 3px solid var(--color_main);
  padding: 40px 40px;
  font-size: 20px;
  margin-top: 70px;
}
.coordinator-name {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: var(--color_main);
  margin-bottom: 20px;
}
.coordinator-position {
  text-align: center;
  line-height: 2;
  display: block;
  font-weight: bold;
  margin-bottom: 22px;
}
.coordinator-desc {
  line-height: 2.3;
  font-size: 16px;
}
.coordinator-certifications {
  text-align: center;
  line-height: 2;
  display: block;
  font-weight: bold;
  margin-bottom: 22px;
}
.coordinator-certifications-list {
  line-height: 2.3;
  font-size: 16px;
  padding-left: 1.2em;
}
.coordinator-certifications-list li {
  position: relative;
  padding-left: 1em;
}
.coordinator-certifications-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;          /* 行の中央に合わせて調整 */
  transform: translate(0, -50%); /* 行の中央に合わせて調整 */
  width: 0.4em;        /* 丸の大きさ */
  height: 0.4em;
  background-color: #000; /* 丸の色 */
  border-radius: 50%;     /* これで丸くする */
}
.coordinator-calendar {
  margin-top: 100px;
}
.coordinator-content {
  margin-top: 120px;
}
.coordinator-seminar {
  background-color: var(--color_lightBeige);
  padding: 40px;
  border-radius: 10px;
  margin-top: 90px;
  margin-bottom: 20px;
}
.coordinator-seminar-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  display: grid;
  place-items: center;
  gap: 20px;
  margin-bottom: 50px;
}
.coordinator-seminar-title::before {
  content: "";
  display: block;
  width: 49px;
  height: 42px;
  background-image: url(../images/common/icon/icon_seminar.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.coordinator-seminar-content {
  margin-top: 30px;
}
.coordinator-seminar-content > * {
  font-size: 19px;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 15px;
  line-height: 1.6;
}
.coordinator-seminar-content > *:not(:first-child) {
  margin-top: 10px;
}
.coordinator-seminar-content > *::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background-color: var(--color_main);
  border-radius: 50%;
  position: relative;
  top: 2px;
  flex-shrink: 0;
}

@media (max-width: 599px) {
  .coordinator-photo {
    max-width: 280px;
  }
  .coordinator-info {
    max-width: 100%;
    margin-top: 40px;
    padding: 20px;
  }
  .coordinator-name {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .coordinator-position {
    font-size: 12px;
  }
  .coordinator-desc {
    font-size: 12px;
  }
  .coordinator-certifications {
    font-size: 12px;
  }
  .coordinator-certifications-list {
    font-size: 12px;
    padding-left: 0.3em;
  }
  .coordinator-calendar {
    margin-top: 50px;
    padding: 30px 0;
  }
  .coordinator-seminar-title {
    font-size: 25px;
    gap: 10px;
  }
  .coordinator-seminar-title::before {
    width: 35px;
    height: 30px;
  }
  .coordinator-content {
    margin-top: 50px;
  }.coordinator-seminar-content > * {
    font-size: 15px;
    gap: 10px;
  }
  .coordinator-seminar-content > *::before {
    width: 15px;
    height: 15px;
    top: 1px;
  }
}

/*
*  sns
*----------------------------*/
.sns {
  margin-block: 100px;
}
.sns-head {
  max-width: 450px;
  margin-inline: auto;
  animation: 4s 0s bound ease-in infinite;
}
.sns-list {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  width: fit-content;
  margin-inline: auto;
}
.sns-item {
  max-width: 62px;
}

@media screen and (max-width: 599px) {
  .sns {
    margin-block: 40px;
  }
  .sns-list {
    margin-top: 25px;
    gap: 35px;
  }
  .sns-item {
    max-width: 52px;
  }
}

/*
*  top-contact-step
*----------------------------*/
.contact-step-title {
  background-color: var(--color_main);
  text-align: center;
  font-size: calc(31 / 16* 1rem);
  color: var(--color_white);
  width: fit-content;
  margin-inline: auto;
  padding: 28px 37px;
  border-radius: 10px;
  position: relative;
}
.contact-step-title::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 24px;
  background-color: var(--color_main);
  inset: auto 0 -23px 50%;
  translate: -50% 0;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.contact-step-title-accent {
  color: var(--color_accent);
}
.contact-step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 120px;
}
.contact-step-item {
  background-color: var(--color_lightGray);
  padding: 100px 20px 30px;
  border-radius: 20px;
  position: relative;
}
.contact-step-item::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 115px;
  background-image: url(../images/home/no1.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  inset: -51px auto auto 50%;
  translate: -50% 0;
}
.contact-step-item:nth-child(2)::before {
  background-image: url(../images/home/no2.png);
}
.contact-step-item:nth-child(3)::before {
  background-image: url(../images/home/no3.png);
}
.contact-step-item-title {
  text-align: center;
    background: linear-gradient(transparent 70%, var(--color_accent) 70%);
    font-size: calc(22 / 16* 1rem);
    font-weight: 700;
    letter-spacing: 1px;
    width: fit-content;
    margin-inline: auto;
}
.contact-step-item-icon {
  max-width: 120px;
  margin-inline: auto;
  display: block;
  margin-top: 17px;
}
.contact-step-item-text {
  text-align: center;
    margin-top: 18px;
    letter-spacing: 0;
    line-height: 1.6;
    font-size: 13px;
}


@media (max-width: 1024px) {
.contact-step-item-text {
    letter-spacing: 1px;
    line-height: 1.8;
    font-size: 16px;
}
}


.contact-step-item-link {
  font-weight: 700;
  text-decoration: underline;
}
.contact-step-more {
  margin-top: 55px;
}
.contact-step-more .button {
  margin-inline: auto;
}

@media (max-width: 1280px) {
  .contact-step-list {
    gap: 20px;
  }
  .contact-step-item {
    padding: 100px 25px 30px;
  }
}
@media (max-width: 1024px) {
  .contact-step-title {
    font-size: calc(25 / 16 * 1rem);
	  line-height: 150%;
  }
  .contact-step-title-accent {
    display: block;
  }
  .contact-step-list {
    grid-template-columns: 1fr;
    gap: 70px;
    margin-top: 100px;
    max-width: 90%;
    margin-inline: auto;
  }
}
@media (max-width: 599px) {


.contact-step-list {
        margin-top: 70px;
    }

  .contact-step-title {
    font-size: calc(20 / 16* 1rem);
    padding: 19px 10px 22px;
    width: 85%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .contact-step-title-accent {
    padding-bottom: 10px;
  }
  .contact-step-title::after {
    width: 16px;
    height: 16px;
    inset: auto 0 -15px 50%;
  }
  .contact-step-list {
    gap: 50px;
  }
  .contact-step-item {
    padding: 50px 15px 21px;
    border-radius: 15px;
  }
  .contact-step-item::before {
    width: 55px;
    height: 80px;
    inset: -40px auto auto 50%;
  }
  .contact-step-item-title {
    font-size: calc(17 / 16 * 1rem);
  }
  .contact-step-item-icon {
    max-width: 87px;
    margin-top: 10px;
  }
  .contact-step-item-text {
    font-size: calc(12 / 16 * 1rem);
  }
  .contact-step-more {
    margin-top: 25px;
  }
}

/*
*  problem-search
*----------------------------*/
.problem-search {
  max-width: 866px;
  font-size: 40px;
  margin-inline: auto;
  margin-top: 100px;
}
.problem-search-input {
  display: grid;
  grid-template-columns: calc(100% - 51px) 51px;
  align-items: center;
  border: 3px solid var(--color_blue);
  border-radius: 10px;
  padding: 32px 20px 32px 32px;
}
.problem-search-input input {
  border: none;
}
.problem-search-input input::placeholder {
  color: #999;
}
.problem-search-button {
  width: 51px;
}
.problem-search-result {
  margin-top: 100px;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: var(--color_main);
}

@media (max-width: 599px) {
  .problem-search {
    font-size: 21px;
    margin-top: 10px;
  }
  .problem-search-input {
    grid-template-columns: calc(100% - 34px) 34px;
    border-radius: 10px;
    padding: 24px 16px 24px 24px;
  }
  .problem-search-button {
    width: 34px;
  }
  .problem-search-result {
    margin-top: 50px;
    font-size: 20px;
  }
}

/*
*  problem-list
*----------------------------*/
.problem-list {
  margin-top: 110px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.problem-list-item {
  border-radius: 20px;
  background-color: var(--color_blue);
  padding: 25px 15px 50px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  position: relative;
}
.problem-list-item::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  translate: -50% 0;
  width: 20px;
  height: 20px;
  background-image: url(../images/common/arrow_y.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  rotate: 90deg;
}
.problem-list-item-link {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  color: white;
  text-align: center;
  gap: 0;
}
.problem-list-item-image {
  width: 70px;
  height: 70px;
  margin-inline: auto;
}
.problem-list-item-title {
  font-size: 25px;
  margin-top: 20px;
}
.problem-list-item-overview {
  margin-top: 15px;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .problem-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 599px) {
  .problem-list {
    margin-top: 65px;
  }
  .problem-list-item {
    border-radius: 20px;
    background-color: var(--color_blue);
    padding: 15px 10px 40px;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    position: relative;
  }
  .problem-list-item::after {
    bottom: 10px;
    width: 15px;
    height: 15px;
  }
  .problem-list-item-image {
    width: 50px;
    height: 50px;
  }
  .problem-list-item-title {
    font-size: 17px;
    margin-top: 15px;
  }
  .problem-list-item-overview {
    font-size: 10px;
  }
}
/*
*  consultation
*----------------------------*/
.consultation {
  background-color: var(--color_lightBeige);
  padding-block: 120px 110px;
  margin-inline: calc(50% - 50vw);
  margin-top: 130px;
}
.consultation-inner {
  max-width: calc(1000px + var(--sidePadding_base) * 2);
  margin-inline: auto;
  padding-inline: var(--sidePadding_base);
}
.consultation-title {
  text-align: center;
}
.consultation-text {
  background-color: var(--color_accent);
  border-radius: 10px;
  padding: 30px 20px 30px 65px;
  margin-top: 40px;
  position: relative;
  font-weight: bold;
  text-decoration: underline;
}
.consultation-text::before {
  content: "";
  background-image: url(../images/common/icon/icon_megahonn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 15px;
  translate: 0 -50%;
  width: 35px;
  height: 30px;
}
.consultation-list {
  margin-top: 30px;
}
.consultation-list-item {
  display: flex;
  font-size: 15px;
}
.consultation-list-item::before {
  content: "※";
}
.consultation-button {
  margin-top: 70px;
}
.consultation-button .button {
  margin-inline: auto;
}
@media (max-width: 599px) {
  .consultation {
    padding-block: 60px 70px;
    margin-top: 70px;
  }
  .consultation-inner {
    padding-inline: var(--sidePadding_base_mbl);
  }
  .consultation-text {
    border-radius: 6px;
    padding: 15px 15px 15px 55px;
    margin-top: 20px;
    font-size: 14px;
  }
  .consultation-text::before {
    width: 31px;
    height: 27px;
    left: 10px;
  }
  .consultation-list {
    margin-top: 20px;
  }
  .consultation-list-item {
    font-size: 14px;
  }
  .consultation-button {
    margin-top: 35px;
  }
}


/*
*  problem-detail
*----------------------------*/
.problem-detail {
  margin-top: 50px;
}
.problem-detail-heading-icon {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background-color: var(--color_main);
  display: grid;
  place-items: center;
  margin-inline: auto;
}
.problem-detail-heading-icon img {
  width: 75px;
  height: 75px;
}
.problem-detail-heading .pageTitle {
  margin-top: 30px;
}
.problem-detail-content {
    margin-top: 80px;
}
.problem-detail-contact {
  background-color: #e7f3f7;
  padding-block: 140px;
  margin-inline: calc(50% - 50vw);
  margin-bottom: -140px;
}
.problem-detail-contact .contact-step-item {
  background-color: white;
}

@media (max-width: 599px) {
  .problem-detail {
    margin-top: 40px;
  }
  .problem-detail-heading-icon {
    width: 74px;
    height: 74px;
  }
  .problem-detail-heading-icon img {
    width: 45px;
    height: 45px;
  }
  .problem-detail-heading .pageTitle {
    margin-top: 20px;
  }
  .problem-detail-content {
      margin-top: 40px;
  }
  .problem-detail-contact {
    padding-block: 80px;
    margin-bottom: -80px;
  }
}

/*
*  problem-coordinator
*----------------------------*/
.problem-coordinator {
  margin-top: 120px;
  padding: 50px 50px 70px 50px;
  border-radius: 20px;
  border: 7px solid var(--color_blue);
}
.problem-coordinator-title::before  {
  content: "";
}
.problem-coordinator-title.pageTitle::after {
  content: none;
}
.problem-coordinator-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  gap: 40px;
}
.problem-coordinator-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
}
.problem-coordinator-item-photo {
    position: relative;
}
.problem-coordinator-item-photo img {
  border-radius: 0;
}
.problem-coordinator-item-area {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color_accent);
  color: var(--color_font);
  padding: 3px 8px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2px;
  align-items: center;
  font-size: calc(10 / 16 * 1rem);
  font-weight: 700;
  border-radius: 0 8px 0 8px;
}
.problem-coordinator-item-area::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/common/pin.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.problem-coordinator-item-title {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.problem-coordinator-item-overview {
  font-size: 16px;
  text-align: center;
  margin-top: 4px;
}
.problem-coordinator-item-button {
  margin-top: 20px;
}
.problem-coordinator-item-button .button {
  margin-inline: auto;
}

@media (max-width: 599px) {
  .problem-coordinator {
    margin-top: 50px;
    padding: 40px 20px;
    border-radius: 10px;
    border-width: 3px;
  }
  .problem-coordinator-list {
    grid-template-columns: 1fr;
    margin-top: 50px;
    gap: 50px;
    padding-inline: 20px;
  }
  .problem-coordinator-item {
    grid-template-rows: unset;
  }
  .problem-coordinator-item-title {
    margin-top: 20px;
  }
  .problem-coordinator-item-button {
    margin-top: 10px;
  }
  .problem-coordinator-item-button .button {
    margin-inline: auto;
  }
}


@media (min-width: 851px) {
p.yoko-scroll {
	display: none;
	}

}

@media (max-width: 850px) {
    p.yoko-scroll {
        display: block;
    margin-bottom: 0px;
    margin-top: 20px;
    background-image: url(../images/yoko-scroll.png);
    background-repeat: no-repeat;
    background-position: left 2px center;
    background-size: 22px;
    padding-left: 32px;
    }
}