@charset "UTF-8";
/* @docs
label: Core Remedies
version: 0.1.0-beta.2
note: |
  These remedies are recommended
  as a starter for any project.
category: file
*/
/* @docs
label: Box Sizing
note: |
  Use border-box by default, globally.
category: global
*/
*, ::before, ::after {
  box-sizing: border-box;
}

/* @docs
label: Line Sizing
note: |
  Consistent line-spacing,
  even when inline elements have different line-heights.
links:
  - https://drafts.csswg.org/css-inline-3/#line-sizing-property
category: global
*/
html {
  line-sizing: normal;
}

/* @docs
label: Body Margins
note: |
  Remove the tiny space around the edge of the page.
category: global
*/
body {
  margin: 0;
}

/* @docs
label: Hidden Attribute
note: |
  Maintain `hidden` behaviour when overriding `display` values.
  category: global
*/
[hidden] {
  display: none;
}

/* @docs
label: Heading Sizes
note: |
  Switch to rem units for headings
category: typography
*/
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

/* @docs
label: H1 Margins
note: |
  Keep h1 margins consistent, even when nested.
category: typography
*/
h1 {
  margin: 0.67em 0;
}

/* @docs
label: Pre Wrapping
note: |
  Overflow by default is bad...
category: typography
*/
pre {
  white-space: pre-wrap;
}

/* @docs
label: Horizontal Rule
note: |
  1. Solid, thin horizontal rules
  2. Remove Firefox `color: gray`
  3. Remove default `1px` height, and common `overflow: hidden`
category: typography
*/
hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

/* @docs
label: Responsive Embeds
note: |
  1. Block display is usually what we want
  2. The `vertical-align` removes strange space-below in case authors overwrite the display value
  3. Responsive by default
  4. Audio without `[controls]` remains hidden by default
category: embedded elements
*/
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

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

/* @docs
label: Responsive Images
note: |
  These new elements display inline by default,
  but that's not the expected behavior for either one.
  This can interfere with proper layout and aspect-ratio handling.
  1. Remove the unnecessary wrapping `picture`, while maintaining contents
  2. Source elements have nothing to display, so we hide them entirely
category: embedded elements
*/
picture {
  display: contents;
}

source {
  display: none;
}

/* @docs
label: Aspect Ratios
note: |
  Maintain intrinsic aspect ratios when `max-width` is applied.
  `iframe`, `embed`, and `object` are also embedded,
  but have no intrinsic ratio,
  so their `height` needs to be set explicitly.
category: embedded elements
*/
img, svg, video, canvas {
  height: auto;
}

/* @docs
label: Audio Width
note: |
  There is no good reason elements default to 300px,
  and audio files are unlikely to come with a width attribute.
category: embedded elements
*/
audio {
  width: 100%;
}

/* @docs
label: Image Borders
note: |
  Remove the border on images inside links in IE 10 and earlier.
category: legacy browsers
*/
img {
  border-style: none;
}

/* @docs
label: SVG Overflow
note: |
  Hide the overflow in IE 10 and earlier.
category: legacy browsers
*/
svg {
  overflow: hidden;
}

/* @docs
label: HTML5 Elements
note: |
  Default block display on HTML5 elements.
  For oldIE to apply this styling one needs to add some JS as well (i.e. `document.createElement("main")`)
links:
  - https://www.sitepoint.com/html5-older-browsers-and-the-shiv/
category: legacy browsers
*/
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/* @docs
label: Checkbox & Radio Inputs
note: |
  1. Add the correct box sizing in IE 10
  2. Remove the padding in IE 10
category: legacy browsers
*/
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

/*---------------------------------
  variable
---------------------------------*/
/* font */
/* color */
/*---------------------------------
  mixin
---------------------------------*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
  font-size: 1.4rem;
  word-break: break-all;
  color: #272A2C;
}
@media (min-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}

body {
  opacity: 0;
  -webkit-animation: fadeIn 0.8s ease-out forwards;
          animation: fadeIn 0.8s ease-out forwards;
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
img {
  display: inline;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

em {
  font-style: normal;
}

a {
  text-decoration: none;
}

p {
  line-height: 2;
}

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

.tab {
  display: none;
}
@media (min-width: 768px) {
  .tab {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 768px) {
  .tab-only {
    display: block;
  }
}
@media (min-width: 1024px) {
  .tab-only {
    display: none;
  }
}

.tab-none {
  display: block;
}
@media (min-width: 768px) {
  .tab-none {
    display: none;
  }
}
@media (min-width: 1024px) {
  .tab-none {
    display: block;
  }
}

.pc {
  display: none;
}
@media (min-width: 1024px) {
  .pc {
    display: block;
  }
}

.pc-none {
  display: block;
}
@media (min-width: 1024px) {
  .pc-none {
    display: none;
  }
}

.desktop {
  display: none;
}
@media (min-width: 1366px) {
  .desktop {
    display: block;
  }
}

.desktop-none {
  display: block;
}
@media (min-width: 1366px) {
  .desktop-none {
    display: none;
  }
}

/* contents */
#main {
  margin-top: 52px;
}
@media (min-width: 1224px) {
  #main {
    margin-top: 80px;
  }
}

/*---------------------------------
  footer
---------------------------------*/
#footer {
  background-color: #003366;
  background-image: url(/asset/images/common/footer_bg_img.png);
  background-position: right 0 bottom 0;
  background-repeat: no-repeat;
  color: #fff;
  border-top: 2px solid #fff;
}
#footer a {
  color: #fff;
}
#footer .inner {
  margin-left: 30px;
  margin-right: 30px;
  padding-top: 30px;
}
@media (min-width: 1366px) {
  #footer .inner {
    display: flex;
    justify-content: space-between;
    width: 79.06%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
  }
}
#footer .footer_info {
  margin-bottom: 24px;
}
#footer .footer_info .logo {
  text-align: center;
  margin-bottom: 12px;
}
@media (min-width: 1366px) {
  #footer .footer_info .logo {
    text-align: left;
    margin-bottom: 24px;
  }
}
#footer .footer_info .address {
  font-style: normal;
  text-align: center;
  margin-bottom: 23px;
}
@media (min-width: 1366px) {
  #footer .footer_info .address {
    text-align: left;
    line-height: 1.6;
  }
}
@media (min-width: 1366px) {
  #footer .footer_info .con {
    margin-bottom: 24px;
  }
}
#footer .footer_info .con .btn_border {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1366px) {
  #footer .footer_info .con .btn_border {
    margin-left: 0;
  }
}
#footer .footer_nav {
  font-size: 1.4rem;
}
@media (min-width: 1366px) {
  #footer .footer_nav {
    display: flex;
    justify-content: flex-end;
    width: 53%;
  }
}
@media (min-width: 1366px) {
  #footer .footer_nav .items01 {
    width: 36%;
  }
}
#footer .footer_nav .items01 ul {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1366px) {
  #footer .footer_nav .items01 ul {
    flex-direction: column;
  }
}
#footer .footer_nav .items01 ul li {
  width: 50%;
  margin-bottom: 24px;
  font-weight: 700;
}
@media (min-width: 1366px) {
  #footer .footer_nav .items01 ul li {
    width: auto;
    margin-bottom: 32px;
  }
}
#footer .footer_nav .items02 {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 1366px) {
  #footer .footer_nav .items02 {
    width: 64%;
  }
}
#footer .footer_nav .items02 .item {
  width: 50%;
  margin-bottom: 24px;
}
@media (min-width: 1366px) {
  #footer .footer_nav .items02 .item {
    margin-bottom: 30px;
  }
}
#footer .footer_nav .items02 .item p {
  margin-bottom: 13px;
  font-weight: 700;
}
#footer .footer_nav .items02 .item ul {
  border-left: 1px solid #517CA7;
  padding-left: 15px;
}
#footer .footer_nav .items02 .item ul li {
  margin-top: 13px;
}
#footer .copyright {
  margin-top: 23px;
  font-size: 1rem;
  text-align: center;
  padding-bottom: 30px;
}
@media (min-width: 1366px) {
  #footer .copyright {
    font-size: 1.2rem;
    padding-bottom: 15px;
  }
}
@media (min-width: 768px) {
  #footer .copyright .tab {
    display: inline-block;
  }
}

