@charset "UTF-8";
/*---------------------
	01.def
	02.base
-----------------------*/
/*---------------------
	01.def.css
 CSS初期化のスタイルを記載
-----------------------*/
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
section,
article,
aside,
hgroup,
header,
footer,
nav,
dialog,
figure,
menu,
video,
audio,
mark,
time,
canvas,
details,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  background: transparent;
  box-sizing: border-box;
  color: #000;
  font-size: inherit;
  line-height: 1.8;
}

body {
  overflow-x: hidden;
}

section,
article,
aside,
hgroup,
header,
footer,
nav,
dialog,
figure,
figcaption {
  display: block;
}

*::before,
*::after {
  box-sizing: border-box;
}

input,
select,
textarea {
  vertical-align: middle;
  -webkit-appearance: none;
}

img {
  vertical-align: bottom;
}

ul,
li,
dl,
dt,
dd,
form {
  margin: 0px;
  padding: 0px;
  border: 0px;
  list-style: none;
  letter-spacing: normal;
  /* For IE 6/7 */
  *display: inline;
  *zoom: 1;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

ins {
  /* remember to highlight inserts somehow! */
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  /* markup tables with 'cellspacing="0"' */
  border-collapse: collapse;
  border-spacing: 0;
}

/*Clearfix*/
.clr:after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
}

/*---------------------
	02.base
-----------------------*/
body {
  width: 100%;
  position: relative;
  line-height: 1.8em;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
}

img {
  max-width: 100%;
}

a,
a:link {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  opacity: 0.5;
  transition: all 0.35s ease-in;
}

/*---------------------
フェードインアニメーション
-----------------------*/
.fade-in {
  opacity: 0;
  transition-duration: 1500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/*---------------------
	文字寄せ
-----------------------*/
.alc {
  text-align: center;
}

.all {
  text-align: left;
}

.alr {
  text-align: right;
}

/*---------------------
	余白調整
-----------------------*/
.mt100 {
  margin-top: 100px;
}

.mt80 {
  margin-top: 80px;
}

.mt70 {
  margin-top: 70px;
}

.mt60 {
  margin-top: 60px;
}

.mt40 {
  margin-top: 40px;
}

.mt30 {
  margin-top: 30px;
}

.mt20 {
  margin-top: 20px;
}

/*---------------------
Wordpress デフォルト化
-----------------------*/
/* ウィジェットタイトルを非表示に */
.main-widget-label {
  display: none;
}

/* ----- display:block-none ----- */
.pc {
  display: none;
}

.sp {
  display: block;
}
html {
  font-family: "Shippori Mincho", "Open Sans", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka, "MS PGothic", sans-serif;
}

/* ===== header ===== */
header {
  width: 100%;
  height: 60px;
  padding: 8px 5px;
  position: fixed;
  z-index: 1;
  background: rgba(255, 255, 255, 0.9);
}

.header_inner {
  position: relative;
  z-index: 1;
}

header .header_inner .logobox figure a {
  display: flex;
  align-items: center;
}

header .header_inner .logobox figcaption {
  font-size: 24px;
  line-height: 1.15;
  margin-left: 8px;
}

header .header_inner .logobox figcaption span {
  font-size: 14px;
  line-height: 1;
  display: block;
}

header .header_inner .logobox img {
  height: 40px;
}

/*アイコンのスペース*/
#nav-open {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 55px;
  height: 55px;
  vertical-align: middle;
  position: fixed;
  top: 0;
  right: 0;
}

/*ハンバーガーの形をCSSで表現*/
#nav-open span {
  width: 55px;
  height: 55px;
  position: relative;
}

#nav-open span:before,
#nav-open span:after {
  position: absolute;
  height: 3px;
  border-radius: 3px;
  background: #57575a;
  display: block;
  content: "";
  cursor: pointer;
  right: 5px;
}

#nav-open span:before {
  top: 16px;
  width: 45px;
}

#nav-open span:after {
  bottom: 16px;
  width: 30px;
}

/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #151515;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 70%;
  /*最大幅（お好みで調整を）*/
  height: 100%;
  background: #fff;
  transition: 0.3s ease-in-out;
  transform: translateX(205%);
  transition: all 0.45s ease;
  padding: 70px 20px;
}

.menu_content .hum_logo {
  display: block;
  text-align: center;
  padding-left: 20px;
}

.menu_content ul {
  flex-direction: column;
}

.menu_content ul li {
  margin: 3% auto;
  padding-left: 0;
  border-top: solid 1px #000000;
}
.menu_content ul li br {
  display: none;
}

.menu_content .header_cta_box a {
  display: block;
  border: solid 1px #000;
  padding: 8px 28px 8px 40px;
  text-align: center;
  margin: 12px 0 0;
  position: relative;
  z-index: 0;
}

