@charset "UTF-8";
/* ===========================
# Layout
===========================*/
/* Inner
=================*/
/* Padding
=================*/
/* Layer
=================*/
/* ===========================
# Typography
===========================*/
/* Font-Family
=================*/
/* Font-Size
=================*/
/* Font-Weight
=================*/
/* Line-Height
=================*/
/* ===========================
# Color
===========================*/
/* General-Color
=================*/
/* Main-Color
=================*/
/* Hover-Color
=================*/
/* Transparency
=================*/
/* Background-Color
=================*/
/* Button
=================*/
/* Label
=================*/
/*  Border
=================*/
/* ===========================
# Function
===========================*/
/* Breakpoint
=================*/
/* Mediaquery
=================*/
/* other
=================*/
/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

body {
  position: relative;
  z-index: -9999;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  /* background:  linear-gradient(180deg, rgba(132, 255, 236, .1) 0%, rgba(2, 142, 244, .1) 100%); */
  background: linear-gradient(90deg, rgba(132,255,236,0.2) 0%, rgba(2,142,244,0.08) 100%);
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: none;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

b,
strong {
  font-weight: 700;
}

table {
  width: 100%;
  table-layout: fixed;
  border: 1px solid;
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
  border: 1px solid;
}

form {
  margin: 0;
  padding: 0;
}

label {
  display: inline-block;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
  outline: none;
}

input:focus,
button:focus,
select:focus,
textarea:focus {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

input:hover,
button:hover,
select:hover,
textarea:hover {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

button,
select {
  text-transform: none;
}

textarea {
  overflow: auto;
  -ms-overflow-style: scrollbar;
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.c-form-submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.l-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 590px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1140px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .l-inner {
    max-width: 1340px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media screen and (min-width: 1920px) {
  .l-inner {
    max-width: 1670px;
    padding-right: 50px;
    padding-left: 100px;
  }
}

.l-inner--sm {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 590px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner--sm {
    max-width: 1060px;
    padding-right: 30px;
    padding-left: 30px;
    margin-left: 0;
    margin-left: initial;
  }
}
@media screen and (min-width: 1024px) {
  .l-inner--sm {
    max-width: 1100px;
    padding-left: 70px;
  }
}
@media screen and (min-width: 1920px) {
  .l-inner--sm {
    max-width: 1130px;
    padding-left: 100px;
  }
}

.l-to-top a {
  display: block;
  position: fixed;
  right: 15px;
  right: 0.9375rem;
  bottom: 15px;
  bottom: 0.9375rem;
  z-index: 30;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}

.l-wrapper {
  position: relative;
  z-index: -2;
  /*background: -webkit-gradient(linear, left top, left bottom, from(rgba(132, 255, 236, .1)), to(rgba(2, 142, 244, .1)));
  background: linear-gradient(180deg, rgba(132, 255, 236, .1) 0%, rgba(2, 142, 244, .1) 100%);*/
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#top.l-wrapper {
  position: relative;
  z-index: -2;
  background: none;
}
.l-wrapper__side {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .l-wrapper__side {
    width: 17.5rem;
    background: #fff;
  }
}
@media screen and (min-width: 1920px) {
  .l-wrapper__side {
    width: 280px;
  }
}

.l-wrapper__main {
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .l-wrapper__main {
    width: calc(100% - 17.5rem);
  }
}
@media screen and (min-width: 1920px) {
  .l-wrapper__main {
    width: calc(100% - 280px);
  }
}

/* @media screen and (min-width: 768px) {
  #report_00 .l-wrapper__side,
#contents .l-wrapper__side {
    position: fixed;
    top: 0;
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  #report_00 .l-wrapper__main,
#contents .l-wrapper__main {
    width: calc(100% - 17.5rem);
    -webkit-transform: translateX(17.5rem);
            transform: translateX(17.5rem);
  }
}
@media screen and (min-width: 1920px) {
  #report_00 .l-wrapper__main,
#contents .l-wrapper__main {
    width: calc(100% - 280px);
    -webkit-transform: translateX(280px);
            transform: translateX(280px);
  }
} */

.c-button {
  display: inline-block;
  width: 100%;
  min-width: 140px;
  max-width: 186px;
  max-width: 11.625rem;
  padding: 10px 16px 10px 20px;
  padding: 0.625rem 1rem 0.625rem 1.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#c0fdf5), to(#81c7f9));
  background: linear-gradient(90deg, #c0fdf5 0%, #81c7f9 100%);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 1rem;
    max-width: 13.5625rem;
    padding: 0.875rem 1.25rem;
  }
}

.c-button.c-button--lg {
  max-width: 194px;
  max-width: 12.125rem;
  padding: 8px 16px 7px 20px;
  padding: 0.5rem 1rem 0.4375rem 1.25rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-button.c-button--lg {
    max-width: 14.125rem;
    padding: 0.1875rem 1.25rem;
  }
}

.c-button.c-button--anchor {
  max-width: 164px;
  max-width: 10.25rem;
  padding: 10px 12px;
  padding: 0.625rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-button.c-button--anchor {
    max-width: 15.625rem;
    padding: 0.8125rem 1.9375rem;
  }
}
@media screen and (min-width: 1920px) {
  .c-button.c-button--anchor {
    max-width: 250px;
    padding: 17px 41px;
  }
}

.c-button span {
  display: inline-block;
  position: relative;
  padding-right: 32px;
  padding-right: 2rem;
}
@media screen and (min-width: 768px) {
  .c-button span {
    padding-right: 2.625rem;
  }
}

.c-button span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/link-icon.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .c-button span::after {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.c-button.c-button--anchor span {
  display: inline-block;
  position: relative;
  padding-right: 28px;
  padding-right: 1.75rem;
}
@media screen and (min-width: 768px) {
  .c-button.c-button--anchor span {
    padding-right: 2.5rem;
  }
}

.c-button.c-button--anchor span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/anchor-icon.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .c-button.c-button--anchor span::after {
    width: 1.875rem;
    height: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .c-card-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-card-list__item + .c-card-list__item {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-card-list__item + .c-card-list__item {
    margin-top: 0;
    margin-left: 2.5rem;
  }
}

.c-col-3 {
  margin-top: -15px;
  margin-top: -0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-col-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: -1.25rem;
    margin-left: -1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .c-col-3.c-col-3--center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-col-3__item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-col-3__item {
    width: calc(33.33333% - 1.875rem);
    margin-top: 1.25rem;
    margin-left: 1.875rem;
  }
}

.c-col-4 {
  margin-top: -15px;
  margin-top: -0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-col-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: -1.25rem;
    margin-left: -1.6875rem;
  }
}

.c-col-4.c-col-4--leaflet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -15px;
  margin-top: -0.9375rem;
  margin-left: -5px;
  margin-left: -0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-col-4.c-col-4--leaflet {
    margin-top: -1.25rem;
    margin-left: -1.6875rem;
  }
}

.c-col-4__item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .c-col-4__item {
    width: calc(25% - 1.6875rem);
    margin-top: 1.25rem;
    margin-left: 1.6875rem;
  }
}

.c-col-4.c-col-4--leaflet .c-col-4__item {
  width: calc(50% - 0.3125rem);
  margin-top: 15px;
  margin-top: 0.9375rem;
  margin-left: 5px;
  margin-left: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-col-4.c-col-4--leaflet .c-col-4__item {
    width: calc(25% - 1.6875rem);
    margin-top: 1.25rem;
    margin-left: 1.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}

.c-hamburger span {
  position: relative;
  display: block;
  width: 30px;
  height: 3px;
  background: #00A0E9;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 5.75px 0;
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

/*is-OPEN時の動き*/
.c-hamburger.is-open span {
  background: #fff;
}

.c-hamburger.is-open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-hamburger.is-open span:nth-child(2) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.c-hamburger.is-open span:nth-child(3) {
  top: -7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-logo {
  display: inline-block;
  width: 100%;
  max-width: 101px;
  max-width: 6.3125rem;
}
@media screen and (min-width: 768px) {
  .c-logo {
    max-width: 12.5rem;
  }
}

.p-header.is-fixed .c-logo {
  max-width: 56px;
  max-width: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-header.is-fixed .c-logo {
    max-width: 12.5rem;
  }
}

.c-meti {
  display: block;
  width: 100%;
  max-width: 152px;
  max-width: 9.5rem;
}
@media screen and (min-width: 768px) {
  .c-meti {
    max-width: 12.75rem;
  }
}

.c-post-list {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-post-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-right: 50px;
    margin-top: -1.875rem;
    margin-left: -1.5625rem;
  }
}
@media screen and (min-width: 1920px) {
  .c-post-list {
    margin-left: -4.5rem;
  }
}

.c-post-list__item {
  width: 100%;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-post-list__item {
    width: calc(50% - 1.5625rem);
    margin-left: 1.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-post-list__item {
    width: calc(25% - 1.5625rem);
  }
}
@media screen and (min-width: 1920px) {
  .c-post-list__item {
    width: calc(25% - 4.5rem);
    margin-left: 4.5rem;
  }
}

.c-text {
  line-height: 1.8;
}

.c-title_01 {
  color: #1CADF3;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-title_01 {
    font-size: 1.375rem;
    line-height: 1.8;
  }
}

.c-title_02 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .c-title_02 {
    font-size: 1.25rem;
    line-height: 1.54;
  }
}

.p-anchor__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-anchor__items {
    display: block;
  }
}

.p-header__drawer-menu .p-anchor__items {
  display: block;
}

.p-anchor__item {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .p-anchor__item {
    width: 100%;
  }
}

.p-header__drawer-menu .p-anchor__item {
  width: 100%;
}

.p-anchor__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 12px;
  padding-top: 0.75rem;
  padding-right: 10px;
  padding-right: 0.625rem;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  padding-left: 55px;
  padding-left: 3.4375rem;
  background: #fff;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-anchor__item a {
    min-height: 4.5rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-left: 5.0625rem;
    font-size: 1.125rem;
  }
}

.p-header__drawer-menu .p-anchor__item a {
  min-height: 60px;
  min-height: 3.75rem;
}

.p-anchor__item a.is-active,
.p-anchor__item a:hover {
  opacity: 1;
  background: -webkit-gradient(linear, left top, right top, from(rgba(2, 142, 244, .08)), to(rgba(132, 255, 236, .08)));
  background: linear-gradient(90deg, rgba(2, 142, 244, .08) 0%, rgba(132, 255, 236, .08) 100%);
}

.p-anchor__item a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 15px;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media screen and (min-width: 768px) {
  .p-anchor__item a::before {
    left: 1.40625rem;
    width: 3.0375rem;
    height: 3.9375rem;
  }
}

.p-anchor__item:nth-child(1) a::before {
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/sp/number_01.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-anchor__item:nth-child(1) a::before {
    background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/pc/number_01.png) no-repeat center center/contain;
  }
}

.p-anchor__item:nth-child(2) a::before {
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/sp/number_02.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-anchor__item:nth-child(2) a::before {
    background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/pc/number_02.png) no-repeat center center/contain;
  }
}

