@charset "UTF-8";

/*--------------------------------------------------------
テンプレート[beginnt] 共通のスタイル
テンプレートのベーススタイルをバージョンアップしていく
headで読み込み

BreakPoint
Extra extra large	1600px
Extra large	1200px以上
Large	769px〜1024px（iPad Proまで）
Medium	421px〜768px（iPadまで）
Small 600px以下（iPhone）
--------------------------------------------------------*/


/* =======================================
　全体レイアウト
======================================= */

html {
  font-size: 62.5%;
  /*=10px*/
}

#container {
  background: transparent;
}

@media screen and (max-width: 768px) {
  #container {
    overflow: hidden;
  }
}




/* =======================================
　フォント
======================================= */

/*------- 共通フォント -------*/
/*iPhone*/
body {
  -webkit-text-size-adjust: 100%;
}

body,
p,
td,
li,
dt,
dd {
  color: var(--color-primary-font-main) !important;
  font-family: var(--type-primary-font) !important;
  font-size: var(--size-primary-font) !important;
  line-height: var(--lh-primary-font) !important;
}

main p {
  margin-bottom: var(--main-text-margin);
}

#global-footer,
#global-footer p,
#global-footer td,
#global-footer li,
#global-footer dt,
#global-footer dd {
  color: var(--color-primary-font-footer) !important;
}

#footer-bottom,
#footer-bottom p,
#footer-bottom td,
#footer-bottom li,
#footer-bottom dt,
#footer-bottom dd {
  color: var(--color-primary-font-footerbottom) !important;
}

#wpadminbar,
#wpadminbar p,
#wpadminbar li {
  color: #FFF !important;
}


/*リンク*/
a,
a:link,
a:visited {
  color: var(--color-primary-link) !important;
  text-decoration: underline !important;
  transition: all .5s;
}

#wpadminbar a {
  color: #CCC !important;
}

a:hover,
#global-footer a:hover {
  text-decoration: none !important;
}

main ul {
  padding: 2rem;
}



/* =======================================
　見出し
======================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-primary-heading);
  font-family: var(--type-primary-font);
  font-weight: bold;
  line-height: var(--lh-primary-heading);
  font-feature-settings: "palt";
  text-align: left;
}

h1 {
  font-size: var(--size-h1);
  letter-spacing: var(--ls-h1);
  margin-bottom: var(--main-h1-margin);
  padding: 0 !important;
}

h2 {
  font-size: var(--size-h2);
  letter-spacing: var(--ls-h2);
  margin: calc(var(--main-h2-margin) * 2) 0 var(--main-h2-margin);
}

h3 {
  font-size: var(--size-h3);
  letter-spacing: var(--ls-h3);
  margin: calc(var(--main-h3-margin) * 2) 0 var(--main-h3-margin);
}

h4 {
  font-size: var(--size-h4);
  margin: calc(var(--main-heading-margin) * 2) 0 var(--main-heading-margin);
}

h5 {
  font-size: var(--size-h5);
  margin: calc(var(--main-heading-margin) * 2) 0 var(--main-heading-margin);
}

h6 {
  font-size: var(--size-h6);
  margin: calc(var(--main-heading-margin) * 2) 0 var(--main-heading-margin);
}


@media screen and (max-width: 600px) {
  h1 {
    font-size: var(--size-h1-SP) !important;
  }

  h2 {
    font-size: var(--size-h2-SP) !important;
  }

  h3 {
    font-size: var(--size-h3-SP) !important;
  }

  h4 {
    font-size: var(--size-h4-SP) !important;
  }

  h5 {
    font-size: var(--size-h5-SP) !important;
  }

  h6 {
    font-size: var(--size-h6-SP) !important;
  }
}


/*------ 検索結果ページ大見出し -----*/
/* 検索結果あり・なし */
.pageTitle {
  background: var(--color-gray01);
  font-size: var(--size-h3);
  display: block;
  padding: 1rem 0;
  text-align: center;
}

.pageTitle:after,
.pageTitle:before {
  content: " ";
  display: block;
  line-height: 0;
}

.pageTitle:after {
  clear: both;
  content: " ";
  display: block;
}

@media screen and (max-width:768px) {
  .pageTitle {
    margin-top: 5rem;
    margin-bottom: 3rem;
    padding: 2rem;
  }

  h1.pageTitle {
    font-size: var(--size-h3-SP) !important;
  }

  h2.search-title {
    font-size: var(--size-h4-SP) !important;
  }
}