.menu_content .header_cta_box a::before,
.menu_content .header_cta_box a::after {
  content: "";
  display: block;
  position: absolute;
}

.menu_content .header_cta_box a::after {
  width: 16px;
  height: 13px;
  background: url(../img/ico_arrow_navy.png) no-repeat center/16px auto;
  right: 8px;
  top: calc((100% - 13px) / 2);
}

.menu_content .header_cta_box .header_cta_pdf::before {
  width: 25px;
  height: 29px;
  background: url(../img/ico_pdf.png) no-repeat center/24px auto;
  left: 8px;
  top: calc((100% - 29px) / 2);
}

.menu_content .header_cta_box .header_cta_line::before {
  width: 29px;
  height: 29px;
  background: url(../img/ico_line.png) no-repeat center/29px auto;
  left: 8px;
  top: calc((100% - 29px) / 2);
}

/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: 0.5;
}

#nav-input:checked ~ #nav-content {
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

#nav-input:checked ~ #nav-open {
  z-index: 10000;
}

#nav-input:checked ~ #nav-open span {
  height: 0;
}

#nav-input:checked ~ #nav-open span::before {
  transform: rotate(45deg);
  top: -2px;
  width: 40px;
}

#nav-input:checked ~ #nav-open span::after {
  transform: rotate(-45deg);
  bottom: 0;
  width: 40px;
}

.menu_content .header_link li a {
  font-family: trajan-sans-pro, sans-serif;
  font-weight: 700;
  font-size: 24px;
  padding: 8px;
}

.menu_content .header_link li.contact {
  background-color: #57575a;
}

.menu_content .header_link li.contact a {
  color: #fff;
}

/* ===== ===== ===== =====
footer
===== ===== ===== =====*/
footer {
  margin-top: 60px;
  padding: 20px 3%;
  border-top: solid 1px #27355b;
}

footer .logobox {
  margin: 0 auto;
}

footer .logobox figure {
  max-width: 120px;
  margin: auto;
}

footer .logobox p {
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.2;
}

footer .logobox p span {
  display: block;
  font-size: 0.75rem;
}

footer .cnt_sitemap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer .cnt_sitemap li:not(li.address, .arrow_black li) {
  width: calc((100% - 1rem) / 2);
}

footer .cnt_sitemap li.address {
  width: 100%;
  text-align: center;
}

footer .cnt_sitemap li.address p {
  display: inline-block;
  font-size: 0.875rem;
  color: #7a7a7a;
  text-align: left;
}

footer .cnt_sitemap .arrow_black li {
  line-height: 1.15;
  padding: 8px 12px 8px 2px;
  position: relative;
  z-index: 0;
  border-bottom: solid 1px #000;
}

footer .cnt_sitemap .arrow_black li a {
  font-size: 0.75rem;
  letter-spacing: -0.025em;
}

footer .cnt_sitemap .arrow_black li a::after {
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  background: url(../img/ico_arrow_navy.png) no-repeat center/12px auto;
  position: absolute;
  right: 2px;
  top: calc((100% - 8px) / 2);
}

footer .copyright p {
  font-size: 0.75rem;
  text-align: center;
  line-height: 100%;
  margin-top: 20px;
}

footer .sp_line_link {
  width: 100%;
  height: 45px;
  position: fixed;
  bottom: 0;
  left: 0;
}
footer .sp_line_link .line_btn {
  background: #06c755;
  color: #ffffff;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
}
footer .sp_line_link .line_btn::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url(../img/ico_line.png) no-repeat center/100% auto;
  margin-right: 8px;
}

/* ===== ===== ===== ===== */
/* ===== 共通レイアウト ===== */
/* ===== ===== ===== ===== */
/* ヘッダーが固定なので、その分コンテンツエリア下がる */
.main_content {
  padding-top: 60px;
  position: relative;
  z-index: 0;
}
.main_content .pagetitle h1 {
  font-size: 24px;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-align: center;
  padding: 40px 12px;
  background: url(../img/bg_wh.jpg) no-repeat center/cover;
}
.main_content .pagetitle h1.bg_gray {
  background: url(../img/bg_gray.jpg) no-repeat center/cover;
}
.main_content .section_title h2 {
  font-size: 24px;
  color: #27355b;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.3333333333;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.main_content .section_title h2::after {
  content: "";
  display: block;
  height: 1px;
  background: #27355b;
  flex-grow: 1;
}