.p-anchor__item:nth-child(3) a::before {
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/sp/number_03.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-anchor__item:nth-child(3) a::before {
    background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/pc/number_03.png) no-repeat center center/contain;
  }
}

.p-anchor__item:nth-child(4) a::before {
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/sp/number_04.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-anchor__item:nth-child(4) a::before {
    background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/pc/number_04.png) no-repeat center center/contain;
  }
}

.p-anchor__item:nth-child(5) a::before {
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/sp/number_05.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-anchor__item:nth-child(5) a::before {
    background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/pc/number_05.png) no-repeat center center/contain;
  }
}

.p-anchor__item:nth-child(1) a.is-active::before,
.p-anchor__item:nth-child(1) a:hover::before {
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/sp/active-number_01.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-anchor__item:nth-child(1) a.is-active::before,
.p-anchor__item:nth-child(1) a:hover::before {
    background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/pc/active-number_01.png) no-repeat center center/contain;
  }
}

.p-anchor__item:nth-child(2) a.is-active::before,
.p-anchor__item:nth-child(2) a:hover::before {
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/sp/active-number_02.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-anchor__item:nth-child(2) a.is-active::before,
.p-anchor__item:nth-child(2) a:hover::before {
    background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/pc/active-number_02.png) no-repeat center center/contain;
  }
}

.p-anchor__item:nth-child(3) a.is-active::before,
.p-anchor__item:nth-child(3) a:hover::before {
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/sp/active-number_03.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-anchor__item:nth-child(3) a.is-active::before,
.p-anchor__item:nth-child(3) a:hover::before {
    background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/pc/active-number_03.png) no-repeat center center/contain;
  }
}

.p-anchor__item:nth-child(4) a.is-active::before,
.p-anchor__item:nth-child(4) a:hover::before {
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/sp/active-number_04.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-anchor__item:nth-child(4) a.is-active::before,
.p-anchor__item:nth-child(4) a:hover::before {
    background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/pc/active-number_04.png) no-repeat center center/contain;
  }
}

.p-anchor__item:nth-child(5) a.is-active::before,
.p-anchor__item:nth-child(5) a:hover::before {
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/sp/active-number_05.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-anchor__item:nth-child(5) a.is-active::before,
.p-anchor__item:nth-child(5) a:hover::before {
    background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/pc/active-number_05.png) no-repeat center center/contain;
  }
}

