/***** body指定 ****/
body {
    /* background-image: url("img/back.png"); 背景画像*/
    background-color: #FFFFFF;
    font-size: 18px; /* 文字サイズ */
    font-family: meiryo; /* フォント */
    font-weight: bold; /* 文字強調 */
    /*margin: 20px 100px 20px 100px; /* 余白　上　右　下　左 */
    /*line-height: 50px;*/
}





/***** フッター指定 ****/
footer {
    font-size: 12px; /* 文字サイズ */
    font-family: meiryo; /* フォント */
    font-weight: normal; /* 文字強調 */
    text-align: center;
}




/***** 線の指定 *****/
hr {
    height: 3px;
    background-color: #8c5ace;
    width: 1000px;
    border: none;
}



figure {
  margin: 0;
  vertical-align: bottom;
}


/*ハイパーリンクの指定*/
a {
  color: #60208b;/*色*/
  text-decoration: none;/*下線の有無*/
}





/*****  テーブル設定 *****/

/* テーブル1 */
table.h{
  line-height: 1.5;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 1000px;
}

/* テーブル2 */
table.a{
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 1000px;
}

/* テーブル3 */
table.b{
  vertical-align: bottom;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 1000px;
}

/* テーブル内書式 */
table td{
  font-size: 18px; /* 文字サイズ */
  text-align: left;
  line-height: 18px;
  padding: 20px 20px;
  border-right:solid 3px #ddd;
  border-left:solid 3px #ddd;
  width: 400px;
}

/* テーブル内書式(ざ逆ボ用) */
table td2{
  font-size: 12px; /* 文字サイズ */
  text-align: left;
  line-height: 18px;
  padding: 20px 20px;
  border-right:solid 3px #ddd;
  border-left:solid 3px #ddd;
  width: 400px;
}




/*****  個別フォント設定  *****/

p.text {
  text-align: left;
  font-size: 12px;
}

p.text2 {
  text-align: center;
  font-size: 24px;
}

/* 擬音用フォント設定 */
p.text3 {
  /*　text-align: left;　*/
  /*margin: 0px,0px,0px,100px;*/
  font-size: 12px;
  line-height: 0px;
}

/* お気に入り */
strong {
  color:chocolate
}


/***** オーディオバー設定 *****/
audio {
  width: 300px;
  height: 30px;
}


/* 上詰め */
.top{
  vertical-align: top;
}


/* 下詰め */
.btm{
  vertical-align: bottom;
}

/*
main {
  text-align: center;
}
*/


.flex {
  display: flex; /*横並び*/
}
.flex .image {
  width: 140px; /*画像サイズ指定*/
  margin: 0;
  padding: 0;
}
.flex .image img {
  width: 100%;
  height: auto;
}
.flex .text {
  margin: 20px 0 0 40px;
  font-size: 12px; /* 文字サイズ */
  padding: 0;
}





/* 画像を天地中央表示 */

.flex .image {
  overflow: hidden;
  position: relative;
}
.flex .image::before {
  content: "";
  display: block;
  padding-top: 58%;
}
.flex .image img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}





/*****  トップへ戻るボタン  *****/
html {
  scroll-behavior: smooth;
}
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}





/***** メニューボタン *****/
@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-custom01 {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 0.75rem;
}

a.btn-custom01:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.75rem, -1rem);
  transform: translate3d(0, 0.75rem, -1rem);

  border: 2px solid #000;
  border-radius: inherit;
  background: #ccc100;
  -webkit-box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom01:after {
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
  content: "\f0e0";
}

.btn-custom01-front {
  position: relative;
  display: block;
  padding: 1.5rem 5rem 1.5rem 5rem;

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid #000;
  border-radius: inherit;
  background: #fff100;
}

.fa-position-left {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 1rem;
}

.fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}

a.btn-custom01:hover {
  -webkit-transform: translate(0, 0.25rem);
  transform: translate(0, 0.25rem);
  background: #fff100;
}

a.btn-custom01:hover:before {
  -webkit-transform: translate3d(0, 0.5rem, -1rem);
  transform: translate3d(0, 0.5rem, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom01:hover:after {
  content: "\f2b6";
}

a.btn-custom01:active {
  -webkit-transform: translate(0rem, 0.75rem);
  transform: translate(0rem, 0.75rem);
}

a.btn-custom01:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom01:active:after {
  content: "\f2b6";
}