/*---------------------------------
  header
---------------------------------*/
#header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
#header .tel .num {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #064889;
}
#header .logo a {
  display: block;
}
@media (max-width: 1223px) {
  #header {
    height: 52px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 60px;
    padding-left: 10px;
  }
  #header .logo .txt {
    display: none;
  }
  #header .tel .num {
    font-size: 1.6rem;
  }
  #header .tel .num .small {
    font-weight: 500;
    font-size: 1rem;
  }
  #header .tel .txt {
    font-size: 0.7rem;
  }
  #header .nav_trigger {
    display: block;
    width: 52px;
    height: 52px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 104;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
  }
  #header .nav_trigger span {
    display: block;
    width: 32px;
    height: 1px;
    background: #000;
    margin: 7px auto;
    transition: all 0.3s ease;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  #header .nav_trigger .menu-label {
    font-size: 1rem;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    color: #000;
    margin: 0;
    text-align: center;
    transition: all 0.3s ease;
    width: auto;
    height: auto;
    background: inherit;
  }
  #header .nav_trigger .menu-label::before {
    content: "menu";
  }
  #header .nav_trigger.is-active span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
            transform: rotate(45deg) translate(5px, 5px);
  }
  #header .nav_trigger.is-active span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
  }
  #header .nav_trigger.is-active span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(6px, -6px);
            transform: rotate(-45deg) translate(6px, -6px);
  }
  #header .nav_trigger.is-active .menu-label::before {
    content: "Close";
  }
  #header .nav_box {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 103;
    width: 84%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    transition: all 0.3s ease;
    overflow-y: auto;
    background-color: #fff;
    padding-top: 52px;
  }
  #header .nav_box.is-active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  #header .nav_box .nav_inner {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
    padding-top: 30px;
  }
  #header .nav_box .nav_inner a {
    display: block;
    text-align: center;
    color: #272A2C;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
  }
  #header .nav_box .nav_inner a.btn_contact {
    background-color: #272A2C;
    color: #fff;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    border-radius: 100px;
    width: 180px;
    margin: 0 auto;
  }
  #header .nav_box .dropdown .drop_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 600;
    color: #272A2C;
  }
  #header .nav_box .dropdown .drop_btn::after {
    content: "";
    display: block;
    clip-path: polygon(100% 20%, 50% 100%, 0 20%, 0 0, 50% 80%, 100% 0);
    background-color: #064889;
    width: 13px;
    height: 7px;
    margin-left: 10px;
  }
  #header .nav_box .dropdown .dropdown_box {
    display: none;
    flex-direction: column;
    row-gap: 24px;
  }
  #header .nav_box .dropdown .dropdown_box a {
    color: #064889;
    margin-top: 30px;
  }
  #header body.menu-open {
    overflow: hidden;
  }
}
@media (min-width: 1224px) {
  #header {
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 3.22%;
    padding-right: 2.2%;
  }
  #header .logo {
    text-align: center;
    margin: 0 auto 0 0;
  }
  #header .logo .txt {
    font-size: 1rem;
    border-bottom: 1px solid #A1AAB1;
    color: #272A2C;
    padding-bottom: 6px;
    margin-bottom: 6px;
    display: block;
  }
  #header .tel {
    margin-left: 24px;
  }
  #header .tel .num {
    font-size: 2.3rem;
  }
  #header .tel .num .small {
    font-weight: 500;
    font-size: 1.3rem;
    margin-right: 5px;
  }
  #header .tel .txt {
    font-size: 1rem;
  }
  #header .nav_box {
    flex: 1;
  }
  #header .nav_box .nav_inner {
    display: flex;
    justify-content: flex-end;
  }
  #header .nav_box .nav_inner > a, #header .nav_box .nav_inner .drop_btn {
    display: block;
    font-size: 1.6rem;
    color: #272A2C;
    position: relative;
    padding: 10px 0;
  }
  #header .nav_box .nav_inner .drop_btn {
    display: flex;
    align-items: center;
  }
  #header .nav_box .nav_inner .drop_btn::after {
    content: "";
    display: block;
    clip-path: polygon(100% 20%, 50% 100%, 0 20%, 0 0, 50% 80%, 100% 0);
    background-color: #272A2C;
    width: 13px;
    height: 7px;
    margin-left: 10px;
  }
  #header .nav_box .nav_inner > a, #header .nav_box .nav_inner .dropdown {
    margin-left: 24px;
    font-weight: 600;
  }
  #header .nav_box .nav_inner > a:hover::after, #header .nav_box .nav_inner .dropdown:hover::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: #272A2C;
    border-radius: 100%;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 0;
  }
  #header .nav_box .nav_inner a.btn_contact {
    background-color: #272A2C;
    color: #fff;
    padding-left: 3rem;
    padding-right: 3rem;
    border-radius: 100px;
    transition: all 0.3s ease;
  }
  #header .nav_box .nav_inner a.btn_contact:hover {
    background-color: #064889;
    color: #fff;
  }
  #header .nav_box .nav_inner a.btn_contact:hover::after {
    display: none;
  }
  #header .nav_box .nav_inner a.sp {
    display: none;
  }
  #header .nav_box .dropdown {
    position: relative;
  }
  #header .nav_box .dropdown .drop_btn {
    position: relative;
    align-items: center;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    cursor: pointer;
  }
  #header .nav_box .dropdown .dropdown_box {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -8px);
            transform: translate(-50%, -8px);
    display: flex;
    flex-direction: column;
    min-width: 200px;
    background-color: #F5F6FA;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
    z-index: 5;
  }
  #header .nav_box .dropdown .dropdown_box a {
    text-align: left;
    color: #272A2C;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F5F6FA;
    padding: 14px 12px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
  }
  #header .nav_box .dropdown .dropdown_box a::after {
    content: "";
    clip-path: polygon(65% 0, 100% 100%, 0 100%, 0 85%, 80% 85%, 50% 0);
    width: 15px;
    height: 8px;
    background-color: #272A2C;
  }
  #header .nav_box .dropdown .dropdown_box a:hover {
    background-color: #003365;
    color: #fff;
  }
  #header .nav_box .dropdown .dropdown_box a:hover::after {
    background-color: #fff;
  }
  #header .nav_box .dropdown:hover .dropdown_box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  #header .nav_trigger, #header .nav_close {
    display: none;
  }
}

/*---------------------------------
  information
---------------------------------*/
@media (min-width: 768px) {
  #information {
    display: flex;
    -webkit-column-gap: 2px;
       -moz-column-gap: 2px;
            column-gap: 2px;
  }
}
#information .info_recruit, #information .info_contact {
  padding: 44px 10px;
  margin-top: 2px;
}
@media (min-width: 768px) {
  #information .info_recruit, #information .info_contact {
    width: 50%;
    padding: 44px 40px;
  }
}
#information .detail {
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  #information .detail {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 210px;
  }
}
#information .detail .ttl_section h3 {
  color: #fff;
}
@media (min-width: 1366px) {
  #information .detail .btn_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
#information .detail .btn_area .txt {
  color: #fff;
  margin-bottom: 15px;
}
@media (min-width: 1366px) {
  #information .detail .btn_area .txt {
    margin-bottom: 0;
  }
}
#information .detail .btn_area .txt .lead {
  font-size: 1.2rem;
}
@media (min-width: 1366px) {
  #information .detail .btn_area .txt .lead {
    font-size: 1.4rem;
  }
}
#information .info_recruit {
  position: relative;
  background: url(/asset/images/common/info_recruit_bg_sp.jpg) no-repeat top 0 left 0;
  background-size: cover;
}
@media (min-width: 1024px) {
  #information .info_recruit {
    background: url(/asset/images/common/info_recruit_bg_pc.jpg) no-repeat top 0 left 0;
    background-size: cover;
  }
}
#information .info_recruit::after {
  content: "";
  display: block;
  background: rgba(6, 72, 137, 0.75);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#information .info_contact {
  position: relative;
  background: url(/asset/images/common/info_contact_bg_sp.jpg) no-repeat top 0 left 0;
  background-size: cover;
}
@media (min-width: 1024px) {
  #information .info_contact {
    background: url(/asset/images/common/info_contact_bg_pc.jpg) no-repeat top 0 left 0;
    background-size: cover;
  }
}
#information .info_contact::after {
  content: "";
  display: block;
  background: rgba(39, 42, 44, 0.75);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#information .info_contact .tel .num {
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
}
#information .info_contact .tel .num .small {
  font-size: 2.1rem;
  font-weight: 500;
}

