@charset "UTF-8";

/* Font Face
---------------------------------------------*/
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Noto Sans CJK JP"),
    local("Noto Sans JP"),
    url(http://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff2) format('woff2'),
    url(http://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.woff) format('woff'),
    url(http://fonts.gstatic.com/ea/notosansjp/v5/NotoSansJP-Regular.otf) format('opentype');
}

/* Common
---------------------------------------------*/
html {
  font-size: 62.5%;
}
body{
  color: #111;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
  /*font-feature-settings: "palt";*/
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1.8;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 400;
}
ul,ol,li,dl,dt,dd {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: #111;
  text-decoration: none;
  transition: 0.4s;
}
a:hover {
  opacity: 0.7;
}
img {
  max-width: 100%;
  height: auto;
}
p + p {
  margin-top: 24px;
}
hr {
  background: url(../img/img-kazari2.png) no-repeat center top;
  background-size: cover;
  border: 0;
  max-width: 774px;
  height: 20px;
  margin: 90px auto 100px;
}
b {
  color: #0068b7;
  font-weight: bold;
}
s + b {
  margin-left: 3px;
}
u {
  text-decoration: none;
  border-bottom: 1px solid #b80000;
}
s {
  color: #b80000;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
  hr {
    height: 12px;
    margin: 40px auto;
  }
}

@media screen and (min-width: 751px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
}


/* Header
---------------------------------------------*/
.header {
  color: #fff;
  text-align: center;
  background: url(../img/header-bg.jpg) no-repeat center top;
  background-size: cover;
}
.header__inner {
  position: relative;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.header__logo {
  position: absolute;
  left: 0;
  top: 30px;
  width: 192px;
}
.header .site-title {
  padding: 170px 0 18px;
}
.header .descript {
  padding: 0 0 166px;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header .site-title {
    padding-top: 140px;
  }
  .header .descript {
    padding: 0 0 80px;
  }
}

/* Footer
---------------------------------------------*/
.footer {
  position: relative;
  text-align: center;
  background-color: #fff;
  padding: 24px 0 90px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer .footer__logo {
  float: left;
  margin-bottom: 30px;
}
.footer .footer__nav {
  float: right;
  padding-top: 6px;
  margin-bottom: 30px;
}
.footer .footer__nav ul {
  text-align: right;
}
.footer .footer__nav li {
  display: inline-block;
  font-size: 1.4rem;
  background: url(../img/footer-arrow.png) no-repeat left center;
  padding-left: 16px;
  margin-left: 20px;
}
.footer .footer__nav li a {
  display: block;
}
.footer .copyright {
  clear: both;
  font-size: 1.2rem;
}
.pagetop {
  position: absolute;
  right: 20px;
  top: 40%;
}
@media screen and (max-width: 768px) {
  .footer .footer__nav,
  .footer .footer__nav ul,
  .footer .footer__logo {
    float: none;
    text-align: center;
  }
  .pagetop {
    right: 10px;
    top: 35%;
    max-width: 40px;
  }
}


/* Gnav
---------------------------------------------*/
.gnav {
  max-width: 1200px;
  padding-top: 50px;
  margin: 0 auto;
}
.gnav__inner {
  display: flex;
  margin: 0 -5px;
}
.gnav__item {
  width: 25%;
  padding: 0 5px;
}
.gnav__item a {
  display: block;
  position: relative;
  transition: background-image 0.3s linear;
}
.gnav__inner .gnav__item:nth-of-type(1) a {
  background: url(../img/anchor-img1.jpg) no-repeat center top;
  background-size: cover;
}
.gnav__inner .gnav__item:nth-of-type(2) a {
  background: url(../img/anchor-img2.jpg) no-repeat center top;
  background-size: cover;
}
.gnav__inner .gnav__item:nth-of-type(3) a {
  background: url(../img/anchor-img3.jpg) no-repeat center top;
  background-size: cover;
}
.gnav__inner .gnav__item:nth-of-type(4) a {
  background: url(../img/anchor-img4.jpg) no-repeat center top;
  background-size: cover;
}
.gnav__item a::before,
.gnav__item a::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
}
.gnav__item a::before {
  right: 3%;
  top: 8%;
  border-right: 1px solid rgba(255,255,255,0.5);
  border-top: 1px solid rgba(255,255,255,0.5);
}
.gnav__item a::after {
  left: 3%;
  bottom: 8%;
  border-left: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
.gnav__item span {
  display: block;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-image: #ddd;
  transition: 0.4;
}
.gnav__item span::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  bottom: 12px;
  background: url(../img/icon-arrow.png) no-repeat;
  transition: 0.1s linear;
  width: 20px;
  height: 10px;
  margin-left: -10px;
}
@media screen and (max-width: 768px) {
  .gnav {
    padding: 10px 10px 0;
  }
  .gnav__inner {
    flex-wrap: wrap;
  }
  .gnav__item {
    width: 50%;
    margin-bottom: 10px;
  }
  .gnav__inner .gnav__item:nth-of-type(1) a {
    background: url(../img/anchor-img1_sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .gnav__inner .gnav__item:nth-of-type(2) a {
    background: url(../img/anchor-img2_sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .gnav__inner .gnav__item:nth-of-type(3) a {
    background: url(../img/anchor-img3_sp.jpg) no-repeat center top;
    background-size: cover;
  }
  .gnav__inner .gnav__item:nth-of-type(4) a {
    background: url(../img/anchor-img4_sp.jpg) no-repeat center top;
    background-size: cover;
  }
}
@media screen and (max-width: 450px) {
  .gnav__item {
    width: 100%;
  }
}
@media screen and (min-width: 750px) {
  .gnav__inner .gnav__item:nth-of-type(1) a:hover {
    background: url(../img/anchor-img1_o.jpg) no-repeat center top;
    background-size: cover;
  }
  .gnav__inner .gnav__item:nth-of-type(2) a:hover {
    background: url(../img/anchor-img2_o.jpg) no-repeat center top;
    background-size: cover;
  }
  .gnav__inner .gnav__item:nth-of-type(3) a:hover {
    background: url(../img/anchor-img3_o.jpg) no-repeat center top;
    background-size: cover;
  }
  .gnav__inner .gnav__item:nth-of-type(4) a:hover {
    background: url(../img/anchor-img4_o.jpg) no-repeat center top;
    background-size: cover;
  }
  .gnav__item a:hover::before,
  .gnav__item a:hover::after {
    animation: borderAnime 0.4s linear 0.4s forwards;
  }
  @keyframes borderAnime {
    0% { width: 0%; }
    80% { width: 80%; height: 0%; }
    100% { width: 80%; height: 30%; }
  }
  .gnav__item a:hover span {
    background: linear-gradient(to bottom, rgba(100,60,10,0.8), rgba(100,60,10,0.8) 35%, rgba(100,60,10,0.0) 65%, transparent);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 300%;
    animation: gradientAnime 0.25s linear 0.3s forwards;
  }
  @keyframes gradientAnime {
    0% { background-position: 0 100%; }
    100% { background-position: 0 0; }
  }
  .gnav__item a:hover span::after {
    bottom: -10px;
  }
}

/* Contents
---------------------------------------------*/
.sub-title {
  overflow: hidden;
  position: relative;
  font-size: 4.0rem;
  text-align: center;
  line-height: 1.2;
  background: url(../img/img-kazari1.png) no-repeat center bottom;
  padding: 130px 20px 60px;
  margin: 0 auto 36px;
}
.sec__inner {
  max-width: 1200px;
  padding-bottom: 120px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sub-title {
    background-size: auto 16px;
    padding: 30px 10px 24px;
    margin-bottom: 24px;
  }
  .sec__inner {
    padding: 0 20px 60px;
  }
}

/* About
---------------------------------------------*/
.sec-about {
  color: #fff;
  background-color: #1b1101;
}
.sec-about .sub-title {
  padding-top: 60px;
}
.sec-about .sub-title svg {
  fill: #fff;
  max-width: 360px;
}
.sec-about .sec__inner {
  text-align: center;
  line-height: 2.2;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .sec-about .sub-title {
    padding-top: 40px;
  }
  .sec-about .sub-title svg {
    max-height: 24px;
  }
}

/* Greet
---------------------------------------------*/
.sec-greet .sub-title svg {
  fill: #111;
  max-width: 590px;
}
.sec-greet .sec__inner {
  text-align: center;
}
.sec-greet .text {
  background: url(../img/sec1-bg.png) no-repeat center 90%;
  margin-bottom: 40px;
}
.sec-greet .profile .date {
  font-size: 1.4rem;
}
.sec-greet .profile .corp {
  margin-top: 5px;
}
.sec-greet .profile .name img {
  vertical-align: middle;
  margin-left: 16px;
}
@media screen and (max-width: 768px) {
  .sec-greet .sub-title svg {
    max-height: 54px;
  }
  .sec-greet .text {
    max-width: 550px;
    margin: 0 auto 40px;
  }
  .sec-greet .profile .name {
    text-align: center;
  }
  .sec-greet .profile .name img {
    display: block;
    margin: 0 auto;
  }
}

/* Intro
---------------------------------------------*/
.sec-intro {
  color: #fff;
  background: url(../img/sec2-bg.jpg) no-repeat center top;
  background-size: cover;
}
.sec-intro .sub-title svg {
  fill: #fff;
  max-width: 560px;
}
.sec-intro .sec__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.sec-intro .image {
  width: 80%;
}
.sec-intro .text {
  margin-left: 40px;
}
.sec-intro .text .name img {
  vertical-align: middle;
  margin-left: 16px;
}
@media screen and (max-width: 768px) {
  .sec-intro .sub-title svg {
    max-height: 24px;
  }
  .sec-intro .sec__inner {
    display: block;
  }
  .sec-intro .image {
    text-align: center;
    width: 100%;
  }
  .sec-intro .text {
    max-width: 550px;
    margin: 10px auto 0;
  }
  .sec-intro .text .name {
    text-align: center;
  }
  .sec-intro .text .name img {
    display: block;
    margin: 0 auto;
  }
}

/* Voice
---------------------------------------------*/
.sec-voice .sub-title svg {
  fill: #111;
  max-width: 250px;
}
.sec-voice .sec__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.sec-voice .image {
  width: 100%;
  order: 2;
}
.sec-voice .text {
  order: 1;
  margin-right: 40px;
}
.sec-voice .text .block {
  border: 1px solid #070002;
  padding: 22px 28px;
  margin-bottom: 20px;
}
.sec-voice .text .block > div img {
  vertical-align: top;
}
.sec-voice .text .block p {
  font-size: 1.4rem;
  margin-top: 10px;
}
.sec-voice .text .block small {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .sec-voice .sub-title svg {
    max-height: 24px;
  }
  .sec-voice .sec__inner {
    display: block;
  }
  .sec-voice .image {
    text-align: center;
    width: 100%;
  }
  .sec-voice .text {
    max-width: 550px;
    margin: 10px auto 0;
  }
  .sec-voice .text .block {
    padding: 20px;
  }
}

/* History
---------------------------------------------*/
.sec-history {
  background: url(../img/sec4-bg.png) no-repeat center top;
  background-size: cover;
}
.sec-history .sub-title svg {
  fill: #fff;
  max-width: 380px;
}
.sec-history .history__title {
  cursor: pointer;
  text-align: center;
  padding: 6px;
}
.sec-history .history-showa .history__title {
  background-color: #906a3b;
}
.sec-history .history-heisei .history__title {
  background-color: #9d692a;
}
.sec-history .history-reiwa .history__title {
  background-color: #bb6a21;
}
.sec-history .history__title span {
  display: block;
  position: relative;
  line-height: 1;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 14px 0;
}
.sec-history .history__title span::after {
  content: '';
  display: block;
  position: absolute;
  right: 18px;
  top: 50%;
  width: 32px;
  height: 32px;
  background: url(../img/sec4-minus.png) no-repeat;
  background-size: 100% auto;
  margin-top: -16px;
}
.sec-history .history__title.closed span::after {
  background: url(../img/sec4-plus.png) no-repeat;
}
.sec-history .history__inner {
  position: relative;
  padding-top: 40px;
}
.sec-history .history__inner.closed {
  display: none;
}
.sec-history .history__inner::after {
  content: '';
  position: absolute;
  left: 94px;
  top: 0;
  z-index: 0;
  background-color: #fff;
  width: 1px;
  height: 100%;
}
.sec-history .history__box {
  position: relative;
  padding-bottom: 40px;
}
.sec-history .history__box .date {
  position: absolute;
  left: 0;
  top: 40px;
  color: #fff;
  font-size: 1.4rem;
  text-align: right;
  width: 82px;
}
.sec-history .history__box .date::before {
  content: '';
  display: block;
  position: absolute;
  right: -22px;
  top: 4px;
  z-index: 3;
  background-color: #070002;
  border-radius: 9px;
  border: 3px solid #fff;
  width: 18px;
  height: 18px;
}
.sec-history .history__box .date::after {
  content: '';
  display: block;
  position: absolute;
  right: -78px;
  top: 11px;
  z-index: 2;
  background: url(../img/sec4-line.png) repeat-x left center;
  width: 68px;
  height: 4px;
}
.sec-history .history__box-inner {
  position: relative;
  background: url(../img/sec4-box_mid.png) repeat-y;
  background-size: 100% auto;
  padding: 50px 40px;
  margin-left: 160px;
}
.sec-history .history__box-inner::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/sec4-box_top.png) no-repeat left top;
  background-size: 100% auto;
  width: 100%;
  height: 50px;
}
.sec-history .history__box-inner::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../img/sec4-box_btm.png) no-repeat left bottom;
  background-size: 100% auto;
  width: 100%;
  height: 8px;
}
.sec-history .history__box-inner h3 {
  color: #906a3b;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.sec-history .history__box-inner p {
  font-size: 1.4rem;
}
.sec-history .history__box-in-inner {
  display: flex;
}
.sec-history .history__box-in-inner.static {
  display: static;
}
.sec-history .history__box-in-inner .image {
  order: 2;
  flex-basis: 36%;
  margin-left: 40px;
}
.sec-history .history__box-in-inner .text {
  order: 1;
  flex-basis: 64%;
}
.sec-history .history__box-in-inner.static .text {
  flex-basis: 100%;
}
.sec-history .history__box-in-inner .text h4 {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #333;
  padding: 2px 8px 2px 14px;
}
.sec-history .history__box-in-inner .text h4::after {
  content: '';
  display: block;
  position: absolute;
  right: -20px;
  top: 0;
  background: url(../img/sec4-sankaku.png) no-repeat left top;
  width: 20px;
  height: 100%;
}
.sec-history .history__box-in-inner .text p + h4 {
  margin-top: 20px;
}
.sec-history .history__box-in-inner .text p {
  border: 1px solid #333;
  width: 100%;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .sec-history .sub-title svg {
    max-height: 24px;
  }
  .sec-history .sec__inner {
    padding: 0 10px 40px 2px;
  }
  .sec-history .history__title {
    margin-left: 5px;
  }
  .sec-history .history__title img {
    height: 20px;
  }
  .sec-history .history__title span::after {
    width: 22px;
    height: 22px;
    margin-top: -11px;
  }
  .sec-history .history__title.closed {
    margin-bottom:  20px;
  }
  .sec-history .history__title.closed span::after {
    background-size: 100% auto;
  }
  .sec-history .history__inner {
    padding-top: 30px;
  }
  .sec-history .history__inner::after {
    left: 10px;
  }
  .sec-history .history__box {
    padding-bottom: 30px;
  }
  .sec-history .history__box .date {
    position: relative;
    top: 0;
    text-align: left;
    width: auto;
    padding: 0 0 0 42px;
  }
  .sec-history .history__box .date::before {
    right: auto;
    left: 2px;
  }
  .sec-history .history__box .date::after {
    left: 5px;
    top: 11px;
    background-size: auto 1px;
    width: 32px;
    height: 4px;
  }
  .sec-history .history__box-inner {
    padding: 30px 20px;
    margin: 14px 0 0 20px;
  }
  .sec-history .history__box-inner h3 {
    font-size: 1.6rem;
  }
  .sec-history .history__box-in-inner {
    display: block;
  }
  .sec-history .history__box-in-inner .image {
    text-align: center;
    width: 100%;
    margin: 0;
  }
  .sec-history .history__box-in-inner .text {
    max-width: 550px;
    margin: 10px auto 0;
  }
  .sec-history .history__box-in-inner .text h4 {
    font-size: 1.2rem;
  }
  .sec-history .history__box-in-inner .text p {
    padding: 10px;
  }
}


/* Column
---------------------------------------------*/
.sec-column {
  background: url(../img/sec5-bg.png) no-repeat center top;
  background-size: cover;
  box-shadow: 0 20px 50px rgba(157,105,42,0.45) inset;
}
.sec-column .sub-title {
  background: none;
  padding-top: 0;
}
.sec-column .sub-title span {
  display: block;
  text-align: center;
  line-height: 1;
  background: url(../img/sec5-img.png) no-repeat right top;
  background-size: auto 100%;
  max-width: 600px;
  padding: 90px 40px 0;
  margin: 0 auto;
}
.sec-column h3 {
  line-height: 1;
  text-align: center;
  margin-bottom: 50px;
}
.sec-column .column-block__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.sec-column .text {
  margin-left: 40px;
}
.sec-column .column-block:nth-of-type(2) .image {
  order: 2;
}
.sec-column .column-block:nth-of-type(2) .text {
  order: 1;
  margin: 0 40px 0 0;
}
.sec-column .text li {
  margin-bottom: 10px;
}
.sec-column .text ul li:last-of-type {
  margin-bottom: 0;
}
.sec-column .text li a {
  display: block;
  background: url(../img/sec5-arrow.png) no-repeat right bottom #fff;
  border: 1px solid #070002;
  padding: 14px 22px 18px;
}
.sec-column .text li h4 {
  font-weight: bold;
  padding: 4px 0 4px 38px;
}
.sec-column .text ul li:nth-of-type(1) h4 {
  background: url(../img/sec5-no1.png) no-repeat left center;
  background-size: auto 20px;
}
.sec-column .text ul li:nth-of-type(2) h4 {
  background: url(../img/sec5-no2.png) no-repeat left center;
  background-size: auto 20px;
}
.sec-column .text ul li:nth-of-type(3) h4 {
  background: url(../img/sec5-no3.png) no-repeat left center;
  background-size: auto 20px;
}
.sec-column .text ul li:nth-of-type(4) h4 {
  background: url(../img/sec5-no4.png) no-repeat left center;
  background-size: auto 20px;
}
.sec-column .text ul li:nth-of-type(5) h4 {
  background: url(../img/sec5-no5.png) no-repeat left center;
  background-size: auto 20px;
}
.sec-column .text li p {
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .sec-column .sub-title {
    padding: 0;
  }
  .sec-column .sub-title span {
    padding: 40px 10% 0;
  }
  .sec-column .sub-title span img {
    max-width: 70%;
  }
  .sec-column h3 {
    margin-bottom: 20px;
  }
  .sec-column .column-block__inner {
    display: block;
  }
  .sec-column .image {
    text-align: center;
    width: 100%;
  }
  .sec-column .text li a {
    padding: 8px 10px 12px;
  }
  .sec-column .text li h4 {
    line-height: 1.5;
  }
  .sec-column .text li p {
    font-size: 1.2rem;
  }
  .sec-column .column-block .text,
  .sec-column .column-block:nth-of-type(2) .text {
    max-width: 550px;
    margin: 10px auto 0;
  }
}


/* Relate
---------------------------------------------*/
.sec-relate {
  background: url(../img/sec6-bg.jpg) no-repeat center top;
  background-size: cover;
  padding-bottom: 120px;
}
.sec-relate .sub-title svg {
  fill: #fff;
  max-width: 336px;
}
.sec-relate .sec__frame {
  max-width: 1200px;
  background-color: #fff;
  padding: 6px;
  margin: 0 auto;
}
.sec-relate .sec__inner {
  border: 1px solid #906a3b;
  padding: 32px;
}
.sec-relate ul {
  margin-left: -20px;
}
.sec-relate ul::after {
  content: '';
  display: block;
  clear: both;
}
.sec-relate ul li {
  float: left;
  text-align: center;
  padding-left: 20px;
}
.sec-relate ul li:nth-of-type(1) {
  width: 25%;
}
.sec-relate ul li:nth-of-type(2) {
  width: 45%;
}
.sec-relate ul li:nth-of-type(3) {
  width: 30%;
}
.sec-relate h3 {
  font-weight: bold;
  background-color: #e9e1d8;
  padding: 10px 0;
}
.sec-relate ul li p {
  font-size: 1.4rem;
  height: 50px;
  margin: 10px 0;
}
.sec-relate ul li a {
  display: inline-block;
  vertical-align: top;
}
.sec-relate ul li a + a {
  margin-left: 20px;
}
@media screen and (max-width: 1200px) {
  .sec-relate {
    padding-bottom: 30px;
  }
  .sec-relate .sec__frame {
    margin: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .sec-relate .sub-title svg {
    max-height: 24px;
  }
  .sec-relate .sec__inner {
    padding: 10px;
  }
  .sec-relate h3 {
    padding: 5px 0;
  }
  .sec-relate ul {
    max-width: 550px;
    margin: 0 auto;
  }
  .sec-relate ul li {
    float: none;
    padding: 0 0 20px;
  }
  .sec-relate ul li:nth-of-type(1),
  .sec-relate ul li:nth-of-type(2),
  .sec-relate ul li:nth-of-type(3) {
    width: 100%;
  }
  .sec-relate ul li p {
    height: auto;
  }
  .sec-relate ul li a {
    margin-bottom: 20px;
  }
  .sec-relate ul li a + a {
    margin-left: 4%;
  }
  .sec-relate ul li:nth-of-type(2) a,
  .sec-relate ul li:nth-of-type(3) a {
    max-width: 45%;
  }
}

/* Page Column
---------------------------------------------*/
.page-column .header .site-title {
  max-width: 510px;
  padding: 50px 0 40px;
  margin: 0 auto;
}
.content {
  background: url(../img/sec5-bg.png) no-repeat center top;
  background-size: cover;
  box-shadow: 0 20px 50px rgba(157,105,42,0.45) inset;
}
.page-title {
  margin-bottom: 90px;
}
.page-title span {
  display: block;
  text-align: center;
  line-height: 1;
  background: url(../img/sec5-img.png) no-repeat right top;
  background-size: auto 100%;
  max-width: 600px;
  padding: 90px 40px 0;
  margin: 0 auto;
}
.content h2 {
  line-height: 1;
  text-align: center;
  margin-bottom: 50px;
}
.content > p {
  text-align: center;
  margin: -10px 0 40px;
}
.column-list {
  background-color: #fff;
  border: 1px solid #1b1101;
  max-width: 1200px;
  padding: 40px 40px 20px;
  margin: 0 auto;
}
.column-list__inner {
  border-bottom: 1px dotted #292929;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.column-list .column-list__inner:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
}
.column-list__inner h3 {
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.6;
  min-height: 34px;
  padding: 8px 0 8px 64px;
  margin-bottom: 24px;
}
.column-list .column-list__inner:nth-of-type(1) h3 {
  background: url(../img/sec5-no1.png) no-repeat left center;
}
.column-list .column-list__inner:nth-of-type(2) h3 {
  background: url(../img/sec5-no2.png) no-repeat left center;
}
.column-list .column-list__inner:nth-of-type(3) h3 {
  background: url(../img/sec5-no3.png) no-repeat left center;
}
.column-list .column-list__inner:nth-of-type(4) h3 {
  background: url(../img/sec5-no4.png) no-repeat left center;
}
.column-list .column-list__inner:nth-of-type(5) h3 {
  background: url(../img/sec5-no5.png) no-repeat left center;
}
.column-list__body li {
  position: relative;
  padding-left: 20px;
  margin-top: 10px;
}
.column-list__body ul li:first-of-type {
  margin-top: 0;
}
.column-list__body li::after {
  content: '■';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  color: #bbb;
}
.column-list__body blockquote {
  background: url(../img/img-qoute.png) no-repeat 20px 30px #f3f3f3;
  padding: 26px 20px 30px 64px;
  margin: 20px 0;
}
.column-list__body .indent {
  text-indent: -2em;
  padding-left: 2em;
}
.btn {
  padding: 70px 0;
}
.btn a {
  display: block;
  position: relative;
  color: #1b1101;
  text-align: center;
  border: 1px solid #1b1101;
  max-width: 400px;
  padding: 20px 90px;
  margin: 0 auto;
}
.btn a::after {
  content: '';
  display: block;
  position: absolute;
  right: 32px;
  top: 50%;
  background: url(../img/img-arrow.png) no-repeat;
  width: 56px;
  height: 14px;
  margin-top: -5px;
}
@media screen and (max-width: 1200px) {
  .column-list {
    margin: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .page-column .header__logo {
    top: 20px;
    left: 50%;
    width: 140px;
    margin-left: -70px;
  }
  .page-column .header .site-title {
    padding: 75px 0 15px;
  }
  .page-title {
    margin-bottom: 30px;
  }
  .page-title span {
    padding: 40px 10% 0;
  }
  .page-title span img {
    max-width: 70%;
  }
  .content h2 {
    margin: 0 20px 20px;
  }
  .content > p {
    margin: 0 20px 20px;
  }
  .column-list {
    padding: 20px;
  }
  .column-list__inner {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  .column-list__inner h3 {
    font-size: 1.6rem;
    min-height: 25px;
    padding: 0 0 0 48px;
  }
  .column-list .column-list__inner:nth-of-type(1) h3,
  .column-list .column-list__inner:nth-of-type(2) h3,
  .column-list .column-list__inner:nth-of-type(3) h3,
  .column-list .column-list__inner:nth-of-type(4) h3,
  .column-list .column-list__inner:nth-of-type(5) h3 {
    background-size: 36px auto;
  }
  .column-list__body blockquote {
    background-position: 10px 10px;
    padding: 10px 10px 10px 48px;
  }
}
@media screen and (max-width: 500px) {
  .btn {
    padding: 40px 20px;
  }
  .btn a {
    text-align: left;
    padding: 20px;
  }
}


/* Title Animation
---------------------------------------------*/
.sec-about .sub-title.fade-in svg {
  fill: url(#grad-white1);
}
.sec-intro .sub-title.fade-in svg {
  fill: url(#grad-white2);
}
.sec-history .sub-title.fade-in svg {
  fill: url(#grad-white3);
}
.sec-relate .sub-title.fade-in svg {
  fill: url(#grad-white4);
}
.sec-greet .sub-title.fade-in svg {
  fill: url(#grad-black1);
}
.sec-voice .sub-title.fade-in svg {
  fill: url(#grad-black2);
}
.fade-in svg .stop-black1 {
  animation: change-color1 1s linear 1;
}
.fade-in svg .stop-black2 {
  animation: change-color2 1s linear 1;
}
.fade-in svg .stop-white1 {
  animation: change-color3 1s linear 1 forwards;
}
.fade-in svg .stop-white2 {
  animation: change-color4 1s linear 1 forwards;
}
@keyframes change-color1 {
  0% {stop-color: #ffd700;}
  50% {stop-color: #000;}
  100% {stop-color: #000;}
}
@keyframes change-color2 {
  0% {stop-color: #000;}
  50% {stop-color: #ffd700;}
  100% {stop-color: #000;}
}
@keyframes change-color3 {
  0% {stop-color: #ffd700;}
  50% {stop-color: #fff;}
  100% {stop-color: #fff;}
}
@keyframes change-color4 {
  0% {stop-color: #fff;}
  50% {stop-color: #ffd700;}
  100% {stop-color: #fff;}
}
