@charset "UTF-8";
/*
Theme Name: at2
Theme URI: 
Description: at2 theme
Version: 1.0
Author: huevo
*/
/*////////////////////////////////////////////////////////////

Foundation

////////////////////////////////////////////////////////////*/
@import url(assets/scss/foundation/normalize.css);
/**
/* Base
============================================================*/
/**
* box-sizing
*
* padding、borderをwidthに含める
--------------------------------------------------*/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/**
* フォントの基本設定
--------------------------------------------------*/
html {
  font-size: 10px;
  line-height: 1.8;
  font-family: "游明朝", "Yu Mincho", "Noto Serif JP", "Sawarabi Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

body {
  font-size: 1.6rem;
  color: #373737;
}

/**
* 斜体をリセット
- - - - - - - - - - - - - - - - - - - - */
i,
cite,
em,
address,
dfn {
  font-style: normal;
}

/**
* 見出しの基本設定
- - - - - - - - - - - - - - - - - - - - */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  color: inherit;
  line-height: 2rem;
  font-weight: bold;
}

p {
  text-align: justify;
}

/**
* margin, paddingをリセット
--------------------------------------------------*/
/**
* 見出し
- - - - - - - - - - - - - - - - - - - - */
html, body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6,
ul, ol, dl,
blockquote, p, address,
hr,
table,
fieldset, figure,
pre {
  margin-top: 0;
  margin-bottom: 0;
}

/**
* list
- - - - - - - - - - - - - - - - - - - - */
li > ul, li > li {
  margin-left: 0;
}

/**
* dd
- - - - - - - - - - - - - - - - - - - - */
dd {
  margin-left: 0;
}

/**
* table
--------------------------------------------------*/
table {
  width: 100%;
}

table th {
  text-align: left;
}

/**
* リンクの基本設定
--------------------------------------------------*/
a {
  color: #000;
  text-decoration: none;
  outline: none;
}

a:visited {
  color: #000;
}

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

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

Layout

////////////////////////////////////////////////////////////*/
/*
/* flex-grid
============================================================*/
body {
  background-color: #fff;
  width: 100%;
  overflow-x: hidden;
}

@media only screen and (min-width: 768px) {
  body {
    padding: 0;
    width: 100%;
  }
}

/**
/* header
============================================================*/
.l-header {
  margin: 0;
  padding: 8px 0 8px 8px;
  width: 100%;
  height: 46px;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 9;
}

@media only screen and (min-width: 375px) {
  .l-header {
    padding: 10px 0 10px 15px;
    height: 60px;
  }
}