/*---------------------------------
  hdg
---------------------------------*/
.page_title {
  padding-left: 10px;
  padding-right: 10px;
  height: 170px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .page_title {
    height: 350px;
  }
}
@media (min-width: 768px) {
  .page_title .ttl {
    margin-left: 6.08%;
  }
}
.page_title .ttl h2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .page_title .ttl h2 {
    align-items: center;
    flex-direction: row;
  }
}
.page_title .ttl h2 .en {
  flex-direction: row;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-right: 10px;
}
@media (min-width: 1024px) {
  .page_title .ttl h2 .en {
    font-size: 6rem;
  }
}
.page_title .ttl h2 .sub {
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  margin-top: 10px;
}
@media (min-width: 1024px) {
  .page_title .ttl h2 .sub {
    font-size: 2rem;
    margin-top: 0;
    position: relative;
    bottom: -10px;
  }
}
.page_title .ttl .bread {
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .page_title .ttl .bread {
    font-size: 1.2rem;
  }
}
.page_title .ttl .bread a {
  color: #272A2C;
}
.page_title .ttl .bread span {
  margin: 0 0.5rem;
}
@media (min-width: 1024px) {
  .page_title .ttl .bread span {
    margin: 0 1rem;
  }
}
.page_title .parts {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 15.1vw;
  height: 69.83vw;
}
@media (min-width: 768px) {
  .page_title .parts {
    width: 6.73vw;
    height: 29.28vw;
  }
}
@media (min-width: 1366px) {
  .page_title .parts {
    width: 92px;
    height: 400px;
  }
}
.page_title .parts .parts_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.page_title .parts img {
  position: absolute;
  width: 100%;
}
.page_title .parts .part01 {
  right: 0;
  bottom: 0;
}
.page_title .parts .part01.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  transition-delay: 0.6s;
  transition-timing-function: cubic-bezier(0.35, 0.97, 0, 0.95);
}
.page_title .parts .part01.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.page_title .parts .part02 {
  right: 0;
  bottom: 26.13vw;
}
@media (min-width: 768px) {
  .page_title .parts .part02 {
    bottom: 10.47vw;
  }
}
@media (min-width: 1366px) {
  .page_title .parts .part02 {
    bottom: 143px;
  }
}
.page_title .parts .part02.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  transition-delay: 0.9s;
  transition-timing-function: cubic-bezier(0.35, 0.97, 0, 0.95);
}
.page_title .parts .part02.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.page_title .parts .part03 {
  right: 0;
  top: 0;
}
.page_title .parts .part03.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  transition-delay: 1.2s;
  transition-timing-function: cubic-bezier(0.35, 0.97, 0, 0.95);
}
.page_title .parts .part03.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.page_title__index {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .page_title__index {
    max-width: 1200px;
    margin: 0 auto 80px;
  }
}
.page_title__index .ttl_set {
  border-radius: 0 0 12px 12px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page_title__index .ttl_set {
    display: flex;
    flex-direction: row-reverse;
  }
}
.page_title__index .ttl_set .ttl {
  color: #fff;
  min-height: 124px;
  display: flex;
  align-items: center;
  background: url(/asset/images/common/page_title__index_sp.png) #003366 no-repeat right bottom;
  background-size: auto;
}
@media (min-width: 768px) {
  .page_title__index .ttl_set .ttl {
    width: 48%;
    background: url(/asset/images/common/page_title__index_pc.png) #003366 no-repeat top left;
    background-size: 20%;
    align-items: flex-end;
    padding-bottom: 20px;
  }
}
.page_title__index .ttl_set .ttl .items {
  margin-left: 10px;
  margin-right: 10px;
}
@media (min-width: 768px) {
  .page_title__index .ttl_set .ttl .items {
    margin-left: 24px;
  }
}
.page_title__index .ttl_set .ttl .items .shoulder {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 1024px) {
  .page_title__index .ttl_set .ttl .items .shoulder {
    font-size: 1.8rem;
  }
}
.page_title__index .ttl_set .ttl .items h2 .en {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 3.2rem;
}
@media (min-width: 1024px) {
  .page_title__index .ttl_set .ttl .items h2 .en {
    font-size: 6rem;
  }
}
.page_title__index .ttl_set .ttl .items h2 .sub {
  font-size: 1.2rem;
  margin-left: 10px;
}
@media (min-width: 1024px) {
  .page_title__index .ttl_set .ttl .items h2 .sub {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .page_title__index .ttl_set .ph {
    width: 52%;
  }
}
.page_title__index .bread {
  font-size: 1rem;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 12px;
}
@media (min-width: 1024px) {
  .page_title__index .bread {
    font-size: 1.2rem;
  }
}
.page_title__index .bread a {
  color: #272A2C;
}
.page_title__index .bread span {
  margin: 0 0.5rem;
}
@media (min-width: 1024px) {
  .page_title__index .bread span {
    margin: 0 1rem;
  }
}

.ttl_section .sub_ttl {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #C7B256;
  margin-bottom: 12px;
}
@media (min-width: 1366px) {
  .ttl_section .sub_ttl {
    font-size: 1.8rem;
  }
}
.ttl_section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
@media (min-width: 1366px) {
  .ttl_section h3 {
    font-size: 2.8rem;
  }
}

.ttl_icon {
  display: flex;
  border-bottom: 1px solid #D3D6E0;
  padding-bottom: 12px;
  margin-bottom: 18px;
}
.ttl_icon::before {
  content: "";
  display: block;
  width: 13px;
  height: 15px;
  background: url(/asset/images/common/list_icon.svg) no-repeat center;
  margin-right: 16px;
  flex: none;
  position: relative;
  top: 10px;
}

/*---------------------------------
  btn
---------------------------------*/
.btn_border {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  width: 280px;
  font-weight: 700;
}
.btn_border._reverse {
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: 20px;
}
.btn_border._reverse._grey .arrow {
  border-left: none;
  border-right: 1px solid #D3D6E0;
}
.btn_border._reverse._grey .arrow::after {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.btn_border._down._grey .arrow::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media (min-width: 1024px) {
  .btn_border:hover .arrow {
    background-color: #D3D6E0;
  }
  .btn_border._white:hover .arrow::after {
    background-color: #064889;
  }
  .btn_border._grey:hover .arrow::after {
    background-color: #fff;
  }
}
.btn_border .arrow {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.btn_border .arrow::after {
  content: "";
  display: block;
  clip-path: polygon(65% 0, 100% 100%, 0 100%, 0 85%, 80% 85%, 50% 0);
  width: 15px;
  height: 10px;
}
.btn_border._white {
  border: 1px solid #fff;
  color: #fff;
}
.btn_border._white .arrow {
  border-left: 1px solid #fff;
}
.btn_border._white .arrow::after {
  background-color: #fff;
}
.btn_border._grey {
  border: 1px solid #D3D6E0;
  background-color: #fff;
  color: #272A2C;
}
.btn_border._grey .arrow {
  border-left: 1px solid #D3D6E0;
}
.btn_border._grey .arrow::after {
  background-color: #D3D6E0;
}

/*---------------------------------
  list
---------------------------------*/
.list_icon li {
  display: flex;
  align-items: center;
}
.list_icon li::before {
  content: "";
  display: block;
  background: url(/asset/images/common/list_icon.svg) no-repeat center;
  width: 13px;
  height: 15px;
  margin-right: 8px;
}

/*---------------------------------
  top
---------------------------------*/
#top {
  /* kv */
}
#top #kv {
  height: 100vw;
  background: url(/asset/images/top/kv_ph_sp.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}
@media (min-width: 768px) {
  #top #kv {
    height: 40.12vw;
    background: url(/asset/images/top/kv_ph_pc.jpg) no-repeat center center;
    background-size: cover;
  }
}
@media (min-width: 1366px) {
  #top #kv {
    height: 548px;
  }
}
#top #kv .catch {
  position: absolute;
  top: 46%;
  left: 45%;
  -webkit-transform: translate(-45%, -46%);
          transform: translate(-45%, -46%);
  display: flex;
  align-items: flex-end;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  z-index: 3;
}
#top #kv .catch .waza {
  width: 24.53vw;
}
@media (min-width: 768px) {
  #top #kv .catch .waza {
    width: 13.62vw;
  }
}
@media (min-width: 1366px) {
  #top #kv .catch .waza {
    width: 186px;
  }
}
#top #kv .catch .txt01 {
  width: 34.67vw;
  margin-bottom: 6.4vw;
}
@media (min-width: 768px) {
  #top #kv .catch .txt01 {
    width: 19.25vw;
    margin-bottom: 2.93vw;
  }
}
@media (min-width: 1366px) {
  #top #kv .catch .txt01 {
    width: 263px;
    margin-bottom: 40px;
  }
}
#top #kv .catch .txt01.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.3s;
  -webkit-transform: translate(100px, 0);
          transform: translate(100px, 0);
}
#top #kv .catch .txt01.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #kv .catch .txt02 {
  width: 23.47vw;
  margin-bottom: 6.4vw;
}
@media (min-width: 768px) {
  #top #kv .catch .txt02 {
    width: 11.93vw;
    margin-bottom: 2.93vw;
  }
}
@media (min-width: 1366px) {
  #top #kv .catch .txt02 {
    width: 163px;
    margin-bottom: 40px;
  }
}
#top #kv .catch .txt02.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transition-delay: 0.3s;
  -webkit-transform: translate(-100px, 0);
          transform: translate(-100px, 0);
}
#top #kv .catch .txt02.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #kv .parts_l, #top #kv .parts_r {
  position: relative;
  z-index: 2;
}
#top #kv .parts_l img, #top #kv .parts_r img {
  position: absolute;
  width: 100%;
}
#top #kv .parts_l {
  width: 20.27vw;
  height: 71.73vw;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  #top #kv .parts_l {
    width: 9.22vw;
    height: 32.72vw;
  }
}
@media (min-width: 1366px) {
  #top #kv .parts_l {
    width: 126px;
    height: 447px;
  }
}
#top #kv .parts_l .part01 {
  right: 0;
  bottom: 0;
}
#top #kv .parts_l .part01.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  transition-delay: 0.9s;
  transition-timing-function: cubic-bezier(0.35, 0.97, 0, 0.95);
}
#top #kv .parts_l .part01.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #kv .parts_l .part02 {
  top: 25.6vw;
  left: 0;
}
@media (min-width: 768px) {
  #top #kv .parts_l .part02 {
    top: 11.57vw;
  }
}
@media (min-width: 1366px) {
  #top #kv .parts_l .part02 {
    top: 156px;
  }
}
#top #kv .parts_l .part02.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  transition-delay: 1.2s;
  transition-timing-function: cubic-bezier(0.35, 0.97, 0, 0.95);
}
#top #kv .parts_l .part02.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #kv .parts_l .part03 {
  top: 0;
  left: 0;
}
#top #kv .parts_l .part03.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  transition-delay: 1.5s;
  transition-timing-function: cubic-bezier(0.35, 0.97, 0, 0.95);
}
#top #kv .parts_l .part03.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #kv .parts_r {
  width: 15.2vw;
  height: 69.87vw;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 768px) {
  #top #kv .parts_r {
    width: 6.73vw;
    height: 31.84vw;
  }
}
@media (min-width: 1366px) {
  #top #kv .parts_r {
    width: 94px;
    height: 435px;
  }
}
#top #kv .parts_r .part01 {
  right: 0;
  bottom: 0;
}
#top #kv .parts_r .part01.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  transition-delay: 1.5s;
  transition-timing-function: cubic-bezier(0.35, 0.97, 0, 0.95);
}
#top #kv .parts_r .part01.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #kv .parts_r .part02 {
  top: 22.67vw;
  right: 0;
}
@media (min-width: 768px) {
  #top #kv .parts_r .part02 {
    top: 10.32vw;
  }
}
@media (min-width: 1366px) {
  #top #kv .parts_r .part02 {
    top: 141px;
  }
}
#top #kv .parts_r .part02.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  transition-delay: 1.2s;
  transition-timing-function: cubic-bezier(0.35, 0.97, 0, 0.95);
}
#top #kv .parts_r .part02.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #kv .parts_r .part03 {
  top: 0;
  right: 0;
}
#top #kv .parts_r .part03.js-anime {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  transition-delay: 0.9s;
  transition-timing-function: cubic-bezier(0.35, 0.97, 0, 0.95);
}
#top #kv .parts_r .part03.js-anime.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #top_case {
  margin-top: -15.2vw;
  position: relative;
  z-index: 4;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  #top #top_case {
    margin-top: -6vw;
  }
}
@media (min-width: 1366px) {
  #top #top_case {
    margin-top: -82px;
  }
}
#top #top_case .items {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: space-between;
  margin-left: 10px;
  margin-right: 10px;
}
@media (min-width: 1140px) {
  #top #top_case .items {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1366px) {
  #top #top_case .items {
    max-width: 83.46%;
  }
}
#top #top_case .items .item {
  display: block;
  width: 47.89%;
  color: #272A2C;
  position: relative;
  top: 0;
  transition: 0.3s;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  #top #top_case .items .item {
    width: 23.68%;
  }
  #top #top_case .items .item:hover {
    top: -10px;
  }
  #top #top_case .items .item:hover .ph {
    opacity: 0.7;
  }
  #top #top_case .items .item:hover .ttl {
    color: #064889;
  }
  #top #top_case .items .item:hover .ttl::after {
    background-color: #064889;
  }
}
#top #top_case .items .item .ph {
  border-radius: 3px;
  overflow: hidden;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  #top #top_case .items .item .ph {
    border-radius: 5px;
  }
}
#top #top_case .items .item .ttl {
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}
@media (min-width: 768px) {
  #top #top_case .items .item .ttl {
    padding: 12px 10px 12px 0;
    font-size: 1.8rem;
  }
}
#top #top_case .items .item .ttl::after {
  content: "";
  display: block;
  clip-path: polygon(65% 0, 100% 100%, 0 100%, 0 85%, 80% 85%, 50% 0);
  width: 15px;
  height: 7px;
  background-color: #272A2C;
  transition: 0.3s;
}
#top #top_case .items .item .cap {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  #top #top_case .items .item .cap {
    font-size: 1.4rem;
  }
}
#top #top_business {
  background: url(/asset/images/top/top_business_bg.jpg) no-repeat bottom center;
  background-size: cover;
}
@media (min-width: 768px) {
  #top #top_business {
    background: url(/asset/images/top/top_business_bg.jpg) no-repeat bottom 20% center;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#top #top_business .inner {
  margin-left: 10px;
  margin-right: 10px;
}
@media (min-width: 768px) {
  #top #top_business .inner {
    width: 49.34vw;
  }
}
#top #top_business .detail {
  margin-bottom: 36px;
}
@media (min-width: 1024px) {
  #top #top_business .detail {
    margin-bottom: 0;
    margin-left: 10.47vw;
  }
}
#top #top_business .detail h3 {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media (min-width: 1366px) {
  #top #top_business .detail h3 {
    font-size: 2.4rem;
    line-height: 2;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
  }
}
#top #top_business .detail .lead {
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  #top #top_business .detail .lead {
    margin-bottom: 40px;
  }
}
#top #top_business .detail .btn_box a {
  margin: 0 auto;
}
@media (min-width: 768px) {
  #top #top_business .detail .btn_box a {
    margin: 0;
  }
}
#top #top_business .parts {
  position: relative;
  height: 100.8vw;
  width: 87.73vw;
  margin-left: auto;
}
@media (min-width: 768px) {
  #top #top_business .parts {
    height: 58.15vw;
    width: 50.66vw;
  }
}
@media (min-width: 1366px) {
  #top #top_business .parts {
    height: 794px;
    width: 692px;
  }
}
#top #top_business .parts img {
  position: absolute;
  width: 100%;
}
#top #top_business .parts .part01 {
  bottom: 0;
  right: 0;
}
#top #top_business .parts .part01.js-anime-business {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  transition-delay: 0.3s;
  transition-timing-function: cubic-bezier(0.35, 0.97, 0, 0.95);
}
#top #top_business .parts .part01.js-anime-business.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #top_business .parts .part02 {
  bottom: 26.67vw;
  left: 0;
}
@media (min-width: 768px) {
  #top #top_business .parts .part02 {
    bottom: 15.08vw;
  }
}
@media (min-width: 1366px) {
  #top #top_business .parts .part02 {
    bottom: 209px;
  }
}
#top #top_business .parts .part02.js-anime-business {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  transition-delay: 0.6s;
  transition-timing-function: cubic-bezier(0.35, 0.97, 0, 0.95);
}
#top #top_business .parts .part02.js-anime-business.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #top_business .parts .part03 {
  top: 0;
  right: 0;
}
#top #top_business .parts .part03.js-anime-business {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  transition-delay: 0.9s;
  transition-timing-function: cubic-bezier(0.35, 0.97, 0, 0.95);
}
#top #top_business .parts .part03.js-anime-business.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #top_business .parts .part04 {
  bottom: 5.2vw;
  right: 0;
}
@media (min-width: 768px) {
  #top #top_business .parts .part04 {
    bottom: 2.97vw;
  }
}
@media (min-width: 1366px) {
  #top #top_business .parts .part04 {
    bottom: 41px;
  }
}
#top #top_business .parts .part04.js-anime-business {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
  transition-delay: 1.2s;
  transition-timing-function: cubic-bezier(0.35, 0.97, 0, 0.95);
}
#top #top_business .parts .part04.js-anime-business.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#top #top_strengths {
  background: #003366;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  #top #top_strengths {
    background: url(/asset/images/top/top_strengths_bg.png) no-repeat right top #003366;
    background-size: auto 100%;
  }
}
@media (min-width: 1366px) {
  #top #top_strengths {
    padding-top: 78px;
    padding-bottom: 78px;
  }
}
#top #top_strengths .inner {
  margin-left: 10px;
  margin-right: 10px;
}
@media (min-width: 768px) {
  #top #top_strengths .inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }
}
#top #top_strengths .detail {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  #top #top_strengths .detail {
    margin-bottom: 0;
    width: 42.46%;
  }
}
@media (min-width: 1366px) {
  #top #top_strengths .detail {
    margin-right: 6.08%;
  }
}
#top #top_strengths .detail .ttl_section {
  color: #fff;
}
#top #top_strengths .detail .lead {
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.8;
}
#top #top_strengths .detail .btn_box a {
  margin: 0 auto;
}
@media (min-width: 768px) {
  #top #top_strengths .detail .btn_box a {
    margin: 0;
  }
}
#top #top_strengths .img {
  text-align: center;
}
@media (min-width: 768px) {
  #top #top_strengths .img {
    width: 57.47%;
  }
}
@media (min-width: 768px) {
  #top #top_strengths .img img {
    width: 68.03%;
  }
}
@media (min-width: 1366px) {
  #top #top_strengths .img img {
    width: auto;
  }
}
#top #news {
  background-color: #ECF0F4;
  padding: 24px;
}
@media (min-width: 1024px) {
  #top #news {
    padding: 80px 0;
  }
}
#top #news h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  #top #news h3 {
    font-size: 2.8rem;
  }
}
#top #news .items {
  background-color: #fff;
  padding: 12px;
}
@media (min-width: 1024px) {
  #top #news .items {
    width: 68.23%;
    margin: 0 auto;
    padding: 16px;
  }
}
#top #news .items .item:not(:last-of-type) {
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  #top #news .items .item dl {
    font-size: 1.8rem;
  }
}
#top #news .items .item dl dt {
  color: #899096;
}