.contact {
  margin-top: 60px;
  padding: 60px 3%;
  background: url(../img/bg_contact_sp.jpg) no-repeat center bottom/cover;
}
.contact h2 {
  font-size: 1.5rem;
  line-height: 1.45;
  color: #ffffff;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact h2 .border_ud {
  font-size: 12px;
  color: #ffffff;
  display: block;
  padding: 8px 2px;
  border-style: solid;
  border-color: #ffffff;
  border-width: 1px 0 1px 0;
  margin: 8px auto;
  line-height: 1;
}
.contact .announce {
  text-align: center;
  color: #fff;
  font-weight: 700;
}
.contact .contact_link {
  text-align: center;
  margin: 20px 0 0;
}
.contact .contactbtn {
  width: 94%;
  display: inline-block;
  border: solid 1px #fff;
  background: rgba(255, 255, 255, 0.45);
  padding: 12px 32px;
  min-width: 240px;
  color: #fff;
  position: relative;
  z-index: 0;
  text-align: center;
}
.contact .contactbtn::before,
.contact .contactbtn::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
}
.contact .contactbtn::after {
  width: 16px;
  height: 13px;
  background: url(../img/ico_arrow_wh.png) no-repeat center/16px auto;
  right: 8px;
  top: calc((100% - 13px) / 2);
}
.contact .tel .contactbtn::before {
  width: 21px;
  height: 28px;
  background: url(../img/ico_tel.png) no-repeat center/20px auto;
  left: 8px;
  top: calc((100% - 28px) / 2);
}
.contact .line .contactbtn::before {
  width: 30px;
  height: 30px;
  background: url(../img/ico_line.png) no-repeat center/30px auto;
  left: 8px;
  top: calc((100% - 30px) / 2);
}
.contact .shop .contactbtn::before {
  width: 25px;
  height: 26px;
  background: url(../img/ico_cart.png) no-repeat center/24px auto;
  left: 8px;
  top: calc((100% - 26px) / 2);
}

.ctabox {
  margin: 20px 0 0;
}
.ctabox .btn_bk {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 24px 8px 4px;
  text-align: center;
  background: #000000;
  color: #ffffff;
  padding: 12px 40px 12px 16px;
  letter-spacing: 0.1em;
}
.ctabox .btn_bk::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-style: solid;
  border-color: #ffffff;
  border-width: 1px 1px 0 0;
  position: absolute;
  top: calc((100% - 9px) / 2);
  right: 12px;
  transform: rotate(45deg);
}

.ctabox.center {
  text-align: center;
}

.ctabox.right {
  text-align: right;
}

.ctabox a {
  display: inline-block;
  line-height: 1.25;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 24px 8px 4px;
  text-align: center;
  border: solid 1px #000;
  position: relative;
  z-index: 0;
}

.ctabox a::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-style: solid;
  border-color: #000;
  border-width: 1px 1px 0 0;
  position: absolute;
  top: calc((100% - 9px) / 2);
  right: 8px;
  transform: rotate(45deg);
}

/* ======================================================================= */
/* ================= 投稿ページ・アーカイブページ ============================= */
/* ======================================================================= */
/* タイトル */
.mv_wrap {
  background: url(../img/bg_wh.jpg) no-repeat center/cover;
  padding: 24px 3%;
}

.mv_wrap .mv_title {
  text-align: center;
}

/* Yoast SEO パンクズ  */
#breadcrumbs {
  padding: 6px 0;
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
}

#breadcrumbs .breadcrumbs_cnt {
  display: inline-flex;
  align-items: center;
}

#breadcrumbs a {
  display: inline-block;
  position: relative;
  z-index: 0;
  padding: 0 20px 0 0;
  font-size: 0.875rem;
  color: #000;
}

#breadcrumbs a::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #27355b;
  position: absolute;
  right: 2px;
  top: calc((100% - 6px) / 2);
  transform: rotate(45deg);
}

#breadcrumbs span {
  font-size: 0.875rem;
  color: #27355b;
}

