@charset "UTF-8";
/*======*/
/* 共通 */
/*======*/
/* PC/SP出し分け
------------------------------ */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

main {
  margin-top: 90px;
}
@media (max-width: 1119px) {
  main {
    margin-top: 44px;
  }
}

.container .contents {
  max-width: 1232px;
  margin: 0 auto;
  padding: 0 16px;
}

.container p:not(:last-child),
.container ul:not(:last-child),
.container ol:not(:last-child) {
  margin-bottom: 1em;
}

/* フォーム
-----------------------------------*/
input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #CCC;
  border-radius: 3px;
  font-size: 16px;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* パンくず
-----------------------------------*/
.b-nv {
  max-width: 1312px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 767px) {
  .b-nv {
    display: none;
  }
}

.b-nv ul {
  padding: 16px 0;
  font-size: 0;
}

.b-nv li {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
}

.b-nv li::after {
  content: ">";
  padding: 0 4px;
}

.b-nv li:last-child::after {
  content: "";
}

/* タイトル
-----------------------------------*/
.title-sec {
  background-color: #3F3F3F;
  color: #FFF;
}
.title-sec .contents {
  position: relative;
  height: 400px;
}
@media (max-width: 767px) {
  .title-sec .contents {
    height: 140px;
  }
}
.title-sec .heading-title {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  font-family: "Bellefair", sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.2;
  text-align: center;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .title-sec .heading-title {
    font-size: 32px;
  }
}

.heading01 {
  margin: 124px 0 64px;
  font-family: "Bellefair", "Noto Serif JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #3E474F;
}
.heading01 span {
  display: block;
  margin-bottom: 12px;
  font-family: "Bellefair", sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: #8E9DA8;
}
@media (max-width: 767px) {
  .heading01 {
    margin: 40px 0 32px;
    font-size: 14px;
  }
  .heading01 span {
    margin-bottom: 8px;
    font-size: 42px;
  }
}

.heading02 {
  margin: 64px 0 24px;
  font-family: "Bellefair", "Noto Serif JP", sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #3E474F;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading02 {
    margin: 32px 0 16px;
    font-size: 20px;
  }
}

.heading03 {
  margin: 32px 0 24px;
  font-size: 20px;
  font-weight: 400;
  color: #577B80;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading03 {
    margin: 24px 0 16px;
    font-size: 18px;
  }
}

.heading04 {
  margin: 32px 0 24px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .heading04 {
    margin: 24px 0 16px;
    font-size: 18px;
  }
}

/* リンクテキスト（リンク共通の記載があれば）
-----------------------------------*/
.link-txt {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.link-txt::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  margin-top: 8px;
  background-color: #AD7925;
}
.link-txt.next {
  padding-right: 124px;
}
@media (max-width: 767px) {
  .link-txt.next {
    padding-right: 24px;
  }
}
.link-txt.next::before {
  content: "";
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  margin-top: -7px;
  border-color: #AD7925;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 11px;
  vertical-align: middle;
  width: 11px;
  transform: rotate(-45deg);
}
.link-txt.next:hover::before {
  border-color: #5E370D;
}
.link-txt.prev {
  padding-left: 124px;
}
@media (max-width: 767px) {
  .link-txt.prev {
    padding-left: 24px;
  }
}
.link-txt.prev::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  margin-top: -7px;
  border-color: #AD7925;
  border-style: solid;
  border-width: 0 1px 1px 0;
  height: 11px;
  vertical-align: middle;
  width: 11px;
  transform: rotate(135deg);
}
.link-txt.prev:hover::before {
  border-color: #5E370D;
}

/* リンクボタン
-----------------------------------*/
.list-bt {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px !important;
}
@media (max-width: 767px) {
  .list-bt {
    display: block;
    margin-bottom: 24px !important;
  }
}
.list-bt li {
  margin: 0 16px;
}
@media (max-width: 767px) {
  .list-bt li {
    margin: 0 0 8px;
  }
  .list-bt li:last-child {
    margin-bottom: 0;
  }
}

.com-bt {
  display: inline-block;
  min-width: 320px;
  padding: 16px;
  background-color: #FFF;
  border: 1px solid #577B80;
  font-family: "Bellefair", sans-serif;
  font-size: 18px;
  line-height: 1;
  color: #B4CED6;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  transition: 0.5s all;
}
.com-bt:hover {
  background-color: #B4CED6;
  color: #FFF;
}
.com-bt .ic {
  width: 24px;
  margin-left: 4px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .com-bt {
    display: block;
    width: 100%;
    min-width: auto;
    font-size: 16px;
  }
}

