@charset 'UTF-8';
/*******************************
共通
*******************************/
/*フォント*/
.e_font {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
.e_font500 {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}
.fw500 {
  font-weight: 500;
}
.fw600 {
  font-weight: 600;
}
.j_font {
  font-family: "Noto Sans", sans-serif;
  font-weight: 100;
}
/*タイトル*/
.section_title {
  font-size: 1.86rem;
  line-height: 1.4;
  margin-bottom: 2;
}
@media screen and (min-width: 768px) {
  .section_title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .section_title {
    font-size: 2.25rem;
  }
}
/*ボタン*/
a:hover {
  transition: all 0.5s;
}
.section_btn_box {
  display: flex;
}
.section_btn_center {
  justify-content: center;
}
.section_btn {
  display: flex;
  align-items: center;
  transition: all 0.5s;
}
.section_btn:hover {
  transition: all 0.5s;
}
.section_btn_txt {
  display: block;
  font-size: 1.07rem;
  letter-spacing: 0.06em;
  position: relative;
  transition: all 0.5s;
}
.section_arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-left: 1rem;
  position: relative;
}
/*||ボタン-黒||*/
.section_btn_txt_black {
  color: #000;
}
a:hover .section_btn_txt_black {
  color: #000;
}
.section_arrow_black {
  border: 1px solid rgba(0, 0, 0, 0.4);
  transition: all 0.5s;
}
a:hover .section_arrow_black {
  background-color: #002846;
  border: 1px solid rgba(0, 40, 70, 0.4);
  transition: all 0.5s;
}
.section_arrow_black::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background-image: url("../images/arrow_black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
a:hover .section_arrow_black::before {
  background-image: url("../images/arrow_white.svg");
  transition: all 0.5s;
}
/*||ボタン-白||*/
.section_btn_txt_white {
  color: #fff;
}
a:hover .section_btn_txt_white {
  color: #fff;
}
.section_arrow_white {
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.5s;
}
a:hover .section_arrow_white {
  background-color: #fff;
  transition: all 0.5s;
}
.section_arrow_white::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background-image: url("../images/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
a:hover .section_arrow_white::before {
  background-image: url("../images/arrow_black.svg");
  transition: all 0.5s;
}
@media screen and (min-width: 1200px) {
  .section_btn_txt {
    font-size: 1rem;
  }
  .section_arrow {
    width: 42px;
    height: 42px;
  }
  .section_arrow_black::before {
    width: 10px;
    height: 10px;
  }
}
.mb0 {
  margin-bottom: 0 !important;
}
/*******************************
共通
*******************************/
/*横幅*/
.cotainer87-1000 {
  width: 87%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
ul li {
  list-style: none;
}
ul {
  margin-bottom: 0;
}
.page_back_gray {
  background-color: #f5f5f5;
}
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignright {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
/* 各メディアごとのマージン設定
--------------------------- */
/* 768px以上用の記述 */
@media screen and (min-width: 768px) {
  .col-md-m20-bottom {
    margin-bottom: 20px;
  }
  .col-md-none {
    display: none;
  }
}
/* 767px以下用の記述 */
@media screen and (max-width: 767px) {
  .col-sm-m20-bottom {
    margin-bottom: 20px;
  }
  .col-sm-none {
    display: none;
  }
}
/* 576px以下用の記述 */
@media screen and (max-width: 576px) {
  .col-xs-m20-bottom {
    margin-bottom: 20px;
  }
  .col-xs-none {
    display: none;
  }
}
/*******************************
パンクズ
*******************************/
#pls {
  width: 100%;
  margin: 0 auto 3.5rem;
  color: #000;
}
#pan span {
  font-size: 0.93rem;
}
#pan a {
  color: #b4b4b4;
}
.pagenation_line {
  color: #b4b4b4;
  margin: 0 4px 0 1px;
}
@media screen and (min-width: 1200px) {
  #pls {
    margin-bottom: 5.8rem;
  }
  #pan span {
    font-size: 0.875rem;
  }
  .pagenation_line {
    margin: 0 6px 0 2px;
  }
}
/*******************************
/* フォーム/テーブル
*******************************/
/*.form-w {
  max-width: 1000px;
  margin: 0 auto;
  width: 95%;
}
@media screen and (min-width: 992px) {
  .form-w {
    width: 80%;
  }
}
.wpcf7-submit {
  font-size: 1.2em;
  background-color: #000;
  color: #fff;
  border-style: none;
  width: 100%;
  margin-bottom: 30px;
  padding-top: 15px;
  padding-right: 40px;
  padding-bottom: 15px;
  padding-left: 40px;
  border: 1px solid #000;
}
.wpcf7-submit:hover {
  transition: .4s;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}*/
