@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #000;
    --link-color: #666;
    --linkhover-color: #3366FF; ;
    --back-color: #67b420;
    --border-color: #ccc;
    --white-color: #fff;
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--base-color);
    text-decoration-line: none;
}
a:hover {
    color: var(--linkhover-color);
}
a img {
    margin-bottom: 1rem;
}
a img:hover {
	opacity: 0.8;
}
.blueback {
	background-color: var(--back-color);
	color: var(--white-color);
	padding: 1rem;
}
.underline {
	border-bottom: 3px solid var(--back-color);
	padding-bottom: 0.5rem;
}
.center {
	text-align: center;
}

/*ヘッダー
-------------------------------------*/
.head {
	display: flex;
    flex-direction: row;
    padding: 1rem 0 0 0;
}

.head h1 {
    padding: 1rem 0;
}
.telbox {
	margin-left: auto;
	font-size: 2.0rem;
	padding: 1rem 0 0 0;
}
.menu {
	background-color: var(--back-color);
}
nav ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin-bottom: 0;
}
nav li {
    flex: 1 0 auto;
	margin-bottom: 0;
}
nav li a {
    text-decoration: none;
    text-align: center;
	color: var(--white-color);
}
nav a:hover {
    background-color: var(--linkhover-color);
	color: var(--white-color);
}
nav a {
    padding: 2rem 1rem;
	display: block;
}

@media screen and (min-width: 768px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
}
}

@media screen and (max-width: 768px){
.head {
	flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
}
.telbox {
	margin-left: 0;
	text-align: center;
}
.head #open,#close  {
    position: absolute;
    top: 20px;
    right: 12px;
    }
nav ul {
	flex-direction: column;
}

nav li {
	padding-top: 0;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
    display: block;
    background: url(../img/button.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
#close  {
    display: block;
    background: url(../img/button2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
}

/*メイン画像
-------------------------------------*/
.mainimg img {
	width: 100vw;
	background-color: rgba(255, 255, 255, 0.8);
	background-blend-mode: lighten;
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 5rem 0 5rem 0;
}
h2 {
 border-radius: 10px;
}

/*新着情報
-------------------------------------*/
.news h2 {
    background-color: var(--back-color);
	color: var(--white-color);
	padding: 1rem;
}
.news li {
    list-style-type: none;
	border-bottom: 1px solid var(--border-color);
	padding: 0.2rem 0;
    font-size: 12px;
}
.news h4 {
  background-color: rgb(255, 0, 0);
	color: var(--white-color);
	padding: 1rem;
}

.yakusoku {
	background-color: rgb(255, 0, 0);
	color: var(--white-color);
	font-size: 15px;
	font-weight: bold;
	padding: 0px 10px;
    margin: 0 0 10px 0;
}

/*フッター
-------------------------------------*/
footer {
    background-color: var(--back-color);
	color: var(--white-color);
}
footer h5 {
    border-bottom: 2px solid var(--white-color);
}

.footer3 {
    height: 40px;
    font-size: 10px;
	display: flex;
	align-items: center;
    justify-content: center;
}
/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: var(--white-color);
}
.copyright a {
    color: var(--base-color);
    text-decoration: none;
	display: inline-block;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background: var(--back-color);
    color: var(--white-color);
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}
#pagetop a:hover {
    background: var(--back-color);
}
/*パンくずリスト
-----------------------------------*/
.breadcrumb {
    margin: 0 0 1em 0;
    padding: 0;
}
.breadcrumb li {
    list-style-type: none;
}
.breadcrumb li a {
    display: inline-block;
    color: var(--link-color);
}


/*ボタン
-----------------------------------*/
.button05 input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 10px 32px;
  width: 300px;
  height: 60px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  background-color: #67b420;
  border-radius: 20px;
  box-shadow: 0 5px 0 #aaaaaa;
  transition: 0.3s;
}

.button05 input::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 5px solid #ffffff;
  border-right: 5px solid #ffffff;
  transform: rotate(45deg);
}

.button05 input:hover {
  transform: translateY(3px);
  text-decoration: none;
  box-shadow: 0 2px 0 #aaaaaa;
  color: #ffffff;
}

form .formbottom {
	text-align: center;
}
form .btns{
	width: 300px;
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px;
	color: #000000;
	font-weight: bold;
	letter-spacing: 0.5pt;
	text-decoration: none;
	background-color: #ffffff;
	border: 3px solid #67b420;
	 border-radius: 20px;
	cursor: pointer;
	transition-duration:0.3s;
    -webkit-transition-duration:0.3s;
    -moz-transition-duration:0.3s;
    -o-transition-duration:0.3s;
    -ms-transition-duration:0.3s;
}
form .btns:hover{
    color: #ffffff;
    background-color: #8c8c8c;
}


/*ラジオボタン
-----------------------------------*/
.example4>label{
    display: block;
    padding: 5px;
    cursor: pointer;
}
.example4>label:hover{
    color: red;
}
.example4>label>input{
    margin-right: 5px;
    cursor: pointer;
}

.minlabel{
	background-color: #d5f7d0;
	margin-bottom: 5px;
}

