@charset "UTF-8";

/* ------------------------------
 common - width: all
------------------------------ */
/**
* YUI 3.5.0 - reset.css (http://developer.yahoo.com/yui/3/cssreset/)
* http://cssreset.com
* Copyright 2012 Yahoo! Inc. All rights reserved.
* http://yuilibrary.com/license/
*/
/*
TODO will need to remove settings on HTML since we can't namespace it.
TODO with the prefix, should I group by selector or property for weight savings?
*/
html {
  font-family: tbudgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-size: 100%;
}

/*
TODO remove settings on BODY since we can't namespace it.
*/
/*
TODO test putting a class on HEAD.
- Fails on FF.
*/
main,
article,
section {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

/*
TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

/* to preserve line-height and selector appearance */
sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input,
textarea,
select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssreset {
  display: none;
}

.cf:after {
  content: "";
  clear: both;
  display: block;
}

.ajtxt {
  text-align: justify;
  text-justify: inter-ideograph;
}

a:hover {
  opacity: 0.6;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}

.op {
  display: block !important;
}

.os {
  display: none !important;
}

/* ------------------------------
 common - width all
------------------------------ */
html,
body {
  min-width: 1080px;
}

* {
  letter-spacing: 1px;
}

/* ------------------------------
 common - width < $width-1
------------------------------ */
@media screen and (max-width: 768px) {

  html,
  body {
    min-width: 375px;
  }

  .op {
    display: none !important;
  }

  .os {
    display: block !important;
  }
}

/* ------------------------------
 width: all
------------------------------ */


header {
  background-color: #EEE;
}

header p {
  height: 62px;
  line-height: 62px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
}

main section.s01 {
  width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

main section.s01 .wrapper .t01 {
  text-align: center;
  font-size: 16px;
}

main section.s01 .wrapper h1 {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin-top: 5px;
}

main section.s01 .wrapper .t02 {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 120%;
}

main section.s01 .wrapper .t03 {
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
}

main section.s01 .wrapper .t03 span {
  font-size: 24px;
}

main section.s01 .wrapper .t04 {
  margin-top: 24px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #529A78;
}

main section.s01 .wrapper .photo01 {
  display: block;
  width: 100%;
  margin-top: 15px;
}

main section.s01 .wrapper .box01 {
  border: 2px solid #DDDDDD;
  border-radius: 10px;
  margin-top: 25px;
  padding: 25px 35px;
}

main section.s01 .wrapper .box01 p {
  font-size: 12px;
  line-height: 200%;
}

main section.s01 .wrapper .box02 {
  margin: 0 auto;
  width: max-content;
}

main section.s01 .wrapper iframe {
  width: 560px;
  height: 315px;
}

footer {
  padding: 15px 0 40px;
}

footer .t01 {
  font-size: 12px;
  text-align: center;
  line-height: 160%;
}

footer .t02 {
  text-align: center;
  margin-top: 10px;
}

footer .t02 a {
  text-decoration: none;
  font-size: 12px;
}

footer .logo01 {
  display: block;
  margin: 0 auto;
  width: 300px;
  margin-top: 30px;
}


/* ------------------------------
 width < $width-1
------------------------------ */
@media screen and (max-width: 768px) {
  header {
    background-color: #EEE;
  }

  header p {
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 10px;
    letter-spacing: 1px;
  }

  main section.s01 {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
  }

  main section.s01 .wrapper .t01 {
    text-align: center;
    font-size: 13px;
  }

  main section.s01 .wrapper h1 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    line-height: 130%;
    margin-top: 10px;
  }

  main section.s01 .wrapper .t02 {
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    line-height: 120%;
    margin-top: 10px;
  }

  main section.s01 .wrapper .t03 {
    text-align: center;
    font-weight: bold;
    font-size: 13px;
    margin-top: 15px;
    letter-spacing: 0;
    line-height: 190%;
  }

  main section.s01 .wrapper .t03 span {
    font-size: 18px;
    display: block;
    text-align: center;
  }

  main section.s01 .wrapper .photo01 {
    display: block;
    width: 100%;
    margin-top: 15px;
  }

  main section.s01 .wrapper .box01 {
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    margin-top: 20px;
    padding: 20px 30px;
  }

  main section.s01 .wrapper .box01 p {
    font-size: 12px;
    line-height: 180%;
  }

  main section.s01 .wrapper iframe {
    width: 100%;
    height: auto;
  }

  footer {
    padding: 15px 20px 35px;
  }

  footer .t01 {
    font-size: 12px;
    text-align: center;
    line-height: 160%;
  }

  footer .t02 {
    text-align: center;
    margin-top: 5px;
  }

  footer .t02 a {
    text-decoration: none;
    color: #000092;
    font-size: 12px;
  }
}