@charset "UTF-8";
/*
Theme Name: 
Theme URI:
Author: ITPC
Author URI: https://itp-com.co.jp/
Description:
Requires at least: 6.0
Tested up to: 6.3
Requires PHP: 8.0
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:
*/
* {
  box-sizing: border-box;
}
.block-editor-block-list__layout ::selection {
  background: #b3d4fc;
  color: inherit;
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}

.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.clear {
  clear: both;
}

.article-content {
  display: flow-root;
}

.wp-block-group:has(.alignright, .alignleft) {
  display: flow-root;
}

/* ボタン */
.wp-element-button a,
.wp-block-button__link a {
  font-weight: inherit;
}

/* 見出し */
h1.editor-post-title {
  position: relative;
  padding-left: 0.8em;
  font-size: 2.625rem;
}
h1.editor-post-title {
  font-weight: 500;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  color: #4A6088;
  line-height: 1.42em;
  border-left: 8px solid #4A6088;
}

/* 見出し： 下線 */
:is(h1, h2, h3, h4, h5, h6).is-style-under-line {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto 40px;
  padding-bottom: 0.8em;
  font-size: 1.875rem;
}
:is(h1, h2, h3, h4, h5, h6).is-style-under-line {
  font-weight: 500;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  color: #4A6088;
  line-height: 1.42em;
  border-bottom: 2px solid #DDDDDD;
}
:is(h1, h2, h3, h4, h5, h6).is-style-under-line::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  display: block;
  width: 2em;
  height: 2px;
  background: #4A6088;
  transition: 0.2s ease-in;
}

/* 見出し： 線 */
:is(h1, h2, h3, h4, h5, h6).is-style-line {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto 1.2em;
  font-size: 1.375rem;
}
:is(h1, h2, h3, h4, h5, h6).is-style-line {
  font-weight: 600;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  color: #4A6088;
}
:is(h1, h2, h3, h4, h5, h6).is-style-line::before {
  content: "";
  display: inline-block;
  width: 0.8em;
  height: 1px;
  margin-right: 0.5em;
  background: #4A6088;
}

/* 見出し： プレーン */
:is(h1, h2, h3, h4, h5, h6).is-style-plain {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 auto 1em;
  font-size: 1.375rem;
}
:is(h1, h2, h3, h4, h5, h6).is-style-plain {
  font-weight: 600;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho Pro", serif;
  color: #4A6088;
}

/* リスト */
.article-content ul {
  list-style-type: disc;
  list-style-position: inside;
}
.article-content ol {
  list-style-type: decimal;
  list-style-position: inside;
}

.wp-block-list {
  padding-left: 0;
}
.wp-block-list .block-editor-rich-text__editable {
  display: inline;
}

ul.wp-block-list {
  list-style-type: disc;
  list-style-position: inside;
}

ol.wp-block-list {
  list-style-type: decimal;
  list-style-position: inside;
}

/* リスト： リストマークなし */
.is-style-no-listmark {
  list-style: none !important;
  padding-left: 0;
}

/* リスト： 丸リスト */
.is-style-disc-listmark {
  list-style: none !important;
  padding-left: 0;
}
.is-style-disc-listmark li {
  padding-left: 1.5em;
  text-indent: -1.5em;
  font-weight: 400;
  line-height: 1.5em;
}
.is-style-disc-listmark li::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  color: #4A6088;
  vertical-align: middle;
  border-radius: 100%;
  background: #4A6088;
}
.is-style-disc-listmark li p,
.is-style-disc-listmark li a,
.is-style-disc-listmark li div {
  text-indent: 0;
}
.is-style-disc-listmark li ul {
  margin-top: 10px;
  list-style: none;
}
.is-style-disc-listmark li ul > li::before {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border-radius: 0;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  vertical-align: middle;
  background: #C1DEFF;
}

