@charset "UTF-8";

/* common settings */
.container * {
    box-sizing: border-box;
}

.container {
    width:1100px;
    margin:0 auto;
}

@media all and (max-width:1099px) {
  .container {
      width:96%;
      margin:0 auto;
  }
}

/* margin-bottom settings */
.mb-xxsmall {
  margin-bottom: 5px !important;
}
.mb-xsmall {
  margin-bottom: 10px !important;
}
.mb-small {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb-medium {
  margin-bottom: 30px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mb-medium2 {
  margin-bottom: 45px !important;
}
.mb-large {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb-xlarge {
  margin-bottom: 70px !important;
}
.mb85 {
  margin-bottom: 85px !important;
}
.mb-xxlarge {
  margin-bottom: 100px !important;
}
.mb-xxxlarge {
  margin-bottom: 150px !important;
}
@media all and (max-width: 420px) {
  .mb-xxsmall {
    margin-bottom: 5px !important;
  }
  .mb-xsmall {
    margin-bottom: 10px !important;
  }
  .mb-small {
    margin-bottom: 15px !important;
  }
  .mb-medium {
    margin-bottom: 20px !important;
  }
  .mb35 {
    margin-bottom: 20px !important;
  }
  .mb-medium2 {
    margin-bottom: 25px !important;
  }
  .mb-large {
    margin-bottom: 30px !important;
  }
  .mb-xlarge {
    margin-bottom: 50px !important;
  }
  .mb85 {
    margin-bottom: 50px !important;
  }
  .mb60 {
    margin-bottom: 30px !important;
  }
  .mb-xxlarge {
    margin-bottom: 80px !important;
  }
  .mb-xxxlarge {
    margin-bottom: 80px !important;
  }
}
/* alignment */
.right {
  text-align: right !important;
}
.center {
  text-align: center !important;
}
.left {
  text-align: left !important;
}
/* a link button with arrow */
a.LinkwArrow {
  display: inline-block;
  color: #0075a9;
  font-weight: 300;
  padding: 5px 0 5px 1.5em;
  transition: all .3s ease;
  position: relative;
}
a.LinkwArrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #0075a9;
  border-right: 1px solid #0075a9;
  position: absolute;
  top: 50%;
  transform: rotate(45deg) translateY(-65%);
  left: 0;
  transition: all .3s ease;
}
a.LinkwArrow::after {
  content: "";
  display: block;
  width: 17px;
  height: 1px;
  background: #0075a9;
  position: absolute;
  top: 50%;
  left: 0;
  transition: all .3s ease;
}
a.LinkwArrow:hover {
  color: #00b1ff;
}
a.LinkwArrow:hover::before {
  border-top: 1px solid #00b1ff;
  border-right: 1px solid #00b1ff;
  left: 3px;
  transition: all .3s ease;
}
a.LinkwArrow:hover::after {
  background: #00b1ff;
  left: 3px;
  transition: all .3s ease;
}
/* h2 title for lower pages */
.title_h2 h2 {
  width: 100%;
  color: #323232;
  margin: 0px 0px 70px 0px;
  text-align: center;
  position: relative;
}
.title_h2 h2 span {
  display: inline-block;
  font-size: 3.2rem;
  line-height: 3.6rem;
  letter-spacing: 0.05em;
  font-weight: normal;
  padding: 0px 50px 0px 50px;
  margin: 0px;
  position: relative;
}
.title_h2 h2 span::before {
  content: "";
  width: 100%;
  height: 100%;
  -webkit-transform: skewX(155deg);
  -moz-transform: skewX(155deg);
  transform: skewX(155deg);
  border-left: 1px solid #323232;
  border-right: 1px solid #323232;
  position: absolute;
  top: 0%;
  right: 0%;
  left: 0%;
  margin: 0px auto 0px;
}
@media all and (max-width: 420px) {
  .title_h2 h2 {
    width: 90%;
    color: #323232;
    margin: 0px auto 50px;
    text-align: center;
    position: relative;
  }
  .title_h2 h2 span {
    display: inline-block;
    font-size: 2.5rem;
    line-height: 3.6rem;
    letter-spacing: 0.05em;
    font-weight: normal;
    padding: 0px 20px 0px 30px;
    margin: 0px;
    position: relative;
  }
  .title_h2 h2 span::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transform: skewX(155deg);
    -moz-transform: skewX(155deg);
    transform: skewX(155deg);
    border-left: 1px solid #323232;
    border-right: 1px solid #323232;
    position: absolute;
    top: 0%;
    right: 0%;
    left: 0%;
    margin: 0px auto 0px;
  }
}
/* h3 title for lower pages */
h3.ttl_h3 {
  font-size: 21px;
  color: #000;
  font-weight: bold;
  padding: 8px 10px 8px 15px;
  border-left: 3px solid #0075a9;
  margin: 0 0 30px;
  letter-spacing: 0.1em;
}
/* tables */
/* table wrapper is the one which wraps around the table. */
.table_wrapper {
  box-sizing: border-box;
  width: 100%;
  padding: 0;
  margin: 0;
}
.tbl01 {
  width: 100%;
  margin: 0 auto;
  border: none;
  border-top: 1px solid #DDD;
  border-left: 1px solid #DDD;
  border-collapse: collapse;
  font-size: 14px;
}
.tbl01 th, .tbl01 td {
  padding: .5em;
  border-bottom: 1px solid #DDD;
  border-right: 1px solid #DDD;
}
.tbl01 th {
  background: #f2f3f3;
  text-align: center;
  font-weight: normal;
}
.tbl01 tr.center td {
  text-align: center;
}
.tbl01 ul {
  margin: 0 0 20px 10px;
  padding: 0 0 0 10px;
}
.tbl01 .yellow {
  background-color: cornsilk !important;
}
/* if screen size becomes less than 420px, the width of table is expanded to 200%, and the setting of overflow on .table_wrapper is activated */
@media all and (max-width: 420px) {
  .table_wrapper {
    box-sizing: border-box;
    width: 100%;
    padding: .5em;
    margin: 0;
    overflow: auto;
  }
  .tbl01 {
    width: 200%;
    margin: 0 auto;
    border: none;
    border-top: 1px solid #DDD;
    border-left: 1px solid #DDD;
    border-collapse: collapse;
    font-size: 14px;
  }
}


.neckBl {
	min-height:50px;
}

.conBox_edit00 {
    margin: 0px auto 30px;
}

.conBox_edit {
    width: 100%;
    margin: 0px auto 70px;
    text-align: center;
	display:flex;
	flex-wrap: wrap;
	justify-content:space-between;
}

.itemBox_edit {
    width: 32%;
	margin:0 0 20px;
    padding: 0% 0%;
    position: relative;
}

@media all and (min-width:421px) and (max-width:768px) {
.itemBox_edit {
    width: 49%;
	margin:0 0 15px;
    padding: 0% 0%;
    position: relative;
}	
}

@media all and (max-width:420px) {
.itemBox_edit {
    width: 100%;
	margin:0 0 10px;
    padding: 0% 0%;
    position: relative;
}	
}

.txtBox_edit2 {
    display: block;
    margin: 0px auto;
}


.mmsize{
	font-size: 1.6rem ;/*clc未対応*/
	line-height:3.0rem;
	font-size: calc(1.6rem + 0.4vw);
	line-height: calc(1.8rem + 0.6vw);
}


@media all and (min-width:421px) and (max-width:767px){
	.mmsize{
		font-size: calc(1.5rem + 0.6vw);
		line-height: calc(1.9rem + 0.8vw);
	}

}
@media all and (max-width:420px){
	.mmsize{
		font-size: calc(1.8rem + 0.8vw);
		line-height: calc(1.9rem + 0.8vw);
	}
}