@charset "UTF-8";
/*
  reset
*/
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden],
template {
  display: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

li,
ol {
  list-style: none;
}

a {
  background-color: transparent;
  text-decoration: underline;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

b,
strong {
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[disabled] {
  cursor: default;
}

[type=number] {
  width: auto;
}

[type=search] {
  -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button,
select {
  text-transform: none;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

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

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

img {
  border-style: none;
  image-rendering: -webkit-optimize-contrast;
}

progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

/*
  common
*/
/*
  mixin
*/
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  color: #333333;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 749px) {
  body {
    font-size: 13px;
    line-height: 2;
  }
}

section {
  position: relative;
}

@media (max-width: 749px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 750px) {
  .sp {
    display: none !important;
  }
}

a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 750px) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}

svg {
  vertical-align: middle;
}

.font-midium {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.fadeIn {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

/*
  header
*/
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 6px;
  padding-bottom: 6px;
  z-index: 99;
}
@media (max-width: 749px) {
  .header {
    padding: 0;
  }
}
.header_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}
@media (max-width: 749px) {
  .header_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 4px 0 9px;
    gap: 0;
  }
}
.header .logo_asm {
  display: block;
  width: 268px;
  margin-top: 8px;
}
@media (max-width: 749px) {
  .header .logo_asm {
    width: 100%;
    max-width: 131px;
    margin-top: 4px;
  }
}
.header .logo_asm img {
  width: 100%;
}
.header_right_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 18px;
}
@media (max-width: 749px) {
  .header_right_box {
    gap: 0;
    margin-top: -5px;
  }
}
.header_right_box .header_credit_text {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  white-space: nowrap;
}
@media (max-width: 749px) {
  .header_right_box .header_credit_text {
    position: absolute;
    top: 10px;
    right: 4px;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.header .logo_asahi {
  display: block;
  width: 128px;
  padding-top: 6px;
}
@media (max-width: 749px) {
  .header .logo_asahi {
    width: 100%;
    max-width: 88px;
    padding: 0;
  }
}
.header .logo_asahi img {
  width: 100%;
}

/*
  footer
*/
.footer {
  position: relative;
  padding: 75px 0;
  background: #151515;
  z-index: 99;
}
@media (max-width: 749px) {
  .footer {
    padding: 28px 0;
  }
}
.footer_copy {
  color: #fff;
  font-size: 1.2rem;
  line-height: 2;
  text-align: center;
}
@media (max-width: 749px) {
  .footer_copy {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  background-color: #FCFCFC;
  z-index: 999999999;
}

.loading_text {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #1C1718;
  width: 100px;
  height: 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  font-size: 16px;
}

.loading_content {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  margin: -85px 0 0 -85px;
  border: 1px solid #f00;
}

.loading_content:after {
  content: "";
  position: absolute;
  border: 1px solid #0f0;
  left: 15px;
  right: 15px;
  top: 15px;
  bottom: 15px;
}

.loading_content:before {
  content: "";
  position: absolute;
  border: 1px solid #00f;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}

.loading_content {
  border: 1px solid transparent;
  border-top-color: #1C1718;
  border-bottom-color: #1C1718;
  border-radius: 50%;
  -webkit-animation: loader 2s linear infinite;
  animation: loader 2s linear infinite;
}

.loading_content:before {
  border: 1px solid transparent;
  border-top-color: #1C1718;
  border-bottom-color: #1C1718;
  border-radius: 50%;
  -webkit-animation: loader 3s linear infinite;
  animation: loader 3s linear infinite;
}

.loading_content:after {
  border: 1px solid transparent;
  border-top-color: #1C1718;
  border-bottom-color: #1C1718;
  border-radius: 50%;
  -webkit-animation: loader 1.5s linear infinite;
  animation: loader 1.5s linear infinite;
  -moz-animation: loader 2s linear infinite;
  -o-animation: loader 2s linear infinite;
}

@-webkit-keyframes loaders {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.scroll_ignition {
  position: absolute;
  top: 1000px;
  left: 0;
  width: 100%;
  height: 1px;
  display: block;
  opacity: 0;
}

/*
  home
*/
/*
  mixin
*/
.container {
  position: relative;
  background-image: url(../img/container_bg.jpg);
  background-size: 100% auto;
  background-position: center top;
  background-repeat: repeat-y;
  overflow: hidden;
}
@media (max-width: 749px) {
  .container {
    background-image: url(../img/container_bg_sp.jpg);
  }
}
.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(25, 60, 114);
  background: -webkit-linear-gradient(285deg, rgb(25, 60, 114) 0%, rgb(25, 60, 114) 12%, rgb(94, 115, 148) 28%, rgb(200, 200, 200) 52%, rgb(67, 67, 67) 69%, rgb(0, 0, 0) 84%, rgb(0, 0, 0) 100%);
  background: linear-gradient(165deg, rgb(25, 60, 114) 0%, rgb(25, 60, 114) 12%, rgb(94, 115, 148) 28%, rgb(200, 200, 200) 52%, rgb(67, 67, 67) 69%, rgb(0, 0, 0) 84%, rgb(0, 0, 0) 100%);
  opacity: 0.85;
  z-index: 1;
}
.container::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: rgb(255, 255, 255);
  background: -webkit-linear-gradient(76deg, rgba(255, 255, 255, 0) 30%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 70%);
  background: linear-gradient(14deg, rgba(255, 255, 255, 0) 30%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 70%);
  -webkit-animation: bggradient 20s linear infinite;
          animation: bggradient 20s linear infinite;
  background-size: 200% 200%;
  opacity: 0.2;
  z-index: 2;
}

.webp .container {
  background-image: url(../img/container_bg.webp);
}
@media (max-width: 749px) {
  .webp .container {
    background-image: url(../img/container_bg_sp.webp);
  }
}

@-webkit-keyframes bggradient {
  0% {
    width: 100%;
  }
  50% {
    width: 200%;
  }
  100% {
    width: 100%;
  }
}

@keyframes bggradient {
  0% {
    width: 100%;
  }
  50% {
    width: 200%;
  }
  100% {
    width: 100%;
  }
}
.main {
  position: relative;
  z-index: 3;
}

/*
  共通
*/
.heading_block {
  position: relative;
  max-width: 1400px;
  margin: 0 auto 100px;
}
@media (max-width: 749px) {
  .heading_block {
    margin-top: 50px;
    padding-top: 10px;
    margin-bottom: 0;
  }
}
.heading_block:not(:first-of-type) {
  margin-top: 97px;
}
@media (max-width: 749px) {
  .heading_block:not(:first-of-type) {
    margin-top: 48px;
  }
}
.heading_block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  width: 0;
  height: 1px;
  background: #ffffff;
  -webkit-transition: width 1s;
  transition: width 1s;
}
@media (max-width: 749px) {
  .heading_block::before {
    right: 0;
    margin: auto;
  }
}
.heading_block::after {
  content: "";
  display: block;
  width: 100vw;
  height: 24.84375vw;
  background-image: url("../img/heading_block_bg.png");
  background-position: left top;
  background-size: 1156px 477px;
  z-index: -1;
  position: absolute;
  top: -89px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 749px) {
  .heading_block::after {
    background-image: url("../img/heading_block_bg_sp.png");
    width: 100vw;
    height: 39.4666666667vw;
    background-size: 365px 148px;
    top: -40px;
  }
}
.heading_block_inner {
  padding-left: 0.7142857143%;
}
@media (max-width: 749px) {
  .heading_block_inner {
    padding: 0px 17.5px;
  }
}
.heading_block_text {
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 2;
  position: relative;
  padding-top: 13px;
}
@media (max-width: 749px) {
  .heading_block_text {
    font-size: 2rem;
    line-height: 1.5;
    padding: 0;
  }
}
.heading_block_text::before {
  content: "";
  width: 700px;
  height: 1px;
  background-color: #ffffff;
  top: 0;
  left: 0;
}
.heading_block.on::before {
  width: 50vw;
  max-width: 700px;
}
@media (max-width: 749px) {
  .heading_block.on::before {
    width: 100%;
    max-width: 270px;
  }
}

.block {
  max-width: 1400px;
  margin: 100px auto 0;
}
@media (max-width: 749px) {
  .block {
    margin-top: 20px;
  }
}
.block + .block {
  margin-top: 100px;
}
@media (max-width: 749px) {
  .block + .block {
    margin-top: 75px;
  }
}
.block.common_block {
  margin-top: 100px;
}
@media (max-width: 749px) {
  .block.common_block {
    margin-top: 51px;
  }
}

.scaleImage_wrap {
  overflow: hidden;
}
.scaleImage_wrap img {
  opacity: 0;
  -webkit-transform: scale(1.085) translate3d(0, 0, 0);
          transform: scale(1.085) translate3d(0, 0, 0);
  -webkit-transition: opacity 450ms, -webkit-transform 900ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1100ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 450ms, -webkit-transform 900ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1100ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 450ms, transform 900ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 1100ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 450ms, transform 900ms cubic-bezier(0.215, 0.61, 0.355, 1), transform 1100ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 900ms cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 1100ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.scaleImage.on .scaleImage_wrap img {
  -webkit-transform: scale(1) translate3d(0, 0, 0);
          transform: scale(1) translate3d(0, 0, 0);
  opacity: 1;
}

/*
  hero
*/
.hero {
  padding-top: 50px;
  background-image: url(../img/hero_bg.png);
  background-size: 1400px auto;
  background-position: center top 200px;
  background-repeat: no-repeat;
  margin-bottom: 197px;
}
@media (max-width: 749px) {
  .hero {
    background-image: url(../img/hero_bg_sp.png);
    padding-top: 64px;
    margin-bottom: 70px;
    background-position: center top 100px;
  }
}
.hero_inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}
@media (max-width: 749px) {
  .hero_inner {
    padding: 0px 11px 0px 9px;
  }
}
.hero_slider {
  background: #fff;
}
.hero_slider_list {
  overflow: hidden;
}
.hero .slick-current .hero_slider_image {
  -webkit-animation: zoom;
          animation: zoom;
  -webkit-animation-duration: 3000ms;
          animation-duration: 3000ms;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero_title {
  color: #fff;
  font-size: 4rem;
  text-align: center;
  line-height: 1.25;
  margin: 70px auto 0;
}
@media (max-width: 749px) {
  .hero_title {
    font-size: 2.7rem;
    line-height: 1.8518518519;
    margin-top: 20px;
    padding: 0;
  }
}
.hero_title small {
  font-size: 2.2rem;
}
@media (max-width: 749px) {
  .hero_title small {
    display: block;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 21px;
  }
}
.hero_text {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.875;
  max-width: 800px;
  margin: 58px auto 0;
}
@media (max-width: 749px) {
  .hero_text {
    font-size: 1.4rem;
    line-height: 2;
    padding: 0 7.5px;
  }
}

.webp .hero {
  background-image: url(../img/hero_bg.webp);
}
@media (max-width: 749px) {
  .webp .hero {
    background-image: url(../img/hero_bg_sp.webp);
  }
}

@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1.09);
            transform: scale(1.09);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoom {
  0% {
    -webkit-transform: scale(1.09);
            transform: scale(1.09);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*
  twocolumn_block
*/
.twoColumn_block {
  position: relative;
  padding-top: 2.7%;
}
@media (max-width: 749px) {
  .twoColumn_block {
    padding-top: 0;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.twoColumn_block::before {
  content: "";
  position: absolute;
  top: 37.7083333333vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  height: 42.0833333333vw;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  z-index: 1;
}
@media (max-width: 749px) {
  .twoColumn_block::before {
    top: -50px;
    height: 61.3333333333vw;
    background-image: url(../img/twoColumn_block_bg_sp.png);
  }
}
.twoColumn_block_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 43.572%;
  z-index: 2;
}
@media (max-width: 749px) {
  .twoColumn_block_image {
    max-width: 270px;
    width: 100%;
    margin: 0 auto;
    position: static;
  }
}
.twoColumn_block_image figcaption {
  color: #ffffff;
  font-size: 1.2rem;
  max-width: 491px;
  margin-top: 10px;
}
@media (max-width: 749px) {
  .twoColumn_block_image figcaption {
    font-size: 1rem;
    line-height: 2;
    margin: 10px 0 0 auto;
    width: 100%;
    word-break: break-all;
  }
}
.twoColumn_block_image figcaption a {
  color: #fff;
  text-decoration: underline;
}
.twoColumn_block_image figcaption a img {
  vertical-align: middle;
  margin-left: 0.5em;
}
.twoColumn_block_text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 500;
  width: 63.0714285714%;
  margin-left: auto;
  padding: 7.1428571429% 14.2857142857% 7.1428571429% 13.0714285714%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  z-index: 1;
}
@media (max-width: 749px) {
  .twoColumn_block_text {
    font-size: 1.4rem;
    line-height: 2;
    width: 100%;
    min-height: unset;
    padding: 52px 17px 55px;
    margin-top: 10px;
  }
}
.twoColumn_block_text .bold {
  font-weight: bold;
  margin-right: 1em;
}
.twoColumn_block_text figure {
  margin-top: 50px;
}
@media (max-width: 749px) {
  .twoColumn_block_text figure {
    margin-top: 30px;
  }
}
.twoColumn_block_text figure figcaption {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.5;
  margin-top: 10px;
}
@media (max-width: 749px) {
  .twoColumn_block_text figure figcaption {
    font-size: 1rem;
    line-height: 1.8;
  }
}
.twoColumn_block.reverse .twoColumn_block_image {
  left: inherit;
  right: 0;
}
.twoColumn_block.reverse .twoColumn_block_image figcaption {
  margin-left: auto;
}
.twoColumn_block.reverse .twoColumn_block_text {
  margin: 0 auto 0 0;
  padding-left: 13.7%;
  padding-right: 13.0714285714%;
}
@media (max-width: 749px) {
  .twoColumn_block.reverse .twoColumn_block_text {
    margin-top: 10px;
    padding: 52px 17px 55px;
  }
}
.twoColumn_block.image_bg::before {
  content: "";
  display: block;
  width: 100vw;
  height: 24.84375vw;
  background-image: url(../img/heading_block_bg.png);
  background-position: left top;
  background-size: 1156px 477px;
  z-index: -1;
  position: absolute;
  top: -250px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (max-width: 749px) {
  .twoColumn_block.image_bg::before {
    display: none;
  }
}

/*
  one_block
*/
.one_block_title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2666666667;
  text-align: center;
}
@media (max-width: 749px) {
  .one_block_title {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.one_block_text {
  color: #fff;
  letter-spacing: 0.05em;
  margin-top: 50px;
}
@media (max-width: 749px) {
  .one_block_text {
    font-size: 1.3rem;
    line-height: 2;
    margin-top: 44px;
  }
}
.one_block figcaption {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 15px;
  margin-left: 11px;
}
@media (max-width: 749px) {
  .one_block figcaption {
    font-size: 1rem;
    line-height: 2;
    margin: 10px 10px 0;
    word-break: break-all;
  }
}
.one_block figcaption a {
  color: #fff;
  text-decoration: underline;
}
.one_block figcaption a img {
  vertical-align: middle;
  margin-left: 0.5em;
}

/*
  common_block
*/
.common_block_inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 50px;
}
@media (max-width: 749px) {
  .common_block_inner {
    padding: 0 10px;
  }
}
.common_block_title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2666666667;
  text-align: center;
}
@media (max-width: 749px) {
  .common_block_title {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.common_block_text {
  color: #fff;
  letter-spacing: 0.05em;
  margin-top: 50px;
}
@media (max-width: 749px) {
  .common_block_text {
    font-size: 1.3rem;
    line-height: 2;
    margin-top: 44px;
  }
}
.common_block figcaption {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 10px;
}
@media (max-width: 749px) {
  .common_block figcaption {
    font-size: 1rem;
    line-height: 2;
  }
}
.common_block figcaption a {
  color: #fff;
  text-decoration: underline;
}
.common_block figcaption a img {
  vertical-align: middle;
  margin-left: 0.5em;
}
.common_block + .heading_block {
  margin-top: 317px;
}
@media (max-width: 749px) {
  .common_block + .heading_block {
    margin-top: 100px;
  }
}

/*
  product_block
*/
.product_block_inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 50px 100px;
}
@media (max-width: 749px) {
  .product_block_inner {
    padding: 0 10px 43px;
  }
}
.product_block_name {
  font-size: 1.6rem;
  text-align: center;
  max-width: 900px;
  margin: 45px auto 6px;
  padding: 0 50px;
}
@media (max-width: 749px) {
  .product_block_name {
    font-size: 1.2rem;
    margin-top: 32px;
    margin-bottom: 3px;
    padding: 0;
  }
}
.product_block_title {
  font-size: 2rem;
  line-height: 1.4;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 50px;
}
@media (max-width: 749px) {
  .product_block_title {
    font-size: 1.6rem;
    line-height: 1.75;
    padding: 0;
  }
}
.product_block_image {
  margin-top: 45px;
}
@media (max-width: 749px) {
  .product_block_image {
    margin-top: 32px;
  }
}

/*
  specifications
*/
.specifications {
  position: relative;
  margin-top: 256px;
}
@media (max-width: 749px) {
  .specifications {
    margin-top: 48px;
  }
}
.specifications::before {
  content: "";
  position: absolute;
  top: -135px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 100vw;
  height: 28.75vw;
  background-image: url(../img/specifications_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 749px) {
  .specifications::before {
    top: -70px;
    height: 140.5333333333vw;
    background-image: url(../img/specifications_bg_sp.png);
  }
}
.specifications_inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 50px;
}
@media (max-width: 749px) {
  .specifications_inner {
    padding: 0 10px;
  }
}
.specifications_label {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.specifications_image {
  margin-top: 51px;
}
@media (max-width: 749px) {
  .specifications_image {
    margin-top: 29px;
  }
}
.specifications_image figcaption {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 10px;
}
@media (max-width: 749px) {
  .specifications_image figcaption {
    font-size: 1rem;
    line-height: 2;
  }
}
.specifications_image figcaption a {
  color: #fff;
  text-decoration: underline;
}
.specifications_image figcaption a img {
  vertical-align: middle;
  margin-left: 0.5em;
}
.specifications_block {
  margin-top: 73px;
}
.specifications_block_title {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4666666667;
  text-align: center;
  max-width: 622px;
  margin: 0 auto 0;
}
@media (max-width: 749px) {
  .specifications_block_title {
    font-size: 2.4rem;
  }
}
.specifications_block_title small {
  font-size: 2rem;
  line-height: 2.2;
}
@media (max-width: 749px) {
  .specifications_block_title small {
    font-size: 1.6rem;
  }
}
.specifications_block_button {
  color: #fff;
  display: block;
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4285714286;
  text-align: center;
  width: 230px;
  margin: 97px auto 0;
  padding: 14px 16px;
  border: 1px solid #fff;
}
@media (max-width: 749px) {
  .specifications_block_button {
    margin-top: 31px;
    padding: 6px 24px 7px;
  }
}
.specifications_block_button::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 8px;
  width: 8px;
  height: 5px;
  background-image: url(../img/icon_tab.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.specifications_block_style {
  margin-top: 66px;
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.6666;
  text-align: center;
}
@media (max-width: 749px) {
  .specifications_block_style {
    word-break: break-all;
  }
}
.specifications_block_style p + p {
  margin-top: 20px;
}
.specifications_item.--wide {
  margin-top: 52px;
}
@media (max-width: 749px) {
  .specifications_item.--wide {
    margin-top: 32px;
  }
}
.specifications_item.--wide .specifications_item_image {
  max-width: 270px;
  margin: 0 auto;
}
@media (max-width: 749px) {
  .specifications_item.--wide .specifications_item_image {
    width: 72vw;
    max-width: 100%;
  }
}
.specifications_item.--small {
  max-width: 170px;
}
@media (max-width: 749px) {
  .specifications_item.--small {
    width: 45.3333333333vw;
    max-width: 100%;
    margin: 0 auto;
  }
}
.specifications_item img {
  max-width: 260px;
  display: block;
  margin: 0 auto;
}
.specifications_item figcaption {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-top: 21px;
}
@media (max-width: 749px) {
  .specifications_item figcaption {
    margin-top: 9px;
  }
}
.specifications_item_text {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.875;
  margin-top: 20px;
  text-align: center;
}
.specifications_item_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 58px;
  margin: 67px -48px 0;
}
@media (max-width: 749px) {
  .specifications_item_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 27px 0;
    margin: 70px auto 0;
    max-width: 260px;
  }
}
.specifications_item_list.--col3 {
  gap: 0 58px;
}
@media (max-width: 749px) {
  .specifications_item_list.--col3 {
    gap: 70px 0;
  }
}

.webp .specifications:before {
  background-image: url(../img/specifications_bg.webp);
}
@media (max-width: 749px) {
  .webp .specifications:before {
    background-image: url(../img/specifications_bg_sp.webp);
  }
}

/*
  outro_block
*/
.outro_block {
  position: relative;
  padding-top: 52px;
  padding-bottom: 114px;
}
@media (max-width: 749px) {
  .outro_block {
    margin: 0;
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
.outro_block_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}
@media (max-width: 749px) {
  .outro_block_inner {
    padding: 0 10px;
  }
}
.outro_block .profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 45px;
  padding: 64px 50px;
  background: rgb(255, 255, 255);
  background: -webkit-linear-gradient(356deg, rgb(255, 255, 255) 0%, rgb(187, 187, 187) 100%);
  background: linear-gradient(94deg, rgb(255, 255, 255) 0%, rgb(187, 187, 187) 100%);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 749px) {
  .outro_block .profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px 0;
    padding: 20px 10px 64px;
  }
}
.outro_block .profile_image {
  width: 200px;
}
@media (max-width: 749px) {
  .outro_block .profile_image {
    width: 154px;
  }
}
.outro_block .profile_text {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.9230769231;
  width: calc(100% - 245px);
}
@media (max-width: 749px) {
  .outro_block .profile_text {
    font-size: 1.2rem;
    line-height: 1.6666666667;
    width: 80vw;
  }
}
.outro_block .contact {
  margin: 124px auto 0;
}
@media (max-width: 749px) {
  .outro_block .contact {
    margin-top: 50px;
    padding: 0 6px;
  }
}
.outro_block .contact_block {
  padding: 20px 20px 17px;
  border: 1px solid #fff;
}
@media (max-width: 749px) {
  .outro_block .contact_block {
    padding: 14px 10px 19px;
  }
}
.outro_block .contact_text {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.8571428571;
  text-align: center;
}
@media (max-width: 749px) {
  .outro_block .contact_text {
    font-size: 1.3rem;
    line-height: 1.8461538462;
  }
}
.outro_block .contact_link {
  display: block;
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  max-width: 320px;
  margin: 15px auto 0;
  padding: 5px 16px;
  border: 1px solid #fff;
}
.outro_block .contact_link::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 7px;
  width: 17px;
  height: 11px;
  background-image: url(../img/icon_tab.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.outro_block .information {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 57px auto 0;
}
@media (max-width: 749px) {
  .outro_block .information {
    margin-top: 43px;
  }
}
.outro_block .information_style {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  text-align: center;
  max-width: 479px;
  margin: 0 auto 0;
}
@media (max-width: 749px) {
  .outro_block .information_style {
    font-size: 1.3rem;
    line-height: 2.1538461539;
    max-width: 100%;
  }
}
.outro_block .information_text {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.6666666667;
  text-align: center;
  margin: 46px auto 0;
}
@media (max-width: 749px) {
  .outro_block .information_text {
    font-size: 1.3rem;
    line-height: 2.1538461539;
    max-width: 100%;
    margin-top: 43px;
  }
}