﻿@charset "UTF-8";
/************************************************

	共通

*************************************************/

.icon-all{
	margin: 0 auto;
	width: auto;
}
.icon-all li{
	float: left;
	margin-top: 15px;
}

.youtube{
	margin-top: 0px !important;
}

.br_sp {
  display: block;
}

.br_sp02 {
  display: none;
}

/* コンテンツ */
.content {
  padding-top: 105px;
}
.content.content_kaso {
  margin-top: 107px;
  padding-top: 0;
  border-top: 2px solid #B9423D;
}

.s-content_wrap {
  padding-top: 100px;
  background: url("../img/img_bg01.jpg") repeat-y left top/100%;
}
.s-content_wrap.s-content_kaso {
  padding-top: 60px;
}

.s-content01 {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 10px;
}

.s-s_content01 {
  max-width: 1000px;
  margin: 0 auto;
}

/* 見出し */
.facility h1 {
  border-left: 20px solid #B9423D;
  font-size: 31px;
  padding-left: 15px;
  margin-bottom: 30px;
}

.facility h2 {
  background: #F7E4D6;
  padding: 20px 15px;
  box-sizing: border-box;
  font-size: 24px;
  margin-bottom: 40px;
}

.facility h3 {
  position: relative;
  font-size: 20px;
  padding-left: 20px;
  margin-bottom: 20px;
}
.facility h3::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #B9423D;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.facility h4 {
	border-left: 2px solid #B9423D;
    padding-left: 10px;
}

.facility h6 {
	font-size:0.9em;

}

/* リスト */
.facility ul {margin-left: 1.5em;}
.facility ul li {list-style-type: disc !important;}
.facility ol {margin-left: 1.5em;}
.facility ol li {list-style-type: decimal;}

/* リンク */

.facility a {color: #b9423d;text-decoration: underline;}
.facility a:hover{text-decoration: none;}


@media screen and (max-width: 767px) {
  .br_sp {
    display: none;
  }

  .br_sp02 {
    display: block;
  }

  /* コンテンツ */
  .content {
    padding-top: 17%;
  }
  .content.content_kaso {
    margin-top: 17.5%;
  }

  .s-content_wrap {
    padding-top: 14.5%;
  }
  .s-content_wrap.s-content_kaso {
    padding-top: 4%;
  }

  /* 見出し */
  .facility h1 {
    border-left-width: 10px;
    font-size: 21px;
    padding-left: 7px;
    margin-bottom: 15px;
  }

  .facility h2 {
    padding: 10px;
    font-size: 18px;
    margin-bottom: 20px;
  }

  .facility h3 {
    font-size: 16px;
    padding-left: 16px;
    margin-bottom: 10px;
  }
  .facility h3::before {
    border-width: 6px 0 6px 12px;
  }
  
   .facility h4 {
	border-left: 2px solid #B9423D;
    padding-left: 10px;
  }
  
  
  .facility img {
  	height: auto;
  	max-width:100%;
  }
  
}
@media screen and (max-width: 414px) {
  .content.content_kaso {
    margin-top: 18%;
  }
}
@media screen and (max-width: 320px) {
  .content.content_kaso {
    margin-top: 18.5%;
  }
}
/************************************************

	ヘッダー

*************************************************/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  padding: 10px 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  z-index: 10;
}
.header .header__logo a {
  transition: opacity .3s;
}
.header .header__logo a:hover {
  opacity: .7;
}
.header .header__sp_btn {
  position: relative;
  width: 30px;
  height: 23px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
  display: none;
}
.header .header__sp_btn .header__sp_btn__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 4px;
}
.header .header__sp_btn .header__sp_btn__bar:nth-of-type(1) {
  top: 0;
}
.header .header__sp_btn .header__sp_btn__bar:nth-of-type(2) {
  top: 10px;
}
.header .header__sp_btn .header__sp_btn__bar:nth-of-type(3) {
  bottom: 0;
}
.header .header__sp_btn.sp_btn_active .header__sp_btn__bar:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.header .header__sp_btn.sp_btn_active .header__sp_btn__bar:nth-of-type(2) {
  opacity: 0;
}
.header .header__sp_btn.sp_btn_active .header__sp_btn__bar:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}
.header .header__nav {
  margin-left: auto;
}
.header .header__nav .header__nav__inner ul {
  display: flex;
  align-items: center;
}
.header .header__nav .header__nav__inner ul li {
  margin-right: 20px;
}
.header .header__nav .header__nav__inner ul li:last-child {
  margin-right: 0;
}
.header .header__nav .header__nav__inner ul li a {
  border-left: 3px solid #B9423D;
  padding: 2px 2px 2px 5px;
  position: relative;
  transition: .3s;
}
.header .header__nav .header__nav__inner ul li a::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #B9423D;
  z-index: -1;
  transition: transform .3s ease;
  transform: scaleX(0);
  transform-origin: bottom right;
}
.header .header__nav .header__nav__inner ul li a:hover {
  color: #fff;
}
.header .header__nav .header__nav__inner ul li a:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.header .header__nav .header__nav__inner ul li .header__nav_twitter {
  border-left: none;
  padding-left: 0;
  transition: opacity .3s;
}
.header .header__nav .header__nav__inner ul li .header__nav_twitter:hover {
  opacity: .7;
}
.header .header__nav .header__nav__inner ul li .header__nav_twitter:hover::before {
  content: none;
}

