﻿@charset "UTF-8";
/*
layout
*/
/*
z-index
*/
/*
color
*/
/*
pxをvwに変換

ウインドウ幅1400pxに対して要素幅50pxの場合
getvw(50,1400)となる
*/
/*
メディアクエリ
記述例
body{
  @include mixin.ms-w('max',1200){
    background-color: red;
  }
}
*/
/*
WEB FONT
*/
/*
ICON FONT
*/
/*
mixin
*/
/*
*
アコーディオン
*
*/
/************************************************************
SCREEN ALL
*************************************************************/
button.accordion-trigger {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit;
  cursor: pointer;
}

.accordion .accordion-contents {
  display: grid;
  grid-template-rows: 1fr;
  -webkit-transition: grid-template-rows 0.2s ease-out;
  transition: grid-template-rows 0.2s ease-out;
  transition: grid-template-rows 0.2s ease-out, -ms-grid-rows 0.2s ease-out;
}
.accordion .accordion-contents[hidden] {
  display: grid;
  grid-template-rows: 0fr;
}
.accordion .accordion-contents .accordion-contents-inner {
  overflow: hidden;
}

/************************************************************
SCREEN SP
*************************************************************/
/************************************************************
SCREEN PC
*************************************************************/
/************************************************************
SCREEN RESPONSIVE
*************************************************************/
.mv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width:768px) {
  .mv {
    height: 480px;
  }
}
@media only screen and (max-width:767px) {
  .mv {
    height: 325px;
  }
}
@media only screen and (min-width:768px) {
  .mv {
    padding-top: 153px;
  }
}
@media only screen and (max-width:767px) {
  .mv {
    padding-top: 90px;
  }
}
@media only screen and (min-width:768px) {
  .mv {
    padding-bottom: 10px;
  }
}
@media only screen and (max-width:767px) {
  .mv {
    padding-bottom: 10px;
  }
}
.mv-inner {
  position: relative;
}
@media only screen and (max-width:767px) {
  .mv-inner {
    padding-right: 50px;
  }
}
.mv-title {
  color: white;
}
.mv-title-en {
  font-family: "Barlow", sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2em;
}
@media only screen and (min-width:768px) {
  .mv-title-en {
    font-size: 80px;
  }
}
@media only screen and (max-width:767px) {
  .mv-title-en {
    font-size: 40px;
  }
}
.mv-title-ja {
  font-weight: 500;
  line-height: 1.7em;
}
@media only screen and (min-width:768px) {
  .mv-title-ja {
    margin-top: 7px;
  }
}
@media only screen and (max-width:767px) {
  .mv-title-ja {
    margin-top: 10px;
  }
}
@media only screen and (min-width:768px) {
  .mv-title-ja {
    font-size: 20px;
  }
}
@media only screen and (max-width:767px) {
  .mv-title-ja {
    font-size: 14px;
  }
}
.mv-pic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv-pic img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.mv .common-breadcrumbs {
  margin-top: auto;
  position: relative;
  /*@include media.resp(margin-top,-100px,-80px);*/
  color: white;
}

/************************************************************
SCREEN SP
*************************************************************/
/************************************************************
SCREEN PC
*************************************************************/
/************************************************************
SCREEN RESPONSIVE
*************************************************************/
@media only screen and (min-width:768px) {
  .mv {
    padding-bottom: 54px;
  }
}
@media only screen and (max-width:767px) {
  .mv {
    padding-bottom: 35px;
  }
}

