@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

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

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 62.5%;
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 100px;
  }
}
@media screen and (min-width: 992px) {
  html {
    scroll-padding-top: 0px;
  }
}

body {
  color: #707070;
  font-size: min(3.73vw, 1.6rem);
  line-height: 1.8;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  overscroll-behavior: none;
}

a {
  color: #707070;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

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

._sp {
  display: block;
}

._spi {
  display: inline-block;
}

._pc {
  display: none;
}

._pci {
  display: none;
}

@media screen and (min-width: 768px) {
  ._sp {
    display: none;
  }
  ._spi {
    display: none;
  }
  ._pc {
    display: block;
  }
  ._pci {
    display: inline-block;
  }
}
.c-container {
  max-width: 1040px;
  padding: 0 20px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .c-container {
    padding: 0 30px;
  }
}

.c-container_l {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .c-container_l {
    padding: 0 30px;
  }
}

.c-containerfluid {
  padding: 0 20px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .c-containerfluid {
    padding: 0 30px;
  }
}

.textright {
  text-align: right;
}

.textcenter {
  text-align: center;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mt-8 {
  margin-top: 5rem !important;
}
@media screen and (min-width: 768px) {
  .mt-8 {
    margin-top: 8rem !important;
  }
}

.c-btn {
  margin-top: 5rem;
}
.c-btn a {
  width: 90%;
  max-width: 48rem;
  margin: auto;
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0F75BF;
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.6rem, 4.8vw, 2rem);
  text-decoration: none;
  border-radius: 0.2rem;
  position: relative;
}
.c-btn a:hover {
  background: #004679;
}
.c-btn a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  right: 30px;
  top: 50%;
  transform-origin: top;
}
.c-btn.c-btn_back {
  margin-top: 8rem;
}
.c-btn.c-btn_back a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-135deg) translateY(-50%);
  position: absolute;
  left: 30px;
  top: 50%;
  transform-origin: top;
}

@media screen and (min-width: 768px) {
  .c-row {
    margin: 0 -2rem;
    display: flex;
  }
  .c-col_4 {
    padding: 0 2rem;
    width: 33.333%;
  }
  .c-col_8 {
    padding: 0 2rem;
    width: 66.666%;
  }
  .c-col_6 {
    padding: 0 2rem;
    width: 50%;
  }
}
.l-header {
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 992px) {
  .l-header {
    position: relative;
  }
}
.l-header_inner {
  height: 60px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-header_inner {
    height: 100px;
    padding: 0 3rem;
    max-width: 1440px;
    margin: auto;
  }
}
.l-header_logo {
  width: 150px;
}
@media screen and (min-width: 768px) {
  .l-header_logo {
    width: 200px;
  }
}
.l-header_address {
  display: none;
  font-size: 1.6rem;
}
.l-header_address span {
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .l-header_address {
    display: block;
    color: #707070;
    font-weight: 500;
    margin-left: auto;
    text-align: right;
    line-height: 1.5;
  }
}
.l-header_address a {
  font-weight: bold;
  font-size: 2.4rem;
  text-decoration: none;
}
.l-header_btn {
  margin: auto;
}
@media screen and (max-width: 680px) {
  .l-header_btn {
    display: none;
  }
}
.l-header_btn ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.l-header_btn ul li.risk {
  margin: 0 1rem;
}
.l-header_btn ul li.risk a {
  text-decoration: none;
  font-weight: bold;
  padding: 1rem 2rem;
  color: #093854;
  border: 1px solid #093854;
  display: block;
  background: rgb(246, 250, 255);
  background: linear-gradient(0deg, rgb(246, 250, 255) 0%, rgb(163, 196, 241) 100%);
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
  border-radius: 4px;
  font-size: min(3.73vw, 1.6rem);
}
.l-header_btn ul li.yakkan {
  margin: 0 1rem;
}
.l-header_btn ul li.yakkan a {
  text-decoration: none;
  font-weight: bold;
  padding: 1rem 2rem;
  color: #ff573d;
  border: 1px solid #ff573d;
  display: block;
  background: rgb(255, 247, 240);
  background: linear-gradient(0deg, rgb(255, 247, 240) 0%, rgb(255, 196, 140) 100%);
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
  border-radius: 4px;
  font-size: min(3.73vw, 1.6rem);
}

