@charset "UTF-8";




.inner_Content{
	width: 100%;
	padding-top: 10vw;
	background-color: #fff;
	font-size: 3.6vw;
	line-height: 7.2vw;
	font-weight: 500;
	color: #18293c;
}
.inner_Content.gray{
	background-color: #eeedee;
}


	
/*アコーディオン*/
.accordion {
	display: block;
	margin: 0 0vw 0 0vw;
	padding: 0 7.5vw 0 0;
	font-size: 100%;
}
.accordion p{
	padding-bottom: 0vw;
	width: 100%;
}
.toggle {
  display: none;
}
.faq {
  position: relative;
}
.question,.answer {
  transform: translateZ(0);
  transition: all 0.3s;
}
.question {
	margin: 0 10vw 5vw 10vw;
	border-radius: 2vw;
	border: solid 0.5vw #18293c;
  padding: 3vw 10vw 3vw 3vw;
  display: block;
  color: #18293c;
	cursor: pointer;
	line-height: 5vw;
	background-color: #fff;
}
.question > p{
  display: block;
	cursor: pointer;
	line-height: 5vw;
	margin: 2vw 0vw 0 0vw;
}
.question > span {
	display: block;
    font-size: 120%;
	margin: 0 0 0vw;
    line-height: 5vw;
  font-weight: 600;	
}
.question:after,.question:before {
  content: "";
  position: absolute;
  right: 7.5vw;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 2px;
  height: 4vw;
  background-color: #18293c;
  transition: all 0.3s;
}
.question:after {
  transform: rotate(90deg);
}
.answer {
  max-height: 0;
  overflow: hidden;
}
.answer > .answerContent {
  margin-top: 2.5vw;
  padding: 0vw 3vw 0vw 10vw;
}
.answer > .answerContent p{
  margin-bottom: 10vw;
}
.answer > .answerContent p span{
	display: block;
    font-size: 90%;
	margin: 5vw 0 0vw;
	line-height: 5vw;
	font-weight: 400;	
}
.toggle:checked + .question + .answer {
  max-height: 10000px;/*コンテンツ高さ調整*/
  transition: all 1.5s;
}
.toggle:checked + .question:before {
  transform: rotate(90deg) !important;
}
.answerContent >.boxSet {
	margin: 0;
	padding: 0 0vw 4vw 0vw;
}





/*ニュース*/

.news_set {
    margin-bottom: 5vw;
    border-radius: 2vw;
    box-shadow: 0 2vw 2vw -2vw rgb(0 0 0 / 20%);
    background-color: #fff;
}

.news_set summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 1em;
    color: #18293c;
    font-weight: 600;
	line-height: 6vw;
	font-size: 100%;
    cursor: pointer;
}

.news_set summary::-webkit-details-marker {
    display: none;
}

.news_set summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 3vw;
    height: 3vw;
    margin-left: 5vw;
    border-bottom: 1vw solid #333333;
    border-right: 1vw solid #333333;
    content: '';
    transition: transform .3s;
}

.news_set[open] summary::after {
    transform: rotate(225deg);
}

.news_set p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #18293c;
    transition: transform .5s, opacity .5s;
}

.news_set[open] p {
    transform: none;
    opacity: 1;
}
