@charset "UTF-8";
/***************************

_mixin.scss

***************************/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

/***************************

_variables.scss

***************************/
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.txtleft {
  text-align: left; }

.ml40 {
  margin-left: 40px; }

.mr40 {
  margin-right: 40px; }

.mt45 {
  margin-top: 45px; }

.mb60 {
  margin-bottom: 60px; }

.mb100 {
  margin-bottom: 100px; }

.mb130 {
  margin-bottom: 130px; }

.mb30 {
  margin-bottom: 30px; }

.mb-5 {
  margin-bottom: 5px; }

.mt20 {
  margin-top: 20px; }

.mt10 {
  margin-top: 10px; }

.mb150 {
  margin-bottom: 150px; }

.mb170 {
  margin-bottom: 170px; }

.pt10 {
  padding-top: 10px; }

.block {
  display: block; }

.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

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

.bold {
  font-weight: bold; }

.jost {
  font-family: 'Jost', sans-serif;
  font-weight: 600; }

@use "variables"as v;
/***************************

_common.scss

***************************/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  font-size: 16px;
  color: #001931;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%; }

a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
  -ms-transition: .3s; }

a:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.65; }

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

li {
  margin: 0;
  list-style: none; }

ul,
ol {
  margin: 0;
  padding: 0; }

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

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

b,
strong {
  font-weight: bolder; }

small {
  font-size: 80%; }

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle; }

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0; }

button {
  border: none; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

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

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

textarea {
  overflow: auto; }

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

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

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

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse; }

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

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

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

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

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end; }

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

/*margin*/
.mt-10 {
  margin-top: 10px; }

.mt-20 {
  margin-top: 20px; }

.mt-30 {
  margin-top: 30px; }

.mt-40 {
  margin-top: 40px; }

.mt-50 {
  margin-top: 50px; }

.mt-60 {
  margin-top: 60px; }

.mt-70 {
  margin-top: 70px; }

.mt-80 {
  margin-top: 80px; }

.mt-90 {
  margin-top: 90px; }

.mt-100 {
  margin-top: 100px; }

.mb-10 {
  margin-bottom: 10px; }

.mb-20 {
  margin-bottom: 20px; }

.mb-30 {
  margin-bottom: 30px; }

.mb-40 {
  margin-bottom: 40px; }

.mb-50 {
  margin-bottom: 50px; }

.mb-60 {
  margin-bottom: 60px; }

.mb-70 {
  margin-bottom: 70px; }

.mb-80 {
  margin-bottom: 80px; }

.mb-90 {
  margin-bottom: 90px; }

.mb-100 {
  margin-bottom: 100px; }

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%; }

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  margin: 2px;
  padding: 0 .3em;
  width: 100%; }

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus {
  outline: none;
  border-color: #000; }

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0; }

input[type=number] {
  -moz-appearance: textfield; }

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: .5em;
  width: auto;
  min-width: 7em; }

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  padding: 0 .3em;
  resize: vertical;
  width: 100%; }

textarea:focus {
  outline: none;
  border-color: #000; }

input[type=checkbox],
input[type=radio] {
  background: #FFF;
  cursor: pointer;
  margin-right: .5em; }

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  font-size: 1.4rem;
  color: #C5C5C5; }

textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  font-size: 1.4rem;
  color: #C5C5C5; }

textarea::-ms-input-placeholder,
input::-ms-input-placeholder {
  font-size: 1.4rem;
  color: #C5C5C5; }

textarea::placeholder,
input::placeholder {
  font-size: 1.4rem;
  color: #C5C5C5; }

/* wordpress pager */
.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 35px;
  margin-bottom: 60px;
  max-width: 100%;
  padding: 30px 0;
  position: relative; }

.pager a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  position: relative;
  line-height: 1.42857143;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #000;
  font-weight: bold;
  margin: 5px;
  padding: 5px 10px; }

.pc .pager a:active,
.pc .pager a:hover,
.pc .pager a:focus {
  border-color: #000;
  color: #000; }

.pager .previous,
.pager .next,
.pager .back {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.pager .previous a {
  padding-left: 1.5em; }

.pager .previous a:before {
  content: "≪";
  position: absolute;
  left: 5px;
  top: 4px; }

.pager .next a {
  padding-right: 1.5em; }

.pager .next a:after {
  content: "≫";
  position: absolute;
  right: 5px;
  top: 4px; }

.pager .back a {
  padding: 5px; }

/* wordpress pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center; }

.pagination > li {
  position: relative; }

.pagination > li > span,
.pagination > li > a {
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #231815;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0; }

.pagination > li > span {
  border-color: #231815;
  cursor: default; }

.pc .pagination > li > a:active,
.pc .pagination > li > a:hover,
.pc .pagination > li > a:focus {
  border-color: #000;
  color: #000; }

.pagination > li span.dot {
  border: none;
  width: 1em; }

/* wordpress wp-pagenavi */
.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center; }

.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.6rem;
  border-radius: 100%;
  border: 1px solid #000;
  color: #000;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0; }

.wp-pagenavi .current {
  border: 0;
  color: #fff;
  background: #000;
  font-weight: normal; }

.wp-pagenavi a:hover {
  border: 1px solid #000; }

/* wordpress breadcrumbs */
.txt_ellipsis .breadcrumbs span:last-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 130px;
  display: inline-block;
  vertical-align: bottom; }

.breadcrumbs {
  font-size: 1.2rem; }

.breadcrumbs .container {
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2; }

.breadcrumbs ul,
.breadcrumbs ol {
  list-style: none;
  padding: 0; }

.breadcrumbs li {
  display: inline; }

.breadcrumbs li:before {
  content: ">";
  margin: 0 10px; }

.breadcrumbs li:first-child:before {
  display: none; }

.breadcrumbs a {
  color: #231815;
  text-decoration: none; }

.breadcrumbs a:hover {
  color: #000; }

@media screen and (max-width: 560px) {
  .breadcrumbs {
    font-size: 1rem; }
  .breadcrumbs li:before {
    margin: 0 5px; } }

/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  content: "";
  display: table; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }

.slick-slide img {
  width: 100%;
  height: auto; }

[dir="rtl"] .slick-slide {
  float: right; }

.slick-slide img,
.slick-initialized .slick-slide {
  display: block; }

.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick/slick.woff") format("woff"), url("./fonts/slick/slick.ttf") format("truetype"), url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none; }

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent; }

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25; }