.com-bt2 {
  display: inline-block;
  min-width: 320px;
  padding: 16px;
  border: 1px solid #B4CED6;
  background-color: #B4CED6;
  font-size: 18px;
  line-height: 1;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  transition: 0.5s all;
}
.com-bt2:hover {
  border: 1px solid #577B80;
  background-color: #577B80;
  color: #FFF;
}
.com-bt2 .ic {
  width: 24px;
  margin-left: 4px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .com-bt2 {
    display: block;
    width: 100%;
    min-width: auto;
    font-size: 16px;
  }
}

input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
  display: inline-block;
  border: 1px solid #577B80;
  background-color: transparent;
  font-size: 18px;
  line-height: 1;
}
input[type=submit].com-bt:hover,
input[type=button].com-bt:hover,
button.com-bt:hover {
  cursor: pointer;
  background-color: #B4CED6;
  color: #FFF;
}
@media (max-width: 767px) {
  input[type=submit].com-bt,
input[type=button].com-bt,
button.com-bt {
    display: block;
    width: 100%;
    min-width: auto;
    font-size: 16px;
  }
}

input[type=submit].com-bt2,
input[type=button].com-bt2,
button.com-bt2 {
  display: inline-block;
  min-width: 320px;
  padding: 16px;
  border: 1px solid #B4CED6;
  background-color: #B4CED6;
  font-size: 18px;
  line-height: 1;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  transition: 0.5s all;
}
input[type=submit].com-bt2:hover,
input[type=button].com-bt2:hover,
button.com-bt2:hover {
  border: 1px solid #577B80;
  background-color: #577B80;
  color: #FFF;
}
@media (max-width: 767px) {
  input[type=submit].com-bt2,
input[type=button].com-bt2,
button.com-bt2 {
    display: block;
    width: 100%;
    min-width: auto;
    font-size: 16px;
  }
}

.other-link {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  padding: 16px;
  background-color: #FFF;
  border: 1px solid #172344;
  color: #3E474F;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  vertical-align: top;
  transition: 0.5s all;
  line-height: 1;
}
@media (max-width: 767px) {
  .other-link {
    max-width: 100%;
    width: 100%;
    font-size: 16px;
  }
}
.other-link::after {
  content: "";
  display: block;
  width: 19px;
  height: 16px;
  margin-left: 12px;
  background: url(/tohoku/classeum-sendaishinteradori/images/common/link_ic01.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .other-link::after {
    width: 16px;
    height: 14px;
  }
}
.other-link:hover {
  background-color: #3E474F;
  color: #FFF;
}

/*============*/
/* 共通・汎用 */
/*============*/
/* 段落
-----------------------------------*/
/* ぶら下げインデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* 汎用カラム
-----------------------------------*/
.row:after {
  content: "";
  clear: both;
  display: block;
}

.multicolumn,
.multilist {
  overflow: hidden !important;
}

.multicolumn-left {
  float: left;
}

.multicolumn-right {
  float: right;
}

.multilist li {
  float: left;
}

/* 画像とテキスト横並び
-----------------------------------*/
.data-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .data-wrap {
    display: block;
    margin-bottom: 64px;
  }
}
.data-wrap.txt-left {
  flex-direction: row-reverse;
}
.data-wrap .pict {
  width: 46.666%;
}
@media (max-width: 767px) {
  .data-wrap .pict {
    width: 100%;
    margin-bottom: 24px;
    text-align: center;
  }
}
.data-wrap .txt {
  width: 47.333%;
}
@media (max-width: 767px) {
  .data-wrap .txt {
    width: 100%;
    padding: 0 16px;
  }
}
.data-wrap .txt .heading04:first-of-type {
  margin-top: 0;
}

/* 注釈と囲み
-----------------------------------*/
.note-box {
  margin-bottom: 40px;
  padding: 24px;
  border: 2px solid #8E8880;
}
@media (max-width: 767px) {
  .note-box {
    margin-bottom: 24px;
    padding: 16px;
    border-width: 1px;
  }
}
.note-box dt {
  margin-bottom: 16px;
  font-size: 20px;
  color: #8E8880;
  line-height: 1;
}
@media (max-width: 767px) {
  .note-box dt {
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 16px;
  }
}