/*---------------------------------
  strengths
---------------------------------*/
#strengths .container {
  margin-top: 360px;
  margin-bottom: 120px;
}
@media (min-width: 768px) {
  #strengths .container {
    margin-top: 240px;
    margin-bottom: 160px;
  }
}
#strengths .container .main_ttl {
  margin-left: 10px;
  position: relative;
  bottom: -5.1vw;
}
@media (min-width: 768px) {
  #strengths .container .main_ttl {
    width: 87.85%;
    margin: 0 auto;
    bottom: -20px;
  }
}
#strengths .container #merit {
  background-color: #003366;
  padding-top: 65px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  #strengths .container #merit {
    padding-bottom: 65px;
  }
}
@media (min-width: 1024px) {
  #strengths .container #merit {
    padding-bottom: 21.23vw;
    border-radius: 0 0 60px 60px;
  }
}
#strengths .container #merit .section {
  margin-left: 10px;
  margin-right: 10px;
}
@media (min-width: 768px) {
  #strengths .container #merit .section {
    width: 87.85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#strengths .container #merit .section .detail {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  #strengths .container #merit .section .detail {
    margin-bottom: 0;
    width: 59.83%;
  }
}
#strengths .container #merit .section .detail h3, #strengths .container #merit .section .detail .lead {
  color: #fff;
}
#strengths .container #merit .section .fig {
  text-align: center;
}
@media (min-width: 768px) {
  #strengths .container #merit .section .fig {
    width: 37.5%;
  }
}
#strengths .container #merit_about {
  padding-top: 40px;
}
@media (min-width: 768px) {
  #strengths .container #merit_about {
    width: 87.85%;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  #strengths .container #merit_about {
    margin-top: -14.64vw;
  }
}
#strengths .container #merit_about .inner {
  margin-left: 10px;
  margin-right: 10px;
}
@media (min-width: 375px) {
  #strengths .container #merit_about .cards {
    max-width: 520px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  #strengths .container #merit_about .cards {
    max-width: none;
    display: flex;
    gap: 30px;
  }
}
#strengths .container #merit_about .cards .card {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  #strengths .container #merit_about .cards .card {
    margin-bottom: 0;
    width: 33.3333333333%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