/************************************************************
SCREEN SP
*************************************************************/
/************************************************************
SCREEN PC
*************************************************************/
/************************************************************
SCREEN RESPONSIVE
*************************************************************/
.top-nav {
  position: relative;
}
@media only screen and (min-width:768px) {
  .top-nav {
    margin-top: -32px;
  }
}
@media only screen and (max-width:767px) {
  .top-nav {
    margin-top: -25px;
  }
}
.top-nav-inner {
  background-color: white;
  position: relative;
}
@media only screen and (min-width:768px) {
  .top-nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 64px;
    border-radius: 40px;
  }
}
@media only screen and (max-width:767px) {
  .top-nav-inner {
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
    border-radius: 25px;
  }
}
.top-nav button.accordion-trigger {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit;
}
@media only screen and (min-width:768px) {
  .top-nav button.accordion-trigger {
    display: none;
  }
}
@media only screen and (max-width:767px) {
  .top-nav button.accordion-trigger {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
  }
}
.top-nav button.accordion-trigger[aria-expanded=true] + .top-nav-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.top-nav button.accordion-trigger[aria-expanded=true] + .top-nav-icon::after {
  opacity: 0;
}
@media only screen and (min-width:768px) {
  .top-nav .accordion-contents {
    height: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-template-rows: 1fr;
  }
  .top-nav .accordion-contents[hidden] {
    grid-template-rows: 1fr;
  }
}
.top-nav-title {
  font-weight: 600;
}
@media only screen and (min-width:768px) {
  .top-nav-title {
    font-size: 20px;
  }
}
@media only screen and (max-width:767px) {
  .top-nav-title {
    font-size: 16px;
  }
}
@media only screen and (min-width:768px) {
  .top-nav-title {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 50px;
  }
}
@media only screen and (max-width:767px) {
  .top-nav-title {
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 20px;
  }
}
@media only screen and (min-width:768px) {
  .top-nav-links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 50px;
  }
}
@media only screen and (max-width:767px) {
  .top-nav-links ul {
    padding: 10px 0 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.top-nav-links ul li {
  letter-spacing: 0.04em;
  position: relative;
  display: inline-block;
}
@media only screen and (min-width:768px) {
  .top-nav-links ul li {
    font-size: 16px;
  }
}
@media only screen and (max-width:767px) {
  .top-nav-links ul li {
    font-size: 14px;
  }
}
@media only screen and (min-width:768px) {
  .top-nav-links ul li {
    padding: 0 10px;
  }
}
.top-nav-links ul li.-current {
  color: #004F99;
  font-weight: 600;
}
.top-nav-links ul li.-current::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #004F99;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width:767px) {
  .top-nav-links ul li.-current::after {
    display: none;
  }
}
@media only screen and (max-width:767px) {
  .top-nav-links ul li.-current a {
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}
.top-nav-links ul li a {
  white-space: nowrap;
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (min-width:768px) {
  .top-nav-links ul li a {
    padding: 10px 0;
  }
}
@media only screen and (max-width:767px) {
  .top-nav-links ul li a {
    padding: 10px 0;
  }
}
@media (hover: hover) {
  .top-nav-links ul li a:hover {
    color: #004F99;
  }
}
.top-nav-icon {
  pointer-events: none;
  position: absolute;
  top: 18px;
  right: 24px;
  width: 14px;
  height: 14px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (min-width:768px) {
  .top-nav-icon {
    display: none;
  }
}
.top-nav-icon::before, .top-nav-icon::after {
  content: "";
  display: block;
  background-color: #004F99;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.top-nav-icon::before {
  width: 14px;
  height: 2px;
  position: absolute;
  top: 6px;
  left: 0;
}
.top-nav-icon::after {
  width: 2px;
  height: 14px;
  position: absolute;
  top: 0;
  left: 6px;
}

/************************************************************
SCREEN SP
*************************************************************/
/************************************************************
SCREEN PC
*************************************************************/
/************************************************************
SCREEN RESPONSIVE
*************************************************************/
@media only screen and (min-width:768px) {
  .purpose {
    padding-top: 120px;
  }
}
@media only screen and (max-width:767px) {
  .purpose {
    padding-top: 60px;
  }
}
@media only screen and (min-width:768px) {
  .purpose {
    padding-bottom: 190px;
  }
}
@media only screen and (max-width:767px) {
  .purpose {
    padding-bottom: 60px;
  }
}
.purpose-title {
  text-align: center;
}
.purpose-title-en {
  font-weight: 600;
  color: #004F99;
  line-height: 1.5em;
}
@media only screen and (min-width:768px) {
  .purpose-title-en {
    font-size: 20px;
  }
}
@media only screen and (max-width:767px) {
  .purpose-title-en {
    font-size: 14px;
  }
}
.purpose-title-ja {
  font-weight: 600;
  line-height: 1.5em;
}
@media only screen and (min-width:768px) {
  .purpose-title-ja {
    margin-top: 7px;
  }
}
@media only screen and (max-width:767px) {
  .purpose-title-ja {
    margin-top: 10px;
  }
}
@media only screen and (min-width:768px) {
  .purpose-title-ja {
    font-size: 50px;
  }
}
@media only screen and (max-width:767px) {
  .purpose-title-ja {
    font-size: 24px;
  }
}
.purpose-top-txt {
  line-height: 2em;
}
@media only screen and (min-width:768px) {
  .purpose-top-txt {
    margin-top: 39px;
  }
}
@media only screen and (max-width:767px) {
  .purpose-top-txt {
    margin-top: 27px;
  }
}
@media only screen and (min-width:768px) {
  .purpose-top-txt {
    font-size: 18px;
  }
}
@media only screen and (max-width:767px) {
  .purpose-top-txt {
    font-size: 14px;
  }
}
@media only screen and (min-width:768px) {
  .purpose-top-txt {
    text-align: center;
  }
}

/************************************************************
SCREEN SP
*************************************************************/
/************************************************************
SCREEN PC
*************************************************************/
/************************************************************
SCREEN RESPONSIVE
*************************************************************/
@media only screen and (min-width:768px) {
  .values {
    padding-top: 115px;
  }
}
@media only screen and (max-width:767px) {
  .values {
    padding-top: 50px;
  }
}
.values-title {
  font-weight: 600;
  text-align: center;
  line-height: 1.7em;
}
@media only screen and (min-width:768px) {
  .values-title {
    font-size: 36px;
  }
}
@media only screen and (max-width:767px) {
  .values-title {
    font-size: 20px;
  }
}
@media only screen and (min-width:768px) {
  .values-boxes {
    margin-top: 50px;
  }
}
@media only screen and (max-width:767px) {
  .values-boxes {
    margin-top: 30px;
  }
}
@media only screen and (min-width:768px) {
  .values-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875%;
  }
}
@media only screen and (max-width:767px) {
  .values-boxes {
    width: 89.7435897436vw;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.values-box-pic-wrapper {
  position: relative;
}
.values-box-name {
  background-color: white;
  width: 65%;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 1px);
          transform: translate(-50%, 1px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #004F99;
  font-weight: 600;
}
@media only screen and (min-width:768px) {
  .values-box-name {
    height: 96px;
  }
}
@media only screen and (max-width:767px) {
  .values-box-name {
    height: 60px;
  }
}
@media only screen and (min-width:768px) {
  .values-box-name {
    font-size: 26px;
  }
}
@media only screen and (max-width:767px) {
  .values-box-name {
    font-size: 20px;
  }
}
@media only screen and (min-width:768px) {
  .values-box-txts {
    padding-top: 30px;
  }
}
@media only screen and (max-width:767px) {
  .values-box-txts {
    padding-top: 20px;
  }
}
.values-box-txt-01 {
  font-weight: 600;
  line-height: 1.7em;
  text-align: center;
}
@media only screen and (min-width:768px) {
  .values-box-txt-01 {
    font-size: 20px;
  }
}
@media only screen and (max-width:767px) {
  .values-box-txt-01 {
    font-size: 18px;
  }
}
.values-box-txt-02 {
  line-height: 1.7em;
}
@media only screen and (min-width:768px) {
  .values-box-txt-02 {
    margin-top: 20px;
  }
}
@media only screen and (max-width:767px) {
  .values-box-txt-02 {
    margin-top: 10px;
  }
}
@media only screen and (min-width:768px) {
  .values-box-txt-02 {
    font-size: 16px;
  }
}
@media only screen and (max-width:767px) {
  .values-box-txt-02 {
    font-size: 14px;
  }
}
@media only screen and (min-width:768px) {
  .values-box-txt-02 {
    width: 75%;
    min-width: 380px;
    margin-inline: auto;
  }
}

/************************************************************
SCREEN SP
*************************************************************/
/************************************************************
SCREEN PC
*************************************************************/
/************************************************************
SCREEN RESPONSIVE
*************************************************************/
@media only screen and (min-width:768px) {
  .csr {
    padding-top: 90px;
  }
}
@media only screen and (max-width:767px) {
  .csr {
    padding-top: 55px;
  }
}
.csr-title {
  font-weight: 600;
  text-align: center;
  line-height: 1.7em;
}
@media only screen and (min-width:768px) {
  .csr-title {
    font-size: 36px;
  }
}
@media only screen and (max-width:767px) {
  .csr-title {
    font-size: 20px;
  }
}
.csr-top-txt {
  line-height: 2em;
}
@media only screen and (min-width:768px) {
  .csr-top-txt {
    margin-top: 34px;
  }
}
@media only screen and (max-width:767px) {
  .csr-top-txt {
    margin-top: 26px;
  }
}
@media only screen and (min-width:768px) {
  .csr-top-txt {
    font-size: 18px;
  }
}
@media only screen and (max-width:767px) {
  .csr-top-txt {
    font-size: 14px;
  }
}
@media only screen and (min-width:768px) {
  .csr-top-txt {
    text-align: center;
  }
}
@media only screen and (min-width:768px) {
  .csr-boxes {
    margin-top: 64px;
  }
}
@media only screen and (max-width:767px) {
  .csr-boxes {
    margin-top: 40px;
  }
}
@media only screen and (min-width:768px) {
  .csr-boxes {
    width: 1056px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media only screen and (max-width:767px) {
  .csr-boxes {
    width: 89.7435897436vw;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
@media only screen and (min-width:768px) {
  .csr-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (min-width:768px) {
  .csr-box-txts {
    padding-top: 30px;
  }
}
@media only screen and (max-width:767px) {
  .csr-box-txts {
    padding-top: 10px;
  }
}
.csr-box-txt-01 {
  font-weight: 600;
  line-height: 1.7em;
  text-align: center;
}
@media only screen and (min-width:768px) {
  .csr-box-txt-01 {
    font-size: 20px;
  }
}
@media only screen and (max-width:767px) {
  .csr-box-txt-01 {
    font-size: 18px;
  }
}
.csr-box-txt-02 {
  line-height: 1.7em;
}
@media only screen and (min-width:768px) {
  .csr-box-txt-02 {
    margin-top: 20px;
  }
}
@media only screen and (max-width:767px) {
  .csr-box-txt-02 {
    margin-top: 10px;
  }
}
@media only screen and (min-width:768px) {
  .csr-box-txt-02 {
    font-size: 16px;
  }
}
@media only screen and (max-width:767px) {
  .csr-box-txt-02 {
    font-size: 14px;
  }
}
@media only screen and (min-width:768px) {
  .csr-box-txt-02 {
    width: 75%;
    min-width: 380px;
    margin-inline: auto;
    padding-bottom: 26px;
  }
}
.csr-box-link {
  margin-inline: auto;
}
@media only screen and (min-width:768px) {
  .csr-box-link {
    margin-top: auto;
  }
}
@media only screen and (max-width:767px) {
  .csr-box-link {
    margin-top: 32px;
  }
}
@media only screen and (max-width:767px) {
  .csr-box-link {
    width: 100%;
    max-width: 450px;
  }
}

/************************************************************
SCREEN SP
*************************************************************/
/************************************************************
SCREEN PC
*************************************************************/
/************************************************************
SCREEN RESPONSIVE
*************************************************************/
@media only screen and (min-width:768px) {
  .anchor-nav {
    margin-top: 64px;
    margin-inline: auto;
    width: 895px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media only screen and (max-width:767px) {
  .anchor-nav {
    margin-top: 30px;
    margin-inline: auto;
    width: 89.7435897436vw;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(6px, 2.5641025641vw, 14px);
  }
}
.anchor-nav-btn {
  border: 1px solid #004F99;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (min-width:768px) {
  .anchor-nav-btn {
    height: 64px;
  }
}
@media only screen and (max-width:767px) {
  .anchor-nav-btn {
    height: 40px;
  }
}
@media only screen and (min-width:768px) {
  .anchor-nav-btn {
    font-size: 18px;
  }
}
@media only screen and (max-width:767px) {
  .anchor-nav-btn {
    font-size: 12px;
  }
}
@media only screen and (min-width:768px) {
  .anchor-nav-btn {
    letter-spacing: 0.04em;
  }
}
@media only screen and (max-width:767px) {
  .anchor-nav-btn {
    letter-spacing: 0.02em;
  }
}
.anchor-nav-btn::after {
  content: "\ea01";
  display: inline-block;
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #004F99;
  position: absolute;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (min-width:768px) {
  .anchor-nav-btn::after {
    font-size: 13px;
  }
}
@media only screen and (max-width:767px) {
  .anchor-nav-btn::after {
    font-size: 11px;
  }
}
@media only screen and (min-width:768px) {
  .anchor-nav-btn::after {
    bottom: 10px;
    right: 10px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media only screen and (max-width:767px) {
  .anchor-nav-btn::after {
    right: 2%;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
}
@media (hover: hover) {
  .anchor-nav-btn:hover {
    -webkit-box-shadow: 0 0 0 2px #004F99 inset;
            box-shadow: 0 0 0 2px #004F99 inset;
  }
}
@media only screen and (hover: hover) and (min-width:768px) {
  .anchor-nav-btn:hover::after {
    bottom: 7px;
  }
}
@media only screen and (hover: hover) and (max-width:767px) {
  .anchor-nav-btn:hover::after {
    top: calc(50% + 3px);
  }
}

/************************************************************
SCREEN SP
*************************************************************/
/************************************************************
SCREEN PC
*************************************************************/
/************************************************************
SCREEN RESPONSIVE
*************************************************************/
@media only screen and (min-width:768px) {
  .recruitinfo + .entry {
    padding-top: 165px;
  }
}
@media only screen and (max-width:767px) {
  .recruitinfo + .entry {
    padding-top: 60px;
  }
}

.entry {
  margin-bottom: 60px;
}
@media only screen and (min-width:768px) {
  .entry {
    padding-top: 116px;
  }
}
@media only screen and (max-width:767px) {
  .entry {
    padding-top: 60px;
  }
}
@media screen and (min-width:768px) {
  .entry {
    margin-bottom: 197px;
    padding-top: 192px;
  }
}
@media only screen and (min-width:768px) {
  .entry-boxes {
    margin-top: 60px;
  }
}
@media only screen and (max-width:767px) {
  .entry-boxes {
    margin-top: 30px;
  }
}
@media only screen and (min-width:768px) {
  .entry-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.entry-box {
  display: block;
  color: #004F99;
  border: 4px solid #004F99;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width:768px) {
  .entry-box {
    height: 190px;
  }
}
@media only screen and (max-width:767px) {
  .entry-box {
    height: 105px;
  }
}
@media only screen and (min-width:768px) {
  .entry-box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width:767px) {
  .entry-box {
    padding-left: 10.2564102564vw;
  }
}
.entry-box:nth-child(1) {
  background-color: #004F99;
  color: white;
  height: auto;
  padding: 20px 10.2564102564vw;
}
.entry-box-txt-01 {
  font-weight: 600;
}
@media only screen and (min-width:768px) {
  .entry-box-txt-01 {
    font-size: 26px;
  }
}
@media only screen and (max-width:767px) {
  .entry-box-txt-01 {
    font-size: 20px;
  }
}
.entry-box-txt-02 {
  font-weight: 500;
}
@media only screen and (min-width:768px) {
  .entry-box-txt-02 {
    font-size: 18px;
  }
}
@media only screen and (max-width:767px) {
  .entry-box-txt-02 {
    font-size: 16px;
  }
}
@media only screen and (min-width:768px) {
  .entry-box-txt-02 {
    line-height: 2em;
  }
}
@media only screen and (max-width:767px) {
  .entry-box-txt-02 {
    line-height: 1.7em;
  }
}
@media only screen and (min-width:768px) {
  .entry-box-txt-02 {
    white-space: nowrap;
  }
}
.entry-box-txt-03 {
  font-weight: 500;
}
@media only screen and (min-width:768px) {
  .entry-box-txt-03 {
    font-size: 24px;
  }
}
@media only screen and (max-width:767px) {
  .entry-box-txt-03 {
    font-size: 20px;
  }
}
@media only screen and (min-width:768px) {
  .entry-box-txt-03 {
    line-height: 2em;
  }
}
@media only screen and (max-width:767px) {
  .entry-box-txt-03 {
    line-height: 1.7em;
  }
}
@media only screen and (min-width:768px) {
  .entry-box .entry-box-txt-03 + .entry-box-txt-02 {
    margin-top: 13px;
  }
}
@media only screen and (max-width:767px) {
  .entry-box .entry-box-txt-03 + .entry-box-txt-02 {
    margin-top: 7px;
  }
}
.entry-box .common-link-circle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width:768px) {
  .entry-box .common-link-circle {
    right: 30px;
  }
}
@media only screen and (max-width:767px) {
  .entry-box .common-link-circle {
    right: 5.1282051282vw;
  }
}

.entry-box picture {
  display: block;
}
.entry-box picture img {
  width: 100%;
  height: auto;
}

/************************************************************
SCREEN SP
*************************************************************/
/************************************************************
SCREEN PC
*************************************************************/
@media screen and (min-width:768px) {
  body .pc-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sp-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.pc-only {
  display: none;
}
@media screen and (min-width:768px) {
  .pc-only {
    display: block;
  }
}

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

:root {
  --seiwa_blue: #004F99;
  --seiwa_green: #008A3B;
}

/************************************************************
職種紹介
*************************************************************/
.occupation {
  margin-bottom: 30px;
}
@media screen and (min-width:768px) {
  .occupation {
    margin-bottom: 78px;
  }
}
.occupation .common-contents-box {
  margin-block: 60px 0px;
}
@media screen and (min-width:768px) {
  .occupation .common-contents-box {
    margin-block: 64px 66px;
  }
}
.occupation .common-contents-box p.occupation-intro {
  text-align: center;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: bold;
}
.occupation .occupation-wrap {
  margin-top: 70px;
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap {
    max-width: 1088px;
    margin-inline: auto;
    margin-top: 0;
  }
}
.occupation .occupation-wrap .occupation-boxes {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.occupation .occupation-wrap .occupation-boxes:not(:last-of-type) {
  margin-bottom: 10px;
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap .occupation-boxes:not(:last-of-type) {
    margin-bottom: 48px;
  }
}
.occupation .occupation-wrap .occupation-boxes > dt {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  border: 1px solid #66B3C2;
  width: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  letter-spacing: 0.05em;
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap .occupation-boxes > dt {
    width: 64px;
    letter-spacing: 0.8em;
  }
}
.occupation .occupation-wrap .occupation-boxes > dd {
  width: 88%;
}
.occupation .occupation-wrap .occupation-boxes.occupation-wrap02 > dt {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap .occupation-boxes.occupation-wrap02 > dt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    letter-spacing: 0.4em;
  }
}
.occupation .occupation-wrap .occupation-boxes.occupation-wrap02 > dt span {
  display: inline;
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap .occupation-boxes.occupation-wrap02 > dt span {
    display: block;
  }
}
.occupation .occupation-wrap .occupation-boxes.occupation-wrap02 .occupation-box dt {
  background-color: #3380A5;
}
.occupation .occupation-wrap .occupation-boxes.occupation-wrap02 .occupation-box dd {
  border: 1px solid #3380A5;
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap .occupation-boxes.occupation-wrap03 > dt {
    letter-spacing: 0.4em;
  }
}
.occupation .occupation-wrap .occupation-boxes.occupation-wrap03 .occupation-box dt {
  background-color: var(--seiwa_blue, #004F99);
}
.occupation .occupation-wrap .occupation-boxes.occupation-wrap03 .occupation-box dd {
  border: 1px solid var(--seiwa_blue, #004F99);
}
.occupation .occupation-wrap .occupation-box:not(:last-of-type) {
  margin-bottom: 10px;
  position: relative;
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap .occupation-box:not(:last-of-type) {
    margin-bottom: 28px;
  }
}
.occupation .occupation-wrap .occupation-box:not(:last-of-type)::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 10px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #66b3c2;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap .occupation-box:not(:last-of-type)::before {
    width: 32px;
    height: 27px;
    bottom: -26px;
  }
}
.occupation .occupation-wrap .occupation-box dt {
  color: #fff;
  line-height: 3;
  background-color: #66b3c2;
  position: relative;
  padding: 0 20px;
  font-size: 15px;
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap .occupation-box dt {
    text-align: center;
    padding: 0;
    font-size: 16px;
    line-height: 4;
  }
}
.occupation .occupation-wrap .occupation-box dt a {
  position: absolute;
  display: block;
  font-size: 10px;
  right: 40px;
  top: 50%;
  font-weight: 500;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap .occupation-box dt a {
    font-size: 12px;
    right: 64px;
  }
}
.occupation .occupation-wrap .occupation-box dt a:after {
  content: "\ea01";
  display: inline-block;
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  position: absolute;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  border-radius: 16px;
  line-height: 20px;
  position: absolute;
  top: 50%;
  right: -28px;
  -webkit-transform: translate(0px, -50%);
          transform: translate(0px, -50%);
  text-align: center;
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap .occupation-box dt a:after {
    width: 32px;
    height: 32px;
    right: -42px;
    line-height: 30px;
  }
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap .occupation-box dt a:hover:after {
    right: -46px;
  }
}
.occupation .occupation-wrap .occupation-box dd {
  padding: 16px;
  border: 1px solid #66b3c2;
}
.occupation .occupation-wrap .occupation-box dd picture {
  width: 60px;
  height: 60px;
  display: block;
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap .occupation-box dd picture {
    width: 80px;
    height: 80px;
  }
}
.occupation .occupation-wrap .occupation-box dd picture img {
  width: 100%;
  height: auto;
}
.occupation .occupation-wrap .occupation-box dd .occupation-box-text {
  width: calc(100% - 80px);
  padding: 4px 0 4px 32px;
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap .occupation-box dd .occupation-box-text {
    font-size: 18px;
  }
}
.occupation .occupation-wrap .occupation-box dd h3 {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.77;
  margin-bottom: 8px;
  padding-left: 13px;
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap .occupation-box dd h3 {
    font-size: 18px;
    padding-left: 0;
  }
}
.occupation .occupation-wrap .occupation-box dd p {
  font-size: 14px;
  line-height: 1.7;
  padding-top: 10px;
}
@media screen and (min-width:768px) {
  .occupation .occupation-wrap .occupation-box dd p {
    font-size: 16px;
    line-height: 2;
    padding-top: 0px;
  }
}
.occupation .occupation-wrap .occupation-box dd .sp-flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/************************************************************
求める人物像
*************************************************************/
.ideal {
  padding-top: 30px;
}
@media screen and (min-width:768px) {
  .ideal {
    padding-top: 30px;
    padding-bottom: 68px;
  }
}
.ideal-title {
  font-weight: 600;
  text-align: center;
  margin-bottom: 35px;
}
@media only screen and (min-width:768px) {
  .ideal-title {
    font-size: 26px;
  }
}
@media only screen and (max-width:767px) {
  .ideal-title {
    font-size: 20px;
  }
}
@media screen and (min-width:768px) {
  .ideal-title {
    margin-bottom: 68px;
  }
}
.ideal .ideal-boxes {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width:768px) {
  .ideal .ideal-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875%;
  }
}
.ideal .ideal-box-pic {
  position: relative;
}
@media screen and (min-width:768px) {
  .ideal .ideal-box-pic:hover picture img {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}
.ideal .ideal-box-pic picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ideal .ideal-box-pic picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.75s;
  transition: -webkit-transform 0.75s;
  transition: transform 0.75s;
  transition: transform 0.75s, -webkit-transform 0.75s;
  will-change: transform;
}
.ideal .ideal-box-name {
  position: absolute;
  bottom: 0;
  width: 234px;
  padding: 20px 0;
  background-color: #fff;
  font-size: 18px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width:768px) {
  .ideal .ideal-box-name {
    width: 257px;
    padding: 30px 0;
  }
}
.ideal .ideal-boxes .box-wrapper dt {
  background: var(--seiwa_blue, #004F99);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}
@media screen and (min-width:768px) {
  .ideal .ideal-boxes .box-wrapper dt {
    font-size: 16px;
    padding: 3px 0 2px;
  }
}
.ideal .ideal-boxes .box-wrapper dd {
  padding: 10px;
  font-size: 12px;
  line-height: 2;
  border: 1px solid var(--seiwa_blue, #004F99);
}
@media screen and (min-width:768px) {
  .ideal .ideal-boxes .box-wrapper dd {
    padding: 16px;
    font-size: 16px;
  }
}
@media screen and (min-width:768px) {
  .ideal .ideal-boxes .box-wrapper dl:nth-of-type(1) dd {
    min-height: 162px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (min-width:768px) {
  .ideal .ideal-boxes .box-wrapper dl:nth-of-type(2) dd {
    min-height: 224px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/************************************************************
モーダル周り
*************************************************************/
/* これが無いとモーダルウィンドウ表示の際に余白が出る */
/* モーダル全体(背景＋本体) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 900;
}

/* モーダル背景 */
.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: #666666;
}

/* 閉じるボタン */
.close-button-wrap {
  position: absolute;
  top: -64px;
  right: 0;
  width: 44px;
  height: 44px;
  display: block;
}
@media screen and (max-width:767px) {
  .close-button-wrap {
    top: auto;
    bottom: -64px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.close-button {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 0;
  background: none;
  cursor: pointer;
}

.close-button span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: inline-block;
  position: absolute;
  left: calc(50% - 10px);
  top: 50%;
  border-radius: 4px;
}

.close-button span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(-1px, -1px);
          transform: rotate(45deg) translate(-1px, -1px);
}

.close-button span:nth-child(2) {
  -webkit-transform: rotate(-45deg) translate(1px, -1px);
          transform: rotate(-45deg) translate(1px, -1px);
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

/* モーダル本体 */
.modal-content-wrap {
  position: absolute;
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 21vw);
  max-width: 1088px;
  background: white;
  height: 61vh;
}
@media screen and (min-width:768px) {
  .modal-content-wrap {
    width: calc(100% - 240px);
    height: 87%;
    top: 50%;
  }
}

.modal-content {
  overflow-y: scroll; /* はみ出た部分はスクロールさせる */
  width: 100%;
  height: 100%;
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content;
  position: relative;
}

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

body.fixed .header-logo {
  position: fixed;
}
@media screen and (min-width:768px) {
  body.fixed .header-logo {
    width: 250px;
    left: 20px;
    top: 20px;
  }
}

/************************************************************
モーダル内容
*************************************************************/
.modal-inner .content {
  width: 88.23%;
  margin-inline: auto;
}

.modal-inner .mv-text {
  padding: 30px 0 10px;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-weight: bold;
}
@media screen and (min-width:768px) {
  .modal-inner .mv-text {
    font-size: 20px;
    padding: 54px 0 6px;
  }
}
.modal-inner .content h4 {
  font-size: 14px;
  color: #fff;
  text-align: center;
  background: var(--seiwa_blue, #004F99);
  padding: 16px 0;
  margin-block: 20px;
  padding: 15px 0;
}
@media screen and (min-width:768px) {
  .modal-inner .content h4 {
    font-size: 16px;
    margin-block: 32px;
    padding: 16px 0;
  }
}
.modal-inner b, .modal-inner p {
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 12px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .modal-inner b, .modal-inner p {
    font-size: 16px;
    width: 93.1%;
  }
}
.modal-inner picture {
  display: block;
}
.modal-inner .modal-mv {
  position: relative;
}
.modal-inner .modal-mv h3 {
  position: absolute;
  padding: 11px 15px;
  bottom: 10px;
  left: 10px;
  background: var(--seiwa_blue, #004F99);
  color: #fff;
  font-size: 16px;
}
.modal-inner .modal-mv h3 span {
  font-size: 14px;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-mv h3 {
    bottom: 20px;
    left: 20px;
    padding: 24px 50px;
    font-size: 24px;
  }
  .modal-inner .modal-mv h3 span {
    font-size: 20px;
  }
}
.modal-inner .modal-occupation h4 {
  margin-block: 20px;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-occupation h4 {
    margin-block: 32px 21px;
  }
}
.modal-inner .modal-occupation p {
  text-align: center;
  color: var(--seiwa_blue, #004F99);
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 14px;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-occupation p {
    font-size: 16px;
  }
}
.modal-inner .modal-occupation picture {
  width: 93.33%;
  margin-inline: auto;
}
.modal-inner .modal-occupation.content04 picture {
  width: 93.33%;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-occupation.content04 picture {
    width: 62.7%;
  }
}
.modal-inner .modal-occupation.content05 picture {
  width: 93.33%;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-occupation.content05 picture {
    width: 71.4%;
  }
}
.modal-inner .modal-occupation.content07 picture {
  width: 93.33%;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-occupation.content07 picture {
    width: 52.1%;
  }
}
.modal-inner .modal-people li {
  background-color: #EBF2FA;
  font-size: 3.07vw;
  width: auto;
  padding: 1.8vw;
  border: 1px solid var(--seiwa_blue, #004F99);
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
}
.modal-inner .modal-people li:not(:nth-last-of-type(1)) {
  margin-bottom: 10px;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-people li {
    width: 31.4%;
    font-size: min(0.95vw, 14px);
    padding: min(0.95vw, 11px) 0;
  }
  .modal-inner .modal-people li:not(:nth-last-of-type(1)) {
    margin-bottom: 0px;
  }
}
@media screen and (min-width:768px) {
  .modal-inner .modal-people li.small {
    font-size: min(0.8vw, 14px);
  }
}
.modal-inner .modal-people ul {
  width: 93.33%;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-people.content07 ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.6%;
  }
}
@media screen and (min-width:768px) {
  .modal-inner .modal-people.content07 li {
    width: auto;
    padding: min(0.95vw, 11px) 50px;
  }
}
.modal-inner .modal-schedule .schedule-graph {
  width: 64.48%;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-schedule .schedule-graph {
    width: 83.33%;
  }
}
.modal-inner .modal-schedule.content02 .schedule-graph {
  width: 74.5%;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-schedule.content02 .schedule-graph {
    width: 83.33%;
  }
}
.modal-inner .modal-schedule.content03 .schedule-graph {
  width: 65%;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-schedule.content03 .schedule-graph {
    width: 83.33%;
  }
}
.modal-inner .modal-schedule.content06 .schedule-graph {
  width: 79%;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-schedule.content06 .schedule-graph {
    width: 83.33%;
  }
}
.modal-inner .modal-schedule.content07 .schedule-graph {
  width: 70%;
  margin-inline: auto;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-schedule.content07 .schedule-graph {
    width: 83.33%;
  }
}
.modal-inner .modal-employee {
  width: 84.365%;
  margin-inline: auto;
  margin-block: 60px 42px;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-employee {
    margin-block: 50px 64px;
  }
}
@media screen and (min-width:768px) {
  .modal-inner .modal-employee picture.flex-inner {
    max-width: 384px;
    width: 40%;
  }
}
@media screen and (min-width:768px) {
  .modal-inner .modal-employee div.flex-inner {
    width: 54%;
  }
}
.modal-inner .modal-employee span {
  display: block;
  font-size: 10px;
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-employee span {
    margin-top: 0px;
    font-size: 12px;
  }
}
.modal-inner .modal-employee h4 {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: normal;
  margin-bottom: 16px;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-employee h4 {
    font-size: 20px;
    margin-bottom: 22px;
  }
}
.modal-inner .modal-employee b {
  display: block;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  font-size: 14px;
  width: 100%;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-employee b {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.modal-inner .modal-employee p {
  line-height: 1.7;
  letter-spacing: 0.04em;
  font-size: 12px;
  width: 100%;
}
@media screen and (min-width:768px) {
  .modal-inner .modal-employee p {
    font-size: 14px;
  }
}
.modal-inner .entry-link-boxes {
  margin-top: 42px;
  margin-inline: auto;
  width: 87%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding-bottom: 40px;
}
@media screen and (min-width:768px) {
  .modal-inner .entry-link-boxes {
    margin-top: 64px;
    margin-inline: auto;
    width: 84.365%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5.3%;
    padding-bottom: 68px;
  }
}
.modal-inner .entry-link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 7.1%;
  font-weight: bold;
  padding: 29px 0 29px 20px;
  position: relative;
}
@media screen and (min-width:768px) {
  .modal-inner .entry-link-box {
    max-width: 448px;
    padding: 31px 0 31px 10%;
  }
}
.modal-inner .entry-link-box.-blue-border .common-link-circle {
  border: 1px solid var(--seiwa_blue, #004F99);
  background-color: #fff;
}
.modal-inner .entry-link-box.-green-border .common-link-circle {
  border: 1px solid var(--seiwa_green, #008A3B);
  background-color: #fff;
}
.modal-inner .entry-link-box.-green-border .common-link-circle::before {
  background-color: var(--seiwa_green, #008A3B);
}
.modal-inner .entry-link-box.-blue-border {
  border: 2px solid var(--seiwa_blue, #004F99);
  background-color: #fff;
  color: var(--seiwa_blue, #004F99);
}
.modal-inner .entry-link-box.-green-border {
  border: 2px solid var(--seiwa_green, #008A3B);
  background-color: #fff;
  color: var(--seiwa_green, #008A3B);
}
.modal-inner .entry-link-box .common-link-circle {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width:768px) {
  .modal-inner .entry-link-box .common-link-circle {
    right: 32px;
  }
}/*# sourceMappingURL=index.css.map */