/*アーカイブページ*/
.pageTitle.archive {
  padding: 1rem;
}

h1.main-title.archive {
  font-size: var(--size-h3-SP) !important;
  text-align: center;
  margin-bottom: 0;
}

/*------ 検索結果ページ中見出し -----*/
/*検索キーワード*/
h2.search-title {
  background: var(--color-gray01);
  font-size: var(--size-h4);
  letter-spacing: 0;
  margin: 1rem 0 4rem;
  padding: 1rem 2rem;
}

h2.search-title:before {
  content: "検索キーワード：";
}



/*------ サイドバー -----*/
/*アーカイブ見出し*/
section.archive h2 {
  margin: 0;
}


/* =======================================
　ヘッダーエリア
======================================= */

/*ヘッダー背景色*/
header,
#global-header {
  background: #FFF;
}

header {
  position: relative;
  z-index: 2;
}


/*------- グローバルヘッダー -------*/
#global-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 0 0 2rem;
  position: relative;
  z-index: 100;
  box-sizing: border-box;
}


@media screen and (max-width: 768px) {
  #global-header {
    justify-content: flex-start;
    padding: 0 !important;
  }
}




/* =======================================
　ロゴエリア
======================================= */

/*----- ロゴ -----*/

/* ロゴエリア枠 */
#logo-area {
  margin: 1.5rem 0;
  width: 100%;
  max-width: 300px;
}

@media screen and (max-width: 768px) {
  #logo-area {
    display: flex;
    position: absolute;
    z-index: 10000;
    flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  #logo-area {
    max-width: calc(100% - 100px);
  }
}





/* ロゴ */
#global-header .logo,
#global-header .logo img {
  height: auto;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #global-header .logo {
    padding: 6rem 0 0 1rem;
    width: 220px;
  }
}

@media screen and (max-width: 600px) {
  #global-header .logo {
    width: 100%;
  }
}

/* iPhoneのみ */
@media screen and (max-width: 768px) {

  .iphone #global-header .logo,
  .ipad #global-header .logo {
    padding: 3rem 0 0 1rem;
  }
}



/*----- タグライン -----*/
#tagline p {
  color: var(--color-gray05) !important;
  font-size: 1.3rem !important;
  line-height: 1 !important;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #tagline {
    padding-left: 1rem;
  }
}




/* =======================================
　ナビエリア（ヘッダーナビ＆サーチBOX）
======================================= */

/*----- ヘッダーナビ -----*/
#nav-area {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: calc(100% - 180px);
  padding: 1rem;
  width: 100%;
}

nav#top-nav ul li a {
  text-decoration: none !important;
  color: #232323 !important;
  font-size: 1.3rem;
}



/* PC */
@media screen and (min-width: 769px) {
  .stellarnav>ul {
    background: transparent;
    display: flex;
    justify-content: flex-end;
  }

  .stellarnav ul li li a {
    background: rgba(255, 255, 255, .5);
  }

  .stellarnav ul li li li a {
    background: rgba(255, 255, 255, .7);
  }
}


/* Menu文字（モバイル表示） */
.stellarnav.mobile a.menu-toggle.full {
  background: rgba(255, 255, 255, .75);
}

.stellarnav.mobile a.menu-toggle.full i.fa.fa-bars,
.stellarnav.mobile a.menu-toggle.full {
  color: #454545 !important;
}



/* mobileメニュー */
.stellarnav.mobile ul li a {
  background: rgba(255, 255, 255, .6);
  border-bottom: 1px solid #FFF;
}

.stellarnav.mobile ul li li a {
  background: rgba(255, 255, 255, .7.5);
}

.stellarnav.mobile ul li li li a {
  background: rgba(255, 255, 255, .9);
}



/*CLOSED MENU*/
nav#top-nav.stellarnav ul li a.close-menu {
  color: #FFF !important;
  border-bottom: none !important;
}

.stellarnav.mobile a.close-menu {
  background: rgba(0, 0, 0, .95) !important;
}


@media screen and (max-width: 768px) {
  #nav-area {
    padding: 0;
  }
}




/* =======================================
　メインビジュアル
======================================= */

#main-visual {
  overflow: hidden;
  padding: 0;
  margin: 0 0 -1rem;
}

