/*
Theme Name: Trust Link
Description:Trust Linkのサービスサイト
Theme URI: https://trust-link.club/
Author: ifdesign inc
Author URI: https://ifdesign.jp/
Version: 1.00
*/


/* ========== Reset ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

}

/* ========== Base typography ========== */
body, html {
  height: 100%;
}

body {
  -webkit-print-color-adjust: exact;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 12pt;
  color: #000000;
  line-height: 1.6em;
  -webkit-text-size-adjust: 100%;
}

.body-wrap {
  overflow-x: hidden;
}

section {
  width: 100%;
}

.section-wrap {
  width: 92%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

a:hover {
  text-decoration: underline;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

main {
  padding-top: 80px;
}

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

.section-wrap {
  padding-top: 50px;
  padding-bottom: 50px;
}

}

/* ========== Layout Basic ========== */
/* ヘッダー */
header {
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  position: fixed;
  top: 0px;
  width: 100%;
  height: 80px;
  z-index: 999; /* ドロワーを前面に出したい場合、念のため追加 */
}

header .site-logo {
  width: 45%;
  max-width: 300px;
}

/* 下記を消してしまうとPC表示もドロワーになるので、
   PC時は nav を普通に表示したい場合は display:block; などにする。
   ただし今回はドロワーのみ運用の場合はそのままでもOK。
   ここでは「PC時もドロワーに統一」前提で書いています。 */
header nav {
margin-left: auto;
  /* display: none; ←ここはスマホ時はJSで制御するので常時隠さない */
}

/* ユーザーが挙げていたデフォルト: 
header nav ul { ... } 
header nav ul li { ... } 
header nav ul.sub { ... }
の項目はリストの装飾に使うので残してOK
------------------------------------------------- */
header nav ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}
header nav ul li {
  padding-left: 10px;
  padding-right: 10px;
}
header nav ul.sub {
  font-size: 10pt;
}

/* ドロワーメニュー全体 */
.drawer-menu {
  position: fixed;
  top: 0;
  right: -70%; /* 初期は画面外（右側）に隠しておく */
  width: 70%;
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 縦方向に中央配置などにしたい場合 */
  align-items: flex-end;   /* リストを右寄せに */
  padding: 20px;
}

/* .drawer-menuが.open状態になったら右:0 で表示 */
.drawer-menu.open {
  right: 0;
}

/* ドロワー内のulを縦並び（右寄せ） */
.drawer-menu ul {
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: 20px;
}

