@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Hina+Mincho&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Yuji+Syuku&display=swap');
/*.yuji-syuku-regular {
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-style: normal;
}
.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.noto-serif-jp-<uniquifier> {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.hina-mincho-regular {
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.roboto-black {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}*/
header {
  width: 100%;
  padding: 15px 2%;
  background-color: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  -webkit-transition: .3s;
  transition: .3s;
  z-index: 100;
  /* PCでは非表示にしておく */
}
header nav ul li {
    padding-top: 5px;
    padding-right: 1.5vw;
    padding-left: 1.5vw;
    padding-bottom: 0;
    color: #FFFFFF;
    font-size: .8rem;
}
header nav .inner-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
header nav .inner-nav_r ul li {
  padding: 0 1.5vw;
}
header nav ul li a {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  position: relative;
  font-size: .8rem;
}
header nav ul li a:hover {
  color: #fff;
}
header li + li {
  border-left: 1px solid white;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 1320px) {
  .nav_toggle, .nav {
    display: none;
  }
  nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 220px;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all .5s;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
  }
  nav .inner-nav {
    padding: 25px;
  }
  nav .inner-nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav .inner-nav ul li a {
    display: block;
    color: #333;
    font-size: 14px;
    padding: 1em 0;
    text-decoration: none;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
  }
  nav .inner-nav ul li {
    position: relative;
    margin: 0;
    padding: 0 1.5vw;
    border-bottom: 1px solid #333;
  }
  .toggle_btn {
    display: block;
    position: fixed;
    top: 16px;
    right: 30px;
    width: 30px;
    height: 30px;
    -webkit-transition: all .5s;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
  }
  .toggle_btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 14px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
  .open nav {
    left: 0;
    opacity: 1;
  }
  .open .toggle_btn span {
    background-color: #fff;
  }
  .open .toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(10px) rotate(-315deg);
  }
  .open .toggle_btn span:nth-child(2) {
    opacity: 0;
  }
  .open .toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-10px) rotate(315deg);
  }
  li.menu__single:hover ul.menu__second-level {
    border: none;
    background-color: #282828;
    width: 100%;
  }
  li.menu__single:hover ul.menu__second-level a {
    color: #fff;
    padding-left: 15px;
  }
  #mask {
    display: none;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .open #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .8;
    z-index: 2;
    cursor: pointer;
  }
}
/* footer
----------------------------------*/
.footer {
  background-color: #333;
  padding-top: 30px;
  padding-right: 0;
  padding-bottom: 20px;
  padding-left: 0;
}
@media screen and (max-width: 575px) {
.footer {  
  padding-bottom: 60px;
}
}
.footer .footer_logo {    
    margin-right: 20px;
    float: left;
}
@media screen and (max-width: 575px) {
.footer .footer_logo {    
    margin-right: 0px;
    float: none;
}
}
.footer .foot_tel {
    font-size: 30px;
    padding: 0px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    color: #fff;
    font-family: "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
.footer .foot_tel a {
  color: #FFF;
  font-family: 'EB Garamond', serif;
  letter-spacing: .1em;
}
.footer .foot_tx {
    font-size: 12px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px;
    color: #FFF;
    line-height: 2.2;
}
.footer .foot_add {
    font-size: 12px;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px;
    color: #FFF;
}
.footer .foot_menkyo {
  font-size: 12px;
  margin: 0px;
  padding: 0px;
  color: #FFF;
}
.footer .foot_sns {
  text-align: left;
}
.footer .foot_sns li {
  display: inline;
}
.footer .foot_link {
  padding-top: 5%;
  padding-bottom: 10px;
}
.footer .foot_link li {
  font-size: 12px;
  display: inline-block;
  padding-right: 1px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 0px;
  width: 32%;
}
@media (max-width: 991px) {
  .footer .foot_link li {
    width: 49%;
  }
}
@media (max-width: 767px) {
  .footer .foot_link li {
    width: 32%;
  }
}
@media (max-width: 576px) {
  .footer .foot_link li {
    width: 49%;
  }
}
.footer .foot_link li a {
  color: #FFF;
}
.footer .foot_link li a::before {
  content: ' ｜';
}
.footer .copyright {
  font-size: 12px;
  color: #FFF;
  text-align: center;
  margin-top: 30px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.footer .bunner_area {
  /*プレイヤー（再生バー）*/
  /*再生・停止ボタン*/
  /*再生・停止ボタンなどの p 要素*/
  /*進行状態・ロードの状態を表示する部分(グレー)*/
  /*進行状態を表示するバーの部分(薄いグレー)*/
  /* ロード状態を表示するバーの部分（黒） */
  /*現在の再生時間/総再生時間フォント*/
  /*現在の再生時間フォント*/
  /*時間/の部分*/
  /*再生ボタン*/
  /*読み込み中ボタン*/
  /*エラーボタン*/
  /*停止ボタン*/
  /*再生している曲の情報*/
}
.footer .bunner_area img {
  width: 100%;
}
.footer .bunner_area .audiojs {
  width: 100%;
  height: 34px;
  overflow: hidden;
  font-family: monospace;
  font-size: 12px;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  background-color: #FFF;
  background-image: none;
}
.footer .bunner_area .audiojs .play-pause {
  width: 20px;
  height: 20px;
  float: left;
  overflow: hidden;
  border: 1px solid #3A3A3A;
  border-radius: 14px;
  padding: 0;
  margin-top: 5px;
  margin-right: 2px;
  margin-bottom: 2px;
  margin-left: 5px;
}
.footer .bunner_area .audiojs p {
  display: none;
  width: 20px;
  height: 20px;
  margin: 0px;
  cursor: pointer;
}
.footer .bunner_area .audiojs .play {
  display: block;
}
.footer .bunner_area .audiojs .scrubber {
  position: relative;
  float: left;
  width: 120px;
  background: #5a5a5a;
  height: 4px;
  margin: 12px 0 0 0px;
  border-top: 0;
  border-left: 0px;
  border-bottom: 0px;
  overflow: hidden;
}
.footer .bunner_area .audiojs .progress {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 4px;
  width: 0px;
  background: #3A3A3A;
  z-index: 1;
  /* background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ccc),
        color-stop(0.5, #ddd), color-stop(0.51, #ccc), color-stop(1, #ccc));
        background-image: -moz-linear-gradient(center top, #ccc 0%, #ddd 50%, #ccc 51%, #ccc
        100%); */
}
.footer .bunner_area .audiojs .loaded {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 4px;
  width: 0px;
  background: #DDDDDD;
  /* background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #222),
        color-stop(0.5, #333), color-stop(0.51, #222), color-stop(1, #222));
        background-image: -moz-linear-gradient(center top, #222 0%, #333 50%, #222 51%, #222
        100%); */
}
.footer .bunner_area .audiojs .time {
  float: left;
  height: 28px;
  line-height: 28px;
  margin: 0px 0px 0px 8px;
  padding: 0px 0px 0px 0px;
  border-left: none;
  color: #666;
  text-shadow: none;
  display: none;
}
.footer .bunner_area .audiojs .time em {
  padding: 0px 2px 0px 0px;
  color: #666;
  font-style: normal;
  display: none;
}
.footer .bunner_area .audiojs .time strong {
  padding: 0px 0px 0px 2px;
  font-weight: normal;
  display: none;
}
.footer .bunner_area .audiojs .error-message {
  float: left;
  display: none;
  margin: 0px 10px;
  height: 26px;
  width: 200px;
  overflow: hidden;
  line-height: 26px;
  white-space: nowrap;
  color: #fff;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -icab-text-overflow: ellipsis;
  -khtml-text-overflow: ellipsis;
  -moz-text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
}
.footer .bunner_area .audiojs .error-message a {
  color: #eee;
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid #999;
  white-space: wrap;
}
.footer .bunner_area .audiojs .play {
  margin-left: 1.45px;
  background-image: url(../images/bunner/play.png);
  background-repeat: no-repeat;
  background-position: center center;
}
.footer .bunner_area .audiojs .loading {
  /*background: url("$1") center center no-repeat;*/
  display: none;
}
.footer .bunner_area .audiojs .error {
  /*background: url("$1") center center no-repeat;*/
  display: none;
}
.footer .bunner_area .audiojs .pause {
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/bunner/pause.png);
}
.footer .bunner_area .playing .play, .footer .bunner_area .playing .loading, .footer .bunner_area .playing .error {
  display: none;
}
.footer .bunner_area .playing .pause {
  display: block;
}
.footer .bunner_area .loading .play, .footer .bunner_area .loading .pause, .footer .bunner_area .loading .error {
  display: none;
}
.footer .bunner_area .loading .loading {
  display: block;
}
.footer .bunner_area .error .time, .footer .bunner_area .error .play, .footer .bunner_area .error .pause, .footer .bunner_area .error .scrubber, .footer .bunner_area .error .loading {
  display: none;
}
.footer .bunner_area .error .error {
  display: block;
}
.footer .bunner_area .error .play-pause p {
  cursor: auto;
}
.footer .bunner_area .error .error-message {
  display: block;
}
.footer .bunner_area .track-details {
  clear: both;
  height: 26px;
  width: 200px;
  padding: 0px 6px;
  background: #FFF;
  color: #3A3A3A;
  font-size: 10px;
  line-height: 26px;
}
.footer .bunner_area .track-details:before {
  content: '♬ Now Playing: ';
}
@media (min-width: 1200px) {
  .footer .container {
    width: 1155px;
  }
}
.sp-hidden {
  display: block !important;
}
.pc-hidden {
  display: none !important;
}
img.sp-hidden {
  display: inline !important;
}
img.pc-hidden {
  display: none !important;
}
@media (max-width: 768px) {
  .sp-hidden {
    display: none !important;
  }
  .pc-hidden {
    display: block !important;
  }
  img.sp-hidden {
    display: none !important;
  }
  img.pc-hidden {
    display: inline !important;
  }
}
#scroll-to-top-btn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  height: 50px;
  width: 50px;
  color: #FFF;
  font-size: 32px;
  /*background-color: #9E9E9E;*/
  border: none;
  /*border-radius: 50%;*/
  outline: none;
  opacity: 0;
  transition-duration: 0.5s;
  z-index: 999;
}
#scroll-to-top-btn:hover {
  opacity: 0.5;
  transition-duration: 0.5s;
}
@media screen and (max-width: 768px) {
  #scroll-to-top-btn {
    bottom: 60px;
  }
}
/* ドロップダウンメニュー用CSS */
.has-dropdown {
  position: relative; /* 子要素の絶対配置の基準に */
}
.has-dropdown .dropdown-menu {
  display: none; /* 初期状態では非表示 */
  position: absolute;
  top: 100%; /* 親要素の直下に配置 */
  left: 0;
  background-color: #fff;
  list-style: none;
  padding: 0;
  min-width: 150px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 101; /* ヘッダーより手前に表示 */
}
/* ホバー時またはアクティブ時に表示 */
.has-dropdown:hover .dropdown-menu, .has-dropdown.active .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  padding: 0;
  border-left: none; /* 親メニューのボーダーをリセット */
}
.dropdown-menu li a {
  color: #333;
  padding: 10px 15px;
  display: block;
}
.dropdown-menu li a:hover {
  background-color: #f0f0f0;
  color: #333;
}
/* レスポンシブ対応 */
@media screen and (max-width: 1320px) {
  /* メインメニューの ul のみを対象にする */
  nav .inner-nav > ul.menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  /* モバイルメニューではドロップダウンは静的な位置になり、デフォルトでは非表示 */
  .has-dropdown .dropdown-menu {
    position: static;
    background-color: transparent;
    box-shadow: none;
    border: none;
    padding: 1em 0.1vw;
    padding-left: 10px;
    display: none; /* モバイルビューでは常に非表示に設定 */
    color: #333333;
  }
  nav .inner-nav ul .has-dropdown {
    padding: 1em 0.1vw;
    color: #333333;
  }
  nav .inner-nav ul li {    
    padding: 0 0.1vw;
  }
  /* ハンバーガーメニューが開いていて、かつドロップダウンの親がアクティブの場合のみ表示 */
  .open nav .inner-nav .has-dropdown.active .dropdown-menu {
    display: block; /* クリック時に表示 */
    color: #333333;
  }
  .dropdown-menu a {
    padding-left: 10px !important;
    color: #333;
  }
}