.page #main-visual img,
.single #main-visual img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
}

.page #main-visual img,
.single #main-visual img {
  height: 35rem;
  margin-right: 30rem;
}

.home #main-visual img {
  height: 63rem;
}



@media screen and (max-width: 600px) {

  .page #main-visual img,
  .single #main-visual img {
    height: 50rem;
  }
}


#main-visual-inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 90%;
}


/* ビジュアルロゴ */
#visual-logo {
  max-width: 80vw;
  opacity: .85;
}

#visual-logo img {
  width: 100%;
  height: auto !important;
}


/*メインビジュアル内大見出し*/
#main-visual-inner h1 {
  font-size: 3rem;
  color: #FFF;
  text-shadow: rgba(0, 0, 0, .2) 1px 1px 1px;
  margin-top: 1rem;
}


@media screen and (max-width:768px) {
  #main-visual-inner h1 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 600px) {

  #main-visual-inner h1 {
    display: flex;
    flex-direction: column;
    font-size: 1.4rem;
    text-align: center;
  }
}


/*----- 固定ページメインビジュアル -----*/
#main-visual img {
  position: relative;
  z-index: 1;
}


/* =======================================
　コンテンツエリア
======================================= */

#content {
  background: #FFF;
  position: relative;
  z-index: 1;
}

#content-inner {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1000px;
  padding: 1rem 5rem 4rem;
  position: relative;
  width: 100%;
  z-index: 10;
}

/* 2カラム */
.double-col #content-inner {
  max-width: 1280px;
}

/* 1カラム1500px */
.wide1500 #content-inner {
  max-width: 1500px;
}

/* 1カラムフルサイズ */
.wide-full #content-inner {
  max-width: 100%;
}

/* 1カラム1500px */
.wide1500 #content-inner,
.page-template-template-max1500 #content-inner {
  max-width: 1500px;
}

/* 1カラムフルサイズ */
.wide-full #content-inner,
.page-template-template-fullsize #content-inner {
  max-width: 100%;
  padding: 0;
}



@media screen and (max-width: 768px) {
  #content-inner {
    flex-direction: column;
    flex-wrap: wrap;
    padding: 4rem 2rem;
  }
}

@media screen and (max-width: 600px) {
  #content-inner {
    padding: 2rem 1.5rem;
  }
}




/* =======================================
　メインエリア
======================================= */

main {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: relative;
  width: 72%;
  z-index: -1;
  min-height: 45vh;
  /*min-height・・・空ページのための目安値を入れる（正しくは100vh-ヘッダー高-メインビジュアル高-フッター高）*/
}

.archive main {
  min-height: 60vh;
  /*min-height・・・空ページのための目安値を入れる（正しくは100vh-ヘッダー高-メインビジュアル高-フッター高）*/
}

.single-col main,
.search main {
  width: 100%;
}

.search main {
  min-height: calc(100vh - 50rem);
}


@media screen and (max-width: 768px) {
  main {
    padding: 0;
  }
}




/* ホームページ */
.home main,
.page-template-default main {
  width: 100%;
}


/* 固定ページ（デフォルト） */
.page-template-default main {
  margin: 0 auto;
}

/*404ページ*/
.error404 main {
  width: 100%;
  text-align: center;
  min-height: calc(100vh - 400px);
}

h1.pageTitle.not-found {
  margin-bottom: 4rem;
}



@media screen and (max-width: 768px) {
  main {
    width: 100%;
  }
}




/* =======================================
　サイドエリア
======================================= */

aside {
  margin: 0;
  position: relative;
  width: 25%;
  z-index: 1;
}

aside #side {
  box-sizing: border-box;
  height: 100%;
  padding: 0 2rem;
}


@media screen and (max-width: 768px) {
  aside {
    margin: 0;
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  aside #side {
    padding: 0 1.5rem;
  }
}


/* サイドエリアのフローコンテンツ */
#flow-area {
  box-sizing: border-box;
  height: auto;
  padding: 0 0 1.5rem 0;
  position: relative;
  top: 1rem;
  width: 100%;
}

.side-widget.set-top.register-widget {
  margin-bottom: 2rem;
}


/* サイドエリアの固定コンテンツ */
#fixed-area {
  box-sizing: border-box;
  height: auto;
  padding: 0 0 1.5rem 0;
  position: sticky;
  top: 1rem;
  width: 100%;
}