.l-globalnav {
  background: rgba(0, 134, 209, 0.6);
}
.l-globalnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 992px) {
  .l-globalnav ul {
    height: 6.5rem;
  }
}
@media screen and (min-width: 992px) {
  .l-globalnav li {
    width: 16.6666666667%;
    height: 100%;
  }
}
.l-globalnav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .l-globalnav a {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .l-globalnav a::after {
    content: "";
    display: inline-block;
    width: 0%;
    height: 3px;
    background: #0F75BF;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    transition: width 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  }
}
.l-globalnav .l-header_btn.innavi {
  display: none;
}
@media screen and (max-width: 680px) {
  .l-globalnav .l-header_btn.innavi {
    display: block;
  }
}
.l-globalnav .l-header_btn.innavi li {
  margin-bottom: 1rem;
}
.l-globalnav .l-header_btn.innavi li a {
  display: flex;
  align-items: center;
  font-size: min(3.73vw, 1.6rem);
}
.l-globalnav .l-header_btn.innavi li.risk a::after {
  border-color: transparent transparent transparent #093854;
}
.l-globalnav .l-header_btn.innavi li.yakkan a::after {
  border-color: transparent transparent transparent #ff573d;
}

@media screen and (min-width: 992px) {
  .menu-btn {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .menu-btn {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    height: 50px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 200;
  }
  .spnav-btn {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .menu-btn span.line {
    content: "";
    display: block;
    height: 2px;
    width: 30px;
    margin-bottom: 6px;
    background-color: #191919;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu-btn span.line.line_03 {
    width: 20px;
    margin-left: 10px;
  }
  .menu-btn span.spnav-menu {
    content: "MENU";
    font-size: 10px;
    color: #191919;
    font-weight: 700;
    line-height: 1;
    margin-top: 0.2rem;
  }
  .nav-open .menu-btn .line.line_01 {
    transform: rotate(45deg);
    width: 25px;
    position: relative;
    top: 4px;
  }
  .nav-open .menu-btn .line.line_03 {
    transform: rotate(-45deg);
    width: 25px;
    position: relative;
    top: -4px;
    left: -5px;
  }
  .l-globalnav {
    position: fixed;
    top: 60px;
    z-index: 1000;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    overflow-y: auto;
    background: #0F75BF;
    padding-bottom: 10rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0ms;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  .l-globalnav {
    top: 100px;
  }
}
@media screen and (max-width: 991px) {
  .l-globalnav ul {
    display: block;
    margin-top: 5rem;
  }
  .l-globalnav a {
    color: #fff;
    font-size: 1.8rem;
    padding: 0.5rem 4rem;
    position: relative;
    height: 6rem;
    display: flex;
    align-items: center;
  }
  .l-globalnav a::after {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3px 0 3px 8px;
    border-color: transparent transparent transparent #fff;
  }
  .nav-open .l-globalnav {
    transform: translateX(0);
  }
}
.type-recruit .l-header_btn,
.type-recruit .l-header_btn.innavi {
  display: none;
}

.l-footer {
  background: #e5e5e5;
  padding: 5rem 0;
}
@media screen and (min-width: 992px) {
  .l-footer_inner {
    display: flex;
    justify-content: space-between;
  }
}
.l-footer_company {
  line-height: 1.6;
  font-size: 1.4rem;
}
.l-footer_company_logo {
  margin-bottom: 2rem;
}
@media screen and (min-width: 992px) {
  .l-footer_company {
    width: 380px;
  }
}
.l-footer_address {
  margin-top: 2rem;
  font-size: 1.5rem;
}
.l-footer_nav {
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  .l-footer_nav {
    margin-top: 0;
    display: flex;
    flex: 1;
  }
}
.l-footer_nav ul.l-footer_nav_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .l-footer_nav ul.l-footer_nav_list {
    width: 30%;
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .l-footer_nav ul.l-footer_nav_list:first-child {
    width: 40%;
  }
}
.l-footer_nav ul.l-footer_nav_list ul {
  display: none;
}
@media screen and (min-width: 992px) {
  .l-footer_nav ul.l-footer_nav_list ul {
    display: block;
    font-size: 1.4rem;
    list-style: none;
    padding-left: 1em;
  }
}
.l-footer_nav li {
  width: 50%;
  padding: 0.5rem 1rem 0.5rem 0;
}
.l-footer_nav li li {
  padding: 0 1rem 0.5rem 0;
}
.l-footer_nav li.list-long {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .l-footer_nav li {
    width: 100%;
  }
}
.l-footer_nav a {
  color: #707070;
  text-decoration: none;
}
.l-footer_nav a:hover {
  text-decoration: underline;
}

.copyright {
  height: 4rem;
  background: #707070;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .copyright {
    height: 7rem;
  }
}

.totop {
  width: 40px;
  height: 40px;
  background: #000;
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  transform: translateY(50px);
}
.totop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .totop {
    width: 70px;
    height: 70px;
  }
}
.totop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  color: #fff;
  position: relative;
}
.totop a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
  position: relative;
  top: 5px;
}

@font-face {
  font-family: "life";
  src: url("../fonts/Life-BT-Roman.ttf") format("truetype");
  src: url("../fonts/Life-BT-Roman.woff") format("woff");
}
body {
  display: flex;
  flex-direction: column;
}

.l-footer {
  margin-top: auto;
}

.section-header {
  position: relative;
  height: 38vw;
}
@media screen and (min-width: 768px) {
  .section-header {
    height: 24rem;
  }
}
.section-header_content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
}
.section-header_content .c-container {
  height: 100%;
  display: flex;
  align-items: center;
}
.section-header_title {
  font-size: clamp(2.4rem, 7.46vw, 3.4rem);
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
}
.section-header_title::after {
  content: attr(data-en);
  font-family: "life", serif;
  font-size: min(3.2vw, 1.6rem);
  color: #fff;
  margin-top: 1rem;
  line-height: 1;
  display: block;
}
.section-header_img {
  height: 100%;
}
.section-header_img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 70, 121, 0.45);
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.section-header_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.inpage-nav {
  background: #0F75BF;
}
.inpage-nav_list {
  display: flex;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  margin: 0 -0.5rem;
}
@media screen and (min-width: 768px) {
  .inpage-nav_list {
    padding: 2.5rem 0;
  }
}
@media screen and (min-width: 768px) {
  .inpage-nav_list.item4 .inpage-nav_item {
    width: 25%;
  }
}
@media screen and (min-width: 768px) {
  .inpage-nav_list.item5 .inpage-nav_item {
    width: 20%;
  }
}
.inpage-nav_item {
  width: 50%;
  padding: 0.5rem;
}
.inpage-nav_item a {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  text-decoration: none;
  color: #0F75BF;
}
@media screen and (min-width: 768px) {
  .inpage-nav_item a {
    padding: 2rem 1rem;
  }
}
.inpage-nav_item a span {
  text-align: center;
  font-size: min(3.73vw, 1.6rem);
  font-weight: bold;
}
.inpage-nav_item a span::after {
  content: attr(data-en);
  font-family: "life", serif;
  font-size: min(2.66vw, 1.2rem);
  color: #707070;
  font-weight: inherit;
  line-height: 1;
  display: block;
}

.section-bg_blue {
  background: rgba(15, 117, 191, 0.1);
}

.breadcrumb {
  padding: 1rem 0;
  border-top: 1px solid #ddd;
  font-size: 1.2rem;
  background: #fff;
}

