/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*
* "Noto Sans JP" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Noto+Sans+JP
*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NS-Medium.woff2") format("woff2"), url("../fonts/NS-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NS-Bold.woff2") format("woff2"), url("../fonts/NS-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/NS-Black.woff2") format("woff2"), url("../fonts/NS-Black.woff") format("woff");
  font-display: swap;
}

/* 共通 */
@media screen and (max-width: 900px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 900px) {
  .sp {
    display: none;
  }
}

.inner {
  margin: auto;  
  position: relative;
}

/* 1070px以上の場合 */
@media screen and (min-width: 1108px) {
  .inner {
    width: 1108px;  /* 修正前1070px */
  }
}

/* 900px以上 かつ 1070px以下の場合 */
@media screen and (min-width: 900px) and (max-width: 1108px) {
  .inner {
    width: 100%;
  }
}

/* 900px以下の場合 */
@media screen and (max-width: 900px) {
  .inner {
    padding: 0 10px;
  }
}


b {
  font-weight: 900;
}


/* 動き */
.fade-up {
  opacity: 0;
  transform: translate(0px, 20px);
  transition-duration: 1000ms;
  transition-timing-function: ease-in-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 2s cubic-bezier(.4,.4,0,1);
  -webkit-font-smoothing: antialiased;
  -webkit-backface-visibility: hidden;
}

.fade-in.show {
  opacity: 1;
}

@media screen and (max-width: 900px) {
}

@media screen and (min-width: 900px) {
}

a[href^="tel"],
a[href^="mailto"] {
    text-decoration: none;
}


body {
  box-sizing: border-box;
}
#contents {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 700;
  box-sizing: border-box;
  width: 100%;
  padding: 0;
  margin: 0;
  max-width: unset;
}

/* MV
---------------------------------------------------------------------------*/
nav#menu {
  border-bottom: none;
  margin: 0;
}

.mv {
  position: relative;
  background-color: #CFE2FF;
  padding: 2rem 0;
  z-index: 0;
  @media screen and (max-width: 900px) {
    padding: .5rem 0 2rem;
  }
}

.mv-image {
  position: absolute;
  width: clamp(21.75rem, -11.173rem + 39.259vw, 27.938rem);
  display: block;
  z-index: -1;
  vertical-align: bottom;
  bottom: -39px;
  left: clamp(40rem, -11.173rem + 62.259vw, 54.938rem);

}

@media screen and (max-width: 900px) {
  .mv-image {
    width: 90%;
    top: 45vw;
    right: 0;
    left: 10px;
    margin: auto;
  }
}

.mv-subcatch {
  display: block;
  width: clamp(30vw, 680px, 60vw);
  margin: 0 0 16px 11px;
}

@media screen and (max-width: 900px) {
  .mv-subcatch {
    width: 95%;
    margin: 0 0 12px 11px;
  }
}

.mv-catch {
  display: block;
  width: clamp(62%, 56vw, 822px);
  max-width: 70vw; /* 最大幅を制限 */
}

@media screen and (max-width: 900px) {
  .mv-catch {
  width: 86%;
  margin: 0 auto 166px;
  max-width: unset;
  }
}

.mv-checkpoint {
  display: flex;
  flex-wrap: wrap;
  margin: 26px 0 0;
  gap: 0 23px;
}

@media screen and (max-width: 900px) {
  .mv-checkpoint {
    gap: 10px 0;
  }
}

 .mv-checkpoint li {
  font-size: 1.7cqw;
  color: #fff;
  background-color: #173987;
  border: 5px solid #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  border-radius: 22px;
  position: relative;
  padding: 20px 0 20px 57px;
  width: clamp(16vw, 17vw, 18vw);
  font-weight: 400;
  line-height: 1.4;
  margin-left: 25px;
  @media screen and (max-width: 900px) {
    width: 71%;
    font-size: 20px;
    padding: 10px 0 10px 40px;
    font-weight: 500;
    border-radius: 10px;
    border-width: 2px;
    margin: 0 0 0 53px;
  }
}