/* ハンバーガーボタン */
.menu-button {
  display: inline-block;
  margin-left: auto;       /* ロゴの次に右側へ配置 */
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 1000;           /* ドロワーより手前に出す */
  margin-right: 5px;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

/* スマホ時のみ表示、PC時は非表示などの分岐 */
@media screen and (min-width: 481px) {
  .menu-button {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  /* PCではドロワーを使わずに別レイアウトにしたいなら、
     ここでnavを display:none → .drawer-menu を display:block; にする等、条件調整 */
  header nav {
    display: none; /* スマホ時はデフォルト非表示にしてドロワーに任せる */
  }
  header nav ul {
    font-size: 18pt;
  }
  header nav ul li {
    padding-left: 20px;
    padding-right: 20px;
    line-height: 2em;
  }
  header nav ul.sub {
    font-size: 14pt;
  }

}

/*フッター*/
footer {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ff4545;
}

footer p {
  color: #FFFFFF;
  text-align: center;
}

/*Appストア系リンク*/
.app-link {
  display: flex;
  justify-content: center;
  width: 80%;
  max-width: 500px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.app-link a {
  width: 50%;
  text-align: center;
}

.app-link a img {
  height: 70px;
  width: auto;
}

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

.app-link {
  width: 100%;
  max-width: 500px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.app-link a img {
  height: 50px;
}

}


/*サブページタイトル*/
section.title {
  width: 100%;
  background-color: #ff4545;
}

section.title .section-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
}

section.title .section-wrap h1 {
  font-size: 28pt;
  color: #FFFFFF;
  line-height: 1.6em;
}

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

section.title .section-wrap h1 {
  font-size: 20pt;
}

}


/*基本テキスト＋画像レイアウト*/
article.basic-layout {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

article.basic-layout .txt {
  width: 50%;
  padding-right: 30px;
}

article.basic-layout .txt h3 {
  font-size: 24pt;
  font-weight: bold;
  line-height: 1.4em;
  padding-bottom: 30px;
}

article.basic-layout .txt p {
  font-size: 20pt;
  font-weight: bold;
  line-height: 1.6em;
}

article.basic-layout .txt p span {
  font-size: 13pt;
  line-height: 1.2em;
}

article.basic-layout .txt ul {}

article.basic-layout .txt ul li {
  background-color: #ff4545;
  display: inline-block;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  color: #FFFFFF;
  font-size: 16pt;
  border-radius: 50px;
  margin-right: 20px;
  margin-bottom: 20px;
}

article.basic-layout .img {
  width: 50%;
}

article.basic-layout .img img {}

main.toppage article.basic-layout .txt h3 {
  font-size: 34pt;
  font-weight: bold;
  line-height: 1.4em;
  padding-bottom: 30px;
  color: #ff4545;
}

main.toppage article.basic-layout .txt p {
  font-size: 20pt;
  font-weight: bold;
  line-height: 1.6em;
}

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

article.basic-layout {
  margin-bottom: 50px;
}

article.basic-layout .txt {
  width: 100%;
  padding-right: 0px;
  order: 2;
}

article.basic-layout .txt h3 {
  font-size: 18pt;
  line-height: 1.4em;
  padding-bottom: 30px;
}

article.basic-layout .txt p {
  font-size: 20pt;
  line-height: 1.6em;
}

article.basic-layout .txt ul li {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 12pt;
  border-radius: 50px;
  margin-right: 10px;
  margin-bottom: 10px;
}

article.basic-layout .img {
  width: 100%;
  order: 1;
  margin-bottom: 20px;
}

main.toppage article.basic-layout .txt h3 {
  font-size: 24pt;
  padding-bottom: 20px;
}

main.toppage article.basic-layout .txt p {
  font-size: 16pt;
  line-height: 1.6em;
}

article.basic-layout .txt p span {
  font-size: 12pt;
  line-height: 1.2em;
}


}


/*Trust Linkアプリ*/
article.app-main {
  background-color: #fff5f5;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding: 50px;
  border-radius: 20px;
}

article.app-main .txt {
  width: 50%;
  padding-right: 30px;
}

article.app-main .txt h3 {
  font-size: 34pt;
  font-weight: bold;
  line-height: 1.4em;
  padding-bottom: 30px;
}

article.app-main .txt p {
  font-size: 20pt;
  font-weight: bold;
  line-height: 1.6em;
}

article.app-main .img {
  width: 50%;
}

article.app-main .app-link a img {
  height: 60px;
  width: auto;
}

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

article.app-main {
  margin-bottom: 30px;
  padding: 30px;
}

article.app-main .txt {
  width: 100%;
  padding-right: 0px;
  order: 2;
}

article.app-main .txt h3 {
  font-size: 25pt;
  padding-bottom: 20px;
}

article.app-main .txt p {
  font-size: 14pt;
}

article.app-main .img {
  width: 100%;
  order:1;
  margin-bottom: 20px;
}

article.app-main .app-link a img {
  height: 40px;
}

}


/*Trust Link Checkerアプリ*/
article.app-checker {
  background-color: #ececec;
  margin-bottom: 50px;
  padding: 50px;
  border-radius: 20px;
}

article.app-checker h3 {
  font-size: 34pt;
  font-weight: bold;
  line-height: 1.4em;
  padding-bottom: 30px;
}

article.app-checker p {
  font-size: 20pt;
  font-weight: bold;
  line-height: 1.6em;
}

article.app-checker .app-link a img {
  height: 60px;
  width: auto;
}

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

article.app-checker {
  margin-bottom: 30px;
  padding: 30px;
}

article.app-checker h3 {
  font-size: 25pt;
  padding-bottom: 20px;
}

article.app-checker p {
  font-size: 14pt;
}

article.app-checker .app-link a img {
  height: 40px;
}

}


/* ========== Layout トップページ ========== */
main.toppage h2 {
  text-align: center;
  font-size: 30pt;
  line-height: 1.6em;
  font-weight: bold;
  padding-bottom: 100px;
}