.heading-title_center {
  font-size: min(5.3vw, 2.8rem);
  text-align: center;
  border-bottom: 1px solid #707070;
  padding-bottom: 2rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .heading-title_center {
    padding-bottom: 3rem;
  }
}
.heading-title_center::after {
  margin-top: 0.5rem;
  content: attr(data-en);
  font-family: "life", serif;
  font-size: min(2.66vw, 1.4rem);
  color: #707070;
  font-weight: inherit;
  line-height: 1;
  display: block;
}
@media screen and (min-width: 768px) {
  .heading-title_center::after {
    margin-top: 1rem;
  }
}
.heading-title_dot {
  margin-top: 5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-size: min(5.3vw, 2.5rem);
  font-weight: bold;
  color: #0F75BF;
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (min-width: 768px) {
  .heading-title_dot {
    margin-top: 8rem;
  }
}
.heading-title_dot:first-child {
  margin-top: 0;
}
.heading-title_dot.nodot {
  background: none;
  margin-bottom: 0;
}
.heading-title_dot.color-inherit {
  color: #707070;
  font-size: clamp(1.8rem, 4.8vw, 2rem);
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .heading-title_dot.color-inherit {
    margin-top: 5rem;
  }
}
.heading-title_center + .heading-title_dot {
  margin-top: 0;
}
.heading-title_line + .heading-title_dot {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .heading-title_line + .heading-title_dot {
    margin-top: 5rem;
  }
}
.heading-title_maincenter {
  margin-top: 5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-size: min(5.3vw, 2.5rem);
  font-weight: bold;
  color: #0F75BF;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .heading-title_maincenter {
    margin-top: 8rem;
  }
}
.heading-title_maincenter:first-child {
  margin-top: 0;
}
.heading-title_center + .heading-title_maincenter {
  margin-top: 0;
}
.heading-title_line {
  margin-top: 5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-size: min(5.3vw, 2.5rem);
  font-weight: bold;
  color: #0F75BF;
  border-bottom: 1px solid #707070;
}
@media screen and (min-width: 768px) {
  .heading-title_line {
    margin-top: 8rem;
  }
}
.heading-title_line:first-child {
  margin-top: 0;
}
.heading-title_line.flex-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.heading-title_line .small {
  font-size: 80%;
}
.heading-title_center + .heading-title_dot {
  margin-top: 0;
}
.heading-title_second {
  font-weight: bold;
  font-size: clamp(1.6rem, 4.8vw, 2rem);
  color: #0F75BF;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}

h2 + .section-title_second {
  margin-top: 0;
}

table.table {
  width: 100%;
  border-collapse: collapse;
}
table.table th,
table.table td {
  display: block;
  text-align: left;
}
@media screen and (min-width: 768px) {
  table.table th,
  table.table td {
    display: table-cell;
    vertical-align: top;
  }
}
table.table th {
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  table.table th {
    width: 20%;
    white-space: nowrap;
    padding: 1.5rem 3rem 1.5rem 0;
    border-bottom: 1px solid #ddd;
  }
}
table.table td {
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  table.table td {
    padding: 1.5rem 1rem 1.5rem 3rem;
  }
}

table.border-table {
  width: 100%;
  border-collapse: collapse;
  border-left: 1px solid #707070;
  border-top: 1px solid #707070;
  margin-top: 3rem;
}
table.border-table caption {
  text-align: right;
  margin-bottom: 1rem;
}
table.border-table thead th {
  background: #E7E7E7;
  padding: 1rem;
}
table.border-table th,
table.border-table td {
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding: 1rem;
}

table.center-table {
  text-align: center;
}

table.width3 th,
table.width3 td {
  width: 33%;
}

.section-content {
  padding: 4rem 0 8rem;
}
@media screen and (min-width: 768px) {
  .section-content {
    padding: 7rem 0 15rem;
  }
}
.section-content.section-content_list {
  padding: 4rem 0 6rem;
}
@media screen and (min-width: 768px) {
  .section-content.section-content_list {
    padding: 7rem 0 8rem;
  }
}
.section-content p {
  margin-top: 1.5rem;
}
.section-content p:first-child {
  margin-top: 0;
}
.section-content_title {
  background: #8e959c;
  color: #fff;
  margin-bottom: 2rem;
  padding: 0.5rem 2rem;
  border-radius: 3px;
  font-size: min(5.86vw, 2.6rem);
  background: rgb(168, 4, 0);
  background: linear-gradient(120deg, rgb(168, 4, 0) 0%, rgb(110, 3, 0) 100%);
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-content_title {
    padding: 1rem 3rem;
    margin-bottom: 5rem;
  }
}
.section-content_title span {
  position: relative;
  z-index: 1;
}
.section-content_title::before {
  content: "";
  width: 43.48vw;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgb(84, 2, 0);
  background: linear-gradient(0deg, rgb(84, 2, 0) 0%, rgb(168, 4, 0) 100%);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 0;
  border-radius: 3px;
}
.section-content_title::after {
  content: "";
  width: 22.69vw;
  height: 50%;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  background: rgb(168, 4, 0);
  background: linear-gradient(0deg, rgb(168, 4, 0) 0%, rgb(84, 2, 0) 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: 0;
  border-radius: 3px;
}

@media screen and (min-width: 768px) {
  .content-inner {
    padding: 0 3.5%;
  }
}
.content-inner_title {
  padding-left: 2rem;
  margin-top: 5rem;
  margin-bottom: 2rem;
  background-image: linear-gradient(#d71b17 50%, #8e959c 50%);
  background-repeat: no-repeat;
  background-size: 0.5rem 100%;
  font-weight: bold;
  font-size: min(5.33vw, 2.8rem);
}
@media screen and (min-width: 768px) {
  .content-inner_title {
    padding-left: 3rem;
    margin-top: 6rem;
    margin-bottom: 3rem;
  }
}
.content-inner_title:first-child {
  margin-top: 0;
}
.content-inner_title_s {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
  font-size: min(4.26vw, 2rem);
  text-indent: -2em;
  margin-left: 2em;
}
.content-inner_title_s + p, .content-inner_title_s + ul {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .content-inner_title_s {
    margin-top: 3rem;
  }
}
.content-inner_title_s::before {
  content: "";
  margin-right: 2rem;
  display: inline-block;
  width: min(4.26vw, 2rem);
  height: min(4.26vw, 2rem);
  background: #0F75BF;
  position: relative;
  top: 2px;
}
.content-inner_title_ss {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: min(4.266vw, 2rem);
}
.content-inner_title_ss + p {
  margin-top: 1rem;
}
.content-inner_titlecenter {
  margin-top: 5rem;
  text-align: center;
  font-size: min(6.4vw, 2.8rem);
  position: relative;
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .content-inner_titlecenter {
    margin-top: 8rem;
    margin-bottom: 5rem;
  }
}
.content-inner_titlecenter::before {
  content: attr(data-en);
  font-family: "Oswald", sans-serif;
  font-size: min(10.66vw, 6rem);
  color: #000;
  opacity: 0.08;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-weight: 500;
}
.content-inner p + table.table {
  margin-top: 5rem;
}
.content-inner table.table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #ddd;
}
.content-inner table.table th,
.content-inner table.table td {
  display: block;
  width: 100%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .content-inner table.table th,
  .content-inner table.table td {
    display: table-cell;
  }
}
.content-inner table.table th {
  background: #f3f3f3;
  padding: 0.5rem 2rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .content-inner table.table th {
    width: 25%;
    padding: 1.5rem 3rem 1.5rem 3rem;
    border-bottom: 1px solid #ddd;
  }
}
.content-inner table.table td {
  padding: 0.5rem 2rem 1rem;
}
@media screen and (min-width: 768px) {
  .content-inner table.table td {
    padding: 1.5rem 1rem 1.5rem 5rem;
    border-bottom: 1px solid #ddd;
  }
}
.content-inner .gmap iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.wp-pagenavi {
  margin-top: 50px;
  padding: 25px 20px 25px;
  clear: both;
  text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi span.pages,
.wp-pagenavi span.extend {
  color: #333333;
  padding: 15px 10px 15px 10px;
  background: #eee;
  margin-right: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.wp-pagenavi a:hover {
  background: #0F75BF;
  color: #fff;
}

.wp-pagenavi span.current {
  margin-right: 5px;
  padding: 15px 10px 15px 10px;
  background: #0F75BF;
  color: #fff;
}

.fu {
  opacity: 0;
  transform: translateY(4rem);
  transition: transform 1.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 1.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.in-view.fu,
.in-view .fu {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

@media screen and (min-width: 768px) {
  .greeting-row {
    margin-top: 8rem;
    display: flex;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .greeting-row_msg {
    flex: 1;
    padding-left: 5rem;
  }
}
.greeting-row_photo {
  margin-top: 3rem;
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 768px) {
  .greeting-row_photo {
    max-width: 282px;
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
.greeting-row_photo figure {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .greeting-row_photo figure {
    width: 100%;
  }
}
.greeting-row_photo figure img {
  border: 2px solid #fff;
}
.greeting-row_name {
  flex: 1;
  padding-left: 2rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .greeting-row_name {
    margin-top: 2rem;
    line-height: 1.5;
    padding-left: 0;
  }
}
.greeting-row_name .ceo-ttl {
  font-size: 1.2rem;
}
.greeting-row_name .ceo-name {
  font-size: 1.8rem;
}

.contribution-fig {
  max-width: 863px;
  margin: 5rem auto;
}

@media screen and (min-width: 768px) {
  .product-list {
    margin-top: 4rem;
  }
}
.product-list_name {
  background: #0F75BF;
  color: #fff;
  font-weight: bold;
  font-size: min(4.266vw, 1.8rem);
  text-align: center;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .product-list_name {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
  }
}
.product-list_cont {
  padding: 1.5rem 1rem 3rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .product-list_cont {
    padding: 1.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    border: 1px solid #707070;
    border-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .product-list_item {
    display: flex;
    margin-top: 3rem;
  }
}

.letter4 {
  letter-spacing: 2em;
  text-indent: 2em;
}

@media screen and (min-width: 768px) {
  .store-address {
    margin-top: 3rem;
  }
}

.store-title_en {
  font-family: "life", serif;
  font-size: min(2.66vw, 1.2rem);
  color: #555;
  font-weight: inherit;
  line-height: 1;
  display: block;
}

.store-fig {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .store-fig {
    display: flex;
    gap: 4rem;
  }
}
.store-fig_gmap {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .store-fig_gmap {
    margin-top: 0;
    width: 50%;
  }
}
.store-fig_gmap iframe {
  width: 100%;
  aspect-ratio: 3/2;
}
@media screen and (min-width: 768px) {
  .store-fig_fig {
    width: 50%;
  }
}

.news-list_item {
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.news-list_item a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .news-list_item a {
    padding: 2rem 0;
  }
}
.news-list_item a:hover .news-list_item_title {
  text-decoration: underline;
}
.news-list_item_date {
  font-weight: bold;
  margin-right: 2rem;
}
@media screen and (min-width: 768px) {
  .news-list_item_title {
    flex: 1;
  }
}
@media screen and (min-width: 768px) {
  .news-list_item_content {
    display: flex;
    align-items: flex-start;
  }
}
.news-list_item .topitem_tag .tagitem {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
  padding: 0.3rem 1rem;
  display: inline-block;
  min-width: 8em;
  text-align: center;
  position: relative;
  top: -1.5px;
}
.news-list_itemheader {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .news-list_itemheader {
    margin-right: 3rem;
  }
}

.entry-date {
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}
.entry-date .entry-label {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  background: #0F75BF;
  line-height: 1;
  padding: 0.2rem 2rem;
  border-radius: 2rem;
  position: relative;
  top: -1px;
  margin-left: 2rem;
}

.entry-content {
  padding-top: 3rem;
}
.entry-content h3 {
  margin-top: 3rem;
  font-size: clamp(1.8rem, 5.3333333333vw, 2.4rem);
  color: #0F75BF;
}
.entry-content h3:first-child {
  margin-top: 0;
}
.entry-content h3 + table {
  margin-top: 2rem;
}
.entry-content h4 {
  font-weight: bold;
  font-size: clamp(1.6rem, 4.8vw, 2rem);
  margin-top: 3rem;
}
.entry-content h4:first-child {
  margin-top: 0;
}
.entry-content table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 3rem;
}
.entry-content table th,
.entry-content table td {
  border: 1px solid #ddd;
  padding: 1rem 2rem;
  text-align: left;
}
.entry-content table th {
  background: #eee;
}

.faq-list_item {
  padding: 2rem 0;
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (min-width: 768px) {
  .faq-list_item {
    padding: 3rem 0;
  }
}
.faq-list_item_q {
  color: #0F75BF;
  font-weight: bold;
  font-size: min(4.26vw, 1.8rem);
  display: flex;
}
.faq-list_item_q::before {
  content: "Q";
  font-weight: bold;
  background: #0F75BF;
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(4.26vw, 1.8rem);
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .faq-list_item_q::before {
    margin-right: 2rem;
  }
}
.faq-list_item_q .inner {
  flex: 1;
}
.faq-list_item_a {
  margin-top: 2rem;
  display: flex;
}
@media screen and (min-width: 768px) {
  .faq-list_item_a {
    margin-top: 3rem;
  }
}
.faq-list_item_a::before {
  content: "A";
  font-weight: bold;
  background: #707070;
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(4.26vw, 1.8rem);
  margin-right: 1rem;
}
@media screen and (min-width: 768px) {
  .faq-list_item_a::before {
    margin-right: 2rem;
  }
}
.faq-list_item_a .inner {
  flex: 1;
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
}
.contact-table th,
.contact-table td {
  display: block;
  text-align: left;
  font-size: clamp(1.4rem, 4.2666666667vw, 1.6rem);
}
@media screen and (min-width: 768px) {
  .contact-table th,
  .contact-table td {
    display: table-cell;
  }
}
.contact-table th {
  padding: 1rem 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .contact-table th {
    padding: 2rem 3rem 2rem 0;
    width: 20%;
    vertical-align: top;
    white-space: nowrap;
  }
}
.contact-table td {
  padding: 0 0 2rem;
}
@media screen and (min-width: 768px) {
  .contact-table td {
    padding: 2rem 0;
  }
}
.contact-table tr {
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.contact-table input[type=text],
.contact-table input[type=email],
.contact-table input[type=tel],
.contact-table textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #707070;
  border-radius: 2px;
  font-size: 1.6rem;
}
.contact-table input#zip {
  width: 24rem;
}
.contact-table textarea {
  height: 20rem;
}
.contact-table .must {
  color: #fff;
  background: #0F75BF;
  border-radius: 10rem;
  padding: 0.2rem 0.5rem;
  line-height: 1;
  margin-left: 2rem;
  display: inline-block;
  font-size: 1.2rem;
  position: relative;
  top: -1px;
}

.privacy-area {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .privacy-area {
    margin-top: 5rem;
    text-align: center;
  }
}

.form-privacy {
  margin-top: 3rem;
}

.form-privacy .mwform-checkbox-field label {
  display: block;
  padding: 30px 10px;
  text-align: center;
  background: rgba(15, 117, 191, 0.1);
  cursor: pointer;
  margin-bottom: 20px;
}
.form-privacy .mwform-checkbox-field label:hover {
  background: rgba(15, 117, 191, 0.2);
}

.selectbox {
  width: 100%;
  max-width: 400px;
  position: relative;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #707070;
  background: #fff;
  font-size: 1.6rem;
}

.selectbox::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  right: 5%;
  top: 40%;
  border-bottom: #333 2px solid;
  border-right: #333 2px solid;
  transform: rotate(45deg) translateY(-30%);
}

.to-entry-btn.input {
  margin: 8rem auto 0;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 368px;
  height: 50px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .to-entry-btn.input {
    height: 6rem;
  }
}
.to-entry-btn.input input {
  border: 0;
  color: #fff;
  background: #0F75BF;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
}

.to-entry-btn.input::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  right: 30px;
  top: 50%;
  transform-origin: top;
}

.back-btn input {
  background: #ccc;
  display: block;
  width: 50%;
  max-width: 240px;
  margin: 4rem auto 0;
  text-align: center;
  padding: 15px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
}

.mw_wp_form .error {
  display: inline-block !important;
}

.mw_wp_form_confirm .selectbox::after {
  display: none;
}

.privacy-date {
  text-align: right;
  margin: 3rem 0;
}

.section-content p.text-last {
  text-align: right;
}

.privacy-contbox {
  padding: 3rem 10%;
  margin: 3rem auto 0;
  max-width: 860px;
  background: rgba(15, 117, 191, 0.1);
}

.home-banner {
  padding: 1rem 0 4rem;
}
@media screen and (min-width: 768px) {
  .home-banner {
    padding: 1rem 0 8rem;
  }
}
@media screen and (min-width: 768px) {
  .home-banner_btnrow {
    display: flex;
    margin: 0 -2rem;
  }
}
.home-banner_btn {
  position: relative;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .home-banner_btn {
    padding: 0 2rem;
  }
}
.home-banner_btn a {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.6rem, 4.2666666667vw, 1.8rem);
  z-index: 10;
}
.home-banner_btn a::before {
  content: attr(data-en);
  font-family: "life", serif;
  font-size: clamp(2.4rem, 6.9333333333vw, 3.6rem);
  color: #fff;
  margin-top: 1rem;
  line-height: 1;
  display: block;
}
@media (any-hover: hover) {
  .home-banner_btn:hover .home-banner_btnfig.btn-news::after {
    background: rgb(101, 182, 227);
  }
  .home-banner_btn:hover .home-banner_btnfig.btn-event::after {
    background: rgb(36, 131, 149);
  }
}
.home-banner_btnfig {
  position: relative;
}
.home-banner_btnfig::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.home-banner_btnfig.btn-news::after {
  background: rgba(101, 182, 227, 0.85);
  transition: all 0.5s ease;
}
.home-banner_btnfig.btn-event::after {
  background: rgba(36, 131, 149, 0.8);
  transition: all 0.5s ease;
}
.home-banner_img {
  padding: 0 2px;
}
@media screen and (min-width: 768px) {
  .home-banner_img {
    margin-top: 0;
    padding: 0 9px;
  }
}
.home-banner_imgrow {
  display: flex;
  margin: 2rem -2px 0;
}
@media screen and (min-width: 768px) {
  .home-banner_imgrow {
    margin: 5rem -9px 0;
  }
}

.home-contentlist {
  background: rgba(97, 177, 223, 0.1);
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  .home-contentlist {
    padding: 10rem 0;
  }
}
.home-contentlist_item {
  margin-top: 2rem;
}
.home-contentlist_item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .home-contentlist_item {
    display: flex;
    margin-top: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .home-contentlist_item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.home-contentlist_item_content {
  padding: 3rem 2rem 3rem;
  background: #fff;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .home-contentlist_item_content {
    width: 35.88vw;
    min-width: 320px;
    padding: 4rem 4rem 4rem;
  }
}
.home-contentlist_item_content p {
  margin-bottom: 2rem;
}
.home-contentlist_item_fig {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .home-contentlist_item_fig {
    flex: 1;
    margin-right: calc(50% - 50vw);
  }
  .home-contentlist_item_fig img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 768px) {
  .home-contentlist_item:nth-child(2n) .home-contentlist_item_fig {
    margin-right: 0;
    margin-left: calc(50% - 50vw);
  }
}
.home-contentlist_title {
  font-size: clamp(2rem, 6.4vw, 2.6rem);
  margin-bottom: 3rem;
  text-align: center;
}
.home-contentlist_title::after {
  content: attr(data-en);
  font-family: "life", serif;
  font-size: clamp(1.2rem, 3.2vw, 1.4rem);
  margin-top: 0.5rem;
  line-height: 1;
  display: block;
}
.home-contentlist_btn {
  width: 20rem;
  height: 5.5rem;
  margin: 3rem auto 0;
  background: #004679;
  position: relative;
}
@media screen and (min-width: 768px) {
  .home-contentlist_btn {
    margin-top: auto;
  }
}
@media screen and (min-width: 768px) {
  .home-contentlist_btn::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #0F75BF;
    position: absolute;
    left: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: right top;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  }
}
.home-contentlist_btn:hover::before {
  transform: scaleX(1);
  transform-origin: left top;
}
.home-contentlist_btn a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  font-weight: bold;
}
.home-contentlist_btn a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  right: 30px;
  top: 50%;
  transform-origin: top;
}

.home-widebanner {
  padding: 0 0 4rem;
}
@media screen and (min-width: 768px) {
  .home-widebanner {
    padding: 0 0 8rem;
    display: flex;
    gap: 4px;
  }
}
.home-widebanner_list {
  position: relative;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .home-widebanner_list {
    margin: 0;
  }
}
.home-widebanner_list a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: clamp(2.4rem, 6.9333333333vw, 3rem);
  font-weight: bold;
}
.home-widebanner_list a::after {
  content: attr(data-en);
  font-family: "life", serif;
  font-size: clamp(1.4rem, 4.2666666667vw, 1.8rem);
  margin-top: 0.5rem;
  line-height: 1;
  display: block;
}
.home-widebanner_list img {
  transition: all 1.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
.home-widebanner_list:hover img {
  transform: scale(1.2);
}
.home-widebanner_fig {
  position: relative;
  overflow: hidden;
}
.home-widebanner_fig::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.53);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.home-footbanner {
  padding: 0 0 8rem;
}
@media screen and (min-width: 768px) {
  .home-footbanner {
    padding: 0 0 10rem;
  }
}
.home-footbanner .c-container {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .home-footbanner .c-container {
    justify-content: center;
    margin: auto;
  }
}
.home-footbanner_item {
  margin-top: 1rem;
  padding: 0 0.5rem;
  width: 50%;
}
.home-footbanner_item img {
  margin: auto;
}
@media screen and (min-width: 768px) {
  .home-footbanner_item {
    width: 33.33%;
    padding: 0 1rem;
    margin-top: 3rem;
  }
}
.home-footbanner_item.item-wide {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .home-footbanner_item.item-wide {
    width: 50%;
  }
}
.home-footbanner_item.item-wide img {
  min-width: 80%;
}
@media screen and (min-width: 768px) {
  .home-footbanner_item.item-wide:nth-child(1) img {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .home-footbanner_item.item-wide:nth-child(2) img {
    margin-left: 0;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 6s linear 0s normal both;
}

.top-slider {
  position: relative;
}

.img-place {
  position: absolute;
  left: 5%;
  bottom: 5%;
  color: #fff;
  font-weight: bold;
  z-index: 100;
}

.keyvisual-content {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 10;
}

.keyvisual-txt {
  text-align: center;
}

.keyvisual-txt > div {
  line-height: 1.4;
  overflow: hidden;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}

.kt01 {
  font-size: clamp(2rem, 5.8666666667vw, 3.5rem);
  margin: 1rem 0;
}

.kt02 {
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  margin: 1.5rem 0;
}

.kt01 .upline {
  position: relative;
  display: inline-block;
  transform: translateY(100%);
  transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.8);
}

.kt02 .upline {
  position: relative;
  display: inline-block;
  transform: translateY(100%);
  transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) 1s;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.8);
}

.in-view .upline {
  transform: translateY(0);
}

.top-kouza {
  margin-top: 1rem;
  margin-bottom: 1rem;
  background: rgb(0, 134, 209);
}
@media screen and (min-width: 768px) {
  .top-kouza {
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}
.top-kouza_inner {
  padding: 3rem 0;
  text-align: center;
  font-size: min(5.86vw, 32px);
  font-weight: bold;
  color: #ff0;
}
@media screen and (min-width: 768px) {
  .top-kouza_inner {
    padding: 2.4rem 0;
    letter-spacing: 0.1em;
  }
}

.section-topevent {
  padding: 4rem 0 0;
}
@media screen and (min-width: 768px) {
  .section-topevent {
    padding: 6rem 0 0;
  }
}
.section-topevent_title {
  font-size: min(6.4vw, 3.2rem);
  color: #fff;
  line-height: 1;
  padding: 1rem;
  text-align: center;
  font-family: "life", serif;
  margin-bottom: 1.5rem;
}
.section-topevent_list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .section-topevent_list {
    margin: 0 0 3rem;
  }
}
.section-topevent_list a {
  display: block;
  padding: 0.8rem 0;
  text-decoration: none;
}
.section-topevent_list a:hover .topitem_body {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .section-topevent_inner {
    display: flex;
    margin: 0 -2rem;
  }
}
@media screen and (min-width: 768px) {
  .section-topevent_item {
    padding: 0 2rem;
    width: 50%;
    display: flex;
    flex-direction: column;
  }
}
.section-topevent .topitem_header {
  display: flex;
  align-items: center;
}
.section-topevent .topitem_date {
  font-size: 1.4rem;
  margin-right: 2rem;
}
.section-topevent .topitem_tag .tagitem {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1;
  padding: 0.3rem 1rem;
  display: inline-block;
  min-width: 8em;
  text-align: center;
  position: relative;
  top: -1.5px;
}
.section-topevent .topitem_body {
  margin-top: 0.2rem;
}
.section-topevent .to-archive {
  margin: auto auto 0;
  max-width: 280px;
  width: 100%;
}
.section-topevent .to-archive a {
  display: block;
  text-align: center;
  border: 1px solid;
  line-height: 1;
  padding: 0.8rem;
  text-decoration: none;
  position: relative;
}
.section-topevent .to-archive a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  right: 20px;
  top: 50%;
  transform-origin: center top;
}
.section-topevent .top-event_news .section-topevent_title {
  background: #0086D1;
}
.section-topevent .top-event_news .to-archive a {
  color: #0086D1;
}
.section-topevent .top-event_event {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .section-topevent .top-event_event {
    margin-top: 0;
  }
}
.section-topevent .top-event_event .section-topevent_title {
  background: #248395;
}
.section-topevent .top-event_event .to-archive a {
  color: #248395;
}

