@charset "UTF-8";

/* --------------------
 Layout
--------------------*/

:root{
  --width-main: 100vw;

  --padding-post-side: 20px;
}


/* --------------------
 Text
--------------------*/

:root{
  --fc-default: #202020;
  --ff-default: "Inter", "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", Meiryo, ui-sans-serif, system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-default: 1.45rem;
  --fw-default: 400;
  --fw-bold: 600;
  --lh-default: 1.85;
  --ls-default: 0;
  --ta-default: left;

  --fs-h2: 1.75rem;
  --fs-h3: 1.65rem;
  --fs-h4: 1.5rem;

  --lh-h: 1.6;

  --fc-link: #0078de;
  --fc-link-hv: #f60;
}


/* --------------------
 Color
--------------------*/

:root {
  --color-primary: #005aaa;

  --color-page-bg: #eff5fa;
  --color-border: #ddd;
}


/* --------------------
 Modules
--------------------*/

:root {
  --padding-box: 16px;

  --box-r: 6px;

  --btn-cta: linear-gradient(to bottom , #0abb00, #14aa00);
}


@media ( min-width: 768px ) {
:root{
  --width-main: 520px;

  --padding-post-side: 28px;

  --fs-default: 1.55rem;
}
}


* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: inherit;
  vertical-align: baseline;
  color: inherit;
  font-size: inherit;
  text-align: inherit;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  box-sizing: border-box;
}

*::before, *::after {
  box-sizing: border-box;
}


html { font-size: 10px; }


body {
  width: 100%;
  height: 100%;
  margin: 0;
  color: var(--fc-default);
  font-family: var(--ff-default);
  font-size: var(--fs-default);
  font-weight: var(--fw-defaoult);
  letter-spacing: var(--lh-defaoult);;
  line-height: var(--lh-default);
  text-align: left;
  background: var(--color-page-bg);
}