#form {
  max-width: 100%;
  margin-bottom: 40px;
  /* background-color: #FFF;*/
}
#form th span {
  font-size: 0.8em;
  color: #FFF;
  background-color: #C00;
  padding: 3px;
}
#form th {
  padding: 10px;
  width: 30%;
  border-bottom: 1px solid #000;
}
#form td {
  padding: 10px;
  border-bottom: 1px solid #000;
  vertical-align: middle;
  font-weight: normal;
  text-align: left;
}
#form2 tr {
  display: flex;
  flex-wrap: wrap;
}
#form2 tr:first-child th, #form2 tr:first-child td {
  border-top: 1px solid #ccc;
}
#form2 {
  max-width: 100%;
  margin-bottom: 40px;
  background-color: #FFF;
}
#form2 th span {
  font-size: 0.8em;
  color: #FFF;
  background-color: #C00;
  padding: 3px;
}
#form2 th {
  background-color: #f9f9f9;
  padding: 10px;
  width: 30%;
  border-bottom: 1px solid #ccc;
}
#form2 td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
  font-weight: normal;
  width: 70%;
}
#form3 {
  max-width: 100%;
  margin-bottom: 40px;
  background-color: #FFF;
}
#form3 tr {
  border-bottom: 1px dotted #bfbfbf;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  display: flex;
}
#form3 th {
  width: 150px;
  color: #FFF;
  text-align: center;
  padding-top: 10px;
}
#form3 th span {
  background-color: #808080;
  display: inline-block;
  width: 150px;
}
#form3 td {
  padding: 10px;
  vertical-align: middle;
  font-weight: normal;
  padding-left: 4rem;
}
#form3 td .tel_txt1 {
  font-size: 1.2rem;
  margin-bottom: 0;
}
#form3 td .tel_txt2 {
  font-size: 2.4rem;
  font-family: 'Manrope', sans-serif;
  line-height: 1;
  display: block;
}
.f-note {
  font-size: 85%;
  color: #ff1414;
}
/* テキストエリアの設定 */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  color: #000;
  padding: 20px;
  margin: 20px 0 10px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