.slick-prev {
  left: 30px;
  background: url(img/common/btn-prev.png) no-repeat center center; }

.slick-next {
  right: 30px;
  background: url(img/common/btn-next.png) no-repeat center center; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0; }

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer; }

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer; }

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none; }

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1; }

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #AAA;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.slick-dots .slick-active button:before {
  color: #000;
  opacity: 0.75; }

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px); }

.slick-archive__item {
  padding: 5px; }

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative; }

.slick-archive__item a:hover {
  opacity: 0.65; }

.slick-archive__date {
  margin-top: 5px;
  display: block; }

.slick-archive__title {
  display: block;
  font-weight: bold; }

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: .2em 2em; }

@media screen and (max-width: 560px) {
  .slick-archive__date,
  .slick-archive__label {
    font-size: 1rem; }
  .slick-archive__title {
    font-size: 1.2rem; } }

/* toggle button */
.toggle {
  display: none; }

@media screen and (max-width: 768px) {
  .toggle {
    cursor: pointer;
    display: inline-block;
    background: none;
    border: none;
    outline: none;
    position: absolute;
    padding: 13px;
    right: 10px;
    text-align: center;
    top: 5px;
    z-index: 7;
    top: 14px; } }
  @media screen and (max-width: 768px) and (max-width: 550px) {
    .toggle {
      top: 27px; } }

@media screen and (max-width: 768px) {
  .toggle__bar {
    position: relative;
    margin: 8px auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .toggle__bar,
  .toggle__bar::before,
  .toggle__bar::after {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #001931;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s; }
  .toggle__bar::before,
  .toggle__bar::after {
    position: absolute;
    content: ""; }
  .toggle__bar {
    width: 30px; }
  .toggle__bar::after {
    width: 30px; }
  .toggle__bar::before {
    top: -8px; }
  .toggle__bar::after {
    top: 8px; }
  .toggle__title {
    font-size: 10px;
    font-size: 1rem;
    display: block;
    padding-top: 5px;
    width: 4em;
    white-space: nowrap; }
  .toggle__title:before {
    color: #001931; } }

.toggle[aria-expanded="true"] .toggle__bar {
  background-color: transparent; }

.toggle[aria-expanded="true"] .toggle__bar::before {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg); }

.toggle[aria-expanded="true"] .toggle__bar::after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
  width: 30px; }

@media screen and (max-width: 400px) {
  .toggle {
    right: 0;
    top: 33px; } }

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }

.fade.in {
  opacity: 1; }

/* Hamburger menu */
.collapse {
  display: none; }

.collapse nav ul.flexbox {
  -webkit-transform: translateX(-300px);
  transform: translateX(-300px); }

.collapse.in nav ul.flexbox {
  -webkit-transform: translateX(0);
  transform: translateX(0); }

.collapse.in {
  display: block; }

tr.collapse.in {
  display: table-row; }

tbody.collapse.in {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease; }

.gnav {
  line-height: 1.6;
  margin: 0; }

@media screen and (min-width: 769px) {
  .gnav {
    display: block !important;
    height: inherit !important; } }

@media screen and (max-width: 768px) {
  .gnav {
    position: absolute;
    left: 0;
    top: 65px;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #E8E8E8;
    -webkit-box-shadow: 0 1px 5px #E8E8E8;
    box-shadow: 0 1px 5px #E8E8E8;
    z-index: 6; } }

@media screen and (max-width: 540px) {
  .gnav {
    top: 85px; } }

/*////////////////////////

fonts

////////////////////////*/
/*////////////////////////

 header

////////////////////////*/
.fixedmenu {
  -webkit-box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.6);
  box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.6);
  z-index: 999; }

header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%; }

header .logo {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft; }

header nav {
  width: 100%; }

header nav ul {
  padding: 15px 0; }

@media screen and (max-width: 768px) {
  header {
    height: 65px; }
  header .logo {
    padding: 10px 0; }
  header nav {
    max-width: 1000px; }
  header nav ul.flexbox {
    display: block;
    margin: 5px 0 0 0;
    padding: 0;
    text-align: center; }
  header nav ul li {
    line-height: calc(80vh / 6); } }

/*////////////////////////

footer

////////////////////////*/
footer {
  background: #fff;
  color: #000;
  font-weight: normal; }

