/*
Theme Name: genken
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

@charset "UTF-8";

* {
  box-sizing: border-box;
} /*全ての要素をborder-boxにするーーコンテンツ、border、paddingの合計がwidthと解釈される*/

html {
  font-size: 100%;
}
/*設定した文字サイズを正しく反映*/

body {
  background-color: white;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

a {
  cursor: pointer;
}

main {
    margin: auto;
}

h1.back-blue {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  color: white;
  height: 140px;
  background-color: #336b94;
  line-height: 140px; /*見出し垂直方向のセンタリング*/
  margin-top: 0;
}

.membership-contents {
  width: 58.33%;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify; /*文章両端揃え*/
}

.with-underline{
  border-bottom: 1px solid #000000;
}

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

.blue-btn{
  background: #2E5F9B;
  padding: 8px 20px;
  margin: 5px 15px;
  border-radius: 15px;
  color: #fff;
  text-align: center;
  min-width: 260px;
  font-weight: bold;
}
.blue-btn:hover {
  color: #fff;
}

.trans-btn{
  border: 2px solid #2E5F9B;
  padding: 8px 20px;
  margin: 0 25px;
  border-radius: 15px;
  min-width: 260px;
  display: inline-block;
  max-width: 400px;
  text-align: center;
  font-weight: bold;
}
.trans-btn:hover{
  color: #000;
}

.ft-btns{
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
}

.sp-only{
  display: none;
}

.pc-only{
  display: inline-block;
}
/*====================メディアクエリーcss=======*/

@media (max-width: 678px) {
  .ft-btns{
    flex-direction: column;
  }

  .pc-only {
    display: none;
  }

  .sp-only{
    display: inline-block;
  }

  h1.back-blue {
    font-size: 22px;
    height: 80px;
    line-height: 80px; /*見出し垂直方向のセンタリング*/
  }

  .membership-contents {
    width: 82.4%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify; /*文章両端揃え*/
  }

}