.mv-checkpoint li::before {
  content: "";
  width: 80px;
  height: 80px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -39px;
  margin: auto;
}

@media screen and (max-width: 900px)  {
  .mv-checkpoint li::before {
    width: 81px;
    height: 81px;
    left: -50px;
  }

}

.mv-checkpoint li:nth-child(1)::before {
  background: url(../image/ico-mv01.svg) no-repeat 0 0 / cover;
}

.mv-checkpoint li:nth-child(2)::before {
  background: url(../image/ico-mv02.png) no-repeat 0 0 / cover;
}

.mv-checkpoint b {
  color: #FFF06D;
}

/* section
---------------------------------------------------------------------------*/
.banner {
  margin: 95px auto;
  text-align: center; 
}

.banner img {
  box-shadow: 2px 3px 9px hsl(0deg 0% 0% / 16%);
  border-radius: 20px;
  width: 80%;
}


.banner a img {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.banner a:hover img {
  transform: scale(1.05); /* 105% に拡大 */
  -webkit-transition: all .5s;
  transition: all .5s;
}


@media screen and (max-width: 900px) {
  .banner {
    margin: 36px auto 40px;
  }  

  .banner img {
    width: 90%;
  } 
}
.concern-area {
  position: relative;
  border: 4px solid #8E8E8E;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 45px;
}

.concern-area h2 {
  font-size: calc(53px* .8);
  color: #02194E;
  display: inline-block; /* 変更 */
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%); /* 中央寄せ */
  background: #fff;
  margin: 0; /* autoを削除 */
  padding: 5px 25px 5px 35px;
  font-weight: 900;
  letter-spacing: 0.5px;
  width: 580px;
} 

@media screen and (max-width: 900px) {   
  .concern-area {
    border-width: 2px;
  }
  .concern-area h2 {
    font-size: 26px;
    line-height: 1.3;
    padding: 0 10px;
    width: 80%;
  }
}

