@charset "utf-8";

/*##### Base Width #####*/
.baseW {
  width: calc(100% );
  /*min-width: 1000px;*/
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}
.baseW02 {
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 750px){
  .baseW,
  .baseW02 {
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
  .baseSpW {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}


/*##### Base Com #####*/
.boxBaseCom > p {
  line-height: 2.15;
  letter-spacing: 0.02em;
  font-size: 1.4rem;
  font-family: var(--base-font-min);
  padding-left:1.0em;
}
@media all and (max-width: 750px){
  .boxBaseCom > p {
    line-height: 1.8;
    font-size: 1.1rem;
	padding-left:0;
  }
}

.boxBaseCom > p + p {
  margin-top: 1.5em;
}


/*##### ttlBase01 #####*/
.ttlBase01 {
  margin-bottom: 1.3em;
  letter-spacing: 0.1em;
  font-size: 1.714rem;
  color: #3493db;
  font-weight:600;
}
@media all and (max-width: 750px){
  .ttlBase01 {
    margin-bottom: 0.8em;
    padding-left: 0;
    font-size: 1.3rem;
  }
}


h2 {
  position: relative;
  margin:0 auto 1.5em;
  padding:1.3em;
  text-align: center !important;
}
@media all and (max-width: 750px){
  h2 {
    margin:0 auto 0.5em;
  }
}

h2 .ttlJa {
  display: inline-block;
  margin:0 auto;
  text-align: center !important;
  font-family: var(--base-font-min02)!important;
  letter-spacing: 0.04em;
  font-size: 2.265rem;
  color: var(--h-color);
}
@media all and (max-width: 750px){
  h2 .ttlJa {
    font-size: 1.5rem;
  }
}

h3{
  font-family: var(--base-font-min02);
  font-size:1.825rem;
  color:var(--h-color);
  font-weight:normal;
  margin:1.5em 0 2.0em;
  padding-left:0.8em;
  padding-bottom:0.2em;
  border-bottom:1px dotted #636363;
}
@media all and (max-width: 750px){
  h3 {
    font-size:1.6rem;
	padding-left:0.3em;
	margin-bottom: 1.3em;
  }
}

h4 {
  position: relative;
  font-family: var(--base-font-min)!important;
  font-size:1.625rem;
  letter-spacing: 0.04em;
  font-weight:400 !important;
  margin-bottom: 1.3em;
}
@media all and (max-width: 750px){
  h4 {
    margin-bottom: 1.3em;
	font-size:1.3rem;
  }
}

.boxLink {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin:3.0em auto 5.5em;
}
@media all and (max-width: 750px){
  .boxLink {
  }
}

.boxLink a {
  display: inline-block;
  text-align:center;
  padding: 1.0em 6.5em;
  background-color: #fff;
  border:1px solid #f09b96;
  border-radius: 4px;
  box-shadow: 6px 6px 0px #fce4e4;
}
@media all and (max-width: 750px){
  .boxLink a {
	  width:95%;
	  padding: 1.0em 1.0em;
	}
}

.boxLink a span{
  position: relative;
  display: inline-block;
  padding-left:2.3em;
  font-weight: bold;
  font-size:1.125rem;
  letter-spacing: 0.04em;
}
@media all and (max-width: 750px){
  .boxLink a span{
    font-size:1.0rem;
	}
}
.boxLink a span:before{
  content:'';
  position: absolute;
  top:50%;
  left:0;
  width:22px;
  height:13px;
  transform: translateY(-50%);
  background-image: url('./../../images/common/icon-arrowR.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  display: inline-block;
}
.pageNews .boxLink a span:before{
  background-image: url('./../../images/common/icon-arrowL.svg');
}

/*##### Box Base Img #####*/
.boxBaseImg {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  margin:4.0em auto 5.0em;
}
@media all and (max-width: 750px){
  .boxBaseImg {
  display: -webkit-flex;
  display: flex;
	-webkit-flex-direction:column;
	  flex-direction:column;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
	  gap:1.0em 0;
	}
}
.boxBaseImg figure{
  display: block;
  width:33.33%;
  max-width: 316px;
}
@media all and (max-width: 750px){
  .boxBaseImg figure{
    display: block;
    width:100%;
    max-width: 100%;
	}
}
.boxBaseImg figure img{
  width:100%;
  height:auto;
  border-radius: 15px;
}

/*##### Box Base Link #####*/
.boxBaseLink,
.boxBaseLink.typeLeft {
  text-align: left;
}
.boxBaseLink.typeCenter {
  text-align: center;
}
.boxBaseLink.typeRight {
  text-align: right;
}


/*##### Dl Base #####*/
.dlBase {
  letter-spacing: 0.08em;
  font-size: 1.13rem;
}
.dlBase.typeCol {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
@media all and (max-width: 750px){
  .dlBase {
    font-size: 0.9rem;
  }
}

.dlBase.typeCol > dt {
  padding-right: 0.5em;
}
.dlBase.typeCol.addMark01 > dt {
  position: relative;
  padding-right: 0.8em;
}

.dlBase.typeCol.addMark01 > dt:after {
  content: '：';
  position: absolute;
  right: 0.2em;
}


/*##### Ul Base #####*/
.ulBase > li {
  margin-bottom: 0.8em;
  line-height: 1.7;
  letter-spacing: 0.08em;
  font-size: 1.13rem;
}
@media all and (max-width: 750px){
  .ulBase > li {
    line-height: 1.6;
    font-size: 0.9rem;
  }
}


/*##### ulBase01 #####*/
.ulBase01 li:before {
  content: '・';
  margin-right: 0.3em;
}


/*##### UlBaseListCat #####*/
.ulBaseListCat {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.ulBaseListCat > li {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  /*min-height: 2.65em;*/
  min-width: 130px;
  padding: 0.4em;
  line-height: 1.0;
  letter-spacing: 0.1em;
  font-size: 0.825rem;
  color:#fff;
  border-radius:3px;
}
@media all and (max-width: 750px){
  .ulBaseListCat > li {
	padding: 0.4em 0.4em 0.3em;
    font-size: 0.8rem;
  }
}

.ulBaseListCat > li + li {
  margin-left: 0.3em;
}


/*##### Color #####*/
.cBaseRed {
  color: #e38092;
}

.txtMarker01 {
  background: linear-gradient(transparent 70%, #f0b8c3 30%);
}


.txtBaseUnitSuper {
  position: relative;
  left: -0.1em;
  vertical-align: super;
  font-size: 0.73rem;
}
@media all and (max-width: 750px){
  .txtBaseUnitSuper {
    font-size: 0.4rem;
  }
}

.txtBaseUnitSub {
  position: relative;
  bottom: 0.34em;
  vertical-align: sub;
  font-size: 0.73rem;
}
@media all and (max-width: 750px){
  .txtBaseUnitSub {
    font-size: 0.4rem;
  }
}


/*##### baseTextShadow #####*/
.txtBaseShadowWhite {
  text-shadow: 1px 1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
}

.txtBaseShadowGray {
  text-shadow: 1px 1px 0 #f6f6f6, 1px -1px 0 #f6f6f6, -1px 1px 0 #f6f6f6, -1px -1px 0 #f6f6f6, 0 0 5px #f6f6f6, 0 0 10px #f6f6f6, 0 0 15px #f6f6f6;
}


/*##### BaseMB #####*/
.baseMB {
  margin-bottom: 1.0em;
}

.baseMB02 {
  margin-bottom: 1.5em;
}

.baseMB03 {
  margin-bottom: 2.0em;
}

.baseMB04 {
  margin-bottom: 2.5em;
}

.baseMB05 {
  margin-bottom: 3.0em;
}

.baseMB06 {
  margin-bottom: 3.5em;
}

.baseMB07 {
  margin-bottom: 4.0em;
}

.baseMB08 {
  margin-bottom: 4.5em;
}

@media all and (max-width: 767px){
  .baseMB07,
  .baseMB08 {
    margin-bottom: 3.5em;
  }
}