﻿/*********************************** 2021.06.09 *******************/
/*******************************************************************/
/***************************************/
/****************************************************************************/
body {
  background-color: #efefef;
  color: #000000;
  }
  
  p.example1 { color: #ffffff; }
  p.example2 { color: #2390f7; }
/****************************************************************************/
/****************************************************************************/
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;
}
/**************************************/
/*************ccordion*************************/
.accordion{
	margin:0 0 35px 0;
}
.accordion_title{
	color:rgb(255, 255, 255);
	font-size:16px;
	font-weight:normal;
	text-align:center;
	background-color:#199ca3;/*枠内*/
	padding:5px 15px;
	margin:0;
	border:3px solid #e2eceb;/*枠外*/
	border-radius:4px 4px 0 0;
}
.accordion_content{
	padding:10px 10px 10px 25px;
	margin:0;
	border:1px solid #eaeeee;/*メニュー枠外*/
	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%;
}
/*************************************************/
/************** 要素の重なり ******************/
/*************************************************/
.xmain nav {
    height:  50px;             /* 高さ指定 */
    width:  200px;              /* 幅指定 */
    background-color: #FF5722;  /* 背景色指定 */
    position:  relative;        /* 位置指定 */
    z-index: 10;                /* 重なり順指定 */
}
.z-index_test2 {
    height:  200px;             /* 高さ指定 */
    width:  200px;              /* 幅指定 */
    background-color: #f47703;  /* 背景色指定 */
    position:  absolute;        /* 位置指定 */
    top: 70px;                  /* 位置指定 */
    left: 100px;                /* 位置指定 */
    z-index: 100;               /* 重なり順指定 */
}
/***************************************************************************/
/***************************************************/
/**************************************/
/*********クルーデザインsite*****OK***/
/**************************************/
.wrapper {
  position:relative;
  display:inline-block;
}
.label {
  position:absolute;
  color:white;
  background:#d6c36;
  padding:10px 13px;  /***5px**23px********/  
}
.label-left-top{
  left:22px; /******150px**********/
  top:18px; /*******88px***********/
}
/***************************************************************************/
/***************************************************************************/
/******No-1 Flex box*****https://encycolorpedia.jp/83cdc8*******************/
/***************************************************************************/
.item {
  border-radius: 20px; /*10px 枠丸める*/
  background: #0981a5; /* 動画写真枠色16進*/
  padding: 35px; /*35px*/
  margin: 5px; /*5px*/
  text-align: center;
}
img {
  max-width: 100%;
  height: auto;
}
video {
  max-width: 76%; /********100%**********/

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

@media ( min-width : 600px ){ /*920**600px*/
    .flexbox {
    display: flex;
    flex-wrap: wrap;
    }
  .item {
    width: 100%;　/**100% **枠の横幅*ok**/
  }
}
/*****************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;     /* 文字色     */
}
/***************************************************/
/*************** FontAwesome *****https://kirari-yums.net/2019/01/20/post-6388/****/
/******************https://fontawesome.com/v4.7.0/*********************************/
/*************************************************************************/

h3{
  border-bottom: 2px solid #a61919;  /*100*/
  border-left: transparent;  /**/
  color: #a61919; /*F*/
}

h3:before{
  color: #ffffff;  /*F*/
  font-family:"Font Awesome 5 Free";
  content:"\f0a7";  /*h*/
  font-weight:900;  /**/
  margin-right:15px;  /*u*/
}
/***************************************************/
h2{
	padding: 5px 5px 5px 20px;
	border-radius: 4px;
	border: 1px solid #000000; /********/
	background-color: #14d7e5; /******************/
	color: #ffffff; /**** h2***/
	margin-top:40px;
	font-size:22px;
}
/***********************************************/
/***************Font Awesome 5 *****************/
h3 {
position: relative;
color: white; /****F***********************/
background: #14d7e5;
line-height: 1.5; /******/
padding: 0.25em 0.5em;  /**h****/
margin: 2em 0 0.5em; /****2***********************/
border-radius: 0 5px 5px 5px;
}

h3:after {
/**/
position: absolute;
font-family: "Font Awesome 5 Free",'Quicksand','Avenir','Arial',sans-serif;
content: '\f00c Check';
background: #2196F3; /********#2196F3******************/
color: #fff;
left: 0px;
bottom: 100%; /************/
border-radius: 5px 5px 0 0;
padding: 3px 7px 1px; /******3*****7******1**********/
font-size: 0.8em; /***Y***/
line-height: 1;
letter-spacing: 0.01em /*******/
}

/***********************************/
.contents-wrap {
display: flex;
justify-content: space-between;
margin-bottom: 0.5rem;
}
.contents-wrap:nth-child(odd) {
flex-direction: row-reverse;
}

.contents-text {
width: 60%; /*flex: 2;*/
}
.contents-img {
width: 100%; /*flex: 1;*/
}

.contents-text h2 {
margin-bottom: 2rem;
font-size: 1.9rem;
}

.contents-img img {
display: block;
width: 100%;
height: auto;
}

@media screen and (max-width: 568px){
.contents-wrap,
.contents-wrap:nth-child(odd)  {
  flex-direction: column;
}

.contents-text,
.contents-img {
  width: 60%; /*flex: 1;*/
}

.contents-text {
  padding: 0.5rem;
}

.contents-text h2 {
  text-align: center;
}
}
/**********************************/
/**********************************/
/**********************************/