/* CSS Document */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  word-break: break-all;
  color: #333;
}

a {
  transition: .3s;
  text-decoration: none;
  color: #7db9e7;
}

a:hover {
  text-decoration: underline;
}

a:hover img {
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  text-decoration: none;
  opacity: .8;
}

a,
canvas {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

img,
video,
object {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

ol,
ul {
  padding-left: 1.5em;
}

ol li {
  margin-bottom: 20px;
}

#to-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999;
}

#to-top a {
  font-size: 14px;
  font-weight: bold;
  width: 100px;
  height: 80px;
  padding: 15px;
  text-decoration: none;
  color: #fff;
}

#to-top .fa {
  font-size: 26px;
  display: block;
  margin-bottom: 3px;
}

#to-top .to-top-label {
  font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

.header-contents,
.section-title,
#gnav {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.sp-only {
  display: none;
}

.f-min {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.text-vertical {
  -ms-writing-mode: tb-rl;

  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.text-upright {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}

/*--------------------------------
　全体
---------------------------------*/

#main-contents {
  /*max-width: 1280px;*/
  margin: 0 auto;
  padding: 0 100px;
}

.inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}

.btn {
  text-align: center;
}

.btn a {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  padding: 20px 60px;
  color: #fff;
  background-color: #9e937a;
}

.btn a:hover {
  text-decoration: none;
  background-color: #908469;
  /* -webkit-transform: translate3d(0, 2px, 0);
    transform: translate3d(0, 2px, 0); */
  /* box-shadow: 0 4px 0 #1786b9; */
}

.btn-note {
  font-size: 14px;
  display: block;
}

#top-btn {
  margin-bottom: 100px;
}

#top-btn a {
  margin-bottom: 10px;
}

#top-btn .fa {
  margin-right: 12px;
}

/*--------------------------------
　header
---------------------------------*/

#header {
  position: relative;
  height: 600px;
  background-color: #fff;
}

#header .header-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  line-height: 1.2;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  word-break: keep-all;
}

#header .logo {
  margin-bottom: 40px;
}

#header h1.main-logo {
  font-size: 76px;
  font-weight: 600;
  letter-spacing: 1.8px;
}

#header .sub-logo {
  font-family: Georgia, Times, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 1.4px;
}

#header .header-text {
  font-size: 26px;
}

/*--------------------------------
　globalnavi
---------------------------------*/

#gnav {
  max-width: 460px;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
}

#gnav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
}

#gnav li {
  margin-bottom: 10px;
}

#gnav a {
  font-size: 20px;
  font-weight: 500;
  color: #333;
}

/*--------------------------------
　section
---------------------------------*/

.section {
  margin-bottom: 100px;
}

.section-title {
  font-size: 30px;
  margin-bottom: 30px;
}

.section-box {
  margin-bottom: 40px;
}

.section-table table {
  width: 100%;
  text-align: left;
}

.section-table table th:first-child {
  /* border-radius: 5px 0 0 5px; */
}

.section-table table th:last-child {
  /* border-radius: 0 5px 5px 0; */
}

.section-table table th {
  padding: 20px;
}

.section-table table td {
  padding: 20px;
}

.section-table table th {
  color: #fff;
  background-color: #404040;
}

.section-table table tr:nth-child(odd) {
  background-color: #f7f7f7;
}

.section-box-title {
  font-size: 20px;
  margin-bottom: 30px;
}

.section-list ul {
  padding-left: 20px;
  list-style: circle;
}

.section-list li {
  list-style: circle;
}

.text-note {
  font-size: 14px;
}

/*--------------------------------
　About
---------------------------------*/

#about {
  position: relative;
}

#about .section-title {
  position: absolute;
  top: -50px;
  left: 0;
  font-size: 46px;
  -ms-writing-mode: tb-rl;

  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

#about .section-box {
  margin-bottom: 140px;
}