/*------ サイドエリアのアーカイブ ------*/
section.archive {
  border: 1px solid #CCC;
  margin-bottom: 30px;
}

section.archive:last-child {
  margin-bottom: 0;
}

section.archive .archive_title {
  background: var(--color-gray01);
  border-bottom: 1px solid #CCC;
  font-size: var(--size-h5) !important;
}

h2.archive_title {
  margin-bottom: 0;
  padding: 1rem;
}

@media only screen and (max-width:767px) {
  section.archive .archive_title {
    font-size: var(--size-h5-sp) !important;
  }
}

section.archive ul.archive_list ul {
  border-top: 1px solid #CCC;
}

section.archive .archive_list li {
  border-bottom: 1px solid #CCC;
  line-height: 1;
  margin: 0;
  font-size: 1.3rem;
}

section.archive ul.archive_list ul li a:before {
  content: "─";
  padding-right: 1rem;
}

section.archive .archive_list li:last-child {
  border-bottom: none;
}

section.archive ul {
  list-style: none;
}

section.archive .archive_list li a {
  display: block;
  padding: 1rem 2rem 1rem 1rem;
  position: relative;
  text-decoration: none !important;
  transition: all 300ms 0s ease;
  line-height: 1.35;
  color: var(--color-primary-font-main) !important;
  font-size: var(--size-primary-fontsmall);
}

section.archive .archive_list li a:after {
  color: #BBB;
  content: "";
  display: block;
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  font-weight: 900;
  margin-top: -.5em;
  position: absolute;
  right: 10px;
  top: 50%;
}

@media only screen and (max-width:767px) {
  section.archive .archive_list li a:after {
    font-size: 1.4rem;
  }
}

section.archive .archive_list li a:hover {
  background-color: rgba(0, 0, 0, .1);
}







/* =======================================
　フッターエリアレイアウト
======================================= */

footer {
  position: relative;
  z-index: 0;
}

#footer-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 3rem;
  background: #000;
}


/*------ フッターナビ ------*/
nav#footer-nav ul li a {
  color: var(--color-gray02) !important;
}


/*------ グローバルフッター ------*/
footer #global-footer {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1500px;
  min-height: 100px;
  padding: 2rem;
  width: 100%;
}

@media screen and (max-width: 600px) {
  footer #global-footer {
    padding: 5rem 1.5rem;
  }
}



/*------ フッターボトム ------*/
footer #footer-bottom {
  box-sizing: border-box;
  padding: 1rem;
  text-align: center;
  width: 100%;
  background: #000;
}

/* ウィジェット */
.footer-bottom-widget {
  padding: 0 !important;
  margin: 0;
}





/*------ 上に戻るボタン ------*/
#pagetop-btn {
  display: block;
  width: 100%;
}

.pagetop a {
  background: var(--color-primary01);
  color: #FFF !important;
  cursor: pointer;
  display: block;
  font-size: 1.2rem !important;
  font-weight: bold;
  line-height: 1;
  padding: 15px 0;
  text-align: center;
  width: 100%;
  text-decoration: none !important;
}

@media only screen and (max-width:767px) {
  .pagetop a {
    font-size: 1.2rem;
  }
}

.pagetop a:hover {
  opacity: .7;
}

.pagetop a i,
.pagetop a svg {
  font-size: 1.5rem;
  margin: 5px 5px 0 0;
}

@media only screen and (max-width:767px) {

  .pagetop a i,
  .pagetop a svg {
    font-size: 1.5rem;
  }
}



/* =======================================
　カラムレイアウト（Flex）
======================================= */

/*----- コンテンツFlexレイアウト外枠 -----*/
.row {
  display: flex;
  flex-wrap: wrap;
}



/*----- PC列パターン -----*/
/* 3列 */
.col-pc3 {
  margin-right: 5%;
  width: 30%;
}

.col-pc3:nth-of-type(3n) {
  margin-right: 0;
}



/* 2列 */
.col-pc2 {
  margin-right: 2%;
  width: 49%;
}

.col-pc2:nth-of-type(2n) {
  margin-right: 0;
}



/*----- モバイル列パターン -----*/
@media screen and (max-width: 480px) {

  /* 1列 */
  .col-sp1 {
    margin-right: 0;
    width: 100%;
  }
}



/* =======================================
　フルサイズコンテンツ（シングルカラム専用）
======================================= */

