@charset "utf-8";
/* ------------------------- */
/*            共通            */
/* ------------------------- */
html{
    width: 100%;
}
.main{
    width: 80%;
    margin: auto;
}
p{
    margin: 10px;
    font-size: 1rem;
}
h1{font-size: 2.5rem;}
h2{
    font-size: 2rem;
    border-bottom: 2px solid rgb(218, 165, 32);
    margin-top: 10px;
}
h3{
    font-size: 1.5rem;
}
a{
    padding: 5px;
    text-decoration: none;
}
img{width: 100%;}
.sp-dc{display: none;}
/* ------------------------- */
/*          ヘッダー          */
/* ------------------------- */
header{
    position: relative;
    padding: 20px;
    margin: auto 20px;
}
nav{
    position: absolute;
    padding: 20px;
    margin: auto 20px;
    top: 0;
    right: 0;
}

/* ドロップダウンリスト */
.navi_lists{
    display: flex;
    margin: 10px;
}
.navi_lists>li{
    padding: 20px;
}
.navi_lists>li:hover{
    background-color: rgb(218, 165, 32);
}
.navi_lists>li:hover:not(li:first-child){
    color: white;
}
.navi_lists:first-child{
    position: relative;
}
.drop_lists{
    display: none;
}
.navi_list:hover .drop_lists{
    display: block;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 100%;
    width: 100%;
}
.drop_list{
    background-color: rgb(218, 165, 32);
    padding: 10px;
}
.drop_list:hover{
    color: white;
}
.icon{
    display: flex;
    justify-content: end;
}
.icon img{
    width: 50px;
    margin: 2s0px;
}

/* ------------------------- */
/*       メインコンテンツ       */
/* ------------------------- */
.visual{
    padding: 20px;
    width: 60%;
    margin: auto;
}
.menu ,.menu2{
    display: flex;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}
.menu>a{
    width: calc(80%/4);
    text-align: center;
    margin: 10px;
}
.menu a:hover{
    background-color: inherit;
}
.c-bnr.bg {
    position: relative;
  }
  .c-bnr.bg::before,
  .c-bnr.bg::after {
    content: "";
    display: block;
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    margin: auto;
    transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
    opacity: 0;
  }
  .c-bnr.bg::before {
    background: rgb(218, 165, 32, .6);
    width: 100%;
    height: 100%;
  }
  .c-bnr.bg::after {
    color: #fff;
    content: "Read More";
    font-size: 22px;
    font-weight: bold;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    bottom: 0;
    right: 0;
  }
   
  .c-bnr.bg:hover::before,
  .c-bnr.bg:hover::after {
    opacity: 1;
  }
.access{
    display: flex;
    justify-content: space-around;
    margin: 10px;
}
.access>div{
    width: 50%;
}
iframe{
    width: 100%;
}
/* ------------------------- */
/*         下層ページ 　       */
/* ------------------------- */

.menu>div{
    width: calc(80%/4);
    display: flex;
    text-align: center;
    justify-content: center;
}
.menu2>div{
    width: calc(80%/2);
    display: flex;
    text-align: center;
    justify-content: center;
}
.menu div{
    text-align: center;
    margin: 10px;
    font-size: 1.5rem;
}
.content a{
    color: goldenrod;
    text-decoration: underline;
}
.content a:hover{
    text-decoration: none;
    color: white;
    background-color: rgb(218, 165, 32);
}
.sample{
    text-align: center;
    margin: auto;
}
.sample>div{
    width: 50%;
    margin: auto;
}
.price::before{
    content: url(../img/icon/price.png);
    display: inline;
    vertical-align: middle;
}
.col{
    width: 50%;
}

/* ------------------------- */
/*        アコーディオン       */
/* ------------------------- */
.tab-wrap {
    display: flex;
    flex-wrap: wrap;
}
.tab-label {
    color: White;
    background: LightGray;
    margin-right: 5px;
    padding: 3px 12px;
    order: -1;
}
.tab-content {
    width: 100%;
    display: none;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
    background: rgb(218, 165, 32);
}
.tab-switch:checked+.tab-label+.tab-content {
     display: block;
}
/* ラジオボタン非表示 */
.tab-switch {
    display: none;
}


.imgarea{
    display: flex;
    flex-wrap: wrap;
}
.imgarea img{
    width: calc(100%/4 - 10px);
    margin: 5px auto;
}



/*ベース*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	padding: 1em;
	display: block;
	color: rgb(218, 165, 32);
    font-weight: bold;
	border: 3px solid rgb(218, 165, 32);
    background-color: rgb(218, 165, 32, .1);
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid rgb(218, 165, 32);
	border-right: 2px solid rgb(218, 165, 32);
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.acc_content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.acc_content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .acc_content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

/* ------------------------- */
/*          フッター          */
/* ------------------------- */
footer{
    background-color: rgb(218, 165, 32, .6);
    text-align: center;
    padding: 20px;
    margin: 20px;
    margin-bottom: 0;
    position: absolute;
    width: 100%;
    margin: auto;
    left: -50%;
    transform: translate(50%, 50%);
}