footer a,
footer a:hover {
  color: #000; }

footer .logo {
  margin: 0 0 20px 0; }

footer .sub-nav ul li {
  padding: 0 25px;
  border-right: 1px solid #ccc; }

footer small {
  width: 100%;
  margin: 20px auto 0 auto;
  padding: 15px 0;
  display: block;
  color: #fff;
  text-align: center;
  background: #333;
  font-weight: normal; }

@media screen and (max-width: 1000px) {
  footer .container_l > .flexbox {
    width: 100%;
    max-width: 700px;
    display: block; }
  footer .sub-nav {
    width: 100%; } }

@media screen and (max-width: 768px) {
  footer .sub-nav {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  footer .sub-nav ul {
    width: 33.33%;
    margin: 0 0 20px 0; } }

@media screen and (max-width: 450px) {
  footer .sub-nav ul {
    width: 50%;
    margin: 0 0 20px 0; } }

/*////////////////////////

 user common css

////////////////////////*/
main {
  margin-top: 80px; }

[class*="container_"] {
  width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px; }

.container_l {
  max-width: 1500px; }

.container_1400 {
  max-width: 1430px; }

.container_1200 {
  max-width: 1230px; }

.container_1080 {
  max-width: 1110px; }

.container_1000 {
  max-width: 1030px; }

.pc {
  display: block; }

.sp,
.sp_550,
.sp_400 {
  display: none; }

.txt_center {
  text-align: center; }

.txt_right {
  text-align: right; }

.vt_align_top {
  vertical-align: top; }

.wd_100 {
  width: 100%; }

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

@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none; } }

@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block; } }

.sp_550 {
  display: none; }

@media screen and (max-width: 550px) {
  .pc_550 {
    display: none; }
  .sp_550 {
    display: block; } }

.pc_768 {
  display: none; }

@media screen and (max-width: 768px) {
  .sp_768 {
    display: block; } }

.pc_500 {
  display: none !important; }

.sp_500 {
  display: none; }

@media screen and (max-width: 500px) {
  .sp_500 {
    display: block !important; } }

@media screen and (max-width: 400px) {
  .sp_400 {
    display: block !important; }
  .pc_400 {
    display: none !important; } }

.lh2 {
  line-height: 2; }

/*////////////////////////

mainvisual

////////////////////////*/
.top01 [class^="main--image"] {
  padding: 350px 0; }