section.first-view {
  background-color: #fff5f5;
}

section.first-view .section-wrap {
  background-image: url(images/index_fv.png);
  background-repeat: no-repeat;
  background-position: right 50px;
  background-size: 50% auto;
}

section.first-view .catch {
  width: 45%;
  padding-top: 50px;
  padding-bottom: 50px;
}

section.first-view h1 {
  font-size: 41pt;
  font-weight: bold;
  line-height: 1.4em;
  padding-bottom: 30px;
  color: #ff4545;
}

section.first-view p {
  font-size: 20pt;
  font-weight: bold;
  line-height: 1.6em;
}

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

main.toppage h2 {
  font-size: 26pt;
  line-height: 1.6em;
  padding-bottom: 100px;
}

section.first-view .section-wrap {
  background-position: center 30px;
  background-size: 90% auto;
  padding-top: 300px;
}

section.first-view .catch {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

section.first-view h1 {
  font-size: 28pt;
  padding-bottom: 20px;
}

section.first-view p {
  font-size: 16pt;
  line-height: 1.6em;
}

}


section.explanation-area .section-wrap {
  padding-top: 50px;
  padding-bottom: 50px;
}

section.explanation-area .wrap {
  display: flex;
  justify-content: space-between;
}

section.explanation-area .wrap div {
  width: 16%;
}

section.explanation-area .wrap div img {
  width: auto;
  height: 100px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

section.explanation-area .wrap div p {
  text-align: center;
  line-height: 1.6em;
  font-size: 14pt;
  font-weight: bold;
}


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

section.explanation-area .section-wrap {
  padding-top: 50px;
  padding-bottom: 50px;
}

section.explanation-area .wrap {
  justify-content: center;
  flex-wrap: wrap;
}

section.explanation-area .wrap div {
  width: 33%;
  margin-bottom: 20px;
}

section.explanation-area .wrap div img {
  height: 100px;
  margin-bottom: 20px;
}

section.explanation-area .wrap div p {
  line-height: 1.4em;
  font-size: 12pt;
}

}



section.title-bar {
  background-color: #ff4545;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

section.title-bar p {
  font-size: 25pt;
  line-height: 1.6em;
  color: #ffffff;
  font-weight: bold;
}

section.lineup-area {
  background-color: #fafafa;
}

section.lineup-area .overview {
  text-align: center;
  font-size: 20pt;
  line-height: 1.6em;
  font-weight: bold;
  padding-bottom: 50px;
}

section.lineup-area .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

section.lineup-area .wrap div {
  margin-bottom: 30px;
  width: 100%;
  max-width: 380px;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
  background-color: #ff4545;
  color: #FFFFFF;
  border-radius: 10pt;
  padding-left: 2%;
  padding-right: 2%;
}

section.lineup-area .wrap div h3 {
  font-size: 18pt;
  font-weight: bold;
  line-height: 1.4em;
  padding-bottom: 30px;
}

section.lineup-area .wrap div p {
  font-size: 12pt;
  font-weight: bold;
  line-height: 1.4em;
}

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

section.title-bar {
  background-color: #ff4545;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

section.title-bar p {
  font-size: 24pt;
  line-height: 1.6em;
  color: #ffffff;
  font-weight: bold;
}

section.lineup-area .overview {
  text-align: center;
  font-size: 20pt;
  line-height: 1.6em;
  font-weight: bold;
  padding-bottom: 50px;
}

section.lineup-area .wrap div {
  margin-bottom: 30px;
  max-width: 380px;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 2%;
  padding-right: 2%;
}

section.lineup-area .wrap div h3 {
  font-size: 18pt;
  padding-bottom: 30px;
}

section.lineup-area .wrap div p {
  font-size: 12pt;
  line-height: 1.4em;
}



}


article.admin-link {
  background-color: #ececec;
  margin-bottom: 50px;
  padding: 50px;
  border-radius: 20px;
}

article.admin-link h3 {
  font-size: 34pt;
  font-weight: bold;
  line-height: 1.4em;
  padding-bottom: 30px;
}

article.admin-link p {
  text-align: center;
}

article.admin-link a {
  background-color: #ff4545;
  display: inline-block;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 70px;
  padding-right: 70px;
  color: #FFFFFF;
  font-size: 24pt;
  border-radius: 50px;
}

article.admin-link a:hover {
  opacity: 0.8;
  text-decoration: none;
}

section.admin-area {
  background-color: #fff5f5;
}

section.admin-area p.contact-link {
  text-align: center;
}

section.admin-area p.contact-link a {
  background-color: #ff4545;
  display: inline-block;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 70px;
  padding-right: 70px;
  color: #FFFFFF;
  font-size: 24pt;
  border-radius: 50px;
}

section.admin-area p.contact-link a:hover {
  opacity: 0.8;
  text-decoration: none;
}


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


article.admin-link {
  margin-bottom: 30px;
  padding: 30px;
}

article.admin-link h3 {
  font-size: 25pt;
  padding-bottom: 20px;
}

article.admin-link a {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11pt;
}

section.admin-area p.contact-link a {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 70px;
  padding-right: 70px;
  font-size: 16pt;
  line-height: 1.4em;
  border-radius: 100px;
}

}



