@charset "UTF-8";

:root {
  /* color */
  --blue: #0e419b;
  --cream: #fcfbd3;
  --red: #d32d24;
  --yellow: #f7f04f;

  /* typo */
  /* 13-16px */
  --body: clamp(0.8125rem, 0.5982rem + 0.4464vw, 1rem);

  /* space */
  /* 20-30px */
  --space-s: clamp(1.25rem, 1rem + .98vw, 1.875rem);
  /* 30-45px */
  --space-m: calc(var(--space-s) * 1.3);
  /* 40-60px */
  --space-l: calc(var(--space-s) * 1.8);
}

/* 基本設定 */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #f0f0f0;
  box-shadow: 0 0 8px rgba(0, 0, 0, .1);
  color: #000;
  font-family: 'Noto Sans JP',
    'Hiragino Sans',
    'ヒラギノ角ゴシック',
    'Hiragino Kaku Gothic Pro',
    'ヒラギノ角ゴ Pro W3',
    'メイリオ',
    'Meiryo',
    sans-serif;
  font-feature-settings: "palt";
  font-size: var(--body);
  line-break: strict;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
  overflow-wrap: anywhere;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  max-width: 425px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Noto Sans JP',
    'Hiragino Sans',
    'ヒラギノ角ゴシック',
    'Hiragino Kaku Gothic Pro',
    'ヒラギノ角ゴ Pro W3',
    'メイリオ',
    'Meiryo',
    sans-serif;
  margin-bottom: 0 !important;
}

ul,
p {
  margin-top: var(--space-s);
  margin-bottom: 0;
}

section {
  padding: var(--space-l) var(--space-s);
}

small {
  display: block;
  font-size: calc(var(--body)*.8);
  line-height: 1.5;
}

/* link */
a {
  color: #fff;
  transition: opacity .2s;
}

a:hover {
  color: #fff;
  opacity: .7;
}

.link {
  display: inline-block;
  margin-top: var(--space-s);
  text-decoration: underline;
}

[class^="btn-"] {
  color: #fff;
  display: grid;
  place-content: center;
  font-size: calc(var(--body) * 1.4);
  font-weight: 800;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  max-width: 400px;
}

[class^="btn-"]:hover {
  color: #fff;
  text-decoration: none;
}

.btn-entry::after,
.btn-sns::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: rotate(0deg);
  width: 0px;
  height: 0px;
}

.btn-entry,
.btn-entry-done {
  border-radius: 28px;
  font-size: 1.3rem;
  font-weight: 900;
  height: 52px;
}

.btn-entry {
  background-color: #fda601;
  color: #000;
}

.btn-entry::after {
  border-color: transparent transparent transparent #000;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  right: 10px;
}

.btn-entry-done {
  background-color: #848484;
  display: none;
}

.entry {
  margin: 2rem auto 0;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 1;
}

.entry__cautionarynote {
  color: #fff;
  display: inline-block;
  margin-bottom: var(--space-s);
  text-decoration: underline;
}

.btns {
  margin: var(--space-s) auto 0;
}

.btn-sns {
  background-color: var(--blue);
  border-radius: 8px;
  flex: 1;
  font-size: calc(var(--body) * 1.5);
  margin-top: var(--space-s);
  height: 48px;
}

.btn-sns--x {
  background-color: #000;
}

.btn-sns::after {
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  right: 16px;
}

.btn-sns:hover {
  color: #fff;
}

.btn-sns:first-child {
  margin: 0;
}

.btns--s {
  display: flex;
  justify-content: center;
  margin-top: var(--space-s);
}

.btns-sns {
  background-color: #000;
  border: 1px solid #fff;
  border-radius: 24px;
  display: grid;
  place-content: center;
  overflow: hidden;
  width: 48px;
  height: 48px;
}

.btns-sns img {
  width: 100%;
}

.btns-sns+.btns-sns {
  margin-left: var(--space-s);
}

.btns-sns--x img {
  width: 20px;
}

.btns-sns--instagram img {
  width: 26px;
}

.btns-sns--tiktok img {
  width: 32px;
}

/* detail */
.sec-detail {
  background-color: #f6f6f6;
  font-size: calc(var(--body) * .8);
}

.sec-detail>div+div {
  margin-top: var(--space-m);
}

.sec-detail h2,
.sec-detail h3,
.sec-detail h4 {
  font-weight: 900;
}

.sec-detail h2,
.sec-detail h3 {
  text-align: center;
}

.sec-detail h2 {
  font-size: calc(var(--body) * 1.9);
}

.sec-detail h3,
.sec-detail h4 {
  margin-top: var(--space-s);
}

.sec-detail h3 {
  font-size: calc(var(--body) * 1.4);
}

.sec-detail h4 {
  font-size: calc(var(--body) * 1.2);
}

.sec-detail ul,
.sec-detail p {
  margin-top: calc(var(--space-s) * .5);
}

.sec-detail ul {
  list-style: disc;
  padding-left: var(--space-s);
}

.sec-detail ul a {
  text-decoration: underline;
}

