@charset "utf-8";
/*
Theme Name: gadesign
Theme URI: 
Author: k.hatanaka
Author URI: 
Description: 文字コードutf-8n
Version: beta
License: 
License URI: 
Tags: 
Text Domain: 
*/

.f11{ font-size: 11px; }
.doc_dl {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 50px;
  text-align: center;
}

.doc_dl p {
  margin-bottom: 20px;
  font-family: a-otf-ryumin-pr6n, serif;
font-size: 1.2em;	
}

/* ボタンエリア */
.doc_buttons {
  display: flex;
  flex-direction: column; /* スマホは縦並び */
  gap: 10px; /* ボタン間の余白 */
}

.doc_buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  background: #f2f2f2;
  color: #002D79;
  text-decoration: none;
  padding: 12px;
  font-size: 20px;
  border-radius: 4px;
  font-family: a-otf-ryumin-pr6n, serif;
  border-bottom: 5px solid #ddd;
  display: block;
  text-decoration: none;

  /* アニメーションで滑らかに */
  transition: all 0.2s ease;
}

/* ホバー時 */
.doc_buttons .btn:hover {
opacity: 0.7;
}

/* PCでは横並び */
@media screen and (min-width: 768px) {
  .doc_buttons {
    flex-direction: row; /* 横並び */
  }
}