input[type="date"] {
  width: 100%;
  color: #000;
  padding: 20px;
  margin: 0 0 10px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: #fff;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus, select:focus {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  input[type="date"] {
    margin: 20px 0 10px;
  }
}
@media screen and (min-width: 1200px) {
  input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    padding: 25px;
  }
  input[type="date"] {
    padding: 25px;
  }
}
@media screen and (max-width: 576px) {
  input[type="date"] {
    text-align: left;
    width: 100%;
  }
  input[type="date"]::before {
    content: attr(placeholder);
    width: 100%;
    color: #000;
    /* padding-left: 10px;*/
    white-space: nowrap;
  }
  input[type="date"].has-value::before {
    content: ""; /* 日付が入力されたらプレースホルダーを非表示にする */
    width: 0;
    padding-left: 0;
  }
}
@media only screen and (max-width:479px) {
  /* 479px以下用（スマートフォン用）の記述 */
  #form {
    max-width: 100%;
    margin-bottom: 40px;
  }
  #form th {
    width: 100%;
    display: block;
    border-top: none;
  }
  #form td {
    width: 100%;
    display: block;
    border-top: none;
  }
  /*  #form tr:first-child th {
    border-top: 1px solid #ddd;
  }*/
  #form2 {
    max-width: 100%;
    margin-bottom: 40px;
  }
  #form2 th {
    width: 100%;
  }
  #form2 td {
    width: 100%;
    display: block;
  }
  #form2 tr:first-child td {
    border-top: none;
  }
  #form3 {
    max-width: 100%;
    margin-bottom: 40px;
  }
  #form3 tr {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    flex-direction: column;
  }
  #form3 th {
    width: 50%;
    display: block;
    border-top: none;
  }
  #form3 td {
    width: 100%;
    display: block;
    border-top: none;
    margin-bottom: 0;
    padding-left: 10px;
  }
  #form3 tr:first-child th {
    /*	border-top: 1px solid #ddd;*/
  }
  /* テキストエリアの設定 */
  input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    width: 100%;
    padding: 20px;
    margin: 0 0 10px;
  }
  /*  .wpcf7-submit {
    font-size: 1.2em;
    border-style: none;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }*/
}
.grecaptcha-badge {
  visibility: hidden;
}
.form_grecaptcha {
  text-align: center;
  color: #777;
  font-size: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 0;
  display: none;
}
.form_grecaptcha a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .form_grecaptcha {
    margin-top: 4rem;
  }
}
/*******************************
/* single.php　アイキャッチ
***************************/
.sgl {
  margin-bottom: 2rem;
  text-align: center;
}
.sgl img {
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .sgl {
    margin-bottom: 3rem;
  }
}
/*************************
/* single.php 日付
*************************/
#date span {
  color: #FFF;
  background-color: #A8A8A8;
  font-size: 0.8em;
  padding: 5px;
}
/* single.php ページ送り
-------------------------*/
#next {
  background-color: #f6f6f6;
  padding: 10px;
  margin-top: 30px;
}
.nx_left {
  width: 100%;
  text-align: left;
}
.nx_left a {
  background-color: #FFF;
  color: #000;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/left.png);
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 35px;
  transition: all 0.5s;
}
.nx_left a:hover {
  /*
  background-color: #828282;
*/
  background-color: #a6a3a3;
  color: #FFF;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/left2.png);
  background-repeat: no-repeat;
  background-position: left center;
  transition: all 0.5s;
}
.nx_right {
  width: 100%;
  text-align: right;
}
.nx_right a {
  background-color: #FFF;
  color: #000;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/right.png);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 35px;
  transition: all 0.5s;
}
.nx_right a:hover {
  /*
  background-color: #828282;
*/
  background-color: #a6a3a3;
  color: #FFF;
  text-decoration: none;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/right2.png);
  background-repeat: no-repeat;
  background-position: right center;
  transition: all 0.5s;
}
/*--------------------------------
PREV NEXT
---------------------------------*/
#prev_next {
  width: 100%;
  margin: 36px 0 24px;
  padding: 0;
  display: table;
}
#prev_next #prev, #prev_next #next {
  width: 50%;
  padding: 30px 10px 10px;
  border-top: #ccc 1px solid;
  border-bottom: #ccc 1px solid;
  display: table-cell;
  position: relative;
  text-decoration: none;
}
#prev_next #prev p, #prev_next #next p {
  font-size: 90%;
  line-height: 1.5;
}
#prev_next #prev:hover, #prev_next #next:hover {
  background-color: rgba(238, 238, 238, 0.7);
}
#prev_next #prev {
  border-right: #ccc 1px solid;
}
#prev_next #prev_title, #prev_next #next_title {
  font-size: 90%;
  top: -1em;
  position: absolute;
  border: 1px #ccc solid;
  background: #fff;
  text-align: center;
  padding: 3px;
  color: #666;
}
#prev_next #next_title {
  right: 10px;
}
#prev_next #prev img, #prev_next #next img {
  margin: 0 auto;
}
#prev_next #prev_no, #prev_next #next_no {
  width: 50%;
  height: 140px;
  padding: 0 10px;
  display: table-cell;
}
#prev_next #prev_no {
  border-right: #ccc 1px solid;
}
#prev_next_home {
  margin: 0 auto;
  background-color: #1a1a1a;
  border: solid 9px #fff;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  box-shadow: 0 0 0 3px #1a1a1a;
  -webkit-box-shadow: 0 0 0 3px #1a1a1a;
  -moz-box-shadow: 0 0 0 3px #1a1a1a;
  text-align: center;
}
#prev_next_home:hover {
  opacity: 0.7;
}
#prev_next_home i {
  color: #FFF;
  margin: 10px auto;
  font-size: 60px;
}
/*media Queries PCサイズ
----------------------------------------------------*/
@media only screen and (min-width: 780px) {
  /*-- ここから --*/
  /*--------------------------------------
768px PREV NEXT
--------------------------------------*/
  #prev_next #prev, #prev_next #prev::before, #prev_next #prev::after, #prev_next #next, #prev_next #next::before, #prev_next #next::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  #prev_next #prev_title, #prev_next #next_title {
    padding: 3px 10px;
  }
  #prev_next #next_title {
    right: 10px;
  }
  #prev_next #prev img {
    float: left;
    margin-right: 10px
  }
  #prev_next #next img {
    float: right;
    margin-left: 10px;
  }
  /*-- ここまで --*/
}
/*******************************
/* archive tit
*******************************/
.gall_tit {
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.gall_tit a {
  color: #000;
}
/*************
/* 投稿ギャラリー
*************/
.wp-caption-text {
  font-size: 12px;
  color: #999999;
  text-align: center;
}
.gallery {
  margin: 0 -5px;
}
.gallery .gallery-item {
  float: left;
  margin: 0;
  text-align: center;
  width: 25%;
  padding: 5px;
}
.gallery.gallery-columns-2 .gallery-item {
  width: 50%;
}
.gallery.gallery-columns-3 .gallery-item {
  width: 33.33%;
}
.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery .gallery-caption {
  margin-left: 0;
  margin-bottom: 35px;
  padding-right: 20px;
  padding-left: 20px;
}
/*-----------------------------
wordpressのギャラリースマホ調整
------------------------------*/
@media screen and (max-width: 640px) {
  #gallery-1, #gallery-2, #gallery-3, #gallery-4, #gallery-5, #gallery-6 {
    display: flex;
    flex-wrap: wrap;
  }
  .gallery-columns-3 .gallery-item, .gallery-columns-4 .gallery-item {
    float: none;
    width: 50% !important;
    margin: 0;
  }
  .gallery.gallery-columns-2 .gallery-item, .gallery-columns-3 .gallery-item {
    width: 100%;
  }
  .gallery .gallery-item {
    padding: 3px;
  }
}
/*******************************
/* youtube　gmapレスポンシブ対応
***************************/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.ggmap iframe, .ggmap object, .ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*******************************
/* レスポンシブ改行
***************************/
@media screen and (min-width: 576px) {
  .br-pc {
    display: block;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (max-width: 567px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
/*******************************
/* form
*******************************/
.con_form .wpcf7-list-item {
  display: block;
}
/*******************************
/*関連画像
*******************************/
.related-thumb {
  height: 120px;
}
.related-thumb img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.related-title {
  margin: 8px 0;
  color: #000;
  text-align: center;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
@media screen and (min-width: 992px) {
  .related-thumb {
    height: 200px;
  }
}
/*--------------------------------------
archiveページャー
--------------------------------------*/
/*.pagenation:after, .pagenation ul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}*/
.pagenation ul {
  margin: 0;
  margin-top: 4rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagenation li {
  float: left;
  list-style: none outside none;
  margin-left: 3px;
  margin-right: 3px;
  margin-bottom: 3px;
}
.pagenation li:first-child {
  margin-left: 0;
}
.pagenation li.active {
  color: #000;
  cursor: not-allowed;
  padding: 10px 10px;
  display: inline-block;
  position: relative;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
.pagenation li.active::before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}
.pagenation li a {
  /*  background: none repeat scroll 0 0 #fff;*/
  background: inherit;
  color: #b4b4b4;
  padding: 10px 10px;
  text-decoration: none;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}
.pagenation li a:hover {
  text-decoration: none;
}
.pagenation li.active, .pagenation li a {
  font-size: 1.2rem;
}
.pagenation .next, .pagenation .prev {
  display: none;
}
@media screen and (min-width: 768px) {
  .pagenation ul {
    margin-top: 6rem;
  }
  .pagenation li.active, .pagenation li a {
    font-size: 1.25rem;
    padding: 10px 14px;
  }
  .pagenation li:first-child {
    margin-right: auto;
  }
  .pagenation li:last-child {
    margin-left: auto;
    margin-right: 0;
  }
  /*
  .pagenation .next, .pagenation .prev {
    font-size: 1rem;
    align-items: center;
    position: relative;
    margin-bottom: 0;
    display: block;
  }
  .pagenation .next span, .pagenation .prev span {
    font-size: 1rem;
    color: #a0a0a0;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
  }
  .pagenation .next a, .pagenation .prev a {
    font-size: 1rem;
    color: #000;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
  }
  .pgna_icon {
    display: block;
    width: 30px;
    height: 30px;
    background-color: #002846;
    border-radius: 50%;
    position: relative;
  }
  .pagenation .pgna_icon_next {
    margin-left: 10px;
  }
  .pagenation .pgna_icon_next::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background-image: url("../images/arrow_white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
  }
  .pagenation .pgna_icon_prev {
    margin-right: 10px;
  }
  .pagenation .pgna_icon_prev::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background-image: url("../images/arrow_white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 46%;
    transform: translate(-50%, -50%) rotate(180deg);
  }
*/
}
/**************************************
/* news_container
***************************************/
.news_container {
  margin-bottom: 5.8rem;
}
.news_wrap {
  width: 87%;
  margin: 0 auto;
  max-width: 1000px;
}
.news_field01 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 2.5rem;
}
.news_field01_inner {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.news_field01_title {
  font-size: 1.57rem;
  line-height: 1;
  white-space: nowrap;
  margin: 0;
}
.news_field02 .news_block {
  margin-bottom: 2.8rem;
}
.news_block > ul > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.news_block > ul > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}
.news_block > ul > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
.news_item {
  display: block;
  padding: 1.6rem 0 1.7rem;
  transition: all 0.5s;
  position: relative;
}
.news_item::after {
  background-color: rgba(245, 245, 245, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.news_item:hover::after {
  transform: scale(1, 1);
}
.news_title {
  font-size: 1.07rem;
  letter-spacing: 0.06rem;
  color: #000;
  margin-bottom: 0.6rem;
}
.news_date_box {
  display: flex;
  align-items: center;
}
.news_date, .news_category_name {
  font-size: 0.86rem;
  color: #787878;
}
.news_field02 .section_btn_box {
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .news_wrap {
    display: flex;
  }
  .news_field01 {
    width: 20%;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 0;
  }
  .news_field01_title {
    font-size: 1.7rem;
  }
  .news_field02 {
    width: 80%;
  }
}
@media screen and (min-width: 1200px) {
  .news_container {
    margin-bottom: 7.6rem;
  }
  .news_wrap {
    width: 70%;
  }
  .news_field01 {
    width: 16%;
  }
  .news_field02 {
    width: 84%;
  }
  .news_field02 .news_block {
    margin-bottom: 1.8rem;
  }
  .news_field01_title {
    font-size: 1.875rem;
  }
  .news_item {
    padding: 2rem 0;
  }
  .news_title {
    font-size: 1.125rem;
  }
  .news_date, .news_category_name {
    font-size: 0.8125rem;
  }
  .news_date.mb0 {
    margin-right: 0.5rem;
  }
}
/***************************************
投稿一覧
***************************************/
.archive_container {
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .archive_container {
    margin-bottom: 8rem;
  }
}
@media screen and (min-width: 1200px) {
  .archive_container {
    margin-bottom: 10rem;
  }
}
/***************************************
投稿詳細
***************************************/
.single_main_block {
  width: 94%;
  margin: 0 auto;
  max-width: 1200px;
  background: #fff;
  padding: 3rem 0 3.8rem;
}
.single_main_contents {
  font-family: "Noto Sans", sans-serif;
  font-weight: 100;
}
.single_main_block #main2 {
  margin-bottom: 0;
}
.single_date {
  font-size: 0.857rem;
  letter-spacing: 0.02em;
  color: #787878;
}
.single_eye_img {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .single_main_block {
    width: 87%;
    padding: 4rem 5% 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .single_main_block {
    padding: 6rem 10% 7rem;
  }
  .single_main_contents {
    font-size: 0.9375rem;
  }
  .single_date {
    font-size: 0.875rem;
  }
  .single_eye_img {
    margin-bottom: 4rem;
  }
}
/***************************************
prev,next表示
***************************************/
/*||prev,next表示||*/
.single_nextbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 0;
  width: 100%;
  margin: 4.5rem auto 0;
  padding-top: 3.7rem;
  border-top: 1px solid rgba(200, 200, 200, 0.4);
}
.single_prev, .single_next {
  margin-bottom: 0;
}
.single_link_btn, .single_nolink {
  font-size: 0.785rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single_link_btn {
  color: #000;
  transition: all 0.5s;
}
.single_nolink {
  color: #A0A0A0;
  opacity: 0.7;
}
.single_nolink:hover {
  color: #A0A0A0;
}
.single_link_circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.4);
  position: relative;
  transition: all 0.5s;
}
.single_link_btn:hover .single_link_circle {
  background-color: #002846;
  border: 1px solid rgba(0, 40, 70, 0.4);
  transition: all 0.5s;
}
.single_prev .single_link_circle {
  margin-right: 5px;
}
.single_prev .single_link_circle::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-image: url("../images/arrow_black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  transition: all 0.5s;
}
.single_prev .single_link_btn:hover .single_link_circle::before {
  background-image: url("../images/arrow_white.svg");
  transition: all 0.5s;
}
.single_next .single_link_circle {
  margin-left: 5px;
}
.single_next .single_link_circle::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-image: url("../images/arrow_black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.single_next .single_link_btn:hover .single_link_circle::before {
  background-image: url("../images/arrow_white.svg");
  transition: all 0.5s;
}
.single_menu {
  font-size: 0.785rem;
  color: #fff;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 1rem;
  border-radius: 45px;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0.4);
  transition: all 0.5s;
}
.single_menu:hover {
  color: #000;
  background-color: #fff;
  transition: all 0.5s;
}
@media screen and (min-width: 1200px) {
  .single_nextbox {
    padding-top: 6rem;
    margin-top: 6.2rem;
  }
  .single_link_btn, .single_nolink {
    font-size: 0.9375rem;
  }
  .single_link_circle {
    width: 30px;
    height: 30px;
  }
  .single_prev .single_link_circle {
    margin-right: 10px;
  }
  .single_prev .single_link_circle::before {
    width: 9px;
    height: 9px;
  }
  .single_next .single_link_circle {
    margin-left: 10px;
  }
  .single_next .single_link_circle::before {
    width: 9px;
    height: 9px;
  }
  .single_menu {
    font-size: 0.9375rem;
    padding: 13px 5rem;
  }
}
/**************************************
/* recruit_container-トップ・すぐわかるタカギ共通
***************************************/
.recruit_block {
  margin-bottom: 4rem;
}
.recruit_unit01 {
  width: 87%;
  margin: 0 auto 4.2rem;
}
.recruit_unit01 .section_btn_box {
  display: none;
}
.recruit_head {
  margin-bottom: 1.5rem;
}
.recruit_txt {
  font-size: 0.93rem;
  margin-bottom: 0;
}
.recruit_slider {
  display: none;
}
.recruit_slider.slick-initialized {
  display: block;
}
.recruit_bottom_slider {
  display: none;
}
.recruit_bottom_slider.slick-initialized {
  display: block;
}
.recruit_img {
  width: 98%;
}
.recruit_btn_sp {
  width: 87%;
  margin: 0 auto 4rem;
}
.recruit_bottom_txt {
  font-size: 4.29rem;
  color: #f0f0f0;
  width: 94%;
  white-space: nowrap;
}
@media screen and (max-width: 390px) {
  .recruit_bottom_txt {
    font-size: 4.1rem;
  }
}
@media screen and (min-width: 768px) {
  .recruit_block {
    display: flex;
    align-items: center;
    margin-bottom: 2.4rem;
  }
  .recruit_unit01 {
    width: 45%;
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 0;
  }
  .recruit_txt {
    margin-bottom: 2rem;
  }
  .recruit_unit01 .section_btn_box {
    display: flex;
  }
  .recruit_unit02 {
    width: 55%;
  }
  .recruit_btn_sp {
    display: none;
  }
  .recruit_bottom_txt {
    font-size: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .recruit_unit01 {
    width: 38.5%;
    padding-left: 6.5%;
    padding-right: 3%;
    padding-bottom: 1rem;
  }
  .recruit_head {
    margin-bottom: 1.7rem;
  }
  .recruit_txt {
    font-size: 0.9375rem;
    margin-bottom: 4rem;
  }
  .recruit_unit02 {
    width: 61.5%;
  }
  .recruit_bottom_txt {
    font-size: 7rem;
  }
}
@media screen and (min-width: 1500px) {
  .recruit_unit01 {
    padding-left: 12.3%;
  }
}
/************************
/*FORM(お問い合わせ)
************************/
input[type="button"], input[type="text"], input[type="submit"], input[type="image"], textarea {
  -webkit-appearance: none;
  border-radius: 0;
}
/* FORM MODEL */ ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #919191;
  letter-spacing: 0.1em;
  font-family: inherit;
}
:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #919191;
  letter-spacing: 0.1em;
  opacity: 1;
  font-family: inherit;
}
::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #919191;
  letter-spacing: 0.1em;
  opacity: 1;
  font-family: inherit;
}
:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #919191;
  letter-spacing: 0.1em;
  font-family: inherit;
}
::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #919191;
  letter-spacing: 0.1em;
  font-family: inherit;
}
::placeholder {
  /* Most modern browsers support this now. */
  color: #919191;
  letter-spacing: 0.1em;
  font-family: inherit;
}
.pg_contact_txt1 {
  font-size: 0.9375rem;
  line-height: 1.73;
  color: #000;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}
.cl-red {
  color: #c40000;
  font-size: 1rem;
  line-height: 1;
  margin: 0 5px;
  padding-top: 6px;
}
@media screen and (min-width: 768px) {
  .pg_contact_txt1 {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .pg_contact_txt1 {
    margin-bottom: 5.7rem;
  }
}
/*************
/*FORM
*************/
/* FORM MODEL */
#form-model {
  max-width: 1000px;
  margin: 0 auto;
}
#form-model .form-label__required {
  font-family: "Noto Sans", sans-serif;
  font-weight: 100;
  font-size: 0.8rem;
  background-color: #002846;
  padding: 4px 13px;
  color: #fff;
  margin-left: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: nowrap;
}
#form-model input, #form-model textarea, #form-model select {
  padding: 15px;
  background-color: #fff;
  outline: none;
  resize: none;
  font-weight: 500;
  /*font-size: 1rem;*/
  font-size: 0.9375rem;
  margin: 0;
  border-radius: 0;
  border: none;
  width: 100%;
  /*height:56px; */
}
/*#form-model #zip3 {
  margin-bottom: 0;
}*/
#form-model .form-group {
  border-bottom: 1px solid rgba(200, 200, 200, 0.25);
  padding-bottom: 1.85rem;
  margin-bottom: 1.85rem;
}
#form-model .form-group.form-group_img_wrap {
  padding-bottom: 1rem;
}
#form-model .form-group.form-group--bottom {
  border: none;
  padding-bottom: 0;
  margin-bottom: 2.7rem;
}
#form-model .form-input__checkbox .agree .wpcf7-form-control {
  margin-bottom: 2rem;
}
#form-model .form-group--bottom span.wpcf7-list-item {
  text-align: center;
  margin: 0;
}
#form-model input[type="checkbox"], #form-model input[type="radio"] {
  display: inline-block;
}
#form-model .form-input__checkbox label {
  cursor: pointer;
}
#form-model .form-input__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#form-model .form-group .form-label {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}
#form-model .form-group_check_outer {
  padding: 0.5rem 0 1rem;
}
#form-model .form-group_address input.form-input__small300 {
  margin-top: 0.5rem;
}
#form-model .form-input__checkbox input:checked ~ .wpcf7-list-item-label::after {
  opacity: 1;
}
#form-model input[type="submit"] {
  letter-spacing: 0.02em;
  background-color: #002846;
  color: #fff;
  height: 65px;
  width: 100%;
  max-width: 420px;
  font-weight: 200;
  font-size: 1rem;
  border: none;
  border-radius: 45px;
}
@media screen and (min-width: 768px) {
  #form-model .form-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 1.85rem;
    margin-bottom: 1.85rem;
  }
  #form-model .form-group.form-group_check_wrap {
    padding-bottom: 3.6rem;
  }
  #form-model .form-group .form-label {
    width: 30%;
    display: flex;
    margin-bottom: 0;
    padding-right: 1.8rem;
    justify-content: space-between;
  }
  #form-model .form-group .form-label.form-label_up {
    padding-bottom: 4rem;
  }
  #form-model .form-label__required {
    padding: 5px 20px;
  }
  #form-model .form-group_address input.form-input__half {
    width: 49%;
  }
  #form-model .form-group_address input.form-input__small300 {
    margin-top: 1rem;
  }
  #form-model .form-group_check_outer {
    padding: 1rem 0 2rem;
  }
  #form-model .form-group.form-group--bottom {
    align-items: flex-start;
    margin-bottom: 2.6rem;
  }
  #form-model .form-group--bottom .form-label {
    padding-top: 1.7rem;
  }
  #form-model .form-group .wpcf7-form-control-wrap {
    width: 70%;
    margin-left: auto;
  }
  #form-model input, #form-model textarea, #form-model select {
    width: 100%;
  }
  #form-model .form-group.form-group_area {
    margin-top: -1.8rem;
    margin-bottom: 3.7rem !important;
  }
  #form-model .form-group--submit {
    width: 70%;
    margin-left: auto;
    text-align: left !important;
  }
}
@media screen and (min-width: 992px) {
  #form-model .form-group .form-label {
    width: 30%;
    padding-right: 2.4rem;
  }
  #form-model .form-group .wpcf7-form-control-wrap {
    width: 70%;
  }
  #form-model .form-group--submit {
    width: 70%;
  }
  #form-model input, #form-model textarea, #form-model select {
    padding: 27px;
  }
  #form-model input[type="submit"] {
    font-size: 1.125rem;
    padding: 0;
    height: 82px;
  }
}
/* RADIO */
.form-input__checkbox {
  margin-bottom: 0;
}
#form-model .form-input__checkbox .wpcf7-form-control {
  color: #000;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