.header .header__nav .header__nav__inner ul li.menu__none {
  display:none;
}

@media screen and (max-width: 975px) {

	.icon-all{
		width: 300px;
	}
	.icon-all li{
		margin-top: 0px;
		width: 100px;
	}

  .header {
    padding: 0;
  }
  .header .header__sp_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
    background: #fff;
  }
  .header .header__nav {
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    background: #fff;
    padding-top: 106px;
    transform: translateY(-100%);
  }
  .header .header__nav.active {
    height: 100%;
    transform: translateY(0%);
  }
  .header .header__nav .header__nav__inner ul {
    display: block;
    border-top: 1px solid #D0CACA;
  }
  .header .header__nav .header__nav__inner ul li {
    margin-right: 0;
    text-align: center;
  }
  .header .header__nav .header__nav__inner ul li a {
    display: block;
    border-left: none;
    padding-left: 0;
    padding: 10px;
    box-sizing: border-box;
  }
  .header .header__nav .header__nav__inner ul li a::before {
    content: none;
  }
  .header .header__nav .header__nav__inner ul li a:hover {
    color: #635050;
  }
  .header .header__nav .header__nav__inner ul li .header__nav_twitter {
    padding: 15px 0;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    max-width: 37px;
  }
  .header .header__nav .header__nav__inner ul li:nth-child(2n+1) a {
    background: #F5F5F5;
  }
  
  .header .header__nav .header__nav__inner ul li.menu__none {
    display:block;
  }
  
  .header .header__sp_btn {
    display: block;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .header .header__logo {
    width: 90%;
    margin-right: 20px;
  }
  .header .header__logo a:hover {
    opacity: 1;
  }
  .header .header__nav {
    padding-top: 18.5%;
  }
}
/************************************************

	FV

*************************************************/
.fv {
  width: 100%;
  position: relative;
  background: #B9423D;
  padding-bottom: 450px;
}
.fv .fv__content {
  max-width: 1190px;
  margin: 0 auto;
  display: flex;
  position: absolute;
  top: 11%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}
.fv .fv__txt {
  color: #fff;
}
.fv .fv__txt h3 {
  font-size: 47px;
  margin-bottom: 25px;
}
.fv .fv__txt p {
  font-size: 18px;
  line-height: 2.3em;
}
.fv .fv__pic {
  max-width: 582px;
  width: 100%;
}