@media only screen and (min-width: 768px) {
  .l-header {
    padding: 0;
    background-color: transparent;
    height: auto;
    position: relative;
  }
  .l-header::before {
    content: '';
    width: 500px;
    height: 218px;
    background: url(assets/images/common/bg_vertical_line_gray.png);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

.l-header__index {
  padding: 0;
  background-color: transparent;
  position: absolute;
  top: 750px;
  left: 65px;
  mix-blend-mode: multiply;
}

.l-header__index::before {
  display: none;
}

/* main
------------------------------------------------------------*/
.main {
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (min-width: 768px) {
  .main {
    padding: 80px 0;
  }
}

/**
/* contents
============================================================*/
.l-contents {
  margin: 0 auto;
  padding: 46px 0 60px;
  width: 100%;
}

@media only screen and (min-width: 375px) {
  .l-contents {
    padding-top: 60px;
  }
}

@media only screen and (min-width: 768px) {
  .l-contents {
    padding-top: 105px;
    padding-bottom: 80px;
  }
}

/**
/* inner
============================================================*/
.l-inner {
  padding: 0 19.6px;
}

@media only screen and (min-width: 768px) {
  .l-inner {
    margin: 0 auto;
    padding: 0;
    width: 1080px;
  }
}

/* sidebar
------------------------------------------------------------*/
.sidebar {
  padding: 0 20px;
}

@media only screen and (min-width: 768px) {
  .sidebar {
    margin-right: 43px;
    padding: 0;
    width: 200px;
    float: right;
  }
}

/**
/* footer
============================================================*/
.l-footer {
  padding: 40px 20px 35px;
  width: 100%;
  background-color: #fff;
  position: relative;
}

@media only screen and (min-width: 375px) {
  .l-footer {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (min-width: 768px) {
  .l-footer {
    padding: 125px 0 95px;
  }
}

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

Object - Component

////////////////////////////////////////////////////////////*/
/**
/* breadcrumb ぱんくず
============================================================*/
.c-breadcrumbs {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.c-breadcrumbs li:nth-child(n + 2)::before {
  content: "»";
  margin: 0 10px;
}

/**
/* button
============================================================*/
.c-button {
  text-align: center;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.c-button__solid {
  background-color: #999;
  color: #fff;
}

.c-button__enclosed {
  background-color: #f5f5f5;
  border: 1px solid #999;
  color: #999;
}

.c-button__ghost {
  background-color: transparent;
  border: 1px solid #999;
  color: #999;
}

.c-button__chevron {
  position: relative;
}

.c-button__chevron i {
  display: block;
  margin-top: -6px;
  position: absolute !important;
  top: 50%;
  right: 16px;
  width: 6px;
  height: 12px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.c-button__chevron i::before, .c-button__chevron i::after {
  content: '';
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  display: block;
  position: absolute;
}

.c-button__chevron i::before {
  border-color: transparent transparent transparent #999;
  left: 0;
}

.c-button__chevron i::after {
  border-color: transparent transparent transparent #fff;
  top: 0;
  left: -2px;
}

.c-button__chevron_wh {
  position: relative;
}

.c-button__chevron_wh i {
  display: block;
  margin-top: -6px;
  position: absolute !important;
  top: 50%;
  right: 16px;
  width: 6px;
  height: 12px;
  background: #999;
  position: relative;
  overflow: hidden;
}

.c-button__chevron_wh i::before, .c-button__chevron_wh i::after {
  content: '';
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  display: block;
  position: absolute;
}

.c-button__chevron_wh i::before {
  border-color: transparent transparent transparent #fff;
  left: 0;
}

.c-button__chevron_wh i::after {
  border-color: transparent transparent transparent #999;
  top: 0;
  left: -2px;
}

.c-button__arrow_bg {
  position: relative;
}

.c-button__arrow_bg::after {
  content: '';
  margin-top: -12px;
  width: 24px;
  height: 24px;
  background-image: url("assets/images/common/arrow_r_black.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
}

.c-button__arrow_awesome {
  position: relative;
}

.c-button__arrow_awesome::after {
  content: "";
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  line-height: 2rem;
  font-family: 'FontAwesome';
  color: #999;
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

/*
/* chevron
============================================================*/
.c-chevron_top {
  width: 20px;
  height: 10px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.c-chevron_top::before, .c-chevron_top::after {
  content: '';
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  display: block;
  position: absolute;
}

.c-chevron_top::before {
  border-color: transparent transparent #999 transparent;
  top: -10px;
}

.c-chevron_top::after {
  top: -8px;
  border-color: transparent transparent #fff transparent;
}

.c-chevron_right {
  width: 10px;
  height: 20px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.c-chevron_right::before, .c-chevron_right::after {
  content: '';
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  display: block;
  position: absolute;
}

.c-chevron_right::before {
  border-color: transparent #999 transparent transparent;
  right: 0;
}

.c-chevron_right::after {
  border-color: transparent #fff transparent transparent;
  top: 0;
  right: -2px;
}

.c-chevron_bottom {
  width: 20px;
  height: 10px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.c-chevron_bottom::before, .c-chevron_bottom::after {
  content: '';
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  display: block;
  position: absolute;
}

.c-chevron_bottom::before {
  border-color: #999 transparent transparent transparent;
  bottom: -10px;
}

.c-chevron_bottom::after {
  border-color: #fff transparent transparent transparent;
  bottom: -8px;
}

.c-chevron_left {
  width: 10px;
  height: 20px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.c-chevron_left::before, .c-chevron_left::after {
  content: '';
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  display: block;
  position: absolute;
}

.c-chevron_left::before {
  border-color: transparent transparent transparent #999;
  left: 0;
}

.c-chevron_left::after {
  border-color: transparent transparent transparent #fff;
  top: 0;
  left: -2px;
}

/*
/* flex-grid
============================================================*/
.c-row {
  display: flex;
  flex-wrap: wrap;
}

.c-row_left {
  justify-content: flex-start;
}

.c-row_right {
  justify-content: flex-end;
}

.c-row_center {
  justify-content: center;
}

.c-row_around {
  justify-content: space-around;
}

.c-row_between {
  justify-content: space-between;
}

.c-row_stretch {
  align-items: stretch;
}

.c-row_top {
  align-items: flex-start;
}

.c-row_middle {
  align-items: center;
}

.c-row_bottom {
  align-items: flex-end;
}

.c-col {
  width: 100%;
}

.c-col_gutter {
  padding: 19.6px;
}

.c-col__1 {
  width: 100%;
}

.c-col__2-1 {
  flex: 0 0 50%;
  max-width: 50%;
}

.c-col__3-1 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.c-col__3-2 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.c-col__4-1 {
  flex: 0 0 25%;
  max-width: 25%;
}

.c-col__4-2 {
  flex: 0 0 50%;
  max-width: 50%;
}

.c-col__4-3 {
  flex: 0 0 75%;
  max-width: 75%;
}

.c-col__5-1 {
  flex: 0 0 20%;
  max-width: 20%;
}

.c-col__5-2 {
  flex: 0 0 40%;
  max-width: 40%;
}

.c-col__5-3 {
  flex: 0 0 60%;
  max-width: 60%;
}

.c-col__5-4 {
  flex: 0 0 80%;
  max-width: 80%;
}

.c-col__6-1 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.c-col__6-2 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.c-col__6-3 {
  flex: 0 0 50%;
  max-width: 50%;
}

.c-col__6-4 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.c-col__6-5 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.c-col__7-1 {
  flex: 0 0 14.28571%;
  max-width: 14.28571%;
}

.c-col__7-2 {
  flex: 0 0 28.57143%;
  max-width: 28.57143%;
}

.c-col__7-3 {
  flex: 0 0 42.85714%;
  max-width: 42.85714%;
}

.c-col__7-4 {
  flex: 0 0 57.14286%;
  max-width: 57.14286%;
}

.c-col__7-5 {
  flex: 0 0 71.42857%;
  max-width: 71.42857%;
}

.c-col__7-6 {
  flex: 0 0 85.71429%;
  max-width: 85.71429%;
}

.c-col__8-1 {
  flex: 0 0 12.5%;
  max-width: 12.5%;
}

.c-col__8-2 {
  flex: 0 0 25%;
  max-width: 25%;
}

.c-col__8-3 {
  flex: 0 0 37.5%;
  max-width: 37.5%;
}

.c-col__8-4 {
  flex: 0 0 50%;
  max-width: 50%;
}

.c-col__8-5 {
  flex: 0 0 62.5%;
  max-width: 62.5%;
}

.c-col__8-6 {
  flex: 0 0 75%;
  max-width: 75%;
}

.c-col__8-7 {
  flex: 0 0 87.5%;
  max-width: 87.5%;
}

.c-col__9-1 {
  flex: 0 0 11.11111%;
  max-width: 11.11111%;
}

.c-col__9-2 {
  flex: 0 0 22.22222%;
  max-width: 22.22222%;
}

.c-col__9-3 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.c-col__9-4 {
  flex: 0 0 44.44444%;
  max-width: 44.44444%;
}

.c-col__9-5 {
  flex: 0 0 55.55556%;
  max-width: 55.55556%;
}

.c-col__9-6 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.c-col__9-7 {
  flex: 0 0 77.77778%;
  max-width: 77.77778%;
}

.c-col__9-8 {
  flex: 0 0 88.88889%;
  max-width: 88.88889%;
}

.c-col__10-1 {
  flex: 0 0 10%;
  max-width: 10%;
}

.c-col__10-2 {
  flex: 0 0 20%;
  max-width: 20%;
}

.c-col__10-3 {
  flex: 0 0 30%;
  max-width: 30%;
}

.c-col__10-4 {
  flex: 0 0 40%;
  max-width: 40%;
}

.c-col__10-5 {
  flex: 0 0 50%;
  max-width: 50%;
}

.c-col__10-6 {
  flex: 0 0 60%;
  max-width: 60%;
}

.c-col__10-7 {
  flex: 0 0 70%;
  max-width: 70%;
}

.c-col__10-8 {
  flex: 0 0 80%;
  max-width: 80%;
}

.c-col__10-9 {
  flex: 0 0 90%;
  max-width: 90%;
}

.c-col__11-1 {
  flex: 0 0 9.09091%;
  max-width: 9.09091%;
}

.c-col__11-2 {
  flex: 0 0 18.18182%;
  max-width: 18.18182%;
}

.c-col__11-3 {
  flex: 0 0 27.27273%;
  max-width: 27.27273%;
}

.c-col__11-4 {
  flex: 0 0 36.36364%;
  max-width: 36.36364%;
}

.c-col__11-5 {
  flex: 0 0 45.45455%;
  max-width: 45.45455%;
}

.c-col__11-6 {
  flex: 0 0 54.54545%;
  max-width: 54.54545%;
}

.c-col__11-7 {
  flex: 0 0 63.63636%;
  max-width: 63.63636%;
}

.c-col__11-8 {
  flex: 0 0 72.72727%;
  max-width: 72.72727%;
}

.c-col__11-9 {
  flex: 0 0 81.81818%;
  max-width: 81.81818%;
}

.c-col__11-10 {
  flex: 0 0 90.90909%;
  max-width: 90.90909%;
}

.c-col__12-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.c-col__12-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.c-col__12-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.c-col__12-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.c-col__12-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.c-col__12-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.c-col__12-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.c-col__12-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.c-col__12-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.c-col__12-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.c-col__12-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

@media only screen and (min-width: 320px) {
  .c-col__xsm_1 {
    width: 100%;
  }
  .c-col__xsm_2-1 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__xsm_3-1 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__xsm_3-2 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__xsm_4-1 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .c-col__xsm_4-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__xsm_4-3 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .c-col__xsm_5-1 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .c-col__xsm_5-2 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .c-col__xsm_5-3 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .c-col__xsm_5-4 {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .c-col__xsm_6-1 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .c-col__xsm_6-2 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__xsm_6-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__xsm_6-4 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__xsm_6-5 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .c-col__xsm_7-1 {
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }
  .c-col__xsm_7-2 {
    flex: 0 0 28.57143%;
    max-width: 28.57143%;
  }
  .c-col__xsm_7-3 {
    flex: 0 0 42.85714%;
    max-width: 42.85714%;
  }
  .c-col__xsm_7-4 {
    flex: 0 0 57.14286%;
    max-width: 57.14286%;
  }
  .c-col__xsm_7-5 {
    flex: 0 0 71.42857%;
    max-width: 71.42857%;
  }
  .c-col__xsm_7-6 {
    flex: 0 0 85.71429%;
    max-width: 85.71429%;
  }
  .c-col__xsm_8-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .c-col__xsm_8-2 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .c-col__xsm_8-3 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .c-col__xsm_8-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__xsm_8-5 {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .c-col__xsm_8-6 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .c-col__xsm_8-7 {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .c-col__xsm_9-1 {
    flex: 0 0 11.11111%;
    max-width: 11.11111%;
  }
  .c-col__xsm_9-2 {
    flex: 0 0 22.22222%;
    max-width: 22.22222%;
  }
  .c-col__xsm_9-3 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__xsm_9-4 {
    flex: 0 0 44.44444%;
    max-width: 44.44444%;
  }
  .c-col__xsm_9-5 {
    flex: 0 0 55.55556%;
    max-width: 55.55556%;
  }
  .c-col__xsm_9-6 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__xsm_9-7 {
    flex: 0 0 77.77778%;
    max-width: 77.77778%;
  }
  .c-col__xsm_9-8 {
    flex: 0 0 88.88889%;
    max-width: 88.88889%;
  }
  .c-col__xsm_10-1 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .c-col__xsm_10-2 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .c-col__xsm_10-3 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .c-col__xsm_10-4 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .c-col__xsm_10-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__xsm_10-6 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .c-col__xsm_10-7 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .c-col__xsm_10-8 {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .c-col__xsm_10-9 {
    flex: 0 0 90%;
    max-width: 90%;
  }
  .c-col__xsm_11-1 {
    flex: 0 0 9.09091%;
    max-width: 9.09091%;
  }
  .c-col__xsm_11-2 {
    flex: 0 0 18.18182%;
    max-width: 18.18182%;
  }
  .c-col__xsm_11-3 {
    flex: 0 0 27.27273%;
    max-width: 27.27273%;
  }
  .c-col__xsm_11-4 {
    flex: 0 0 36.36364%;
    max-width: 36.36364%;
  }
  .c-col__xsm_11-5 {
    flex: 0 0 45.45455%;
    max-width: 45.45455%;
  }
  .c-col__xsm_11-6 {
    flex: 0 0 54.54545%;
    max-width: 54.54545%;
  }
  .c-col__xsm_11-7 {
    flex: 0 0 63.63636%;
    max-width: 63.63636%;
  }
  .c-col__xsm_11-8 {
    flex: 0 0 72.72727%;
    max-width: 72.72727%;
  }
  .c-col__xsm_11-9 {
    flex: 0 0 81.81818%;
    max-width: 81.81818%;
  }
  .c-col__xsm_11-10 {
    flex: 0 0 90.90909%;
    max-width: 90.90909%;
  }
  .c-col__xsm_12-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .c-col__xsm_12-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .c-col__xsm_12-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .c-col__xsm_12-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__xsm_12-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .c-col__xsm_12-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__xsm_12-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .c-col__xsm_12-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__xsm_12-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .c-col__xsm_12-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .c-col__xsm_12-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
}

@media only screen and (min-width: 375px) {
  .c-col__sm_1 {
    width: 100%;
  }
  .c-col__sm_2-1 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__sm_3-1 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__sm_3-2 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__sm_4-1 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .c-col__sm_4-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__sm_4-3 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .c-col__sm_5-1 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .c-col__sm_5-2 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .c-col__sm_5-3 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .c-col__sm_5-4 {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .c-col__sm_6-1 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .c-col__sm_6-2 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__sm_6-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__sm_6-4 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__sm_6-5 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .c-col__sm_7-1 {
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }
  .c-col__sm_7-2 {
    flex: 0 0 28.57143%;
    max-width: 28.57143%;
  }
  .c-col__sm_7-3 {
    flex: 0 0 42.85714%;
    max-width: 42.85714%;
  }
  .c-col__sm_7-4 {
    flex: 0 0 57.14286%;
    max-width: 57.14286%;
  }
  .c-col__sm_7-5 {
    flex: 0 0 71.42857%;
    max-width: 71.42857%;
  }
  .c-col__sm_7-6 {
    flex: 0 0 85.71429%;
    max-width: 85.71429%;
  }
  .c-col__sm_8-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .c-col__sm_8-2 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .c-col__sm_8-3 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .c-col__sm_8-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__sm_8-5 {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .c-col__sm_8-6 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .c-col__sm_8-7 {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .c-col__sm_9-1 {
    flex: 0 0 11.11111%;
    max-width: 11.11111%;
  }
  .c-col__sm_9-2 {
    flex: 0 0 22.22222%;
    max-width: 22.22222%;
  }
  .c-col__sm_9-3 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__sm_9-4 {
    flex: 0 0 44.44444%;
    max-width: 44.44444%;
  }
  .c-col__sm_9-5 {
    flex: 0 0 55.55556%;
    max-width: 55.55556%;
  }
  .c-col__sm_9-6 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__sm_9-7 {
    flex: 0 0 77.77778%;
    max-width: 77.77778%;
  }
  .c-col__sm_9-8 {
    flex: 0 0 88.88889%;
    max-width: 88.88889%;
  }
  .c-col__sm_10-1 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .c-col__sm_10-2 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .c-col__sm_10-3 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .c-col__sm_10-4 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .c-col__sm_10-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__sm_10-6 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .c-col__sm_10-7 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .c-col__sm_10-8 {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .c-col__sm_10-9 {
    flex: 0 0 90%;
    max-width: 90%;
  }
  .c-col__sm_11-1 {
    flex: 0 0 9.09091%;
    max-width: 9.09091%;
  }
  .c-col__sm_11-2 {
    flex: 0 0 18.18182%;
    max-width: 18.18182%;
  }
  .c-col__sm_11-3 {
    flex: 0 0 27.27273%;
    max-width: 27.27273%;
  }
  .c-col__sm_11-4 {
    flex: 0 0 36.36364%;
    max-width: 36.36364%;
  }
  .c-col__sm_11-5 {
    flex: 0 0 45.45455%;
    max-width: 45.45455%;
  }
  .c-col__sm_11-6 {
    flex: 0 0 54.54545%;
    max-width: 54.54545%;
  }
  .c-col__sm_11-7 {
    flex: 0 0 63.63636%;
    max-width: 63.63636%;
  }
  .c-col__sm_11-8 {
    flex: 0 0 72.72727%;
    max-width: 72.72727%;
  }
  .c-col__sm_11-9 {
    flex: 0 0 81.81818%;
    max-width: 81.81818%;
  }
  .c-col__sm_11-10 {
    flex: 0 0 90.90909%;
    max-width: 90.90909%;
  }
  .c-col__sm_12-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .c-col__sm_12-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .c-col__sm_12-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .c-col__sm_12-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__sm_12-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .c-col__sm_12-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__sm_12-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .c-col__sm_12-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__sm_12-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .c-col__sm_12-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .c-col__sm_12-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
}

@media only screen and (min-width: 768px) {
  .c-col__md_1 {
    width: 100%;
  }
  .c-col__md_2-1 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__md_3-1 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__md_3-2 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__md_4-1 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .c-col__md_4-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__md_4-3 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .c-col__md_5-1 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .c-col__md_5-2 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .c-col__md_5-3 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .c-col__md_5-4 {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .c-col__md_6-1 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .c-col__md_6-2 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__md_6-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__md_6-4 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__md_6-5 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .c-col__md_7-1 {
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }
  .c-col__md_7-2 {
    flex: 0 0 28.57143%;
    max-width: 28.57143%;
  }
  .c-col__md_7-3 {
    flex: 0 0 42.85714%;
    max-width: 42.85714%;
  }
  .c-col__md_7-4 {
    flex: 0 0 57.14286%;
    max-width: 57.14286%;
  }
  .c-col__md_7-5 {
    flex: 0 0 71.42857%;
    max-width: 71.42857%;
  }
  .c-col__md_7-6 {
    flex: 0 0 85.71429%;
    max-width: 85.71429%;
  }
  .c-col__md_8-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .c-col__md_8-2 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .c-col__md_8-3 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .c-col__md_8-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__md_8-5 {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .c-col__md_8-6 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .c-col__md_8-7 {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .c-col__md_9-1 {
    flex: 0 0 11.11111%;
    max-width: 11.11111%;
  }
  .c-col__md_9-2 {
    flex: 0 0 22.22222%;
    max-width: 22.22222%;
  }
  .c-col__md_9-3 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__md_9-4 {
    flex: 0 0 44.44444%;
    max-width: 44.44444%;
  }
  .c-col__md_9-5 {
    flex: 0 0 55.55556%;
    max-width: 55.55556%;
  }
  .c-col__md_9-6 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__md_9-7 {
    flex: 0 0 77.77778%;
    max-width: 77.77778%;
  }
  .c-col__md_9-8 {
    flex: 0 0 88.88889%;
    max-width: 88.88889%;
  }
  .c-col__md_10-1 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .c-col__md_10-2 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .c-col__md_10-3 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .c-col__md_10-4 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .c-col__md_10-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__md_10-6 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .c-col__md_10-7 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .c-col__md_10-8 {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .c-col__md_10-9 {
    flex: 0 0 90%;
    max-width: 90%;
  }
  .c-col__md_11-1 {
    flex: 0 0 9.09091%;
    max-width: 9.09091%;
  }
  .c-col__md_11-2 {
    flex: 0 0 18.18182%;
    max-width: 18.18182%;
  }
  .c-col__md_11-3 {
    flex: 0 0 27.27273%;
    max-width: 27.27273%;
  }
  .c-col__md_11-4 {
    flex: 0 0 36.36364%;
    max-width: 36.36364%;
  }
  .c-col__md_11-5 {
    flex: 0 0 45.45455%;
    max-width: 45.45455%;
  }
  .c-col__md_11-6 {
    flex: 0 0 54.54545%;
    max-width: 54.54545%;
  }
  .c-col__md_11-7 {
    flex: 0 0 63.63636%;
    max-width: 63.63636%;
  }
  .c-col__md_11-8 {
    flex: 0 0 72.72727%;
    max-width: 72.72727%;
  }
  .c-col__md_11-9 {
    flex: 0 0 81.81818%;
    max-width: 81.81818%;
  }
  .c-col__md_11-10 {
    flex: 0 0 90.90909%;
    max-width: 90.90909%;
  }
  .c-col__md_12-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .c-col__md_12-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .c-col__md_12-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .c-col__md_12-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__md_12-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .c-col__md_12-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__md_12-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .c-col__md_12-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__md_12-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .c-col__md_12-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .c-col__md_12-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
}

@media only screen and (min-width: 980px) {
  .c-col__lg_1 {
    width: 100%;
  }
  .c-col__lg_2-1 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__lg_3-1 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__lg_3-2 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__lg_4-1 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .c-col__lg_4-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__lg_4-3 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .c-col__lg_5-1 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .c-col__lg_5-2 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .c-col__lg_5-3 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .c-col__lg_5-4 {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .c-col__lg_6-1 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .c-col__lg_6-2 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__lg_6-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__lg_6-4 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__lg_6-5 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .c-col__lg_7-1 {
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }
  .c-col__lg_7-2 {
    flex: 0 0 28.57143%;
    max-width: 28.57143%;
  }
  .c-col__lg_7-3 {
    flex: 0 0 42.85714%;
    max-width: 42.85714%;
  }
  .c-col__lg_7-4 {
    flex: 0 0 57.14286%;
    max-width: 57.14286%;
  }
  .c-col__lg_7-5 {
    flex: 0 0 71.42857%;
    max-width: 71.42857%;
  }
  .c-col__lg_7-6 {
    flex: 0 0 85.71429%;
    max-width: 85.71429%;
  }
  .c-col__lg_8-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .c-col__lg_8-2 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .c-col__lg_8-3 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .c-col__lg_8-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__lg_8-5 {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .c-col__lg_8-6 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .c-col__lg_8-7 {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .c-col__lg_9-1 {
    flex: 0 0 11.11111%;
    max-width: 11.11111%;
  }
  .c-col__lg_9-2 {
    flex: 0 0 22.22222%;
    max-width: 22.22222%;
  }
  .c-col__lg_9-3 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__lg_9-4 {
    flex: 0 0 44.44444%;
    max-width: 44.44444%;
  }

  .c-col__lg_9-5 {
    flex: 0 0 55.55556%;
    max-width: 55.55556%;
  }
  .c-col__lg_9-6 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__lg_9-7 {
    flex: 0 0 77.77778%;
    max-width: 77.77778%;
  }
  .c-col__lg_9-8 {
    flex: 0 0 88.88889%;
    max-width: 88.88889%;
  }
  .c-col__lg_10-1 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .c-col__lg_10-2 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .c-col__lg_10-3 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .c-col__lg_10-4 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .c-col__lg_10-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__lg_10-6 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .c-col__lg_10-7 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .c-col__lg_10-8 {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .c-col__lg_10-9 {
    flex: 0 0 90%;
    max-width: 90%;
  }
  .c-col__lg_11-1 {
    flex: 0 0 9.09091%;
    max-width: 9.09091%;
  }
  .c-col__lg_11-2 {
    flex: 0 0 18.18182%;
    max-width: 18.18182%;
  }
  .c-col__lg_11-3 {
    flex: 0 0 27.27273%;
    max-width: 27.27273%;
  }
  .c-col__lg_11-4 {
    flex: 0 0 36.36364%;
    max-width: 36.36364%;
  }
  .c-col__lg_11-5 {
    flex: 0 0 45.45455%;
    max-width: 45.45455%;
  }
  .c-col__lg_11-6 {
    flex: 0 0 54.54545%;
    max-width: 54.54545%;
  }
  .c-col__lg_11-7 {
    flex: 0 0 63.63636%;
    max-width: 63.63636%;
  }
  .c-col__lg_11-8 {
    flex: 0 0 72.72727%;
    max-width: 72.72727%;
  }
  .c-col__lg_11-9 {
    flex: 0 0 81.81818%;
    max-width: 81.81818%;
  }
  .c-col__lg_11-10 {
    flex: 0 0 90.90909%;
    max-width: 90.90909%;
  }
  .c-col__lg_12-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .c-col__lg_12-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .c-col__lg_12-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .c-col__lg_12-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__lg_12-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .c-col__lg_12-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__lg_12-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .c-col__lg_12-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__lg_12-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .c-col__lg_12-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .c-col__lg_12-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
}

@media only screen and (min-width: 1080px) {
  .c-col__xlg_1 {
    width: 100%;
  }
  .c-col__xlg_2-1 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__xlg_3-1 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__xlg_3-2 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__xlg_4-1 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .c-col__xlg_4-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__xlg_4-3 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .c-col__xlg_5-1 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .c-col__xlg_5-2 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .c-col__xlg_5-3 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .c-col__xlg_5-4 {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .c-col__xlg_6-1 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .c-col__xlg_6-2 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__xlg_6-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__xlg_6-4 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__xlg_6-5 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .c-col__xlg_7-1 {
    flex: 0 0 14.28571%;
    max-width: 14.28571%;
  }
  .c-col__xlg_7-2 {
    flex: 0 0 28.57143%;
    max-width: 28.57143%;
  }
  .c-col__xlg_7-3 {
    flex: 0 0 42.85714%;
    max-width: 42.85714%;
  }
  .c-col__xlg_7-4 {
    flex: 0 0 57.14286%;
    max-width: 57.14286%;
  }
  .c-col__xlg_7-5 {
    flex: 0 0 71.42857%;
    max-width: 71.42857%;
  }
  .c-col__xlg_7-6 {
    flex: 0 0 85.71429%;
    max-width: 85.71429%;
  }
  .c-col__xlg_8-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .c-col__xlg_8-2 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .c-col__xlg_8-3 {
    flex: 0 0 37.5%;
    max-width: 37.5%;
  }
  .c-col__xlg_8-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__xlg_8-5 {
    flex: 0 0 62.5%;
    max-width: 62.5%;
  }
  .c-col__xlg_8-6 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .c-col__xlg_8-7 {
    flex: 0 0 87.5%;
    max-width: 87.5%;
  }
  .c-col__xlg_9-1 {
    flex: 0 0 11.11111%;
    max-width: 11.11111%;
  }
  .c-col__xlg_9-2 {
    flex: 0 0 22.22222%;
    max-width: 22.22222%;
  }
  .c-col__xlg_9-3 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__xlg_9-4 {
    flex: 0 0 44.44444%;
    max-width: 44.44444%;
  }
  .c-col__xlg_9-5 {
    flex: 0 0 55.55556%;
    max-width: 55.55556%;
  }
  .c-col__xlg_9-6 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__xlg_9-7 {
    flex: 0 0 77.77778%;
    max-width: 77.77778%;
  }
  .c-col__xlg_9-8 {
    flex: 0 0 88.88889%;
    max-width: 88.88889%;
  }
  .c-col__xlg_10-1 {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .c-col__xlg_10-2 {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .c-col__xlg_10-3 {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .c-col__xlg_10-4 {
    flex: 0 0 40%;
    max-width: 40%;
  }
  .c-col__xlg_10-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__xlg_10-6 {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .c-col__xlg_10-7 {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .c-col__xlg_10-8 {
    flex: 0 0 80%;
    max-width: 80%;
  }
  .c-col__xlg_10-9 {
    flex: 0 0 90%;
    max-width: 90%;
  }
  .c-col__xlg_11-1 {
    flex: 0 0 9.09091%;
    max-width: 9.09091%;
  }
  .c-col__xlg_11-2 {
    flex: 0 0 18.18182%;
    max-width: 18.18182%;
  }
  .c-col__xlg_11-3 {
    flex: 0 0 27.27273%;
    max-width: 27.27273%;
  }
  .c-col__xlg_11-4 {
    flex: 0 0 36.36364%;
    max-width: 36.36364%;
  }
  .c-col__xlg_11-5 {
    flex: 0 0 45.45455%;
    max-width: 45.45455%;
  }
  .c-col__xlg_11-6 {
    flex: 0 0 54.54545%;
    max-width: 54.54545%;
  }
  .c-col__xlg_11-7 {
    flex: 0 0 63.63636%;
    max-width: 63.63636%;
  }
  .c-col__xlg_11-8 {
    flex: 0 0 72.72727%;
    max-width: 72.72727%;
  }
  .c-col__xlg_11-9 {
    flex: 0 0 81.81818%;
    max-width: 81.81818%;
  }
  .c-col__xlg_11-10 {
    flex: 0 0 90.90909%;
    max-width: 90.90909%;
  }
  .c-col__xlg_12-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .c-col__xlg_12-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .c-col__xlg_12-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .c-col__xlg_12-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .c-col__xlg_12-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .c-col__xlg_12-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .c-col__xlg_12-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .c-col__xlg_12-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .c-col__xlg_12-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .c-col__xlg_12-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .c-col__xlg_12-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
}

/**
/* global navigation
============================================================*/
.c-global-nav {
  padding: 0;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.c-global-nav > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.c-global-nav > ul > li {
  width: 100%;
}

.c-global-nav > ul > li > a {
  display: block;
}

@media only screen and (min-width: 768px) {
  .c-global-nav {
    height: auto;
    background-color: transparent;
    display: block;
    position: static;
  }
  .c-global-nav > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-global-nav > ul > li {
    width: auto;
  }
  .c-global-nav > ul > li > a {
    display: inline;
  }
}

.c-drawer {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
}

.c-global-btn {
  display: block;
}

@media only screen and (min-width: 768px) {
  .c-global-btn {
    display: none;
  }
}

.c-close-btn {
  display: block;
}

@media only screen and (min-width: 768px) {
  .c-close-btn {
    display: none;
  }
}

/*
/* media
============================================================*/
.c-media {
  display: flex;
}

.c-media__figure img {
  width: 100%;
  height: auto;
  display: block;
}

/*
/* notes
============================================================*/
.c-notes p {
  text-indent: -1.5rem;
  margin-left: 1.5rem;
}

.c-notes p:before {
  content: '※';
}

/*
/* overlay
============================================================*/
.c-overlay {
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  visibility: visible;
  opacity: 1;
}

.c-overlay_open {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s linear;
}

.c-loading {
  width: 40px;
  height: 40px;
  border: 3px solid #005d9a;
  border-right: 3px solid transparent;
  border-radius: 40px;
  animation: loading 1s linear infinite;
}

@keyframes loading {
  to {
  }
  from {
    transform: rotate(360deg);
    transform-origin: 50% 50%;
  }
}

@keyframes loading {
  0% {
  }
  50% {
    opacity: .6;
  }
  100% {
    transform: rotate(360deg);
    transform-origin: 50% 50%;
    opacity: .3;
  }
}

/**
/* switching tabs
============================================================*/
.c-tabs ul {
  list-style-type: none;
  margin-left: 0;
}

.c-tabs__tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}

.c-tabs__content li {
  background: #eee;
  padding: 20px;
}

.c-tabs__content li._.hide {
  display: none;
}

/*
/* toggle contents
============================================================*/
.c-toggle__btn {
  cursor: pointer;
}

.c-toggle__content {
  display: none;
}

/*
/* toggle tab contents
============================================================*/
.c-toggleTab {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.c-toggleTab__tab {
  cursor: pointer;
}

.c-toggleTab__contents {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.c-toggleTab__content.hide {
  display: none;
}

/* category list
------------------------------------------------------------*/
.category_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.category_list li {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .category_list li {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 40px;
    line-height: 4rem;
  }
}

.category_list li a:hover {
  border-bottom: 2px solid #005d9a;
  text-decoration: none;
}

.category_list li::after {
  content: '';
  margin: 0 10px;
  width: 1px;
  height: 16px;
  background-color: #373737;
  display: inline-block;
  position: relative;
  top: 2px;
}

@media only screen and (min-width: 768px) {
  .category_list li::after {
    margin: 0 15px;
  }
}

.category_list li:last-of-type {
  position: relative;
}

.category_list li:last-of-type::after {
  display: none;
}

.category_list .current {
  border-bottom: 2px solid #005d9a;
}

/* pagenation
------------------------------------------------------------*/
.pagination {
  width: 100%;
  margin: 40px auto 80px;
  text-align: center;
  display: block;
  position: relative;
}

.pagination h2.screen-reader-text {
  display: none;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination .page-numbers, .pagination .current {
  margin: 3px;
  height: 35px;
  width: 30px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 35px;
  line-height: 3.5rem;
  text-align: center;
  color: #000;
  text-decoration: none;
}

.pagination a.page-numbers:hover {
  border-bottom: 2px solid #000;
}

.pagination .current {
  border-bottom: 2px solid #000;
}

.pagination .prev, .pagination .next {
  padding: 0 10px !important;
  width: auto;
  height: 35px;
  background-color: #005d9a;
  padding: 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 35px;
  line-height: 3.5rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  display: block;
  position: absolute;
  top: 0;
}

.pagination .prev:hover, .pagination .next:hover {
  border-bottom: none !important;
}

.pagination .prev {
  left: 0;
}

.pagination .next {
  right: 0;
}

.pagenation_sp {
  margin-bottom: 40px;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pagenation_sp .prev, .pagenation_sp .next {
  width: 40%;
  height: 30px;
  background: none;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 30px;
  line-height: 3rem;
}

.pagenation_sp .prev a, .pagenation_sp .next a {
  padding: 0 20px;
  border: 1px solid #999;
  font-family: sans-serif;
  coolor: #4d4d4d;
  text-decoration: none;
  display: block;
}

.pagenation_sp .prev {
  text-align: left;
}

.pagenation_sp .next {
  text-align: right;
}

.pagenavi_single {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 768px) {
  .pagenavi_single {
    margin: 0 auto;
    width: 1080px;
  }
}

.pagenavi_single .prev, .pagenavi_single .next {
  position: relative;
}

.pagenavi_single .prev a, .pagenavi_single .next a {
  padding: 0 8px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 30px;
  line-height: 3rem;
  color: #fff;
  text-decoration: none;
  position: relative;
  display: block;
  background-color: #005d9a;
}

@media only screen and (min-width: 768px) {
  .pagenavi_single .prev a, .pagenavi_single .next a {
    padding: 0 15px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 44px;
    line-height: 4.4rem;
  }
}

.pagenavi_single .prev a {
  position: relative;
}

.pagenavi_single .prev a::before {
  margin-right: 10px;
  content: '';
  width: 9px;
  height: 9px;
  border: 1px solid;
  border-color: #fff transparent transparent #fff;
  transform: rotate(-45deg);
  display: inline-block;
}

.pagenavi_single .next a::after {
  content: '';
  margin-left: 10px;
  width: 9px;
  height: 9px;
  border: 1px solid;
  border-color: transparent #fff #fff transparent;
  transform: rotate(-45deg);
  display: inline-block;
}

.pagenavi_single .toindex {
  position: relative;
}

.pagenavi_single .toindex::after {
  content: '';
  margin: 0 auto;
  width: 12px;
  height: 12px;
  border: 1px solid;
  border-color: transparent transparent #373737 #373737;
  transform: rotate(-45deg);
  display: inline-block;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
}

@media only screen and (min-width: 768px) {
  .pagenavi_single .toindex {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 44px;
    line-height: 4.4rem;
    position: relative;
  }
  .pagenavi_single .toindex::after {
    width: 16px;
    height: 16px;
  }
}

.pagenavi_single .toindex a:hover {
  text-decoration: none;
}

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

Object - Project

////////////////////////////////////////////////////////////*/
/**
/* project - global navigation
============================================================*/
.test_row {
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.test_col {
  padding: 0 20px;
  width: calc(100% / 4);
  background-color: #d5d5d5;
}

.p-global-nav {
  padding-top: 48px;
  width: 100%;
  height: auto;
  background-color: #005d9a;
  z-index: 8;
}

.p-global-nav ul {
  height: auto;
}

.p-global-nav ul li {
  border-top: 1px solid #fff;
}

.p-global-nav ul li a {
  padding: 16px 15px;
  height: 47px;
  display: block;
  position: relative;
}

.p-global-nav ul li a img {
  width: auto;
  height: 15px;
  display: block;
}

.p-global-nav ul .p-global_tel {
  background-color: #fff;
}

.p-global-nav ul .p-global_tel a {
  padding: 0 15px;
  height: 55px;
}

.p-global-nav ul .p-global_tel a img {
  height: 55px;
}

@media only screen and (min-width: 375px) {
  .p-global-nav {
    padding-top: 62px;
  }
}

@media only screen and (min-width: 768px) {
  .p-global-nav {
    padding-top: 60px;
    width: 280px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    z-index: 9;
  }
  .p-global-nav ul {
    height: auto;
    border-top: none;
    display: block;
  }
  .p-global-nav ul li {
    border: none;
    align-self: center;
  }
  .p-global-nav ul li a {
    padding: 15px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
  .p-global-nav ul li a:after {
    display: none;
  }
  .p-global-nav ul li a img {
    opacity: 1;
    transition: 0.5s;
  }
  .p-global-nav ul li a span {
    padding-left: 15px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 55px;
    line-height: 5.5rem;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s;
  }
  .p-global-nav ul li a:hover img {
    opacity: 0;
  }
  .p-global-nav ul li a:hover span {
    opacity: 1;
  }
}

.p-global-nav__index {
  height: auto;
  background-color: transparent;
  display: block;
  position: absolute;
  top: 230px;
  left: 65px;
}

.p-global-nav__index ul li {
  height: 56px;
  border-top: none;
}

.p-global-nav__index ul li a {
  padding: 20px 0 !important;
}

.p-global-nav__index ul li a img {
  height: 16px;
}

.p-global-nav__index ul li a span {
  padding-left: 0;
}

@media only screen and (min-width: 768px) {
  .p-global-nav__index {
    padding-top: 0;
  }
}

/* global button
- - - - - - - - - - - - - - - - - - */
.p-global-btn {
  padding: 13px;
  width: 46px;
  height: 46px;
  background-color: #005d9a;
  display: inline-block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transition: all .4s;
}

@media only screen and (min-width: 375px) {
  .p-global-btn {
    padding: 20px;
    width: 60px;
    height: 60px;
  }
}

@media only screen and (min-width: 768px) {
  .p-global-btn {
    position: fixed;
  }
}

.p-global-btn span {
  width: 20px;
  height: 1px;
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 13px;
  background-color: #fff;
  border-radius: 4px;
}

.p-global-btn span:nth-of-type(1) {
  top: 13px;
}

.p-global-btn span:nth-of-type(2) {
  margin-top: -0.5px;
  top: 50%;
}

.p-global-btn span:nth-of-type(3) {
  bottom: 13px;
}

@media only screen and (min-width: 375px) {
  .p-global-btn span {
    left: 20px;
  }
  .p-global-btn span:nth-of-type(1) {
    top: 20px;
  }
  .p-global-btn span:nth-of-type(3) {
    bottom: 20px;
  }
}

.p-global-btn.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}

.p-global-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.p-global-btn.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}

/* Close button
- - - - - - - - - - - - - - - - - - */
.p-close-btn {
  width: 30px;
  display: block;
  position: fixed;
  top: 15px;
  right: 15px;
  font-size: 25px;
  color: #000;
}

.p-close-btn img {
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (min-width: 768px) {
  .p-close-btn {
    display: none;
  }
}

/*
/* project logo
============================================================*/
.p-logo {
  width: 30px;
  height: auto;
}

@media only screen and (min-width: 375px) {
  .p-logo {
    width: 40px;
  }
}

@media only screen and (min-width: 768px) {
  .p-logo {
    margin-left: -34px;
    width: 68px;
    mix-blend-mode: multiply;
  }
}

.p-logo a {
  display: block;
}

.p-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.p-logo_index {
  margin-left: 0;
}

/**
/* project - header items
============================================================*/
.p-header__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media only screen and (min-width: 768px) {
  .p-header__row {
    margin: 0 auto;
    padding: 80px 0 0 0;
    width: 1080px;
    position: relative;
  }
  .p-header__row::after {
    content: '';
    width: 500px;
    height: 218px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

.p-header__row_index {
  padding: 0;
  width: auto;
  display: block;
  position: relative;
}

.p-header__row_index::after {
  display: none;
}

.p-sitecatch {
  margin-bottom: 35px;
  padding-left: 8px;
  width: 80%;
  display: flex;
  flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .p-sitecatch {
    padding-top: 5px;
    padding-left: 15px;
  }
  .p-sitecatch:hover {
    opacity: 0.7;
    transition: opacity 0.2s linear;
    text-decoration: none;
  }
}

.p-sitecatch p {
  margin-bottom: 4px;
  font-size: 9px;
  font-size: 0.9rem;
  line-height: 10px;
  line-height: 1rem;
  letter-spacing: -0.06em;
}

@media only screen and (min-width: 375px) {
  .p-sitecatch p {
    font-size: 10px;
    font-size: 1rem;
    line-height: 16px;
    line-height: 1.6rem;
    letter-spacing: 0;
  }
}

@media only screen and (min-width: 768px) {
  .p-sitecatch p {
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 16px;
    line-height: 1.6rem;
  }
}

.p-sitecatch h1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 20px;
  line-height: 2rem;
  font-weight: normal;
}

@media only screen and (min-width: 375px) {
  .p-sitecatch h1 {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 18px;
    line-height: 1.8rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-sitecatch h1 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}

.p-sitecatch h1 span {
  padding-right: 5px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
  line-height: 2rem;
}

@media only screen and (min-width: 768px) {
  .p-sitecatch h1 span {
    padding-right: 10px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}

.p-sitecatch_index {
  padding-left: 0;
  padding-top: 20px;
}

/**
/* project - to top
============================================================*/
.p-to-top {
  padding-top: 14px;
  width: 100%;
  height: 45px;
  background-color: #fff;
  border-top: 1px solid #005d9a;
  border-bottom: 1px solid #005d9a;
  display: block;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .p-to-top {
    display: none;
  }
}

.p-to-top span {
  margin: 0 auto;
  display: block;
  width: 30px;
  height: 15px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.p-to-top span::before, .p-to-top span::after {
  content: '';
  width: 0;
  height: 0;
  border-width: 15px;
  border-style: solid;
  display: block;
  position: absolute;
}

.p-to-top span::before {
  border-color: transparent transparent #005d9a transparent;
  top: -15px;
}

.p-to-top span::after {
  top: -13px;
  border-color: transparent transparent #fff transparent;
}

/**
/* project - footer items
============================================================*/
.p-global__footer {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-family: sans-serif;
}

@media only screen and (min-width: 768px) {
  .p-global__footer {
    margin: 0 auto 115px;
    width: 1080px;
    text-align: center;
    display: block;
  }
}

.p-global__footer a {
  padding-bottom: 26px;
  width: 50%;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 13px;
  line-height: 1.3rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

.p-global__footer a::before {
  padding-right: 5px;
  content: '■';
  font-size: 10px;
  font-size: 1rem;
  line-height: 16px;
  line-height: 1.6rem;
  color: #005d9a;
  font-family: sans-serif;
  display: inline-block;
  position: relative;
  top: -2px;
}

@media only screen and (min-width: 768px) {
  .p-global__footer a {
    padding-bottom: 0;
    width: auto;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 16px;
    line-height: 1.6rem;
  }
  .p-global__footer a::before {
    width: 30px;
    content: '・';
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 16px;
    line-height: 1.6rem;
    color: #373737;
    position: static;
  }
  .p-global__footer a:first-of-type::before {
    display: none;
  }
}

.p-footer__companyname {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 15px;
  line-height: 1.5rem;
  text-align: center;
}

@media only screen and (min-width: 375px) {
  .p-footer__companyname {
    margin-bottom: 30px;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 17px;
    line-height: 1.7rem;
  }
}

@media only screen and (min-width: 768px) {
  .p-footer__companyname {
    margin-bottom: 50px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 20px;
    line-height: 2rem;
  }
}

.p-footer__companyname span {
  padding-right: 10px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 20px;
  line-height: 2rem;
}

.p-footer__address {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 24px;
  line-height: 2.4rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

@media only screen and (min-width: 768px) {
  .p-footer__address {
    margin: 0 auto 95px;
    width: 865px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}

.p-footer__address .address__icon {
  margin-bottom: 5px;
  padding: 0 5px;
  width: 115px;
  border: 1px solid #005d9a;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 18px;
  line-height: 1.8rem;
  font-family: serif;
  text-align: center;
  letter-spacing: 0.22em;
  display: inline-block;
  color: #005d9a;
}

@media only screen and (min-width: 768px) {
  .p-footer__address .address__icon {
    margin-right: 10px;
    margin-bottom: 0;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}

.p-footer__address p {
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) {
  .p-footer__maplink {
    text-decoration: underline;
  }
  .p-footer__maplink:hover {
    text-decoration: none;
  }
}

.p-footer__maplink span {
  display: none;
}

@media only screen and (min-width: 768px) {
  .p-footer__maplink span {
    display: inline;
  }
}

.p-footer__maplink img {
  width: auto;
  height: 20px;
  display: inline-block;
  position: relative;
  top: 3px;
}

@media only screen and (min-width: 768px) {
  .p-footer__maplink img {
    display: none;
  }
}

.p-copy {
  text-align: center;
  font-size: 10px;
  font-size: 1rem;
  line-height: 10px;
  line-height: 1rem;
  font-family: sans-serif;
}

@media only screen and (min-width: 768px) {
  .p-copy {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 12px;
    line-height: 1.2rem;
  }
}

.dsppc-il {
  display: none;
}

@media only screen and (min-width: 768px) {
  .dsppc-il {
    display: inline;
  }
}

.p-footer-contact {
  padding: 20px 0;
  background: url(assets/images/index/index_sec4_bg.png) no-repeat center center;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .p-footer-contact {
    padding: 25px 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

.p-footer-contact::before, .p-footer-contact::after {
  content: '';
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: block;
}

@media only screen and (min-width: 768px) {
  .p-footer-contact::before, .p-footer-contact::after {
    max-width: 695px;
    height: 424px;
    display: inline-block;
  }
}

.p-footer-contact::before {
  background-image: url(assets/images/common/footer_contact_img01.jpg);
}

.p-footer-contact::after {
  background-image: url(assets/images/common/footer_contact_img02.jpg);
}

@media only screen and (min-width: 768px) {
  .p-footer-contact::after {
    display: inline-block;
  }
}

.p-footer-contact .content {
  padding: 35px 20px;
}

@media only screen and (min-width: 768px) {
  .p-footer-contact .content {
    padding: 50px 35px 0;
    width: 500px;
    position: relative;
  }
  .p-footer-contact .content::before {
    content: '';
    width: 128px;
    height: 103px;
    background: url(assets/images/common/footer_contact_bg.png);
    background-size: contain;
    display: block;
    position: absolute;
    left: -33px;
    bottom: -10px;
  }
}

.p-footer-contact .content h2 {
  margin: 0 auto 35px;
  width: 50%;
}

@media only screen and (min-width: 768px) {
  .p-footer-contact .content h2 {
    margin-bottom: 45px;
    width: 237px;
  }
}

.p-footer-contact .content h2 img {
  width: 100%;
  height: auto;
  display: block;
}

.p-footer-contact .content p {
  margin-bottom: 30px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
  font-family: sans-serif;
  color: #fff;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .p-footer-contact .content p {
    margin-bottom: 20px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 22px;
    line-height: 2.2rem;
  }
}

.p-footer-contact__btn {
  margin: 0 auto;
  width: 60%;
  display: block;
}

@media only screen and (min-width: 768px) {
  .p-footer-contact__btn {
    width: 245px;
  }
  .p-footer-contact__btn:hover {
    opacity: 0.7;
    transition: opacity 0.2s linear;
    text-decoration: none;
  }
}

.p-footer-contact__btn img {
  width: 100%;
  height: auto;
  display: block;
}

.p-global_sidebar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-family: 'helvetica', sans-serif;
}

.p-global_sidebar li a {
  color: #999;
}

.p-global_sidebar li > ul {
  list-style-type: none;
  margin: 0;
  padding: 0 0 0 1.5rem;
}

/**
/* form
============================================================*/
.p-form {
  /* placeholder */
}

.p-form__lead {
  margin-bottom: 30px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 28px;
  line-height: 2.8rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

@media only screen and (min-width: 768px) {
  .p-form__lead {
    margin-bottom: 50px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
    line-height: 3rem;
    text-align: center;
  }
}

.p-form__lead em {
  color: #ce1b1b;
}

.p-form__confirmtext {
  margin-bottom: 30px;
  display: none;
  text-align: center;
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

.p-form__wrap {
  border-top: 1px solid #b2b2b2;
}

.p-form__item {
  padding: 15px 0;
  border-bottom: 1px solid #b2b2b2;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

@media only screen and (min-width: 768px) {
  .p-form__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.p-form__label {
  margin-bottom: 10px;
  width: 100%;
  align-self: center;
}

@media only screen and (min-width: 768px) {
  .p-form__label {
    margin-bottom: 0;
    width: 25%;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 20px;
    line-height: 2rem;
  }
}

.p-form__label span {
  padding: 2px 0;
  display: inline-block;
}

.p-form__label span::before {
  content: '';
  margin-right: 10px;
  width: 6px;
  height: 6px;
  background-color: #005d9a;
  display: inline-block;
  position: relative;
  top: -3px;
}

.p-form__input {
  margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
  .p-form__input {
    margin-bottom: 0;
    width: 35%;
  }
}

.p-form__input .error {
  margin: 10px 0 5px;
}

@media only screen and (min-width: 768px) {
  .p-form__textarea {
    width: 65%;
  }
}

@media only screen and (min-width: 768px) {
  .p-form__note {
    padding-left: 20px;
    width: 40%;
    align-self: center;
  }
}

.p-form__agree {
  margin: 35px 0 100px;
  padding: 30px 15px;
  background: url(assets/images/common/bg_vertical_line_gray.png);
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 26px;
  line-height: 2.6rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
  text-align: center;
}

.p-form__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.p-form__btn_confirm, .p-form__btn_submit, .p-form__btn_back {
  border: 1px solid #005d9a;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 50px;
  line-height: 5rem;
  color: #fff;
  text-align: center;
  display: block;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .p-form__btn_confirm, .p-form__btn_submit, .p-form__btn_back {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 70px;
    line-height: 7rem;
  }
}

.p-form__btn_confirm, .p-form__btn_submit {
  background-color: #005d9a;
}

.p-form__btn_confirm::after, .p-form__btn_submit::after {
  content: '';
  margin-left: 10px;
  width: 9px;
  height: 9px;
  border: 1px solid;
  border-color: transparent #fff #fff transparent;
  transform: rotate(-45deg);
  display: inline-block;
  position: relative;
  top: -4px;
}

.p-form__btn_confirm {
  width: 70%;
}

.p-form__btn_submit {
  margin: 0 5px;
  width: 40%;
}

.p-form__btn_back {
  margin: 0 5px;
  width: 25%;
  color: #005d9a;
  background-color: transparent;
}

.p-form .required {
  margin-right: 15px;
  padding: 0 5px;
  border: 1px solid #de0000;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 18px;
  line-height: 1.8rem;
  color: #de0000;
  display: inline-block;
  position: relative;
  top: -2px;
}

.p-form .any {
  margin-right: 15px;
  padding: 0 5px;
  border: 1px solid #afafaf;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 18px;
  line-height: 1.8rem;
  color: #afafaf;
  display: inline-block;
  position: relative;
  top: -2px;
}

.p-form input[type='text'],
.p-form input[type='email'] {
  padding: 0 10px;
  border: 1px solid #9b9b9b;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 50px;
  line-height: 5rem;
  width: 100%;
}

.p-form textarea {
  height: 200px;
  width: 100%;
  border: 1px solid #9b9b9b;
  resize: vertical;
}

.p-form input[type='ceckbox'] {
  margin-right: 10px !important;
}

.p-form :placeholder-shown {
  color: 000;
}

.p-form ::-webkit-input-placeholder {
  color: #a0a0a0;
}

.p-form :-moz-placeholder {
  color: #a0a0a0;
  opacity: 1;
}

.p-form ::-moz-placeholder {
  color: #a0a0a0;
  opacity: 1;
}

.p-form :-ms-input-placeholder {
  color: #a0a0a0;
}

.mw_wp_form_preview .p-form__confirmtext {
  display: block;
}

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

Object - page

////////////////////////////////////////////////////////////*/
/**
/* page common
============================================================*/
/* heading
------------------------------------------------------------*/
.heading_lv1 {
  padding: 0 0 80px 0;
}

.heading_lv1_helvetica {
  font-family: 'helvetica', sans-serif;
}

.heading_lv2 {
  margin-bottom: 0;
  padding: 0 0 20px 0;
}

.heading_lv2_helvetica {
  font-family: 'helvetica', sans-serif;
}

.page__ttl {
  margin-top: 90px;
  margin-left: 15px;
  height: 35px;
	max-width: 100%;
}

@media only screen and (min-width: 768px) {
  .page__ttl {
    margin-top: 0;
    margin-left: 49px;
    height: 80px;
  }
}

.page__ttl_lv2 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  line-height: 2rem;
  color: #373737;
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.22em;
}

@media only screen and (min-width: 768px) {
  .page__ttl_lv2 {
    font-size: 30px;
    font-size: 3rem;
    line-height: 30px;
    line-height: 3rem;
  }
}

.page__ttl_lv2 img {
  margin: 18px auto 0;
  display: block;
  width: auto;
  height: 14px;
}

@media only screen and (min-width: 768px) {
  .page__ttl_lv2 img {
    margin-top: 27px;
    height: 18px;
  }
}

.ttl_sub {
  margin-bottom: 25px;
  position: relative;
}

.ttl_sub::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #005d9a;
  display: block;
  position: absolute;
  top: 50%;
  z-index: 0;
}

@media only screen and (min-width: 768px) {
  .ttl_sub {
    margin-bottom: 40px;
  }
}

.ttl_sub span {
  padding-right: 20px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.ttl_sub img {
  height: 15px;
}

/* background
------------------------------------------------------------*/
@media only screen and (min-width: 768px) {
  .page__bg {
    background: url(assets/images/common/page_bg.png) no-repeat top right;
    background-size: 757px auto;
  }
}

@media only screen and (min-width: 768px) {
  .page__bg2 {
    background: url(assets/images/common/page_bg2.png) no-repeat top left;
    background-size: 677px auto;
  }
}

.meta {
  display: flex;
  flex-wrap: wrap;
}

.date {
  margin-right: 15px;
}

.category,
.icon {
  padding: 0 8px;
  border-width: 1px;
  border-style: solid;
  border-color: #005d9a;
  color: #005d9a;
}

.category__recruit,
.icon__recruit {
  background-color: #005d9a;
  color: #fff;
}

.bullet_blue::before {
  content: '';
  margin-right: 5px;
  width: 6px;
  height: 6px;
  background-color: #005d9a;
  display: inline-block;
  position: relative;
  top: -3px;
}

.notfound {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .notfound {
    padding: 100px 0;
  }
}

/**
/* page - index
============================================================*/
.p-hero {
  margin-bottom: 60px;
  width: 100%;
  height: 456px;
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .p-hero {
    margin-bottom: 240px;
    padding-left: 100px;
    height: 798px;
  }
}

.p-hero__video {
  width: 100%;
  height: 100%;
  position: relative;
}

.p-hero video {
  width: 100%;
  height: 100%;
  position: absolute;
}

@media only screen and (min-width: 768px) {
  .p-hero video {
    object-fit: cover;
    width: auto;
    height: 798px;
  }
}

.p-hero__text {
  width: 100%;
  height: 100%;
  position: absolute;
  mix-blend-mode: multiply;
  top: 0;
  left: 0;
  right: 0;
}

@media only screen and (min-width: 768px) {
  .p-hero__text {
    margin: 0 auto;
    width: auto;
    max-width: 1080px;
  }
}

.p-hero__text img {
  width: 242px;
  height: auto;
  position: absolute;
  bottom: 25px;
  right: 20px;
}

@media only screen and (min-width: 768px) {
  .p-hero__text img {
    width: 585px;
    bottom: 235px;
    right: 15px;
  }
}

.index-sec1 {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .index-sec1 {
    padding-bottom: 160px;
    background: url(assets/images/index/index_sec1_bg.png) no-repeat;
    background-size: 60% auto;
  }
}

.index-sec1__bg {
  padding-bottom: 200px;
  position: relative;
}

.index-sec1__bg::before {
  content: '';
  width: 100%;
  height: 200px;
  background-image: url(assets/images/index/index_sec1_img_main_sp.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (min-width: 768px) {
  .index-sec1__bg {
    padding-bottom: 0;
  }
  .index-sec1__bg::before {
    content: '';
    width: 45%;
    height: 395px;
    background-image: url(assets/images/index/index_sec1_img_main.png);
    background-size: cover;
    top: 0;
    left: 0;
  }
}

@media only screen and (min-width: 768px) {
  .index-sec1__row1 {
    margin: 0 auto;
    width: 1080px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: flex-start;
    position: relative;
  }
}

@media only screen and (min-width: 768px) {
  .index-sec1__row1 h2, .index-sec1__row1 p {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

.index-sec1__row1 h2 {
  padding: 0 20px;
  margin-bottom: 25px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 36px;
  line-height: 3.6rem;
  font-weight: normal;
  letter-spacing: 0.24em;
}

@media only screen and (min-width: 375px) {
  .index-sec1__row1 h2 {
    font-size: 30px;
    font-size: 3rem;
    line-height: 45px;
    line-height: 4.5rem;
  }
}

@media only screen and (min-width: 768px) {
  .index-sec1__row1 h2 {
    margin-top: -70px;
    padding: 0;
    font-size: 40px;
    font-size: 4rem;
    line-height: 78px;
    line-height: 7.8rem;
    letter-spacing: 0.26em;
  }
}

.index-sec1__row1 h2 em {
  font-size: 45px;
  font-size: 4.5rem;
  line-height: 45px;
  line-height: 4.5rem;
}

@media only screen and (min-width: 768px) {
  .index-sec1__row1 h2 em {
    font-size: 55px;
    font-size: 5.5rem;
    line-height: 78px;
    line-height: 7.8rem;
  }
}

.index-sec1__row1 p {
  margin-bottom: 30px;
  padding: 0 20px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  line-height: 3rem;
}

@media only screen and (min-width: 768px) {
  .index-sec1__row1 p {
    padding: 0;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 48px;
    line-height: 4.8rem;
    letter-spacing: 0.22em;
  }
}

.index-sec1__row1 p br {
  display: none;
}

@media only screen and (min-width: 768px) {
  .index-sec1__row1 p br {
    display: block;
  }
}

.index-sec1__row1 img {
  width: 100%;
  height: auto;
  align-self: flex-start;
}

.index-sec1__btn {
  margin: 0 auto;
  width: 80%;
  height: 35px;
  text-align: right;
  display: block;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
}

.index-sec1__btn:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

.index-sec1__btn::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #005d9a;
  mix-blend-mode: multiply;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

@media only screen and (min-width: 768px) {
  .index-sec1__btn {
    margin: 0;
    width: 245px;
    height: 45px;
    top: 335px;
    right: 590px;
    left: auto;
  }
}

.index-sec1__btn img {
  width: auto;
  height: 35px;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) {
  .index-sec1__btn img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.index-sec1__row2 {
  padding: 100px 20px 0;
  width: 100%;
  background: url(assets/images/index/index_sec1_bg.png) no-repeat;
  background-position: 0px -140px;
  background-size: 100% auto;
}

@media only screen and (min-width: 768px) {
  .index-sec1__row2 {
    margin: 0 auto;
    padding: 50px 0 0;
    max-width: 1080px;
    background: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.index-sec1__col {
  margin-bottom: 40px;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .index-sec1__col {
    width: 30%;
  }
}

.index-sec1__col .num {
  margin: 0 auto 15px;
  width: auto;
  height: 19px;
  display: block;
}

.index-sec1__col h3 {
  width: auto;
  height: 24px;
  position: relative;
  z-index: 1;
}

.index-sec1__col h3 img {
  margin: 0 auto;
  height: 100%;
  display: block;
}

.index-sec1__col .media {
  margin-top: -12px;
  margin-bottom: 15px;
  width: 100%;
  height: auto;
  display: block;
}

.index-sec1__col p {
  margin-bottom: 15px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 21px;
  line-height: 2.1rem;
  letter-spacing: 0.04em;
  text-align: center;
}

@media only screen and (min-width: 375px) {
  .index-sec1__col p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 28px;
    line-height: 2.8rem;
  }
}

@media only screen and (min-width: 768px) {
  .index-sec1__col p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 28px;
    line-height: 2.8rem;
  }
}

.index-sec1__col p br {
  display: inline;
}

.index-sec1__col .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.index-sec1__col .links a {
  padding: 0 5px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 14px;
  line-height: 1.4rem;
  letter-spacing: 0.2em;
  display: block;
  position: relative;
}

.index-sec1__col .links a:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

.index-sec1__col .links a::after {
  content: '';
  margin-left: 5px;
  width: 50px;
  height: 7px;
  background: url(assets/images/index/index_arrow_right.png);
  background-size: contain;
  display: inline-block;
}

@media only screen and (min-width: 375px) {
  .index-sec1__col .links a {
    padding: 0 10px;
    position: relative;
  }
  .index-sec1__col .links a::after {
    width: 65px;
    height: 9px;
  }
}

.index-sec2 {
  padding-bottom: 70px;
  position: relative;
  width: 100%;
}

.index-sec2::before {
  content: '';
  width: 100%;
  height: 50%;
  background: url(assets/images/common/bg_vertical_line_gray.png);
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}

@media only screen and (min-width: 768px) {
  .index-sec2::before {
    height: 70%;
  }
}

.index-sec2 h2 {
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) {
  .index-sec2 h2 {
    margin-bottom: 0;
    width: 28px;
    position: absolute;
    left: 0;
    top: 65px;
  }
}

.index-sec2 h2 img {
  margin: 0 auto;
  width: 34%;
  height: auto;
}

@media only screen and (min-width: 768px) {
  .index-sec2 h2 img {
    width: 100%;
  }
}

.index-sec2 h2 span {
  margin-top: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 14px;
  line-height: 1.4rem;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: normal;
  display: block;
}

@media only screen and (min-width: 768px) {
  .index-sec2 h2 span {
    display: none;
  }
}

.index-sec2__row {
  margin: 0 auto;
  width: 280px;
}

@media only screen and (min-width: 768px) {
  .index-sec2__row {
    width: 880px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }
}

.index-sec2__row .swiper-button-next,
.index-sec2__row .swiper-button-prev {
  width: 25px;
  height: 25px;
  background: none;
  border: 1px solid;
  margin-top: -28px;
  outline: 0;
}

.index-sec2__row .swiper-button-next:hover,
.index-sec2__row .swiper-button-prev:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .index-sec2__row .swiper-button-next,
  .index-sec2__row .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

.index-sec2__row .swiper-button-next {
  border-color: #005d9a #005d9a transparent transparent;
  right: 15px;
  transform: rotate(45deg);
}

.index-sec2__row .swiper-button-prev {
  border-color: transparent transparent #005d9a #005d9a;
  left: 15px;
  transform: rotate(45deg);
}

.index-sec2__col {
  width: 100%;
  display: block;
}

@media only screen and (min-width: 768px) {
  .index-sec2__col {
    width: 198px;
  }
  .index-sec2__col:hover {
    opacity: 0.7;
    transition: opacity 0.2s linear;
    text-decoration: none;
  }
}

.index-sec2__col .meta {
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  letter-spacing: 0.18em;
}

.index-sec2__col .meta .date {
  margin-right: 5px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 26px;
  line-height: 2.6rem;
  letter-spacing: 0;
}

.index-sec2__col .meta .category {
  padding: 0 5px;
  background-color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
  color: #005d9a;
  border: 1px solid #005d9a;
}

@media only screen and (min-width: 768px) {
  .index-sec2__col .meta .category {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 24px;
    line-height: 2.4rem;
    letter-spacing: 0;
  }
}

.index-sec2__col h3 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 36px;
  line-height: 3.6rem;
  font-weight: normal;
  letter-spacing: 0.05em;
}

.index-sec2__img {
  margin-bottom: 15px;
  padding-top: 110%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.index-sec2__img img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.index-sec2__btn {
  margin: 0 auto;
  width: 220px;
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
}

.index-sec2__btn:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

.index-sec2__btn::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #005d9a;
  mix-blend-mode: multiply;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.index-sec2__btn img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.index-sec3 {
  padding-top: 115px;
  padding-bottom: 70px;
}

@media only screen and (min-width: 768px) {
  .index-sec3 {
    padding-bottom: 110px;
  }
}

.index-sec3 h2 {
  margin: 0 auto 45px;
  width: 225px;
}

@media only screen and (min-width: 768px) {
  .index-sec3 h2 {
    width: 367px;
  }
}

.index-sec3 h2 img {
  width: 100%;
  height: auto;
}

.index-sec3__row {
  padding: 0 20px;
}

@media only screen and (min-width: 768px) {
  .index-sec3__row {
    margin: 0 auto;
    padding: 0;
    width: 880px;
  }
}

.index-sec3__col {
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) {
  .index-sec3__col {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.index-sec3__col .meta {
  margin-bottom: 10px;
  letter-spacing: 0.18em;
}

@media only screen and (min-width: 768px) {
  .index-sec3__col .meta {
    margin-bottom: 0;
    margin-right: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.index-sec3__col .meta .date {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
  line-height: 2.8rem;
}

@media only screen and (min-width: 768px) {
  .index-sec3__col .meta .date {
    margin-right: 15px;
    order: 1;
  }
}

.index-sec3__col .meta .category {
  margin-right: 15px;
  padding: 0 5px;
  width: 110px;
  background-color: #fff;
  border: 1px solid #005d9a;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 28px;
  line-height: 2.8rem;
  color: #005d9a;
  text-align: center;
  display: inline-block;
}

@media only screen and (min-width: 768px) {
  .index-sec3__col .meta .category {
    margin-right: 0;
    width: 80px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 26px;
    line-height: 2.6rem;
    order: 2;
  }
}

.index-sec3__col .meta .category__recruit {
  background-color: #005d9a;
  color: #fff;
}

.index-sec3__col a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
  line-height: 2.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  display: block;
}

@media only screen and (min-width: 768px) {
  .index-sec3__col a {
    max-width: 630px;
  }
}

.index-sec3__btn {
  background-color: #e8e8e8;
  display: block;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media only screen and (min-width: 768px) {
  .index-sec3__btn {
    max-width: 79.1%;
  }
}

.index-sec3__btn a:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

.index-sec3__btn a img {
  width: 50%;
  height: auto;
  display: block;
  align-self: flex-start;
}

@media only screen and (min-width: 768px) {
  .index-sec3__btn a img {
    width: 228px;
  }
}

.index-sec4 {
  background-image: url(assets/images/index/index_sec4_bg.png);
  background-repeat: repeat-x;
  background-position: center top;
}

.index-sec4 .content {
  padding: 25px 25px 30px;
}

@media only screen and (min-width: 768px) {
  .index-sec4 .content {
    padding: 85px 0 0 0;
    width: 250px;
  }
}

.index-sec4 .content h2 {
  margin-bottom: 25px;
  width: 186px;
}

@media only screen and (min-width: 768px) {
  .index-sec4 .content h2 {
    width: 250px;
  }
}

.index-sec4 .content h2 img {
  width: 100%;
  display: block;
}

.index-sec4 .content p {
  margin-bottom: 30px;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 23px;
  line-height: 2.3rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .index-sec4__inner {
    margin: 0 auto;
    width: 1080px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.index-sec4__inner .media {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .index-sec4__inner .media {
    margin-left: -135px;
    width: 880px;
    align-self: flex-start;
  }
}

.index-sec4__btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.index-sec4__btn a {
  width: 200px;
  display: block;
}

@media only screen and (min-width: 768px) {
  .index-sec4__btn a {
    width: 250px;
  }
  .index-sec4__btn a:hover {
    opacity: 0.7;
    transition: opacity 0.2s linear;
    text-decoration: none;
  }
}

.index-sec4__btn a img {
  width: 100%;
  height: auto;
  display: block;
}

/**
/* page - concept
============================================================*/
.concept-sec1 {
  margin-bottom: 80px;
  background: url(assets/images/concept/concept_bg_sp.png) no-repeat center top;
  background-size: 665px auto;
}

@media only screen and (min-width: 768px) {
  .concept-sec1 {
    margin-bottom: 0;
    background: url(assets/images/concept/concept_bg.png) no-repeat center top;
    background-size: 1942px auto;
  }
}

.concept-sec1__inner {
/*   margin-bottom: 450px; */
}

@media only screen and (min-width: 768px) {
  .concept-sec1__inner {
/*     margin-bottom: 480px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row-reverse;
    padding-top: 60px;
  }
}

@media only screen and (min-width: 768px) {
  .concept-sec1__inner h2, .concept-sec1__inner p {
    margin: 0;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

.concept-sec1__inner h2 {
  margin-bottom: 25px;
  padding: 0 20px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 34px;
  line-height: 3.4rem;
  font-weight: normal;
  letter-spacing: 0.24em;
}

@media only screen and (min-width: 375px) {
  .concept-sec1__inner h2 {
    font-size: 30px;
    font-size: 3rem;
    line-height: 45px;
    line-height: 4.5rem;
  }
}

@media only screen and (min-width: 768px) {
  .concept-sec1__inner h2 {
    padding: 0;
    width: 200px;
    font-size: 40px;
    font-size: 4rem;
    line-height: 78px;
    line-height: 7.8rem;
    letter-spacing: 0.26em;
  }
}

.concept-sec1__inner h2 em {
  font-size: 45px;
  font-size: 4.5rem;
  line-height: 45px;
  line-height: 4.5rem;
}

@media only screen and (min-width: 768px) {
  .concept-sec1__inner h2 em {
    font-size: 55px;
    font-size: 5.5rem;
    line-height: 78px;
    line-height: 7.8rem;
  }
}

.concept-sec1__inner p {
  margin-bottom: 30px;
  padding: 0 20px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 28px;
  line-height: 2.8rem;
}

@media only screen and (min-width: 768px) {
  .concept-sec1__inner p {
    padding: 70px 0 0 0;
    width: 250px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 48px;
    line-height: 4.8rem;
    letter-spacing: 0.22em;
  }
}

.concept-sec1__inner p br {
  display: none;
}

@media only screen and (min-width: 768px) {
  .concept-sec1__inner p br {
    display: block;
  }
}
.concept-sec1__inner2 {
	padding-top: 420px;
}
@media only screen and (min-width: 768px) {
	.concept-sec1__inner2 {
		padding-top: 500px;
	}
}
.concept-sec1__inner2 p {
  margin-bottom: 25px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

@media only screen and (min-width: 768px) {
  .concept-sec1__inner2 p {
    margin-bottom: 30px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}

.concept-sec2 {
  padding: 0 20px;
}

@media only screen and (min-width: 768px) {
  .concept-sec2 {
    margin: 0 auto;
    padding-bottom: 30px;
    width: 1080px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media only screen and (min-width: 768px) {
  .concept-sec2__inner {
    margin-top: -220px;
    width: 390px;
  }
}

.concept-sec2 h2 {
  margin-bottom: 30px;
  width: 200px;
}

@media only screen and (min-width: 768px) {
  .concept-sec2 h2 {
    margin-bottom: 0;
    width: 185px;
  }
}

.concept-sec2 h2 img {
  width: 100%;
  height: auto;
  display: block;
}

.concept-sec2 ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@media only screen and (min-width: 768px) {
  .concept-sec2 ul {
    margin-top: -45px;
  }
}

.concept-sec2 ul li {
  text-align: right;
}

.concept-sec2 ul li a {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 60px;
  line-height: 6rem;
}

.concept-sec2 ul li a::after {
  content: '';
  margin-left: 10px;
  width: 65px;
  height: 9px;
  background: url(assets/images/concept/arrow_long_right.png);
  background-size: contain;
  display: inline-block;
}

.concept-sec2 ul li a:hover:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

/**
/* page - service
============================================================*/
.service-sec1 {
  margin-bottom: 70px;
  padding-bottom: 100px;
  background: url(assets/images/service/sevice_flow_bg.png) no-repeat bottom right;
  background-size: 100% auto;
}

@media only screen and (min-width: 768px) {
  .service-sec1 {
    margin-bottom: 70px;
    padding-bottom: 400px;
    background-size: 1050px auto;
  }
}

.service-sec1__img {
  margin-bottom: 30px;
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (min-width: 768px) {
  .service-sec1__img {
    margin-bottom: 80px;
  }
}

.service-sec1 h3 {
  margin-bottom: 30px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 34px;
  line-height: 3.4rem;
  color: #005d9a;
  text-align: center;
  font-weight: normal;
}

@media only screen and (min-width: 768px) {
  .service-sec1 h3 {
    margin-bottom: 45px;
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 45px;
    line-height: 4.5rem;
    letter-spacing: 0.22rem;
  }
}

.service-sec1 p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
  letter-spacing: 0.22rem;
}

@media only screen and (min-width: 768px) {
  .service-sec1 p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 27px;
    line-height: 2.7rem;
    text-align: center;
  }
}

.service-sec2__figure {
  width: 100%;
  height: 150px;
  position: absolute;
}

@media only screen and (min-width: 768px) {
  .service-sec2__figure {
    max-width: 53%;
    height: 280px;
    top: 0;
    z-index: 2;
  }
}

.service-sec2__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-sec2__text {
  width: auto;
  height: 25px;
  position: absolute;
  top: -10px;
  mix-blend-mode: multiply;
}

@media only screen and (min-width: 768px) {
  .service-sec2__text {
    width: auto;
    height: 70px;
    top: auto;
    bottom: -25px;
  }
}

.service-sec2__content {
  padding: 0 20px;
}

@media only screen and (min-width: 768px) {
  .service-sec2__content {
    padding: 0;
    width: 470px;
    position: relative;
  }
}

.service-sec2__content h3 {
  margin-bottom: 20px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 30px;
  line-height: 3rem;
  color: #005d9a;
  font-weight: normal;
}

@media only screen and (min-width: 768px) {
  .service-sec2__content h3 {
    margin-bottom: 15px;
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 40px;
    line-height: 4rem;
  }
}

.service-sec2__content p {
  margin-bottom: 30px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
  letter-spacing: 0.22rem;
}

@media only screen and (min-width: 768px) {
  .service-sec2__content p {
    margin-bottom: 0;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 27px;
    line-height: 2.7rem;
  }
}

.service-sec2__content p br {
  display: none;
}

@media only screen and (min-width: 768px) {
  .service-sec2__content p br {
    display: block;
  }
}

.service-sec2__button {
  margin: 0 auto;
  width: 80%;
  height: 35px;
  text-align: right;
  display: block;
  position: absolute;
  bottom: -17.5px;
  left: 0;
  right: 0;
}

.service-sec2__button::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #005d9a;
  mix-blend-mode: multiply;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media only screen and (min-width: 768px) {
  .service-sec2__button {
    margin: 0;
    width: 245px;
    height: 45px;
    bottom: 20px;
    right: -40px;
    left: auto;
  }
}

.service-sec2__button img {
  width: auto;
  height: 35px;
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  .service-sec2__button img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.service-sec2__col {
  padding-bottom: 230px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .service-sec2__col {
    margin-bottom: 125px;
    display: flex;
    flex-wrap: wrap;
    height: 280px;
  }
}

@media only screen and (min-width: 768px) {
  .service-sec2__col:nth-of-type(odd) {
    padding-left: 53%;
  }
}

.service-sec2__col:nth-of-type(odd) .service-sec2__figure {
  padding-left: 20px;
}

@media only screen and (min-width: 768px) {
  .service-sec2__col:nth-of-type(odd) .service-sec2__figure {
    padding-left: 0;
    left: 0;
  }
}

.service-sec2__col:nth-of-type(odd) .service-sec2__img {
  object-position: top right;
}

@media only screen and (min-width: 768px) {
  .service-sec2__col:nth-of-type(odd) .service-sec2__content {
    padding-left: 35px;
  }
}

.service-sec2__col:nth-of-type(odd) .service-sec2__text {
  left: 30px;
}

@media only screen and (min-width: 768px) {
  .service-sec2__col:nth-of-type(odd) .service-sec2__text {
    right: 130px;
  }
}

@media only screen and (min-width: 768px) {
  .service-sec2__col:nth-of-type(odd) .service-sec2__button {
    right: -205px;
  }
}

@media only screen and (min-width: 768px) {
  .service-sec2__col:nth-of-type(even) {
    padding-right: 53%;
    justify-content: flex-end;
  }
}

.service-sec2__col:nth-of-type(even) .service-sec2__figure {
  padding-right: 20px;
}

@media only screen and (min-width: 768px) {
  .service-sec2__col:nth-of-type(even) .service-sec2__figure {
    padding-right: 0;
    right: 0;
  }
}

.service-sec2__col:nth-of-type(even) .service-sec2__img {
  object-position: top left;
}

.service-sec2__col:nth-of-type(even) .service-sec2__text {
  right: 30px;
}

@media only screen and (min-width: 768px) {
  .service-sec2__col:nth-of-type(even) .service-sec2__text {
    left: 130px;
  }
}

@media only screen and (min-width: 768px) {
  .service-sec2__col:nth-of-type(even) .service-sec2__button {
    left: -205px;
  }
}

/**
/* page - index
============================================================*/
.news-menu {
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px) {
  .news-menu {
    margin-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.news-menu h2 {
  height: 24px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
  .news-menu h2 {
    padding-top: 8px;
    height: 40px;
    margin-right: 30px;
    margin-bottom: 0;
  }
}

.news-menu h2 img {
  width: auto;
  height: 24px;
  display: block;
}

@media only screen and (min-width: 768px) {
  .news-menu__category, .news-menu__archive {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
  }
}

.news-menu__category {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  .news-menu__category {
    margin-bottom: 0;
  }
}

.news-menu__archive select {
  padding: 0 5%;
  width: 100%;
  height: 45px;
  border: 1px solid #373737;
  font-size: 4.5vw;
}

@media only screen and (min-width: 768px) {
  .news-menu__archive select {
    width: 189px;
    height: 40px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 40px;
    line-height: 4rem;
  }
}

@media only screen and (min-width: 768px) {
  .news__row {
    margin-right: -2%;
    margin-left: -2%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.news__col {
  margin-bottom: 40px;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .news__col {
    padding: 0 2%;
    width: calc(100% / 4);
  }
}

.news__col .media {
  margin-bottom: 15px;
  padding-top: 68%;
  width: 100%;
  display: block;
  background-color: #d5d5d5;
  position: relative;
  overflow: hidden;
}

.news__col .media img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.news__col .meta {
  margin-bottom: 15px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  letter-spacing: 0.1em;
}

.news__col .meta .date {
  margin-right: 15px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
}

.news__col .meta .category {
  padding: 0 8px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 24px;
  line-height: 2.4rem;
}

.news__col h2 {
  margin-bottom: 10px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 24px;
  line-height: 2.4rem;
}

@media only screen and (min-width: 768px) {
  .news__col h2 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}

.news__col p {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
  text-align: justify;
}

.news__col .readmore {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
}

.news__col .readmore a {
  width: auto;
  height: 12px;
  display: block;
}

.news__col .readmore a img {
  width: auto;
  height: 12px;
  display: block;
}

/* archive
------------------------------------------------------------*/
.archive_ttl {
  margin-bottom: 50px;
  padding-left: 49px;
}

/* single
------------------------------------------------------------*/
.news-single__inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .news-single__inner {
    width: 918px;
  }
}

.news-single__inner h1 {
  margin-bottom: 25px;
  border-bottom: 1px solid #373737;
  font-size: 20px;
  font-size: 2rem;
  line-height: 36px;
  line-height: 3.6rem;
}

@media only screen and (min-width: 768px) {
  .news-single__inner h1 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 38px;
    line-height: 3.8rem;
  }
}

.news-single__inner .meta {
  margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
  .news-single__inner .meta {
    margin-bottom: 20px;
  }
}

.postbody {
  padding-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  .postbody {
    padding-bottom: 80px;
  }
}

.postbody h2,
.postbody h3,
.postbody h4,
.postbody h5,
.postbody h6,
.postbody .title_solid,
.postbody .title_underline,
.postbody .title_chevron,
.postbody .title_border,
.postbody .title_plane {
  margin: 0 0 25px !important;
  font-weight: bold;
  color: #373737;
}

.postbody h2 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 36px;
  line-height: 3.6rem;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .postbody h2 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 38px;
    line-height: 3.8rem;
  }
}

.postbody h2::before {
  content: '';
  width: 28px;
  height: 49px;
  background: url(assets/images/blog/single_ttl_bg.png) no-repeat center center;
  background-size: contain;
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -8px;
}

.postbody h3 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 28px;
  line-height: 2.8rem;
}

@media only screen and (min-width: 768px) {
  .postbody h3 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 36px;
    line-height: 3.6rem;
  }
}

.postbody h4 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 27px;
  line-height: 2.7rem;
}

@media only screen and (min-width: 768px) {
  .postbody h4 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 36px;
    line-height: 3.6rem;
  }
}

.postbody h5 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
}

@media only screen and (min-width: 768px) {
  .postbody h5 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 30px;
    line-height: 3rem;
  }
}

.postbody h6 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
}

@media only screen and (min-width: 768px) {
  .postbody h6 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}

.postbody p {
  width: 100%;
  margin-bottom: 30px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 28px;
  line-height: 2.8rem;
  text-align: justify;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media only screen and (min-width: 768px) {
  .postbody p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 32px;
    line-height: 3.2rem;
  }
}

.postbody img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 40px;
}

.postbody a {
  color: #373737;
  text-decoration: underline;
}

.postbody a:hover {
  text-decoration: none;
}

.postbody blockquote {
  margin: 0 0 40px;
  padding: 20px;
  border: 1px dashed #005d9a;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 28px;
  line-height: 2.8rem;
  font-family: sans-serif;
  font-style: italic;
}

.postbody blockquote p {
  margin-bottom: 0;
}

/**
/* page - company
============================================================*/
.company-sec1 {
  margin-bottom: 70px;
  position: relative;
}

.company-sec1::before {
  content: '';
  width: 91%;
  height: 280px;
  background: url(assets/images/company/copany_img_main.png) no-repeat top left;
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  z-index: 1;
}

.company-sec1::after {
  content: '';
  width: calc(91% + 20px);
  height: 280px;
  background-color: #005d9a;
  display: block;
  position: absolute;
  top: 20px;
}

@media only screen and (min-width: 768px) {
  .company-sec1 {
    margin-bottom: 170px;
    padding-top: 0;
    position: relative;
  }
  .company-sec1::before {
    top: 0;
    right: 0;
    width: 45%;
    height: 580px;
  }
  .company-sec1::after {
    width: calc(45% + 55px);
    height: 580px;
    top: 55px;
    right: 0;
  }
}

.company-sec1__inner {
  padding-top: 330px;
}

@media only screen and (min-width: 768px) {
  .company-sec1__inner {
    padding-top: 0;
  }
}

@media only screen and (min-width: 768px) {
  .company-sec1__content {
    width: 480px;
  }
}

.company-sec1__content h2 {
  margin-bottom: 40px;
  font-size: 30px;
  font-size: 3rem;
  line-height: 50px;
  line-height: 5rem;
  font-weight: normal;
}

@media only screen and (min-width: 768px) {
  .company-sec1__content h2 {
    margin-bottom: 60px;
    padding-top: 36px;
    font-size: 40px;
    font-size: 4rem;
    line-height: 78px;
    line-height: 7.8rem;
  }
}

.company-sec1__content p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 36px;
  line-height: 3.6rem;
}

@media only screen and (min-width: 768px) {
  .company-sec1__content p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 40px;
    line-height: 4rem;
  }
}

.company-sec2 {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  .company-sec2 {
    margin-bottom: 50px;
  }
}

.company-sec2 .page__ttl_lv2 {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  .company-sec2 .page__ttl_lv2 {
    margin-bottom: 60px;
  }
}

.company-sec2__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.company-sec2 table {
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

@media only screen and (min-width: 768px) {
  .company-sec2 table {
    width: 48%;
  }
}

.company-sec2 table th, .company-sec2 table td {
  padding: 15px 0;
  border-bottom: 1px solid #d9d9d9;
  display: block;
}

@media only screen and (min-width: 768px) {
  .company-sec2 table th, .company-sec2 table td {
    display: table-cell;
  }
}

.company-sec2 table th {
  padding-bottom: 0;
  vertical-align: top;
  border: none;
}

.company-sec2 table th::before {
  content: '';
  margin-right: 5px;
  width: 6px;
  height: 6px;
  background-color: #005d9a;
  display: inline-block;
  position: relative;
  top: -3px;
}

@media only screen and (min-width: 768px) {
  .company-sec2 table th {
    padding-bottom: 15px;
    width: 22%;
    font-weight: normal;
  }
}

.company-sec2 table td {
  padding-top: 0;
  padding-left: 10px;
}

@media only screen and (min-width: 768px) {
  .company-sec2 table td {
    padding-top: 15px;
    padding-left: 0;
    width: 78%;
  }
}

.company-sec2 .icon {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
  line-height: 2rem;
  font-family: serif;
  display: inline-block;
}

.company-sec3 {
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  .company-sec3 {
    margin-bottom: 80px;
  }
}

.company-sec3 .page__ttl_lv2 {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  .company-sec3 .page__ttl_lv2 {
    margin-bottom: 60px;
  }
}

.company-sec3__links {
  margin-bottom: 40px;
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .company-sec3__links {
    margin-bottom: 50px;
  }
}

.company-sec3__links a {
  margin: 0 15px;
  display: inline-block;
  position: relative;
}

.company-sec3__links a::after {
  content: '';
  margin: 0 auto;
  width: 100%;
  height: 7px;
  background: url(assets/images/company/company_ttl_access_arrow.png) no-repeat center center;
  background-size: contain;
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -5px;
}

.company-sec3__row {
  margin-bottom: 40px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .company-sec3__row {
    margin-bottom: 70px;
    min-height: 540px;
  }
}

.company-sec3__inner {
  padding: 0 20px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .company-sec3__inner {
    padding: 0 0 0 0;
    width: 64%;
    position: absolute;
  }
}

.company-sec3__img {
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (min-width: 768px) {
  .company-sec3__img {
    width: 445px;
    position: absolute;
    top: 230px;
  }
}

.company-sec3__gmap {
  margin-bottom: 30px;
  width: 100%;
  height: 250px;
}

@media only screen and (min-width: 768px) {
  .company-sec3__gmap {
    height: 380px;
    position: absolute;
  }
	.company-sec3__gmap.company-sec3__gmap_block {
		position:static;
	}
}

.company-sec3__content {
  margin-bottom: 30px;
}
.company-sec3__content.company-sec3__content_center {
	width: 100%;
	position: relative;
	top: -30px;
	padding-top: 20px;
	background: #d9dde4;
}

@media only screen and (min-width: 768px) {
  .company-sec3__content {
    margin-bottom: 0;
    width: 630px;
    position: absolute;
    top: 420px;
  }
}

.company-sec3__content h3 {
  margin-bottom: 35px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  line-height: 2rem;
  color: #005d9a;
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.18em;
  position: relative;
}

.company-sec3__content h3::after {
  content: '';
  margin: 0 auto;
  width: 70px;
  height: 1px;
  background-color: #005d9a;
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -15px;
}

.company-sec3__content p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
  text-align: center;
}

.company-sec3__content p a {
  display: inline-block;
}

.company-sec3__content p a img {
  height: 18px;
}

.company-sec3__button {
  color: #fff;
  display: block;
  position: relative;
}
.company-sec3__content_center .company-sec3__button {
	color: #fff;
	position: relative;
	top: 20px;
	background: #005b98;
	padding: 5px 15px;
}

.company-sec3__button::before {
  content: '';
  margin-top: -4.5px;
  width: 100px;
  height: 9px;
  background: url(assets/images/common/arrow_long_right_wh.png) no-repeat top left;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 1;
}

.company-sec3__button::after {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #005d9a;
  mix-blend-mode: multiply;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.company-sec3__content_center .company-sec3__button::after {
	background-color:#fff;
}

@media only screen and (min-width: 768px) {
  .company-sec3__button {
    padding: 0 0 0 15px;
    width: 325px;
    height: 45px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 45px;
    line-height: 4.5rem;
    letter-spacing: 0.1rem;
    position: absolute;
    top: 515px;
  }
	.company-sec3__content_center .company-sec3__button {
		top: 20px;
		left:calc(50% - 162px);
		display: inline-block;
		padding-top:0;
	}
}

.company-sec3__button span {
  display: block;
  position: relative;
  z-index: 1;
}

.company-sec3__button:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  color: #fff;
  text-decoration: none;
}

.company-sec3__button:visited {
  color: #fff;
}

@media only screen and (min-width: 768px) {
  .company-sec3__row_l .company-sec3__inner {
    left: 0;
  }
}

@media only screen and (min-width: 768px) {
  .company-sec3__row_l .company-sec3__gmap {
    left: 0;
  }
}

@media only screen and (min-width: 768px) {
  .company-sec3__row_l .company-sec3__img {
    right: -270px;
  }
}

@media only screen and (min-width: 768px) {
  .company-sec3__row_l .company-sec3__content {
    right: 100px;
  }
}

@media only screen and (min-width: 768px) {
  .company-sec3__row_l .company-sec3__button {
    right: -210px;
  }
}

@media only screen and (min-width: 768px) {
  .company-sec3__row_r .company-sec3__inner {
    right: 0;
  }
}

@media only screen and (min-width: 768px) {
  .company-sec3__row_r .company-sec3__gmap {
    right: 0;
  }
}

@media only screen and (min-width: 768px) {
  .company-sec3__row_r .company-sec3__img {
    left: -270px;
  }
}

@media only screen and (min-width: 768px) {
  .company-sec3__row_r .company-sec3__content {
    left: 100px;
  }
}

@media only screen and (min-width: 768px) {
  .company-sec3__row_r .company-sec3__button {
    left: -210px;
  }
}

.company-sec4 {
  padding: 0 20px;
  margin-bottom: 80px;
}

.company-sec4 .orgsp, .company-sec4 .orgpc {
  margin-bottom: 30px;
  width: 100%;
  display: block;
}

.company-sec4 .page__ttl_lv2 {
  margin-bottom: 30px;
}

.company-sec4 .orgpc {
  margin: 0 auto;
  width: 1080px;
  display: block;
}

.company-sec4__card {
  border: 1px solid #005d9a;
  color: #005d9a;
  text-align: center;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .company-sec4__card {
    margin: 0 auto;
    padding-top: 35px;
    padding-bottom: 25px;
    width: 1080px;
  }
}

.company-sec4__card p {
  text-align: center;
}

.company-sec4__card p.lg {
  margin-bottom: 15px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 30px;
  line-height: 3rem;
}

.company-sec4__card01 {
  position: relative;
}

.company-sec4__card01::after {
  content: '';
  width: 10px;
  height: 10px;
  background: url(assets/images/);
  background-size: contain;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.company-sec4 dl {
  margin: 0 auto;
  width: 250px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.company-sec4 dl dt {
  width: 125px;
}

.company-sec4 dl dt::before {
  content: '';
  margin-right: 10px;
  width: 8px;
  height: 8px;
  background-color: #005d9a;
  display: inline-block;
  position: relative;
  top: -2px;
}

.company-sec4 dl dd {
  width: 125px;
}

.company-sec5__header {
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  background: url(assets/images/common/bg_vertical_line_gray.png);
}

@media only screen and (min-width: 768px) {
  .company-sec5__header {
    margin-bottom: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.company-sec5 table {
  border-collapse: collapse;
}

@media only screen and (min-width: 768px) {
  .company-sec5 table tr:nth-of-type(even) {
    background-color: #e5eef5;
  }
}

.company-sec5 table th, .company-sec5 table td {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 36px;
  line-height: 3.6rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
  display: block;
}

@media only screen and (min-width: 768px) {
  .company-sec5 table th, .company-sec5 table td {
    display: table-cell;
  }
}

.company-sec5 table th {
  padding-left: 10px;
  background-color: #e5eef5;
  font-weight: normal;
}

.company-sec5 table th::before {
  content: '';
  margin-right: 10px;
  width: 6px;
  height: 6px;
  background-color: #005d9a;
  display: inline-block;
  position: relative;
  top: -3px;
}

@media only screen and (min-width: 768px) {
  .company-sec5 table th {
    background-color: transparent;
    width: 10%;
  }
}

.company-sec5 table td {
  padding-left: 10px;
}

@media only screen and (min-width: 768px) {
  .company-sec5 table td {
    width: 90%;
  }
}

/**
/* page - design
============================================================*/
.posr {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .design-sec1 {
    margin: 0 auto;
    width: 1080px;
  }
}

.design-pickup {
  margin-bottom: 60px;
  padding: 0 40px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .design-pickup {
    margin: 0 auto 115px;
    padding: 0;
    width: 1080px;
  }
}

.design-pickup .swiper-button-next,
.design-pickup .swiper-button-prev {
  width: 25px;
  height: 25px;
  background: none;
  border: 1px solid;
  margin-top: -28px;
  outline: 0;
}

.design-pickup .swiper-button-next:hover,
.design-pickup .swiper-button-prev:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .design-pickup .swiper-button-next,
  .design-pickup .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

.design-pickup .swiper-pagination {
  padding: 8px 0;
  margin-top: 40px;
  background-color: #e8e8e8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: static;
}

.design-pickup .swiper-pagination span {
  width: 25px;
  height: 25px;
  background-color: transparent;
  border-radius: 0;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 25px;
  line-height: 2.5rem;
  color: #005d9a;
  display: block;
  opacity: 1;
}

.design-pickup .swiper-pagination span:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

.design-pickup .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #005d9a;
}

.design-pickup .swiper-button-next {
  border-color: #005d9a #005d9a transparent transparent;
  right: 15px;
  transform: rotate(45deg);
}

@media only screen and (min-width: 768px) {
  .design-pickup .swiper-button-next {
    right: -80px;
    z-index: 8;
  }
}

.design-pickup .swiper-button-prev {
  border-color: transparent transparent #005d9a #005d9a;
  left: 15px;
  transform: rotate(45deg);
}

@media only screen and (min-width: 768px) {
  .design-pickup .swiper-button-prev {
    left: -80px;
    z-index: 8;
  }
}

.design-pickup__col:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

.design-pickup__col .meta {
  margin-bottom: 15px;
}

.design-pickup__col .meta .date {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
}

.design-pickup__col .category {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 22px;
  line-height: 2.2rem;
}

.design-pickup__col h2 {
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 18px;
  line-height: 1.8rem;
  font-weight: normal;
  letter-spacing: 0.18rem;
}

@media only screen and (min-width: 768px) {
  .design-pickup__col h2 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 20px;
    line-height: 2rem;
  }
}

.design-pickup__img {
  margin-bottom: 10px;
  padding-top: 50%;
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.design-pickup__img img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 768px) {
  .design-pickup__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

.design-pickup__meta p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 14px;
  line-height: 1.4rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
  position: relative;
  letter-spacing: 0.16rem;
}

.design-pickup__meta p::before {
  content: '';
  margin-right: 5px;
  width: 6px;
  height: 6px;
  background-color: #005d9a;
  display: inline-block;
  position: relative;
  top: -2px;
}

.design-pickup__meta p:first-of-type {
  margin-bottom: 10px;
}

@media only screen and (min-width: 768px) {
  .design-pickup__meta p {
    margin-bottom: 0;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 16px;
    line-height: 1.6rem;
  }
  .design-pickup__meta p:first-of-type {
    padding-right: 15px;
  }
}

.design-sec2__header {
  margin-bottom: 50px;
  padding: 60px 0 30px;
  background: url(assets/images/common/bg_vertical_line_gray.png);
}

@media only screen and (min-width: 768px) {
  .design-sec2__header {
    margin-bottom: 65px;
    padding: 80px 0 45px;
  }
}

.project-list {
  padding: 0 20px;
}

@media only screen and (min-width: 768px) {
  .project-list {
    margin: 0 auto;
    padding: 0;
    width: 1080px;
  }
}

.project-list_bar {
  margin: 0 auto 10px;
  width: 1080px;
  color: #005d9a;
  border-bottom: 1px solid #005d9a;
  cursor: pointer;
  position: relative;
  z-index: 0;
}

.project-list_bar::after {
  content: '';
  margin: -7px auto 0;
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-color: transparent #005d9a #005d9a transparent;
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  transform: rotate(45deg);
}

@media only screen and (min-width: 768px) {
  .project-list_bar {
    margin-bottom: 0;
  }
  .project-list_bar::after {
    top: 18px;
  }
}

.project-list_bar.open::after {
  border-color: #005d9a transparent transparent #005d9a;
  top: 16px;
}

@media only screen and (min-width: 768px) {
  .project-list_bar.open::after {
    top: 26px;
  }
}

.project-list_contents {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .project-list_contents {
    margin: 0 auto 50px;
    width: 1080px;
  }
}

.project-list_contents tr {
  margin-bottom: 25px;
  width: 100%;
  display: block;
}

@media only screen and (min-width: 768px) {
  .project-list_contents tr {
    display: table-row;
  }
}

.project-list_contents .all {
  display: none;
}

.project-list_contents th, .project-list_contents td {
  display: block;
}

@media only screen and (min-width: 768px) {
  .project-list_contents th, .project-list_contents td {
    padding: 10px;
    display: table-cell;
  }
}

.project-list_contents th {
  border-bottom: 1px solid #005d9a;
  font-family: "YuGothic", "游ゴシック", sans-serif;
  color: #005d9a;
  font-weight: normal;
}

.project-list_contents td {
  margin-bottom: 10px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 20px;
  line-height: 2rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
  letter-spacing: 0.1rem;
}

@media only screen and (min-width: 768px) {
  .project-list_contents td {
    margin-bottom: 0;
  }
}

.project-list_contents td span {
  margin-bottom: 5px;
  color: #005d9a;
  display: block;
}

@media only screen and (min-width: 768px) {
  .project-list_contents td span {
    display: none;
  }
}

.project-list_contents .office {
  display: inline-block;
  vertical-align: top;
}

@media only screen and (min-width: 768px) {
  .project-list_contents .office {
    width: 13%;
    display: table-cell;
  }
}

.project-list_contents .office p {
  width: 100%;
  height: 22px;
  padding: 0 10px;
  border: 1px solid #005d9a;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 20px;
  line-height: 2rem;
  color: #005d9a;
  letter-spacing: 0.2rem;
  font-family: serif;
}

.project-list__link {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.project-list__link li {
  margin: 0 2px 4px;
}

@media only screen and (min-width: 375px) {
  .project-list__link li {
    margin: 0 5px 10px;
  }
}

@media only screen and (min-width: 768px) {
  .project-list__link li {
    margin: 0 10px;
  }
}

.project-list__link li a {
  width: 118px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #005d9a;
  font-size: 10px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 2.2rem;
  color: #005d9a;
  text-align: center;
  letter-spacing: 0.22rem;
  display: block;
}

.project-list__link li a:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

@media only screen and (min-width: 375px) {
  .project-list__link li a {
    width: 120px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}

@media only screen and (min-width: 768px) {
  .project-list__link li a {
    width: 120px;
  }
}

.project-list__link li .current {
  background-color: #005d9a;
  color: #fff;
}

.project-list .pyear {
  margin-bottom: 0;
  padding-bottom: 5px;
  width: 100%;
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  line-height: 2rem;
  font-family: serif;
  color: #373737;
  font-weight: 200;
  letter-spacing: 0.1rem;
}

@media only screen and (min-width: 768px) {
  .project-list .pyear {
    width: 13%;
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 24px;
    line-height: 2.4rem;
    border: none;
  }
}

.project-list .pname, .project-list .pdev, .project-list .paddress, .project-list .ptype {
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

@media only screen and (min-width: 768px) {
  .project-list .pname {
    width: 35% !important;
  }
}

@media only screen and (min-width: 768px) {
  .project-list .pdev {
    width: 28% !important;
  }
}

@media only screen and (min-width: 768px) {
  .project-list .paddress {
    width: 13% !important;
  }
}

.project-list .ptype {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #005d9a;
}

@media only screen and (min-width: 768px) {
  .project-list .ptype {
    margin-bottom: 0;
    padding-bottom: 0;
    width: 11% !important;
    border-bottom: none;
  }
}

/* design single
------------------------------------------------------------*/
.design-single__hero {
  margin-bottom: 100px;
  position: relative;
  overflow-x: hidden;
}

.design-single__hero .swiper-container {
  width: 300px;
  height: 200px;
  position: relative;
  overflow: visible;
}

.design-single__hero .swiper-container::before, .design-single__hero .swiper-container::after {
  content: '';
  width: 300px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  display: block;
  position: absolute;
  top: 0;
  z-index: 2;
}

.design-single__hero .swiper-container::before {
  left: -300px;
}

.design-single__hero .swiper-container::after {
  right: -300px;
}

@media only screen and (min-width: 768px) {
  .design-single__hero .swiper-container {
    width: 1080px;
    height: 100%;
  }
  .design-single__hero .swiper-container::before, .design-single__hero .swiper-container::after {
    content: '';
    width: 1080px;
    height: 100%;
  }
  .design-single__hero .swiper-container::before {
    left: -1080px;
  }
  .design-single__hero .swiper-container::after {
    right: -1080px;
  }
}

.design-single__hero .swiper-wrapper {
  width: 100%;
}

.design-single__hero .swiper-slide {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .design-single__hero .swiper-slide {
    height: 640px;
  }
}

.design-single__hero .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
}

.design-single__hero .swiper-pagination {
  margin-bottom: 65px;
  position: static;
}

.design-single__hero .swiper-pagination span {
  width: 30px;
  height: 3px;
  border-radius: 0;
}

@media only screen and (min-width: 768px) {
  .design-single__hero .swiper-pagination span {
    width: 75px;
  }
}

.design-single__hero .swiper-button-next,
.design-single__hero .swiper-button-prev {
  width: 25px;
  height: 25px;
  background: none;
  border: 1px solid;
  margin-top: -28px;
  outline: 0;
}

.design-single__hero .swiper-button-next:hover,
.design-single__hero .swiper-button-prev:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .design-single__hero .swiper-button-next,
  .design-single__hero .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

.design-single__hero .swiper-button-next {
  border-color: #005d9a #005d9a transparent transparent;
  right: 15px;
  transform: rotate(45deg);
}

@media only screen and (min-width: 768px) {
  .design-single__hero .swiper-button-next {
    right: 18%;
  }
}

.design-single__hero .swiper-button-prev {
  border-color: transparent transparent #005d9a #005d9a;
  left: 15px;
  transform: rotate(45deg);
}

@media only screen and (min-width: 768px) {
  .design-single__hero .swiper-button-prev {
    left: 18%;
  }
}

.design-single__comment {
  margin-bottom: 80px;
  padding: 0 20px;
}

@media only screen and (min-width: 768px) {
  .design-single__comment {
    margin: 0 auto 105px;
    padding: 0;
    width: 1080px;
  }
}

.design-single__comment h2 {
  margin-bottom: 30px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  line-height: 2rem;
  text-align: center;
  letter-spacing: 0.22rem;
  font-weight: normal;
}

@media only screen and (min-width: 768px) {
  .design-single__comment h2 {
    margin-bottom: 50px;
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 25px;
    line-height: 2.5rem;
  }
}

.design-single__comment p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  line-height: 3rem;
  letter-spacing: 0.22rem;
}

@media only screen and (min-width: 768px) {
  .design-single__comment p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 36px;
    line-height: 3.6rem;
    text-align: center;
  }
}

.design-single__meta {
  margin-bottom: 80px;
  padding-bottom: 240px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .design-single__meta {
    margin-bottom: 100px;
    height: 335px;
  }
}

.design-single__meta .meta__inner {
  padding: 0 20px;
}

@media only screen and (min-width: 768px) {
  .design-single__meta .meta__inner {
    margin: 0 auto;
    width: 1080px;
  }
}

@media only screen and (min-width: 768px) {
  .design-single__meta .meta__inner .content {
    width: 480px;
  }
}

.design-single__meta .meta__inner .content h2 {
  margin-bottom: 25px;
  padding-top: 30px;
}

.design-single__meta .meta__inner .content h2 img {
  margin: 0 auto;
  width: auto;
  height: 25px;
  display: block;
}

.design-single__meta .meta__inner .content table {
  border-top: 1px solid #d6d6d6;
  border-collapse: collapse;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 26px;
  line-height: 2.6rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

@media only screen and (min-width: 768px) {
  .design-single__meta .meta__inner .content table {
    width: 480px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 28px;
    line-height: 2.8rem;
  }
}

.design-single__meta .meta__inner .content table th, .design-single__meta .meta__inner .content table td {
  padding: 7px 0;
  border-bottom: 1px solid #d6d6d6;
}

.design-single__meta .meta__inner .content table th {
  padding-left: 10px;
  width: 45%;
  color: #005d9a;
  font-weight: normal;
}

.design-single__meta .meta__inner .content table td {
  width: 55%;
}

.design-single__meta .meta__img {
  margin: 0 auto;
  width: 91%;
  height: 180px;
  background-position: center center;
  background-size: cover;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}

.design-single__meta .meta__img::after {
  content: '';
  width: 100%;
  height: 180px;
  background-color: #005d9a;
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}

@media only screen and (min-width: 768px) {
  .design-single__meta .meta__img {
    margin: 0;
    width: 50%;
    height: 335px;
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
  }
  .design-single__meta .meta__img::after {
    width: calc(100% + 30px);
    height: 335px;
    top: 30px;
    left: 30px;
  }
}

.design-single__message {
  padding-top: 60px;
  margin-bottom: 40px;
  background: url(assets/images/design/design_single_message_bg.png) repeat-x;
}

@media only screen and (min-width: 768px) {
  .design-single__message {
    margin-bottom: 110px;
    padding-top: 60px;
  }
}

.design-single__message .message__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.design-single__message .message__img {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  .design-single__message .message__img {
    width: 487px;
  }
}

.design-single__message .message__img img {
  width: 100%;
  height: auto;
  display: block;
}

.design-single__message .message__content {
  width: 560px;
}

.design-single__message .message__content h2 {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  .design-single__message .message__content h2 {
    margin-bottom: 110px;
  }
}

.design-single__message .message__content p {
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

.design-single__btn {
  margin-bottom: 80px;
  background-color: #e8e8e8;
}

@media only screen and (min-width: 768px) {
  .design-single__btn {
    margin-bottom: 100px;
    background: url(assets/images/design/design_single_btn_bg.png) repeat-y center center;
    background-size: auto 3px;
  }
}

.design-single__btn .btn__inner {
  margin: 0 auto;
  display: block;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) {
  .design-single__btn .btn__inner {
    width: 1080px;
  }
}

.design-single__btn a {
  width: 48%;
}

.design-single__btn a:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

.design-single__btn a img {
  width: 100%;
  height: auto;
  display: block;
  align-self: flex-start;
}

@media only screen and (min-width: 768px) {
  .design-single__btn a img {
    width: 228px;
  }
}

.design-single__btn p {
  padding: 6px 10px 0;
  width: 52%;
  font-size: 10px;
  font-size: 1rem;
  line-height: 18px;
  line-height: 1.8rem;
}

@media only screen and (min-width: 768px) {
  .design-single__btn p {
    padding: 0;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 60px;
    line-height: 6rem;
  }
}

.design-single__other h2 {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  .design-single__other h2 {
    margin-bottom: 110px;
  }
}

.other__container {
  margin: 0 auto 60px;
  padding: 0 40px;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .other__container {
    margin-bottom: 80px;
    padding: 0;
    width: 1080px;
  }
}

.other__container .swiper-button-next,
.other__container .swiper-button-prev {
  width: 25px;
  height: 25px;
  background: none;
  border: 1px solid;
  margin-top: -28px;
  outline: 0;
}

.other__container .swiper-button-next:hover,
.other__container .swiper-button-prev:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .other__container .swiper-button-next,
  .other__container .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

.other__container .swiper-pagination {
  padding: 8px 0;
  margin-top: 40px;
  background-color: #e8e8e8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: static;
}

.other__container .swiper-pagination span {
  width: 25px;
  height: 25px;
  background-color: transparent;
  border-radius: 0;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 25px;
  line-height: 2.5rem;
  color: #005d9a;
  display: block;
  opacity: 1;
}

.other__container .swiper-pagination span:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

.other__container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #005d9a;
}

.other__container .swiper-button-next {
  border-color: #005d9a #005d9a transparent transparent;
  right: 15px;
  transform: rotate(45deg);
}

@media only screen and (min-width: 768px) {
  .other__container .swiper-button-next {
    right: -80px;
  }
}

.other__container .swiper-button-prev {
  border-color: transparent transparent #005d9a #005d9a;
  left: 15px;
  transform: rotate(45deg);
}

@media only screen and (min-width: 768px) {
  .other__container .swiper-button-prev {
    left: -80px;
  }
}

.other__col {
  display: block;
}

.other__col:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

.other__col p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

.other__col p::before {
  content: '';
  margin-right: 5px;
  width: 6px;
  height: 6px;
  background-color: #005d9a;
  display: inline-block;
  position: relative;
  top: -2px;
}

.other__img {
  margin-bottom: 10px;
  padding-top: 63%;
  position: relative;
  overflow: hidden;
}

.other__img img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
}

.design_btn_toindex {
  margin: 0 auto;
  width: 245px;
  display: block;
}

.design_btn_toindex img {
  width: 100%;
  height: auto;
  display: block;
}

.design_btn_toindex:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

/**
/* page - recruit
============================================================*/
.recruit-sec1 {
  margin-bottom: 90px;
  padding-top: 330px;
  position: relative;
  position: relative;
}

.recruit-sec1::before {
  content: '';
  width: 91%;
  height: 280px;
  background: url(assets/images/recruit/recruit_main.png) no-repeat top right;
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  z-index: 1;
}

.recruit-sec1::after {
  content: '';
  width: calc(91% + 20px);
  height: 280px;
  background-color: #005d9a;
  display: block;
  position: absolute;
  top: 20px;
}

@media only screen and (min-width: 768px) {
  .recruit-sec1 {
    margin-bottom: 0;
    padding-top: 0;
    position: relative;
  }
  .recruit-sec1::before {
    top: 0;
    left: 0;
    width: 45%;
    height: 580px;
  }
  .recruit-sec1::after {
    width: calc(45% + 55px);
    height: 580px;
    top: 55px;
  }
}

.recruit-sec1_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.recruit-sec1_content {
  width: 490px;
}

.recruit-sec1 h2 {
  margin-bottom: 40px;
  font-size: 30px;
  font-size: 3rem;
  line-height: 50px;
  line-height: 5rem;
  font-weight: normal;
}

@media only screen and (min-width: 768px) {
  .recruit-sec1 h2 {
    margin-bottom: 60px;
    padding-top: 36px;
    font-size: 40px;
    font-size: 4rem;
    line-height: 78px;
    line-height: 7.8rem;
  }
}

.recruit-sec1 p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 36px;
  line-height: 3.6rem;
  letter-spacing: 0;
}

@media only screen and (min-width: 768px) {
  .recruit-sec1 p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 40px;
    line-height: 4rem;
  }
}

.recruit-sec2 {
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px) {
  .recruit-sec2 {
    margin-bottom: 70px;
  }
}

.recruit-sec2 h2 {
  margin-bottom: 35px;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 26px;
  line-height: 2.6rem;
  font-weight: normal;
  letter-spacing: 0.24rem;
}

@media only screen and (min-width: 768px) {
  .recruit-sec2 h2 {
    margin-bottom: 45px;
    font-size: 30px;
    font-size: 3rem;
    line-height: 30px;
    line-height: 3rem;
  }
}

.recruit-sec2 h2 span {
  font-size: 20px;
  font-size: 2rem;
  line-height: 40px;
  line-height: 4rem;
}

@media only screen and (min-width: 768px) {
  .recruit-sec2 h2 span {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 40px;
    line-height: 4rem;
  }
}

.recruit-sec2 .ttl_sub {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) {
  .recruit-sec2 .ttl_sub {
    margin-bottom: 60px;
  }
}

.recruit-sec2__row {
  margin: 0 auto;
  position: relative;
  width: 86%;
}

@media only screen and (min-width: 768px) {
  .recruit-sec2__row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.recruit-sec2 .swiper-button-next,
.recruit-sec2 .swiper-button-prev {
  width: 25px;
  height: 25px;
  background: none;
  border: 1px solid;
  margin-top: -28px;
  outline: 0;
  cursor: pointer;
}

.recruit-sec2 .swiper-button-next:hover,
.recruit-sec2 .swiper-button-prev:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .recruit-sec2 .swiper-button-next,
  .recruit-sec2 .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

.recruit-sec2 .swiper-button-next {
  border-color: #005d9a #005d9a transparent transparent;
  right: -25px;
  transform: rotate(45deg);
}

.recruit-sec2 .swiper-button-prev {
  border-color: transparent transparent #005d9a #005d9a;
  left: -25px;
  transform: rotate(45deg);
}

.recruit-sec2__col {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .recruit-sec2__col {
    width: 325px;
  }
}

.recruit-sec2__col img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-sec2__col h3 {
  margin-bottom: 20px;
  background-color: #005d9a;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 60px;
  line-height: 6rem;
  text-align: center;
  color: #fff;
  font-weight: normal;
  letter-spacing: 0.18rem;
  position: relative;
}

.recruit-sec2__col h3::before {
  content: '';
  margin: 0 auto;
  width: 27px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  top: -10px;
  right: 0;
  left: 0;
}

@media only screen and (min-width: 768px) {
  .recruit-sec2__col h3 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 70px;
    line-height: 7rem;
  }
}

.recruit-sec2__col h3.num1 {
  position: relative;
}

.recruit-sec2__col h3.num1::before {
  background-image: url(assets/images/recruit/recruit_works_num1.png);
}

.recruit-sec2__col h3.num2 {
  position: relative;
}

.recruit-sec2__col h3.num2::before {
  background-image: url(assets/images/recruit/recruit_works_num2.png);
}

.recruit-sec2__col h3.num3 {
  position: relative;
}

.recruit-sec2__col h3.num3::before {
  background-image: url(assets/images/recruit/recruit_works_num3.png);
}

.recruit-sec2__col p {
  margin-bottom: 20px;
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

@media only screen and (min-width: 768px) {
  .recruit-sec2__col p {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}

.recruit-sec2__col h4 {
  margin-bottom: 15px;
  border: 1px solid #005d9a;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 45px;
  line-height: 4.5rem;
  color: #005d9a;
  text-align: center;
  font-weight: normal;
}

@media only screen and (min-width: 768px) {
  .recruit-sec2__col h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 45px;
    line-height: 4.5rem;
  }
}

.recruit-sec2__col ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.recruit-sec2__col ul li {
  padding-left: 1.8rem;
  margin-bottom: 10px;
  font-family: "YuGothic", "游ゴシック", sans-serif;
  position: relative;
}

.recruit-sec2__col ul li::before {
  content: '';
  width: 10px;
  height: 1px;
  background-color: #005d9a;
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
}

@media only screen and (min-width: 768px) {
  .recruit-sec2__col ul li {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}

.recruit-sec3 {
  padding-top: 80px;
  background: url(assets/images/common/bg_vertical_line_gray_long.png) repeat-x;
}

.recruit-sec3 .page__ttl_lv2 {
  margin-bottom: 60px;
}

.recruit-sec3__row {
  padding: 0 20px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) {
  .recruit-sec3__row {
    margin: 0 auto;
    padding: 0;
    width: 880px;
    display: block;
  }
}

.recruit-sec3__row .swiper-button-next,
.recruit-sec3__row .swiper-button-prev {
  width: 25px;
  height: 25px;
  background: none;
  border: 1px solid;
  margin-top: -28px;
  outline: 0;
}

.recruit-sec3__row .swiper-button-next:hover,
.recruit-sec3__row .swiper-button-prev:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .recruit-sec3__row .swiper-button-next,
  .recruit-sec3__row .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

.recruit-sec3__row .swiper-pagination {
  padding: 8px 0;
  margin-top: 40px;
  background-color: #e8e8e8;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: static;
}

.recruit-sec3__row .swiper-pagination span {
  width: 25px;
  height: 25px;
  background-color: transparent;
  border-radius: 0;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 25px;
  line-height: 2.5rem;
  color: #005d9a;
  display: block;
  opacity: 1;
}

.recruit-sec3__row .swiper-pagination span:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

.recruit-sec3__row .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #005d9a;
}

.recruit-sec3__row .swiper-button-next {
  border-color: #005d9a #005d9a transparent transparent;
  right: 15px;
  transform: rotate(45deg);
}

@media only screen and (min-width: 768px) {
  .recruit-sec3__row .swiper-button-next {
    right: -80px;
  }
}

.recruit-sec3__row .swiper-button-prev {
  border-color: transparent transparent #005d9a #005d9a;
  left: 15px;
  transform: rotate(45deg);
}

@media only screen and (min-width: 768px) {
  .recruit-sec3__row .swiper-button-prev {
    left: -80px;
  }
}

.recruit-sec3__col {
  margin-bottom: 30px;
  width: 46%;
}

@media only screen and (min-width: 768px) {
  .recruit-sec3__col {
    margin-bottom: 0;
  }
}

.recruit-sec3__img {
  padding-top: 75%;
  margin-bottom: 25px;
  display: block;
  position: relative;
  overflow: hidden;
}

.recruit-sec3__img img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.recruit-sec3__icon {
  width: 80px;
  background-color: #005d9a;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 24px;
  line-height: 2.4rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
}

.recruit-sec3 h3 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 20px;
  line-height: 2rem;
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.2rem;
}

@media only screen and (min-width: 768px) {
  .recruit-sec3 h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 20px;
    line-height: 2rem;
  }
}

.recruit-sec3__meta {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
  line-height: 2.8rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

@media only screen and (min-width: 768px) {
  .recruit-sec3__meta {
    margin-bottom: 20px;
  }
}

.recruit-sec3__more {
  width: auto;
  height: 13px;
  display: block;
}

.recruit-sec3__more img {
  width: auto;
  height: 100%;
  display: block;
}

/* recruit single
------------------------------------------------------------*/
.recruit-s-sec1 {
  margin-bottom: 100px;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1 {
    margin-bottom: 140px;
  }
}

.recruit-s-sec1-1 {
  margin-bottom: 65px;
  position: relative;
  position: relative;
}

.recruit-s-sec1-1::before {
  content: '';
  width: 91%;
  height: 200px;
  display: block;
  position: absolute;
  top: 0;
  z-index: 1;
}

.recruit-s-sec1-1::after {
  content: '';
  width: calc(91% + 20px);
  height: 200px;
  background-color: #005d9a;
  display: block;
  position: absolute;
  top: 20px;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-1 {
    margin-bottom: 85px;
    padding-top: 0;
    position: relative;
  }
  .recruit-s-sec1-1::before {
    top: 0;
    left: 0;
    width: 45%;
    height: 335px;
  }
  .recruit-s-sec1-1::after {
    width: calc(45% + 55px);
    height: 335px;
    top: 55px;
  }
}

.recruit-s-sec1-1__inner {
  padding-top: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.recruit-s-sec1-1__content {
  width: 480px;
}

.recruit-s-sec1-1__img {
  width: 91%;
  height: 200px;
  background-size: cover;
  overflow: visible;
  position: relative;
  z-index: 4;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-1__img {
    width: 45%;
    height: 335px;
    position: absolute;
    top: 0;
    left: 0;
  }
}

.recruit-s-sec1-1 h1 {
  margin-bottom: 40px;
  font-size: 30px;
  font-size: 3rem;
  line-height: 50px;
  line-height: 5rem;
  font-weight: normal;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-1 h1 {
    margin-bottom: 60px;
    padding-top: 36px;
    font-size: 40px;
    font-size: 4rem;
    line-height: 78px;
    line-height: 7.8rem;
  }
}

.recruit-s-sec1-1__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.recruit-s-sec1-1__meta .meta__item {
  margin-bottom: 20px;
  font-family: "YuGothic", "游ゴシック", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 14px;
  line-height: 1.4rem;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-1__meta .meta__item {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 16px;
    line-height: 1.6rem;
  }
}

.recruit-s-sec1-1__meta .meta__item_office {
  padding-right: 40px;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-1__meta .meta__item_office {
    padding-right: 50px;
  }
}

.recruit-s-sec1-1__meta ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.recruit-s-sec1-1__meta ul li {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 3rem;
  letter-spacing: 0.22rem;
  position: relative;
}

.recruit-s-sec1-1__meta ul li::before {
  content: '';
  margin-right: 5px;
  width: 6px;
  height: 6px;
  background-color: #005d9a;
  display: inline-block;
  position: relative;
  top: -3px;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-1__meta ul li {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 40px;
    line-height: 4rem;
  }
}

.recruit-s-sec1-2 {
  margin-bottom: 80px;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-2 {
    margin-bottom: 115px;
  }
}

.recruit-s-sec1-2__imgs {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-2__imgs {
    margin: 0 auto 60px;
    width: 1080px;
  }
}

.recruit-s-sec1-2__img {
  padding-top: 21%;
  width: 33.333%;
  height: auto;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-2__img {
    width: 30%;
  }
}

.recruit-s-sec1-2__img img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.recruit-s-sec1-2 p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 32px;
  line-height: 3.2rem;
  letter-spacing: 0.22rem;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-2 p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 36px;
    line-height: 3.6rem;
  }
}

.recruit-s-sec1-3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.recruit-s-sec1-3-1 {
  margin-bottom: 50px;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-3-1 {
    margin-bottom: 0;
    width: 42%;
  }
}

.recruit-s-sec1-3-1 h2 {
  margin-bottom: 30px;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 25px;
  line-height: 2.5rem;
  font-weight: normal;
  letter-spacing: 0.22rem;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-3-1 h2 {
    margin-bottom: 45px;
    font-size: 30px;
    font-size: 3rem;
    line-height: 30px;
    line-height: 3rem;
  }
}

.recruit-s-sec1-3-1 ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.recruit-s-sec1-3-1 ul li {
  margin-bottom: 6px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 28px;
  line-height: 2.8rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-3-1 ul li {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 32px;
    line-height: 3.2rem;
  }
}

.recruit-s-sec1-3-1 ul li span {
  width: 80px;
}

.recruit-s-sec1-3-2 {
  padding: 25px;
  width: 100%;
  border: 1px solid #005d9a;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-3-2 {
    width: 50%;
  }
}

.recruit-s-sec1-3-2__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-3-2__header {
    margin-bottom: 40px;
  }
}

.recruit-s-sec1-3-2__img {
  margin-bottom: 25px;
  padding-top: 68%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-3-2__img {
    margin-bottom: 0;
    padding-top: 200px;
    width: 280px;
    order: 2;
  }
}

.recruit-s-sec1-3-2__img img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.recruit-s-sec1-3-2 h2 {
  margin-bottom: 30px;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 25px;
  line-height: 2.5rem;
  font-weight: normal;
  letter-spacing: 0.22rem;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec1-3-2 h2 {
    margin-bottom: 45px;
    font-size: 30px;
    font-size: 3rem;
    line-height: 45px;
    line-height: 4.5rem;
    order: 1;
  }
}

.recruit-s-sec1-3-2 h2 img {
  margin-top: 25px;
  height: 15px;
  display: block;
}

.recruit-s-sec1-3-2 p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 24px;
  line-height: 2.4rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

.recruit-s-sec2 {
  margin-bottom: 80px;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec2 {
    margin-bottom: 140px;
  }
}

.recruit-s-sec2__header {
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  background: url(assets/images/common/bg_vertical_line_gray.png);
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec2__header {
    margin-bottom: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.recruit-s-sec2-1 {
  margin-bottom: 35px;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec2-1 {
    margin: 0 auto 45px;
    width: 1080px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.recruit-s-sec2-1 ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  padding: 0 20px;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec2-1 ul {
    margin: 0 auto;
    width: 48%;
    padding: 0;
  }
}

.recruit-s-sec2-1 ul li {
  margin-bottom: 20px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 20px;
  line-height: 2rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec2-1 ul li {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}

.recruit-s-sec2-1 ul li span:first-of-type {
  width: 28%;
}

.recruit-s-sec2-1 ul li span:first-of-type::before {
  content: '';
  margin-right: 5px;
  width: 6px;
  height: 6px;
  background-color: #005d9a;
  display: inline-block;
  position: relative;
  top: -3px;
}

.recruit-s-sec2-1 ul li span:last-of-type {
  width: 65%;
}

.recruit-s-sec2-2 {
  margin: 0 auto;
  padding: 30px;
  width: 91%;
  border: 1px solid #005d9a;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec2-2 {
    padding: 50px 50px 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1080px;
  }
}

.recruit-s-sec2-2__header {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec2-2__header {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    width: 30%;
  }
}

.recruit-s-sec2-2__header .page__ttl_lv2 {
  margin: 0 auto 30px;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec2-2__header .page__ttl_lv2 {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec2-2__content {
    width: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.recruit-s-sec2-2__content p {
  min-width: 48%;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 28px;
  line-height: 2.8rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec2-2__content p {
    min-width: 30%;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 36px;
    line-height: 3.6rem;
  }
}

.recruit-s-sec2-2__content p::before {
  content: '';
  margin-right: 5px;
  width: 6px;
  height: 6px;
  background-color: #005d9a;
  display: inline-block;
  position: relative;
  top: -3px;
}

.recruit-s-sec3__header {
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  background: url(assets/images/common/bg_vertical_line_gray.png);
}

@media only screen and (min-width: 768px) {
  .recruit-s-sec3__header {
    margin-bottom: 80px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.ttl_bg_line {
  font-size: 30px;
  font-size: 3rem;
  line-height: 30px;
  line-height: 3rem;
  text-align: center;
  letter-spacing: 0.22em;
  font-weight: normal;
}

@media only screen and (min-width: 768px) {
  .ttl_bg_line {
    padding-top: 80px;
  }
}

/**
/* page - staff
============================================================*/
@media only screen and (min-width: 768px) {
  .l-contents__staff-lower {
    padding-top: 0;
  }
}

.staff__inner {
  margin-bottom: 30px;
  padding-top: 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
}

@media only screen and (min-width: 768px) {
  .staff__inner {
    margin-bottom: 0;
    padding-top: 0;
    height: 290px;
  }
}

.staff__row {
  position: relative;
  display: block;
}

.staff__row:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .staff__row {
    height: 290px;
  }
}

.staff__row img {
  width: 91%;
  height: 180px;
  object-fit: cover;
  object-position: left top;
  position: absolute;
  top: 0;
}

@media only screen and (min-width: 768px) {
  .staff__row img {
    width: 52%;
    height: 290px;
  }
}

.staff__row:nth-of-type(even) img {
  right: 0;
  object-position: left top;
}

.staff__row:nth-of-type(even) .staff__inner {
  justify-content: flex-start;
}

.staff__content {
  margin: 0 auto;
  width: 91%;
}

.staff__row:nth-child(4) img {
	right: 0;
	object-position: right top;
}

.staff__row:nth-child(7) img {
	object-position: right top;
}

.staff__row.staff_id1884 img {
  object-position: left top;
}

.staff__row.staff_id1846 img,
.staff__row.staff_id1756 img,
.staff__row.staff_id1837 img,
.staff__row.staff_id2123 img,
.staff__row.staff_id1861 img {
  object-position: right top;
}

@media only screen and (min-width: 768px) {
  .staff__content {
    margin: 0;
    width: 440px;
    align-self: center;
  }
}

.staff__title {
  margin-bottom: 15px;
  color: #005d9a;
  letter-spacing: 0.22em;
}

@media only screen and (min-width: 768px) {
  .staff__title {
    font-size: 20px;
    font-size: 2rem;
    line-height: 20px;
    line-height: 2rem;
  }
}

.staff__name {
  letter-spacing: 0.22rem;
  font-size: 30px;
  font-size: 3rem;
  line-height: 30px;
  line-height: 3rem;
}

@media only screen and (min-width: 768px) {
  .staff__name {
    font-size: 40px;
    font-size: 4rem;
    line-height: 40px;
    line-height: 4rem;
  }
}

.staff__name span {
  padding-top: 4px;
  padding-left: 10px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 12px;
  line-height: 1.2rem;
  color: #848484;
  text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
  .staff__name span {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 14px;
    line-height: 1.4rem;
  }
}

.ttl_sub__staff {
  margin-top: 60px;
  margin-bottom: 50px;
}

/* staff single
------------------------------------------------------------*/
.staff-single__hero {
  position: relative;
}

.staff-single__hero .swiper-slide {
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .staff-single__hero .swiper-slide {
    padding-top: 700px;
  }
}

.staff-single__hero .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
}

.staff-single__hero .swiper-button-next,
.staff-single__hero .swiper-button-prev {
  width: 25px;
  height: 25px;
  background: none;
  border: 1px solid;
  margin-top: -28px;
  outline: 0;
}

.staff-single__hero .swiper-button-next:hover,
.staff-single__hero .swiper-button-prev:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

@media only screen and (min-width: 768px) {
  .staff-single__hero .swiper-button-next,
  .staff-single__hero .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

.staff-single__hero .swiper-pagination {
  height: 30px;
  width: 100%;
  bottom: 10px;
  z-index: 9999;
}

.staff-single__hero .swiper-pagination span {
  margin: 0 7px;
  width: 30px;
  height: 3px;
  background-color: #005d9a;
  border-radius: 0;
}

@media only screen and (min-width: 768px) {
  .staff-single__hero .swiper-pagination span {
    width: 75px;
  }
}

.staff-single__hero .swiper-button-next {
  border-color: #fff #fff transparent transparent;
  right: 15px;
  transform: rotate(45deg);
}

@media only screen and (min-width: 768px) {
  .staff-single__hero .swiper-button-next {
    right: 30px;
  }
}

.staff-single__hero .swiper-button-prev {
  border-color: transparent transparent #fff #fff;
  left: 15px;
  transform: rotate(45deg);
}

@media only screen and (min-width: 768px) {
  .staff-single__hero .swiper-button-prev {
    left: 30px;
  }
}

.staff-single__inner {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .staff-single__inner {
    width: 40%;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 8;
  }
}

.staff-single__content {
  padding: 15px 20px;
}

@media only screen and (min-width: 768px) {
  .staff-single__content {
    padding: 30px 30px 40px;
    width: 100%;
  }
}

.staff-single__tothum {
  margin: 50px auto 60px;
  width: 60px;
  height: auto;
  display: block;
}

.staff-single__tothum img {
  width: 100%;
  height: auto;
  display: block;
}

.staff__handwrite {
  margin: 40px auto;
  width: 90%;
  height: auto;
  display: block;
}

@media only screen and (min-width: 768px) {
  .staff__handwrite {
    margin: 30px 0;
    width: 90%;
    max-width: 450px;
  }
}

/* staff select
------------------------------------------------------------*/
.staff-select__row {
  padding: 40px 0 40px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) {
  .staff-select__row {
    margin-left: -1.66667%;
    margin-right: -1.66667%;
    padding: 60px 0 40px;
    justify-content: flex-start;
  }
}

.staff-select__col {
  margin-bottom: 30px;
  width: 47%;
  display: block;
}

@media only screen and (min-width: 768px) {
  .staff-select__col {
    margin-bottom: 40px;
    padding-left: 1.66667%;
    padding-right: 1.66667%;
    width: 33.333%;
  }
}

.staff-select__img {
  margin-bottom: 10px;
  padding-top: 70%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  .staff-select__img {
    margin-bottom: 15px;
  }
}

.staff-select__img img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.staff__title_select {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 14px;
  line-height: 1.4rem;
}

@media only screen and (min-width: 768px) {
  .staff__title_select {
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 16px;
    line-height: 1.6rem;
  }
}

.staff__name_select {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 22px;
  line-height: 2.2rem;
}

@media only screen and (min-width: 768px) {
  .staff__name_select {
    font-size: 30px;
    font-size: 3rem;
    line-height: 30px;
    line-height: 3rem;
  }
}

.staff__name_select span {
  margin-top: 5px;
  padding-left: 0;
  font-size: 10px;
  font-size: 1rem;
  line-height: 10px;
  line-height: 1rem;
  display: block;
}

@media only screen and (min-width: 768px) {
  .staff__name_select span {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 12px;
    line-height: 1.2rem;
  }
}

.staff__mordal {
  width: 100%;
  height: calc(100% + 1px);
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.5);
}

@media only screen and (min-width: 768px) {
  .staff__mordal {
    top: 0;
  }
}

/**
/* page - partner
============================================================*/
.partner-sec1 {
  padding-bottom: 200px;
  background-image: url(assets/images/partner/partner_sec1_bg.png);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% auto;
}

@media only screen and (min-width: 768px) {
  .partner-sec1 {
    padding-bottom: 170px;
    background-position: top left;
    background-size: 940px auto;
  }
}

@media only screen and (min-width: 768px) {
  .partner-sec1__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.partner-sec1 h2 {
  margin-bottom: 30px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 40px;
  line-height: 4rem;
  color: #005d9a;
  font-weight: normal;
  letter-spacing: 0.22em;
}

@media only screen and (min-width: 768px) {
  .partner-sec1 h2 {
    padding-right: 20px;
    width: 375px;
    font-size: 40px;
    font-size: 4rem;
    line-height: 78px;
    line-height: 7.8rem;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}

.partner-sec1 h2 em {
  font-size: 34px;
  font-size: 3.4rem;
  line-height: 40px;
  line-height: 4rem;
}

@media only screen and (min-width: 768px) {
  .partner-sec1 h2 em {
    font-size: 50px;
    font-size: 5rem;
    line-height: 78px;
    line-height: 7.8rem;
  }
}

.partner-sec1 p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
}

@media only screen and (min-width: 768px) {
  .partner-sec1 p {
    padding-top: 130px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 48px;
    line-height: 4.8rem;
  }
}

.partner-sec2 {
  padding-top: 100px;
  background: url(assets/images/common/bg_vertical_line_gray_long.png) repeat-x;
}

@media only screen and (min-width: 768px) {
  .partner-sec2 {
    margin-bottom: 70px;
    padding-top: 80px;
  }
}

.partner-sec2__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.partner-sec2__col {
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px) {
  .partner-sec2__col {
    margin-bottom: 0;
    width: 325px;
  }
}

.partner-sec2__col h3 {
  margin-bottom: 25px;
  background-color: #005d9a;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 40px;
  line-height: 4rem;
  color: #fff;
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.1rem;
}

@media only screen and (min-width: 768px) {
  .partner-sec2__col h3 {
    margin-bottom: 30px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 55px;
    line-height: 5.5rem;
  }
}

.partner-sec2__col p {
  margin-bottom: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

@media only screen and (min-width: 768px) {
  .partner-sec2__col p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}

.partner-sec2__col ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.partner-sec2__col ul li {
  margin-bottom: 10px;
  padding-left: 16px;
  font-family: "YuGothic", "游ゴシック", sans-serif;
  position: relative;
}

.partner-sec2__col ul li::before {
  content: '';
  width: 9px;
  height: 1px;
  background-color: #005d9a;
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
}

@media only screen and (min-width: 768px) {
  .partner-sec2__col ul li {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 24px;
    line-height: 2.4rem;
  }
}

.partner-sec2__img {
  padding-top: 57%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.partner-sec2__img img {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/**
/* page - contact
============================================================*/
.form_lead {
  margin-bottom: 50px;
  text-align: center;
  font-family: "YuGothic", "游ゴシック", sans-serif;
}

.form_lead em {
  color: #de0000;
}

.lead02 {
  text-align: center;
  margin-bottom: 60px;
}

#form_area .must {
  font-size: 11px;
  color: #de0000;
  border: 1px solid #de0000;
  padding: 3px 5px;
  line-height: 1;
  vertical-align: 2px;
  display: inline-block;
  margin-right: 5px;
}

#form_area dl {
  clear: both;
  display: table;
  width: 100%;
  border-bottom: 1px solid #9c9c9c;
}

#form_area dl:first-child {
  border-top: 1px solid #9c9c9c;
}

#form_area dt {
  background: url(../../images/common/icn-arrowRed01.png) no-repeat 49px center;
  width: 28%;
  background-size: 5px;
  display: table-cell;
  vertical-align: middle;
  font-weight: 600;
}

#form_area dd {
  display: table-cell;
  width: 100%;
  padding: 15px 0;
  position: relative;
}

@media only screen and (min-width: 768px) {
  #form_area dd {
    width: 75%;
  }
}

#form_area .must {
  font-size: 11px;
  color: #de0000;
  border: 1px solid #de0000;
  padding: 3px 5px;
  line-height: 1;
  vertical-align: 2px;
  display: inline-block;
  margin-right: 5px !important;
}

#form_area dl .free {
  font-size: 11px;
  color: #787777;
  border: 1px solid #787777;
  padding: 3px 5px;
  line-height: 1;
  vertical-align: 2px;
  display: inline-block;
  margin-right: 5px;
}

#form_area .add_btn {
  display: inline-block;
}

#form_area input[type=text], #form_area input[type=email] {
  padding: 9px;
  width: 100%;
  border: 1px solid #a0a0a0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 14px;
  line-height: 1.4rem;
}

@media only screen and (min-width: 768px) {
  #form_area input[type=text], #form_area input[type=email] {
    width: 350px;
  }
}

#form_area .mail_area input:first-child {
  margin-bottom: 15px;
}

#form_area #zip, #form_area #zip02 {
  width: 171px;
}

#form_area select {
  margin-bottom: 10px;
  padding: 10px 15px 10px 15px;
  width: 170px;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 13px;
  line-height: 1.3rem;
}

#form_area select#pref, #form_area select#pref02 {
  /*margin: 15px 0;*/
  border: 1px solid #a0a0a0;
}

@media only screen and (min-width: 768px) {
  #form_area select {
    margin-bottom: 0;
  }
}

#form_area #address, #form_area #address02 {
  width: 80%;
}

#form_area .add_btn input {
  background: url(../../images/contact/btn-add.png) no-repeat;
  border: none;
  width: 171px;
  height: 50px;
  vertical-align: -18px;
  cursor: pointer;
  margin-left: 10px;
}

#form_area textarea {
  padding: 0 6px;
  height: 180px;
  width: 80%;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 22px;
  line-height: 2.2rem;
}

.privacy .ttl {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 16px;
  line-height: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #9c9c9c;
}

.privacy .scrollContents {
  padding: 30px 10%;
  height: 280px;
  overflow-y: scroll;
}

.privacy .scrollContents p {
  line-height: 1.6;
}

.privacy_check {
  background-color: #f3f3f3;
  text-align: center;
  padding: 10px 0;
  width: 80%;
  margin: 40px auto;
}

.privacy_check .mwform-checkbox-field {
  margin: 0 !important;
}
.privacy a {
	text-decoration: underline;
	color:#005d9a;
}

#form_area .btn_area {
  margin-bottom: 120px;
  max-width: 760px;
  margin: 0 auto 120px auto;
  text-align: center;
}

#form_area .btn_area button {
  margin: auto;
  padding: 10px 0;
  width: 80%;
  max-width: 760px;
  background-color: #005d9a;
  border: none;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 40px;
  line-height: 4rem;
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #fff;
  text-align: center;
  font-weight: normal;
  display: block;
  cursor: pointer;
}

#form_area .btn_area button:hover {
  opacity: 0.7;
  transition: opacity 0.2s linear;
  text-decoration: none;
}

#form_area .back button {
  width: 42%;
  color: #59a6f3;
  border: 3px solid #59a6f3;
  background: url(../../images/common/icn-arrowRed02.png) no-repeat 35px center;
  background-size: 10px;
  display: inline-block;
}

#form_area .submit button {
  width: 42%;
  background-size: 10px;
  display: inline-block;
  background-position: 95% center;
  padding: 13px 0;
  margin-left: 15px;
}

.confirm #form_area .privacy {
  display: none;
}

.confirm #form_area dt, .confirm #form_area dd {
  min-height: 62px;
  line-height: 1.6;
}

.confirm #form_area .sub, .confirm #form_area #zip-btn, .confirm #form_area #zip-btn02 {
  display: none;
}

.confirm .lead {
  text-align: center;
  margin-bottom: 60px;
}

.thanks .lead {
  text-align: center;
  margin-bottom: 80px;
}

.thanks .lead .ttl {
  color: #dc2300;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.2em;
}

.thanks .lead p:first-child {
  margin-left: -60px;
}

.mwform-checkbox-field {
  display: inline-block;
  margin: 5px 15px 5px 0;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  padding-right: 10px;
  margin-left: 0;
}

.open_area {
  display: none;
}

#form_area .birth input, #form_area dd .birth select, #form_area .age input {
  width: 20%;
}

.mw_wp_form .error {
  margin: 10px 0 0 0;
}

/*お問い合わせのディスプレイのみ*/
#entry input[type="text"], #entry input[type="password"], #entry input[type="datetime"], #entry input[type="datetime-local"], #entry input[type="date"], #entry input[type="month"], #entry input[type="time"], #entry input[type="week"], #entry input[type="number"], #entry input[type="email"], #entry input[type="url"], #entry input[type="search"], #entry input[type="tel"], #entry input[type="color"] {
  display: inline !important;
}

#entry select, #entry textarea, #entry .field {
  display: inline !important;
}

/*メディアクエリ*/
/*お問い合わせ-------------------------------------------------------------------*/
@media only screen and (max-width: 867px) {
  .contact .lead {
    background: url(../../images_sp/contact/icn.png), url(../../images/license/bg-yellow.png);
    background-repeat: no-repeat, repeat;
    background-position: center 20px, left center;
    padding: 130px 20px 20px 20px;
    border-radius: 15px;
    margin-bottom: 80px;
    background-size: calc(100% - 40px), auto;
  }
  .contact .lead02 {
    padding: 0 25px;
  }
  #form_area dt {
    width: 100%;
    display: block;
  }
  #form_area dl {
    display: block;
    padding: 10px 0;
    margin: 10px 0;
  }
  #form_area dd {
    display: table-cell;
    width: 100%;
    padding: 15px 0 0 0;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 14px;
    line-height: 1.4rem;
  }
  #form_area dd .sub {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 14px;
    line-height: 1.4rem;
    margin: 10px 0 0 0;
  }
  #form_area textarea {
    width: 100%;
  }
  .privacy_check {
    width: 100%;
  }
  .privacy_check .mwform-checkbox-field {
    width: 100%;
  }
}

/*プライバシーポリシー-------------------------------------------------------------------*/
.box_privacy p {
	margin-bottom:20px;
}
.box_privacy .page__ttl_lv2 {
	margin:50px 0;
}
.box_privacy_con h3 {
	font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: normal;
    color: #005b98;
}
.box_privacy_con h3::before {
    content: '';
    margin-right: 5px;
    width: 6px;
    height: 6px;
    background-color: #005d9a;
    display: inline-block;
    position: relative;
    top: -3px;	
}
.box_privacy_con p {
	border-bottom:1px solid #d9d9d9;
	padding-bottom:50px;
	margin-bottom:50px;
}
@media only screen and (max-width: 867px) {
	.box_privacy p br {
		display: none;
	}
	.box_privacy_con p br {
		display: block;
	}
	.box_privacy_con p a {
		word-break: break-all;
	}
	
}


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

Object - Utility

////////////////////////////////////////////////////////////*/
/* float
------------------------------------------------------------*/
.floatL, .fl-l {
  float: left !important;
}

.floatR, .fl-r {
  float: right !important;
}

/* clearfix 
------------------------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
}

.cf:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.cf {
  min-height: 1px;
}

* html .cf {
  height: 1px;
}

.clear {
  clear: both;
}

/* text align
------------------------------------------------------------*/
.al-l {
  text-align: left !important;
}

.al-c {
  text-align: center !important;
}

.al-r {
  text-align: right !important;
}

/* margin controls
------------------------------------------------------------*/
/* margin-top
- - - - - - - - - - - - - - - - - - */
.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt105 {
  margin-top: 105px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mt115 {
  margin-top: 115px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mt125 {
  margin-top: 125px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.mt135 {
  margin-top: 135px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.mt145 {
  margin-top: 145px !important;
}

.mt150 {
  margin-top: 150px !important;
}

.mt155 {
  margin-top: 155px !important;
}

.mt160 {
  margin-top: 160px !important;
}

.mt165 {
  margin-top: 165px !important;
}

.mt170 {
  margin-top: 170px !important;
}

.mt175 {
  margin-top: 175px !important;
}

.mt180 {
  margin-top: 180px !important;
}

.mt185 {
  margin-top: 185px !important;
}

.mt190 {
  margin-top: 190px !important;
}

.mt195 {
  margin-top: 195px !important;
}

.mt200 {
  margin-top: 200px !important;
}

/* margin-right
- - - - - - - - - - - - - - - - - - */
.mr0 {
  margin-right: 0px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mr105 {
  margin-right: 105px !important;
}

.mr110 {
  margin-right: 110px !important;
}

.mr115 {
  margin-right: 115px !important;
}

.mr120 {
  margin-right: 120px !important;
}

.mr125 {
  margin-right: 125px !important;
}

.mr130 {
  margin-right: 130px !important;
}

.mr135 {
  margin-right: 135px !important;
}

.mr140 {
  margin-right: 140px !important;
}

.mr145 {
  margin-right: 145px !important;
}

.mr150 {
  margin-right: 150px !important;
}

.mr155 {
  margin-right: 155px !important;
}

.mr160 {
  margin-right: 160px !important;
}

.mr165 {
  margin-right: 165px !important;
}

.mr170 {
  margin-right: 170px !important;
}

.mr175 {
  margin-right: 175px !important;
}

.mr180 {
  margin-right: 180px !important;
}

.mr185 {
  margin-right: 185px !important;
}

.mr190 {
  margin-right: 190px !important;
}

.mr195 {
  margin-right: 195px !important;
}

.mr200 {
  margin-right: 200px !important;
}

/* margin-bottom
- - - - - - - - - - - - - - - - - - */
.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb105 {
  margin-bottom: 105px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb115 {
  margin-bottom: 115px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb125 {
  margin-bottom: 125px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb135 {
  margin-bottom: 135px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.mb145 {
  margin-bottom: 145px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.mb155 {
  margin-bottom: 155px !important;
}

.mb160 {
  margin-bottom: 160px !important;
}

.mb165 {
  margin-bottom: 165px !important;
}

.mb170 {
  margin-bottom: 170px !important;
}

.mb175 {
  margin-bottom: 175px !important;
}

.mb180 {
  margin-bottom: 180px !important;
}

.mb185 {
  margin-bottom: 185px !important;
}

.mb190 {
  margin-bottom: 190px !important;
}

.mb195 {
  margin-bottom: 195px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

/* margin-left
- - - - - - - - - - - - - - - - - - */
.ml0 {
  margin-left: 0px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.ml105 {
  margin-left: 105px !important;
}

.ml110 {
  margin-left: 110px !important;
}

.ml115 {
  margin-left: 115px !important;
}

.ml120 {
  margin-left: 120px !important;
}

.ml125 {
  margin-left: 125px !important;
}

.ml130 {
  margin-left: 130px !important;
}

.ml135 {
  margin-left: 135px !important;
}

.ml140 {
  margin-left: 140px !important;
}

.ml145 {
  margin-left: 145px !important;
}

.ml150 {
  margin-left: 150px !important;
}

.ml155 {
  margin-left: 155px !important;
}

.ml160 {
  margin-left: 160px !important;
}

.ml165 {
  margin-left: 165px !important;
}

.ml170 {
  margin-left: 170px !important;
}

.ml175 {
  margin-left: 175px !important;
}

.ml180 {
  margin-left: 180px !important;
}

.ml185 {
  margin-left: 185px !important;
}

.ml190 {
  margin-left: 190px !important;
}

.ml195 {
  margin-left: 195px !important;
}

.ml200 {
  margin-left: 200px !important;
}

/* padding controls
------------------------------------------------------------*/
/* padding-top
- - - - - - - - - - - - - - - - - - */
.pt0 {
  padding-top: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pt105 {
  padding-top: 105px !important;
}

.pt110 {
  padding-top: 110px !important;
}

.pt115 {
  padding-top: 115px !important;
}

.pt120 {
  padding-top: 120px !important;
}

.pt125 {
  padding-top: 125px !important;
}

.pt130 {
  padding-top: 130px !important;
}

.pt135 {
  padding-top: 135px !important;
}

.pt140 {
  padding-top: 140px !important;
}

.pt145 {
  padding-top: 145px !important;
}

.pt150 {
  padding-top: 150px !important;
}

.pt155 {
  padding-top: 155px !important;
}

.pt160 {
  padding-top: 160px !important;
}

.pt165 {
  padding-top: 165px !important;
}

.pt170 {
  padding-top: 170px !important;
}

.pt175 {
  padding-top: 175px !important;
}

.pt180 {
  padding-top: 180px !important;
}

.pt185 {
  padding-top: 185px !important;
}

.pt190 {
  padding-top: 190px !important;
}

.pt195 {
  padding-top: 195px !important;
}

.pt200 {
  padding-top: 200px !important;
}

/* padding-right
- - - - - - - - - - - - - - - - - - */
.pr0 {
  padding-right: 0px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pr105 {
  padding-right: 105px !important;
}

.pr110 {
  padding-right: 110px !important;
}

.pr115 {
  padding-right: 115px !important;
}

.pr120 {
  padding-right: 120px !important;
}

.pr125 {
  padding-right: 125px !important;
}

.pr130 {
  padding-right: 130px !important;
}

.pr135 {
  padding-right: 135px !important;
}

.pr140 {
  padding-right: 140px !important;
}

.pr145 {
  padding-right: 145px !important;
}

.pr150 {
  padding-right: 150px !important;
}

.pr155 {
  padding-right: 155px !important;
}

.pr160 {
  padding-right: 160px !important;
}

.pr165 {
  padding-right: 165px !important;
}

.pr170 {
  padding-right: 170px !important;
}

.pr175 {
  padding-right: 175px !important;
}

.pr180 {
  padding-right: 180px !important;
}

.pr185 {
  padding-right: 185px !important;
}

.pr190 {
  padding-right: 190px !important;
}

.pr195 {
  padding-right: 195px !important;
}

.pr200 {
  padding-right: 200px !important;
}

/* padding-bottom
- - - - - - - - - - - - - - - - - - */
.pb0 {
  padding-bottom: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb105 {
  padding-bottom: 105px !important;
}

.pb110 {
  padding-bottom: 110px !important;
}

.pb115 {
  padding-bottom: 115px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.pb125 {
  padding-bottom: 125px !important;
}

.pb130 {
  padding-bottom: 130px !important;
}

.pb135 {
  padding-bottom: 135px !important;
}

.pb140 {
  padding-bottom: 140px !important;
}

.pb145 {
  padding-bottom: 145px !important;
}

.pb150 {
  padding-bottom: 150px !important;
}

.pb155 {
  padding-bottom: 155px !important;
}

.pb160 {
  padding-bottom: 160px !important;
}

.pb165 {
  padding-bottom: 165px !important;
}

.pb170 {
  padding-bottom: 170px !important;
}

.pb175 {
  padding-bottom: 175px !important;
}

.pb180 {
  padding-bottom: 180px !important;
}

.pb185 {
  padding-bottom: 185px !important;
}

.pb190 {
  padding-bottom: 190px !important;
}

.pb195 {
  padding-bottom: 195px !important;
}

.pb200 {
  padding-bottom: 200px !important;
}

/* padding-left
- - - - - - - - - - - - - - - - - - */
.pl0 {
  padding-left: 0px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.pl105 {
  padding-left: 105px !important;
}

.pl110 {
  padding-left: 110px !important;
}

.pl115 {
  padding-left: 115px !important;
}

.pl120 {
  padding-left: 120px !important;
}

.pl125 {
  padding-left: 125px !important;
}

.pl130 {
  padding-left: 130px !important;
}

.pl135 {
  padding-left: 135px !important;
}

.pl140 {
  padding-left: 140px !important;
}

.pl145 {
  padding-left: 145px !important;
}

.pl150 {
  padding-left: 150px !important;
}

.pl155 {
  padding-left: 155px !important;
}

.pl160 {
  padding-left: 160px !important;
}

.pl165 {
  padding-left: 165px !important;
}

.pl170 {
  padding-left: 170px !important;
}

.pl175 {
  padding-left: 175px !important;
}

.pl180 {
  padding-left: 180px !important;
}

.pl185 {
  padding-left: 185px !important;
}

.pl190 {
  padding-left: 190px !important;
}

.pl195 {
  padding-left: 195px !important;
}

.pl200 {
  padding-left: 200px !important;
}

/* paersentage width
-------------------------------------------------------------*/
/* base
- - - - - - - - - - - - - - - - - - */
.w0p {
  width: 0% !important;
}

.w5p {
  width: 5% !important;
}

.w10p {
  width: 10% !important;
}

.w15p {
  width: 15% !important;
}

.w20p {
  width: 20% !important;
}

.w25p {
  width: 25% !important;
}

.w30p {
  width: 30% !important;
}

.w35p {
  width: 35% !important;
}

.w40p {
  width: 40% !important;
}

.w45p {
  width: 45% !important;
}

.w50p {
  width: 50% !important;
}

.w55p {
  width: 55% !important;
}

.w60p {
  width: 60% !important;
}

.w65p {
  width: 65% !important;
}

.w70p {
  width: 70% !important;
}

.w75p {
  width: 75% !important;
}

.w80p {
  width: 80% !important;
}

.w85p {
  width: 85% !important;
}

.w90p {
  width: 90% !important;
}

.w95p {
  width: 95% !important;
}

.w100p {
  width: 100% !important;
}

/* media query extra small
- - - - - - - - - - - - - - - - - - */
@media only screen and (min-width: 320px) {
  .w_xsm0p {
    width: 0% !important;
  }
  .w_xsm5p {
    width: 5% !important;
  }
  .w_xsm10p {
    width: 10% !important;
  }
  .w_xsm15p {
    width: 15% !important;
  }
  .w_xsm20p {
    width: 20% !important;
  }
  .w_xsm25p {
    width: 25% !important;
  }
  .w_xsm30p {
    width: 30% !important;
  }
  .w_xsm35p {
    width: 35% !important;
  }
  .w_xsm40p {
    width: 40% !important;
  }
  .w_xsm45p {
    width: 45% !important;
  }
  .w_xsm50p {
    width: 50% !important;
  }
  .w_xsm55p {
    width: 55% !important;
  }
  .w_xsm60p {
    width: 60% !important;
  }
  .w_xsm65p {
    width: 65% !important;
  }
  .w_xsm70p {
    width: 70% !important;
  }
  .w_xsm75p {
    width: 75% !important;
  }
  .w_xsm80p {
    width: 80% !important;
  }
  .w_xsm85p {
    width: 85% !important;
  }
  .w_xsm90p {
    width: 90% !important;
  }
  .w_xsm95p {
    width: 95% !important;
  }
  .w_xsm100p {
    width: 100% !important;
  }
}

/* media query small
- - - - - - - - - - - - - - - - - - */
@media only screen and (min-width: 375px) {
  .w_sm0p {
    width: 0% !important;
  }
  .w_sm5p {
    width: 5% !important;
  }
  .w_sm10p {
    width: 10% !important;
  }
  .w_sm15p {
    width: 15% !important;
  }
  .w_sm20p {
    width: 20% !important;
  }
  .w_sm25p {
    width: 25% !important;
  }
  .w_sm30p {
    width: 30% !important;
  }
  .w_sm35p {
    width: 35% !important;
  }
  .w_sm40p {
    width: 40% !important;
  }
  .w_sm45p {
    width: 45% !important;
  }
  .w_sm50p {
    width: 50% !important;
  }
  .w_sm55p {
    width: 55% !important;
  }
  .w_sm60p {
    width: 60% !important;
  }
  .w_sm65p {
    width: 65% !important;
  }
  .w_sm70p {
    width: 70% !important;
  }
  .w_sm75p {
    width: 75% !important;
  }
  .w_sm80p {
    width: 80% !important;
  }
  .w_sm85p {
    width: 85% !important;
  }
  .w_sm90p {
    width: 90% !important;
  }
  .w_sm95p {
    width: 95% !important;
  }
  .w_sm100p {
    width: 100% !important;
  }
}

/* media query midium
- - - - - - - - - - - - - - - - - - */
@media only screen and (min-width: 768px) {
  .w_md0p {
    width: 0% !important;
  }
  .w_md5p {
    width: 5% !important;
  }
  .w_md10p {
    width: 10% !important;
  }
  .w_md15p {
    width: 15% !important;
  }
  .w_md20p {
    width: 20% !important;
  }
  .w_md25p {
    width: 25% !important;
  }
  .w_md30p {
    width: 30% !important;
  }
  .w_md35p {
    width: 35% !important;
  }
  .w_md40p {
    width: 40% !important;
  }
  .w_md45p {
    width: 45% !important;
  }
  .w_md50p {
    width: 50% !important;
  }
  .w_md55p {
    width: 55% !important;
  }
  .w_md60p {
    width: 60% !important;
  }
  .w_md65p {
    width: 65% !important;
  }
  .w_md70p {
    width: 70% !important;
  }
  .w_md75p {
    width: 75% !important;
  }
  .w_md80p {
    width: 80% !important;
  }
  .w_md85p {
    width: 85% !important;
  }
  .w_md90p {
    width: 90% !important;
  }
  .w_md95p {
    width: 95% !important;
  }
  .w_md100p {
    width: 100% !important;
  }
}

/* media query large
- - - - - - - - - - - - - - - - - - */
@media only screen and (min-width: 980px) {
  .w_lg0p {
    width: 0% !important;
  }
  .w_lg5p {
    width: 5% !important;
  }
  .w_lg10p {
    width: 10% !important;
  }
  .w_lg15p {
    width: 15% !important;
  }
  .w_lg20p {
    width: 20% !important;
  }
  .w_lg25p {
    width: 25% !important;
  }
  .w_lg30p {
    width: 30% !important;
  }
  .w_lg35p {
    width: 35% !important;
  }
  .w_lg40p {
    width: 40% !important;
  }
  .w_lg45p {
    width: 45% !important;
  }
  .w_lg50p {
    width: 50% !important;
  }
  .w_lg55p {
    width: 55% !important;
  }
  .w_lg60p {
    width: 60% !important;
  }
  .w_lg65p {
    width: 65% !important;
  }
  .w_lg70p {
    width: 70% !important;
  }
  .w_lg75p {
    width: 75% !important;
  }
  .w_lg80p {
    width: 80% !important;
  }
  .w_lg85p {
    width: 85% !important;
  }
  .w_lg90p {
    width: 90% !important;
  }
  .w_lg95p {
    width: 95% !important;
  }
  .w_lg100p {
    width: 100% !important;
  }
}

/* media query extra large
- - - - - - - - - - - - - - - - - - */
@media only screen and (min-width: 980px) {
  .w_xlg0p {
    width: 0% !important;
  }
  .w_xlg5p {
    width: 5% !important;
  }
  .w_xlg10p {
    width: 10% !important;
  }
  .w_xlg15p {
    width: 15% !important;
  }
  .w_xlg20p {
    width: 20% !important;
  }
  .w_xlg25p {
    width: 25% !important;
  }
  .w_xlg30p {
    width: 30% !important;
  }
  .w_xlg35p {
    width: 35% !important;
  }
  .w_xlg40p {
    width: 40% !important;
  }
  .w_xlg45p {
    width: 45% !important;
  }
  .w_xlg50p {
    width: 50% !important;
  }
  .w_xlg55p {
    width: 55% !important;
  }
  .w_xlg60p {
    width: 60% !important;
  }
  .w_xlg65p {
    width: 65% !important;
  }
  .w_xlg70p {
    width: 70% !important;
  }
  .w_xlg75p {
    width: 75% !important;
  }
  .w_xlg80p {
    width: 80% !important;
  }
  .w_xlg85p {
    width: 85% !important;
  }
  .w_xlg90p {
    width: 90% !important;
  }
  .w_xlg95p {
    width: 95% !important;
  }
  .w_xlg100p {
    width: 100% !important;
  }
}

/* border controls
------------------------------------------------------------*/
.u-bdn {
  border: none !important;
}

.u-bdnt {
  border-top: none !important;
}

.u-bdnr {
  border-right: none !important;
}

.u-bdnb {
  border-bottom: none !important;
}

.u-bdnl {
  border-left: none !important;
}

/* display
------------------------------------------------------------*/
.dspsp {
  display: block;
}

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

.dsppc {
  display: none;
}

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

.dspn {
  display: none;
}

.dspb {
  display: block;
}

/* z-index controls
------------------------------------------------------------*/
.zindex10 {
  z-index: 10;
}

.zindex9 {
  z-index: 9;
}

.zindex8 {
  z-index: 8;
}

.zindex7 {
  z-index: 7;
}

.zindex6 {
  z-index: 6;
}

.zindex5 {
  z-index: 5;
}

.zindex4 {
  z-index: 4;
}

.zindex3 {
  z-index: 3;
}

.zindex2 {
  z-index: 2;
}

.zindex1 {
  z-index: 1;
}

.pos-r {
  position: relative !important;
}

/* hover with hilight
------------------------------------------------------------*/
.hilight:hover {
  opacity: 0.5;
  transition: opacity 0.2s linear;
  text-decoration: none !important;
}
.recruit_order_btn {
    margin: auto;
    padding: 10px 0;
    width: 80%;
    max-width: 760px;
    background-color: #005d9a;
    border: none;
    line-height: 40px;
    line-height: 4rem;
    font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    color: #fff !important;
    text-align: center;
    font-weight: normal;
    display: block;
    cursor: pointer;
	margin-top: 5em;
}
.recruit_order_btn:hover {
	text-decoration: none;
	color: #fff;
}

/** ポップアップ **/
.foot_cookie {
		position: fixed;
		left: 0;
		bottom: 0;
		width: 100%;
		padding: 1.0em 2%;
		background-color: rgba(0,43,88,0.9);
		display: none;
		z-index: 100;
	}
	.foot_cookie.close {
		display: none!important;
	}
	.foot_cookie_box {
		display: -webkit-flex;
    	display: flex;
	}
	.foot_cookie_box p {
		color:#fff;
		padding-right:50px;
	}
	.foot_cookie_box p a {
		color:#fff;
		text-decoration: underline;
	}
	.foot_cookie_box .btn_cookie {
		background: #fff;
		width: 220px;
		border-radius: 50em;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: center;
		align-items: center;
		cursor: pointer;
	}
	@media only screen and (max-width: 867px) {
		.foot_cookie_box {
			display: block;
		}
		.foot_cookie_box p {
			padding:10px;
		}
		.foot_cookie_box p a {
			display: inline-block;
		}
		.foot_cookie_box .btn_cookie {
			width: auto;
    		margin: 10px;
			padding: 15px;
			text-align: center;
		}
	}