/* CUSTOM CHECKBOX */
#form-model .form-input__checkbox .wpcf7-list-item {
  margin-right: 1.5rem;
  margin-left: 0;
  margin-bottom: 0;
  line-height: 2.5;
}
#form-model .form-input__checkbox label {
  cursor: pointer;
  margin-bottom: 0;
}
#form-model .form-input__checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#form-model .form-input__checkbox .wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0;
  border-radius: 50%;
  padding-left: 35px;
}
#form-model .form-input__checkbox .wpcf7-list-item-label::before, #form-model .form-input__checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  transition: 0.2s;
  border-radius: 0;
}
#form-model .form-input__checkbox .wpcf7-list-item-label::before {
  display: block;
  height: 25px;
  width: 25px;
  border: none;
  background-color: #fff;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
}
#form-model .form-input__checkbox .wpcf7-list-item-label::after {
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  opacity: 0;
  background-color: #002846;
}
#form-model .form-input__checkbox input:checked ~ .wpcf7-list-item-label::after {
  opacity: 1;
}
/*ラジオボタン*/
#form-model .form-input__checkbox.form-input__radio .wpcf7-list-item-label::before {
  border-radius: 50%;
}
#form-model .form-input__checkbox.form-input__radio .wpcf7-list-item-label::after {
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .form-input__checkbox {
    width: 70%;
  }
}
@media screen and (min-width: 1200px) {
  #form-model .form-input__checkbox .wpcf7-list-item {
    margin-right: 2.2rem;
  }
  #form-model .form-input__checkbox .wpcf7-list-item-label {
    padding-left: 50px;
  }
  #form-model .form-input__checkbox .wpcf7-list-item-label::before {
    height: 40px;
    width: 40px;
  }
  #form-model .form-input__checkbox .wpcf7-list-item-label::after {
    left: 15px;
    width: 10px;
    height: 10px;
  }
}
#form-model .form-group--agree {
  margin-bottom: 3rem;
}
.f_note {
  font-size: 1rem !important;
  margin-top: 2rem;
  margin-bottom: 0;
  font-family: "Noto Sans", sans-serif;
  font-weight: 100;
}
.f_note a {
  color: #000;
  text-decoration: underline;
  transition: all 0.5s;
}
.f_note a:hover {
  color: #828282;
  transition: all 0.5s;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  #form-model .form-group--agree {
    width: 70%;
    margin-left: auto;
    text-align: left !important;
    margin-bottom: 3.5rem;
  }
}
@media screen and (min-width: 992px) {
  #form-model .form-group--agree {
    width: 70%;
  }
}
@media screen and (min-width: 1200px) {
  .f_note {
    font-size: 0.875rem !important;
    margin-top: 2.3rem;
  }
}
/*||個人情報の取り扱いに同意する||*/
#form-model .form-input__checkbox--round .wpcf7-form-control {
  justify-content: center;
}
#form-model .form-input__checkbox--round .wpcf7-list-item-label::before, #form-model .form-input__checkbox--round .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
#form-model .form-input__checkbox--round .wpcf7-list-item-label::before {
  left: 0;
  display: block;
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
}
#form-model .form-input__checkbox--round .wpcf7-list-item-label::after {
  left: 14.5px;
  width: 10px;
  height: 10px;
  opacity: 0;
  background-color: #002846;
  border-radius: 50%;
}
#form-model .form-input__checkbox--round .wpcf7-list-item-label {
  border-radius: 50%;
  line-height: 35px;
  padding-top: 0;
  font-size: 0.9375rem;
  position: relative;
  padding-left: 50px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 100;
}
.form-input__checkbox--round .wpcf7-list-item-label::before {
  width: 50px;
  height: 50px;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
}
.form-input__checkbox--round .wpcf7-list-item-label::after {
  left: 19.5px;
  top: 50%;
}
@media screen and (min-width: 768px) {
  #form-model .form-input__checkbox--round .wpcf7-form-control {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  #form-model .form-input__checkbox--round .wpcf7-list-item-label {
    font-size: 0.875rem;
    padding-left: 58px;
  }
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
input[type="button"], input[type="text"], input[type="submit"], input[type="image"], textarea {
  -webkit-appearance: none;
  border-radius: 0;
}
#form-model input[type="date"] {
  min-width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
}
/***************************************

***************************************/
/**************************************
/* レスポンシブ改行
***************************************/
@media screen and (max-width: 575px) {
  .br-sp5 {
    display: block;
  }
  .br-pc5 {
    display: none;
  }
}
@media screen and (min-width: 576px) {
  .br-sp5 {
    display: none;
  }
  .br-pc5 {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .br-sp7 {
    display: inline-block;
  }
  .br-pc7 {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .br-sp7 {
    display: none;
  }
  .br-pc7 {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .br-pc9 {
    display: none;
  }
  .br-sp9 {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .br-pc9 {
    display: block;
  }
  .br-sp9 {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .br-pc12 {
    display: none;
  }
  .br-sp12 {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .br-pc12 {
    display: block;
  }
  .br-sp12 {
    display: none;
  }
}
@media screen and (max-width: 1499px) {
  .br-pc15 {
    display: none;
  }
  .br-sp15 {
    display: block;
  }
}
@media screen and (min-width: 1500px) {
  .br-pc15 {
    display: block;
  }
  .br-sp15 {
    display: none;
  }
}
@media screen and (max-width: 1799px) {
  .br-pc18 {
    display: none;
  }
  .br-sp18 {
    display: block;
  }
}
@media screen and (min-width: 1800px) {
  .br-pc18 {
    display: block;
  }
  .br-sp18 {
    display: none;
  }
}