#strengths .container #merit_about .cards .card .typo {
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  #strengths .container #merit_about .cards .card .typo {
    height: 78px;
  }
}
#strengths .container #merit_about .cards .card .ph {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}
#strengths .container #merit_about .cards .card .lead {
  margin-bottom: 12px;
}
#strengths .container #merit_about .cards .card .btn_box a {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  #strengths .container #merit_about .cards .card .btn_box a {
    width: 100%;
  }
}

/*---------------------------------
  business
---------------------------------*/
#business .container {
  margin-bottom: 120px;
}
@media (min-width: 768px) {
  #business .container {
    margin-bottom: 160px;
  }
}
#business .container .inner {
  margin-left: 26px;
  margin-right: 26px;
}
@media (min-width: 375px) {
  #business .container .cards {
    max-width: 460px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  #business .container .cards {
    max-width: none;
  }
}
@media (min-width: 1024px) {
  #business .container .cards {
    width: 79.06%;
    margin: 0 auto;
  }
}
#business .container .cards .card {
  margin-bottom: 120px;
}
@media (min-width: 768px) {
  #business .container .cards .card {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #business .container .cards .card.reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1024px) {
  #business .container .cards .card {
    margin-bottom: 160px;
  }
}
@media (min-width: 768px) {
  #business .container .cards .card .ph {
    width: 41.48%;
  }
}
#business .container .cards .card .crop {
  border-radius: 4px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  #business .container .cards .card .crop {
    width: 100%;
    height: 44.51vw;
    position: relative;
  }
}
#business .container .cards .card .crop img.crop_img {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  will-change: transform;
  width: 100%;
  min-height: 114%;
  height: auto;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  #business .container .cards .card .detail {
    width: 52.96%;
  }
}
#business .container .cards .card .ttl {
  padding-top: 20px;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  #business .container .cards .card .ttl {
    padding-top: 0;
  }
}
#business .container .cards .card .ttl h3 {
  font-size: 2rem;
  border-bottom: 1px solid #D3D6E0;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  #business .container .cards .card .ttl h3 {
    font-size: 2.4rem;
  }
}
#business .container .cards .card .ttl .catch {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  #business .container .cards .card .ttl .catch {
    font-size: 1.8rem;
  }
}
#business .container .cards .card .lead {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  #business .container .cards .card .lead {
    margin-bottom: 32px;
  }
}
#business .container .cards .card dl {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  #business .container .cards .card dl {
    margin-bottom: 32px;
  }
}
#business .container .cards .card dl dt {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  #business .container .cards .card dl dt {
    font-size: 1.8rem;
  }
}
#business .container .cards .card dl .list_icon {
  display: flex;
  flex-wrap: wrap;
}
#business .container .cards .card dl .list_icon li {
  margin-right: 16px;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  #business .container .cards .card dl .list_icon li {
    font-size: 1.4rem;
    margin-right: 24px;
  }
}
#business .container .cards .card dl .list_icon li.etc::before {
  display: none;
}
#business .container .cards .card .btn_box a {
  margin: 0 auto;
}
@media (min-width: 768px) {
  #business .container .cards .card .btn_box a {
    margin: 0;
  }
}