.p-anchor__item.p-anchor__item--last a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5.0px;
  padding-top: 0.3rem;
  padding-bottom: 0;
  padding-left: 5.0px;
  padding-left: 0.3rem;
  /* font-family: "Noto Serif JP", serif; */
  /* font-weight: 600; */
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (min-width: 768px) {
  .p-anchor__item.p-anchor__item--last a {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 0;
    background: linear-gradient(180deg, rgba(132, 255, 236, .1) 0%, rgba(2, 142, 244, .1) 100%);
    /* font-weight: 700; */
  }
}

.p-header__drawer-menu .p-anchor__item.p-anchor__item--last a {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-left: 0;
}

.p-anchor__item.p-anchor__item--last a.is-active,
.p-anchor__item.p-anchor__item--last a:hover {
  opacity: 0.8;
  /* background: transparent; */
}

.p-anchor__item.p-anchor__item--last a::before {
  display: none;
}

.p-anchor__item.p-anchor__item--last a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 5px 30px;
  padding: 0.3125rem 1.875rem;
  background: -webkit-gradient(linear, left top, right top, from(#d7edf8), to(#b3dcf2));
  background: linear-gradient(90deg, #d7edf8 0%, #b3dcf2 100%);
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
  border-radius: 0 40px 40px 0;
}
@media screen and (min-width: 768px) {
  .p-anchor__item.p-anchor__item--last a span {
    width: 100%;
    padding: 0.625rem 2.8125rem;
  }
}

.p-header__drawer-menu .p-anchor__item.p-anchor__item--last a span {
  padding: 14.5px 53px 14.5px 28px;
  padding: 0.90625rem 3.3125rem 0.90625rem 1.75rem;
}

.p-block {
  padding: 15px;
  padding: 0.9375rem;
  background: #fff;
  border: 1px solid #B2E2F8;
}
@media screen and (min-width: 768px) {
  .p-block {
    padding: 1.25rem;
  }
}

.p-block.p-block--none {
  padding-top: 0;
}

.p-block__title {
  margin-top: 0;
  margin-bottom: 0;
  padding: 4px 10px;
  padding: 0.25rem 0.625rem;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#d7edf8), to(#b3dcf2));
  background: linear-gradient(90deg, #d7edf8 0%, #b3dcf2 100%);
}
@media screen and (min-width: 768px) {
  .p-block__title {
    font-size: 1.25rem;
  }
}

.p-block__text {
  margin-top: 10px;
  margin-top: 0.625rem;
  line-height: 1.8;
  word-break: break-all;
}

.p-block__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-block__more {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.p-block__more--moni {
  margin-top: 0.5rem;
}

.p-block__more a {
  display: inline-block;
  position: relative;
  padding-top: 4.5px;
  padding-top: 0.28125rem;
  padding-left: 36px;
  padding-left: 2.25rem;
  padding-bottom: 4.5px;
  padding-bottom: 0.28125rem;
  font-size: 14px;
  font-size: 0.875rem;
  text-decoration: underline;
}

.p-block__more a::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/more-icon.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-block__more a::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.p-block__list {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-block__list {
    margin-top: 0;
  }
}

.p-breadcrumb__item {
  display: inline;
}

.p-breadcrumb__item h1,
.p-breadcrumb__item a {
  display: inline;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__item h1,
.p-breadcrumb__item a {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-breadcrumb__item h1,
.p-breadcrumb__item a {
    font-size: 14px;
  }
}

.p-breadcrumb__item a {
  display: inline-block;
  position: relative;
  padding-right: 28px;
  padding-right: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__item a {
    padding-right: 2.125rem;
  }
}

.p-breadcrumb__item a::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: "＞";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 8px;
  right: 0.5rem;
  width: 12px;
  width: 0.75rem;
  height: 18px;
  height: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__item a::after {
    right: 0.625rem;
    width: 0.875rem;
    height: 1.25rem;
  }
}

.p-card a {
  display: block;
}

.p-card__title {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-card__title {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-card__title {
    font-size: 14px;
  }
}

.p-contents {
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-contents {
    padding-top: 5rem;
    padding-bottom: 2.1875rem;
  }
}

.p-contents__title {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-contents__title {
    margin-top: 2.25rem;
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-contents__title {
    font-size: 36px;
  }
}

.p-contents__description {
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-contents__description {
    margin-top: 1.125rem;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-contents__description {
    font-size: 18px;
  }
}

.p-contents__anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contents__anchor {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1.875rem;
  }
}

.p-contents__anchor li + li {
  margin-left: 17px;
  margin-left: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-contents__anchor li + li {
    margin-left: 1.875rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-contents__anchor li + li {
    margin-left: 40px;
  }
}

.p-contents__items {
  margin-top: 46px;
  margin-top: 2.875rem;
}
@media screen and (min-width: 1920px) {
  .p-contents__items {
    margin-top: 60px;
  }
}

.p-contents__item + .p-contents__item {
  margin-top: 46px;
  margin-top: 2.875rem;
}
@media screen and (min-width: 1920px) {
  .p-contents__item + .p-contents__item {
    margin-top: 60px;
  }
}

.p-contents__block {
  margin-top: 14px;
  margin-top: 0.875rem;
}

.p-contents__block + .p-contents__block {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-contents__heading-01 {
  position: relative;
  padding-top: 4px;
  padding-top: 0.25rem;
  padding-bottom: 4px;
  padding-bottom: 0.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-contents__heading-01 {
    padding-top: 0.0625rem;
    padding-bottom: 0.0625rem;
    padding-left: 1.5rem;
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-contents__heading-01 {
    font-size: 28px;
  }
}

.p-contents__heading-01::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  width: 0.625rem;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#72d9c9), to(#006ab7));
  background: linear-gradient(180deg, #72d9c9 0%, #006ab7 100%);
}

.p-contents__text {
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-contents__text {
    margin-top: 1.5rem;
  }
}

.p-contents__latest {
  position: relative;
  z-index: 0;
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 20px;
  font-size: 1.25rem;
  color: #1CADF3;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-contents__latest {
    margin-top: 1.5rem;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-contents__latest {
    font-size: 22px;
  }
}

.p-contents__latest::after {
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  height: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#d7edf8), to(#b3dcf2));
  background: linear-gradient(90deg, #d7edf8 0%, #b3dcf2 100%);
}

.p-contents__latest.p-contents__latest--none::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-contents__latest.p-contents__latest--none::after {
    display: block;
  }
}

.p-contents__latest span {
  position: relative;
  z-index: 0;
  padding-right: 10px;
  padding-right: 0.625rem;
}

/*
.p-contents__latest span::after {
  display: block;
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  height: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#d7edf8), to(#b3dcf2));
  background: linear-gradient(90deg, #d7edf8 0%, #b3dcf2 100%);
}
*/

@media screen and (min-width: 768px) {
  .p-contents__latest.p-contents__latest--none span::after {
    display: none;
  }
}

.p-contents__more {
  margin-top: 20px;
  margin-top: 1.25rem;
  text-align: right;
}

.p-contents__more a {
  display: inline-block;
  position: relative;
  padding-top: 4.5px;
  padding-top: 0.28125rem;
  padding-right: 36px;
  padding-right: 2.25rem;
  padding-bottom: 4.5px;
  padding-bottom: 0.28125rem;
  font-size: 14px;
  font-size: 0.875rem;
  text-decoration: underline;
}

.p-contents__more a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/more-icon.png) no-repeat center center/contain;
}

.p-contents__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-contents__foot {
    margin-top: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contents__link {
    width: 50%;
    padding-left: 1.5625rem;
  }
}

.p-contents__movie-list {
  margin-top: 1.125rem;
}
.p-contents__movie:nth-child(2) {
  margin-top: 1.125rem;
}

.p-contents__movie p {
  padding: 6px;
  border: 1px solid #000;
  border-radius: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-contents__movie-list {
    display: flex;
    margin-top: 1.125rem;
  }
  .p-contents__movie:nth-child(1) {
    width: 65%;
  }
  .p-contents__movie:nth-child(2) {
    width: 35%;
    margin-top: 0;
    padding-left: 2.5rem;
  }
}

.p-contents__result-list {
  margin-top: 1.125rem;
}
.p-contents__result:nth-child(2) {
  margin-top: 1.125rem;
}

.p-contents__result p {
  display: inline-block;
  padding: 6px 24px;
  border: 1px solid #000;
  border-radius: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-contents__result-list {
    display: flex;
    margin-top: 1.125rem;
  }
  .p-contents__result:nth-child(1) {
    width: 20%;
  }
  .p-contents__result:nth-child(2) {
    width: 80%;
    margin-top: 0;
    padding-left: 2.5rem;
  }
}

/* 追加部分---------------- */
.p-process {
}

.p-process__title {
  font-size: clamp(1.25rem, 1.13rem + 0.51vw, 1.375rem);
  font-weight: bold;
  line-height: calc(36 / 22);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-process__title {
    font-size: 1.375rem;
    line-height: calc(36 / 22);
  }
}

.p-process__img {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-process__img {
    margin-top: 0.375rem;
  }
  
}

.p-process__list {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-process__list {
    margin-top: 1.875rem;
  }
}

.p-process__item + .p-process__item {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-process__item + .p-process__item {
    margin-top: 1.563rem;
  }
}

.p-process__list dt {
  display: inline-block;
  line-height: calc(22/ 20);
  border-bottom: 1px solid #000;
  font-size: clamp(1.125rem, 1.005rem + 0.51vw, 1.25rem);
}
@media screen and (min-width: 768px) {
  .p-process__list dt {
    font-size: 1.25rem;
  }
}

.p-process__list dd {
  margin-top: 0.25rem;
  font-size: clamp(1rem, 0.88rem + 0.51vw, 1.125rem);
  line-height: calc(36/ 18);
}
@media screen and (min-width: 768px) {
  .p-process__list dd {
    margin-top: 0.625rem;
    font-size: 1.125rem;
  }
}

.p-process__list dd ul {
  padding-left: 1em;
  text-indent: -1em;
}

.p-process__annotation {
  margin-top: 1.563rem;
  font-size: 0.875rem;
  padding-left: 1.0em;
  text-indent: -1.0em;
}
@media screen and (min-width: 768px) {
  .p-process__annotation {
    padding-left: 0.7em;
    text-indent: -0.7em;
  }
}

.p-contents__process {
  width: 100%;
  margin-top: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-contents__process {
    max-width: 46.25rem;
    margin-top: 3.75rem;
  }
}

.p-status__current {
  width: 10.625rem;
  height: 3.938rem;
  padding-top: 0.625rem;
  margin-right: auto;
  margin-left: auto;
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/icon-status.png) no-repeat center top / contain;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-status__current {
    margin-left: initial;
  }
}

.p-status__current--date {
  width: 10.625rem;
  height: 3.938rem;
  padding-top: 0.1rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 0.85rem;
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/icon-status.png) no-repeat center top / contain;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-status__current--date {
    margin-left: initial;
  }
}

.p-status__wrap {
}

.p-status__wrap + .p-status__wrap {
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-status__wrap {
    display: flex;
    align-items: center;
  }
  
  .p-status__wrap + .p-status__wrap {
  padding-bottom: 1.25rem;
  }
}

.p-status__icon {
  width: 10.625rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  background: #FAFAFA;
  margin-right: auto;
  margin-left: auto;
}

.p-status__text {
  margin-top: 0.938rem;
  font-size: clamp(0.81rem, 0.72rem + 0.37vw, 0.9rem);
  line-height: calc(40 / 20);
}

@media screen and (min-width: 768px) {
  .p-status__icon {
    width: 10.625rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    margin-left: initial;
  }
  
  .p-status__text {
    width: calc(100% - 10.625rem);
    margin-top: 0;
    padding-left: 1.875rem;
    font-size: 0.8rem;
    text-indent: initial;
  }
}

.p-status__icon img {
  width: 100%;
  max-width: 6.25rem;
  margin-right: auto;
  margin-left: auto;
}

.p-status__note {
  display: flex;
  align-items: center;
}

.p-status__note img {
  width: 2.0rem;
  margin: 0;
  padding: 0;
  position: relative;
}

.p-status__note p {
  margin-left: 1.0rem;
  padding-top: auto;
  padding-bottom: auto;
  font-size: clamp(0.81rem, 0.72rem + 0.37vw, 0.9rem);
  padding-left: 3.0rem;
  text-indent: -3.0rem;
}

@media screen and (min-width: 768px) {
  .p-status__note p {
    margin-left: 1.0rem;
    padding-top: auto;
    padding-bottom: auto;
    font-size: 0.8rem;
  }
}

.p-contents.p-contents--monitoring .p-contents__title {
  margin-top: 0.625rem;
}

.p-contents.p-contents--monitoring .p-contents__item + .p-contents__item {
  margin-top: 3.75rem;
}

.p-contents.p-contents--monitoring .p-contents__latest span {
  padding-right: 5px;
}

@media screen and (min-width: 768px) {
  .p-contents.p-contents--monitoring .p-contents__title {
    margin-top: 1.25rem;
  }
  
  .p-contents.p-contents--monitoring .p-contents__items {
    margin-top: 4.688rem;
  }
  
  .p-contents.p-contents--monitoring .p-contents__item + .p-contents__item {
    margin-top: 6.25rem;
  }

  .p-contents.p-contents--monitoring .p-contents__latest span {
    padding-right: 0px;
  }
}

.p-contents__button-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-contents__button-list {
    flex-wrap: nowrap;
    margin-top: 1.875rem;
  }
}

.p-contents__button {
  width: 100%;
  max-width: 21.563rem;
}

.p-contents__button + .p-contents__button {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-contents__button + .p-contents__button {
    margin-top: 0;
    margin-left: 2.5rem;
  }
}

.p-contents__button a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 5.625rem;
  background: linear-gradient(180deg, rgba(124,197,234,1) 0%, rgba(0,140,214,1) 100%);
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.p-contents__button a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  right: 0.625rem;
  width: 2.5rem;
  height: 2.5rem;
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/link-icon--white.png) no-repeat center center / contain;
}

.p-contents__button.p-contents__button--light a {
  padding-right: 6.25rem;
  background: #E5F5FD;
  border: 1px solid #00A0E9;
  color: #8E8E8E;
}
.p-contents__button.p-contents__button--dark a {
  padding-right: 6.25rem;
  background: #8E8E8E;
}
.p-contents__button.p-contents__button--light a::after,
.p-contents__button.p-contents__button--dark a::after {
  right: 0;
  width: 21.563rem;
  height: 5.625rem;
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/icon-button.png) no-repeat center center / cover;
}

.p-contents__button.p-contents__button--hidden {
  visibility: hidden;
}

.p-contents__button p {
  margin-top: 0.625rem;
  font-size: 0.875rem;
}

.p-contents__status {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-contents__status {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contents__latest.p-contents__latest--center {
    text-align: center;
  }
}

.p-contents__box {
  width: 100%;
  max-width: 45.625rem;
  margin-top: 3.75rem;
  margin-right: auto;
  margin-left: auto;
}

.p-contents__center {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .p-contents__center {
    display: block;
  }
}

.p-contents__box .p-contents__button-list {
  margin-top: 1.563rem;
}
@media screen and (min-width: 768px) {
  .p-contents__box .p-contents__button-list {
    margin-top: 1.125rem;
  }
}

.p-contents.p-contents--monitoring .p-contents__foot {
  margin-top: 3.75rem;
}

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

.p-drawer-menu {
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  background: #fff;
  overflow: scroll;
}
@media screen and (min-width: 768px) {
  .p-drawer-menu {
    display: none;
  }
}

.p-drawer-menu__head {
  width: 100%;
  max-width: 250px;
  max-width: 15.625rem;
  margin-left: auto;
}

.p-drawer-menu__body {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-header {
  position: relative;
  z-index: 20;
  height: 140px;
  height: 8.75rem;
  background: #fff;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
}
@media screen and (min-width: 768px) {
  .p-header {
    height: auto;
    -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, .15);
            box-shadow: 3px 3px 10px rgba(0, 0, 0, .15);
  }
}

.p-header.is-fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 60px;
  height: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-header.is-fixed {
    position: static;
    position: initial;
    height: auto;
  }
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    display: block;
    padding-left: 0;
    padding-left: initial;
  }
}

