@charset "UTF-8";

/* CSS Document */

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  background-repeat: repeat-x;
  background-color: #EFEFEF;
  font-size: 16px;
  line-height: 1.6rem;
  color: #444;
}

img {
  border: 0px;
  vertical-align: bottom;
  max-width: 100%;
}

a {
  transition: all 0.3s ease;
}



h2 {
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: rgba(92, 201, 255, 1.00);
  margin: 30px 0 20px 0;
  font-family: "フォーク R", Folk Regular;
}

header {
  margin-bottom: 45px;
  width: 100%;
  display: block;
}

header img {
  display: block;
  width: 100%;
  height: auto;
}

.header {
  grid-area: header;
  /* grid-template-areasで定義したエリア名 */
  /* 以前のfloat指定は不要になるため削除 */
  width: 100%;
  /* Grid Itemとして列幅を占有 */
}

.flex {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}

.flex>* {
  flex: 1;
}

.card {
  padding: 28px;
  font-size: 16px;
  line-height: 1.6rem;
}

.vimg {
  height: 58%;
  width: 0px;
  margin-left: 30px;
  vertical-align: baseline;
}

.container {
  /* floatを解除し、Gridコンテナとして定義 */
  display: grid;

  /* Gridエリアの定義 (Grid Template Areas) */
  grid-template-areas:
    "header header"
    /* 1行目: headerが2列占有 */
    "menu   main"
    /* 2行目: menuとmain */
    "footer footer";
  /* 3行目: footerが2列占有 */

  /* 列幅の定義 */
  /* 1列目: 300px (menuの幅), 2列目: 残りの幅 (900pxを想定) */
  grid-template-columns: 300px 900px;

  /* 行の高さの定義 */
  /* 1行目(header)と3行目(footer)はコンテンツに応じて自動調整 (auto) */
  /* 2行目(menu/main)は残りのスペースを占有 (1fr) */
  grid-template-rows: auto 1fr auto;

  /* コンテナの全幅を設定（以前の幅指定に合わせる） */
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background-color: #FFFFFF;
  /* 以前の指定を引き継ぎ */
}

.menu {
  grid-area: menu;
  /* 以前のfloat指定は不要になるため削除 */
  /* 以前のpadding-left: 20px; はそのまま */
  padding-left: 20px;
}

.menu small {
  font-size: 12px;
  color: #555;
  font-weight: normal;
}