.type-recruit .l-globalnav {
  background: #004679;
}
.type-recruit .inpage-nav_item a span::after {
  font-size: 1rem;
  color: #fff;
}
.type-recruit .inpage-nav_item a {
  background: #004679;
  color: #fff;
}
.type-recruit .inpage-nav {
  background: #f5f5f5;
}
.type-recruit .heading-title_line,
.type-recruit .heading-title_dot {
  color: #004679;
}
.type-recruit .recruit-foot {
  margin: 8rem 0;
}
@media screen and (min-width: 768px) {
  .type-recruit .home-banner_btnrow {
    display: flex;
  }
}
.type-recruit .home-banner_btn {
  position: relative;
  margin-top: 2rem;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .type-recruit .home-banner_btn {
    margin-top: 0;
  }
}
.type-recruit .home-banner_btn a {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1.6rem, 4.2666666667vw, 1.8rem);
  z-index: 10;
}
.type-recruit .home-banner_btn a::before {
  content: attr(data-en);
  font-family: "life", serif;
  font-size: clamp(2.4rem, 6.9333333333vw, 3.6rem);
  color: #fff;
  margin-top: 1rem;
  line-height: 1;
  display: block;
}
@media (any-hover: hover) {
  .type-recruit .home-banner_btn:hover .home-banner_btnfig.btn-intro::after {
    background: rgb(0, 70, 121);
  }
  .type-recruit .home-banner_btn:hover .home-banner_btnfig.btn-entry::after {
    background: rgb(83, 153, 191);
  }
}
.type-recruit .home-banner_btnfig {
  position: relative;
}
.type-recruit .home-banner_btnfig::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.type-recruit .home-banner_btnfig.btn-intro::after {
  background: rgba(0, 70, 121, 0.85);
  transition: all 0.5s ease;
}
.type-recruit .home-banner_btnfig.btn-entry::after {
  background: rgba(83, 153, 191, 0.85);
  transition: all 0.5s ease;
}
.type-recruit .to-entry-btn.input input {
  background: #004679;
}
.type-recruit .contact-table .must {
  background: #004679;
}
.type-recruit .section-header.recruit-main {
  position: relative;
  height: 90vw;
}
@media screen and (min-width: 768px) {
  .type-recruit .section-header.recruit-main {
    height: 100%;
  }
}
.type-recruit .recruit-main .section-header_content .c-container {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.type-recruit .recruit-main .section-header_content .c-container .section-header_title {
  font-size: clamp(2rem, 8.5333333333vw, 4rem);
  margin-top: 34vw;
}
@media screen and (min-width: 768px) {
  .type-recruit .recruit-main .section-header_content .c-container .section-header_title {
    margin-top: 0;
  }
}
.type-recruit .recruit-main .section-header_content .c-container p {
  margin-top: 3rem;
  color: #fff;
  font-size: clamp(1.2rem, 3.7333333333vw, 2rem);
  line-height: 2;
}
.type-recruit .recruit-main .section-header_content .c-container p .clone {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background: rgba(0, 70, 121, 0.85);
  padding: 0.5rem 1rem;
  mix-blend-mode: multiply;
  white-space: nowrap;
}
.type-recruit .recruit-main .section-header_img::after {
  background: rgba(0, 70, 121, 0.25);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.type-recruit .recruit-main .section-header_img {
  overflow: hidden;
  background: #004679;
}
.type-recruit .recruit-main .section-header_img img {
  transform: scale(1.2);
  opacity: 0;
  transition: transform 3.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s, opacity 3.2s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}
.type-recruit .recruit-main.in-view .section-header_img img {
  transform: scale(1);
  opacity: 1;
}
.type-recruit .home-contentlist_btn {
  width: 20rem;
  height: 5.5rem;
  margin: 3rem auto 0;
  background: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .type-recruit .home-contentlist_btn {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .type-recruit .home-contentlist_btn::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: #0F75BF;
    position: absolute;
    left: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: right top;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  }
}
.type-recruit .home-contentlist_btn:hover::before {
  transform: scaleX(1);
  transform-origin: left top;
}
.type-recruit .home-contentlist_btn a::after {
  border-top: 2px solid #004679;
  border-right: 2px solid #004679;
}
.type-recruit .home-contentlist_btn a:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.type-recruit .home-contentlist_btn a {
  color: #004679;
}
.type-recruit .home-contentlist_btn a:hover {
  color: #fff;
}
.type-recruit .recruit-row figure {
  margin: 3rem 0 0;
}
@media screen and (min-width: 768px) {
  .type-recruit .recruit-row figure {
    margin: 0;
  }
}
.type-recruit .recruit-row figure img {
  margin: auto;
}
@media screen and (min-width: 768px) {
  .type-recruit .recruit-row {
    display: flex;
    margin: 0 -2rem;
  }
  .type-recruit .recruit-row_col8 {
    flex: 1;
    padding: 0 2rem;
  }
  .type-recruit .recruit-row_col4 {
    width: 33%;
    padding: 0 2rem;
  }
}
.type-recruit .recruit-home_title {
  font-size: clamp(2rem, 6.4vw, 2.6rem);
  margin-bottom: 2rem;
  text-align: center;
  color: #fff;
}
.type-recruit .section-homeknow {
  padding: 4rem 0;
}
@media screen and (min-width: 768px) {
  .type-recruit .section-homeknow {
    padding: 8rem 0;
  }
}
.type-recruit .section-homeknow_cont {
  background: #004679;
  color: #fff;
  padding: 3rem 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .type-recruit .section-homeknow_cont {
    width: 50%;
    padding: 3rem 4rem;
  }
}
.type-recruit .section-homeknow_cont::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #04406C;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.type-recruit .section-homeknow_continner {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .type-recruit .section-homeknow_inner {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .type-recruit .section-homeknow_fig {
    width: 50%;
  }
  .type-recruit .section-homeknow_fig figure {
    height: 100%;
  }
  .type-recruit .section-homeknow_fig img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.section-jobintro {
  background: #004679;
  padding: 3rem 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-jobintro {
    padding: 5rem 0;
  }
}
.section-jobintro::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: #04406C;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.section-jobintro_list {
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .section-jobintro_list {
    display: flex;
    flex-wrap: wrap;
  }
}
.section-jobintro_list a {
  text-decoration: none;
  display: block;
  text-align: center;
  transition: opacity 0.7s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
.section-jobintro_list a img {
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}
.section-jobintro_list a:hover {
  opacity: 0.7;
}
.section-jobintro_list a:hover img {
  transform: scale(1.1);
}
.section-jobintro_list figure {
  overflow: hidden;
}
.section-jobintro_list .section-jobintro_name {
  display: inline-block;
  background: #fff;
  text-align: center;
  min-width: 155px;
  padding: 1rem;
  margin: -50% auto 3rem;
  position: relative;
  z-index: 12;
}
.section-jobintro_list .section-jobintro_name .name_yaku {
  font-size: clamp(1.4rem, 3.7333333333vw, 1.6rem);
  font-weight: bold;
  display: block;
}
.section-jobintro_list .section-jobintro_name .name_name {
  font-size: clamp(1.8rem, 4.8vw, 2rem);
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .section-jobintro_item {
    width: 33.33%;
  }
}

.recruit-home_title.home_titleen {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .recruit-home_title.home_titleen {
    margin-bottom: 5rem;
  }
}
.recruit-home_title.home_titleen::after {
  content: attr(data-en);
  font-family: "life", serif;
  font-size: clamp(1.2rem, 3.2vw, 1.4rem);
  color: #fff;
  margin-top: 0.5rem;
  line-height: 1;
  display: block;
}

.section-photogallery {
  margin-top: 5rem;
  background: #E3E3E3;
  position: relative;
  padding: 3rem 0 5rem;
  position: relative;
}
.section-photogallery::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(112, 112, 112, 0.05);
  mix-blend-mode: multiply;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (min-width: 768px) {
  .section-photogallery {
    padding: 6rem 0;
    margin-top: 8rem;
  }
}
.section-photogallery .recruit-home_title.home_titleen {
  color: #707070;
}
.section-photogallery .recruit-home_title.home_titleen::after {
  color: #707070;
}

.section-photo_list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
  position: relative;
  z-index: 10;
}
.section-photo_item {
  width: 50%;
  padding: 0.5rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .section-photo_item {
    width: 20%;
  }
}
.section-photo_item > figure > img {
  border: 1px solid #fff;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.modal__container {
  max-width: 1000px;
  max-height: 100vh;
  overflow-y: auto;
}