.p-header.is-fixed .p-header__inner {
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .p-header.is-fixed .p-header__inner {
    padding-right: 0;
    padding-right: initial;
  }
}

.p-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-header__left {
    padding: 0.5625rem 1.6875rem;
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
            box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
  }
}

.p-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
}

.p-header.is-fixed .p-header__right {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-header.is-fixed .p-header__right {
    display: block;
  }
}

.p-header__meti {
  padding-right: 15px;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-header__meti {
    padding-right: 0;
    padding-right: initial;
    margin-left: 1.5625rem;
    padding: 0.6rem 0;
  }
}

.p-header__lang {
}
@media screen and (min-width: 768px) {
  .p-header__lang {
    position: fixed;
    top: 3.125rem;
    top: 0;
    right: 0;
    z-index: 20;
    max-width: 570px;
    margin-top: 0;
    margin-top: initial;
  }
}

.p-header__nav {
  /* margin-top: 10px;
  margin-top: 0.625rem; */
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    position: fixed;
    top: 3.125rem;
    right: 0;
    z-index: 20;
    max-width: 570px;
    margin-top: 0;
    margin-top: initial;
  }
}

.p-header__button {
  display: none;
  position: relative;
  z-index: 50;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.p-header.is-fixed .p-header__button {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-header.is-fixed .p-header__button {
    display: none;
  }
}

.p-header__button.is-open {
  -webkit-transform: translateX(-80vw);
          transform: translateX(-80vw);
}

.p-header__overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  width: 100vw;
  height: 100vh;
  background: rgba(51, 51, 51, .5);
}