/*良い例悪い例
-----------------------------------*/
.imgfont1, .imgfont2 , .imgfont3{
  position: relative;
}

.imgfont1 p, .imgfont2 p , .imgfont3 p{
  position: absolute;
  top: 0;/*画像の左上に配置*/
  left: -10;
  margin: 0; /*余計な隙間を除く*/
  font-size: 30px;
  line-height: 1;/*行高は1に*/
  padding: 5px 10px;/*文字周りの余白*/
  transform: rotate(-20deg);
  font-weight: bold;
}

.imgfont1 p{
	color: yellow;
}
.imgfont2 p, .imgfont3 p{
	color: red;
}
.imgfont3 p{
  font-size: 15px;
}

.balloon-set-box {
  display: flex;
  flex-wrap: wrap;
}
.balloon-set-box.left { /* 左 */
  flex-direction: row;
}
.balloon-set-box.right { /* 右 */
  flex-direction: row-reverse; /* アイコンと吹き出しの並びを入れ替える */
}
.balloon {
  position: relative; /* 三角の位置を固定するために設定 */
  display: inline-block;
  max-width: 300px;
  margin: 10px 20px 20px; /* 上 左右 下のマージン */
  padding: 8px 15px; /* ふきだし内の余白 */
  background: #ffabab; /* 背景色 */
  text-align: left; /* テキストの揃え */
  border-radius: 15px;
}
.balloon::after {
  content: '';
  border: 14px solid transparent;
  border-top-color: #ffabab;
  position: absolute;
  top: 0;
}
.left .balloon::after { /* 左側からの三角の位置 */
  left: -15px;
  top: 30px;
}
.right .balloon::after { /* 右側からの三角の位置 */
  right: -10px;
}
.balloon li{
  list-style:none;
}

#overlay{
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height:100%;
  display: none;
  background: rgba(0,0,0,0.6);
}
.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
.is-hide{
  display:none;
}

.file_photo {
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 200px;
    padding: 8px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    background: rgb(255, 181, 96);
    background: linear-gradient(270deg, rgba(255,181,96,1) 0%, rgba(255,181,96,1) 100%);
}
.file_photo:hover {
    background: rgb(255,181,96);
    background: linear-gradient(270deg, rgba(255,181,96,1) 0%, rgba(255,181,96,1) 100%);
}


.border{
	border: solid 1px #F00;    	/* 内側の線になる一本線の枠線をひく*/
	outline: solid 1px #F00;    /* 外側の線になる一本線の枠線をひく*/
	outline-offset: 1px;        /* 外側の線と内側の線の空き具合を調整*/
	margin: 2px 2px 20px 2px;            	/* 外側の線を広げた分、要素の大きさを調整する*/
	padding:10px 10px 0 10px;
	width:200px;
}
.atfont{
	color:#FF0000;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

a.btn--radius {
   border-radius: 100vh;
}
p.img_center{
  text-align: center;
}

.comf {
  background-color: #67b420;
}

/*残数
-------------------------------------*/
.zansuu {
	color: var(--back-color);
}
.zansuu h5 {
    border-bottom: 2px solid var(--white-color);
}

.zansuu {
    font-size: 15px;
	display: flex;
}

.box9 {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #ff7d6e;
    background: #ffebe9;
    border-top: solid 10px #ff7d6e;
}
.box9 p {
    margin: 0;
    padding: 0;
}

/*プログレスバー
-------------------------------------*/

.Group {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 0;
}
.Group-Bar {
  position: absolute;
  top: 9px;
  left: 3%;
  width: 95%;
  height: 2px;
  background-color: #eaeaea;/*バーの色*/
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .Group-Bar {
    top: 17px;
    height: 5px;
  }
}
.Shapeborder.isActive {
  border: 1px solid #e2264d;
}
.Circle {
  border-radius: 50%;
}
.Group-Item {
  color: #b7b7b7;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Group-Item.isActive {
  color: #e2264d;
}
.Group-Item-CircleOuter {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .Group-Item-CircleOuter {
    width: 35px;
    height: 35px;
  }
}
.Group-Item-CircleOuter.isActive {
  background: #fff;
}
.Group-Item-CircleInner {
  width: 14px;
  height: 14px;
  background-color: #b7b7b7;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .Group-Item-CircleInner {
    width: 20px;
    height: 20px;
  }
}
.Group-Item-CircleInner.isActive {
  background: #e2264d;
}
.Group-Item-CircleInner:last-of-type::after {
  content: none;
}
.Group-Item-Text {
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: 600;
}
.Group-Bar.isActive1  {
  width: 19%;
  background-color: #e2264d;/*バーの色*/
}
.Group-Bar.isActive2  {
  width: 37%;
  background-color: #e2264d;/*バーの色*/
}
.Group-Bar.isActive3  {
  width: 56%;
  background-color: #e2264d;/*バーの色*/
}
.Group-Bar.isActive4  {
  width: 75%;
  background-color: #e2264d;/*バーの色*/
}

.Group-Bar.isActive  {
  background-color: #e2264d;/*バーの色*/
}