/* ===== 投稿コンテンツ ===== */
.single .pagetitle {
  width: 100%;
  height: auto;
  padding: 40px 3%;
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 0;
}
.single .pagetitle h1 {
  padding: 0;
  font-size: 20px;
}
.single .pagetitle .thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.55;
}
.single .pagetitle .thumbnail figure {
  width: 100%;
  height: 100%;
}
.single .pagetitle .thumbnail figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.single .single_meta {
  display: flex;
  justify-content: space-between;
  width: 94%;
  max-width: 960px;
  margin: 0 auto;
  font-size: 12px;
  letter-spacing: 0.025em;
}
.single .single_content {
  width: 94%;
  max-width: 960px;
  margin: 20px auto 0;
}
.single .content * {
  margin-top: 1em;
  line-height: 1.75;
}
.single .content h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.25;
  text-align: inherit;
  position: relative;
  z-index: 0;
  padding-bottom: 8px;
  border-bottom: solid 2px #7a7a7a;
}
.single .content h2::before {
  content: "";
  display: block;
  width: 180px;
  height: 2px;
  background-color: #27355b;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.single .content h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.25;
  color: #151515;
  padding: 0.65em;
  background-color: #f7f7f7;
  position: relative;
  z-index: 0;
}
.single .content h3::before, .single .content h3::after {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #151515;
  position: absolute;
  z-index: 1;
  left: 0;
}
.single .content h3::before {
  top: 12px;
}
.single .content h3::after {
  bottom: 12px;
}
.single .content h4 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  padding-left: 8px;
  border-left: solid 3px #27355b;
}
.single .content h5 {
  font-size: 15px;
  font-weight: 400;
  position: relative;
  display: inline;
  line-height: 1.4em;
  background: linear-gradient(transparent 55%, #e9eaee 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.single .content h6 {
  font-size: 16px;
  padding: 0.55em;
  font-weight: 400;
  background: #e9eaee;
}
.single .content ol li {
  padding: 10px 8px 0 20px;
  counter-increment: content_ol;
  margin-top: 0;
  position: relative;
}
.single .content ol li::before {
  content: counter(content_ol);
  color: #fff;
  background: #151515;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 17px;
}
.single .content ul li {
  padding: 10px 8px 0 20px;
  margin-top: 0;
  position: relative;
}
.single .content ul li::before {
  content: "";
  background: #27355b;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 19px;
}
.single .content blockquote {
  padding: 16px;
  background: #e9eaee;
}
.single .content blockquote p {
  padding-left: 8px;
  border-left: solid 1px #27355b;
  margin-top: 0;
}
.single .content blockquote cite {
  display: block;
  text-align: right;
  color: #27355b;
  margin-top: 0;
}
.single .content table {
  border-collapse: collapse;
  border: solid 0.5px #27355b;
}
.single .content table tr:nth-child(even) {
  background: #e9eaee;
}
.single .content table td {
  padding: 8px 3px;
  max-width: 1200px;
  margin: 0 auto;
}
.single .content img {
  margin-top: 0;
}
.single .content .wp-block-button__link {
  color: #ffffff;
}

/* =====  ===== アーカイブ =====  ===== */
.archive .archive_content {
  width: 94%;
  max-width: 960px;
  margin: 0 auto;
}
.archive .archive_card {
  width: 100%;
  margin: 20px 0 0;
}
.archive .archive_card:nth-child(1) {
  margin-top: 0;
}
.archive .archive_card .imagebox {
  width: 100%;
  height: auto;
  aspect-ratio: 5/2;
  margin-bottom: 0.5em;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.archive .archive_card .imagebox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.archive .archive_card .imagebox a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.archive .archive_card .post_detail .date {
  font-size: 12px;
  color: #737373;
}
.archive .archive_card .post_detail .category {
  font-size: 12px;
}
.archive .archive_card .post_detail .title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.75;
}
.archive .archive_card .post_detail .desc {
  font-size: 10px;
  color: #737373;
  line-height: 1.3333333333;
}
/* ===== ===== ===== =====
top swiper
===== ===== ===== =====*/
.swiper {
  padding-bottom: 30px;
}

.swiper-slide {
  position: relative;
  z-index: 0;
}

.swiper-slide figure {
  aspect-ratio: 1/1.08;
  margin: 0;
}

.swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-slide .mv_overlay {
  display: block;
  width: 94%;
  height: 94%;
  position: absolute;
  top: 3%;
  left: 3%;
  writing-mode: vertical-rl;
}

.swiper .top_mv_title {
  display: block;
  text-align: left;
  color: #fff;
  font-size: 1.25rem;
}

.swiper .top_mv_en_title {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  font-size: 0.75rem;
  color: #fff;
  position: relative;
  z-index: 0;
  margin-right: 12px;
}

.swiper .top_mv_en_title::after {
  content: "";
  display: block;
  width: 1px;
  flex-grow: 1;
  background: #fff;
  margin-top: 0.5rem;
}

.swiper .top_mv_detail_text {
  font-size: 1rem;
  color: #fff;
  margin-right: 12px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 45px;
  height: 45px;
  background: rgba(170, 153, 124, 0.85);
  padding: 5px;
  border-radius: 50%;
  top: calc(100% - 30px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px;
  font-weight: 500;
}

.swiper-button-next {
  right: auto;
  left: 60px;
}

.swiper-pagination {
  text-align: right;
  padding-right: 15px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: rgb(170, 153, 124);
}

.top h2 {
  font-size: 1.5rem;
  line-height: 1.45;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.top h2.logo_title::before {
  content: "";
  display: block;
  width: 82px;
  height: 50px;
  background: url(../img/logo.png) no-repeat center/98% auto;
}
.top h2 .border_ud {
  font-size: 12px;
  display: block;
  padding: 8px 2px;
  border-style: solid;
  border-color: #000;
  border-width: 1px 0 1px 0;
  margin: 8px auto;
  line-height: 1;
}
.top h2 .border_ud.wh {
  color: #fff;
  border-color: #fff;
}
.top h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
}
.top .en_title {
  display: flex;
  align-items: baseline;
  font-size: 0.75rem;
  margin-top: 12px;
}
.top .en_title::after {
  content: "";
  display: block;
  height: 1px;
  flex-grow: 1;
  background: #000;
  margin-left: 0.5rem;
}
.top .vertical_text {
  writing-mode: vertical-rl;
}

.top_thought {
  background: url(../img/bg_mission_sp.jpg) no-repeat bottom left/cover;
  padding: calc(8% + 30px) 3% 8%;
  margin-top: -30px;
}

.top .cnt_thought li {
  margin: 24px 0 0;
}
.top .cnt_thought .rightbox p {
  font-size: 13px;
  margin-top: 12px;
}

.top .cnt_thought li.leftbox figure {
  aspect-ratio: 4/3;
  overflow-x: hidden;
}

.top .cnt_thought li.leftbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

.top_news {
  padding: 40px 10%;
}

.top_news .news_links {
  padding: 20px 0;
  border-bottom: solid 1px #000;
}
.top_news .news_link {
  margin-top: 12px;
}
.top_news .news_link:nth-child(1) {
  margin-top: 0;
}
.top_news .news_link a {
  display: flex;
  flex-direction: column;
}
.top_news .news_link .date {
  width: 100%;
  text-align: left;
  font-size: 12px;
  color: #737373;
}
.top_news .news_link .title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.top_news .cnt_news .leftbox h2 {
  width: 100%;
  text-align: center;
}

.top_customer {
  margin: 60px 0 0;
  padding: 40px 3%;
  background: url(../img/bg_wh.jpg) no-repeat center/cover;
}

.top .cnt_customer {
  margin-top: 30px;
}

.top .cnt_customer li {
  margin-top: 28px;
}

.top .cnt_customer li figure {
  background: rgba(255, 255, 255, 0.85);
  border: solid 1px #27355b;
  padding: 4% 2%;
  text-align: center;
  margin: auto;
}

.top .cnt_customer li img {
  max-height: 45px;
}

.top .cnt_customer li .customer_name {
  font-weight: 700;
  color: #27355b;
  line-height: 1.4;
  margin-top: 12px;
}

.top .cnt_customer li .customer_detail {
  color: #7a7a7a;
  line-height: 1.45;
}

/* ======================================================================= */
/* ================= 投稿ページ・アーカイブページ ============================= */
/* ======================================================================= */
/* タイトル */
.mv_wrap {
  background: url(../img/bg_wh.jpg) no-repeat center/cover;
  padding: 24px 3%;
}

.mv_wrap .mv_title {
  text-align: center;
}

/* Yoast SEO パンクズ  */
#breadcrumbs {
  padding: 12px 8px;
  width: 100%;
  overflow-x: scroll;
}

#breadcrumbs .breadcrumbs_cnt {
  display: inline-flex;
  align-items: center;
}

