@charset "UTF-8";
:root {
  --color-primary: #073E6E;
  --color-sub: #A68B36;
  --color-accent: #B7993D;
  --color-text: #333;
  --color-white: #FFF;
  --color-bg-subtle: #F1F9FF;
  --color-bg-muted: #DEEDFF;
  --color-secondary: #53749C;
  --color-black: #000;
  --color-text-muted: #9F9F9F;
}

.visible-sp {
  display: none;
}
@media (max-width: 599px) {
  .visible-sp {
    display: block !important;
  }
}

.visible-sp-ib {
  display: none;
}
@media (max-width: 599px) {
  .visible-sp-ib {
    display: inline-block !important;
  }
}

.visible-sp-flex {
  display: none;
}
@media (max-width: 599px) {
  .visible-sp-flex {
    display: flex !important;
  }
}

.visible-tab {
  display: none;
}
@media (min-width: 600px) and (max-width: 1135px) {
  .visible-tab {
    display: block !important;
  }
}

.visible-tab-ib {
  display: none;
}
@media (min-width: 600px) and (max-width: 1135px) {
  .visible-tab-ib {
    display: inline-block !important;
  }
}

.visible-tab-flex {
  display: none;
}
@media (min-width: 600px) and (max-width: 1135px) {
  .visible-tab-flex {
    display: flex !important;
  }
}

.visible-pc {
  display: none;
}
@media (min-width: 1136px) {
  .visible-pc {
    display: block !important;
  }
}

.visible-pc-ib {
  display: none;
}
@media (min-width: 1136px) {
  .visible-pc-ib {
    display: inline-block !important;
  }
}

.visible-pc-flex {
  display: none;
}
@media (min-width: 1136px) {
  .visible-pc-flex {
    display: flex !important;
  }
}

@media (max-width: 599px) {
  .hidden-sp {
    display: none !important;
  }
}

@media (min-width: 600px) and (max-width: 1135px) {
  .hidden-tab {
    display: none !important;
  }
}

@media (min-width: 1136px) {
  .hidden-pc {
    display: none !important;
  }
}

/* h1 {
  font-size: 2.2em;
  margin-top: 0;
} */
/* h1, */
h2, h3, h4, h5, h6 {
  margin-bottom: 12px;
}

/* h1, */
h2, h3, h4, h5, h6, strong {
  color: #000000;
}

/* h1, */
h2, h3, h4, h5, h6, b, strong, th {
  font-weight: 600;
}

blockquote {
  border-left: 4px solid rgba(0, 150, 191, 0.6705882353);
  margin: 1.5em 0em;
  padding: 0.5em 1em;
  font-style: italic;
}
blockquote > footer {
  margin-top: 10px;
  font-style: normal;
}
blockquote cite {
  font-style: normal;
}

address {
  font-style: normal;
}

a[href^=mailto]::before {
  content: "📧 ";
}
a[href^=tel]::before {
  content: "📞 ";
}
a[href^=sms]::before {
  content: "💬 ";
}

button {
  cursor: pointer;
}

input[type=submit], input[type=button], input[type=checkbox] {
  cursor: pointer;
}
input:not([type=checkbox]):not([type=radio]) {
  display: block;
}

select {
  display: block;
}

input, select, button, textarea {
  color: #000000;
  background-color: #efefef;
  font-family: inherit;
  font-size: inherit;
  margin-right: 6px;
  margin-bottom: 6px;
  padding: 10px;
  border: none;
  border-radius: 6px;
  outline: none;
}

input:not([type=checkbox]):not([type=radio]), select, button {
  -webkit-appearance: none;
}

textarea {
  -webkit-appearance: none;
  margin-right: 0;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
}

button {
  padding-right: 30px;
  padding-left: 30px;
}

input[type=submit], input[type=button] {
  padding-right: 30px;
  padding-left: 30px;
}

button:hover {
  background: #dddddd;
}

input[type=submit]:hover, input[type=button]:hover {
  background: #dddddd;
}
input:focus {
  box-shadow: 0 0 0 2px rgba(0, 150, 191, 0.6705882353);
}

select:focus, button:focus, textarea:focus {
  box-shadow: 0 0 0 2px rgba(0, 150, 191, 0.6705882353);
}

input[type=checkbox]:active, input[type=radio]:active, input[type=submit]:active, input[type=button]:active {
  transform: translateY(2px);
}

button:active {
  transform: translateY(2px);
}

input:disabled, select:disabled, button:disabled, textarea:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

::-webkit-input-placeholder, :-ms-input-placeholder, ::-ms-input-placeholder, ::placeholder {
  color: #949494;
}

a {
  text-decoration: none;
  color: #0076d1;
}
a:hover {
  /* text-decoration: underline; */
}

code, kbd {
  background: #efefef;
  color: #000000;
  padding: 5px;
  border-radius: 6px;
}

pre > code {
  padding: 10px;
  display: block;
  overflow-x: auto;
}

img {
  margin-bottom: 1em;
  max-width: 100%;
  height: auto;
}

hr {
  border: none;
  border-top: 1px solid #dbdbdb;
}

table {
  border-collapse: collapse;
  margin-bottom: 10px;
  width: 100%;
}

td {
  padding: 6px;
  text-align: left;
}

th {
  padding: 6px;
  text-align: left;
  border-bottom: 1px solid #dbdbdb;
}

tbody tr:nth-child(even) {
  background-color: #efefef;
}

::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #efefef;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #d5d5d5;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #c4c4c4;
}


h2, h3, h4, h5, h6 {
  margin-bottom: 1.6em;
}

.c-single {
  margin-bottom: 12.31vw;
}
@media screen and (min-width: 600px) {
  .c-single {
    margin-bottom: 72px;
  }
  .c-single-container {
    width: 800px;
  }
}

@media (min-width: 600px) {
  .c-page-header {
    margin-bottom: 4em;
  }
}
.c-title {
  margin: 0 16px 40px;
  align-items: normal;
}
@media screen and (min-width: 600px) and (max-width: 1135px) {
  .c-title {
    margin: 0 auto;
    width: 600px;
  }
}

.c-title__sub {
  margin-top: 1em;
}
@media screen and (min-width: 600px) and (max-width: 1135px) {
  .c-title__sub {
    margin-bottom: 0;
  }
}

.wp-block-table,
.wp-block-video {
  margin: 0 auto 3em;
}

img, video {
  border-radius: 0.6em;
}

p {
  margin-bottom: 1em;
  line-height: 2;
}

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