.fullsize-layout {
  background: -o-repeating-linear-gradient(135deg, #FFF 0px, #FFF 2px, #F9F9F9 2px, #F9F9F9 4px);
  background: repeating-linear-gradient(-45deg, #FFF 0px, #FFF 2px, #F9F9F9 2px, #F9F9F9 4px);
  margin: 0 calc(50% - 50vw);
  padding: 5rem calc(50vw - 50%);
}





/* =======================================
　検索フォーム
======================================= */
/*----- 検索ボックス -----*/
#seach-area {
  margin: .5rem 2.5rem;
}

@media screen and (max-width: 768px) {
  #seach-area {
    display: none;
  }
}

#seach-area .header_search {
  width: 100％;
  display: flex;
  align-items: center;
  position: relative;
  *zoom: 1;
}

#seach-area .header_search:after,
#seach-area .header_search:before {
  content: " ";
  display: block;
  line-height: 0;
}

#seach-area .fa-search:before {
  color: #9A9A9A;
}

#seach-area .header_search:after {
  content: " ";
  display: block;
  clear: both;
}

#seach-area .header_search input {
  width: 270px;
  padding: 10px;
  border-radius: 5px 5px 5px 5px !important;
  font-size: 1.2rem;
  border: 1px solid #9A9A9A;
}

@media only screen and (max-width:767px) {
  #seach-area .header_search input {
    font-size: 1.2rem;
  }
}

#seach-area .header_search input::placeholder {
  color: rgba(0, 0, 0, .3);
}

#seach-area .header_search i,
#seach-area .header_search svg {
  position: absolute;
  right: 1rem;
  color: #454545;
}




/* =======================================
　問い合わせフォーム
======================================= */

/* 入力枠 */
.form .form_row {
  display: flex;
  padding: 15px;
  width: 100%;
}

.form .form_row .form_label {
  font-size: 1.4rem;
  width: 200px;
  ;
}

@media screen and (max-width:767px) {
  .form .form_row {
    flex-direction: column;
  }

  .form .form_row .form_label {
    font-size: 1.4rem;
  }
}

.form .form_row .form_label span {
  border: 1px solid #0293AD;
  color: #0293AD;
  font-size: 1.2rem;
  margin-left: 20px;
  padding: 2px 5px;
}

@media screen and (max-width:767px) {
  .form .form_row .form_label span {
    font-size: 1.2rem;
  }
}

.form .form_row .form_content {
  width: calc(100% - 200px);
}

.form .form_row .form_content input,
.form .form_row .form_content textarea {
  border: 1px solid #898989;
  border-radius: 5px 5px 5px 5px !important;
  padding: 15px 10px;
  width: 100%;
  ;
}

.form .form_row .form_content textarea {
  min-height: 200px;
}

.form .form_row .form_content.form_content-tel input {
  width: 6rem;
}

.form .form_row-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width:767px) {
  .form .form_content {
    margin-top: 1.5rem;
  }

}


@media screen and (max-width: 600px) {
  .form .form_row .form_content {
    width: 100%;
  }
}



/* 送信ボタン */
input.btn.btn-send {
  background: #454545;
  color: #FFF;
  padding: 1rem 2rem;
  transition: .8s;
}

input.btn.btn-send:hover {
  opacity: .7;
}





/* =======================================
　ブログ投稿アーカイブ
======================================= */

/*------ 共通項目 ------*/
/* サムネイルトリミング */
.news_pic img {
  display: block;
  height: 20rem !important;
  max-width: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}


/* 記事タイトル */
h2.news_title {
  margin: 1rem 0;
}


/* 概要文 */
.news_desc p {
  font-size: 1.2rem !important;
  line-height: 1.5 !important;
  color: #888 !important;
  margin: 0 0 1.5rem !important;
}

.news_desc a {
  text-decoration: none !important;
}





/*------ 投稿レイアウト ------*/
article.news {
  margin-bottom: 5rem;
  width: 100%;
}

article.news a {
  display: inline-block;
  text-decoration: none !important;
}

article.news a:hover {
  opacity: .7;
}

article.news .news_pic img {
  display: block;
  height: auto;
  max-width: 100%;
}

article.news .news_meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 0;
}

article.news .news_meta ul {
  align-items: center;
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}

article.news .news_meta ul li {
  padding-right: 1rem;
}