@media screen and (max-width: 1190px) {
  .fv {
    padding-bottom: 38.5%;
  }
}
@media screen and (max-width: 767px) {
  .fv {
    padding-bottom: 78.5%;
  }
  .fv .fv__content {
    display: block;
    width: 100%;
    top: 8%;
  }
  .fv .fv__txt h3 {
    font-size: 23px;
    margin-bottom: 5px;
  }
}
/************************************************

	お知らせ

*************************************************/
.top_news {
  padding: 0 35px;
  margin-bottom: 85px;
}
.top_news .top_news__ttl {
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1;
}
.top_news .top_news__ttl span {
  font-size: 20px;
  color: #FF0000;
  margin-left: 25px;
}
.top_news .top_news__list_wrap {
  border-top: 1px solid #D0CACA;
  border-bottom: 1px solid #D0CACA;
}
.top_news .top_news__list {
  border-bottom: 1px solid #D0CACA;
}
.top_news .top_news__list a {
  display: flex;
  align-items: flex-start;
  padding: 10px 20px;
  position: relative;
  transition: opacity .3s;
}
.top_news .top_news__list a:hover {
  opacity: .7;
}
.top_news .top_news__list a::after {
  content: "＞";
  display: block;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
}
.top_news .top_news__list:last-child {
  border-bottom: none;
}
.top_news .top_news__list .top_news__date {
  width: 90px;
  flex-basis: 90px;
  flex-shrink: 0;
}
.top_news .top_news__list .top_news__date_ttl {
  margin-left: 50px;
  font-weight: bold;
}
.top_news .top_news__more_btn {
  margin-top: 10px;
  text-align: right;
}
.top_news .top_news__more_btn a {
  color: #A05747;
  font-weight: bold;
  display: inline-block;
  position: relative;
}
.top_news .top_news__more_btn a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #A05747;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
.top_news .top_news__more_btn a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

@media screen and (max-width: 767px) {
  .top_news {
    padding: 0;
    margin-bottom: 11%;
  }
  .top_news .top_news__ttl {
    font-size: 20px;
  }
  .top_news .top_news__ttl span {
    font-size: 15px;
    margin-left: 15px;
  }
  .top_news .top_news__list a {
    display: block;
    padding: 10px 25px 10px 10px;
    font-size: 14px;
  }
  .top_news .top_news__list a:hover {
    opacity: 1;
  }
  .top_news .top_news__list .top_news__date_ttl {
    margin-left: 0;
    font-size: 15px;
  }
  .top_news .top_news__more_btn a {
    font-size: 15px;
    position: relative;
    padding-left: 18px;
  }
  .top_news .top_news__more_btn a::before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 14px;
    border-color: transparent transparent transparent #A05747;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
  .top_news .top_news__more_btn a::after {
    content: none;
  }
}
/************************************************

	LIFE with ARTS and CULTURE

*************************************************/
.top_LAC__ttl {
  text-align: center;
  max-width: 638px;
  margin: 0 auto 35px;
}
.top_LAC__ttl span {
  display: block;
  margin-top: 10px;
  font-size: 23px;
  letter-spacing: .3em;
}

.top_LAC__list {
  border-top: 2px solid #B9423D;
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
}