/* リスト： 数字リスト */
.is-style-number-listmark {
  counter-reset: num 0;
}
.is-style-number-listmark > li {
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
  color: #4A6088;
}
.is-style-number-listmark > li:not(:last-child) {
  margin-bottom: 1em;
}
.is-style-number-listmark > li::before {
  width: 1.5em;
  flex-shrink: 0;
  counter-increment: num 1;
  content: counter(num) "";
  margin-right: 0.5em;
  padding-right: 0.5em;
  font-size: 1.125em;
  font-family: "Lato", serif;
  text-align: center;
  color: #4A6088;
  border-right: 1px solid #4A6088;
}

.is-style-table-simple table {
  border-collapse: collapse;
}
.is-style-table-simple table thead {
  border-bottom: none;
}
.is-style-table-simple table th {
  color: #4A6088;
  background: #F0F5FC;
  vertical-align: middle;
  border: 1px solid #DDDDDD;
}
.is-style-table-simple table td {
  border: 1px solid #DDDDDD;
}

.is-style-table-style1 table {
  border: none;
  border-collapse: separate;
  border-spacing: 2px;
  border-collapse: collapse;
}
.is-style-table-style1 table th {
  border: 1px solid #DDDDDD;
}
.is-style-table-style1 table td {
  border: 1px solid #DDDDDD;
}
.is-style-table-style1 table thead {
  border-bottom: none;
}
.is-style-table-style1 table thead th {
  color: #fff;
  background: #4A6088;
  vertical-align: middle;
}
.is-style-table-style1 table tbody th {
  color: #fff;
  background: #4A6088;
}
.is-style-table-style1 table tbody tr:nth-child(odd) td {
  color: #4A6088;
  background: #F0F5FC;
}

.wp-block-button .wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  transition: all 0.2s ease;
  border: 1px solid #4A6088;
}
.wp-block-button .wp-element-button::after {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  margin-left: 0.5em;
  mask-image: url(../img/common/icon-arrow.svg);
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background: #fff;
  transition: all 0.2s ease;
  transition: background 0.2s ease-in;
}
.wp-block-button .wp-element-button[href*=".pdf"]::after {
  mask-image: url(../img/common/icon-pdf.svg) !important;
  background: #fff;
}
.wp-block-button.is-style-outline .wp-element-button {
  color: #4A6088 !important;
  border: 1px solid #4A6088 !important;
  background: #fff;
}
.wp-block-button.is-style-outline .wp-element-button::after {
  background: #4A6088;
}
.wp-block-button.is-style-outline .wp-element-button[href*=".pdf"]::after {
  background: #B90505 !important;
}

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

@media screen and (max-width: 767px){
  h1.editor-post-title {
    font-size: 8.2051282051vw;
  }
  h1.editor-post-title {
    border-left-width: 6px;
  }
  :is(h1, h2, h3, h4, h5, h6).is-style-under-line {
    font-size: 6.1538461538vw;
  }
  :is(h1, h2, h3, h4, h5, h6).is-style-under-line {
    margin-bottom: 8.2051282051vw;
  }
  :is(h1, h2, h3, h4, h5, h6).is-style-line {
    font-size: 4.6153846154vw;
  }
  :is(h1, h2, h3, h4, h5, h6).is-style-plain {
    font-size: 4.6153846154vw;
  }
}

@media screen and (min-width: 768px){
  .wp-block-button .wp-element-button:hover {
    color: #4A6088 !important;
    background: #fff;
  }
  .wp-block-button .wp-element-button:hover::after {
    background: #4A6088;
  }
  .wp-block-button .wp-element-button:hover[href*=".pdf"]::after {
    background: #B90505 !important;
  }
  .wp-block-button.is-style-outline .wp-element-button:hover {
    color: #fff !important;
    background: #4A6088;
  }
  .wp-block-button.is-style-outline .wp-element-button:hover::after {
    background: #fff;
  }
  .wp-block-button.is-style-outline .wp-element-button:hover[href*=".pdf"]::after {
    background: #fff !important;
  }
}