@charset "utf-8";
/* スタイルシート
作成者：Hatomi Inc.
作成日：R8.05.28
-------------------------------------------------------------------------------------*/

/*****************************

newsSingle

*****************************/

.newsSingle {
    padding: 2rem 0 5rem;
}

@media screen and (min-width: 481px) and (max-width: 700px) {
    .newsSingle {
        padding: 2rem 0 4rem;
    }
}

@media screen and (max-width: 480px) {
    .newsSingle {
        padding: 2rem 0 3rem;
    }
}

.newsSingle__back {
    margin-bottom: 2rem;
}

@media screen and (min-width: 481px) and (max-width: 700px) {
    .newsSingle__back {
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .newsSingle__back {
        margin-bottom: 2rem;
    }
}

.newsSingle__back a {
    position: relative;
    display: inline-block;
    padding-left: 1.5rem;
    font-size: .95rem;
    font-weight: 500;
    text-decoration: none;
}


@media screen and (max-width: 480px) {
    .newsSingle__back a {
        font-size: .9rem;
    }
}

.newsSingle__back a::before {
    content: "";
    position: absolute;
    top: .5em;
    left: 0;
    width: .9rem;
    height: .9rem;
    background: url("../images/common/icon-arrow-circle-left.svg") no-repeat center center / contain;
    flex-shrink: 0;
}

.newsSingle__article {}

.newsSingle__date {
    display: block;
    margin-top: 2rem;
    color: #222;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

@media screen and (min-width: 481px) and (max-width: 700px) {
    .newsSingle__date {
        margin-top: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .newsSingle__date {
        margin-top: 2rem;
        font-size: .95rem;
    }
}

.newsSingle__title {
    margin-top: 1rem;
    padding-bottom: 1.2rem;
	   margin-bottom: 2rem;
    border-bottom: 1px solid #D9D9D9;
    color: #004A8F;
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.5;
}

@media screen and (min-width: 481px) and (max-width: 700px) {
    .newsSingle__title {
        padding-bottom: 2rem;
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 480px) {
    .newsSingle__title {
        padding-bottom: 1.5rem;
        font-size: 1.2rem;
    }
}

.newsSingle__image {
    margin-top: 3rem;
}
@media screen and (min-width: 481px) and (max-width: 700px) {
    .newsSingle__image {
        margin-top: 2.5rem;
    }
}
@media screen and (max-width: 480px) {
    .newsSingle__image {
        margin-top: 2rem;
    }
}

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

.newsSingle__content {
    margin-top: 3rem;
    color: #222;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2.2;
    word-break: break-word;
}

@media screen and (min-width: 481px) and (max-width: 700px) {
    .newsSingle__content {
        margin-top: 2.5rem;
        line-height: 2;
    }
}

@media screen and (max-width: 480px) {
    .newsSingle__content {
        margin-top: 2rem;
        font-size: .95rem;
        line-height: 1.9;
    }
}


.newsSingle__content p{
  margin-top: 1.5rem;
}

.newsSingle__content p:first-child{
  margin-top: 0;
}


.newsSingle__content a{
  color: #004A8F;
  text-decoration: underline;
}


.newsSingle__content img{
  max-width: 100%;
  height: auto;
}


.newsSingle__content ul{
  margin-top: 1.5rem;
  padding-left: 1.5rem;
}


.newsSingle__content li{
  margin-top: .5rem;
}


/*****************************

topNews

*****************************/

.topNews {
    padding: 4rem 0 3rem;
}

.topNews__inner {
    padding: 2rem 3rem;
    background: #FFF;
    border-radius: 8px;
}

@media screen and (max-width: 480px) {
    .topNews__inner {
       padding: 2rem 2rem;
    }
}

.topNews__title {
    color: #004A8F;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

@media screen and (min-width: 481px) and (max-width: 700px) {
    .topNews__title {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .topNews__title {
        font-size: 1.3rem;
    }
}
.topNews__list {
    margin-top: 1rem;
}

.topNews__item{
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 0 1.5rem 0;
	 margin-bottom: 1.5rem;
		border-bottom: #DDD solid 1px;
  text-decoration: none;
}

@media screen and (min-width: 701px) and (max-width: 800px){
  .topNews__item{
    gap: .5rem;
  }
}

@media screen and (max-width: 700px){
  .topNews__item{
    display: block;
  }
}

.topNews__item :hover{
  color: #44b5f2;
}

.topNews__item::after{
  content: "";
  position: absolute;
  top: .25rem;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;

  background-color: #034787;

  -webkit-mask:
    url("../images/common/icon-arrow-circle-right.svg")
    no-repeat center / contain;

  mask:
    url("../images/common/icon-arrow-circle-right.svg")
    no-repeat center / contain;

  transition:
    transform .3s,
    background-color .3s;
}

/* hover */
@media (hover: hover){
  .topNews__item:hover::after{
			 background-color: #44b5f2;
    transform: translateX(6px);
  }
}

.topNews__item:last-child{
  padding: 0 0 1.5rem 0;
	 margin-bottom: 0;
		border-bottom: none;
}

.topNews__date {
    flex-shrink: 0;
    width: 12rem;
    color: #222;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
}
/* TB */
@media screen and (min-width: 481px) and (max-width: 700px) {
    .topNews__date {
        width: 9rem;
        font-size: .95rem;
    }
}

@media screen and (max-width: 480px) {
    .topNews__date {
        display: block;
        width: auto;
        font-size: .9rem;
    }
}
.topNews__text {
    flex-grow: 1;
    color: #222;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
}

@media screen and (max-width: 480px) {
    .topNews__text {
        margin-top: .75rem;
        font-size: .95rem;
        line-height: 1.7;
    }
}
.topNews__arrow {
    flex-shrink: 0;
    width: 2.5rem;
}

@media screen and (max-width: 480px) {
    .topNews__arrow {
        margin-top: 1rem;
        margin-left: auto;
    }
}
.topNews__arrow img {
    width: 100%;
    height: auto;
    display: block;
}