.sec-detail li+li {
  margin-top: .3rem;
}

.sec-detail li ul {
  list-style: circle;
}

.sec-detail a {
  color: #000;
}

.sec-detail__time {
  font-size: .75rem;
  font-weight: 900;
}

.sec-detail__current {
  text-align: right;
}

.copy {
  display: block;
  margin-top: var(--space-s);
  text-align: center;
}

/* footer */
.footer {
  background-color: #f6f6f6;
  margin-top: 0;
  padding-bottom: var(--space-s);
}

.footer p {
  margin-top: 0;
}

.footer p+p {
  margin-top: .5rem;
}

.footer>.optout,
.footer>.copyright {
  font-size: calc(var(--body) * .8) !important;
  margin-bottom: 0 !important;
}

/* .footer>.optout>a {
  color: #fff !important;
} */

/* GAMPLA */
.campaign__container-floating-footer {
  display: none;
}

.campaign__container {
  max-width: 900px;
}

.alert,
.alert-danger,
.alert-triangle {
  border-radius: 0;
  line-height: 1;
  margin: 0;
}

/* page */
.wrap {
  background: #fff url(https://prcp.pass.auone.jp/gpl/202503_weathernews/img/bg.svg) no-repeat center 200px;
  background-size: 100%;
  contain: paint;
}

.wrap h1 {
  position: relative;
  z-index: 1;
}

.wrap h1 img {
  width: 100%;
}

.sec-intro {
  margin: var(--space-l) 0 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.sec-intro img {
  position: relative;
  z-index: 1;
}

.sec-intro .entry {
  position: absolute;
  margin: auto;
  top: 68vw;
  right: 0;
  left: 0;
  width: 80%;
  height: 52px;
}

.sec-intro::before {
  content: "";
  background-color: var(--blue);
  background: linear-gradient(to bottom, rgba(15, 68, 108, 1) 0%, rgba(36, 166, 218, 1) 100%);
  position: absolute;
  inset: 0;
  margin: auto;
  left: -1.5rem;
  opacity: .8;
  transform: rotate(10deg);
  width: 25rem;
  height: 480px;
}

.sec-intro::after {
  content: "";
  animation: sun 10s linear infinite;
  background: url(https://prcp.pass.auone.jp/gpl/202503_weathernews/img/sun.svg) no-repeat center;
  background-size: 100%;
  display: block;
  position: absolute;
  top: -.5rem;
  right: -1rem;
  width: 80px;
  height: 80px;
}

.sec-banner {
  /* background-color: #f6f6f6; */
  font-size: calc(var(--body) * .8);
  padding-top: 0;
}

.sec-banner p {
  font-size: calc(var(--body) * 1.25);
  font-weight: 900;
  margin-top: 0;
  text-align: center;
}

.sec-banner a {
  display: block;
  margin-top: var(--space-s);
}

@keyframes sun {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.sec-intro__inner {
  border-radius: 16px;
  color: #fff;
  position: relative;
  text-align: center;
  z-index: 1;
}

.sec-movie {
  margin-top: var(--space-l);
  padding-top: 0;
  overflow: hidden;
}

.sec-movie h2,
.sec-movie h3,
.sec-movie p,
.sec-movie .btns,
.sec-movie .btns--s {
  position: relative;
}

.sec-movie h3,
.sec-movie p {
  font-weight: 900;
}

.sec-movie h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--body) * 1.5);
}

.sec-movie h3 img {
  margin-right: calc(var(--space-s)*.5);
  width: 40px;
  height: 40px;
}

.sec-movie p {
  font-size: calc(var(--body) * 1.25);
  line-height: 1.3;
  margin-top: var(--space-l);
  text-align: center;
}

.movie {
  aspect-ratio: 16 / 9;
  margin: 0 calc(var(--space-m)*-1);
}

.movie iframe {
  width: 100%;
  height: 100%;
}

.movie+p {
  background: linear-gradient(to bottom, rgba(15, 68, 108, .8) 0%, rgba(36, 166, 218, .8) 100%);
  color: #fff;
  font-size: calc(var(--body)*1.1);
  font-weight: 600;
  line-height: 1.6;
  margin-top: calc(var(--space-s)*1);
  padding: var(--space-s);
  text-shadow: .09rem .09rem 0 #189edb,
    -.09rem -.09rem 0 #189edb,
    -.09rem .09rem 0 #189edb,
    .09rem -.09rem 0 #189edb,
    0px .09rem 0 #189edb,
    0-.09rem 0 #189edb,
    -.09rem 0 0 #189edb,
    .09rem 0 0 #189edb;
}

.sec-movie__sns {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 6px rgba(0, 0, 0, .1);
  margin: var(--space-l) auto 0;
  padding: var(--space-s);
  position: relative;
}

/* sp */
@media (max-width: 425px) {
  .pc {
    display: none;
  }
}

/* pc */
@media (min-width: 426px) {
  .sp {
    display: none;
  }

  .sec-intro::before {
    left: -2rem;
    width: 27.5rem;
  }

  .sec-intro .entry {
    top: 300px;
  }
}