.box_link {
    background-color: #FFFFFF;
    min-width: 150px;
    text-align: center;
    text-transform: capitalize;
    margin-right: auto;
    margin-left: auto;
    margin-right: 10px;
	transition: 0.5s;
}
.box_link:hover {
    background-color: #DDDDDD;
}
.box_link a {
    color: #4D4D4D;    
    padding-top: -5px;
    padding-right: 0px;
    padding-bottom: 5px;
    padding-left: 0px;
	transition: 0.5s;
	width: 100%;
}
@media screen and (max-width: 1320px) {
.box_link {
    min-width: 150px;
    text-align: left;    
}
}
.arrow-button {
  font-size: 14px;
	font-family: 'Noto Sans JP', sans-serif;
}
.arrow-button a {
  display: inline-block;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  margin-top: 5%;
  float: right;
  margin-right: 10%;
}
@media screen and (max-width: 575px) {
.arrow-button a { 
  float: right;
  margin-right: 20%;
}
  }
.arrow-button a::after {
  content: "";
  display: block;
  position: absolute;
  /*top: calc(50% – 5px);*/
  left: 110%;
  width: 40px;
  height: 7px;
  border: none;
  border-right: 2px solid #000;
  border-bottom: 1px solid #000;
  transform: skew(45deg);
  transition: .3s;
  top: 18px;
}
.arrow-button a:hover::after {
  position: absolute;
  /*top: calc(50% – 5px);*/
  left: 110%;
  width: 60px;
  height: 7px;
}
.arrow-button_c a {
    display: inline-block;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    margin-top: 5%;
    margin-right: 10%;
    color: #4D4D4D;
}
.arrow-button_c a::after {
  content: "";
  display: block;
  position: absolute;
  /*top: calc(50% – 5px);*/
  left: 120%;
  width: 40px;
  height: 7px;
  border: none;
  border-right: 2px solid #000;
  border-bottom: 1px solid #000;
  transform: skew(45deg);
  transition: .3s;
  top: 12px;
}
.arrow-button_c a:hover::after {
  position: absolute;
  /*top: calc(50% – 5px);*/
  left: 120%;
  width: 60px;
  height: 7px;
}