/* ========== Layout ========== */
h2 {
  text-align: center;
  padding-bottom: 100px;
  font-size: 28pt;
  font-weight: bold;
  line-height: 1.4em;
  color: #ff4545;
}

section.qa {
  background-color: #f9f9f9;
}

section.qa article {
  margin-bottom: 30px;
}

section.qa article h3 {
  font-size: 16pt;
  margin-bottom: 20px;
  line-height: 1.6em;
}

section.qa article p {
  font-size: 14pt;
  line-height: 1.6em;
}

.login-btn {
  text-align: center;
  margin-bottom: 100px;
}

.login-btn a {
  background-color: #ff4545;
  display: inline-block;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 70px;
  padding-right: 70px;
  color: #FFFFFF;
  font-size: 20pt;
  border-radius: 50px;
  line-height: 1.6em;
}

.login-btn a:hover {
  opacity: 0.8;
  text-decoration: none;
}


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

h2 {
  padding-bottom: 50px;
  font-size: 18pt;
}

.login-btn a {
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 11pt;
}


}



/* ========== Layout お問い合わせ ========== */
section.form {}

section.form .section-wrap {
  max-width: 800px;
}

section.form .overview {
  text-align: center;
  margin-bottom: 50px;
}

.wpcf7 p {
  margin-bottom: 30px;
}

.wpcf7 label {
  font-size: 14pt;
  line-height: 1.8em;
}

.wpcf7 label span {}

.wpcf7 input {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 1px solid #000000;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14pt;
}

.wpcf7 select {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 1px solid #000000;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14pt;
}

.wpcf7 textarea {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  border: 1px solid #000000;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 14pt;
}

.wpcf7 .wpcf7-not-valid-tip {
  font-size: 12pt;
}

.wpcf7 .wpcf7-acceptance input {
  width: auto;
}

.wpcf7 .wpcf7-submit {
  border: none;
  background-color: #ff4545;
  border-radius: 50px;
  color: #FFFFFF;
}

.wpcf7 .wpcf7-submit:disabled {
  background-color: #d7d7d7;
}


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

}



/* ========== Layout 会社概要 ========== */
section.company .section-wrap {
  max-width: 800px;
}

section.company table tbody {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

section.company table tr {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dotted #d3d3d3;
}

section.company table tr th {
  width: 30%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 16pt;
  line-height: 1.6em;
  padding: 20px;
}

section.company table tr td {
  width: 70%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 14pt;
  line-height: 1.6em;
  padding: 20px;
}


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

}


/* ========== Layout 規約系 ========== */
.terms .section-wrap {
  max-width: 800px;
}

.terms .overview {
  font-size: 10pt;
  line-height: 1.6em;
  margin-bottom: 50px;
}

.terms .wrap {
  margin-bottom: 30px;
}

.terms h2 {
  color: #000000;
  font-size: 12pt;
  padding-bottom: 10px;
  text-align: left;
}

.terms p {
  font-size: 10pt;
  line-height: 1.6em;
}

.terms ol {
  padding-left: 17px;
}

.terms ol li {
  font-size: 10pt;
  line-height: 1.6em;
}