/*---------------------------------
  case_studies
---------------------------------*/
#case_studies .container {
  margin-bottom: 2px;
}
#case_studies .container .inner {
  margin-left: 26px;
  margin-right: 26px;
}
#case_studies .container .intro {
  background-color: #F7FAFD;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 1024px) {
  #case_studies .container .intro {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}
@media (min-width: 1024px) {
  #case_studies .container .intro .inner {
    display: flex;
    justify-content: space-between;
    max-width: 1080px;
    margin: 0 auto;
  }
}
#case_studies .container .intro .detail {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  #case_studies .container .intro .detail {
    width: 47.78%;
    margin-bottom: 0;
  }
}
#case_studies .container .intro .detail h3 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  #case_studies .container .intro .detail h3 {
    font-size: 2.8rem;
  }
}
@media (min-width: 1024px) {
  #case_studies .container .intro .available {
    width: 46.67%;
  }
}
#case_studies .container .intro .available .item {
  padding: 0 24px 24px;
  background: url(/asset/images/business/available_tl.png) no-repeat top left/32px 32px, url(/asset/images/business/available_tr.png) no-repeat top right/32px 32px, url(/asset/images/business/available_bl.png) no-repeat bottom left/32px 32px, url(/asset/images/business/available_br.png) no-repeat bottom right/32px 32px;
}
#case_studies .container .intro .available .item h4 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  #case_studies .container .intro .available .item h4 {
    margin-bottom: 32px;
  }
}
#case_studies .container .intro .available .item ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  #case_studies .container .intro .available .item ul {
    padding-left: 40px;
    padding-right: 40px;
  }
}
#case_studies .container .intro .available .item ul li {
  width: 50%;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  #case_studies .container .intro .available .item ul li {
    width: 33.3333333333%;
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  #case_studies .container .intro .available .item ul li {
    width: auto;
    margin-right: 30px;
  }
}
#case_studies .container .intro .available .item .etc {
  text-align: right;
}
#case_studies .container .section {
  margin: 0 10px;
  padding-top: 80px;
}
@media (min-width: 1024px) {
  #case_studies .container .section {
    padding-top: 120px;
    margin: 0 auto;
    max-width: 90%;
  }
}
@media (min-width: 1366px) {
  #case_studies .container .section {
    max-width: 1080px;
  }
}
#case_studies .container .section h3 {
  font-size: 2.4rem;
  font-weight: 700;
  border-bottom: 1px solid #D3D6E0;
  padding-bottom: 8px;
  margin-bottom: 15px;
  color: #003366;
}
@media (min-width: 1024px) {
  #case_studies .container .section h3 {
    font-size: 2.8rem;
  }
}
#case_studies .container .section .lead {
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  #case_studies .container .section .lead {
    margin-bottom: 24px;
  }
}
#case_studies .container .other_case {
  background-color: #F7FAFD;
  padding: 40px 0;
  margin-top: 80px;
}
@media (min-width: 1024px) {
  #case_studies .container .other_case {
    margin-top: 120px;
    padding: 80px 0;
  }
}
#case_studies .container .other_case h3 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 36px;
}
#case_studies .container .other_case .items {
  margin: 0 auto;
  width: 74.67%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1024px) {
  #case_studies .container .other_case .items {
    width: 904px;
    flex-direction: row;
    gap: 32px;
  }
}
#case_studies {
  /* =========================================
  スライダー
  ========================================= */
}
#case_studies .case_slider {
  position: relative;
}
#case_studies .swiper-slide {
  overflow: hidden;
}
#case_studies {
  /* =========================================
  基本スライダー（メイン表示側）
  ========================================= */
}
#case_studies .main-swiper {
  width: 90%;
  height: auto;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  #case_studies .main-swiper {
    width: 80%;
  }
}
#case_studies .main-swiper .swiper-slide {
  cursor: pointer;
  border-radius: 6px;
}
#case_studies .main-swiper img {
  width: 100%;
  height: auto;
  display: block;
}
#case_studies {
  /* =========================================
  矢印
  ========================================= */
  /* ▼ デフォルト（PC） */
}
#case_studies .main-swiper-prev,
#case_studies .main-swiper-next {
  all: unset;
  position: absolute;
  top: 36%;
  -webkit-transform: translateY(-36%);
          transform: translateY(-36%);
  z-index: 10;
  width: 10px;
  height: 16px;
  cursor: pointer;
}
@media (min-width: 768px) {
  #case_studies .main-swiper-prev,
  #case_studies .main-swiper-next {
    width: 20px;
    height: 32px;
  }
}
#case_studies .main-swiper-prev {
  left: 0;
  background: url(/asset/images/business/slider_arrow_prev.svg) no-repeat center;
  background-size: contain;
}
@media (min-width: 1366px) {
  #case_studies .main-swiper-prev {
    left: -60px;
  }
}
#case_studies .main-swiper-next {
  right: 0;
  background: url(/asset/images/business/slider_arrow_next.svg) no-repeat center;
  background-size: contain;
}
@media (min-width: 1366px) {
  #case_studies .main-swiper-next {
    right: -60px;
  }
}
#case_studies .swiper-button-next:after, #case_studies .swiper-button-prev:after {
  display: none;
}
#case_studies {
  /* =========================================
  	モーダル全体
  ========================================= */
}
#case_studies .modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none; /* JSで open 時に block */
  justify-content: center;
  align-items: center;
}
#case_studies .modal.is-active {
  display: flex;
}
#case_studies .modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
#case_studies {
  /* =========================================
  	モーダル内 Swiper
  ========================================= */
}
#case_studies .modal-swiper__wrapper {
  width: 85%;
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 6px;
  max-height: 80vh;
  display: flex;
}
@media (min-width: 1024px) {
  #case_studies .modal-swiper__wrapper {
    max-width: 900px;
  }
}
@media (min-width: 1366px) {
  #case_studies .modal-swiper__wrapper {
    max-width: 1000px;
  }
}
#case_studies .modal-swiper {
  flex: 1;
  overflow: hidden;
  z-index: 3;
}
#case_studies .modal-swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border: 3px solid #fff;
}
#case_studies .modal .swiper-slide {
  border-radius: 6px;
  overflow: hidden;
}
#case_studies {
  /* =========================================
  	閉じるボタン
  ========================================= */
}
#case_studies .modal__close {
  z-index: 4;
  position: absolute;
  top: -30px;
  right: 0;
  border: none;
  width: 12px;
  height: 12px;
  background: url(/asset/images/business/modal_close.svg) no-repeat center;
  background-size: contain;
  cursor: pointer;
  line-height: 1;
}
@media (min-width: 768px) {
  #case_studies .modal__close {
    width: 20px;
    height: 20px;
    top: -40px;
  }
}
#case_studies {
  /* =========================================
  	左右の矢印
  ========================================= */
}
#case_studies .modal .swiper-button-prev,
#case_studies .modal .swiper-button-next {
  width: 12px !important;
  height: 17px !important;
  z-index: 6 !important;
  margin-top: 0;
}
@media (min-width: 768px) {
  #case_studies .modal .swiper-button-prev,
  #case_studies .modal .swiper-button-next {
    width: 20px !important;
    height: 32px !important;
  }
}
#case_studies .modal .swiper-button-prev {
  left: -20px !important;
  background: url(/asset/images/business/modal_arrow_prev.svg) no-repeat center !important;
  background-size: contain !important;
}
@media (min-width: 768px) {
  #case_studies .modal .swiper-button-prev {
    left: -50px !important;
  }
}
@media (min-width: 1366px) {
  #case_studies .modal .swiper-button-prev {
    left: -80px !important;
  }
}
#case_studies .modal .swiper-button-next {
  right: -20px !important;
  background: url(/asset/images/business/modal_arrow_next.svg) no-repeat center !important;
  background-size: contain !important;
}
@media (min-width: 768px) {
  #case_studies .modal .swiper-button-next {
    right: -50px !important;
  }
}
@media (min-width: 1366px) {
  #case_studies .modal .swiper-button-next {
    right: -80px !important;
  }
}
#case_studies {
  /* =========================================
  	スライドタイトル表示（左下）
  ========================================= */
}
#case_studies .modal__title {
  z-index: 3;
  position: absolute;
  bottom: -22px;
  left: 0;
  color: #fff;
  font-size: 16px;
  pointer-events: none;
  font-size: 1rem;
}
@media (min-width: 768px) {
  #case_studies .modal__title {
    font-size: 1.4rem;
    bottom: -33px;
  }
}
#case_studies {
  /* =========================================
  	ページ番号（右下）
  ========================================= */
}
#case_studies .modal .swiper-pagination {
  position: absolute;
  bottom: -22px !important;
  right: 0 !important;
  width: auto !important;
  left: auto !important;
  color: #fff;
  font-size: 1rem;
}
@media (min-width: 768px) {
  #case_studies .modal .swiper-pagination {
    font-size: 1.4rem;
    bottom: -33px !important;
  }
}
#case_studies {
  /* =========================================
  	サムネイル用
  ========================================= */
}
#case_studies .thumb-swiper {
  margin-top: 12px;
}
@media (min-width: 1024px) {
  #case_studies .thumb-swiper {
    margin-top: 30px;
  }
}
#case_studies .thumb-swiper img {
  width: 100%;
  height: auto;
  display: block;
}
#case_studies {
  /* ▼ サムネイル共通 */
}
#case_studies .thumb-swiper .swiper-slide {
  border-radius: 6px;
  height: auto;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