@media screen and (max-width: 1199px) {
.arrow-button_c a {    
    margin-top: 5%;
    margin-right: 10%;
    font-size: 12px;
}
.arrow-button_c a::after {
  content: "";
  display: block;
  position: absolute;
  /*top: calc(50% – 5px);*/
  left: 105%;
  width: 20px;
  height: 5px;
  border: none;
  border-right: 2px solid #000;
  border-bottom: 1px solid #000;
  transform: skew(45deg);
  transition: .3s;
  top: 8px;
}
}

@media screen and (max-width: 575px) {
.arrow-button_c a {    
    margin-top: 5%;
    margin-right: 10%;
    font-size: 12px;
}
.arrow-button_c a::after {
  content: "";
  display: block;
  position: absolute;
  /*top: calc(50% – 5px);*/
  left: 105%;
  width: 20px;
  height: 5px;
  border: none;
  border-right: 2px solid #000;
  border-bottom: 1px solid #000;
  transform: skew(45deg);
  transition: .3s;
  top: 8px;
}
}

.foot_bunner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
    row-gap: 10px;
    margin-bottom: 5%;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
@media screen and (max-width: 575px) {
.foot_bunner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);    
}
}
.foot_sns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 10px;
    row-gap: 10px;
    margin-bottom: 10px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}