.p-header__drawer-menu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 40;
  width: 80vw;
  height: 72vh;
  height: auto;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.p-header__drawer-menu.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-link a {
  display: block;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
}

.p-link__img {
  position: relative;
}

.p-link__img::before {
  content: "";
  display: block;
  padding-top: 56.6666666667%;
}

.p-link__img.p-link__img--pdf::before {
  padding-top: 103.3333333333%;
}

.p-link__img.p-link__img--leaflet::before {
  padding-top: 133.6363636364%;
}

.p-link__img.p-link__img--special::before {
  padding-top: 71.8181818182%;
}

.p-link__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-link__body {
  padding: 10px 10px 20px;
  padding: 0.625rem 0.625rem 1.25rem;
  text-align: center;
}

.p-link__date {
  padding-bottom: 3px;
  padding-bottom: 0.1875rem;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: left;
}

.p-link__label {
  padding: 1px 5px;
  padding: 0.0625rem 0.3125rem;
  margin-right: 4px;
  margin-right: 0.25rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#d9fdf9), to(#b6dffb));
  background: linear-gradient(180deg, #d9fdf9 0%, #b6dffb 100%);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
}

.p-link__title {
  font-size: 14px;
  font-size: 0.875rem;
}

.p-link__title.p-link__title--left {
  text-align: left;
}

.p-link__title span {
  display: inline-block;
  position: relative;
  padding-right: 25px;
  padding-right: 1.5625rem;
}

.p-link__title span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/link-icon.png) no-repeat center center/contain;
}

.c-col-3__item .p-link__title.p-link__title--pdf span {
  display: inline-block;
  position: relative;
  padding-right: 39px;
  padding-right: 2.4375rem;
}
@media screen and (min-width: 768px) {
  .c-col-3__item .p-link__title.p-link__title--pdf span {
    padding-right: 2.125rem;
  }
}

.c-col-4__item .p-link__title.p-link__title--pdf span {
  display: inline-block;
  position: relative;
  padding-right: 0;
  padding-bottom: 29px;
  padding-bottom: 1.8125rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-col-4__item .p-link__title.p-link__title--pdf span {
    padding-right: 2.125rem;
    padding-bottom: 0;
    font-size: 0.875rem;
  }
}

.c-col-3__item .p-link__title.p-link__title--pdf span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 24px;
  width: 1.5rem;
  height: 19px;
  height: 1.1875rem;
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/pdf-icon.png) no-repeat center center/contain;
}

