/* media query */
body {
  font-size: 2rem;
}
body .spShow {
  display: none;
}
@media screen and (max-width: 960px) {
  body {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 668px) {
  body {
    font-size: 1.6rem;
  }
  body .pcShow {
    display: none;
  }
  body .spShow {
    display: block;
  }
}

.copyArea {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 0 50px;
}
@media screen and (max-width: 1260px) {
  .copyArea {
    max-width: 100%;
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .copyArea {
    max-width: 100%;
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 960px) {
  .copyArea {
    padding: 50px 0;
  }
}
@media screen and (max-width: 668px) {
  .copyArea {
    padding: 30px 0;
  }
}
.copyArea > h3 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 130%;
}
@media screen and (max-width: 960px) {
  .copyArea > h3 {
    font-size: 2rem;
  }
}
.copyArea > p {
  line-height: 140%;
}
@media screen and (max-width: 668px) {
  .copyArea > p {
    font-size: 1.6rem;
  }
}

.menuArea {
  padding: 0 30px 100px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .menuArea {
    padding: 0 30px 50px;
  }
}
.menuArea > p {
  display: inline-block;
  margin: 0 10px;
}
.menuArea > p a {
  display: inline-block;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: #055f8c;
}
.menuArea > p a::after {
  content: "";
  display: block;
  height: 3px;
  margin-top: 3px;
  background-color: #f2f2f2;
  transition: 0.3s;
}
.menuArea > p a:hover::after {
  background-color: #055f8c;
}

.mainArea .inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media all and (max-width: 1367px) {
  .mainArea .inner {
    padding: 0 5vw;
  }
}
.mainArea .morningWrap__item {
  padding: clamp(3em, 10vw, 5em) 0;
}
.mainArea .morningWrap__item:first-child {
  padding-top: 0;
}
.mainArea .morningWrap__item:nth-child(2n) {
  background: #f2f2f2;
}
.mainArea .morningWrap__item:nth-child(2n) .main .textArea {
  background: rgba(242, 242, 242, 0.9019607843);
}
.mainArea .morningWrap__item .inner > .ttl {
  text-align: center;
  margin-bottom: 1em;
  font-size: 3.5rem;
  line-height: 130%;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .mainArea .morningWrap__item .inner > .ttl {
    font-size: 3rem;
  }
}
@media screen and (max-width: 668px) {
  .mainArea .morningWrap__item .inner > .ttl {
    font-size: 2.5rem;
  }
}
.mainArea .morningWrap__item .inner > .ttl small {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 5px;
}
.mainArea .morningWrap__item .main {
  margin-bottom: 4em;
  position: relative;
  padding-top: 5em;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
}
.mainArea .morningWrap__item .main .thumb {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 100%;
  overflow: hidden;
  border-radius: 1em;
}
.mainArea .morningWrap__item .main .thumb img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.mainArea .morningWrap__item .main .textArea {
  background: rgba(255, 255, 255, 0.9019607843);
  padding: 3em 3em 3em 0;
  max-width: 730px;
  width: 70%;
  position: relative;
  border-radius: 1em 1em 0 0;
}
.mainArea .morningWrap__item .main .textArea .ttl {
  margin-bottom: 0.6em;
  font-size: 2.5rem;
  line-height: 130%;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .mainArea .morningWrap__item .main .textArea .ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 668px) {
  .mainArea .morningWrap__item .main {
    display: block;
    padding-top: 50vw;
    min-height: 0;
  }
  .mainArea .morningWrap__item .main .thumb {
    right: -5vw;
    bottom: auto;
    top: 0;
    width: 100vw;
    height: 60vw;
  }
  .mainArea .morningWrap__item .main .thumb img {
    max-width: 100vw;
  }
  .mainArea .morningWrap__item .main .textArea {
    padding: 7vw 5vw 0;
    width: 100%;
  }
}
.mainArea .morningWrap__item .detailList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14em, 1fr));
  gap: clamp(1.5em, 4vw, 3em);
  margin-bottom: 30px;
}
.mainArea .morningWrap__item .detailList .thumb {
  margin-bottom: 1em;
  overflow: hidden;
  border-radius: 1em;
}
.mainArea .morningWrap__item .detailList .thumb img {
  width: 100%;
  height: auto;
}
.mainArea .morningWrap__item .detailList .textArea .ttl {
  color: #055f8c;
  margin-bottom: 0.5em;
  line-height: 1.5;
  font-size: 2.5rem;
  line-height: 130%;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .mainArea .morningWrap__item .detailList .textArea .ttl {
    font-size: 2rem;
  }
}
.mainArea .morningWrap__item .textKome li {
  text-indent: -1em;
  padding-left: 1em;
}
.mainArea .morningWrap__item .point {
  margin-top: 3em;
}
.mainArea .morningWrap__item .point .ttl {
  margin-bottom: 1em;
  font-size: 2.5rem;
  line-height: 130%;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .mainArea .morningWrap__item .point .ttl {
    font-size: 2rem;
  }
}
.mainArea .morningWrap__item .point .pointList {
  display: flex;
  justify-content: space-between;
}
.mainArea .morningWrap__item .point .pointList li {
  width: 22%;
}
.mainArea .morningWrap__item .point .pointList li img {
  width: 100%;
  height: auto;
  border-radius: 1em;
}
.mainArea .morningWrap__item .point .pointList li p {
  display: block;
  margin-top: 1em;
  text-align: center;
  font-size: 90%;
  line-height: 1.4;
}
@media screen and (max-width: 668px) {
  .mainArea .morningWrap__item .point .pointList {
    flex-wrap: wrap;
  }
  .mainArea .morningWrap__item .point .pointList li {
    width: 47%;
    margin-bottom: 1.5em;
  }
  .mainArea .morningWrap__item .point .pointList li:nth-last-child(2), .mainArea .morningWrap__item .point .pointList li:last-child {
    margin-bottom: 0;
  }
}
.mainArea .linkBtn {
  margin-top: 2em;
}
.mainArea .linkBtn a {
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 8887;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}

.modal-container .img {
  background: #f1f1f1;
  margin-bottom: 15px;
}

.modal-container p {
  margin-bottom: 10px;
}

.modal-container p:last-child {
  margin-bottom: 0;
}

.modal-content {
  background: #FFF;
  overflow-y: auto;
  padding: 2em;
  width: 90%;
  max-width: 800px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 90vh;
  animation: show 0.6s linear 0s;
  filter: drop-shadow(0px 2px 6px #777);
}
.modal-content .linkList li {
  margin-bottom: 1em;
}
.modal-content .linkList li:last-child {
  margin-bottom: 0;
}
.modal-content .linkList li a {
  position: relative;
  padding-left: 1em;
}
.modal-content .linkList li a:before {
  content: "";
  width: 0.5em;
  height: 0.8em;
  background: url("../../common/images/icon_right.svg") no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.4em;
}

.modal-top {
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 5px;
}

.modal-close {
  color: #666;
  text-decoration: none;
  font-size: 140%;
  line-height: 1;
  padding: 0 8px;
}

.modal-close:hover, .modal-close:focus {
  text-decoration: none;
  cursor: pointer;
}

.modal-title {
  color: #FFF;
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}/*# sourceMappingURL=index.css.map */