﻿/************************* HTML基本 ********** 2021.05.31 *******************/
/*******************************************************************/
/**************************body ***全巾設定は先頭でなければならない**********/
/****************************************************************************/
body {
  background-color: #efefef;
  color: #000000;
  }
  
  p.example1 { color: #ffffff; }
  p.example2 { color: #2390f7; }
/************************ 基本CSS ****************************************************/
/****************************************************************************/
body{
font: normal 19px/1.5 Georgia, Serif;
font-size:19px;
letter-spacing:-1px;
padding: 5px; /*** 5px ***/
color:#333;
width: 960px;
margin-top:20px;
margin-right:auto;
margin-left:auto;
line-height:1.4;
}
h3{
	padding: 5px 5px 5px 20px;
	border-radius: 4px;
	border: 1px solid #32e650; /*************#eafdcf***見出しの色枠*******************/
	background-color: #81da4e; /*************#eafdcf***見出しの色*******************/
	color: #fdfdff;/*************#eafdcf***見出しの文字色*******************/
	margin-top:40px;
	font-size:22px;
}
body {background: #fff;}　
block {
    padding: 20px;
    background: rgb(21, 168, 29);
    border: 4px #d0e514 solid;
    position: relative; /*************** relative ****************************************************/
    z-index: 10;
}

#title { /***html 100 ********************/
  text-align: center;
}
/**************************************/
/*********クルーデザインsite********/
/**************************************/
.wrapper {
  position:relative;
  display:inline-block;
}
.label {
  position:absolute;
  color:white;
  background:#d6c363;
  padding:5px 23px;  /***5px**23px********/  
}
.label-left-top{
  left:50px; /******150px**********/
  top:28px; /*******88px***********/
}
/**************************************/
.accordion{
	margin:0 0 35px 0;
}
.accordion_title{
	color:rgb(255, 255, 255);
	font-size:16px;
	font-weight:normal;
	text-align:center;
	background-color:#dfa813;/*枠内*/
	padding:5px 15px;
	margin:0;
	border:3px solid #40e0d0;/*枠外*/
	border-radius:4px 4px 0 0;
}
.accordion_content{
	padding:10px 10px 10px 25px;
	margin:0;
	border:1px solid #40e0d0;/*メニュー枠外*/
	border-top:none;
	border-radius:0 0 4px 4px;
	box-shadow:2px 2px 1px rgba(0,0,0,0.1);
}
.accordion_title:hover{
	color:yellow;
	cursor:pointer;
}
/********************** Youtube Background *********************************************/
/****************************************************************************/
/*************************************************/
/********** 埋め込み動画を幅100%に対応 *********/
/***********************************************/
.movie {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; /* 現プレイヤーでは不要？ */
    height: 0;
    overflow: hidden;
}
 .movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*************************************************/
/************** 要素の重なり ******************/
/*************************************************/
.main nav {
    height:  50px;             /* 高さ指定 */
    width:  200px;              /* 幅指定 */
    background-color: #FF5722;  /* 背景色指定 */
    position:  relative;        /* 位置指定 */
    z-index: 10;                /* 重なり順指定 */
}
.z-index_test2 {
    height:  200px;             /* 高さ指定 */
    width:  200px;              /* 幅指定 */
    background-color: #03A9F4;  /* 背景色指定 */
    position:  absolute;        /* 位置指定 */
    top: 70px;                  /* 位置指定 */
    left: 100px;                /* 位置指定 */
    z-index: 100;               /* 重なり順指定 */
}
/***************************************************************************/
/****************** jQuery smooth-scroll ***********************************/
/***************************************************************************/
/***************************************************************************/
/******No-1 Flex box*****https://encycolorpedia.jp/83cdc8*******************/
/***************************************************************************/
.item {
  border-radius: 20px; /*10px 枠丸める*/
  background: #d6c363; /*edf 動画写真枠色16進*/
  padding: 15px; /*15px*/
  margin: 5px; /*5px*/
  text-align: center;
}
img {
  max-width: 100%;
  height: auto;
}
video {
  max-width: 90%; /********100%**********/

  height: auto;
}
p {
  text-align: left;
}

@media ( min-width : 920px ){ /***600px*/
    .flexbox {
    display: flex;
    flex-wrap: wrap;
    }
  .item {
    width: 100%;　/**45% **枠の横幅***/
  }
}
/*****************https://webdesignday.jp/inspiration/technique/css/5316/**************/
/******************************************************************/
/**************** wrap **********************/
/****** float with Youtube **************/
/********* Ken Takakura  ********/
.float-right{
  float:right;
  width:50%;
}
.float-left{
  float:left;
  width:50%;
}
.wrap:after{
display:block;
clear:both;
content:"";
}
/**********https://webdesignday.jp/inspiration/technique/css/5316/#HTML*****************/
.acd-check{
  display: on; /*****none*******/
}
.acd-label{
  background: rgb(98, 182, 19);
  color: #fff;
  display: block;
  margin-bottom: 1px;
  padding: 10px;
}
.acd-content{
  border: 1px solid #333;
  height: 0;
  opacity: 0;
  padding: 0 10px;
  transition: .5s;
  visibility: hidden;
}
.acd-check:checked + .acd-label + .acd-content{
  height: 40px;
  opacity: 1;
  padding: 10px;
  visibility: visible;
}
/****************** link *********************/
a{
  position: relative;
  display: inline-block;
  transition: .3s;
}
a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 2px;
  background-color: #0cb156;
  transition: .3s;
  transform: translateX(-50%);
}
a:hover::after{
  width: 100%;
}
/******************リンクの下線を消す*************/
a{
  text-decoration: none;
}
/************************************************/
.button {
  display       : inline-block;
  border-radius : 5%;          /* 角丸       */
  font-size     : 18pt;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  cursor        : pointer;     /* カーソル   */
  padding       : 12px 12px;   /* 余白       */
  background    : #d6c363;     /* 背景色     */
  color         : #ffffff;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
  transition    : .3s;         /* なめらか変化 */
  box-shadow    : 6px 6px 3px #666666;  /* 影の設定 */
  border        : 2px solid #000066;    /* 枠の指定 */
}
.button:hover {
  box-shadow    : none;        /* カーソル時の影消去 */
  color         : #000066;     /* 背景色     */
  background    : #ffffff;     /* 文字色     */
}