.concern-txt01,
.concern-txt02,
.concern-txt03 {
  position: absolute;
  opacity: 0; /* 初期状態で非表示 */
  transform: translateY(10px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.concern-txt01.show,
.concern-txt02.show,
.concern-txt03.show {
  opacity: 1;
  transform: translateY(0);
}

.concern-txt01 {
  left: 45px;
  max-width: 35%;
  top: 115px;
}

.concern-txt02 { 
  left: 20px;
  right: 0;
  margin: auto;
  max-width: 32%;
  top: 64px;
}


.concern-txt03 {
  right: 31px;
  top: 87px;
  max-width: 28%;
}

.img-concern {
  margin: 210px auto 32px;
  display: block;
  width: 46%;
}

.down-arrow-wrap {
  position: absolute;
  top: 460px;
  width: 100%;
  display: block;
  text-align: center;
  overflow: hidden;
}

.down-arrow-inner {
  animation: flow-arrow .8s ease-in;
  height: 147px;
}

@keyframes flow-arrow {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

.down-arrow-wrap img {
  max-height: 100%;
  width: auto;
}


@media screen and (max-width: 900px) {
  .concern-txt01 {
    left: -3px;
    max-width: 61vw;
    top: 51px;
  }
  .concern-txt02 {
    right: 6px;
    margin: auto;
    max-width: 49vw;
    top: 104px;
    left: unset;
  }
  .concern-txt03 {
    top: 152px;
    right: unset;
    left: 8px;
    max-width: 58%;
  }
  .concern-txt03 img {
    max-width: unset;
    width: 90%;
  }
  .img-concern {
    margin: 214px auto 9px;
    width: 83%;
  }
  .down-arrow-wrap {
    position: absolute;
    top: unset;
    bottom: -40px;
  }
  .down-arrow-inner {
    height: 65px;
  }
  .down-arrow-wrap img {
    max-height: 40px;
  }
}


/* ask-area
---------------------------------------------------------------------------*/
.ask-area {
  background-color: #CFE2FF;
  padding: 70px 0 158px;
  @media screen and (max-width: 900px) { 
    padding: 34px 0 29px;
   }
}

.ask-title {
  text-align: center;
  margin: 0 94px 30px 75px;
  @media screen and (max-width: 900px) {   
    margin: 0 37px 16px;
  }
}

.ask-wrap {
  background: #fff;
  box-shadow: 0 7px 26px rgba(0, 0, 0, .16);
  @media screen and (min-width: 900px) {
    border: 1px solid #2F62AD;
    outline: 10px solid #fff;
    margin: 0 9px;
    padding: 88px 6.4vw;
    border-radius: 12px;
  }
  @media screen and (max-width: 900px) {
    padding: 34px 10px;
    border-radius: 4px;
  }
}

.ask-head {
  background: #173987;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  border-radius: 30px;
  position: relative;
  padding: 20px;
  margin-bottom: 71px;
  margin-left: 25px;
  letter-spacing: 1px;
  line-height: 1.3;
  text-align: center;
}

@media screen and (max-width: 900px) { 
  .ask-head {
    margin: 0;
    border-radius: 20px;
    font-size: 4cqw;
    padding: 13px 0 13px 30px;
    line-height: 1.4;
  }  
}

.ask-head::before {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -37px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #173987 transparent transparent transparent;
  border-width: 46px 38px 0px 38px;
}

.ask-wrap .fade-up:nth-of-type(even) .ask-head {
  padding: 13px 0 13px 22px;
}

.ask-wrap .fade-up:nth-of-type(3n-2) .ask-head::after {
  content: "";
  width: 100px;
  height: 137px;
  background: url(../image/ico-user01.png) no-repeat 0 0 / cover;
  position: absolute;
  bottom: 0;
  left: 42px;
  display: block;
}

.ask-wrap .fade-up:nth-of-type(3n-1) .ask-head::after {
  content: "";
  width: 120px;
  height: 147px;
  background: url(../image/ico-user02.png) no-repeat 0 0 / cover;
  position: absolute;
  bottom: 0;
  right: 30px;
  display: block;
}

.ask-wrap .fade-up:nth-of-type(3n) .ask-head::after {
  content: "";
  width: 132px;
  height: 136px;
  background: url(../image/ico-user03.png) no-repeat 0 0 / cover;
  position: absolute;
  bottom: 0;
  left: 24px;
  display: block;
}

@media screen and (max-width: 900px) {
  .ask-head::before {
    bottom: -16px;
    border-width: 16px 14px 0px 14px;
  }
  
  .ask-wrap .fade-up:nth-of-type(even) .ask-head {
    padding: 20px 40px 20px 20px;
  }
  .ask-wrap .fade-up:nth-of-type(3n-2) .ask-head::after {
    width: 61px;
    height: 77px;
    left: 2px;
  }

  .ask-wrap .fade-up:nth-of-type(3n-1) .ask-head::after {
    width: 60px;
    height: 82px;
    right: -3px;
  }

  .ask-wrap .fade-up:nth-of-type(3n) .ask-head::after {
    width: 76px;
    height: 76px;
    left: -15px;
  }
}


.ask-box {
  width: 100%;
  display: block;
  margin: 27px 0 73px;
  @media screen and (min-width: 900px) {
    display: flex;
    flex-wrap: wrap;
    gap: 0 73px;
    align-items: flex-start;
    padding: 0 0 0 18px;
    margin: 0 auto 155px;
  }
}

.ask-wrap .fade-up:nth-of-type(even) .ask-box {
  @media screen and (min-width: 900px) {
    flex-direction: row-reverse;
    gap: 0 58px;
  }
}

.ask-wrap .fade-up:last-child .ask-box {
  margin-bottom: 0;
}

.ask-wrap .fade-up:nth-of-type(even) .ask-detail {
  @media screen and (min-width: 900px) {
    margin-right: 0;
    margin-left: 68px;
  }
}

.ask-wrap .fade-up:nth-of-type(even) .ask-img {
  @media screen and (min-width: 900px) {
    margin-left: 0;
    margin-right: 60px;
  }
}

.ask-img {
  border: 1px solid #707070;
  @media screen and (max-width: 900px) {
    width: 51%;
    margin: auto;
    display: block;
   }
  @media screen and (min-width: 900px) {
    width: 31.6%;
    height: auto;
    max-width: 100%;
    flex-shrink: 0;
    margin-left: 71px;
  }
}

.ask-detail {
  border-radius: 10px;
  position: relative;
  text-align: center;
  color: #02194E;
  border: 2px solid #2F62AD;
  @media screen and (max-width: 900px) {
    margin: 37px 10px 0;
  }
    padding: 26px 0 14px;
  @media screen and (min-width: 900px) {
    border-width: 4px;
    width: 40%;
    padding: 70px 1vw 30px;
    flex: 1;
    margin-right: 44px;
    margin-top: 31px;
  }
}

.ask-detail::before {
  content: "";
  background: url(../image/ico-airyugakusoudan.png) no-repeat center / 109px auto #fff;
  top: -70px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 70px;
  height: 134px;
  position: absolute;
  padding: 0 30px;
}

@media screen and (max-width: 900px) {
  .ask-detail::before {
    background-size: 55px auto;
    top: -29px;
    width: 5px;
    height: 55px;
  }
 }

.ask-detail .ttl {
  font-size: 16px;
  color: #02194E;
  margin: 8px 0 17px;
}

.ask-detail .ttl b {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.5;
  color: #021822;
  background: #FFF06D;
}
@media screen and (max-width: 900px) {
  .ask-detail .ttl {
    margin-bottom: 12px;
    line-height: 1.8;
  }
  .ask-detail .ttl b {
    font-size: 6cqw;
    line-height: 1.7;
  }
}


/* 使用イメージ
---------------------------------------------------------------------------*/
.using-image {
  background: url(../image/bg-image.jpg) no-repeat 0 0 / cover;
  
}
.using-image-inner {
  padding: 0 0 90px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(13px) brightness(1.16);
  -webkit-backdrop-filter: blur(13px) brightness(1.16);
}

@media screen and (max-width: 900px) {
  .using-image-inner {
    padding: 0 0 48px;
  }
 }

.using-image-ttl {
  padding: 103px 0 33px;
  background: url(../image/ttl-bg-image.svg) no-repeat bottom / contain;
  margin: 0 0 17px;
  text-align: center;
  @media screen and (max-width: 900px) {
    padding: 43px 0 13px;
  }
}

.using-image-ttl img {
  width: 35.8vw;
  @media screen and (max-width: 900px) {
    width: 90%;
  }
}
.video-wrap {
  margin: auto;
  display: block;
  border-radius: 40px;
  overflow: hidden;
  width: 410px;
  position: relative;
}
video { 
  width: 410px;
  margin: auto;
  display: block;
  object-fit: cover;
  
  /* 角を完全に隠す */
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 98%, rgba(0,0,0,0) 100%);
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 98%, rgba(0,0,0,0) 100%);
  
}

.video-wrap::after {
  content: "❚❚"; /* 一時停止アイコン */
  font-size: 40px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none; /* マウス操作を透過 */
}

.video-wrap:hover::after {
  opacity: 1;
}

.video-wrap.paused::after {
  opacity: 0; /* 一時停止中は非表示 */
}


video:hover {
  cursor: pointer;
}

@media screen and (max-width: 900px) {  
  .video-wrap {
    width: 100%;
  }
  video {
    width: 88%;
    margin: auto;
    border-radius: 20px;
  }
}

/* できること
---------------------------------------------------------------------------*/
.possible {
  background: #CFE2FF;
  border-top: 4px solid #fff;
  padding-bottom: 20px;
  @media screen and (max-width: 900px)  {
    padding-bottom: 29px;
   }
}

.possible .ttl-possible-area {
  background-color: #173987;
  color: #fff;
  text-align: center;
  position: relative;
  padding: 30px 65px 25px;
  margin-bottom: 38px;
  @media screen and (min-width: 900px) {
    padding: 87px 0 59px;
  }
}

.possible .ttl-possible-area::before {
  content: "";
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: -37px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #173987 transparent transparent transparent;
  border-width: 46px 38px 0px 38px;
}

.possible .ttl-possible-area .ttl-possible {
  text-align: center;
  margin-bottom: 7px;
  @media screen and (min-width: 900px) {
    width: 34.9vw;
    display: block;
    position: relative;
    margin: 0 auto 35px;
  }
}

.possible .ttl-possible-area .ttl-possible::before {
  content: "";
  width: 272px;
  height: 206px;
  background: url(../image/ico-user04.png) no-repeat 0 0;
  background-size: auto 100%;
  position: absolute;
  bottom: -117px;
  left: -341px;
  display: block;
}

@media screen and (max-width: 900px) {
  .possible .ttl-possible-area .ttl-possible::before {
    bottom: 0;
    left: -14px;
    width: 36%;
    height: 78px;
  }
}

.possible .ttl-possible-area .ttl-possible::after {
  content: "";
  width: 273px;
  height: 212px;
  background: url(../image/ico-user05.png) no-repeat 0 0;
  background-size: auto 100%;
  position: absolute;
  bottom: -107px;
  right: -336px;
  display: block;
}

@media screen and (max-width: 900px) {
  .possible .ttl-possible-area .ttl-possible::after {
    bottom: 0;
    right: 10px;
    width: 20%;
    height: 80px;
    left: unset;
  }
}

.possible .ttl-possible-area p {
  @media screen and (max-width: 900px) { 
    line-height: 1.5;  
  } 
}

.possible-item {
  @media screen and (min-width: 900px) {
    display: flex;
    flex-wrap: wrap;
    gap: 0 2.4vw;
    margin: 150px 0 0;
  }
}

.possible-item li {
  position: relative;
  border-radius: 20px;
  background: #fff;
  color: #02194E;
  padding: 20px 20px 15px 100px;
  margin-bottom: 24px;
  box-shadow: 0 6px 26px rgba(0, 0, 0, .16);
  font-weight: 900;
  box-sizing: border-box;
  @media screen and (min-width: 900px) {   
    width: calc((100% - 5vw) / 3);
    margin-bottom: 95px;
    text-align: center;
    padding: 90px 20px 35px;
  }
}

.possible-item img {
  display: block;
  position: absolute;
  width: 70px;
  left: 20px;
}

@media screen and (min-width: 900px) {
  .possible-item img {
  width: 129px;
  top: -63px;
  left: 0;
  right: 0;
  margin: auto;    
  }
}

.possible-item .heading {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 22px;
}

.possible-item p {
  font-weight: 900;
  font-size: 13px;
  line-height: 1.8;
}
@media screen and (max-width: 900px) {
  .possible-item img {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .possible-item .heading {
  font-size: 5cqw;
  margin-bottom: 8px;    
  }
  .possible-item p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
  }
 }


/* about
---------------------------------------------------------------------------*/
.about {
  padding: 48px 0 0;
}

@media screen and (max-width: 900px) {
  .about {
  padding: 43px 0 0;    
  }
}

.ttl-about {
  font-size: 23px;
  font-weight: 900;
  color: #173987;
  text-align: center;
  @media screen and (max-width: 900px) {
    font-size: 16px;
  }
}

.about-item {
  max-width: 840px;
  margin: 28px auto 76px;
  @media screen and (max-width: 900px) {
    width: 100%;
    margin: 23px 0 56px;
  }
}

.ttl-about small {
  display: inline-block;
  color: #fff;
  font-weight: 900;
  text-align: center;
  font-size: 23px;
  background-color: #173987;
  border-radius: 100px;
  padding: 6px 53px;
}

.ttl-about img {
  width: 37vw;
  vertical-align: -4.3vw;
  margin: 23px 14px 0 0;
}

@media screen and (max-width: 900px) {
  .ttl-about small {
    padding: 6px 33px;
    line-height: 1;
    font-weight: 400;
    font-size: 20px;
  }
  .ttl-about img {
    width: 64vw;
    vertical-align: -6.3vw;
    margin: 16px 6px 0 0;
   }
}

.about-item li {
  border: 2px solid #173987;
  border-radius: 20px;
  margin-bottom: 31px;
  color: #173987;
  background-color: #EAF4FE;
  padding: 45px 30px 41px 316px;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 900;
}

.about-item li:nth-child(1) {
  background-image: url("../image/img-management01.jpg");
  background-repeat:  no-repeat;
  background-size: auto 100%; 
}
.about-item li:nth-child(2) {
  background-image: url("../image/img-management02.jpg");
  background-repeat:  no-repeat;
  background-size: auto 100%;
}
.about-item li:nth-child(3) {
  background-image: url("../image/img-management03.jpg");
  background-repeat:  no-repeat;
  background-size: auto 100%;
}

@media screen and (max-width: 900px) {  
  .about-item li {
    font-size: 3.5cqw;
    padding: 32px 0 32px 30vw;
    margin-bottom: 19px;
    
  }
  .about-item li:nth-child(1) {
    background-image: url("../image/img-management01-sp.jpg");
  }
  .about-item li:nth-child(2) {
    background-image: url("../image/img-management02-sp.jpg");
  }
  .about-item li:nth-child(3) {
    background-image: url("../image/img-management03-sp.jpg");
  }
}


.about-item li b{
  background-color: #FFF06D;
}

.annotation {
  border-top: 2px solid #173987;
  border-bottom: 2px solid #173987;
  padding: 24px 0;
  @media screen and (max-width: 900px) {
    padding: 30px 20px;
  }
}

.annotation-logo {
  display: block;
    margin: auto;
    width: 152px;
}

.annotation-txt {
  margin: 20px 0 11px;
  font-size: 16px;
  line-height: 1.6;
}

.caution p {
  font-size: 12px;
}

@media screen and (min-width: 900px) {
  .annotation {
    display: grid;
    grid-template-columns: 17% auto;
    margin: 0 0 91px;
    }
    
    .annotation-logo {
       grid-area: 1 / 1 / 2 / 2; 
       width: 157px;
       padding: 0 13px;
      }
    .annotation-txt {
       grid-area: 1 / 2 / 2 / 3;
       font-size: 1.3vw;
       font-weight: 900;
       line-height: 1.6;
       padding: 31px 0;
       letter-spacing: 1.5px; 
      }
    .caution {
      grid-area: 2 / 1 / 3 / 3;
      font-size: 11.2px;
      line-height: 1.5;
      padding-top: 2px; 
      }
    .caution p{
      margin-bottom: 15px;
    }
}

.address {
  @media screen and (min-width: 900px) {
    display: flex;
    flex-wrap: wrap;
    gap: 0 2%;
  }
}
.address-img{
  text-align: center;
  color: #173987;
  font-size: 19px;
  @media screen and (min-width: 900px) {
    width: 36%;
    font-size: 20px;
    text-align: right;
    padding: 10px 20px;
    box-sizing: border-box;
    line-height: 1.1;
  }
}

.address-img img {
  display: block;
  margin: 0 0 27px;
  @media screen and (max-width: 900px) {
    margin: 30px auto 27px;
    width: 311px;
   }
}

.address-img b {
  font-weight: 900;
  font-size: 12cqw;
  line-height: 1.2;
  text-decoration: none;
}
@media screen and (min-width: 900px) {
  .address-img b {
    font-size: 43px;
  }
}

.address-txt {
  border-radius: 20px;
  background: #CFE2FF;
  margin: 10px;
  padding: 26px 10px 1px;
  @media screen and (min-width: 900px) {
    width: 61%;
    display: flex;
    flex-wrap: wrap;
    padding: 42px 10px 42px 42px;
    box-sizing: border-box;
    font-size: 12.5px;
    gap: 0 20px;
    color: #02194E;
    margin: 0;
  }
}

.address-txt dd {
  @media screen and (max-width: 900px) {
    line-height: 1.2;
    margin-bottom: 17px;
  }
}

@media screen and (min-width: 900px) {
  .address-txt dt {
    width: 9%;
    text-align:justify;
    text-align-last:justify;
  }
  .address-txt dd {
    width: 86%;
    
  }
}

@media screen and (max-width: 900px) {   
}

@media screen and (min-width: 900px) {
}

/* 
---------------------------------------------------------------------------*/