.top_LAC__list_box {
  margin-right: calc(12% / 2);
  width: 47%;
  padding-bottom: 45px;
  border-bottom: 1px solid #B9423D;
  margin-bottom: 45px;
}
.top_LAC__list_box:nth-child(2n) {
  margin-right: 0;
}
.top_LAC__list_box .top_LAC__list_box__ttl {
  text-align: center;
  margin-bottom: 20px;
  font-size: 30px;
  color: #635050;
  line-height: 1;
}
.top_LAC__list_box .top_LAC__list_box__ttl span {
  font-size: 16px;
  display: inline-block;
  margin-bottom: 5px;
}
.top_LAC__list_box .top_LAC__list_box__ttl02 {
  font-size: 17px;
  line-height: 1.5em;
  color: #B9423D;
  width: 100%;
  position: relative;
  padding-bottom: 10px;
}
.top_LAC__list_box .top_LAC__list_box__ttl02 span {
  font-size: 21px;
}
.top_LAC__list_box .top_LAC__list_box__ttl02::after {
  content: "";
  display: block;
  background: url("../img/img_ttl_border01.png") no-repeat right bottom/100%;
  width: 100%;
  padding-bottom: 13.5%;
  position: absolute;
  bottom: 0;
}
.top_LAC__list_box .top_LAC__list_box__link01 {
  width: 100%;
  margin-top: auto;
}
.top_LAC__list_box .top_LAC__list_box__link01 a {
  display: block;
  background: #B9423D;
  border: 1px solid #B9423D;
  padding: 15px 25px 15px 10px;
  box-sizing: border-box;
  color: #fff;
  font-size: 13px;
  position: relative;
  transition: .3s;
}
.top_LAC__list_box .top_LAC__list_box__link01 a::after {
  content: "";
  display: block;
  background: url("../img/ico_link01.png") no-repeat right center/14px 11px;
  width: 14px;
  height: 11px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4%;
}
.top_LAC__list_box .top_LAC__list_box__link01 a:hover {
  background: #fff;
  color: #B9423D;
}
.top_LAC__list_box .top_LAC__list_box__link01 a:hover::after {
  background: url("../img/ico_link01_hover.png") no-repeat right center/14px 11px;
}
.top_LAC__list_box .top_LAC__list_box__link02 {
  width: 100%;
  margin-top: auto;
}
.top_LAC__list_box .top_LAC__list_box__link02 a {
  display: block;
  background: #fff;
  border: 1px solid #635050;
  padding: 15px 15px 15px 10px;
  box-sizing: border-box;
  font-size: 13px;
  position: relative;
  transition: .3s;
}
.top_LAC__list_box .top_LAC__list_box__link02 a::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid;
  border-right: 1px solid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 4%;
}
.top_LAC__list_box .top_LAC__list_box__link02 a:hover {
  background: #635050;
  color: #fff;
}
.top_LAC__list_box .top_LAC__list_box__link03 {
  width: 100%;
  margin-top: auto;
}
.top_LAC__list_box .top_LAC__list_box__link03 a {
  display: block;
  background: #fff;
  border: 1px solid #635050;
  padding: 15px 25px 15px 10px;
  box-sizing: border-box;
  color: #635050;
  font-size: 13px;
  position: relative;
  transition: .3s;
}
.top_LAC__list_box .top_LAC__list_box__link03 a::after {
  content: "";
  display: block;
  background: url("../img/ico_link02.png") no-repeat right center/14px 11px;
  width: 14px;
  height: 11px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4%;
}
.top_LAC__list_box .top_LAC__list_box__link03 a:hover {
  background: #635050;
  color: #fff;
}
.top_LAC__list_box .top_LAC__list_box__link03 a:hover::after {
  background: url("../img/ico_link02_hover.png") no-repeat right center/14px 11px;
}
.top_LAC__list_box .top_LAC__list_box__2col {
  display: flex;
  justify-content: space-between;
  flex-flow: row-reverse;
}
.top_LAC__list_box .top_LAC__list_box__2col .top_LAC__list_box__2col_box {
  width: 48%;
  margin-right: calc(2% / 2);
}
.top_LAC__list_box .top_LAC__list_box__2col .top_LAC__list_box__2col_box:last-child {
  margin-right: 0;
}
.top_LAC__list_box .top_LAC__list_box__2col .top_LAC__list_box__2col_box.lac_ttl_box01 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.top_LAC__list_box .top_LAC__list_box__2col .top_LAC__list_box__2col_box.lac_ttl_box01 .top_LAC__list_box__ttl02 {
  margin-bottom: 15px;
}
.top_LAC__list_box .top_LAC__list_box__2col .top_LAC__list_box__2col_box.lac_ttl_box02 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.top_LAC__list_box .top_LAC__list_box__sns {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.top_LAC__list_box .top_LAC__list_box__sns li {
  margin-right: 15px;
}
.top_LAC__list_box .top_LAC__list_box__sns li:last-child {
  margin-right: 0;
}
.top_LAC__list_box .top_LAC__list_box__sns li a {
  transition: opacity .3s;
}
.top_LAC__list_box .top_LAC__list_box__sns li a:hover {
  opacity: .7;
}
.top_LAC__list_box .top_LAC__list_box__link_list {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.top_LAC__list_box .top_LAC__list_box__link_list .top_LAC__list_box__link_list__box {
  width: 33%;
  margin-right: calc(5% / 3);
}
.top_LAC__list_box .top_LAC__list_box__link_list .top_LAC__list_box__link_list__box:last-child {
  margin-right: 0;
}
.top_LAC__list_box .top_LAC__list_box__link_list02 {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.top_LAC__list_box .top_LAC__list_box__link_list02 .top_LAC__list_box__link_list__box {
  width: 49%;
  margin-right: calc(4% / 2);
}
.top_LAC__list_box .top_LAC__list_box__link_list02 .top_LAC__list_box__link_list__box:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1075px) {
  .top_LAC__list_box .top_LAC__list_box__link_list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .top_LAC__list_box .top_LAC__list_box__link_list .top_LAC__list_box__link_list__box {
    width: 49%;
    margin-right: calc(4% / 2);
    margin-bottom: 10px;
  }
  .top_LAC__list_box .top_LAC__list_box__link_list .top_LAC__list_box__link_list__box:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .top_LAC__ttl span {
    margin-top: 5px;
    font-size: 18px;
  }

  .top_LAC__list {
    display: flex;
    padding-top: 20px;
  }

  .top_LAC__list_box {
    width: 100%;
    margin: 0 auto 25px;
    padding-bottom: 25px;
  }
  .top_LAC__list_box .top_LAC__list_box__ttl {
    font-size: 25px;
    display: none;
  }
  .top_LAC__list_box .top_LAC__list_box__ttl02 {
    display: none;
  }
  .top_LAC__list_box .top_LAC__list_box__ttl02 span {
    font-size: 20px;
  }
  .top_LAC__list_box .top_LAC__list_box__2col {
    display: block;
  }
  .top_LAC__list_box .top_LAC__list_box__2col .top_LAC__list_box__2col_box {
    width: 80%;
    margin: 0 auto;
  }
  .top_LAC__list_box .top_LAC__list_box__2col .top_LAC__list_box__2col_box:last-child {
    margin-right: auto;
  }
  .top_LAC__list_box .top_LAC__list_box__2col .top_LAC__list_box__2col_box.lac_ttl_box01 {
    display: block;
    margin-top: 15px;
    width: 90%;
  }
  .top_LAC__list_box .top_LAC__list_box__2col .top_LAC__list_box__2col_box.lac_ttl_box01 .top_LAC__list_box__ttl02 {
    font-size: 16px;
    padding-bottom: 3.5%;
    margin-bottom: 15px;
    display: none;
  }
  .top_LAC__list_box .top_LAC__list_box__2col .top_LAC__list_box__2col_box.lac_ttl_box01 .top_LAC__list_box__ttl02 span {
    font-size: 20px;
  }
  .top_LAC__list_box .top_LAC__list_box__2col .top_LAC__list_box__2col_box.lac_ttl_box02 {
    width: 90%;
    margin-top: 15px;
    display: none;
  }
  .top_LAC__list_box .top_LAC__list_box__link01 a {
    font-size: 14px;
  }
  .top_LAC__list_box .top_LAC__list_box__link01 a::after {
    background-size: 17px 14px;
    width: 17px;
    height: 14px;
  }
  .top_LAC__list_box .top_LAC__list_box__link01 a:hover {
    background: #fff;
    color: #B9423D;
  }
  .top_LAC__list_box .top_LAC__list_box__link01 a:hover::after {
    background: url("../img/ico_link01.png") no-repeat right center/17px 14px;
  }
  .top_LAC__list_box .top_LAC__list_box__link02 a {
    font-size: 14px;
  }
  .top_LAC__list_box .top_LAC__list_box__link02 a:hover {
    background: #fff;
    color: #635050;
  }
  .top_LAC__list_box .top_LAC__list_box__link03 a {
    font-size: 14px;
  }
  .top_LAC__list_box .top_LAC__list_box__link03 a::after {
    background-size: 17px 14px;
    width: 17px;
    height: 14px;
  }
  .top_LAC__list_box .top_LAC__list_box__link03 a:hover {
    background: #fff;
    color: #635050;
  }
  .top_LAC__list_box .top_LAC__list_box__link03 a:hover::after {
    background: url("../img/ico_link02.png") no-repeat right center/17px 14px;
  }
  .top_LAC__list_box .top_LAC__list_box__sns li {
    width: 10%;
    margin-right: 25px;
  }
  .top_LAC__list_box .top_LAC__list_box__link_list {
    display: block;
    width: 90%;
    margin: 15px auto 0;
  }
  .top_LAC__list_box .top_LAC__list_box__link_list .top_LAC__list_box__link_list__box {
    width: 100%;
    margin-right: 0;
  }
  .top_LAC__list_box .top_LAC__list_box__link_list02 {
    display: block;
    width: 90%;
    margin: 20px auto 0;
  }
  .top_LAC__list_box .top_LAC__list_box__link_list02 .top_LAC__list_box__link_list__box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
/************************************************

	フッター

*************************************************/
.footer {
  margin-top: 95px;
  background: #FAEEE5;
  padding: 75px 10px 65px;
}
.footer .footer__ttl {
  text-align: center;
  line-height: 1;
  margin-bottom: 15px;
}
.footer .footer__ttl span {
  font-size: 25px;
}
.footer .footer__address {
  text-align: center;
  margin-bottom: 15px;
}
.footer .footer__tell {
  text-align: center;
  font-weight: bold;
}
.footer .footer__link {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
.footer .footer__link li {
  margin-right: 15px;
}
.footer .footer__link li:last-child {
  margin-right: 0;
}
.footer .footer__link li a {
  text-decoration: underline;
}
.footer .footer__link li a:hover {
  text-decoration: none;
}
.footer .footer__copyright {
  margin-top: 75px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .footer {
    margin-top: 45px;
    padding: 40px 10px 35px;
  }
  .footer .footer__ttl span {
    display: block;
    margin-top: 10px;
  }
  .footer .footer__link {
    display: block;
    margin-top: 35px;
  }
  .footer .footer__link li {
    margin-top: 10px;
    margin-right: 0;
    text-align: center;
  }
  .footer .footer__link li:first-child {
    margin-top: 0;
  }
  .footer .footer__link li a:hover {
    text-decoration: underline;
  }
  .footer .footer__copyright {
    margin-top: 40px;
    font-size: 13px;
  }
}
/************************************************

	リンクボタン

*************************************************/
.button__link01 a {
  min-width: 200px;
  margin: 10px 0 15px 0;
  display: inline-flex;
  background: #B9423D;
  border: 1px solid #B9423D;
  padding: 15px 25px 15px 10px;
  box-sizing: border-box;
  color: #fff;
  font-size: 13px;
  position: relative;
  transition: .3s;
  text-decoration: none;
}
.button__link01 a::after {
  content: "";
  display: inline-flex;
  background: url("../img/ico_link01.png") no-repeat right center/14px 11px;
  width: 14px;
  height: 11px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 4%;
}
.button__link01 a:hover {
  background: #fff;
  color: #B9423D;
}
.button__link01 a:hover::after {
  background: url("../img/ico_link01_hover.png") no-repeat right center/14px 11px;
}
.button__link02 a {
  min-width: 200px;
  margin: 10px 0 15px 0;
  display: inline-flex;
  background: #fff;
  border: 1px solid #635050;
  padding: 15px 25px 15px 10px;
  box-sizing: border-box;
  color: #635050;
  font-size: 13px;
  position: relative;
  transition: .3s;
  text-decoration: none;
}
.button__link02 a::after {
  content: "";
  display: inline-flex;
  width: 6px;
  height: 6px;
  border-top: 1px solid;
  border-right: 1px solid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 4%;
}
.button__link02 a:hover {
  background: #635050;
  color: #fff;
}
/************************************************

	Q&A

*************************************************/
.accordion-QA {
    max-width: 95%;
    margin-bottom: 5px;
    border-bottom: 2px solid #F7E4D6;
}
.accordion-QA summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    font-weight: 600;
    cursor: pointer;
}
.accordion-QA summary::before,
.accordion-QA p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}
.accordion-QA summary::before {
    color: #B9423D;
    content: "Q";
}
.accordion-QA summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #B9423D;
    border-right: 3px solid #B9423D;
    content: '';
    transition: transform .5s;
}
.accordion-QA[open] summary::after {
    transform: rotate(225deg);
}
.accordion-QA p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    transition: transform .5s, opacity .5s;
}
.accordion-QA[open] p {
    transform: none;
    opacity: 1;
}
.accordion-QA p::before {
    color: #B9423D;
    line-height: 1.2;
    content: "A";
}