#breadcrumbs a {
  display: inline-block;
  position: relative;
  z-index: 0;
  padding: 0 20px 0 0;
  font-size: 0.875rem;
  color: #000;
}

#breadcrumbs a::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: #27355b;
  position: absolute;
  right: 2px;
  top: calc((100% - 6px) / 2);
  transform: rotate(45deg);
}

#breadcrumbs span {
  font-size: 0.875rem;
  color: #27355b;
}
.reason .reason_list {
  width: 94%;
  margin: 40px auto 0;
}
.reason .reason_list ul li {
  margin-top: 40px;
}
.reason .reason_list ul li h2 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.reason .reason_list ul li .en_decolation {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: baseline;
  font-size: 14px;
  letter-spacing: 0.12em;
}
.reason .reason_list ul li .en_decolation::after {
  content: "";
  display: block;
  width: auto;
  height: 1px;
  background: #000000;
  flex-grow: 1;
  margin-right: 0.5em;
}

.higashiyamatsurugi-ika h2 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.055em;
}
.higashiyamatsurugi-ika .mk_gray {
  background-image: linear-gradient(180deg, #ffffff, #e9eaee);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 40%;
}
.higashiyamatsurugi-ika .introduction {
  margin-top: 40px;
  position: relative;
  z-index: 0;
}
.higashiyamatsurugi-ika .introduction .mv_image {
  width: 92%;
  margin-right: auto;
}
.higashiyamatsurugi-ika .introduction .detail {
  width: 92%;
  margin-left: auto;
  background: url(../img/bg_beige.jpg) no-repeat center/cover;
  padding: 40px 4%;
  position: relative;
  z-index: 0;
  top: -40px;
}
.higashiyamatsurugi-ika .introduction .detail::after {
  content: "";
  display: block;
  width: 45%;
  aspect-ratio: 200/308;
  background: url(../img/deco_ika.png) no-repeat center bottom/98% auto;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.higashiyamatsurugi-ika .introduction .detail p {
  margin-top: 12px;
}
.higashiyamatsurugi-ika .thumbnail ul {
  display: flex;
  flex-wrap: wrap;
}
.higashiyamatsurugi-ika .thumbnail ul li {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 33.3333333333%;
  border: solid 1px #ffffff;
}
.higashiyamatsurugi-ika .thumbnail ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.higashiyamatsurugi-ika .summary .detailbox .textbox {
  margin-top: 24px;
  padding: 0 3%;
}
.higashiyamatsurugi-ika .summary .detailbox .textbox p {
  padding: 0 0 0 12px;
  border-left: solid 1px #27355b;
  margin-top: 12px;
}
.higashiyamatsurugi-ika .summary .detailbox .imagebox {
  margin-top: 24px;
}
.higashiyamatsurugi-ika .summary .detailbox .imagebox figure {
  margin: 0;
}
.higashiyamatsurugi-ika .gallery ul {
  display: flex;
  flex-wrap: wrap;
}
.higashiyamatsurugi-ika .gallery ul li {
  width: 50%;
  border: solid 1px #ffffff;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.higashiyamatsurugi-ika .gallery ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.higashiyamatsurugi-ika .gallery ul li:nth-child(1) {
  grid-area: 1/1/3/2;
}
.higashiyamatsurugi-ika .gallery ul li:nth-child(2) {
  grid-area: 1/2/2/3;
}
.higashiyamatsurugi-ika .gallery ul li:nth-child(3) {
  grid-area: 1/3/2/4;
}
.higashiyamatsurugi-ika .gallery ul li:nth-child(4) {
  grid-area: 2/2/3/3;
}
.higashiyamatsurugi-ika .gallery ul li:nth-child(5) {
  width: 100%;
  aspect-ratio: 4/3;
}
.higashiyamatsurugi-ika .mission {
  background: url(../img/bg_beige.jpg) no-repeat center/cover;
  padding: 40px 3% 0;
  position: relative;
  z-index: -1;
}
.higashiyamatsurugi-ika .mission::after {
  content: "";
  display: block;
  width: 100%;
  height: 35%;
  background: #ffffff;
  border-top: solid 1px #000000;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.higashiyamatsurugi-ika .mission .headline h2 {
  text-align: center;
}
.higashiyamatsurugi-ika .mission .headline h2 .mk_gray {
  display: inline-block;
}
.higashiyamatsurugi-ika .mission .content {
  width: 86%;
  padding: 5%;
  margin: 24px auto 0;
  background: #ffffff;
  border: solid 1px #000000;
  position: relative;
  z-index: 0;
}
.higashiyamatsurugi-ika .mission .content::after {
  content: "";
  display: block;
  width: calc(100% - 40px);
  height: calc(100% + 2px);
  background: #ffffff;
  position: absolute;
  left: 20px;
  top: -1px;
  z-index: -1;
}

.company section:not(.pagetitle) {
  width: 94%;
  max-width: 720px;
  margin: 40px auto 0;
}
.company .outline {
  margin-top: 0;
}
.company table {
  width: 100%;
  font-size: 14px;
  line-height: 2;
}
.company table tr {
  padding: 12px 0;
  border-bottom: solid 1px #27355b;
}
.company table tr.combineLines {
	border-bottom: 0px;
	padding: 12px 0 0 0;
}
.company table th {
  text-align: left;
  color: #27355b;
  font-weight: 500;
  letter-spacing: 0.05em;
  min-width: 7.5em;
}
.company table tr.combineLines th {
	padding-top: 8px;
}
.company table td {
  padding: 8px 4px;
}
.company table tr.combineLines td {
  padding: 8px 4px 0 4px;
}
.company .g_map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}
.company .trafic {
  font-size: 14px;
}
.company .story_name_content figure {
  width: 60%;
  max-width: 240px;
  height: auto;
  margin: 0 auto 32px;
}

.privacy .privacy_content {
  width: 94%;
  max-width: 720px;
  margin: 40px auto 0;
}
.privacy p {
  font-size: 14px;
  line-height: get_lh(16, 32);
}
.privacy .privacy_item {
  margin-top: 40px;
}
.privacy .privacy_title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: get_lh(16, 32);
}
.privacy .headline {
  font-weight: 500;
  color: #27355b;
  line-height: 1.75;
}
.privacy ul li {
  font-size: 14px;
  position: relative;
  z-index: 0;
  padding: 8px 0 0 12px;
}
.privacy ul li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border: solid 1px #27355b;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 18px;
}
.privacy ol li {
  font-size: 14px;
  position: relative;
  z-index: 0;
  padding: 8px 0 0 12px;
  list-style: decimal-leading-zero;
}
.privacy .address {
  margin-top: 24px;
  background: #e9eaee;
  padding: 3% 5%;
}
.privacy .address p {
  text-align: center;
}
@media only screen and (min-width: 821px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  footer .sp_line_link {
    display: none;
  }
  .main_content .section_title h2 {
    margin-bottom: 40px;
  }
  .contact .contact_links {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 960px;
    margin: 40px auto 0;
	justify-content: center;
  }
  .contact .contact_link {
    width: calc((100% - 40px) / 3);
    margin-top: 0;
    margin-left: 20px;
  }
  .contact .contact_link:nth-child(3n+1) {
    margin-left: 0;
  }
  .contact .contactbtn {
    width: 100%;
    min-width: 100%;
  }
  .single .pagetitle {
    padding: 80px 0 40px;
  }
  .single .pagetitle h1 {
    max-width: 960px;
    margin: auto;
  }
  .single .single_content {
    margin-top: 40px;
  }
  .single .content h2 {
    font-size: 24px;
  }
  .single .content h3 {
    font-size: 20px;
  }
  .single .content h4 {
    font-size: 18px;
  }
  .single .content h5 {
    font-size: 16px;
  }
  .archive .archive_list {
    width: 94%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
  }
  .archive .archive_card {
    width: calc((100% - 60px) / 3);
    margin-top: 20px;
    margin-left: 30px;
  }
  .archive .archive_card:nth-child(3n+1) {
    margin-left: 0;
  }
  .archive .archive_card:nth-child(1) {
    margin-top: 20px;
  }
  .archive .archive_card .imagebox {
    aspect-ratio: 5/3;
  }
  .top_news .news_link a {
    flex-direction: row;
  }
  .top_news .news_link .date {
    width: 120px;
  }
  .top_news .news_link .title {
    -webkit-line-clamp: 2;
  }
  .top .cnt_customer {
    margin-top: 40px;
  }
  .company section:not(.pagetitle) {
    margin-top: 80px;
  }
}
@media screen and (min-width: 960px) {
  .main_content .pagetitle h1 {
    height: 320px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
  }
  .contact {
    margin-top: 100px;
  }
  .ctabox {
    margin-top: 40px;
  }
  .ctabox .btn_bk {
    font-size: 20px;
  }
  .reason .reason_list {
    margin-top: 80px;
  }
  .reason .reason_list ul {
    display: flex;
    justify-content: flex-start;
    max-width: 1200px;
    margin: auto;
  }
  .reason .reason_list ul li {
    margin-top: 0;
    width: calc((100% - 60px) / 3);
    margin-left: 30px;
  }
  .reason .reason_list ul li.point02 {
    margin-top: 30px;
  }
  .reason .reason_list ul li.point03 {
    margin-top: 60px;
  }
  .higashiyamatsurugi-ika h2 {
    font-size: 24px;
    letter-spacing: 0.12em;
  }
  .higashiyamatsurugi-ika .introduction {
    max-width: 1200px;
    margin: 80px auto 0;
  }
  .higashiyamatsurugi-ika .introduction .mv_image {
    width: 69%;
    max-width: 820px;
    aspect-ratio: 820/320;
    overflow: hidden;
  }
  .higashiyamatsurugi-ika .introduction .mv_image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom center;
    object-position: bottom center;
  }
  .higashiyamatsurugi-ika .introduction .detail {
    width: 65%;
    top: -80px;
  }
  .higashiyamatsurugi-ika .introduction .detail h2 {
    text-align: center;
  }
  .higashiyamatsurugi-ika .introduction .detail::after {
    width: 200px;
    right: -20px;
    bottom: -12px;
  }
  .higashiyamatsurugi-ika .thumbnail ul {
    max-width: 1200px;
    margin: auto;
  }
  .higashiyamatsurugi-ika .thumbnail ul li {
    width: 16.6666666667%;
    aspect-ratio: 200/160;
  }
  .higashiyamatsurugi-ika .summary .detailbox {
    display: flex;
    max-width: 1200px;
    margin: 80px auto 0;
  }
  .higashiyamatsurugi-ika .summary .detailbox .textbox {
    width: 50%;
    padding: 0 60px 0 0;
    margin-top: 0;
  }
  .higashiyamatsurugi-ika .summary .detailbox .imagebox {
    width: 50%;
  }
  .higashiyamatsurugi-ika .summary .detailbox .imagebox figure {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
  }
  .higashiyamatsurugi-ika .summary .detailbox .imagebox figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .higashiyamatsurugi-ika .gallery ul {
    max-width: 1200px;
    margin: 80px auto 0;
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .higashiyamatsurugi-ika .gallery ul li {
    width: auto;
    aspect-ratio: 4/3;
  }
  .higashiyamatsurugi-ika .gallery ul li:nth-child(5) {
    grid-area: 2/3/3/4;
  }
  .higashiyamatsurugi-ika .mission {
    margin-top: -105px;
    padding: 180px 0 0;
  }
  .higashiyamatsurugi-ika .mission .content {
    max-width: 960px;
    margin: 40px auto 0;
  }
}
@media only screen and (min-width: 1080px) {
  header {
    height: auto;
    padding: 16px 8px 0 8px;
  }
  .header_inner {
    display: flex;
    justify-content: space-between;
    margin: auto;
  }
  .logobox {
    width: 180px;
  }
  .logobox figure a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  header .header_inner .logobox img {
    height: 72px;
    width: auto;
  }
  header .header_inner .logobox figcaption {
    text-align: center;
    margin: 20px 0 0;
    line-height: 1.45;
  }
  .nav-unshown {
    display: none;
  }
  #nav-open {
    display: none;
  }
  #nav-content {
    display: block;
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    background: transparent;
  }
  .header_links {
    display: flex;
  }
  .header_links .page_link {
    display: flex;
    flex-direction: row;
  }
  .menu_content ul li {
    writing-mode: vertical-rl;
    margin-right: 32px;
    margin: 0 32px 0 0;
    border: 0;
  }
  .menu_content ul li br {
    display: block;
  }
  .menu_content ul li a {
    display: inline-block;
    padding-top: 12px;
    position: relative;
    z-index: 0;
  }
  .menu_content ul li a::before {
    content: "";
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header_links .header_cta_box a {
    margin: 0;
  }
  .menu_content .header_cta_box .header_cta_line {
    margin-top: 8px;
  }
  .main_content {
    padding-top: 160px;
  }
  footer .cnt_sitemap {
    margin-top: 20px;
  }
  footer .cnt_sitemap li:not(li.address, .arrow_black li),
  footer .cnt_sitemap li.address {
    width: 25%;
    padding: 0 2%;
    margin: 0;
  }
  /* ===== 共通 ===== */
  h2 {
    font-size: 2rem;
  }
  /* ===== ===== ===== ===== */
  /* ===== === 投稿 === ===== */
  /* ===== ===== ===== ===== */
  .content h2 {
    font-size: 32px;
  }
  .content h3 {
    font-size: 28px;
  }
  .content h4 {
    font-size: 24px;
  }
  .content h5 {
    font-size: 20px;
  }
  .swiper .top_mv_title {
    font-size: 3rem;
  }
  .swiper .top_mv_detail_text {
    font-size: 1.5rem;
  }
  /* ===== 共通 ===== */
  h2 {
    font-size: 2rem;
  }
  .top_thought {
    background: url(../img/bg_mission.jpg) no-repeat center/cover;
  }
  .top_thought .cnt_inner {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .top_thought .cnt_thought {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 0;
  }
  .top_news .cnt_inner {
    max-width: 1080px;
    margin: auto;
  }
  .top_news .cnt_news {
    display: flex;
    justify-content: space-between;
  }
  .top_news .cnt_news {
    align-items: stretch;
  }
  .top_news .cnt_news .leftbox {
    width: 300px;
    display: flex;
    flex-direction: column;
    padding: 8px 0 0;
  }
  .top_news .cnt_news .leftbox .ctabox {
    margin-top: 20px;
  }
  .top_news .cnt_news .rightbox {
    width: calc(100% - 300px);
  }
  .top_customer .cnt_inner {
    max-width: 1200px;
    margin: auto;
  }
}
@media only screen and (min-width: 1400px) {
  .header_links .header_cta_box {
    display: flex;
  }
  .header_links .header_cta_box a {
    height: 48px;
  }
  .menu_content .header_cta_box .header_cta_line {
    margin: 0 0 0 8px;
  }
  .swiper-slide .mv_overlay {
    width: 82%;
    height: 75%;
    top: 5%;
    left: 9%;
  }
  .swiper .top_mv_title {
    font-size: 3.5vw;
    line-height: 1.25;
  }
  .swiper .top_mv_en_title {
    font-size: 0.95vw;
  }
  .swiper .top_mv_detail_text {
    font-size: 1.6vw;
  }
}
@media screen and (min-width: 1080px) {
  .top .cnt_thought li {
    width: calc((100% - 40px) / 2);
  }
  .top .cnt_thought .rightbox p {
    font-size: 14px;
  }
  .top .cnt_thought li.leftbox figure {
    aspect-ratio: 5/4;
  }
  .top_news {
    padding: 80px 3%;
  }
}
@media only screen and (min-width: 768px) {
  .swiper-slide figure {
    aspect-ratio: 3/2;
  }
  .swiper .top_mv_title {
    font-size: 2rem;
  }
  .swiper .top_mv_detail_text {
    font-size: 1.25rem;
  }
  .top_news .cnt_news .rightbox {
    text-align: left;
	  -webkit-line-clamp: 2;
  }
  .top_customer {
    margin-top: 20px;
  }
  .top .cnt_customer {
    display: flex;
  }
  .top .cnt_customer li {
    width: calc((100% - 40px) / 3);
    margin-left: 20px;
  }
  .top .cnt_customer li:nth-child(3n+1) {
    margin-left: 0;
  }
}