@charset "UTF-8";

@import url('http://fonts.googleapis.com/earlyaccess/cwtexyen.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+SC:wght@100..900&family=Noto+Sans+TC:wght@100..900&display=swap');
html:lang(jp) {
  font-family: "Noto Sans JP", sans-serif;
}

html:lang(zh-Hant) {
  font-family: cwTeXYen, sans-serif;
}

html:lang(zh-Hans) {
  font-family: "Noto Sans SC", sans-serif;
}

html:lang(en) {
  font-family: "Rethink Sans", sans-serif;
}

/* ================================================
reset
================================================ */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  height: 100%;
  overflow-y: scroll; 
  color: var(--text-color);
  
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-thumb {
  background:#bdbdbd;
}



body, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, ul, li {
  margin: 0;
  padding: 0;
  font-size: inherit;
}

header, nav, footer, section {
  display: block;
}

a {
  color: var(--accent-color-dark);
  text-decoration: none;
  -webkit-transition: .2s;
  transition: .2s;
}

img {
  border: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

body.is-open {
  overflow: hidden;
}


.text_center{text-align: center;}


/* var color */
:root {
  --bg-color: #fff;
  --text-color: #232323;
  --accent-color: #dec69c;
  --accent-color-light: #315875;
  --accent-color-dark: #f1f8fc;
  --base-color: #783e28;
  --base-heading-color:#c09045;
  --base-kakomi-color: #41474d;
  --base-color-light: #3a5385;
  --base-color-dark: #977f3d;
  --container-width: auto;
  --headline-lineheight: 1.4;
  --base-lineheight: 1.7;
  --point-color:  #b1c9de;

  
}


/* ================================================
rem
================================================ */
html {
  font-size: 625%;
}

@media (min-width: 751px) and (max-width: 750px) {
  html {
    font-size: calc(100vw / 12.8);
  }
}


@media (min-width: 751px) and (max-width: 1000px) {
  html {
    font-size: calc(100vw / 9.8);
  }
}


@media (max-width: 750px) {
  html {
    font-size: calc(100vw / 7.67);
  }
}

/* ================================================
text-shadow
================================================ */


/* ================================================
layout
================================================ */



body {
	/*height: 100%;*/
	line-height: 1.6;
	background: url(../images/common/background.jpg);
	background-attachment:fixed;
	background-size: cover;
	font-size: .18rem;

}

@media (max-width: 750px) {
  body {
    font-size: .24rem;
  }
}


.wrapper {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 1200px;
  background: url(../images/common/wrapperbg.jpg) center top repeat-y;
  background-size: 100%;
}

@media (max-width: 750px) {

.wrapper {
  background-size: 140%;
}

}

@media (min-width: 751px) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.contents {/*bodyの背景色*/
  margin: 0 auto;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  color: #fff;
  background: rgba(0,0,0,0.5);
  
}

@media (min-width: 751px) {
  .contents {
    margin: 0 0 0 auto;
    padding: .25rem/*.3rem*/ .5rem;
    width: calc(100% - 240px);

  -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 750px) {
  .contents {
    padding: 1.4rem .3rem;
  background-size: 200%;
  }
}

.header_title {
  text-align: center;
  position: relative;
  padding: 0.2em 0.5em;
  margin: 0 auto 1em;
  font-size: 1em;
  display: block; 
  width: 80%;
  color: var(--accent-color-dark);
}

.header_title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.3em;
  height: 0.6em;
  /* background: var(--accent-color-light); */
  transform: skewX(-10deg); 
  z-index: -1;
}

.sidebar, .sidebar_index {
  -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 50;
  width: 100%;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: radial-gradient(rgba(27, 79, 123, 0.2), rgba(27, 79, 123, 0.3));
}

.sidebar::-webkit-scrollbar {
  display: none;
}
.sidebar_index::-webkit-scrollbar {
  display: none;
}

@media (min-width: 751px) {
  .sidebar, .sidebar_index {
    width: 240px;
    height: 100%;
  }
  .sp_only{display: none;}
}

.sidebar .qr,
.sidebar_index .qr {
  margin: 26px 0 0 0;
  color: var(--accent-color-dark);
  font-weight: bold;
  font-size: 12px;
  text-align: center;
    padding-bottom: 2em;
}


@media (max-width: 750px) {
  .sidebar .qr,
.sidebar_index .qr {
    display: none;
  }
  .pc_only{display: none;}
}

.sidebar .qr img,
.sidebar_index .qr  img {
  margin: 0 0 20px 0;
  width: 82px;
}


.sidebar .portaltop,
.sidebar_index .portaltop {/*Manual Topへ*/
  margin: 12px;
    padding: 6px;
  font-size: 14px;
  text-align: center;
  background:#964718;
  cursor: pointer;
  border-radius: 10px;
  border: 2px solid #ccc;
  color: #ccc;
}

.sidebar .portaltop a,
.sidebar_index .portaltop a{
  color: var(--accent-color-dark) !important;
}


.sidebar .home,
.sidebar_index .home {/*Manual Topへ*/
  margin: 12px;
    padding: 6px;
  font-size: 14px;
  text-align: center;
    background:#000;
  cursor: pointer;
  border-radius: 10px;
    border: 2px solid #ccc;
    color: #ccc;
}
.home div::before {
    content: '';
    display: inline-block;
    width: 1.2em;
    min-width: 1.2em;
    height: 0.8em;
    background: url(../images/common/to_home.png) no-repeat center / contain;
    transform: scaleX(-1);
    filter: saturate(0);
    margin-right: 0.5em;
    border: none;
}

.sidebar .home a,
.sidebar_index .home a {
  color: var(--accent-color-dark) !important;
  padding: 0.5em 0;
}


#quartet nav dd{
  display: block;
}


#quartet table th{
      width: 12em;
}


@media (max-width: 750px) {
.sidebar .portaltop,
.sidebar_index .portaltop {
  font-size: .3rem;
  padding:0;
}
.sidebar .home,
.sidebar_index .home{
  font-size: .3rem;
  padding:0.5em;
}
}


/* ================================================
nav
================================================ */
nav {
  line-height: 1;
  text-align: center;
  letter-spacing: .02em;

}

@media (min-width: 751px) {
  nav {
    /*padding: 10px;*/
    display: block !important;
     font-size: .15rem; 
  }

.header_logo{
  width: 80%;
  margin: 1em auto 0;
}
}