#case_studies .thumb-swiper .swiper-slide:last-of-type {
  margin-right: 0 !important;
}
#case_studies .thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
}
#case_studies {
  /* ドット */
}
#case_studies .thumb-pagination {
  text-align: center;
  margin-top: 8px;
}
#case_studies .thumb-pagination span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #D3D6E0;
  margin: 0 8px;
  cursor: pointer;
}
@media (min-width: 768px) {
  #case_studies .thumb-pagination span {
    width: 10px;
    height: 10px;
    margin: 0 16px;
  }
}
#case_studies .thumb-pagination span.active {
  background-color: #064888; /* アクティブ色 */
}

/*---------------------------------
  company
---------------------------------*/
#company .container {
  margin-bottom: 120px;
}
@media (min-width: 768px) {
  #company .container {
    margin-bottom: 160px;
  }
}
#company .container .inner {
  margin-left: 26px;
  margin-right: 26px;
}
@media (min-width: 1024px) {
  #company .container .inner {
    width: 79.06%;
    margin: 0 auto;
  }
}
@media (min-width: 1366px) {
  #company .container .inner {
    max-width: 1080px;
    width: auto;
  }
}
#company .container .page_nav {
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  #company .container .page_nav {
    max-width: 960px;
    margin: 0 auto 154px;
    display: flex;
    justify-content: center;
    gap: 60px;
  }
}
#company .container .page_nav a {
  margin: 0 auto 16px;
  font-weight: 700;
}
#company .container .section {
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  #company .container .section {
    margin-bottom: 160px;
  }
}
#company .container .section h3 {
  font-size: 2.4rem;
  font-weight: 600;
}
#company .container #top_message .catch {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  #company .container #top_message .catch {
    font-size: 1.8rem;
  }
}
#company .container #top_message .sign {
  margin-top: 20px;
  margin-left: auto;
  width: 120px;
}
@media (min-width: 1024px) {
  #company .container #top_message .sign {
    width: 170px;
  }
}
#company .container #outline dl {
  border-bottom: 1px solid #D3D6E0;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  #company .container #outline dl {
    display: flex;
    align-items: center;
  }
}
#company .container #outline dl dt {
  color: #064889;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  #company .container #outline dl dt {
    width: 180px;
    flex: none;
  }
}
@media (min-width: 1024px) {
  #company .container #outline dl dd {
    flex: 1;
  }
}
#company .container #history dl {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  #company .container #history dl {
    display: flex;
  }
}
#company .container #history dl dt {
  color: #064889;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  #company .container #history dl dt {
    width: 130px;
    flex: none;
  }
}
#company .container #history dl dt::before {
  content: "";
  background-color: #064889;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
}
#company .container #history dl dd {
  margin-left: 1.7rem;
}
@media (min-width: 1024px) {
  #company .container #history dl dd {
    flex: 1;
  }
}
#company .container .btn_box a {
  margin: 0 auto;
}

/*---------------------------------
  office
---------------------------------*/
#office .container {
  margin-bottom: 2px;
}
#office .container .inner {
  margin-left: 26px;
  margin-right: 26px;
}
#office .container .intro {
  background-color: #F7FAFD;
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  #office .container .intro {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 160px;
  }
}
#office .container .intro .inner {
  margin: 0;
}
@media (min-width: 1024px) {
  #office .container .intro .inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    max-width: 79.06%;
    margin: 0 auto;
  }
}
#office .container .intro .ph {
  text-align: center;
}
@media (min-width: 1024px) {
  #office .container .intro .ph {
    width: 50%;
    border-radius: 6px;
    overflow: hidden;
  }
}
#office .container .intro .detail {
  padding: 24px 26px;
}
@media (min-width: 1024px) {
  #office .container .intro .detail {
    width: 47.78%;
    margin-bottom: 0;
  }
}
#office .container .intro .detail h3 {
  font-size: 2.4rem;
  color: #064889;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  #office .container .intro .detail h3 {
    font-size: 2.8rem;
  }
}
#office .container .section {
  padding-bottom: 80px;
}
@media (min-width: 1024px) {
  #office .container .section {
    margin: 0 auto 160px;
    max-width: 90%;
    display: flex;
    justify-content: space-between;
  }
  #office .container .section:nth-child(odd) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1366px) {
  #office .container .section {
    max-width: 1080px;
  }
}
@media (min-width: 1024px) {
  #office .container .section .ph {
    width: 55.56%;
  }
}
#office .container .section .detail {
  padding: 16px 26px 0;
}
@media (min-width: 1024px) {
  #office .container .section .detail {
    width: 38.52%;
    padding: 0;
  }
}
#office .container .section h3 {
  font-size: 2.4rem;
  font-weight: 700;
  border-bottom: 1px solid #D3D6E0;
  padding-bottom: 8px;
  margin-bottom: 15px;
  color: #003366;
}
@media (min-width: 1024px) {
  #office .container .section h3 {
    font-size: 2.8rem;
  }
}
#office .container .section .lead {
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  #office .container .section .lead {
    margin-bottom: 24px;
  }
}
#office .container .btn_box {
  margin-bottom: 120px;
}
@media (min-width: 1024px) {
  #office .container .btn_box {
    margin-bottom: 160px;
  }
}
#office .container .btn_box a {
  margin: 0 auto;
}