img, video, iframe{
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

b, h1, h2, h3, h4{
  font-weight: 600;
}


a {
  cursor: pointer;
}

input[type="text"],
input[type="button"],
input[type="email"],
input[type="submit"],
textarea {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}



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

 Header

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

.g-header {
  background: #fff;
  height: 60px;
}

.g-header__inner {
  width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-name {
  width: 104px;
  height: 60px;
  font-size: 1.15rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.site-name span {
  padding: 0 2px 0 0;
  text-align: center;
}

.site-name img {

}

.g-nav .g-nav__cta-btn a {
  height: 38px;
  padding: 0 16px;
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  background: linear-gradient(to right, #0562c7, #005ec4);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s;
}

.g-nav .g-nav__cta-btn a:hover {
  opacity: .88;
}

@media ( min-width: 768px ) {
  .g-header__inner {
    width: var(--width-main);
    margin: 0 auto;
  }
}


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

 Layout

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

.contents {
  width: fit-content;
  margin: 0 auto;
}

.main {
  width: var(--width-main);
}

.post {
  padding: 0 var(--padding-post-side) 40px;
  background: #fff;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1);
}


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

 Post Header

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

.post-mv {
  margin: 0 calc(var(--padding-post-side) * -1);
  position: relative;
}

.post-mv::after {
  height: 22px;
  padding: 0 6px 0 8px;
  color: #777;
  font-size: 1.3rem;
  background: #fff;
  border: 1px solid var(--color-border);
  content: "PR";
  display: flex;
  align-items: center;
  opacity: 0.8;
  position: absolute;
  top: 0;
  right: 0;
}

.post-mv img {
  width: 100%;
}

.post-ttl {
  margin-top: 14px;
  font-size: 1.8rem;
  line-height: var(--lh-h);
}

.post-meta {
  margin-top: 14px;
  padding: 2px 12px;
  background: var(--color-page-bg);
}

.post-meta dl {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

.post-meta dt {
  display: flex;
  align-items: center;
}

.post-meta__update-date::before {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background-image: url(../img/icon-meta-update.svg);
  background-size: 100%;
  content: "";
  display: block;
}

.post-meta__cat-ttl {
  margin-left: 12px;
}

.post-meta__cat-ttl::before {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  background-image: url(../img/icon-meta-cat.svg);
  background-size: 100%;
  content: "";
  display: block;
}



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

 Post body

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

:root {
  --txt-margin: 24px;
  --block-margin: 28px;
}

.post-body {
  font-size: var(--fs-default);
  line-height: var(--lh-defautl);
}

.post-body p {
  margin-top: var(--txt-margin);
}

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

.post-body .img {
  margin: var(--block-margin) 0;
}

.post-body .img--screen a {
  display: block;
  transition: opacity .2s;
}

.post-body .img--screen a:hover {
  opacity: 0.85;
  transform: translate(2px , 2px);
}

.post-body .img-caption {
  margin-top: -12px;
  color: #666;
  font-size: 1.2rem;
  line-height: 1.6;
  text-align: center;
}



/*---------------------------
 Post body / Heading
---------------------------*/

.post-body > h2 {
  margin: 48px 0 24px;
  padding: 14px 12px 14px 22px;
  background-color: var(--color-page-bg);
  background-image: linear-gradient(to bottom right, transparent 0%, transparent 25%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, transparent 50%, transparent 75%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 1) 100%);
  background-repeat: repeat;
  background-size: 4px 4px;
  font-size: var(--fs-h2);
  line-height: var(--lh-h);
  border: 2px solid #fff;
  outline: 1px solid var(--color-border);
  border-radius: 3px;
  box-shadow: var(--box-shadow-base);
  position: relative;
}

.post-body > h2::before {
  width: 5px;
  height: calc(100% - 20px);
  background: var(--color-primary);
  border-radius: 0 4px 4px 0;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.post-body > h3 {
  margin-top: 36px;
  padding: 0 0 8px 40px;
  font-size: var(--fs-h3);
  line-height: var(--lh-h);
  background: var(--color-page-bg-l);
  border-bottom: 3px solid #e9e9e9;
  position: relative;
}

.post-body > h3::before {
  width: 28px;
  height: 28px;
  border: 7px solid var(--color-primary);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}



/*---------------------------
 Post body / Link
---------------------------*/

.post-body a:not(:is([class*="btn"] *)) {
  color: var(--fc-link);
}

.post-body a:not(:is([class*="btn"] *)):hover {
  color: var(--fc-link-hv);
}



/*---------------------------
 Post body / List
---------------------------*/

.post-body ul {
  margin-top: var(--txt-margin);
}

.post-body li {
  position: relative;
}

.post-body ul:first-child {
  margin-top: 0;
}

.list--default li {
  padding-left: 15px;
}

.list--default li::before {
  width: 5px;
  height: 5px;
  background: var(--color-primary);
  border-radius: 1100%;
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}


.list--num {
  margin: -2px 0 !important;
  counter-reset: listNum;
}

.list--num li {
  padding-left: 32px;
}

.list--num li:not(:first-child) {
  margin-top: 4px;
}

.list--num li::before {
  width: 24px;
  height: 24px;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 100%;
  counter-increment: listNum;
  content: counter(listNum);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}


/*---------------------------
 Post body / Box
---------------------------*/

.post-body .box {
  margin-top: var(--block-margin);
  padding: 16px;
  border-radius: var(--box-r);
}

.box--border-gray {
  border: 3px solid #eaeaea;
}

.box--bg-pink {
  background: #fff4f0;
}


/*---------------------------
 Post body / Table
---------------------------*/

.table {
  margin: var(--block-margin) 0;
}

.table .th-width-s {
  width: 96px;
}

.table--default table {
  width: 100%;
  border: 1px solid var(--color-border);
  table-layout: fixed;
}

.table--default th {
  padding: 8px;
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  vertical-align: middle;
  background: var(--color-page-bg);
  border: 1px solid var(--color-border);
}

.table--default td {
  padding: 8px;
  vertical-align: middle;
  border: 1px solid var(--color-border);
  font-size: 95%;
}



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

 Modules - CTA

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

/*--------------------------------
 CTA / Micro Copy
--------------------------------*/

.cta-micro-copy--top {
  margin-top: 28px;
  font-size: 110%;
  text-align: center;
}


/*--------------------------------
 CTA / Button
--------------------------------*/

:root {
  --btn-cta-height: 72px;
}

.cta-btn {
  margin: 28px 0 0;
}

.cta-btn:is(.cta-micro-copy--top + *) {
  margin-top: 3px;
}

.cta-btn a {
  width: 100%;
  height: var(--btn-cta-height);
  color: #fff;
  font-weight: 600;
  font-size: 1.7rem;
  background: var(--btn-cta);
  border: 2px solid #fff;
  border-radius: calc(var(--btn-cta-height) / 2);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta-btn a::after {
  width: 18px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/arrow-circle.svg);
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

.cta-btn a span{
  position: relative;
  z-index: 10;
}


/*--------------------------------
 CTA / Button Animation
--------------------------------*/

.btn-animation--puru {
  animation: btnPuru 3s infinite ease-out;
  transform-origin: 50% 50%;
  animation-play-state: running;
}

@keyframes btnPuru {
  0% {
    transform: scale(0.9, 0.9);
  }
  5% {
    transform: scale(1.06, 1.06);
  }
  10% {
    transform: scale(1, 1);
  }
  15% {
    transform: scale(1.03, 1.03);
  }
  20% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}


.btn-animation--shiny {
  overflow: hidden;
  position: relative;
}

.btn-animation--shiny::before{
  width: 30px;
  height: 100%;
  background: #1ed500;
  content: "";
  display: block;
  position: absolute;
  top: -60px;
  left: 0;
  animation: shiny 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes shiny {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  85% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  86% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}


/*--------------------------------
 CTA / Official Link
--------------------------------*/

.official-link {
  margin: 16px 0 0;
}

.official-link p {
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.official-link p::before {
  height: 20px;
  padding: 0 8px;
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  background: var(--color-page-bg);
  border-radius: 4px;
  content: "公式";
  display: flex;
  justify-content: center;
  align-items: center;
}

.official-link p a{
  font-weight: 600;
  text-decoration: underline;
}



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

 Modules - POINT

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

.point-box {
  margin-top: 22px;
}

.point-box .point-box__ttl {
  width: fit-content;
  padding: 1px 20px 1px 18px;
  color: #fff;
  font-size: 1.45rem;
  font-weight: var(--fw-bold);
  background: var(--color-primary);
  border-radius: 5px 5px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.point-box .point-box__ttl::before {
  width: 20px;
  height: 20px;
  background-image: url(../img/icon-light-white.svg);
  background-size: 100%;
  content: "";
  display: block;
  transform: translateY(-1px);
}

.point-box__body {
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 0 5px 5px 5px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.05);
}

.point-box li {
  padding-left: 30px;
  font-size: 1.5rem;
  font-weight: 500;
}

.point-box li:not(:first-child) {
  margin-top: 3px;
}

.point-box li::before {
  width: 24px;
  height: 24px;
  background-image: url(../img/arrow-list.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  border: 1px solid var(--color-border);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
}


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

 Modules - Talk

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

.talk {
  margin: var(--block-margin) -4px 0;
  display: flex;
  align-items: start;
}

.talk:first-child {
  margin: 0;
}

.talk__img {
  width: 58px;
  height: 58px;
  border: 2px solid #eaeaea;
  border-radius: 100%;
  overflow: hidden;
}

.talk__text {
  min-height: 58px;
  padding: 12px 14px;
  background: #f4f7f9;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: relative;
}

.talk__text:before {
  width: 17px;
  height: 25px;
  background: url(../img/talk-arrow.svg) no-repeat;
  background-size: 17px 25px;
  content: "";
  display: block;
  position: absolute;
  top: 4px;
}

.talk__text:last-child {
  margin: 0 0 0 14px;
}

.talk__text:last-child:before {
  left: -13px;
}

.talk__text:first-child {
  margin: 0 14px 0 0;
}

.talk__text:first-child:before {
  right: -13px;
  transform: scale(-1, 1);
}

.talk__text p {
  line-height: 1.5;
}

.talk + .talk {
  margin-top: 20px;
}

@media all and (max-width: 768px) {

  .talk{
    margin-left: -4px;
    margin-right: -4px;
  }

  .talk__img {
    width: 58px;
  }

  .talk__text {
    min-height: 58px;
    padding: 12px 14px;
  }

  .talk__text:before{
    width: 15px 23px;
    background-size: 15px 23px;
    top: 3px;
  }

  .talk__text:last-child{
    margin: 0 0 0 14px;
  }

  .talk__text:last-child:before{
    left: -13px;
  }

  .talk__text:first-child{
    margin: 0 14px 0 0;
  }

  .talk__text:first-child:before{
    right: -13px;
  }
}


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

 Comment

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

.comment {
  margin: 32px calc(var(--padding-post-side) * -1) 0;
  padding: 28px 0 16px 24px;
  background: var(--color-page-bg);
}

.comment.comment__inner {
  padding-right: 20px;
  padding-bottom: 6px;
}

.comment-item {
  width: 80%;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.comment-item__header {
  padding: 8px 16px;
  line-height: 1.5;
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  align-items: center;
}

.comment-item__avatar {
  aspect-ratio: 1 / 1;
  border: 2px solid #e0e0e0;
  border-radius: 100%;
  overflow: hidden;
}

.comment-item__header h3 {
  margin: 2px 0 0 2px;
  font-size: 1.55rem;
}

.comment-item__header h3 {
  color: #e44141;
}

.comment-item__poster {
  font-size: 1.3rem;
  font-weight: 600;
}

.comment-item__body {
  padding: 14px 18px;
  font-size: 1.3rem;
  line-height: 1.8;
}

.swiper-slide {
  height: auto;
}


.swiper-pagination {
  margin-top: 4px;
  position: static;
}

.comment .swiper-pagination-bullet-active {
  background: var(--color-primary);
}


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

 Area Link

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

.area-link {
  margin: 36px 0 0;
}

.area-link__ttl {
  padding: 12px 0;
  color: #fff;
  font-size: var(--fs-h3);
  line-height: var(--lh-h);
  text-align: center;
  background: var(--color-primary);
  border-radius: 5px 5px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.area-link .area-link__guide-text {
  color: #666;
  font-size: 1.2rem;
  text-align: right;
}

.area-link__region-block {
  margin-top: 24px;
}

.area-link__region-heading {
  padding: 1px 0;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  background: var(--color-primary);
  border-radius: 5px 5px 0 0;
}

.area-link .area-link__pref-list {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.area-link__pref-list a{
  padding: 4px 0;
  font-size: 1.3rem;
  text-decoration: underline;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.area-link__region-block:is(p + *) {
  margin-top: 10px;
}


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

 Footer

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

.g-footer {
  width: var(--width-main);
  margin: 0 auto;
  padding: 20px 0;
  color: #fff;
  background: #032232;
}

.g-footer .copyright {
  font-size: 1.3rem;
  text-align: center;
}