.c-col-4__item .p-link__title.p-link__title--pdf span::after {
  display: block;
  content: "";
  position: absolute;
  top: auto;
  top: initial;
  right: auto;
  right: initial;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 24px;
  width: 1.5rem;
  height: 19px;
  height: 1.1875rem;
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/pdf-icon.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .c-col-4__item .p-link__title.p-link__title--pdf span::after {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    bottom: auto;
    bottom: initial;
    right: 0;
    left: auto;
    left: initial;
  }
}

.p-link__text {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 13px;
  font-size: 0.8125rem;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .p-link__text {
    margin-top: 0.625rem;
  }
}

.p-main {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-main {
    padding-top: 5rem;
    padding-bottom: 2.1875rem;
  }
}

.p-main.p-main--lower {
  padding-top: 28px;
  padding-top: 1.75rem;
}

@media screen and (min-width: 768px) {
  .p-main.p-main--lower {
    padding-top: 5rem;
    padding-bottom: 2.1875rem;
  }
}

#report .p-main {
  padding-top: 30px;
  padding-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  #report .p-main {
    padding-top: 4.5rem;
    padding-bottom: 1.25rem;
  }
}

#report .p-main__body {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.p-main.is-fixed,
.p-contents.is-fixed,
.p-report.is-fixed {
  padding-top: 180px;
  padding-top: 11.25rem;
}

@media screen and (min-width: 768px) {
  .p-main__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.p-main.p-main--lower .p-main__body {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-main.p-main--lower .p-main__body {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 6.25rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-main.p-main--lower .p-main__body {
    margin-top: 130px;
  }
}

.p-main__foot {
  margin-top: 51px;
  margin-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .p-main__foot {
    margin-top: 3.36rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 1920px) {
  .p-main__foot {
    margin-top: 70px;
  }
}

.p-main.p-main--lower .p-main__foot {
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-main.p-main--lower .p-main__foot {
    margin-top: 3.75rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-main.p-main--lower .p-main__foot {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

@media screen and (min-width: 1920px) {
  #no1 .p-main__foot {
    margin-top: 60px;
  }
}

@media screen and (min-width: 1920px) {
  #no2 .p-main__foot {
    margin-top: 90px;
  }
}

@media screen and (min-width: 1920px) {
  #no3 .p-main__foot {
    margin-top: 56px;
  }
}

@media screen and (min-width: 1920px) {
  #no4 .p-main__foot {
    margin-top: 120px;
  }
}

@media screen and (min-width: 1920px) {
  #no5 .p-main__foot {
    margin-top: 60px;
  }
}

@media screen and (min-width: 768px) {
  #report .p-main__foot {
    margin-top: 2.25rem;
  }
}
@media screen and (min-width: 1920px) {
  #report .p-main__foot {
    margin-top: 50px;
  }
}

.p-main__visual {
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/sp/wave.png) no-repeat center bottom/contain;
}
@media screen and (max-width: 767px) {
  .p-main__visual {  
    max-width: 20.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-main__visual {
    width: 64.6258503401%;
    padding-bottom: 3.8125rem;
    background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/pc/wave.png) no-repeat center bottom/contain;
  }
}
@media screen and (min-width: 1920px) {
  .p-main__visual {
    padding-bottom: 80px;
    width: 65.9863945578%;
  }
}

.p-main.p-main--lower .p-main__visual {
  padding-bottom: 0;
  background: none;
}
@media screen and (min-width: 768px) {
  .p-main.p-main--lower .p-main__visual {
    width: 49%;
  }
}

.p-main__lead {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-main__lead {
    width: 32.6530612245%;
    margin-top: 0;
    margin-left: 2.7210884354%;
    padding-bottom: 4.25rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 1920px) {
  .p-main__lead {
    width: 30.612244898%;
    margin-left: 3.4013605442%;
    padding-bottom: 90px;
  }
}

.p-main.p-main--lower .p-main__lead {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-main.p-main--lower .p-main__lead {
    width: calc(51% - 1.5625rem);
    margin-top: 0;
    margin-left: 1.5625rem;
    padding-bottom: 0;
  }
}

.none {
  display: none;
}

.p-main__container {
  padding-top: 1.25rem;
  padding-bottom: 0.625rem;
}

.p-main__slide {
  width: 14.375rem;
}

.p-main__slide img {
  transform: scale(0.8);
}

.p-main__carousel .slick-center img {
  transform: scale(1.0);
  transition: 0.5s;
}

@media screen and (max-width: 767px) {
  .slick-prev {
    left: -15px !important;
    z-index: 10;
  }
  .slick-next {
    right: -15px !important;
    z-index: 10;
  }
}
.slick-prev:before,
.slick-next:before {
  color: #00A0E9 !important;
}

@media screen and (min-width: 768px) {
  .p-main__news {
    width: 50%;
    max-width: 540px;
    padding-bottom: 1.375rem;
    padding-bottom: 2.25rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-main__news {
    max-width: 630px;
  }
}

@media screen and (min-width: 768px) {
  .p-main__more {
    width: 50%;
    max-width: 690px;
  }
}

#report .p-main__more {
  display: none;
}
@media screen and (min-width: 768px) {
  #report .p-main__more {
    display: block;
    visibility: hidden;
  }
}

.p-main__link {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-main__link {
    width: calc(50% - 1.5625rem);
    margin-left: 1.5625rem;
    margin-top: 0;
  }
}

.p-main__sub-title {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-main__sub-title {
    max-width: 31.063rem;
    font-size: 2.25rem;
    letter-spacing: 0.015em;
  }
}

/* @media screen and (min-width: 1920px) {
  .p-main__sub-title {
    max-width: 497px;
  }
} */

.p-main__catch {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: "Noto Serif JP", serif;
  color: #00A0E9;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 768px) {
  .p-main__catch {
    max-width: 53.188rem;
    font-size: 1.84rem;
  }
  .p-main__catch.p-main__catch--03 {
    max-width: 23.875rem;
  }
  .p-main__catch.p-main__catch--04 {
    max-width: 26.875rem;
  }      
  .p-main__catch.p-main__catch--05 {
    max-width: 21.875rem;
  }  
}
@media screen and (min-width: 1920px) {
  .p-main__catch {
    max-width: 851px;
    font-size: 40px;
  }
}

.p-main.p-main--lower .p-main__catch {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: 1.55rem;
}
@media screen and (min-width: 768px) {
  .p-main.p-main--lower .p-main__catch {
    /* max-width: 44.375rem; */
    max-width: 39.5rem;
    font-size: 2.6rem;
  }
  .p-main.p-main--lower .p-main__catch.p-main__catch--01 {
    /* max-width: 39.5rem; */
  }
}
@media screen and (min-width: 1920px) {
  .p-main.p-main--lower .p-main__catch {
    /* max-width: 710px; */
    max-width: 632px;
  }
  .p-main.p-main--lower .p-main__catch.p-main__catch--01 {
    /* max-width: 632px; */
  }
}

