@charset "UTF-8";

/*
Theme Name: original
Author: original
Description: original theme.
Version: 1.0
*/

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ 非表示設定 */
@media all and (max-width: 1023px) {
  /* 1023以下の時非表示 */
  .spnone {
    display: none;
  }
}
@media all and (min-width: 1024px) {
  /* 1024以上の時非表示 */
  .pcnone {
    display: none;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ ロードフェード */
.load-fade {
  opacity: 0;
  transition: all 1.5s; /*処理にかかる時間*/
}
.load-fade.done {
  opacity: 1;
  /*transform: translate(0, 0);*/
}

/* ==============================
スクロールでヘッダーサイズ変更
============================== */
.is-animation {
  margin-top: 0;
}

/* 白線用 
.header-nav ul li+li{
	border-left: none;
}
 */

/* 白線用 特定ページのみロゴは表示しない 
 .page-id-5 .header-xxx{display:none}
  */

/* ==============================
アンカー補正
============================== */
/* アンカー用ヘッダー幅 */
.anchor-disp {
  margin-top: -65px;
  padding-top: 65px;
  height: 0px;
}

/* アンカー用ヘッダー幅打ち消し */
/* PC */
@media (min-width: 1024px) {
  .anchor-disp {
    margin-top: -65px;
    padding-top: 65px;
    height: 0px;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ メインラップ */
/* SP */
@media (max-width: 1023px) {
  .container,
  .front-container {
    max-width: 100%;
    padding: 70px 10% 70px 10%;
    overflow: hidden;
    opacity: 1;
  }
  .contents {
    max-width: 100%;
    margin: 0 auto;
  }
  .sidebar {
    max-width: 100%;
    height: auto;
    padding: 0 0 0 0;
  }
  article {
    max-width: 100%;
    margin: 0 auto;
    padding: 20% 0 10% 0;
  }
  .part-com {
    width: 100%;
    height: 400px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center; /*左右中央揃え*/
    align-items: center; /*上下中央揃え*/
    background-image: url("img/part-bg-com.jpg");
  }
  .part-wrap {
    width: 100%;
    height: 400px;
  }
  .part-wrap h1 {
    text-align: center;
    display: block;
    margin-top: 200px;
    color: #fff;
  }
}

/* PC */
@media (min-width: 1024px) {
  .container,
  .front-container {
    max-width: 100%;
    padding: 70px 10% 70px 10%;
    overflow: hidden;
    opacity: 1;
  }
  .contents {
    max-width: 1024px;
    margin: 0 auto;
  }
  .sidebar {
    max-width: 960px;
    height: auto;
    padding: 0 0 0 0;
  }
  article {
    max-width: 960px;
    margin: 0 auto;
    padding: 10% 10% 10% 10%;
  }
  .part-com {
    width: 100%;
    height: 400px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center; /*左右中央揃え*/
    align-items: center; /*上下中央揃え*/
    background-image: url("img/part-bg-com.jpg");
  }
  .part-wrap {
    width: 100%;
    height: 400px;
  }
  .part-wrap h1 {
    text-align: center;
    display: block;
    margin-top: 180px;
    color: #fff;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ ヘッダー */
header {
  z-index: 1000;
  top: 0px;
  width: 100%;
  height: 65px;
  text-align: center;
  position: fixed;
  transition: 1s;
  background-color: rgb(58, 58, 58);
  margin-top: -65px;
}
.header-nav ul {
  list-style: none;
  overflow: hidden;
  display: table;
  table-layout: fixed;
  width: 100%;
  float: right;
  padding-top: 10px;
}
.header-nav ul li {
  font-size: 16px;
  text-align: center;
  display: table-cell;
  /* 白線 border-left: 1px solid #ccc; */
  /* 白線 border-right: 1px solid #ccc; */
  line-height: 0px;
  vertical-align: middle;
}
.header-nav a {
  color: #fff;
  display: block;
}
.header-logo img {
  width: 300px;
  margin-top: 15px;
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ スライド */
/* ====================
フロントページ用
==================== */
.video-wrap {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1)
  );
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.video-bg {
  -webkit-transform: translateX(-50%);
  left: 50%;
  max-height: initial;
  max-width: initial;
  min-height: 100vh;
  min-width: 100%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  z-index: 0;
}

.video-inner {
  -webkit-transform: translate(-50%, -50%);
  color: #fff;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}

/* SP */
@media (max-width: 799px) {
  .video-inner img {
    max-width: 70%;
  }
}

/* PC */
@media (min-width: 800px) {
  .video-inner img {
    margin-top: -17%;
    max-width: 17%;
  }
}

/* ==============================
slick-a
============================== */
/* SP */
@media (max-width: 1199px) {
  .slick-b {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .slick-b img {
    width: 100%;
    object-fit: cover;
  }
}

/* PC */
@media (min-width: 1200px) {
  .slick-b {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .slick-b img {
    width: 100%;
    object-fit: cover;
  }
}

/* ==============================
slick-b
============================== */
/* SP */
@media (max-width: 1199px) {
  .slick-a {
    width: 100%;
  }
  .slick-a img {
    width: 100%;
    height: 50%;
    object-fit: cover;
  }
}

/* PC */
@media (min-width: 1200px) {
  .slick-a {
    width: 50%;
  }
  .slick-a img {
    width: 100%;
    object-fit: cover;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ TEXT */
/* ==============================
h1
============================== */
.h1-wrap {
  margin-bottom: 30px;
  text-align: center;
}

/* SP */
@media (max-width: 1023px) {
  h1 {
    font-size: 15vw;
    font-weight: 600;
    text-align: left;
    display: block;
    line-height: 1.1em;
  }
}
/* PC */
@media (min-width: 1024px) {
  h1 {
    font-size: 15vw;
    font-weight: 600;
    text-align: left;
    display: block;
    line-height: 1.1em;
  }
}

.h1-line {
  align-items: center;
  margin: 0 auto;
  max-width: 100px;
  padding: 30px;
  border-bottom: 5px solid #3a3a3a;
}

/* ==============================
h2
============================== */
.h2-wrap {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

/* ==============================
ウィジェット
============================== */
h2.widgettitle {
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  height: 30px;
  color: #fff;
  background-color: #3a3a3a;
  padding: 2px 0 0 10px;
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: left;
  line-height: 2em;
}

.widget_nav_menu ul li {
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  height: 30px;
  padding: 2px 0 0 0;
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: left;
  line-height: 2em;
}

/* ==============================
h3
============================== */
.h3-wrap {
  display: flex;
  justify-content: center; /* 水平中央寄せ */
  padding-top: 20px;
}

h3 {
  font-size: 23px;
  font-weight: 600;
  line-height: 1.8;
  text-align: left;
}

/* ==============================
h4
============================== */
.h4-wrap {
  text-align: center;
  padding-bottom: 25px;
}

h4 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
}

/* ==============================
h5
============================== */
.h5-wrap {
  text-align: center;
  padding-bottom: 10px;
}

h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3em;
  text-align: left;
  padding: 15px 0 15px 0;
}

/* ==============================
h6
============================== */
.h6-wrap {
  text-align: center;
  padding-top: 20px;
}

h6 {
  word-break: break-all;
  font-size: 16px;
  line-height: 1.5em;
  text-align: center;
  margin: 0 auto;
  font-weight: 400;
}

/* ==============================
段落
============================== */
.p-wrap {
  padding: 20px 0 0 0;
}

/* SP */
@media (max-width: 1023px) {
  p {
    word-break: break-all;
    text-align: justify;
    font-size: 16px;
    line-height: 1.8em;
  }
  .text-wrap p {
    width: 60%;
    padding: 20px 0 0 0;
    margin: 0 auto;
    text-align: justify;
  }
  .notes-wrap p {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  .overview-wrap {
    margin: 0 0 100px 0;
  }

  .p-line {
    align-items: center;
    margin: 0 auto;
    max-width: 50px;
    padding: 15px;
    border-bottom: 5px solid #3a3a3a;
  }
}

/* PC */
@media (min-width: 1024px) {
  p {
    word-break: break-all;
    text-align: justify;
    font-size: 16px;
    line-height: 1.8em;
  }
  .text-wrap p {
    width: 60%;
    padding: 20px 0 0 0;
    margin: 0 auto;
    text-align: justify;
  }
  .notes-wrap p {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }
  .overview-wrap {
    margin: 0 0 100px 0;
  }

  .p-line {
    align-items: center;
    margin: 0 auto;
    max-width: 50px;
    padding: 15px;
    border-bottom: 5px solid #3a3a3a;
  }
}

/* ==============================
文字色
============================== */
.w {
  color: #fff;
}

/* ==============================
文字位置
============================== */
.t-c {
  text-align: center;
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ BOX */
/* ==============================
フロント用左右タイプ
============================== */
/* PC */
@media (min-width: 1200px) {
  .part-r-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
  }
  .part-l-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
  }
}

/* SP */
@media (max-width: 1999px) {
  .part-l-tex,
  .part-r-tex {
    padding: 15% 5% 15% 5%;
  }
}
/* PC */
@media (min-width: 1200px) {
  .part-l-tex,
  .part-r-tex {
    padding: 15px 9% 15px 9%;
  }
}
.part-l-tex img,
.part-r-tex img {
  width: 20%;
}
.bg-g {
  background-image: url("img/textured_paper-2.png");
}
.bg-o {
  background-image: url("img/textured_paper.png");
}

/* SP */
@media (max-width: 1023px) {
  .part-l-tex-info,
  .part-r-tex-info {
    padding: 15% 5% 0 5%;
  }
}
/* PC */
@media (min-width: 1024px) {
  .part-l-tex-info,
  .part-r-tex-info {
    padding: 15px 7% 15px 7%;
  }
}

/* ==============================
3列-1列
============================== */
/* SP */
@media screen and (max-width: 599px) {
  .box3-1-wrap {
    width: 100%;
    justify-content: space-between;
    margin: 0 auto;
  }
  .box3-1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto;
  }
  .box3-1::after {
    content: "";
    display: block;
    width: 1px;
  }
  .box3-1-inner {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 2%;
  }
}

/* PC */
@media (min-width: 600px) {
  .box3-1-wrap {
    width: 100%;
    margin: 0 auto;
  }
  .box3-1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
  }
  .box3-1::after {
    content: "";
    display: block;
    width: 1px;
  }
  .box3-1-inner {
    width: 29%;
    margin: 2%;
    text-align: center;
  }
}

.box3-1 img {
  width: 100%;
  height: auto;
}

/* ==============================
2列-1列
============================== */
/* SP */
@media screen and (max-width: 599px) {
  .box2-1-wrap {
    width: 100%;
    justify-content: space-between;
    margin: 0 auto;
  }
  .box2-1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 auto;
  }
  .box2-1::after {
    content: "";
    display: block;
    width: 1px;
  }
  .box2-1-inner {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 2%;
  }
}

/* PC */
@media (min-width: 600px) {
  .box2-1-wrap {
    width: 100%;
    margin: 0 auto;
  }
  .box2-1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
  }
  .box2-1::after {
    content: "";
    display: block;
    width: 1px;
  }
  .box2-1-inner {
    width: 45%;
    margin: 2%;
    text-align: center;
  }
}

.box2-1 img {
  width: 100%;
  height: auto;
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ サブBOX */
/* ==============================
BOX-リスト記事
============================== */
.post-list-box {
  width: 100%;
}
.post-list-box ul li {
  width: 100%;
  vertical-align: top; /* 上端揃え */
  height: auto;
  margin-bottom: 30px;
}
.post-list-eye {
  max-width: 20%;
  float: left;
}
.post-list-eye img {
  width: 100%;
  height: auto;
  border: 1px dotted #3a3a3a;
}
.post-list-title {
  width: 79%;
  float: left;
  padding-left: 20px;
  font-size: 11px;
  text-align: left;
}
.post-list-text {
  font-size: 13px;
  padding-top: 10px;
}
.post-list-time {
  width: 79%;
  float: left;
  font-size: 11px;
}

/* ==============================
  BOX-シングル記事
  ============================== */
/* SP */
@media (max-width: 767px) {
  .post-single-box {
    width: 100%;
  }
  .post-single-box img {
    width: 100%;
    height: auto;
  }
  .post-single-title h1 {
    text-align: center;
  }
}

/* PC */
@media (min-width: 768px) {
  .post-single-box {
    width: 100%;
  }
  .post-single-box img {
    width: 100%;
    height: auto;
  }
  .post-single-title h1 {
    text-align: center;
  }
}

/* ==============================
フロントニュース一覧表示
============================== */
.front-news {
  width: 100%;
  margin-bottom: 100px;
  margin: 0 auto;
}
.front-news dl {
  width: 100%;
}
.front-news dt {
  color: #000;
  padding-top: 10px;
}
.front-news dd {
  border-bottom: 1px #3a3a3a dotted;
  padding-bottom: 10px;
}
.front-news time {
  font-weight: 500;
}

/* PC */
@media (min-width: 768px) {
  .front-news {
    width: 70%;
    margin-bottom: 100px;
    margin: 0 auto;
  }
  .front-news dl {
    width: 100%;
  }
  .front-news dt {
    color: #000;
    float: left;
  }
  .front-news dd {
    line-height: 2em;
    border-bottom: 1px #3a3a3a dotted;
    padding: 13px 0 13px 150px;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ カスタムフィールド */
.custom-fields {
  display: inline-block;
  padding: 5px 0 5px 0;
}
.custom-fields-tex {
  font-size: 12px;
  line-height: 1.5em;
  display: inline-block;
  padding: 2px 0 2px 0;
}

/* ==============================
ボタン
============================== */
.btn-wrap {
  padding: 35px 0 35px 0;
}
.btn {
  max-width: 300px;
  text-align: center;
  margin: 0 auto;
}
.btn a,
.js-modal-button {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
  display: block;
  color: #fff;
  border: none;
  background: #3a3a3a;
  padding: 14px 0;
  border-radius: 32px;
}
.btn :hover,
.js-modal-button :hover {
  background: #888;
  transition: all 0.6s ease; /*変化する時間*/
  opacity: 10; /* 送信ボタンと挙動そろえるためにリンクの半調は解除 */
}
.btn-w {
  max-width: 250px;
  text-align: center;
  margin: 1em auto;
}
.btn-w a {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
  display: block;
  color: #3a3a3a;
  border: none;
  background: #fff;
  padding: 14px 0;
  border-radius: 32px;
}
.btn-w :hover {
  background: #888;
  transition: all 0.6s ease; /*変化する時間*/
  opacity: 10; /* 送信ボタンと挙動そろえるためにリンクの半調は解除 */
}

/* ==============================
ボタンセンター
============================== */
.btn-c {
  width: 160px;
  margin: 0 auto;
}
.btn-c a {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
  display: block;
  color: #3a3a3a;
  border: none;
  background-color: #ffeb3b;
  padding: 7px 0 7px 0;
  margin-top: 20px;
  border-radius: 25px;
}
.btn-c :hover {
  background: rgb(100, 100, 100);
  color: #fff;
  transition: all 0.6s ease; /*変化する時間*/
  opacity: 10; /* 送信ボタンと挙動そろえるためにリンクの半調は解除 */
}
.btn-c-w :hover {
  background: rgb(100, 100, 100);
  color: #000;
  transition: all 0.6s ease; /*変化する時間*/
  opacity: 10; /* 送信ボタンと挙動そろえるためにリンクの半調は解除 */
}
.custom-fields-tag {
  font-size: 11px;
  line-height: 1em;
  text-align: center;
  color: #fff;
  width: 50px;
  display: inline-block;
  padding: 2px 5px 2px 5px;
  padding: 3px 0 3px 0;
  background-color: rgb(0 0 0);
}

/* ==============================
リンクボタン
============================== */
.more {
  width: 100%;
  margin-top: 5px;
}
.more-inner {
  color: #fff;
  font-size: 11px;
  text-align: center;
  line-height: 30px;
  float: right;
  width: 100px;
  height: 30px;
  background-color: #000;
}
.more-inner:hover {
  opacity: 0.6;
  filter: alpha(opacity=60); /* ie lt 8 */
  -ms-filter: "alpha(opacity=60)"; /* ie 8 */
  -moz-opacity: 0.6; /* FF lt 1.5, Netscape */
  -khtml-opacity: 0.6; /* Safari 1.x */
}

/* ==============================
シングル記事
============================== */
/* SP */
@media (max-width: 767px) {
  .box-post-single {
    width: 100%;
  }
  .box-post-single img {
    width: 100%;
    height: auto;
  }
  .post-single-title {
    text-align: center;
  }
}

/* PC */
@media (min-width: 768px) {
  .box-post-single {
    width: 60%;
    margin: 0 auto;
  }
  .box-post-single img {
    width: 100%;
    height: auto;
  }
  .post-single-title {
    text-align: center;
  }
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ ページネーション */
/* ==============================
リスト記事
============================== */
.pagination h2.screen-reader-text {
  display: none;
}
.pagination a {
  padding: 2px 10px;
  display: inline-block;
  color: #000;
  font-size: 14px;
  border-radius: 15px;
}
.pagination span {
  padding: 5px 10px;
  display: inline-block;
}
.pagination span.current {
  background-color: #fff;
  border-radius: 15px;
  padding: 0px 10px;
}
.pagination {
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 50px;
  text-align: center;
  clear: both;
}

/* ==============================
シングル記事
============================== */
.pagenav {
  font-size: 13px;
  clear: both;
  text-align: center;
}
.pagenav .old a {
  padding-right: 15px;
  float: left;
}
.pagenav .new a {
  float: right;
}
.blog-foot {
  line-height: 160%;
  text-align: left;
  margin: 30px 0 0 0;
  padding: 10px 5px 10px 10px;
  font-weight: normal;
  color: #000;
  background: #a0a0a0;
  overflow: hidden;
  height: 100%;
}
.blog-foot-archives {
  text-align: left;
  line-height: 160%;
  margin: 50px 0 100px 0;
  padding: 2px 5px 2px 10px;
  font-weight: normal;
  color: #000;
  background: #a0a0a0;
  overflow: hidden;
  height: 100%;
}
.blog-foot span,
.blog-foot-archives span {
  color: #000;
}

/* ==============================
SNSボタン
============================== */
.addtoany_content {
  text-align: center;
  padding: 50px 0 50px 0;
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ テーブル */
/* ==============================
通常テーブル
============================== */
.tbl {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  color: #3a3a3a;
  font-size: 14px;
}
th,
td {
  display: block;
  width: 100%;
  padding: 7px 0 7px 0;
}
tr {
  line-height: 2em;
  border-bottom: 1px dotted;
}
th {
  display: table-cell;
  width: 30%;
  font-weight: normal;
  text-align: left;
}
td {
  display: table-cell;
  text-align: right;
}
.tbl-fix {
  margin-bottom: 20px;
}
/* テーブル上下スペース */
.recruit,
.privacy {
  padding: 0 0 20px 0;
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ お問合わせ */
.page-icon {
  text-align: center;
  margin-top: 50px;
}
.page-icon img {
  width: 140px;
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ サイトマップ */
dl.sitemap dd {
  text-indent: 2em;
}
.sitemap a {
  display: block;
  text-decoration: underline;
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ 検索窓 */
/* SP */
@media (max-width: 1023px) {
  .searchfield {
    font-size: 14px;
    width: 50%;
    margin-right: 3px;
    padding: 7px 5px;
    border: 2px solid #ddd;
    border-radius: 4px;
  }
}

/* PC */
@media (min-width: 1024px) {
  .searchfield {
    font-size: 14px;
    width: 80%;
    margin-right: 3px;
    padding: 7px 5px;
    border: 2px solid #ddd;
    border-radius: 4px;
  }
}

.searchsubmit {
  font-family: FontAwesome;
  font-size: 1.4em;
  padding: 0;
  cursor: pointer;
  color: #f08437;
  border: none;
  background: transparent;
}
.searchsubmit:hover {
  opacity: 0.6;
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ フッター*/
/* SP */
@media (max-width: 1023px) {
  #footer {
    max-width: 100%;
    height: auto;
    text-align: center;
    padding: 30px 15px 80px 15px;
    background-color: #000;
  }
}
/* PC */
@media (min-width: 1024px) {
  #footer {
    min-width: 960px;
    height: auto;
    text-align: center;
    padding: 30px 0px 80px 0px;
    background-color: #000;
  }
}
.footer-logo {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo img {
  max-width: 300px;
}

/* PC */
@media (min-width: 1024px) {
  .footer-logo img {
    max-width: 300px;
  }
}

/* ==============================
コピーライト
============================== */
small {
  max-width: 100%;
  font-size: 12px;
  text-align: center;
  color: #fff;
}

/* ==============================
その他
============================== */
.footer-text {
  font-size: 12px;
  text-align: center;
  color: #fff;
}

/* ==============================
電話
============================== */
.footer-tel {
  font-size: 15px;
  text-align: center;
  color: #fff;
}

/* ==============================
フロントSNSアイコン
============================== */
.front-sns {
  width: 60px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 75px;
  right: 5%;
  z-index: 999999;
  align-items: center;
}
.front-sns a {
  color: #3a3a3a;
}
.front-sns span {
  padding-top: 20px;
}

/* ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ ギミック */
/* ==============================
VOICEコピー
============================== */
.voice-copy {
  text-align: center;
}
/* PC */
@media (min-width: 1024px) {
  .voice-copy img {
    max-width: 65%;
    margin-bottom: -75px;
  }
}
/* SP */
@media (max-width: 1023px) {
  .voice-copy img {
    width: 100%;
    margin-bottom: -75px;
  }
}

/* ==============================
文字マーカー
============================== */
span.marker {
  background-color: #ffeb3b;
}

/* ==============================
地図サイズ
============================== */
.map {
  width: 100%;
  height: 400px;
}
/* PC */
@media (min-width: 1024px) {
  .map {
    width: 100%;
    height: 600px;
  }
}

/* iframe下の隙間消去 */
iframe {
  vertical-align: bottom;
}

/* ==============================
スマホ用電話リンク
============================== */
@media (min-width: 1023px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* ==============================
Google認証recaptureバッジを非表示に
============================== */
.grecaptcha-badge {
  display: none;
}

/* ==============================
ページトップボタン
============================== */
/* SP */
.pagetop {
  display: none;
  z-index: 1001;
  position: fixed;
  bottom: 30px;
  right: 10px;
}
.pagetop a {
  display: block;
  text-align: center;
}
.pagetop img {
  width: 60%;
}

/* PC */
@media (min-width: 768px) {
  .pagetop {
    z-index: 1001;
    position: fixed;
    bottom: 30px;
    right: 30px;
  }
  .pagetop a {
    display: block;
    text-align: center;
  }
  .pagetop img {
    width: 75%;
  }
}

/* ====================
フッター固定パネル
==================== */
.footer-ad {
  display: block;
  position: fixed;
  width: 100%;
  height: 50px;
  left: 0px;
  bottom: 0px;
  z-index: 100;
  padding: 0 auto;
  background-color: #ffeb3b;
}

.footer-ad-01 {
  float: left;
  width: 50%;
  text-align: center;
  color: #3a3a3a;
  font-size: 15px;
  line-height: 3.2em;
  border-right: #3a3a3a solid 1px;
}

.footer-ad-02 {
  float: right;
  width: 50%;
  text-align: center;
  color: #3a3a3a;
  font-size: 15px;
  line-height: 3.2em;
}

/* ==============================
レスポンシブメニューカスタム
============================== */
.responsive-menu-btn {
  text-align: center;
  opacity: 1;
}
.responsive-menu-btn a {
  font-size: 16px;
  font-weight: 300;
  line-height: 3;
  letter-spacing: 0.04em;
  color: #fff;
  border: 8px solid #000;
  background: #000;
  border-radius: 20px;
}