/*---------------------------------
  recruit
---------------------------------*/
#recruit .container {
  margin-bottom: 120px;
}
@media (min-width: 768px) {
  #recruit .container {
    margin-bottom: 160px;
  }
}
#recruit .container .inner {
  margin-left: 26px;
  margin-right: 26px;
}
@media (min-width: 1024px) {
  #recruit .container .inner {
    width: 79.06%;
    margin: 0 auto;
  }
}
@media (min-width: 1366px) {
  #recruit .container .inner {
    max-width: 1080px;
    width: auto;
  }
}
#recruit .container .section {
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  #recruit .container .section {
    margin-bottom: 160px;
  }
}
#recruit .container .section h3 {
  font-size: 2.4rem;
  font-weight: 600;
}
#recruit .container .section dl {
  border-bottom: 1px solid #D3D6E0;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  #recruit .container .section dl {
    display: flex;
    align-items: center;
  }
}
#recruit .container .section dl dt {
  color: #064889;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  #recruit .container .section dl dt {
    width: 180px;
    flex: none;
  }
}
@media (min-width: 1024px) {
  #recruit .container .section dl dd {
    flex: 1;
  }
}
#recruit .container .btn_box {
  margin-top: 40px;
}
#recruit .container .btn_box a {
  margin: 0 auto;
}
#recruit .container #career .text strong {
  font-weight: 700;
  color: #064889;
}

/*---------------------------------
  craftsman
---------------------------------*/
@media (min-width: 768px) {
  #craftsman .container .profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#craftsman .container .profile .ph {
  border-radius: 4px;
  overflow: hidden;
  width: 74.3%;
  margin: 0 auto 24px;
}
@media (min-width: 768px) {
  #craftsman .container .profile .ph {
    width: 36.36%;
    margin: 0;
  }
}
@media (min-width: 768px) {
  #craftsman .container .profile .detail {
    width: 56.82%;
  }
}
#craftsman .container .profile .detail h3 {
  font-size: 2.4rem;
  font-weight: 600;
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid #D3D6E0;
}
@media (min-width: 768px) {
  #craftsman .container .profile .detail h3 {
    padding-bottom: 12px;
    margin-bottom: 24px;
  }
}
#craftsman .container .profile .detail .spec dl {
  display: flex;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  #craftsman .container .profile .detail .spec dl {
    margin-bottom: 24px;
  }
}
#craftsman .container .profile .detail .spec dl dt {
  display: inline-block;
  background-color: #003366;
  color: #fff;
  padding: 3px 6px;
  font-size: 1.8rem;
  line-height: 1;
  margin-right: 20px;
}
#craftsman .container .profile .detail .spec dl dd {
  color: #064889;
  font-size: 1.8rem;
}
#craftsman .container .profile .detail .btn_box {
  margin-top: 16px;
}
#craftsman .container .profile .detail .btn_box a {
  margin: 0 auto;
}
@media (min-width: 768px) {
  #craftsman .container .profile .detail .btn_box a {
    margin: 0;
  }
}
#craftsman.craftsman_index .container {
  margin-bottom: 120px;
}
@media (min-width: 768px) {
  #craftsman.craftsman_index .container {
    margin-bottom: 160px;
  }
}
#craftsman.craftsman_index .container .inner {
  margin-left: 26px;
  margin-right: 26px;
}
#craftsman.craftsman_index .container .section {
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  #craftsman.craftsman_index .container .section {
    max-width: 880px;
    margin: 0 auto 160px;
  }
}
@media (min-width: 768px) {
  #craftsman.craftsman_index .container .section:nth-child(even) .profile {
    flex-direction: row-reverse;
  }
}
#craftsman.craftsman_interview .container {
  margin-bottom: 120px;
}
@media (min-width: 768px) {
  #craftsman.craftsman_interview .container {
    margin-bottom: 160px;
  }
}
#craftsman.craftsman_interview .container .inner {
  margin-left: 26px;
  margin-right: 26px;
}
#craftsman.craftsman_interview .container .profile {
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  #craftsman.craftsman_interview .container .profile {
    margin-bottom: 120px;
  }
}
@media (min-width: 1024px) {
  #craftsman.craftsman_interview .container .section {
    max-width: 1080px;
    margin: 0 auto;
  }
}
#craftsman.craftsman_interview .container .interview h3 {
  font-size: 2rem;
}
@media (min-width: 1024px) {
  #craftsman.craftsman_interview .container .interview h3 {
    font-size: 2.4rem;
  }
}
#craftsman.craftsman_interview .container .interview .item {
  margin-bottom: 80px;
}
@media (min-width: 1024px) {
  #craftsman.craftsman_interview .container .interview .item {
    margin-bottom: 120px;
  }
}
#craftsman.craftsman_interview .container .interview .item .text {
  padding-left: 3rem;
}
#craftsman.craftsman_interview .container .interview .btn_box a {
  margin: 0 auto;
}

/*---------------------------------
  contact
---------------------------------*/
#contact .container .inner {
  margin-left: 25px;
  margin-right: 25px;
  margin-bottom: 120px;
}
@media (min-width: 1024px) {
  #contact .container .inner {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 70px;
  }
}
#contact .container .lead {
  margin-bottom: 30px;
}
@media (min-width: 1024px) {
  #contact .container .lead {
    margin-bottom: 114px;
  }
}
#contact .container .form_area dl {
  border-top: 1px solid #D3D6E0;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (min-width: 1024px) {
  #contact .container .form_area dl {
    display: flex;
    align-items: center;
  }
}
#contact .container .form_area dl dt {
  color: #275585;
  margin-bottom: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 1024px) {
  #contact .container .form_area dl dt {
    margin-bottom: 0;
    width: 230px;
    flex: none;
  }
}
#contact .container .form_area dl dd {
  flex: 1;
}
@media (min-width: 1024px) {
  #contact .container .form_area dl.form_message {
    align-items: flex-start;
  }
}
#contact .container .form_area .items {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  #contact .container .form_area .items {
    flex-direction: row;
  }
}
#contact .container .form_area .items label {
  display: flex;
  align-items: center;
  margin-right: 3rem;
  margin-bottom: 5px;
}
#contact .container .form_area .items label span {
  display: block;
  margin-left: 7px;
}
#contact .container .form_area input[type=checkbox] {
  -webkit-appearance: none;
          appearance: none;
  border: 1px solid #D3D6E0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
#contact .container .form_area input[type=checkbox]:checked {
  background-color: #003366;
  border-color: #003366;
}
#contact .container .form_area input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 1px;
  width: 8px;
  height: 13px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#contact .container .form_area .txt, #contact .container .form_area .textarea {
  border: 1px solid #D3D6E0;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  font-size: 1.6rem;
}
#contact .container .form_area .required {
  display: inline-block;
  background-color: #CC2727;
  color: #fff;
  margin-left: 16px;
  font-size: 1.2rem;
  padding: 3px;
}
#contact .container .note {
  margin-bottom: 40px;
}
#contact .container .note a {
  color: #003366;
  text-decoration: underline;
}
#contact .container .submit_area.confirm {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
#contact .container .submit_area label {
  cursor: pointer;
  margin: 0 auto;
}
#contact .container .submit_area input {
  -webkit-appearance: none;
          appearance: none;
  background: inherit;
  border: none;
  cursor: pointer;
  color: inherit;
  font-size: 2rem;
}
#contact .container .thanks_message p {
  text-align: center;
}
#contact .container .thanks_message .catch {
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 1.6rem;
}
@media (min-width: 1024px) {
  #contact .container .thanks_message .catch {
    font-size: 2.4rem;
  }
}