.menu_btn {
  transition: all 0.3s ease;
  background: -moz-linear-gradient(top, #fefefe, #dddddd);
  background: -webkit-gradient(linear, left top, left bottom, from(#fefefe), to(#dddddd));
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#fefefe', endColorstr='#dddddd');
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#fefefe', endColorstr='#dddddd')";
  font-size: 16px;
  text-decoration: none;
  color: #333;
  display: block;
  padding-left: 10px;
  clear: both;
  font-weight: bold;
  height: 48px;
  line-height: 48px;
  border-left-color: #FF9900;
  border-left-width: 4px;
  border-left-style: solid;
  margin-bottom: 16px;
}

.menu_btn:hover {

  background: -moz-linear-gradient(top, #ffcc00, #ffdd55);
  background: -webkit-gradient(linear, left top, left bottom, from(#ffcc00), to(#ffdd55));
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#ffcc00', endColorstr='#ffdd55');
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#ffcc00', endColorstr='#ffdd55')";
}

.menu_btn table td {
  height: 100%;
  width: 100%;
  display: block;
}

.menu a:visited {
  text-decoration: none;
  color: #006;
}

.hpbanner {
  background-color: #FF9900;
  color: #fff;
  font-size: 24px;
  line-height: 160%;
  text-align: center;
  width: 100%;
  height: auto;
  padding: 20px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.hpbanner br {
  height: 0;
  line-height: 100%;
}

.hpbanner span {
  font-size: 0.6em;
  line-height: 100%;
}

.hpbanner a, .hpbanner a:visited {
  text-decoration: none;
  color: white;
}

.main {
  grid-area: main;
  /* 以前のfloat指定は不要になるため削除 */
  /* Gridエリアが残りの900pxを自動で占有 */
  background-color: #FFFFFF;
  /* 以前の指定を引き継ぎ */
}

.left {
  float: left;
  clear: left;
}

.right {
  float: left;
  clear: right;
}

.auto_center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer {
  grid-area: footer;
  /* 以前のclear: both; は不要になるため削除 */
  /* 以前のtext-align: center; などのスタイルを引き継ぎ */
  text-align: center;
  width: 100%;
  color: #999;
  margin-left: auto;
  margin-right: auto;
  font-size: 10px;
  letter-spacing: 1px;
  padding-bottom: 20px;
  padding-top: 8px;
}

.table {
  display: table;
  width: 100%;
}

.table>* {
  display: table-cell;
  vertical-align: middle;
}


.page_title {
  margin: 0 24px 24px 24px;
  font-size: 1.4rem;
  font-family: "フォーク M", Folk Medium;
  background-color: rgba(255, 224, 58, 1.00);
  box-shadow: 0 1px 1px 0px rgba(203, 203, 203, 1.00);
  padding: 15px;
}

.about1_subtitle {
  padding: 50px 30px 0px 30px;
  margin-top: 20px;
}

.about2_subtitle {
  background-image: url(images/about2_subtitle.jpg);
  background-repeat: no-repeat;
  height: 65px;
  padding: 40px 30px 0px 30px;
  margin-top: 20px;
}

.about3_subtitle {
  background-image: url(images/about3_subtitle.jpg);
  background-repeat: no-repeat;
  height: 240px;
  padding: 40px 30px 0px 30px;
  margin-top: 20px;
}

.about4_subtitle {
  background-image: url(images/about4_subtitle.jpg);
  background-repeat: no-repeat;
  height: 340px;
  padding: 40px 30px 0px 30px;
  margin-top: 20px;
}

.about_text {
  padding: 0px 30px 40px 30px;
}

.about_pict {
  width: 680px;
}

.what_subtitle {
  background-repeat: no-repeat;
  height: 180px;
  padding: 40px 30px 0px 30px;
  margin-top: 20px;
}

.what_text {
  padding: 0px 0px 0px 20px;
  text-align: left;
}

.price_text {
  padding: 0px 20px 0px 20px;
}

.price_frame_top {
  background-image: url(images/price_frame_top.png);
  background-repeat: no-repeat;
  height: 12px;
}

.price_frame_body {
  background-image: url(images/price_frame_body.png);
  background-repeat: repeat-y;
  text-align: left;
  vertical-align: top;
  min-height: 100px;
  padding-left: 28px;
}

.price_frame_bottom {
  background-image: url(images/price_frame_bottom.png);
  background-repeat: no-repeat;
  height: 12px;
}

.story_body {
  background-image: url(images/story_text.jpg);
  background-repeat: repeat-y;
  width: 680px;
}

.story_text {
  margin-left: 40px;
  margin-right: 40px;
  padding-top: 10px;
  line-height: 110%;
}

.story_text_foot {
  background-image: url(images/story_text_foot.jpg);
  background-repeat: no-repeat;
  width: 680px;
  height: 36px;
}

.story_head {
  margin-top: 20px;
}

.story_text_line1 {
  background-color: #FFE6F3;
}

.story_text_line2 {
  background-color: #E3F2FF;
}

.story_text_line3 {
  background-color: #FFE9D3;
}

.ex_card1 {
  width: 640px;
  border-color: #ccc;
  border-width: 1px;
  border-style: solid;
  margin-left: auto;
  margin-right: auto;
}

.ex_card2 {
  width: 640px;
  border-color: #ccc;
  border-width: 1px;
  border-style: solid;
  margin-left: auto;
  margin-right: auto;
}

.ex_card1 h3 {
  background-image: url(images/ex_01.png);
  background-repeat: repeat-x;
  font-size: 14px;
  line-height: 40px;
}

.ex_card2 h3 {
  background-image: url(images/ex_01.png);
  background-repeat: repeat-x;
  font-size: 14px;
  line-height: 40px;
}

.ex_card1 h4 {
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 18px;
  color: #001FA4;
  margin: 0px;
  margin-left: 20px;
  padding: 0px;
}

.ex_card2 h4 {
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 18px;
  color: #C00;
  margin: 0px;
  margin-left: 20px;
  padding: 0px;
}

.ex_card1 h5 {
  background-image: url(images/ex_06.png);
  background-repeat: no-repeat;
  font-size: 14px;
  font-weight: normal;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-top: 5px;
}

.ex_card2 h5 {
  background-image: url(images/ex_06.png);
  background-repeat: no-repeat;
  font-size: 14px;
  font-weight: normal;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-top: 5px;
}

.ex_card1 .ex_step {
  width: 100px;
  float: left;
  clear: left;
  color: #001FA4;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-align: left;
  font-weight: bold;
  background-image: url(images/ex_06.png);
  background-repeat: no-repeat;
  height: 65px;
  line-height: 60px;
  padding-left: 20px;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.ex_card2 .ex_step {
  width: 100px;
  float: left;
  clear: left;
  color: #C00;
  font-size: 16px;
  text-align: left;
  font-weight: bold;
  letter-spacing: 0.2em;
  background-image: url(images/ex_07.png);
  background-repeat: no-repeat;
  height: 65px;
  line-height: 60px;
  padding-left: 20px;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.ex_card1 strong {
  font-size: 14px;
  font-weight: bold;
  color: #001FA4;
}

.ex_card2 strong {
  font-size: 15px;
  font-weight: bold;
  color: #C00;
}

.ex_step_text {
  float: left;
  clear: right;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  width: 475px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.ex_card_header {
  background-image: url(images/ex_01.png);
  background-repeat: repeat-x;
  height: 52px;
  line-height: 52px;
  text-align: right;
}

.ex_price_table {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  width: 100%;
}

.ex_price_table td {
  border-bottom-color: #CCC;
  border-bottom-style: dashed;
  border-bottom-width: 1px;
}

.ex_price_table th {
  border-bottom-color: #CCC;
  border-bottom-style: solid;
  border-bottom-width: 2px;
}

.ex_title {
  font-size: 14px;
  font-weight: normal;
  margin-left: 15px;
  margin-right: 15px;
}

.access_div {
  margin-left: auto;
  margin-right: auto;
  width: 640px;
}

.access_div h1 {
  font-weight: normal;
  font-size: 12px;
  line-height: 24px;
  color: #777;
  text-align: right;
}

.access_div h2 {
  background: -moz-linear-gradient(top, #FFF0AF, #FFD011);
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF0AF), to(#FFD011));
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#FFF0AF', endColorstr='#FFD011');
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#FFF0AF', endColorstr='#FFD011')";
  font-size: 20px;
  line-height: 30px;
  color: #333;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 10px;
}

.access_div ul {
  list-style-type: none;
  color: #006;
  font-size: 16px;
  line-height: 30px;
  margin-left: 10px;
  margin-right: 10px;
}

.access_div span {
  display: inline-block;
  width: 22px;
  height: 22px;
  color: #fff;
  font-weight: bold;
  line-height: 22px;
  font-size: 18px;
  text-align: center;
  background-image: linear-gradient(top, #8DA5EB 0%, #000099 50%, #090975 51%, #42559E 100%);

  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#FFF0AF', endColorstr='#FFD011');
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#FFF0AF', endColorstr='#FFD011')";
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
}

.access_div iframe {
  margin-left: 10px;
  margin-right: auto;
  border-color: #CCCCCC;
  border-style: solid;
  border-width: 1px;
}