article.news .news_meta ul li a {
  background: var(--color-gray05);
  color: #FFF !important;
  display: inline-block;
  font-size: var(--size-primary-fontsmall);
  line-height: 1;
  padding: .5rem 1rem;
  text-decoration: none !important;
}


@media only screen and (max-width:767px) {
  article.news .news_meta ul li a {
    font-size: 1.2rem;
  }
}

article.news .news_title {
  font-size: var(--size-h5);
  line-height: 1.2;
}

article.news .news_title a {
  text-decoration: none !important;
  color: var(--color-primary-heading) !important;
}


@media only screen and (max-width:767px) {
  article.news .news_title {
    font-size: var(--size-h5-SP);
  }
}

article.news .news_titleBorder {
  border-left: 2px solid #CCC;
  font-size: 2.4rem;
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
}

@media only screen and (max-width:767px) {
  article.news .news_titleBorder {
    font-size: 1.8rem;
  }
}

article.news .news_time {
  font-size: 1.2rem;
  margin-left: .5rem;
}

@media only screen and (max-width:767px) {
  article.news .news_time {
    font-size: 1.2rem;
  }
}




@media only screen and (max-width:767px) {
  article.news .news_desc p {
    font-size: 1.3rem;
  }
}

article.news .news_body .news_desc p {
  font-size: 1.6rem;
}

@media only screen and (max-width:767px) {
  article.news .news_body .news_desc p {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width:767px) {
  article.news {
    margin-bottom: 1.5rem;
  }
}




/* =======================================
　ブログ記事
======================================= */

/* メインビジュアル */
#blog-main-visual {
  margin-bottom: 1rem;
}

#blog-main-visual img {
  width: 100%;
  height: auto;
}

#blog-main-visual-inner {
  margin-bottom: -1rem;
}


/*記事タイトル*/
.article .article_title {
  font-size: 3.2rem;
  margin: 1rem 0;
  text-align: left;
}

/*日付*/
.article .article_meta time {
  color: #999;
}

@media only screen and (max-width:767px) {
  .article .article_title {
    font-size: 2.8rem;
  }
}

.article .article_meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 0 0 4rem;
}

.article .article_meta ul {
  align-items: center;
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
}

.article .article_meta ul li {
  padding-right: 10px;
}

.article .article_meta ul li a {
  background: var(--color-gray05);
  color: #FFF !important;
  display: inline-block;
  font-size: var(--size-primary-fontsmall);
  line-height: 1;
  padding: 5px 10px;
  text-decoration: none !important;
}

.article .article_meta time {
  font-size: var(--size-primary-fontsmall);
  margin-left: auto;
}

.article .article_pic img {
  height: auto;
  max-width: 100%;
}

.article-menu .article_title {
  margin-bottom: 30px;
  text-align: left;
}



/* =======================================
　ボタンスタイル
======================================= */

.btn-style {
  margin: 2rem 0;
}

.btn-style1 .btn {
  border-radius: 5px 5px 5px 5px !important;
  cursor: pointer;
  display: block;
  font-size: 16px;
  line-height: 1;
  padding: 15px;
  text-align: center;
  text-decoration: none !important;
}

@media only screen and (max-width:767px) {
  .btn-style1 .btn {
    font-size: 1.6rem;
  }
}

.btn-style1 .btn:hover {
  opacity: .8;
}

.btn-style1 .btn-default {
  background-color: #FFF;
  border: 1px solid #707070;
  position: relative;
}

.btn-style1 .btn-default i,
.btn-style1 .btn-default svg {
  color: #707070;
  margin-top: -.5em;
  position: absolute;
  right: 15px;
  top: 50%;
  transition: all 300ms 0s ease;
  ;
}

.btn-style1 .btn-default:hover i,
.btn-style1 .btn-default:hover svg {
  right: 5px;
}

.btn-style1 .btn-send {
  background-color: #454545;
  color: #FFF;
  font-weight: bold;
  ;
}

.btn-style1 .btn-back {
  background-color: #EEE;
  color: #333;
  font-size: 1.4rem;
}

@media only screen and (max-width:767px) {
  .btn-style1 .btn-back {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width:767px) {
  .btn-style1 .btn {
    font-size: 1.2rem;
    width: 100%;
    ;
  }
}

@media only screen and (max-width:767px) and (max-width:767px) {
  .btn-style1 .btn {
    font-size: 1.2rem;
  }
}