#about .section-box-title {
  font-size: 26px;
}

#about .section-2col {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

#about .section-2col .section-image {
  width: 55%;
}

#about .section-2col .section-desc {
  width: 45%;
}

#about01 .section-image {
  width: 65%;
  padding-left: 160px;
}

#about01 .section-desc {
  width: 35%;
  padding-left: 50px;
}

#about02 {
  flex-direction: row-reverse;
}

#about02 .section-desc {
  padding-right: 50px;
}

#about03 {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

#about03 .section-desc {
  position: relative;
  width: 80%;
  margin: 0 auto;
  margin-top: -30px;
  padding: 45px 100px 0;
  background-color: #fff;
}

#about03 .section-box-title {
  text-align: center;
}

#about04 .section-image {
  text-align: center;
}

#about04 .section-desc {
  padding-left: 50px;
}

/*--------------------------------
  Member
---------------------------------*/

#member .th-title {
  width: 15%;
}

#member .th-from {
  width: 70%;
}

/*--------------------------------
  Footer
---------------------------------*/

#footer {
  background-color: #f8f8f8;
}

#footer .inner {
  padding: 40px 10px 20px;
}

#footer .footer-link {
  max-width: 400px;;
  margin: 0 auto;
  margin-bottom: 30px;
}

#footer .footer-link ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  text-align: center;
}

#footer .footer-link a {
  color: #333;
}

#footer .copyright {
  font-size: 12px;
  text-align: center;
}

#footer .copyright a {
  color: #333;
}

/*media Queries 1100
----------------------------------------------------*/

@media screen and (max-width: 1100px) {
  .section-box-title {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left !important;
  }

  .section-image {
    margin-bottom: 10px !important;
  }

  #about .section-title {
    position: static;
    -ms-writing-mode: lr-tb;

    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }

  #about .section-image,
  #about .section-desc {
    width: 100% !important;
    margin: 0;
    padding: 0;
  }

  #about01,
  #about02 {
    display: block;
  }
}

/*media Queries 767
----------------------------------------------------*/

@media screen and (max-width: 767px) {
  #header .header-contents,
  #gnav {
    text-align: right;
  }

  body {
    font-size: 15px;
  }

  .sp-only {
    display: block;
  }

  #top-btn {
    margin-bottom: 40px;
  }

  #header {
    height: 350px;
  }

  #header .header-contents {
    width: 90%;
    word-break: normal;
  }

  #header h1.main-logo {
    font-size: 50px;
    margin-bottom: 10px;
  }

  #header .sub-logo {
    font-size: 14px;
  }

  #header .header-text {
    font-size: 20px;
  }

  #main-contents {
    padding: 0 20px;
  }

  #gnav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #gnav li {
    line-height: 1.4;
    width: 32%;
    margin: 0;
    margin-bottom: 10px;
  }

  #gnav a {
    font-size: 16px;
    padding: 10px;
  }

  .section {
    margin-bottom: 60px;
  }

  .section-title {
    font-size: 24px !important;
    margin-bottom: 10px !important;
  }

  .section-box {
    margin-bottom: 40px !important;
  }

  .section-box-title {
    font-size: 18px !important;
    margin-bottom: 10px;
    text-align: left !important;
  }

  .btn a {
    font-size: 16px;
  }

  .section-table table td {
    font-size: 14px;
  }

  #footer .inner {
    padding: 30px 10px 30px;
  }

  #footer .footer-link li {
    width: 50%;
  }

  #footer .footer-link a {
    font-size: 14px;
    padding: 10px;
  }

  #footer .copyright {
    font-size: 10px;
  }

  #to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    opacity: .9;
  }

  #to-top a {
    width: 50px;
    height: 40px;
  }

  #to-top .to-top-label {
    display: none;
  }

  #to-top .fa {
    font-size: 16px;
  }

  .btn a {
    width: 100%;
    padding: 20px;
  }
}