/* カラム幅
-----------------------------------*/
.w1000 {
  width: 1000px;
}

/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
  margin-left: 23px;
  list-style: disc;
}

/* リスト（ドット） */
.list-dot li {
  padding-left: 1em;
}

.list-dot li:before {
  content: "・";
  margin-left: -1em;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}

/* テーブル
-----------------------------------*/
/* 幅 */
col.colw05 {
  width: 5%;
}

col.colw10 {
  width: 10%;
}

col.colw15 {
  width: 15%;
}

col.colw20 {
  width: 20%;
}

col.colw25 {
  width: 25%;
}

col.colw30 {
  width: 30%;
}

col.colw35 {
  width: 35%;
}

col.colw40 {
  width: 40%;
}

col.colw45 {
  width: 45%;
}

col.colw50 {
  width: 50%;
}

/* テーブル */
.table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
  border-spacing: 0;
}
@media (max-width: 767px) {
  .table {
    margin-bottom: 24px;
  }
}

.table th,
.table td {
  vertical-align: top;
  border-bottom: solid 1px #C2C2C2;
}

.table th {
  padding: 24px 0;
  font-weight: bold;
  color: #8E8880;
}
@media (max-width: 767px) {
  .table th {
    padding: 8px 0;
  }
}

.table td {
  padding: 24px 0;
}
@media (max-width: 767px) {
  .table td {
    padding: 8px 0;
  }
}

/* ニュース一覧
-----------------------------------*/
.list-news li {
  padding: 16px;
}
.list-news li:last-child {
  border-bottom: none;
}
.list-news li a {
  display: flex;
  justify-content: space-between;
}
.list-news li a .date {
  width: 5em;
}
.list-news li a .title {
  width: calc(100% - 6em);
  word-wrap: break-word;
  line-height: 1.3;
}
.list-news li a:hover .date {
  text-decoration: none !important;
  color: #333;
}
@media (max-width: 767px) {
  .list-news li a {
    display: block;
  }
  .list-news li a .title {
    width: 100%;
    margin-top: 8px;
  }
}

/* WPページャー
-----------------------------------*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  padding: 88px 0;
  font-weight: bold;
  line-height: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .wp-pagenavi {
    padding: 40px 0;
  }
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  width: 32px;
  margin: 0 2px;
  border-radius: 50%;
  color: #333;
}
.wp-pagenavi a:hover, .wp-pagenavi span {
  text-decoration: none;
  background-color: #333;
  color: #FFF;
}

/* 投稿記事 タイトル
-----------------------------------*/
.entry-detail .entry-header .entry-title {
  margin: 16px 0 56px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: bold;
}
.entry-detail .entry-content {
  overflow: hidden;
  word-break: break-all;
}

/* 投稿記事 詳細
-----------------------------------*/
.entry-detail .entry-content p {
  margin: 1em 0;
}

.entry-detail .entry-content h1 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
}

.entry-detail .entry-content h2 {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
}

.entry-detail .entry-content h3 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: bold;
}

.entry-detail .entry-content h4 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: bold;
}

.entry-detail .entry-content h5 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: bold;
}

.entry-detail .entry-content h6 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: bold;
}

.entry-detail .entry-content h1,
.entry-detail .entry-content h2,
.entry-detail .entry-content h3,
.entry-detail .entry-content h4,
.entry-detail .entry-content h5,
.entry-detail .entry-content h6 {
  margin: 10px 0px !important;
}

.entry-detail .entry-content ul,
.entry-detail .entry-content ol {
  margin: 10px 0 15px 30px;
}

.entry-detail .entry-content ul li {
  list-style: disc;
}

.entry-detail .entry-content ul ul,
.entry-detail .entry-content ol ol,
.entry-detail .entry-content ul ol,
.entry-detail .entry-content ol ul {
  margin-bottom: 0;
}

.entry-detail .entry-content blockquote {
  font-style: italic;
  padding: 0 30px;
}

.entry-detail .entry-content blockquote cite,
.entry-detail .entry-content blockquote em,
.entry-detail .entry-content blockquote i {
  font-style: normal;
}

.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 24px;
  margin-top: 4px;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 24px;
  margin-top: 4px;
}

.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignleft,
img.alignright,
img.aligncenter {
  margin-bottom: 12px;
}

.wp-caption {
  text-align: center;
}
/*# sourceMappingURL=common.css.map */