.top01 .main--image01 {
  background: url(http://placehold.it/1500x600/eee/111) no-repeat center;
  background-size: cover; }

.top01 .main--image02 {
  background: url(http://placehold.it/1500x600/333/111) no-repeat center;
  background-size: cover; }

@media screen and (max-width: 768px) {
  .top01 [class^="main--image"] {
    padding: 250px 0; } }

@media screen and (max-width: 550px) {
  .top01 [class^="main--image"] {
    padding: 150px 0; } }

.title__center {
  text-align: center; }

.sec__title {
  font-size: 44px;
  color: #001931;
  display: inline-block;
  line-height: 1.4; }

.sec__bigtxt {
  font-size: 54px;
  color: #0057A9; }

.sec__subtitle {
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, sans-serif;
  font-size: 14px;
  text-align: center;
  display: block; }

.pagetop {
  cursor: pointer;
  display: block;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  width: 50px;
  height: 50px; }

@use "variables"as v;
/***************************

header

***************************/
.header {
  right: 0;
  background-color: #fff; }
  .header .border_bottom {
    border-bottom: 1px solid #E4E4E4; }
  @media screen and (max-width: 768px) {
    .header {
      height: 80px; } }
  @media screen and (max-width: 500px) {
    .header {
      height: 85px; } }

.header__logobox {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 30px; }
  @media screen and (max-width: 768px) {
    .header__logobox {
      border: none;
      padding-bottom: 0; } }

.logo__left {
  padding-top: 5px; }

.logo__txt {
  font-size: 12px;
  font-weight: bold;
  color: #ACACB0;
  line-height: 1;
  margin-bottom: 5px; }

@media screen and (max-width: 768px) {
  .logo__h1 {
    width: 80%;
    line-height: 1; } }

.logo__cont {
  position: relative; }

.logo__cont a {
  display: block;
  background-color: #0057A9;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 330px;
  padding: 15px 0 15px 1em; }

.logo__cont a::before {
  font-family: "Font Awesome 5 Free";
  content: '\f0e0';
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  position: absolute;
  left: 90px; }

.gnav__flex {
  padding: 12px 30px; }

.gnav__flex_item a {
  font-weight: bold;
  color: #001A31; }

.fixedmenu {
  -webkit-box-shadow: none;
          box-shadow: none; }

/***************************

footer

***************************/
.footer {
  background: url(../img/top/footer_bg.png) no-repeat center center/cover;
  color: #FFF; }
  .footer a {
    color: #fff; }
  .footer__flex {
    padding: 50px 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media screen and (max-width: 768px) {
      .footer__flex {
        padding: 50px 3% 0 3%; } }
    @media screen and (max-width: 650px) {
      .footer__flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        padding: 50px 0 0 7%; } }
    @media screen and (max-width: 400px) {
      .footer__flex {
        padding: 50px 15px 0 15px; } }

.footer__menubox {
  height: 85px;
  -webkit-column-count: 2;
          column-count: 2; }
  @media screen and (max-width: 768px) {
    .footer__menubox {
      height: auto; } }
  @media screen and (max-width: 650px) {
    .footer__menubox {
      -webkit-column-count: auto;
              column-count: auto; } }

.footer__menuitem {
  width: 150px;
  margin-bottom: 3px; }
  @media screen and (max-width: 768px) {
    .footer__menuitem {
      margin: 0 0 10px 1.5em;
      width: auto; } }
  @media screen and (max-width: 650px) {
    .footer__menuitem {
      margin: 0 0 10px 0; } }

.footer__menuitem a {
  font-size: 14px;
  font-weight: bold; }

@media screen and (max-width: 768px) {
  .add {
    margin-bottom: 30px; } }

.add__h1 {
  line-height: 1;
  margin-bottom: 10px; }

.add__h1 a {
  font-size: 20px; }

.footer small {
  font-family: "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro" 游ゴシック体, "Yu Gothic", YuGothic, sans-serif;
  font-size: 10px;
  background: none;
  padding-top: 120px; }
  @media screen and (max-width: 650px) {
    .footer small {
      padding-top: 50px; } }

@use "variables"as v;
/***************************

_index.scss

***************************/
.main {
  margin-top: 0; }

.mv {
  background: url(../img/top/mv.png) no-repeat center/cover;
  height: 100vh;
  position: relative; }
  @media screen and (max-width: 768px) {
    .mv {
      margin-top: 80px;
      height: 80vh; } }
  @media screen and (max-width: 500px) {
    .mv {
      height: 60vh; } }

.mv_titlebox {
  position: absolute;
  max-width: 950px;
  height: 114px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto; }

.mv_titletxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 98%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 auto; }
  .mv_titletxt p {
    width: 100%;
    display: inline-block;
    color: #fff;
    font-size: 3.6rem;
    font-weight: bold;
    text-align: right;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: 20px;
    white-space: nowrap; }
    @media screen and (max-width: 550px) {
      .mv_titletxt p {
        font-size: 2.6rem;
        margin-right: 5px; } }
    @media screen and (max-width: 450px) {
      .mv_titletxt p {
        font-size: 2rem;
        margin-right: 5px; } }
    @media screen and (max-width: 350px) {
      .mv_titletxt p {
        font-size: 1.6rem;
        margin-right: 5px; } }

.mv_titletxt::before {
  content: "";
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  background-size: 1px 2px;
  background-repeat: repeat-x;
  background-position: bottom;
  display: block;
  width: 100%;
  height: 25px;
  background-image: linear-gradient(to right, #fff, #fff 3px);
  margin-right: .7em; }
  @media screen and (max-width: 550px) {
    .mv_titletxt::before {
      height: 20px; } }
  @media screen and (max-width: 450px) {
    .mv_titletxt::before {
      height: 15px; } }
  @media screen and (max-width: 350px) {
    .mv_titletxt::before {
      height: 13px; } }

.belief {
  margin-bottom: 80px; }

.belief__bg {
  background: url(../img/top/belief_bg.png) no-repeat center/cover;
  padding: 80px 0; }

.belief__title {
  padding: 80px 83px 65px 83px;
  background-color: #fff;
  text-align: center; }
  @media screen and (max-width: 768px) {
    .belief__title {
      padding: 50px 60px; } }
  @media screen and (max-width: 500px) {
    .belief__title {
      padding: 40px 30px; } }
  .belief__title_imgbox {
    margin-bottom: 56px; }
    @media screen and (max-width: 500px) {
      .belief__title_imgbox {
        margin-bottom: 30px; } }
  .belief__title p {
    text-align: center; }
    @media screen and (max-width: 500px) {
      .belief__title p {
        text-align: justify; } }

.about__menuwrap {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.about__menu {
  width: 50%; }
  @media screen and (max-width: 768px) {
    .about__menu {
      width: 100%; } }
  .about__menu a {
    width: 100%;
    max-width: 750px;
    height: 320px;
    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;
    color: #fff;
    font-size: 29px;
    font-weight: bold; }
    @media screen and (max-width: 768px) {
      .about__menu a {
        height: 230px; } }
    @media screen and (max-width: 500px) {
      .about__menu a {
        height: 180px;
        font-size: 24px; } }

.about__menu1 a {
  background: url(../img/top/about_bg1-2.png) no-repeat center bottom/cover; }

.about__menu2 a {
  background: url(../img/top/about_bg2-2.png) no-repeat center bottom/cover; }

.about__menu3 a {
  background: url(../img/top/about_bg3.png) no-repeat center bottom/cover; }

.about__menu4 a {
  background: url(../img/top/about_bg4-4.png) no-repeat center bottom/cover; }

.contact {
  margin-top: 100px; }

.contact__bg {
  max-width: 1200px;
  margin: 0 auto;
  height: 140px;
  background: url(../img/top/contact_bg.png) no-repeat center/cover;
  margin-bottom: 85px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 50px; }
  @media screen and (max-width: 768px) {
    .contact__bg {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      height: auto;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 2em 1em; } }

.contact__title {
  font-size: 44px;
  color: #fff; }

.contact__txt {
  font-size: 14px; }

.contact__txtwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 1em; }
  @media screen and (max-width: 1130px) {
    .contact__txtwrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  @media screen and (max-width: 768px) {
    .contact__txtwrap {
      margin-bottom: 15px; } }

.contact__txtwrap,
.contact__linkbox {
  width: calc(50% - 30px); }
  @media screen and (max-width: 768px) {
    .contact__txtwrap,
    .contact__linkbox {
      width: 100%; } }

.contact__linkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.contact_p {
  position: relative;
  right: 0;
  left: 0;
  margin: 0 0 0 auto; }
  @media screen and (max-width: 768px) {
    .contact_p {
      margin: auto; } }

.contact_p a {
  display: block;
  background-color: #fff;
  color: #0057A9;
  font-weight: bold;
  text-align: center;
  width: 330px;
  padding: 15px 0 15px 1em; }
  @media screen and (max-width: 900px) {
    .contact_p a {
      width: 300px; } }
  @media screen and (max-width: 450px) {
    .contact_p a {
      width: 250px; } }
  @media screen and (max-width: 400px) {
    .contact_p a {
      width: 220px; } }

.contact_p a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0e0";
  font-size: 16px;
  font-weight: 900;
  color: #0057A9;
  position: absolute;
  left: 90px; }
  @media screen and (max-width: 900px) {
    .contact_p a::before {
      left: 70px; } }
  @media screen and (max-width: 450px) {
    .contact_p a::before {
      left: 50px; } }

.contact__txt {
  color: #fff; }

@use "variables"as v;
/***************************

_company.scss

***************************/
/***************************

下層共通

***************************/
.page {
  margin-top: 155px; }

.page_title {
  height: 300px;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 100px; }
  .page_title h2 {
    font-size: 4.4rem;
    line-height: 1.4;
    letter-spacing: 1px;
    text-align: center;
    color: #FFF;
    padding-top: 100px; }
    .page_title h2 span {
      font-size: 1.4rem;
      display: block; }

.breadcrumbs_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .breadcrumbs_ul li {
    position: relative;
    padding-left: 30px; }
  .breadcrumbs_ul li::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: -1px;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-top: 1px solid #001931;
    border-right: 1px solid #001931;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .breadcrumbs_ul li:first-of-type::after {
    display: none; }

.breadcrumbs_first_li {
  position: relative; }

.breadcrumbs_first_li a::before {
  font-family: "Font Awesome 5 Free";
  content: '\f015';
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  margin-right: 4px;
  color: #001931;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto; }

/***************************

個別

***************************/
.company_title {
  background-image: url(../img/company/page_title_bg.jpg); }

.company_info {
  padding: 0 15px; }

.company_info_dl {
  max-width: 780px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #C9C9C9; }
  .company_info_dl dt {
    width: 200px;
    background-color: #F6F6F6;
    font-weight: bold;
    padding: 15px 30px; }
    @media screen and (max-width: 600px) {
      .company_info_dl dt {
        width: 110px;
        padding: 15px 10px; } }
    @media screen and (max-width: 400px) {
      .company_info_dl dt {
        width: 100px;
        padding: 15px 5px; } }
    .company_info_dl dt .small {
      font-size: 1.2rem;
      font-weight: 400;
      display: block; }
  .company_info_dl dd {
    width: calc(100% - 200px);
    padding: 15px 35px; }
    .company_info_dl dd span {
      display: block;
      margin-bottom: 7px; }
    @media screen and (max-width: 600px) {
      .company_info_dl dd {
        width: calc(100% - 110px);
        padding: 15px 25px; } }
    @media screen and (max-width: 400px) {
      .company_info_dl dd {
        width: calc(100% - 100px);
        padding: 15px 3px; } }

.company_info_dl:first-of-type {
  border-top: 1px solid #C9C9C9; }

.company_history {
  background-color: #F5F9FA;
  padding: 80px 15px; }

.company_history_dl {
  max-width: 400px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.4rem;
  margin-bottom: 25px; }
  .company_history_dl dt {
    width: 100px; }
  .company_history_dl dd {
    width: calc(100% - 100px); }

.recruit_title {
  background-image: url(../img/recruit/page_title_bg.jpg); }

.recruit_msg h3 {
  font-size: 3.6rem; }
  @media screen and (max-width: 400px) {
    .recruit_msg h3 {
      font-size: 3rem; } }

.recruit_msg p {
  line-height: 2; }
  @media screen and (max-width: 500px) {
    .recruit_msg p {
      text-align: justify; } }

@media screen and (max-width: 400px) {
  .recruit_guide .sec__bigtxt {
    font-size: 4rem; } }

@media screen and (max-width: 400px) {
  .recruit_guide .sec__title {
    font-size: 3.4rem; } }

.recruit_guide .none_wrap {
  background-color: #F5F9FA;
  padding: 40px 15px; }
  .recruit_guide .none_wrap p {
    line-height: 2; }
    @media screen and (max-width: 500px) {
      .recruit_guide .none_wrap p {
        text-align: justify; } }

.recruit_guide .have_wrap dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #C9C9C9;
  font-size: 1.4rem; }
  @media screen and (max-width: 500px) {
    .recruit_guide .have_wrap dl {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.recruit_guide .have_wrap dl:first-of-type {
  border-top: 1px solid #C9C9C9; }

.recruit_guide .have_wrap dt {
  width: 200px;
  padding: 20px 0 20px 15px;
  font-weight: 600; }
  @media screen and (max-width: 600px) {
    .recruit_guide .have_wrap dt {
      width: 120px;
      padding: 20px 10px; } }
  @media screen and (max-width: 500px) {
    .recruit_guide .have_wrap dt {
      width: 100%; } }

.recruit_guide .have_wrap dd {
  width: calc(100% - 200px);
  padding: 20px 0 20px 5px; }
  @media screen and (max-width: 600px) {
    .recruit_guide .have_wrap dd {
      width: calc(100% - 120px);
      padding: 20px 10px 20px 15px; } }
  @media screen and (max-width: 500px) {
    .recruit_guide .have_wrap dd {
      width: 100%;
      padding: 5px 10px 20px 15px; } }

.recruit_guide .link_box {
  text-align: center; }
  .recruit_guide .link_box a {
    display: block;
    background-color: #001931;
    color: #fff;
    font-weight: 600;
    max-width: 280px;
    padding: 25px 50px;
    text-align: center;
    position: relative;
    margin: 55px auto 0; }
    @media screen and (max-width: 500px) {
      .recruit_guide .link_box a {
        padding: 25px 20px; } }
  .recruit_guide .link_box a::after {
    content: "\f30b";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    position: absolute;
    height: 19px;
    top: 0;
    bottom: 0;
    right: 32px;
    margin: auto;
    line-height: 18px; }
    @media screen and (max-width: 500px) {
      .recruit_guide .link_box a::after {
        padding: 25px 20px;
        line-height: 22px; } }

.contact_title {
  background-image: url(../img/contact/page_title_bg.jpg); }

.contact_form_flow .flow_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  max-width: 745px;
  overflow: hidden; }

.contact_form_flow .flow_li {
  background-color: #9BC7EE;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  width: calc(100% / 3);
  max-width: 240px;
  height: 70px;
  line-height: 70px;
  position: relative; }
  @media screen and (max-width: 550px) {
    .contact_form_flow .flow_li {
      font-size: 1.6rem; } }
  @media screen and (max-width: 500px) {
    .contact_form_flow .flow_li {
      line-height: 18px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .contact_form_flow .flow_li .jost {
    font-size: 2.2rem;
    margin-right: 20px; }
    @media screen and (max-width: 550px) {
      .contact_form_flow .flow_li .jost {
        font-size: 1.8rem;
        margin-right: 10px; } }
    @media screen and (max-width: 500px) {
      .contact_form_flow .flow_li .jost {
        font-size: 1.8rem;
        margin-right: 0; } }

.contact_form_flow .flow_ul .flow_li:first-of-type {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px; }

.contact_form_flow .flow_ul .flow_li:last-of-type {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px; }

.contact_form_flow .flow_li::after {
  position: absolute;
  content: "";
  display: inline-block;
  border-left: 40px solid #9BC7EE;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  top: 0;
  bottom: 0;
  right: -33px;
  margin: auto;
  z-index: 10; }
  @media screen and (max-width: 450px) {
    .contact_form_flow .flow_li::after {
      border-left: 20px solid #9BC7EE;
      right: -16px;
      top: -1px; } }

.contact_form_flow .flow_li::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -15px;
  right: -1em;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 38px 0 38px 38px;
  top: 0;
  bottom: 0;
  right: -36px;
  margin: auto;
  z-index: 10; }
  @media screen and (max-width: 450px) {
    .contact_form_flow .flow_li::before {
      border-width: 40px 0 40px 19px;
      right: -17px;
      top: -1px; } }

.contact_form_flow .flow_li:last-of-type::after,
.contact_form_flow .flow_li:last-of-type::before {
  display: none;
  z-index: 10; }

.contact_form_flow .current {
  border: #0057A9;
  background-color: #0057A9; }

.contact_form_flow .current::after {
  position: absolute;
  content: "";
  display: inline-block;
  border-left: 38px solid #0057A9;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
  top: 0;
  bottom: 0;
  right: -33px;
  margin: auto;
  z-index: 20; }
  @media screen and (max-width: 450px) {
    .contact_form_flow .current::after {
      border-left: 19px solid #0057A9;
      right: -16px;
      top: -1px; } }

.contact_form .txt p {
  font-size: 1.4rem; }

input[type="text"] {
  width: 100%;
  padding: 5px;
  font-size: 1.6rem; }

[type="radio"] {
  cursor: pointer; }

.form_wrap {
  width: 100%;
  margin: 0 auto; }
  .form_wrap input {
    max-width: 250px;
    width: 100%;
    height: 35px;
    border-radius: 5px; }

.form_dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #C9C9C9; }

.form_dl:first-of-type {
  border-top: 1px solid #C9C9C9; }

.icon_req {
  background-color: #001931;
  border: 2px solid #001931;
  color: #fff;
  padding: 2px 5px;
  font-size: 1.3rem;
  margin-right: 10px;
  font-weight: 600; }

.dinblo {
  display: inline-block; }

.icon_opt {
  background-color: transparent;
  border: 2px solid #001931;
  color: #001931;
  padding: 2px 5px;
  font-size: 1.3rem;
  margin-right: 10px;
  font-weight: 600; }

.form_dt {
  width: 220px;
  font-size: 1.4rem;
  font-weight: 600;
  background-color: #F6F6F6;
  padding: 20px 5px 20px 10px; }

.form_dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 220px);
  padding-left: 30px; }

@media screen and (max-width: 700px) {
  .form_dt {
    padding: 36px 5px 36px 10px; } }

@media screen and (max-width: 600px) {
  .form_wrap {
    max-width: 700px; }
  .form_dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .form_dt {
    width: 100%;
    font-size: 1.6rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 10px; }
  .form_dd {
    width: 100%;
    padding: 15px 0; }
  .form_wrap input {
    max-width: 600px; }
  .icon_req,
  .icon_opt {
    margin-left: 10px;
    margin-right: 0; } }

/* form radio */
.form_radio_dd {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media screen and (max-width: 600px) {
    .form_radio_dd {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }

.form_radio_dd label {
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  margin-right: 30px; }

@media screen and (max-width: 450px) {
  .form_radio_dd label {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0; } }

/* form radio custom inputカスタマイズ */
.form_radio_dd [type="radio"] {
  display: none; }

.form_radio_dd label {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 20px;
  cursor: pointer; }

.form_radio_dd label span::before,
.form_radio_dd label span::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100%;
  -webkit-transition: all .2s;
  transition: all .2s; }

.form_radio_dd label span::before {
  left: 0;
  width: 15px;
  height: 15px;
  background: #F4F4F4;
  border: 1px solid #D4D4D4; }

.form_radio_dd label span::after {
  opacity: 0;
  top: 0;
  bottom: 0;
  left: 4px;
  margin: auto;
  background: #001931; }

.form_radio_dd [type="radio"]:checked + span::before {
  background-color: #135DAB;
  border-color: #135DAB; }

.form_radio_dd [type="radio"]:checked + span::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1); }

/* form radio mwform */
.mwform-radio-field [type="radio"] {
  display: none; }

.mwform-radio-field label {
  position: relative;
  display: inline-block;
  padding: 3px 3px 3px 20px;
  cursor: pointer; }

.mwform-radio-field-text {
  padding-left: 10px; }

.mwform-radio-field-text::before,
.mwform-radio-field-text::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100%;
  -webkit-transition: all .2s;
  transition: all .2s; }

.mwform-radio-field-text::before {
  left: 0;
  width: 19px;
  height: 19px;
  background: #001931;
  border: 1px solid #001931; }

.mwform-radio-field-text::after {
  opacity: 0;
  left: 5px;
  width: 9px;
  height: 9px;
  background: #001931; }

.mwform-radio-field [type="radio"]:checked + span::before {
  background-color: #fff;
  border-color: #135DAB; }

.mwform-radio-field [type="radio"]:checked + span::after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1); }

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important; }

/* form checkbox */
.form_checkbox_dd {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.form_checkbox_dd label {
  cursor: pointer;
  font-size: 1.6rem;
  margin-right: 30px; }

@media screen and (max-width: 450px) {
  .form_checkbox_dd label {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0; } }

/* form checkbox mwform */
.mwform-checkbox-field [type="checkbox"] {
  display: none; }

.mwform-checkbox-field label {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  cursor: pointer; }

.mwform-checkbox-field label::before {
  width: 15px;
  height: 15px;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
  border: 1px solid #C9C9C9;
  border-radius: 3px; }

.mwform-checkbox-field-text::after {
  width: 10px;
  height: 6px;
  border: 2px solid #001931;
  content: '';
  position: absolute;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 3px;
  top: 5px;
  border-top: none;
  border-right: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0; }

.mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after {
  opacity: 1; }

/* textarea */
.form_textarea_dl {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .form_textarea_dl .form_dt {
    height: 340px; }
    @media screen and (max-width: 600px) {
      .form_textarea_dl .form_dt {
        height: auto; } }
  .form_textarea_dl .form_dd {
    padding: 20px 0 20px 30px; }
    @media screen and (max-width: 600px) {
      .form_textarea_dl .form_dd {
        padding: 15px 0; } }

.textarea {
  width: 100%;
  max-width: 650px;
  height: 300px;
  font-size: 1.6rem;
  padding: 5px;
  border-radius: 5px; }

/* pribacy policy */
.protect__box {
  margin: 30px 0; }
  .protect__box .recaptha_box {
    margin-bottom: 50px; }

.protect__txtbox {
  height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin: 0 auto;
  border: 1px solid #C9C9C9;
  border-radius: 5px;
  padding: 30px 0 10px;
  background-color: #fff; }

.protect__title {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px; }

.protect__subTitle {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px; }

.protect__txt01 {
  font-size: 14px;
  margin-bottom: 30px; }

.protect__txt01:last-of-type {
  margin-bottom: 0; }

.protect__list {
  margin-top: 10px; }

.protect__listtxt {
  display: list-item;
  list-style: inside;
  list-style-type: decimal; }

.contactAgree {
  text-align: center;
  max-width: 1000px;
  width: 100%;
  margin: 15px auto;
  padding: 28px 0;
  background-color: #fff; }
  .contactAgree [type="checkbox"] {
    display: none; }
  .contactAgree label {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    z-index: 0; }
  .contactAgree .mwform-checkbox-field-text::after {
    width: 10px;
    height: 6px;
    border: 2px solid #001931;
    content: '';
    position: absolute;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 3px;
    top: 5px;
    border-top: none;
    border-right: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0; }
  .contactAgree .mwform-checkbox-field-text {
    font-weight: 600; }
  .contactAgree .ca_txt {
    font-size: 1.4rem; }

.contactAgree input:checked + .span::after {
  opacity: 1; }

button {
  cursor: pointer; }

.form_wrap .link_box {
  text-align: center; }
  .form_wrap .link_box button {
    display: block;
    background-color: #001931;
    color: #fff;
    font-weight: 600;
    max-width: 280px;
    width: 100%;
    padding: 25px 10px;
    text-align: center;
    position: relative;
    margin: 55px auto 0;
    border: 1px solid #001931; }
    @media screen and (max-width: 500px) {
      .form_wrap .link_box button {
        padding: 25px 20px; } }
  .form_wrap .link_box button::after {
    content: "\f30b";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    position: absolute;
    height: 19px;
    top: 0;
    bottom: 0;
    right: 32px;
    margin: auto;
    line-height: 18px; }
    @media screen and (max-width: 500px) {
      .form_wrap .link_box button::after {
        padding: 25px 20px;
        line-height: 22px; } }

@media screen and (max-width: 350px) {
  .g-recaptcha {
    -webkit-transform: scale(0.9);
            transform: scale(0.9); } }

.confirm_link_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto; }
  @media screen and (max-width: 650px) {
    .confirm_link_wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }
  .confirm_link_wrap .reset button {
    background-color: #fff;
    border: 1px solid #001931;
    color: #001931; }
  .confirm_link_wrap .reset button::after {
    content: "\f30b";
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-size: 1.4rem;
    font-weight: 900;
    color: #001931;
    position: absolute;
    height: 19px;
    top: 0;
    bottom: 0;
    left: -190px;
    margin: auto;
    line-height: 21px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  .confirm_link_wrap .link_box {
    width: calc((100% - 30px) / 2);
    max-width: 310px; }
    @media screen and (max-width: 650px) {
      .confirm_link_wrap .link_box {
        width: 100%; } }
  .confirm_link_wrap button {
    width: 280px; }
  @media screen and (max-width: 650px) {
    .confirm_link_wrap .link_box:last-of-type button {
      margin-top: 20px; } }

.works_title {
  background-image: url(../img/works/page_title_bg.jpg); }

.works_design {
  margin-bottom: 100px; }
  .works_design .works_design_item {
    width: calc((100% - 60px) / 2); }
    @media screen and (max-width: 768px) {
      .works_design .works_design_item {
        width: 100%;
        max-width: 570px; } }
  @media screen and (max-width: 768px) {
    .works_design .works_design_item img {
      margin-bottom: 10px; } }
  .works_design .works_design_flex {
    margin-bottom: 80px; }
    @media screen and (max-width: 768px) {
      .works_design .works_design_flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
    .works_design .works_design_flex .txt_wrap {
      text-align: left; }
    .works_design .works_design_flex .inner_li_title {
      font-size: 2.4rem;
      font-weight: 600;
      margin-bottom: 35px; }

.works_others {
  padding: 80px 15px 100px;
  background-color: #F5F9FA; }

.works_common_flex {
  padding: 35px 0;
  border-bottom: 1px solid #ddd; }
  @media screen and (max-width: 900px) {
    .works_common_flex {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 35px 5px; } }
  .works_common_flex .works_common_dt {
    font-weight: 600;
    font-size: 1.8rem;
    width: 450px; }
    @media screen and (max-width: 900px) {
      .works_common_flex .works_common_dt {
        width: 100%;
        text-align: center;
        margin-bottom: 10px; } }
    @media screen and (max-width: 500px) {
      .works_common_flex .works_common_dt {
        text-align: left; } }
  .works_common_flex .works_common_dd {
    width: calc(100% - 450px);
    padding-left: 55px; }
    @media screen and (max-width: 900px) {
      .works_common_flex .works_common_dd {
        width: 100%;
        padding-left: 0;
        text-align: center; } }
    @media screen and (max-width: 500px) {
      .works_common_flex .works_common_dd {
        text-align: left; } }
  .works_common_flex .period {
    margin-left: 30px; }
    @media screen and (max-width: 500px) {
      .works_common_flex .period {
        display: block;
        margin: 5px 0 0 0; } }

.works_others .works_common_flex:first-of-type,
.works_dispatch .works_common_flex:first-of-type {
  border-top: 1px solid #ddd; }

.business_title {
  background-image: url(../img/business/page_title_bg.jpg); }

.busines_menu_wrap {
  margin-bottom: 100px; }
  @media screen and (max-width: 768px) {
    .busines_menu_wrap .busines_menu_ul {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .busines_menu_wrap .busines_menu_li {
    width: calc(100% / 5);
    border-right: 1px solid #AAA;
    height: 30px; }
    @media screen and (max-width: 768px) {
      .busines_menu_wrap .busines_menu_li {
        width: calc(100% / 3);
        height: auto;
        margin-bottom: 30px;
        border-right: none;
        border-left: 1px solid #aaa; } }
    @media screen and (max-width: 500px) {
      .busines_menu_wrap .busines_menu_li {
        width: calc(100% / 2); } }
  .busines_menu_wrap .busines_menu_li a {
    color: #0055A9;
    font-weight: 600;
    display: block;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.4; }
  .busines_menu_wrap .busines_menu_li a::after {
    display: block;
    font-family: "Font Awesome 5 Free";
    content: '\f107';
    font-size: 16px;
    font-weight: 900;
    color: #0055A9; }

.busines_menu_wrap .busines_menu_li:last-of-type {
  border-right: none; }
  @media screen and (max-width: 768px) {
    .busines_menu_wrap .busines_menu_li:last-of-type {
      border-right: 1px solid #AAA; } }

@media screen and (max-width: 768px) {
  .busines_menu_wrap .busines_menu_li:nth-of-type(3) {
    border-right: 1px solid #AAA; } }

@media screen and (max-width: 500px) {
  .busines_menu_wrap .busines_menu_li:nth-of-type(3) {
    border-right: none; } }

@media screen and (max-width: 500px) {
  .busines_menu_wrap .busines_menu_li:nth-of-type(2) {
    border-right: 1px solid #AAA; } }

@media screen and (max-width: 500px) {
  .busines_menu_wrap .busines_menu_li:nth-of-type(4) {
    border-right: 1px solid #AAA; } }

@media screen and (max-width: 900px) {
  .business_cts_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; } }

.business_cts_flex .img_wrap {
  width: calc((100% - 60px) / 2); }
  @media screen and (max-width: 900px) {
    .business_cts_flex .img_wrap {
      width: 100%;
      text-align: left;
      margin-bottom: 40px; } }

.business_cts_flex .txt_wrap {
  width: calc((100% - 60px) / 2); }
  @media screen and (max-width: 900px) {
    .business_cts_flex .txt_wrap {
      width: 100%;
      max-width: 570px;
      margin: 0 0 0 auto; } }
  .business_cts_flex .txt_wrap .inner_li_title {
    font-weight: 600;
    font-size: 2.4rem;
    color: #0055A9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .business_cts_flex .txt_wrap .inner_li_title .square {
      display: inline-block;
      width: 35px;
      height: 35px;
      background-color: #0056A9;
      color: #fff;
      margin-right: 15px;
      font-size: 1.8rem;
      line-height: 35px; }
    .business_cts_flex .txt_wrap .inner_li_title .main_txt {
      text-align: justify;
      line-height: 1; }
    .business_cts_flex .txt_wrap .inner_li_title .en_txt {
      margin-left: 20px;
      font-size: 1.2rem;
      color: #0055A9; }
      @media screen and (max-width: 400px) {
        .business_cts_flex .txt_wrap .inner_li_title .en_txt {
          margin-left: 0; } }
  .business_cts_flex .txt_wrap .inner_li_txt {
    text-align: justify;
    margin-bottom: 20px;
    line-height: 2; }

.ord1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1; }
  @media screen and (max-width: 900px) {
    .ord1 {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; } }

.ord2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2; }
  @media screen and (max-width: 900px) {
    .ord2 {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; } }