.terms ol ul {
  padding-top: 10px;
  padding-left: 17px;
  padding-bottom: 10px;
  list-style-type: disc;
}

.terms ol ul li {
  font-size: 10pt;
  line-height: 1.6em;
}


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

.terms .overview {
  font-size: 12pt;
  margin-bottom: 50px;
}

.terms .wrap {
  margin-bottom: 30px;
}

.terms h2 {
  font-size: 14pt;
  padding-bottom: 10px;
}

.terms p {
  font-size: 12pt;
}

.terms ol li {
  font-size: 12pt;
  line-height: 1.6em;
}

.terms ol ul li {
  font-size: 12pt;
}


}


/* ========== Layout 記事 ========== */

/* ========== Layout 記事レイアウト ========== */

section.news {
  background-color: #f7f7f7;
  display: flex;
  flex-wrap: wrap;
}

section.news .title-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 40%;
  align-items: center;
  justify-content: center;
}

section.news .title-wrap h2 {
  font-size: 40pt;
  margin-bottom: 0px;
  font-weight: bold;
  line-height: 1.2em;
  padding-bottom: 0px;
  color: #ff4545;
  text-align: left;
}
section.news .title-wrap p {
  font-size: 13pt;
  margin-bottom: 5px;
  font-weight: bold;
  line-height: 1.6em;
}


section.news .contents-wrap {
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 60%;
}

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

section.news .title-wrap {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  justify-content: flex-start;
  padding-left: 3%;
}

section.news .contents-wrap {
  width: 100%;
  padding-top: 0px;
  padding-bottom: 50px;
}

}

/* ========== Layout 記事一覧 ========== */

main.list section.news {
min-height: 87vh;
}
section.news .list-wrap article {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #CFCFCF;
}

section.news .list-wrap article:first-child {
  border-top-style: none;
}

section.news .list-wrap article a {
  display: flex;
  flex-wrap: wrap;
}

section.news .list-wrap article .days {
  width: 20%;
  font-size: 12pt;
  margin-bottom: 5px;
  font-weight: bold;
  line-height: 1.6em;
  color: #a0a0a0;
}

section.news .list-wrap article .item {
  width: 80%;
}

section.news .list-wrap article .item .title {
  font-size: 14pt;
  line-height: 1.4em;
  margin-bottom: 5px;
  font-weight: bold;
}

section.news .list-wrap article .item .contents {
  line-height: 1.4em;
  margin-bottom: 0px;
  font-weight: normal;
  font-size: 11pt;
}

/*MORE*/
.more {
    padding-top: 50px;
}
.more a {
    display: block;
    width: 100%;
    max-width: 140px;
    text-align: center;
    background-color: #000000;
    border-radius: 50px;
    color: #ffffff;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: auto;
}
.more a:hover {
  background-color: #757575;
  text-decoration: none;
}

.btn_area {
  width: 100%;
  margin-bottom: 100px;
}
.btn_area input {
    display: block;
    width: 100%;
    max-width: 140px;
    text-align: center;
    background-color: #000000;
    border-radius: 50px;
    color: #ffffff;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    border: none;
}
.btn_area input:hover {
  background-color: #757575;
  text-decoration: none;
}


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

section.news .list-wrap article .days {
  width: 100%;
}

section.news .list-wrap article .item {
  width: 100%;
}

}

/* ========== Layout 記事詳細 ========== */

section.news .detail-wrap article {
  border-radius: 10px;
  background-color: #FFFFFF;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 4%;
  padding-right: 4%;
}
section.news .detail-wrap article h1 {
    font-size: 19pt;
    line-height: 1.8em;
    margin-bottom: 0px;
    font-weight: bold;
    position: relative;
}

section.news .detail-wrap article .post_date {
  font-size: 10pt;
  margin-bottom: 20px;
}
section.news .detail-wrap article .main_text {
  font-size: 12pt;
  line-height: 1.4em;
}

/*戻るボタン*/
main.news form input {
display: block;
margin-left: auto;
margin-right: auto;
background-color: #dfdfdf;
border: none;
padding-top: 10px;
padding-right: 20px;
padding-left: 20px;
padding-bottom: 10px;
cursor: pointer;
}

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


}