@media (max-width: 750px) {
  nav {
    padding: .1rem;
    display: none;
    background: #111827;
    font-weight: bold;
    font-size: .3rem; 
  }
}


nav dl,nav ul{margin: 0 0 0 0;  border-top: 1px solid #b88839;}

nav dl + dl{
      border-bottom: 1px solid #b88839;
}

nav dt {
	color:#fff;
	cursor: pointer;
	-webkit-transition: .2s;
	transition: .2s;
	cursor:pointer;
  background-repeat: no-repeat, repeat-x;
  background-size: 100% 100%;
  /* background-position: center bottom, center bottom; */
  background-image: url(../images/common/menu-bg_icon.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 0 0;
}

nav dt a {
  pointer-events: none;
	margin:0;
	color:#fff !important;
	text-decoration:none;
	display:block;
}


nav dt a.enable_link    { pointer-events: auto; }


nav dt:hover {
  filter: brightness(1.3);
}





nav dd {
display: none;
 background: none;
}

nav dd a {
}

nav dd a.current {/*navの現在p*/
	  background: var(--accent-color-light);
}

@media (max-width: 750px) {
 .toggle { background-image: linear-gradient(#64331a, #9f5b34); }

  nav dd a.current {
	 background:var(--accent-color-light);
  }
}

nav dd a:hover {/*使用中*/
  color: var(--accent-color);
  opacity: 1.0;
	background:var(--accent-color-light);
}

nav a {
  padding: 1em 0.5em;
  display: block;
}

nav dd ul li{
	width: 100%;
	border-bottom: 1px var(--accent-color-light) solid;
	margin:0 1em 0em 0;
  background-color: #111827;
}
nav dd ul li img {
	height:120%;
	padding:0px;
	margin:0px 5px ;
	vertical-align: middle;
  max-height: 2em;
  width: auto;
}


/* ================================================
header
================================================ */
@media (max-width: 750px) {
  header {
    padding: 0 .8rem 0 .3rem;
    height: 1.2rem;
    display: flex;
    align-items: center;
    background: #1b4f7b;
  }
  .header_logo{
    width: 23%;
    display: inline-block;}
  .header_title{
    width: 40%;
    margin: 0;

          }
}

header a {
  line-height: 1.2;
  font-weight: bold;
}

header a:hover {
}

@media (min-width: 751px) {
  header a {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 16px;    
  }
    


}

header a span {
  display: none;
}

@media (max-width: 750px) {
  header a span {
    display: block;
  }

.sidebar nav,
.sidebar_index nav {
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2rem;
}
}

header .home_icon    { width: 10%; margin-right: 0.5em; }
header .lang_icon    { position: absolute; width: 6%; right: 1.8rem; }
header .home_icon img   { max-width: 50px; }
header .toMnlTop　{}

.lang_short_icon { width: 7%; margin-right: 0.5em; }


header .toggle {
  position: absolute;
  top: .1rem;
  right: .1rem;
  width: 1rem;
  height: 1rem;
  background-color: var(--accent-color);
  cursor: pointer;
}

@media (min-width: 751px) {
  header .home_icon,
  header .toggle ,
  header .toMnlTop,
  header .lang_icon {
    display: none;
  }
}

header .toggle.open span {
  background: none;
}

header .toggle.open span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

header .toggle.open span::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

header .toggle span {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: .4rem;
  height: .02rem;
  background: #fff;
  -webkit-transition: .2s;
  transition: .2s;
}

header .toggle span::before, header .toggle span::after {
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: .02rem;
  content: '';
  background: #fff;
  -webkit-transition: .2s;
  transition: .2s;
}

header .toggle span::before {
  -webkit-transform: translateY(-0.08rem);
          transform: translateY(-0.08rem);
}

header .toggle span::after {
  -webkit-transform: translateY(0.08rem);
          transform: translateY(0.08rem);
}

.nav_title{
  margin-bottom: 1em;
}

.nav_title{
  border-left: 4px var(--base-color) solid;
}


/* ================================================
言語切り替え横並び
================================================ */

.nav_lang_list {
    width: 90%;
  margin: auto;
  /*margin-bottom: 0.25em;*/
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1em;
}

.nav_lang_list a{
  color:#f3c247;
text-decoration: underline;}

.nav_lang_list dd{
    display: flex;
    align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: .2s;
  gap: .05em;
   
}
.lang-btn{
  font-size: 0.15rem;
  line-height: 0.75;
  display: inline-block;
  padding:0.1rem 0.1rem;
  text-align: center;
}


@media (max-width: 751px) {
.lang-btn{
  font-size: 0.25rem;
}
}


.lang:hover{
  color:#848484;
  background-color: #2e2e2e;
}
    
@media (max-width: 750px) {   
.nav_lang_list {
  padding: 1em 0;
}
.lang{
  font-size: 0.3rem;
}
}

/* ================================================
言語切り替えプルダウン 今は使ってない
================================================

.lang_head{
  width: 90%;
  cursor: pointer;
  margin: auto;
  margin-bottom: 1em;
}
.lang_head{
  position: relative;
  margin: 0 auto;
  padding: 5% 0;
  width: 80%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: .8em;
  background: #393939;
  color: #fff;
  cursor: pointer;
  border-radius: 10px;
  line-height: 1.4;
  display: flex;
  transition: .2s;
  gap: .3em;
}
.lang_head:hover{
    filter: brightness(1.3);
}

.lang_head img{
  width: 0.2rem;
  min-width: 0.2rem;
  height: auto;
  margin-left: -0.1rem;
}

.nav_lang_list dd{
  margin-top: .15rem;
  color: #fff;
}
@media (max-width: 750px) {
  .nav_lang_list dd{
  margin-top: 0;
}
}
.nav_lang_list{
  color:#fff;
}
.lang_item{
  font-size: 0.15rem;
  line-height: 1;
  display: block;
  padding:0.12rem 0.5rem;
  text-align: center;
  color:#fff !important;
}
.lang_item:hover{
  color:#848484;
  background-color: #2e2e2e;
}

@media (max-width: 750px) {
  .nav_lang_list{
    width: 100%;
    margin-bottom: 0;
  }
  .lang_head{
    display: none;
  }
  .lang_item{
    font-size: 0.3rem;
    padding:0.3rem 0.5rem;
  }
}

 */


 
/* ================================================
main
================================================ */
main section {
  margin: -.4rem 0 .6rem 0;
  padding: .4rem 0 0 0;
}

@media (max-width: 750px) {
  main section {
    margin-top: -1.2rem;
    padding-top: 1.2rem;
  }
}

main section:last-child {
  margin-bottom: 0;
}

@media (min-width: 751px) {/*最初のh2の前のあきつめ*/
main section:first-child {
  margin-bottom: 0;
}
}
main section:first-child p:last-child {
  margin-bottom: .45rem;
}


main .sec {
  margin: 0 0 2em 0;
}

main .sec:last-child {
  margin-bottom: 0;
}
main .w80 {
  margin: 1em auto;
  width: 80%;
}

@media (max-width: 750px) {
  main .w80 {
    width: 90%;
  }
}

main p {
  margin: 0 0 .2em 0;
}

main p:last-child {
  margin-bottom: 0;
}

main p img {
  margin: 0 .5em 0 0.5em;
}
main h4 img.icon {/*4100*/
    height: 1.25em;
    width: auto;
  margin: 0 .5em 0 0.5em;
}

main p img, main dl img, main ul img {
  width: auto;
  height: 1.5em;
}
main .disc{padding:1% 0 2% 0;}
main .disc li {
  margin: 0 0 0 1em;
  list-style:none;
  padding-bottom: 0.5em;
}

main .disc li::before {
  content: "・";
}


main .reference, main .reference_list li {/*注釈*/
  padding: 0 0 0 1em;
  color: #222222;
  font-size: .16rem;
  text-indent: -1em;
}

@media (max-width: 750px) {
  main .reference, main .reference_list li {
    font-size: .2rem;
  }
}

main .reference::before, main .reference_list li::before {
  margin: 0 .2em 0 0;
  content: '\203b';
  font-family: "Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN W3","Meiryo UI",Meiryo,sans-serif;
}


/*================================================
 *  hover効果
 ================================================*/

.image:hover{filter: brightness(130%);}


.center{
	text-align: center;
	margin: 0 auto;
	clear: both;
}


/* ================================================
link
================================================ */
main + .pagination {
  margin: .5rem 0 0 0;
}

.pagination {
  margin: 0 0 .2rem 0;
  line-height: 1;
}

.pagination li {
  display: inline-block;
	margin-left:0em;

}

.pagination li.prev {
  margin: 0 0 0 .15rem;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}



@media (max-width: 750px) {
  .pagination li + li {
    margin: 0 0 0 .2rem;
  }
}

.pagination a {
  display: block;
  width: .8rem;
  height: .3rem;
}
.pagination a.next {
  background: url("../images/common/next.png") no-repeat center/100%;
  -webkit-transition: none;
  transition: none;
}
.pagination a.prev {
  background: url("../images/common/back.png") no-repeat center/100%;
  -webkit-transition: none;
  transition: none;
}

@media (max-width: 750px) {
  .pagination a {
    width: 1rem;
    height: 1rem;
      
  }
}
.pagination a:hover {
  opacity:0.65;
}

/* ================================================
ph
================================================ */
.ph {
  margin: 1em auto;
  border: solid .01rem #F1F6D5;
}

.ph.controller {
  border: none;
}


.licence_oya {
	margin-top: 2em;
	padding: 1em 1em 1em 0em;
}

.licence li{
	margin-bottom: 0.8em;
	font-size: .16rem;
}

.licence li img{
	font-size: .1rem;
}

.icon_shadow{
 filter: drop-shadow(0 0px 4px rgba(0,0,0,0.3));
}



/* ================================================
flexbox
================================================ */
/*（ph+cap）横並び2つ　変形ナシ*/
.box_box {
  margin: 1em 0;
    
}
.box_box {
    display: flex;
    position: relative;
    align-items: flex-start;
    width: 100%;
    }
.box_box p {
    text-align: center;
}
.in_box {
	display   : block;
    border:2px var(--accent-color-light) solid;
    width:47%;
    padding: 2%;
}

.in_box + .in_box{
  margin-left: 7%;
}
.in_box img {
     height: auto;
    width:100%;
}   

/*1200の図にも流用　上に←→をのせる　*/

.arrow::before {
      content: "◀▶";
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 auto;
    z-index: 50;
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    height: auto;
}
.in_box h4 {
  text-align: center;
    border: none;
    font-size: 110%;
    height: 1em;
    margin: 4px;
    padding: 0;
    width:100%;
    display: inline-block;
    margin-bottom: 5%;
}  
.in_box ul {
  margin-top: 5%;
}

.in_box li {
    font-size: 90%;
}


/* ================================================
本文用flex
================================================ */

.kakomi.aki_lr{color: var(--text-color); padding-top:0;}

.flexbox_ph {
  margin: 1em 0;
}
.flexbox_ph img{border:  solid 1px #ba9c4e;}

.flexbox_ph img.none {
    border: none;
    background-color: none;
}

@media (max-width: 750px) {
  .flexbox_ph {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	flex-direction: column;
	  position: relative;
  }
}
/*スマホ*/
@media (max-width: 750px) {
  .flexbox_ph img {
		display   : block;
    margin: 0.5em 0 1em 0em;
    width: 100%;
  }
}
@media (max-width: 750px) {
    .flexbox_ph p {
		display   : block;
    width: 100%;
    }
  }

@media (max-width: 750px) {/*横並び画面説明文内のアイコンなどが横100％になるのを避ける*/
  .flexbox_ph img.btn {
    width: auto;
    height: 1.25em;
	display   : inline-block;
	margin: 0 0.2em;  
  }
  }
@media (max-width: 750px) {
  .flexbox_ph p img {
    width: auto;
    height: 1.25em;
	display   : inline-block;
	margin: 0 0.2em;  
  }
  }
@media (max-width: 750px) {
  .no_tate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	flex-direction: row-reverse;
  }
}



/*PC 751以上*/
@media (min-width: 751px) {
    .flexbox_ph p {
/*	display   : block;*/
	width:100%;
		margin:0 1em 0 auto;
/*		margin:0 0 0 auto;*/
	}
  }
@media (min-width: 751px) {
    .flexbox_ph div.flex_txt {
	width: 100%;
	margin:0 1em 0 0;
	}
  }

@media (min-width: 751px) {
  .flexbox_ph div {
	display   : block;
	width:80%;
/*	  margin-left: 1em;*/
 		margin:0 0 0 auto;

  }
 }

@media (min-width: 751px) {
  .flexbox_ph div.aki_lr {
    margin: 0 1em 0 1em;
  }
 }



@media (min-width: 751px) {
  .flexbox_ph {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	flex-direction: row-reverse;
  }
}
@media (min-width: 751px) {
  .flexbox_ph div.mini{
      width: 30%;
  }
}


/*------------------------------------
pagejump 
------------------------------------*/

.pagejump {
  margin: 0.5em auto .5rem auto;
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
  justify-content: center;
  margin-top:2em;
}



@media (max-width: 750px) {
  .pagejump {
    font-size: .24rem;
  }
}



main .pagejump li {
  margin: 0 0.5em 0.5em 0.25em;
  width: calc(33% - 0.75em);
  text-align: center;
  text-indent: 0;
    background-color: #315875;
  /*background: var(--main-color);*/
  outline: 1px solid hsla(0, 0%, 100%, 0.6);
  outline-offset: -4px;
  min-height: 3em;
}
@media (max-width: 750px) {
main .pagejump li {
    width: 47%;
  }
}


main .pagejump li.mini  { 
    font-size: 90%;
}




main .pagejump.short li   { width: 8.5em; }


.pagejump li:last-child { }

.pagejump a {
  padding: 0.4em;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  line-height: 1.2;
  align-items: center;
  justify-content: center;
}

.pagejump a:after {
  content: '';
  display: inline-block;
  width: 1.2em; min-width: 1.2em;
  height: 0.8em;
  background: url(../images/common/arrow-w_d.png) no-repeat center / contain;
  margin-left: 0.25em;
  border: none;
}

.top-pagejum_margin{/*  margin-bottom: 2em; */}



/*
.pagejump a:before {
  content: '';
  display: inline-block;
  width: 1.2em; min-width: 1.2em;
  height: 0.8em;
  background: url(../images/common/arrow.png) no-repeat center / contain;
  margin-left: 0.25em;
  border: none;
}
  */


.pagejump li:hover    { filter: brightness(1.4); }
.pagejump a:hover {
  color: var(--base-color-dark);
opacity: 1.0;
}

.top .link .pagejump {
  margin: .8em 0 0 0;
  padding: 0 0 0 1em;
  display: inherit;
  font-weight: normal;
  text-align: left;
}

.top .link .pagejump li {
  display: inherit;
  margin: 0 0 .5em 0;
}

.top .link .pagejump li:last-child {
  margin-bottom: 0;
}


/*------------------------------------
pagelink 参照p
------------------------------------*/

.pagelink {
  margin: 0 auto .5rem auto;
	position: relative;
}

@media (max-width: 750px) {
  .pagelink {
    font-size: .24rem;
  }
}

.pagelink li {
	display: block;
	 padding: 0 0 0 -0.25em;
	margin: 0em;
/*	border: 1px pink solid;*/
}

.pagelink li::before{
 content: "▷";
 display: inline-block;
 vertical-align: middle;
color: var(--accent-color);
 width: 1.2em; min-width: 1.2em;
  margin-left: 0.25em;
  border: none;
}

.pagelink a {
  color: var(--base-heading-color);

}


.pagelink a::before { 
  content: "▶";
  display: inline-block;
  line-height: 1.1;
  vertical-align: middle;
  margin-left: 0.25em;
  margin-bottom: 0.2em;

 }

/* 
.pagelink a::before {
  content: '';
  display: inline-block;
   height: 0.8em;
  background: url(../images/common/arrow.png) no-repeat center / contain;
}
*/



/* ================================================
TOP
================================================ */
.top {
		/* background:#ede4cd; */
}

@media (min-width: 751px) {
  .top {padding: 0 .3rem .3rem .3rem;}
}
@media (max-width: 750px) {
  .top {padding-top: .8rem;}
}

.top .mv {
  height: 5.5rem;
  margin: 0 -.3rem;
  background: url("../images/0000/top_main.png") no-repeat center/cover;
  position: relative;
}


.absolute {
    position: absolute;
    right: 20px;
    bottom: 5%;
    width: 38%;
}


@media (max-width: 750px) {
  .top .mv {
  height: 8.2rem;
  background: url("../images/0000/top_main_sp.png") no-repeat center/cover;
  }

.absolute {
  position: absolute;
  right:0;
  left: 4%;
  top: 65%;
  width: 45%;
}

}

.top .link {
  margin: 2em 0;
  line-height: 1;
  font-weight: bold;
}

@media (min-width: 751px) {
  .top .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: .17rem;
  }
  @supports (display: grid) {
    .top .link {
      display: -ms-grid;
      display: grid;
      gap: .1rem;
      -ms-grid-columns: 1fr 1fr 1fr;
          grid-template-columns: 1fr 1fr 1fr;
    }
  }
}

@media (min-width: 751px) {
  .top .link .col {
    width: calc(100% / 3);
  }
  @supports (display: grid) {
    .top .link .col {
      width: auto;
    }
  }
}

@media (max-width: 750px) {
  .top .link .col {
    margin: 0 0 2em 0;
  }
  .top .link .col:last-child {
    margin-bottom: 0;
  }
.top .link dl {/*top目次リンク*/
 padding:0 !important;
}
}

.top .link dl {/*top目次リンク*/
  margin: 0 0 2em 0;
  padding: 0 0 0 1.5em;
}

.top .link dl:last-child {
  margin-bottom: 0;
}

.top .link dt {/*top目次リンク　項目名　見出し*/
  margin: 0 0 1em 0;
  padding:0.5em 0;
  font-size: 1.2em;
  background: linear-gradient(-45deg, rgba(243,194,88,1) 0%, rgba(151,105,11,1)100%);
  color:var(--accent-color-dark); 
  border-top: solid 1px var(--accent-color); 
  border-bottom: solid 1px var(--accent-color);
  padding-left: 0.5em;
  text-shadow: #97690b 1px 1px 10px, #97690b -1px 1px 10px,
    #97690b 1px -1px 10px, #97690b -1px -1px 10px;
    font-weight: 400;
}

.top .link li {
  margin: 0 0 1em 0;
  margin: 0 0 1em 1em;
  text-indent: -1.2em;
}

.top .link li:last-child {
  margin-bottom: 0;
}

.top .link li {

  color: var(--accent-color);
}

.top .link li li{/*下階層*/
  margin: 0.5em 0 0.5em 1.5em;

	font-size: 80%;
  line-height: 1.2;
}


.top .link li::before {
	    content: '';
    display: inline-block;
    width: 1.2em;
    min-width: 1.2em;
    height: 0.8em;
    background: url(../images/common/arrow.png) no-repeat center / contain;
    margin-left: 0;
}

.top .link ul {
  list-style: none;
}

.top .link li li::before {
	content: '\025b6';
	margin-right: 0.2em;
  font-size: 0.6em;
  vertical-align: middle;
  display: inline-block;
  margin-bottom: 0em;
  padding-bottom: 0.5em;
}




.top .reference_list {
  margin: 2em 0;
}

.top .reference_list li {/*トップ注釈*/
  color: ver (var(--base-color-light));
  font-size: .12rem;
}

@media (max-width: 750px) {
  .top .reference_list li  {
    font-size: .2rem;
  }
}

.top .reference_list img {
  height: 0.9em;
}
.top .reference_list img.hlp {
  height: 1.1em;
}

.top_remake {
	display: flex;
	flex-direction: column;
	 justify-content: center;
	background-color: rgba(255,255,255,0.50);
	padding: 1em;
	color: #555;
}
.top_remake p {
	display: block;
	text-align: center;
}
.top_remake img {
  margin: 0 auto;
  width: 82px;
}

/*# sourceMappingURL=style.css.map */




/*----------------------------------
h1 h2 h3 
----------------------------------*/
h1	{
  font-size: 50px;
  background-image: url(../images/common/h1-title_wp.jpg);
  background-size: cover; 
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  text-align: center;
}
h1 > span {
	font-weight: bold;
}

@media (max-width: 1100px) {
h1	{
 font-size: 30px;

}
}

.margin-top_adj{margin-top:2em;}

h2	{
	position: relative;
	font-size: clamp(19.00px, calc(0.93vw + 12.00px), 26.00px);
	font-weight: bold;
	color: #fffe;
	line-height: 1.2em;
	text-align: left;
	padding: 0.5em 1em  0.5em 1em;  
	margin-bottom:0.5em;
	z-index: 4;
  font-weight: 700;
	line-height: 1.2em;
  background-image:url("../images/common/h2_00.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center left;
  align-items: center;
  display: flex;
  align-items: center;
  gap: 10px;
  border: solid 2px #c19145;
}

h2 img {
  height: 1.5em; /* テキストの高さに合わせる */
  width: auto; /* 横幅は自動調整 */
  display: inline-block;
  line-height: 1.2;
}


@media (max-width: 1100px) {
h2	{
	padding: 0.6em 0 0.7em 0.5em;  

}
}

@media (max-width: 900px) {
h2	{
	background-image:url("../../assets/images/common/h2_00_sp.png");
  background-size: cover;
	padding: 0.4em 1em 0.5em 1em;
}
}

@media (max-width: 849px) {
h2	{
	background-image:url("../../assets/images/common/h2_00_sp.png");
  background-size: cover;
}
}

@media (max-width: 750px) {
h2	{
	font-size: 140%;
	padding: 0.6em 0 0.5em 0.6em;  

}
}


h3 {
  position: relative;
  padding: 0.2em 0.5em;
  margin-bottom: 0.5em;
  margin-top: 1.5em;
  font-size: 1.3em;
  display: block; 
  color:var(--accent-color-dark);
  display: flex;
    align-items: center;
	background-image:url("../../assets/images/common/h3_title.png");
  background-position: top left;
  background-repeat: no-repeat;
  text-shadow: 
    #766429 1px 1px 10px, #766429 -1px 1px 10px,
    #766429 1px -1px 10px, #766429 -1px -1px 10px;

}
/*
h3::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.3em;
  height: 0.6em;
  background:#c9c9c9;
  transform: skewX(-10deg); 
  z-index: -1;
}
  */

h4 {
	font-size:110%;
	clear: both ;
	color: #caa360;
	font-weight: bold;
	line-height: 1.2em; 
	padding: 3px 0px 5px 10px; 
	margin-top:1.5em;
	margin-bottom:0.5em;
  position: relative;
  padding-bottom: 5px;
  border-left: 0.4em solid #9f7739;
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  background: rgba(0, 0, 0, 0.8);
}

h4 img {
	height:110%;
	vertical-align:middle;
	padding:0px 0px 0px 0px;
}

main h4 img.icon{ margin: 0 .5em 0 0; }

h4 a {
	text-decoration: none;
	color:#72640c;
}




h4.us::after{border-bottom: none;}



h5 {	
	font-size:18px;
	clear: both ;
	color:#9b8242;
	font-weight: bold;
	line-height: 1.2em;
	padding: 3px 0px 5px 0px; 
	margin-top:3%;
	margin-bottom:0.5em;
	border-bottom: 2px solid rgba(155,130,66,0.5);
}

h5 img {
	height:1.5em;/*25px;*/
	width: 2em;
	vertical-align:middle;
	padding:0px 10px 0px 0px;
	
}

section {
	overflow: hidden;
	margin-bottom:0.5em;
	clear: both ;
}
section:first-child {
	margin-bottom:0;
}


.indent_left{ margin-left: 1.5em; }


a:hover {
	color:#ff8040;
	opacity:0.65;
}
p {
	margin:0 0 1em 0;
}
img {
	vertical-align:middle;
}
img.frame {/*shiyo*/
	border:1px solid #b8860b;
	background-color: rgba(0,0,0,0.5);
}
img.frame_02 {/*mishiyo*/

}
ul,ol,dl {
	margin:0 0 1em 0;
}
ul li {
		list-style-type: none;
}

main li {
	margin-left:1em;
  margin-bottom: 0.25em;
  text-indent: -1em;
  line-height: 1.25;
}

ul.maru li {
	list-style:disc;
	text-indent: -0em;
	padding-left: 1em;
}
ul.nodisc li {
	list-style:none;
}
ul.maru_kei li {
	list-style:disc;
	text-indent: -0em;
	padding-left: 1em;
}
div.list_kei {
	border: 2px #be0006 solid;
	margin: 0.5em 0 1em;
}
div.list_back {
	margin: 0.5em 0 1em;
	background: rgba(245, 240, 187, 0.4);
	padding-bottom: 0.1em;
}
p.list_back_ttl {
	border-bottom: 3px solid rgba(245, 240, 187, 1);
	margin: 0 0 0.5em;
	background: rgba(245, 240, 187, 0.6);
	padding: 0.2em 0 0 0.5em;
	color: rgba(190,0,6,1);
}






/* ================================================
ユーザーサポート
================================================ */
.column {
	padding: 0.9em;
	 margin: 1em 0em 1em 0em;
	background: rgba(255,255,255, 0.5);
	border: double 1px #211d12;
}


@media (max-width: 750px) {
	.column {
	}
}
.column div.column_ttl {
	background: linear-gradient(to right, transparent 0%, rgba(121,91,29, 0.7) 30%, rgba(121,91,29, 0.7) 70%, transparent 100%);
	padding: 0.5em 0em;
	  display: flex;
  justify-content: center;
  align-items: center;
}



/*================================================
 *  表
 ================================================*/

 table {
  margin: 1em 0;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  line-height: 1.5;
  color: #fff;
  border: solid 2px #b88839;
  font-size: 0.9em;
}

table:last-child { margin-bottom: 0;}
table img { margin: 0.3em; width: auto; height: 1.2em;}

table.w_ttl {/*冒頭に見出し行あり*/	}

table.w_ttl th.midashigyo { width: auto;	background-color: rgba(0,0,0,0.3); color: #000;}

table.w_ttl th {
 width: 35%;	
}
th.th_second {/*表の見出しが2段階*/
  width: 20%;
}

table.table_btn {table-layout: fixed;}
table.table_btn th{font-size: 0.8em;}
table.table_btn th, table.table_btn td { width: auto; text-align: center; padding: 0.5em;}
table.table_btn th.th_02 { background: rgba(68,68,68, 1.0); font-weight: bold; text-align: center;}
table.table_btn td img { height: 1.5em; width: auto;}


table th{
  padding: .8em;
  border: solid .01rem #e6e6e6;
  width: 10em;
  background:#b88839;
  font-weight: bold;
  text-align: center;
	color: #f1f1f1;
  vertical-align: middle; 
}



table.thw15em th  { width:15em; }
table th br.force { display: block; }
th img { height:30px; vertical-align:middle; margin:5px;}
table th img.ps4icon {height:25px; vertical-align:middle; margin:5px;}

table th > span {/*thの改行*/
	display: inline-block;
}
/*
@media (min-width: 751px) {
  table th br {
    display: none;
  }
} */

table td{
  padding: .8em;
  border: solid .01rem #ccc;
  vertical-align: middle;
  background: #fff;
  color: var(--base-kakomi-color);
}
table td.txt_center{
text-align: center;
}


table td img{ height:25px; vertical-align:middle;}

td p.shita_midashi {
	font-weight: bold;
	color: rgba(20,0,71, 1.0);
	border-bottom: 1px rgba(20,0,71, 1.0) solid;
	border-left: 3px rgba(20,0,71, 1.0) solid;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	padding-left: 0.2em;
	}
td p.shita_midashi:first-child{
	margin-top: 0em;	
}

/* cat2000 */

.cat2000 h1           { font-size: 0.55rem; }
.cat2000 table th     { width: 15em; background: rgb(227 217 211); color: #333; border: dotted .01rem #333; }


/*================================================
 *  表（テキストセンター）
 ================================================*/
.center th {
  	text-align: center;
}
.center td {
  	text-align: center;
}

/*================================================
 *  クラス
 ================================================*/

.sec_inner {
  width: 96%;
  margin: 0 auto 0;
}

 
.float_clear{
	clear: both ;
}
.line { 
	display: inline-block;
}
.text_main{/*shiyo*/
	margin-top: 0.5em;
  	margin-bottom:0.5em;
	padding:0;
	text-align: justify;
}
.text_main img {/*shiyo*/
	height:22px;
	margin:5px;
}
.center-txt{text-align: center;}

.reflect_lr {/*左右反転*/
  display: inline-block;
  transform: scale(-1,1);
}
.reflect_ud {/*上下反転*/
  display: inline-block;
  transform: scale(1,1);
}
.rotated_90 {
transform: rotate(90deg)
}

 /*  注釈
 ================================================*/

p.hint0,p.hint1 {/*注釈1*/
	font-size: 0.9em;
  line-height: 1.6;
  color: var(--point-color);
}

td p.hint0, td p.hint1{
  color: var(--base-color-dark);
}

.hint0::before {
	content: '';
	margin-right: 0.2em;
}

div.flexbox_ph p.hint0 {/*flex内*/
	font: 1em;
  display: inline-block;
  margin-left: 1em;
    text-indent: -1em;
}



.hint1::before {/*\203b*/
	content: '\203b';
	padding: 0.2em;
	margin-right: 0.25em;
}

/*================================================
 *  画像（横並び)
 ================================================*/



/*================================================
 *  番号付き見出し インデントあり
 ================================================*/
.number{
	margin-left: 9%;
	margin-right: 9%;
	text-align: justify;
}

.number h3 {
	font-weight: bold;
	clear: both ;
	background-color: inherit;
	border:none;
	box-shadow: none;
	color:#730031;
	font-size: 1.2em !important;
	line-height: 0.5;
	padding-left:1.75em;
	text-indent:-1.75em;
	margin-bottom: 0 ;
	padding-bottom: 0;
	text-align: left;
}
.number_img{ /*数字画像 sample使用*/
	height: 1.5em;
	width: auto;
	margin: 0em 0.25em 0em 0em;
	vertical-align: middle;
}

/*================================================
 *  番号付き見出し インデントなし
 ================================================*/


.cont_wrap      { margin-left: 1em; }

.number_akinashi {
	margin-left: 0%;
	margin-right: 0%;
}

.number_akinashi h3 {
	font-weight: bold;
	clear: both ;
	background-color: inherit;
	border:none;
	box-shadow: none;
	color:#730031;
	font-size: 1.2em !important;
	line-height: 1.2;
	padding-left:0;
	text-indent:0;
	margin-bottom: 0 ;
	padding-bottom: 0;
	text-align: left;
}
.number_img{ 
	height: 1.5em;
	width: auto;
	margin: 0em 0.25em 0em 0em;
	vertical-align: middle;
}

@media (max-width: 750px) {
.capcenter_no img {
	display: inline-block;
	width: auto;
margin-right: 0.1em;
}
}

@media (min-width: 751px) {
.capcenter_no img {
	display: inline-block;
	width: auto;
margin-right: 0.1em;
}
}



.capcenter_no div {
  display: flex;
  align-items: center;
      flex-wrap: wrap;
margin-right: 0.5em;
}



/*4100*/
.photo .capcenter_no{
	margin-top: 0.5em;    
  display: flex;
  align-items: center;
      flex-wrap: wrap;
}
.indent_left{
	margin-left: 2.2em;
}

@media (max-width: 750px) {
.indent_left{
	margin-left: 1em;
}
}


/*================================================
 *  囲み1
 ================================================*/

.kakomi {
	margin: 0.5em auto;
	clear: both;
	background: rgba(240,240,240,.9);
  padding: 0.75em 0.75em 0.25em 0.75em;
	border:solid 1px #72640c;
}
.kakomi p {
	padding: 0.5em; 
	margin: 0.25em 0;
	color: var(--base-kakomi-color);
}

.kakomi:after,
.kakomi_02:after,
.kakomi_pk:after{ /*親要素からはみ出す画像のfloatを解除*/
	content: "";
	clear: both;
	display: block;
}
.kakomi div {
	margin: 0.5em 1em 0em 0em;
   }

.kakomi ul {
	padding: 0.75em 0.5em 0em 0.5em;
   }
.kakomi ul li {
	margin-top: 0.25em;
	margin-bottom: 0.25em;
	margin-right: 1em;
	list-style:none;
	text-indent: -6px;
   }
.kakomi li:before { /*リストマークの色を変更*/
	position: relative;
	top: -2px;
	left: -10px;
	display: inline-block;
	width: 6px;
	height: 6px;
	content: '';
	border-radius: 100%;
	background-color: var(--base-kakomi-color);
}

.kakomi h3 {
	margin-top: 0em;
	margin-bottom: 0em;
	border: none;
	border-radius: 0px;
  color: var(--accent-color-dark);
   }


.kakomi h4 {
	margin: 0;
  margin-bottom: 0.5em;
  padding: 0.5em;
	color: var(--text-color);
	border-top: solid 0px #72640c;
	border-bottom: solid 1px #72640c;
	border-left: solid 0px #72640c;
	border-right: solid 0px #72640c;
  background: transparent;
}



.kakomi_02 {
	margin-top: 0.5em;
  padding:0.5em 1em;
	clear: both;
	border-top: groove 6px rgba(114,100,12,0.5);
	border-left: groove 6px rgba(114,100,12,0.5);
	border-bottom: ridge 6px rgba(114,100,12,0.5);
	border-right: ridge 6px rgba(114,100,12,0.5);
	border-radius: 10px;
	background: linear-gradient(rgba(49,88,117,0.2), rgba(255,255,255,0.6));
   }

.kakomi_02 h3 {
	margin-top: 0.5em;
}

.kakomi_02 h5 {	
	font-size:16px;
	color:#330000;
	text-align: center;
	font-weight: bold;
	line-height: 1.2;
	padding: 15px; 
	background-image:url("../images/common/down.png");
	background-position: center center;
	background-size: 30% 100% ;
	background-repeat: no-repeat;
  border-bottom: none;
}


.kakomi_03 {
	margin-top: 0.5em;
  	margin-bottom:0.5em;
  	padding-bottom:0.25em;
	background-color: rgba(36,20,14,0.1);
	border:solid 1px #72640c;
	display: inline-block;
	float: right;
	width: 66%;
}

.kakomi_03 ul {
	padding: 0.75em 0.5em 0em 0.5em;
   }
.kakomi_03 ul li {
	margin-top: 0.25em;
	margin-bottom: 0.25em;
	margin-right: 1em;
	list-style:none;
	text-indent: -6px;
   }
.kakomi_03 li:before { /*リストマークの色を変更*/
	position: relative;
	top: -2px;
	left: -10px;
	display: inline-block;
	width: 6px;
	height: 6px;
	content: '';
	border-radius: 100%;
	background-color: rgba(107,63,49,0.8);
}



.kakomi_pk {/*top pk説明*/
	margin-top: 0.5em;
  	margin-bottom:0.5em;
  	padding-bottom:0.25em;
}
.kakomi_pk div {
	margin: 0em 0em 0em 0em;
   }

.kakomi_pk p {
	margin: 1em 0.5em;
   }

.kakomi_pk h4 {
	clear: both;
	margin-top: 0px;
  margin-bottom: 0.5em;
  border-left: 0.4em solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
   }






.kakomi.boxtext,
.kakomi.boxtext2{	color: var(--base-kakomi-color);}
.kakomi.boxtext2{padding-top:0;}
.kueikaeshi{text-align: center; color: #282d31; font-size:150%; padding: 1em 0;}
.sub-title{
  width: 100%;
  padding: 0.2em 0.5em;
  margin: 0;
  font-size: 1.3em;
  display: block; 
  display: flex;
  align-items: center;
  background-position: top left;
  background-repeat: no-repeat;
}
.kakomi div.sub-title{margin:0;}
.sub-title.wptype1{ background: #3e6285; color: #fff;}
.sub-title.wptype2{ background: #863e45; color: #fff;}
/*============================
 * new-icon
 =============================*/

h3 img.new {
    margin-left: 0.3em;
    height: 2em;
    width: 2em;
}

h4 img.new {
    margin-left: 0.3em;
    height: 2em;
    width: 2em;

}



/*============================
 * 以下turningで追加
 =============================*/
.upper_aki {/*photo下のtxt*/
    margin-top: 1em;
}
.left_aki {
    margin-left: 1em;
}

h1 img {/*大見出しにアイコン*/
	height:60%;
	padding:0px;
	margin:0px 5px ;
	vertical-align: middle;
  max-height: 1em;
  width: auto;
}

h3 img {
	height:120%/*22px*/;
	padding:0px;
	margin:0px 5px ;
	vertical-align: middle;
  max-height: 1.5em;
  width: auto;
}
h3 > span {
	font-weight: bold;
	}
h3 > span > span {
	font-weight: bold;
	}

h3 ~ p {   }

.backcolor {/*透明アイコンの背景*/
  background: gray;
}

h4 img {
	height:120%;
	padding:0px;
	margin:0px 5px ;
	vertical-align: middle;
  max-height: 2em;
  width: auto;
}

p.bold {
    font-weight: bold;
}




/*============================
turning参照番号リンク
=============================*/
ul.photo_id {
    display: flex; flex-wrap: wrap;
    margin-top: 0.5em;
    margin-bottom: 0;
}
ul.photo_id li {
    width: calc(33% - 0.5em);
    margin: 0 0.25em 0.25em 0.25em;
    font-size: 90%;
    text-indent:0;
    text-align: center;
    background-image: linear-gradient(#927c3b, #d9b555);
    border: 2px solid #C19145;
}

@media (max-width: 750px) {
ul.photo_id li{
  width: calc(50% - 0.5em);
}
}




ul.photo_id li a{
  position: relative;
  padding:0.5em 0.5em 0.5em 1.2em;
  font-size: 16px;
  cursor: pointer;
  text-align:left;
    
  background-image: 
    url(../images/common/btn-iocn_lefttop.png), 
    url(../images/common/btn-iocn_righttop.png),
    url(../images/common/btn-iocn_rightbottom.png),
    url(../images/common/btn-iocn_leftbottom.png);

  background-position: 0% 0%,
    100% 0,
    100% 100%,
    0% 100%;

  background-repeat: no-repeat;
  background-size: 11px 29px;    /* アイコンのサイズ調整 */

  display: block;
  width: 100%;
  color: #fff;
  text-shadow: 
    #967132 1px 1px 10px, #967132 -1px 1px 10px,
    #967132 1px -1px 10px, #967132 -1px -1px 10px;
}





table.right_noborder th{
 border-right: none;
 border-left: none;   
}

th.icon {
 width: 50px;
 padding: 0 4px;
}

th.left {
	text-align:left;
	font-weight:bold;
}
@media (max-width: 960px) {
th.left {
    width:7em;
}
}



/*============================
 * turning
    5100 表の中にdl
   3300 表の中にdl（icon）
=============================*/
dl.in_table{
    margin: 0.2em 1em;
}
dl.in_table dt {
    padding: 0.2em ;
    background-color: #d1bf8f;
    border-bottom: 1px solid black;
    }
dl.in_table dd {
    padding: 0.2em ;
    min-width:130px;
    }
@media (max-width: 960px) {
dl.in_table dd {
  min-width: 30%;
}
}


dl.icon {/*3300*/
    /* border-bottom: 1px solid black; */
    }

dl.icon dt {/*3300*/
    padding: 0em ;
    background-color: black;
    }

dl.in_table_line dt {/*3300 1行*/
    display: inline-block;
}
dl.in_table_line dd {/*3300 1行*/
    display: inline-block; 
}

dl.txt dt {/*3300*/
    padding: 0 ;
    background-color: inherit;
    border: none;
    }
dl.txt {/*3300*/
    border-bottom: 1px solid black;
    }
.sousa_line {
    background-color: #D1D1D2;
    padding: 0.25em;
    border-radius:4px;
}
.sousa_line span {
    display: inline-block;
}




 /*================================================
 *  photo
 ================================================*/


div.photo {/*画像センタ*/
     width:80%;
     min-width: 320px;
     margin:5% 10%;  
/*     border:#F70841 1px solid;　外ケイ1*/
	background-color:rgba(56, 90, 120, 0.5);
	padding:1.5%;/*背景とアキで外ケイ2*/
}
div.photo_after  {/*abcdなど下の階層が入るとき*/
     width:80%;
     min-width: 320px;
     margin:0 10%;  
	padding:1.5%;/*背景とアキで外ケイ2*/
}


@media (max-width: 750px) {
div.photo {/*画像センタ*/
	width: 100%;
     margin:0;  
     margin-bottom: 2em;
	}
}

/*============================
 * index CEについて
 =============================*/
.topics_column_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.topics_column_list .topics_column{
  width: 32%;
  margin:0.5%;
}


.topics_column_pd {/*コラム専用*/
	padding:0px 0px;
	line-height: 1.2;
  }
@media (max-width: 750px) {
.topics_column_list .topics_column{
  width: 49%;
  margin:0.5%;
}
}


/*
.topics_column { 
	display: inline-block;
	width: 31%;
	margin: 0% 0.5% 1% 0.5%;
	vertical-align: text-top;
}


@media (max-width: 750px) {
.topics_column { 
	display: inline-block;
	width: 48%;
	margin: 0% 0.5% 1% 0.5%;
	vertical-align: text-top;
}

}
*/


.topics_column span {
    font-weight: bold;
    display: inline-block;
}

.kakomi_pk {/*top pk説明*/
	margin-top: 0.5em;
  	margin-bottom:0.5em;
  	padding-bottom:0.25em;
   }
.kakomi_pk:after{ /*親要素からはみ出す画像のfloatを解除*/
	content: "";
	clear: both;
	display: block;
}

.kakomi_pk p {/**/
    line-height:1.35;
}
.kakomi_pk p span {/**/
    margin-bottom: 8px;
}


.indent_center {
    width: 100%;
    font-size: 0.95em;
    margin: 0.25em;
    padding: 0.25em;
}
.indent_center th {
    width: 28%;
}
.indent_center th span{
    display: inline-block;
}

/*============================
 * indexゲーム内ヘルプについて
 =============================*/

.topics_pd {
    margin: 0;
	padding:0px 0px;
	line-height: 1.2;
  }
.topics_pd h4{
    font-size: 80%;
    background-color: antiquewhite;
    padding-left: 1em;
    }
.topics_pd p {
    font-size: 80%;
    padding: 0.25em 0 0.5em;
    margin: 0.5em 1em;   
    }






/* ================================================
footer
================================================ */
footer {
  margin: .2rem 0 0 0;
}

footer .copyright {
  font-size: .12rem;
  text-align: center;
  letter-spacing: .05em;
}

@media (max-width: 750px) {
  footer .copyright {
    font-size: .2rem;
  }
}

footer .pagetop {
  display: block;
  position: fixed;
  right: .3rem;
  bottom: .3rem;
  z-index: 10;
  width: .8rem;
  height: .6rem;
  content: '';
  background: url("../images/common/totop.png") no-repeat center/100%;
}

@media (max-width: 750px) {
  footer .pagetop {
    width: 1.0rem;
    height: 1.0rem;
  }
}

footer .pagetop:hover {
  filter: brightness(1.3);
  opacity: 1.0;
}
