@charset "utf-8";
/* CSS Document */
/* 目次 
1. リセット
2. 共通
*/
/**************************************************
1. リセット
**************************************************/
* {
  margin: 0;
  padding: 0;
  line-height: 1.0;
}
article, aside, details, figcaption, figure, footer, pc-header, main, menu, nav, section, summary {
  display: block;
}
html {
  font-size: 62.5%;
}
/*
body {font: normal 1.4rem/1.6  "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Osaka, sans-serif;
  color:var(--color--key-bk);}
*/
body {
  font-weight: normal;
  line-height: 1.6;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, Osaka, sans-serif;
  color: var(--color--key-bk);
}
html, body {
  margin: 0;
  padding: 0;
caret-color: transparent;/*キャレットを非表示*/
}
table, thead, tbody, tr, th, td {
  border-collapse: collapse;
  border-spacing: 0;
}
td, th {
  padding: 0;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
}
/*a:hover, a:active, a:focus {color: var(--color--key-bk)83f;}*/
img {
  vertical-align: bottom;
  border: 0;
}
i, cite, em, var, address, dfn {
  font-style: normal;
}
*, *:before, *:after {
  box-sizing: border-box;
}
small {
  font-size: 12px;
  font-size: 1.2rem;
}
button, select {
  text-transform: none;
}
/* IE用 */
a {
  background-color: transparent;
}
a:active, a:hover {
  outline: 0;
}
button {
  overflow: visible;
}
textarea {
  overflow: auto;
}
/* firefox用リンクをクリックした後に表示される「枠線」を消す */
a, a:focus {
  outline: none;
}
/* iOSでTEL link無効 */
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
/*スクロールバーの領域表示確保*/
html {
  overflow-y: scroll;
}
/* body */
body {
  width: 100%;
}
/*スライダーの画像の右にできる余白を隠す*/
/* #container{overflow: hidden;} */
/*タブ切り替え*/
.ChangeElem_Panel {
  display: none;
}
/* Androidでタップ時、オレンジの枠を消す */
*, button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}
/**************************************************
2. 共通
**************************************************/
/* clearfix */
/*リンク*/
a:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
/*画像*/
img {
  width: 100%;
  height: auto;
}
a:hover img, a:active img {
  opacity: 0.8;
}
/* Youtube */
.movie-wrap {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
}
.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*------------------------------
クリック範囲の拡大
------------------------------*/
.range {
  position: relative;
}
.range a::before {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  content: "";
}
.range:hover, .range:active {
  opacity: 0.9;
}
/*------------------------------
テキスト ※変更不可
------------------------------*/
.bold {
  font-weight: bold;
}
.text-l {
  text-align: left;
}
.text-r {
  text-align: right;
}
.text-c {
  text-align: center;
}
.font-75 {
  font-size: 75%;
}
.font-80 {
  font-size: 80%;
}
.font-90 {
  font-size: 90%;
}
.font-150 {
  font-size: 150%;
}
/* 色 */
.white {
  color: var(--color--white);
}
.gold {
  color: var(--color--key-blue);
}
/*
.blue { color: #5780ba;}
.pink { color: #ca6175;}
*/
/* テキスト用余白 */
.ma-b05em {
  margin-bottom: 0.5em;
}
.ma-b10em {
  margin-bottom: 1em;
}
.ma-b15em {
  margin-bottom: 1.5em;
}
/*下線*/
.marker-yellow {
  background: linear-gradient(transparent 60%, #fce774 0%);
}
/* 1行目以降インデント */
.indentback {
  text-indent: -1em;
  padding-left: 1em;
}
/*------------------------------
テキストリンク ※変更不可
------------------------------*/
a.text-link:link, a.text-link:visited, a.text-link:hover, a.text-link:active {
  color: var(--color--key-bk);
  text-decoration: underline;
}
a.text-link:hover {
  opacity: 0.8;
}
/*------------------------------
リスト表示 ※変更不可
------------------------------*/
/* li一行目以降インデント */
ul.indent1 > li {
  text-indent: -1em;
  padding-left: 1em;
}
/* disc・*/
ul.disc {
  margin-left: 2em;
}
ul.disc > li {
  list-style: disc;
  margin: 0.5em 0;
}
/* 123 */
ol.decimal {
  margin-left: 2em;
}
ol.decimal > li {
  list-style: decimal;
  margin: 0.5em 0;
}
/* abc */
ol.lower-latin {
  margin-left: 2em;
}
ol.lower-latin > li {
  list-style: lower-latin;
  margin-bottom: 1em;
}
/* disc-original*/
ul.disc-original > li {
  margin: 0.5em 0;
  padding-left: 1em;
  line-height: 1.5;
  position: relative;
}
ul.disc-original > li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color--key-blue);
  position: absolute;
  top: 8px;
  left: 0;
}
/*--------------------------------------------------
画像スクロール共通 .sp-scroll
----------------------------------------------------*/
@media screen and (max-width: 699px) {
  .sp-scroll p {
    margin: 0 auto 5px;
    width: 700px;
    height: auto;
  }
  /*スクロール*/
  .sp-scroll {
    overflow: auto;
  }
  /*スクロールバーの横幅指定*/
  .sp-scroll::-webkit-scrollbar {
    height: 10px;
  }
  /*スクロールバーの背景色・角丸指定*/
  .sp-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #eee;
  }
  /*スクロールバーの色・角丸指定*/
  .sp-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #aaa;
  }
}
/*--------------------------------------------------
テーブルスクロール共通 .sp-scroll-t
----------------------------------------------------*/
.sp-scroll-t table {
  margin: 0 0 10px;
}
/*スクロール*/
.sp-scroll-t {
  width: 100%;
  overflow: auto;
  margin-bottom: 10px;
}
/*スクロールバーの横幅指定*/
.sp-scroll-t::-webkit-scrollbar {
  height: 10px;
}
/*スクロールバーの背景色・角丸指定*/
.sp-scroll-t::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #eee;
}
/*スクロールバーの色・角丸指定*/
.sp-scroll-t::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #aaa;
}
/*================================================
.s_01 .accordion_one
=================================================*/
.s_01 .accordion_one {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
.s_01 .accordion_one .accordion_header {
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
}
.s_01 .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: -5px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.s_01 .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.s_01 .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.s_01 .accordion_one .accordion_header .i_box .one_i:before, .s_01 .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: '';
  background-color: var(--color--key-bk);
  border-radius: 10px;
  width: 20px;
  height: 1px;
  position: absolute;
  top: 8.5px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.s_01 .accordion_one .accordion_header .i_box .one_i:before {
  width: 1px;
  height: 20px;
  top: 0;
  left: 8.5px;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.s_01 .accordion_one .accordion_inner {
  display: none;
  box-sizing: border-box;
}
.s_01 .accordion_one .accordion_inner .box_one {
  height: 300px;
}
.s_01 .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .s_01 .accordion_one .accordion_header {
    font-size: 1.125rem;
  }
  .s_01 .accordion_one .accordion_header .i_box {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}
@media screen and (max-width: 767px) {
  .s_01 .accordion_one .accordion_header {
    font-size: 1.125rem;
    text-align: left;
    padding: 16px 60px 16px 24px;
  }
}