.p-main__title {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 45px;
  margin-top: 1.813rem;
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-main__title {
    max-width: 56.375rem;
    margin-top: 2.625rem;
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-main__title {
    font-size: 60px;
    max-width: 902px;
    margin-top: 85px;
  }
}

.p-main__title--report {
  margin-top: 40px;
  margin-top: 2.5rem;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-main__title--report {
    margin-top: 2.25rem;
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-main__title--report {
    font-size: 36px;
  }
}

.p-main__description {
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-main__description {
    margin-top: 1.125rem;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-main__description {
    font-size: 18px;
  }
}

.p-main__text {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-main__text {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-main__text {
    font-size: 20px;
  }
}

.p-main__text.p-main__text--right {
  text-align: right;
  font-size: 0.75em;
}

@media screen and (min-width: 768px) {
  .p-main.p-main--lower .p-main__text {
    font-size: 0.9375rem;
  }
}

.p-main__text + .p-main__text {
  margin-top: 200px;
  margin-top: 1.25rem;
}

.p-main.p-main--lower .p-main__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.p-more {
  padding: 12px;
  padding: 0.75rem;
  background: #fff;
  border: 1px solid #00A0E9;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-more {
    padding: 0.9375rem 1.25rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.875rem 2.125rem;
  }
}

.p-more__title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1;
}
@media screen and (min-width: 768px) {
  .p-more__title {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1920px) {
  .p-more__title {
    font-size: 20px;
    width: calc(100% - 238px);
  }
}

.p-more__title span {
  display: block;
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .p-more__title span {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 1920px) {
  .p-more__title span {
    font-size: 14px;
  }
}

.p-more__button {
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-more__button {
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-more__button {
    width: 238px;
    margin-top: 0;
    margin-left: 1.875rem;
  }
}

.p-lang {
}

.p-lang__items {
  padding-right: 5px;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-lang__items {
    padding-right: 40px;
    text-align: initial;
  }
}

/* === 各ラジオボタンのラベルをボタンに変更 == */
.p-lang__item {
  display: inline-block;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: clamp(0.688rem, 0.331rem + 0.74vw, 1rem);
}

@media screen and (min-width: 768px) {
  .p-lang__item {
    font-size: 1rem;
  }
}

.p-lang__item span,
.p-lang__item a {
  display: inline-block;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

.p-lang__item + .p-lang__item a,
.p-lang__item + .p-lang__item span {
  border-left: 1px solid #8E8E8E;
}

/* === 選択されている言語のラベル色を変更 ==== */
.p-lang__item .is-active {
  color: #8E8E8E;
}

.p-nav {
  height: 34px;
  height: 2.125rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
  padding-left: 18px;
  padding-left: 1.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#b6dffb), to(#d9fdf9));
  background: linear-gradient(90deg, #b6dffb 0%, #d9fdf9 100%);
  border-radius: 40px 0 0 40px;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
}
@media screen and (min-width: 768px) {
  .p-nav {
    height: 3.375rem;
    padding-right: 50px;
    padding-left: 2.8125rem;
  }
}

.p-nav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.p-nav__item {
  height: inherit;
}

.p-nav__item + .p-nav__item {
  margin-left: 20px;
  margin-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-nav__item + .p-nav__item {
    margin-left: 3.125rem;
  }
}

.p-nav__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding-right: 16.5px;
  padding-right: 1.03125rem;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-nav__item a {
    font-size: 0.9375rem;
    padding-right: 1.78125rem;
  }
}

.p-nav__item a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 6.5px;
  width: 0.40625rem;
  height: 11.5px;
  height: 0.71875rem;
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/arrow-icon.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-nav__item a::after {
    width: 0.53125rem;
    height: 0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-news__title {
  min-height: 92px;
  min-height: 2.2rem;
  padding: 7px 15px;
  padding: 0.4375rem 0.9375rem;
  border-bottom: 2px solid #fff;
  background: -webkit-gradient(linear, left top, right top, from(rgba(132, 255, 236, .3)), to(rgba(2, 142, 244, .3)));
  background: linear-gradient(90deg, rgba(132, 255, 236, .3) 0%, rgba(2, 142, 244, .3) 100%);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news__title {
    min-height: 5.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 4.6875rem;
    padding: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(132, 255, 236, .3)), to(rgba(2, 142, 244, .3)));
    background: linear-gradient(90deg, rgba(132, 255, 236, .3) 0%, rgba(2, 142, 244, .3) 100%);
    border-bottom: none;
    font-size: 1rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-news__title {
    width: 100px;
    font-size: 20px;
  }
}

.p-news__content {
  padding: 10px 15px;
  padding: 0.625rem 0.9375rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(132, 255, 236, .3)), color-stop(150%, rgba(2, 142, 244, .3)));
  background: linear-gradient(90deg, rgba(132, 255, 236, .3) 0%, rgba(2, 142, 244, .3) 150%);
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-news__content {
    width: calc(100% - 4.6875rem);
    padding-left: 1.6875rem;
    margin-left: 0.25rem;
    background: -webkit-gradient(linear, left top, right top, from(rgba(132, 255, 236, .3)), to(rgba(2, 142, 244, .3)));
    background: linear-gradient(90deg, rgba(132, 255, 236, .3) 0%, rgba(2, 142, 244, .3) 100%);
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-news__content {
    width: calc(100% - 100px);
    font-size: 14px;
  }
}

@media screen and (min-width: 1024px) {
  .p-news__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-news__item:nth-child(n+3) {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-news__item:nth-child(n+3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-news__item + .p-news__item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 1024px) {
  .p-news__item + .p-news__item {
    margin-top: 0.3125rem;
  }
}

@media screen and (min-width: 1024px) {
  .p-news__item dt {
    width: 9.5rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-news__item dt {
    width: 152px;
  }
}

.p-news__item dd {
  margin-top: 3px;
  margin-top: 0.1875rem;
}
@media screen and (min-width: 1024px) {
  .p-news__item dd {
    width: calc(100% - 9.5rem);
    margin-top: 0;
    margin-left: 0.5rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-news__item dd {
    width: calc(100% - 152px);
  }
}

.p-post {
  background: #fff;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
          box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
}

.p-post a {
  display: block;
}

.p-post__body {
  position: relative;
  padding: 20px 24px;
  padding: 1.25rem 1.5rem;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .p-post__body {
    padding: 0.9375rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-post__body {
    padding: 20px;
  }
}

.p-post.p-post--new .p-post__body::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  content: "new";
  position: absolute;
  top: 0;
  right: 0;
  width: 55px;
  width: 3.4375rem;
  height: 28px;
  height: 1.75rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#84ffec), to(#028ef4));
  background: linear-gradient(180deg, #84ffec 0%, #028ef4 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-post.p-post--new .p-post__body::before {
    width: 36px;
    height: 20px;
  }
}

.p-post__date {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-post__date {
    font-size: 0.625rem;
  }
}

.p-post__title {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-post__title {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-post__title {
    font-size: 16px;
  }
}

.p-post__lead {
  margin-top: 8px;
  margin-top: 0.5rem;
  color: #00A0E9;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-post__lead {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-post__lead {
    font-size: 18px;
  }
}

.p-main__share {
    width: 100%;
    margin-top: 2.5rem;
    padding: 15px;
    background: #fff;
    border: 1px solid #B2E2F8;
}

@media screen and (min-width: 768px){
  .p-main__share {
    max-width: 970px;
    margin-top: 8.125rem;
    padding: 20px;
  }
}

.p-main__share + .p-main__share {
    width: 100%;
    margin-top: 0;
    padding: 15px;
    background: #fff;
    border: 1px solid #B2E2F8;
}

@media screen and (min-width: 768px){
  .p-main__share + .p-main__share {
    max-width: 970px;
    margin-top: 0rem;
    padding: 20px;
  }
}

@media screen and (min-width: 768px){
  .c-share-list {
    display: flex;
    flex-wrap: wrap;
  }
}

.p-share-img {
  padding-bottom: 20px;
  background: #fff;
  -webkit-box-shadow: 2px 2px 5px rgb(0 0 0 / 15%);
  box-shadow: 2px 2px 5px rgb(0 0 0 / 15%);
}

@media screen and (min-width: 768px){
  .c-share-list__item {
    width: calc(100% / 2 - 30px / 2);
  }
}

.p-share-img__title {
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
}

.p-share-img__img {
  position: relative;
}

.p-share-img__img::after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  background: url(/earthquake/nuclear/hairo_osensui/shirou_alps/images/icon-enlarge.png) no-repeat center center / contain;
}

.p-share-img__link {
  margin-top: 10px;
  text-align: center;
}

.c-share-list__item + .c-share-list__item {
    margin-top: 10px;
}

@media screen and (min-width: 768px){
  .c-share-list__item + .c-share-list__item {
    margin-top: 0;
    margin-left: 30px;
  }
}

.p-report {
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 45px;
  padding-bottom: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-report {
    padding-top: 5rem;
    padding-bottom: 2.1875rem;
  }
}

.p-report__visual {
  display: block;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-report__visual {
    margin-top: 2.5rem;
  }
}

.p-report__visual p {
  margin-top: 30px;
  margin-top: 1.875rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-report__visual p {
    margin-top: 2.5rem;
  }
}

.p-report__block {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-report__block {
    margin-top: 3.75rem;
  }
}

.p-report__block p {
  line-height: 1.8;
}

.p-report__item {
  margin-top: 20px;
  margin-top: 1.25rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-report__item {
    margin-top: 1.5625rem;
  }
}

.p-report__item + .p-report__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-report__item + .p-report__item {
    margin-top: 3.125rem;
  }
}

.p-report__item dd {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-report__item dd {
    margin-top: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-report__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-report__wrap.p-report__wrap--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .p-report__wrap.p-report__wrap--center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-report__text {
    width: calc(100% - 26.875rem);
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.p-report__img {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-report__img {
    width: 26.875rem;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    margin-top: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-report__img.p-report__img--lg {
    width: 33.125rem;
  }
}

.p-report__wrap .p-report__img {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-right: inherit;
  margin-left: 0;
  margin-left: initial;
}
@media screen and (min-width: 768px) {
  .p-report__wrap .p-report__img {
    margin-top: 0;
  }
}

.p-report__img span {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-report__img span {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .p-report__wrap.p-report__wrap--center .p-report__img + .p-report__img {
    margin-left: 0.9375rem;
  }
}

.p-report__title {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-report__title {
    margin-top: 3.125rem;
  }
}

.p-report__text-box {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-report__text-box {
    margin-top: 1.5625rem;
  }
}

.p-report__foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-report__foot {
    margin-top: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-report__link {
    width: 50%;
    padding-left: 1.5625rem;
  }
}

.p-status__link {
  text-align: center;
}

.p-status__link p{
  font-size: 0.9rem;
  display: inline-block;
  padding: 3px 18px;
  margin-top: 0.5rem;
  border: 1px solid #000;
  border-radius: 16px;
  text-align: center;
}

@media screen and (min-width: 768px){
  .p-status__link p{
    font-size: 1.2rem;
  }
}

.p-status__text--right {
  margin-top: 0.2rem;
  font-size: clamp(0.81rem, 0.72rem + 0.37vw, 0.9rem);
  text-align: right;
}

@media screen and (min-width: 768px){
  .p-status__text--right {
    margin-top: 0.16rem;
    font-size: 0.8rem;
  }
}

.p-status__text--lg {
  margin-top: 0.938rem;
  font-size: clamp(1.215rem, 1.08rem + 0.555vw, 1.35rem);
  line-height: calc(40 / 20);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-status__text--lg {
    width: calc(100% - 10.625rem);
    margin-top: 0;
    padding-left: 1.875rem;
    font-size: 1.2rem;
    text-indent: initial;
    text-align: left;
  }
}

.p-status__text--left--lg{
  text-align: left;
}

.p-status__text--left{
  text-align: left;
  padding-left: 0.7em;
  text-indent: -0.7em;
}

.p-status__text--top {
  margin-top: 0.938rem;
  line-height: calc(40 / 20);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-status__text--top {
    margin-top: 0;
    font-size: 1.2rem;
    text-align: center;
  }
}

.p-status__text--sm + .p-status__text--sm {
  margin-top :0;
}

.p-status__text--sm--left1 {
  margin-left: 1.7rem;
}

.p-status__text--sm--left2 {
  margin-left: 0.8rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    z-index: 200;
    height: 100vh;
    width: 100%;
}

.modal-bg {
    position: absolute;
    height: 100vh;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-height: 295px;
}

.modal-content .box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-height: 295px;
}

.modal-content .scroll {
    width: 100%;
    height: 100%;
    overflow: scroll;
}

.modal-content .img {
    position: relative;
}

.modal-content .img::before {
    display: block;
    content: "";
    padding-top: calc(250 / 450 * 100%);
}

.modal-content .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

@media screen and (min-width: 768px) {
  .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 1152px;
    height: 80%;
    max-height: 640px;
  }
  .modal-content .box {
    position: initial;
    top: initial;
    left: initial;
    transform: translate(0);
    width: 100%;
    height: 100%;
  }
  .modal-content .scroll {
    overflow: initial;
  }
}

.u-show-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-show-sp {
    display: none;
  }
}

.u-switch-tab {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-switch-tab {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