@media screen and (max-width: 480px) {
  .modal__container {
    max-height: 90vh;
    max-width: 300px;
  }
}
.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}

.modal__header .modal__close:before {
  content: "✕";
  color: #fff;
  font-size: 3rem;
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}
.modal__content p {
  color: #fff;
  margin-top: 2rem;
}

.modal__btn {
  font-size: 0.875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.section-jobhead {
  position: relative;
}
.section-jobhead_cont {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-jobhead_title {
  display: inline-block;
  color: #fff;
  font-size: clamp(2.4rem, 7.4666666667vw, 3.5rem);
  padding: 0.5rem 2rem 1rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .section-jobhead_title {
    padding: 2rem 4rem 3rem;
  }
}
.section-jobhead_title span {
  position: relative;
  z-index: 10;
}
.section-jobhead_title::before {
  content: "";
  display: inline-block;
  background: rgba(0, 70, 121, 0.67);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
}
.section-jobhead_title span::after {
  content: attr(data-en);
  font-family: "life", serif;
  font-size: clamp(1.2rem, 3.2vw, 1.4rem);
  line-height: 1;
  display: block;
}
.section-jobhead_name {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.5rem 2rem;
}
@media screen and (min-width: 768px) {
  .section-jobhead_name {
    bottom: 10%;
    padding: 1rem 4rem;
  }
}
.section-jobhead_name::before {
  content: "";
  display: inline-block;
  background: rgba(0, 70, 121, 0.67);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.section-jobhead_name .jobhead_job,
.section-jobhead_name .jobhead_name {
  color: #fff;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .section-jobhead_name .jobhead_job,
  .section-jobhead_name .jobhead_name {
    display: inline-block;
  }
}
.section-jobhead_name .jobhead_job {
  font-size: clamp(2rem, 6.4vw, 3rem);
}
@media screen and (min-width: 768px) {
  .section-jobhead_name .jobhead_job {
    margin-right: 2rem;
  }
}
.section-jobhead_name .jobhead_name {
  font-size: clamp(1.8rem, 5.3333333333vw, 2.5rem);
  font-weight: normal;
}

.recruit-cont {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .recruit-cont {
    margin-top: 10rem;
    margin-right: -2rem;
    margin-left: -2rem;
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .recruit-cont:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
.recruit-cont:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .recruit-cont_cont {
    width: 50%;
    padding: 0 2rem;
  }
}
.recruit-cont_title {
  font-size: clamp(1.8rem, 5.3333333333vw, 2.5rem);
  font-weight: bold;
  color: #004679;
}
.recruit-cont_fig {
  margin-top: 3rem;
  overflow: hidden;
}
.recruit-cont_fig img {
  transform: scale(1.2);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .recruit-cont_fig {
    width: 50%;
    padding: 0 2rem;
    margin-top: 0;
  }
}
.recruit-cont_fig.in-view img {
  transform: scale(1);
  opacity: 1;
  transition: all 1.6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}

.support-fig {
  margin-top: 5rem;
}
.support-fig img {
  margin: auto;
}

.support-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
}
@media screen and (min-width: 768px) {
  .support-list {
    margin: 0 -1.5rem;
  }
}
.support-list_item {
  width: 33%;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .support-list_item {
    width: 20%;
    padding: 1.5rem;
  }
}

em.imp {
  font-size: 120%;
  font-weight: bold;
  font-style: normal;
  color: #0F75BF;
}

@media screen and (min-width: 768px) {
  .policy-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -2rem;
  }
}
@media screen and (min-width: 768px) {
  .policy-list_item {
    width: 50%;
    padding: 0 2rem;
  }
}
.policy-list_item a {
  background: #0F75BF;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  display: block;
  padding: 1rem 2rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .policy-list_item a {
    padding: 1.5rem;
    text-align: center;
    margin-top: 4rem;
  }
  .policy-list_item a:hover {
    opacity: 0.8;
  }
}

.policy-content li {
  margin-top: 1em;
}
.policy-content li:first-child {
  margin-top: 0;
}
.policy-content ol ul {
  list-style: disc;
}
.policy-content a {
  color: #0F75BF;
  text-decoration: underline;
}
.policy-content a:hover {
  text-decoration: none;
}
.policy-content dt {
  font-weight: bold;
}
.policy-content ol ol {
  position: relative;
  margin: 1em 0 0 1em;
  padding: 0;
}
.policy-content ol ol li {
  list-style: none;
  list-style-position: outside;
  margin-top: 1em;
  padding-left: 1.25em;
}
.policy-content ol ol li:first-child {
  margin-top: 0;
}
.policy-content ol ol li span {
  position: absolute;
  left: 0;
  margin: 0;
}
.policy-content .policy-indent {
  text-indent: -1.6em;
  padding-left: 2em;
  margin-top: 1em;
}
.policy-content .policy-indent:first-child {
  margin-top: 0;
}
.policy-content .policy-indent2 {
  margin-top: 1em;
  padding-left: 1em;
}
.policy-content .border-imp {
  border: 1px solid #c00;
  padding: 2rem;
  margin-top: 2em;
}
.policy-content .policy-small {
  margin-top: 5rem;
}
.policy-content .policy-small_item {
  margin-top: 1em;
  text-indent: -2.5em;
  padding-left: 2.5em;
}

.dot-wrap {
  border: 1px dashed #707070;
  padding: 1.5rem;
  margin-top: 5rem;
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .dot-wrap {
    padding: 2rem;
    display: flex;
    align-items: center;
  }
  .dot-wrap figure {
    width: 200px;
  }
  .dot-wrap_info {
    flex: 1;
    padding-right: 2rem;
  }
}
.dot-wrap img {
  max-width: 60%;
  margin: 2rem auto 0;
}
@media screen and (min-width: 768px) {
  .dot-wrap img {
    width: 158px;
    max-width: 100%;
    margin: auto;
  }
}/*# sourceMappingURL=main.css.map */