@media screen and (max-width: 575px) {
.foot_sns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);    
}
}
.foot_bunner img,.foot_sns img {
  width: 100%;
}
.foot_bunner audio {
  width: 100%;
}
.foot_bunner audiojs {
  width: 100%;
}

/* footer ボタン */
/*.footer-btn-s {
  display: none;
}*/
@media screen and (max-width: 991px) {
  /*.footer-btn-s.active {
    display: block;
    animation: UpAnime 0.5s forwards;
  }*/
	
  .footer-btn-s {
    position: fixed;
	 /* display: flex;*/
    width: 100%;
    /* right: 10px; */
    bottom: 0px;
    z-index: 9999;    
  }
  .footer-btn {
    
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-btn a {
    display: block;
    color: #fff;
    font-size: 2.5vw;
	  width: 100%;
  }
  .footer-btn li:first-of-type {
    width: 100%;
    background-color: #4D4D4D;
    padding: 10px 0;
    text-align: center;    
  }
  /*.footer-btn li:nth-of-type(2) {
    width: 45%;
    background-color: rgb(142, 143, 195);
    padding: 10px 0;
    text-align: center;
    
  }
   .footer-btn li:nth-of-type(3) {
  width: 10%;
  background: rgb(24, 24, 24);
  padding: 10px 0;
  text-align: center;
  opacity: .9;
} */
}
@media screen and (max-width: 768px) {

	.footer-btn a {
    color: #fff;
    font-size: 3.9vw;
  }
}


/*# 固定ナビ */

.contact_pc{
    position: fixed;
    top: 170px;
    right: 0;
    z-index: 101;
}

.contact_pc li{
    background-position: 0%;
    background-color: #E1E1E1;
    margin-bottom: 20px;
}
.contact_pc li img{
    width: 40px;    
}

/*
.contact_pc li:nth-child(2){
    background-color: #CE7F00;
}*/

.contact_pc li:hover{
    opacity: 0.95;
}


/*@media (max-width: 767px) {
.contact_pc {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 101;
    top: auto;
}

.contact_pc li {
    float: left;
    width: 50.0%;
    background: #EC4E10;	
	text-align: center;
}*/

/*.contact_pc li:nth-child(2) {
    background-color: #CE7F00;
}*/

/*.contact_pc li:nth-child(3) {
    width: 12.8%;
    background: #062275;
}*/

/*.contact_pc li a img {
    max-height: 60px;
    vertical-align: middle;
    margin-top: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
}
}*/


.head_area{
    padding-top: 5%;
    padding-bottom: 5%;
    background-image: url(../images/head_bg.png);
    background-repeat: repeat;
    text-align: center;
}
.head_ttl {
    font-size: 35px;
    color: #000;
    text-align: center;
    background-image: url(../images/border_img.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    padding-bottom: 20px;
    letter-spacing: 0.2em;
    font-family: 'Oswald', sans-serif;
    width: 70%;
    margin-right: auto;
    margin-left: auto;
}
@media (max-width: 575px) {
	.head_ttl {    
    width: 98%;
		font-size: 20px;
}	
}
.head_enttl {
	font-size: 20px;
	color: #000;
	text-align: center;
	font-family: "Noto Serif JP", serif;
	letter-spacing: 0.2em;
	padding: 10px;
}
@media (max-width: 575px) {
	.head_enttl {    
		font-size: 14px;
}	
}
