@charset "UTF-8";
/* -----------------------------------------------
* Plugins
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  color: #111;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, Meiryo, sans-serif;
  word-break: break-all;
  background: #fff;
  margin: 0;
}

body.noscroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

a {
  color: #111;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:hover {
  opacity: 0.8;
  text-decoration: none;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

#wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}

#wrapper main {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.object_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.object_contain {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.sp {
  display: none;
}

.text_center {
  text-align: center;
}

.mx-auto {
  margin: 0 auto;
}

/* 1280px 
--------------------------------------------- */
@media only screen and (max-width: 1280px) {
  body {
    font-size: 1.6rem;
  }
}
/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}
/* 767px 
--------------------------------------------- */
/* 480px 
--------------------------------------------- */
/* 374px 
--------------------------------------------- */
/*------------------------------------------------------------------------------
  header
------------------------------------------------------------------------------*/
.header {
  width: 100%;
  position: relative;
  z-index: 99;
  border-bottom: 20px solid #002076;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 30px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header__logo {
  width: 100%;
  max-width: 227px;
  padding-right: 20px;
}
.header__logo a {
  width: 100%;
  display: block;
}

.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.header__nav_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  width: 100%;
  max-width: 700px;
}

.header__nav_item {
  position: relative;
}
.header__nav_item:last-child a {
  padding-right: 24px;
}
.header__nav_item a {
  font-size: 1.6rem;
  line-height: 1;
  padding: 10px 15px 0 0;
}

.header__nav_item:nth-child(3):hover .header__nav_child {
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.header__nav_child {
  position: absolute;
  top: 25px;
  left: -100px;
  opacity: 0;
  visibility: hidden;
  width: 100%;
}

.header__nav_child_item:first-child a {
  border-top: none;
}

.header__nav_child_item a {
  padding: 20px 0px;
  text-align: center;
  display: block;
  border-top: 1px solid #eee;
  background-color: #fff;
  border-radius: 2px;
  width: 100%;
  min-width: 260px;
  white-space: nowrap;
}

.header__nav_child_item a:hover {
  opacity: 1;
  color: #888;
}

.header__btn {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.5;
  width: 100%;
  background-color: #001757;
  text-align: center;
  width: 100%;
  height: 100px;
  max-width: 250px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5px;
}

.header__btn--sm {
  max-width: 175px;
  width: 100%;
  background-color: #111;
}

.burger_btn {
  display: none;
}

.header__btn.comming-soon {
  pointer-events: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  line-height: 1.4;
  padding-bottom: 10px;
  position: relative;
}
.header__btn.comming-soon::before {
  content: "Comming soon";
  position: absolute;
  left: 50%;
  bottom: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-family: "Oswald", sans-serif;
}

/* 1024px 
--------------------------------------------- */
@media only screen and (max-width: 1024px) {
  .header__inner {
    padding: 15px 20px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: -100%;
    opacity: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity 0.27s ease;
    transition: opacity 0.27s ease;
    max-width: 100%;
    display: block;
    font-size: 1.5rem;
    overflow-y: scroll;
  }

  .header__nav.open {
    left: 0;
    opacity: 1;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0.98);
  }

  .header__nav_list {
    display: block;
    padding: 75px 20px 0px 40px;
    margin-left: 0;
    margin-bottom: 30px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .header__nav_list li {
    margin: 0 auto 15px;
    display: block;
  }

  .header__nav_item a {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    display: block;
    border-bottom: 1px solid #ddd;
    padding: 10px 15px 10px 0;
  }

  .header__nav_item:nth-child(3):hover .header__nav_child {
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }

  .header__nav_child {
    position: static;
    opacity: 1;
    visibility: visible;
    width: 100%;
    margin-top: 5px;
  }
  .header__nav_child .header__nav_child_item {
    position: relative;
    margin-bottom: 0;
  }
  .header__nav_child .header__nav_child_item::before {
    content: "-";
    position: absolute;
    top: 7px;
    left: 3px;
  }

  .header__nav_child_item a {
    padding: 12px 0px 12px 15px;
    font-size: 1.3rem;
    text-align: left;
    border-top: none;
    background-color: transparent;
    border-radius: 0;
    min-width: 0;
  }

  .header__nav_child_item a:hover {
    color: #111;
  }

  .header__btn {
    font-size: 1.55rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    height: 69px;
    max-width: 300px;
    margin: 0 auto;
  }
  .header__btn:first-of-type {
    margin-bottom: 30px;
  }
  .header__btn:first-of-type br {
    display: none;
  }

  .burger_btn {
    display: block;
    border: none;
    cursor: pointer;
    z-index: 10;
    color: #333;
  }

  .bar {
    margin: 0 auto;
    display: block;
    height: 3px;
    width: 30px;
    background-color: #333;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }

  .bar_top,
.bar_mid {
    margin-bottom: 5px;
  }

  /* ハンバーガーメニューが開いたとき */
  .burger_btn.cross .bar_top {
    -webkit-transition-delay: 20ms;
            transition-delay: 20ms;
    -webkit-transform: translateY(7px) rotate(135deg);
            transform: translateY(7px) rotate(135deg);
  }

  .burger_btn.cross .bar_mid {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
    -webkit-transform: translateX(-18px) scaleX(0);
            transform: translateX(-18px) scaleX(0);
  }

  .burger_btn.cross .bar_bottom {
    -webkit-transition-delay: 10ms;
            transition-delay: 10ms;
    -webkit-transform: translateY(-9px) rotate(-135deg);
            transform: translateY(-9px) rotate(-135deg);
  }

  .header__btn.comming-soon {
    display: none;
  }
}
/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .header {
    border-bottom: 10px solid #002076;
  }

  .header__inner {
    padding: 15px 15px 7px;
    width: 100%;
  }

  .header__logo {
    max-width: 150px;
  }

  .header__nav_list {
    padding: 40px 25px 0px;
  }

  .header__nav_list li {
    margin: 0 auto;
  }

  .header__nav_item a {
    font-size: 1.5rem;
    padding: 16px 15px 16px 0;
  }

  .header__nav_child .header__nav_child_item::before {
    top: 9px;
  }

  .header__nav_child_item a {
    font-size: 1.35rem;
    padding: 13px 0px 13px 13px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .header__nav_child_item:nth-child(4) a {
    padding: 13px 0px 13px 13px;
  }

  .header__btn {
    width: calc(100% - 50px);
    margin-bottom: 15px;
  }
  .header__btn:first-of-type {
    margin-bottom: 15px;
  }
  .header__btn .burger_btn {
    margin-top: -5px;
  }
}
/* 374px 
--------------------------------------------- */
@media only screen and (max-width: 374px) {
  .header__nav_list {
    margin-bottom: 25px;
  }

  .header__nav_list li {
    margin: 0 auto;
  }

  .header__nav_item a {
    font-size: 1.45rem;
  }

  .header__nav_child_item a {
    font-size: 1.35rem;
    padding: 13px 0px 13px 13px;
  }

  .header__nav_child_item:nth-child(4) a {
    padding: 13px 0px 13px 13px;
  }

  .header__btn {
    margin-left: 25px;
  }
}
/*------------------------------------------------------------------------------
  footer
------------------------------------------------------------------------------*/
.footer {
  background-color: #111;
  padding: 46px 0 88px;
}

.footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 35px;
  max-width: 892px;
}

.footer__nav_item:last-child a {
  border-right: none;
}
.footer__nav_item a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.71;
  padding: 0 21px;
  border-right: 1px solid #fff;
}

.footer__copyright {
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  display: block;
  text-align: center;
}

/* 950px 
--------------------------------------------- */
@media only screen and (max-width: 950px) {
  .footer__nav {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 480px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer__nav_item {
    margin-bottom: 15px;
  }
  .footer__nav_item:nth-child(4) a {
    border-right: none;
  }
  .footer__nav_item a {
    padding: 0 15px;
  }
}
/* 768px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .footer {
    padding: 30px 0 40px;
  }

  .footer__nav {
    margin: 0 auto 20px;
  }

  .footer__nav {
    max-width: 290px;
  }

  .footer__nav_item {
    margin-bottom: 12px;
  }
  .footer__nav_item:nth-child(4) a {
    border-right: 1px solid #fff;
  }
  .footer__nav_item:nth-child(2) a, .footer__nav_item:nth-child(5) a {
    border-right: none;
  }
  .footer__nav_item a {
    font-size: 1.3rem;
    padding: 0 20px;
  }
}
/*------------------------------------------------------------------------------
  laylout
------------------------------------------------------------------------------*/
.section,
.contents {
  margin-bottom: 90px;
}

.inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

.contents__main {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 70%;
      -ms-flex: 0 1 70%;
          flex: 0 1 70%;
}

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .section,
.contents {
    margin-bottom: 50px;
  }

  .contents__flex {
    display: block;
  }

  .contents__main {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    margin-bottom: 50px;
  }
}
/*------------------------------------------------------------------------------
  page_mv
------------------------------------------------------------------------------*/
.page_mv {
  width: 100%;
  height: 300px;
  position: relative;
  margin-bottom: 90px;
}

.page_mv--career {
  margin-bottom: 0;
}

.page_mv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  color: #fff;
  background-color: #002076;
  padding: 24px 52px 18px;
  text-align: center;
  white-space: nowrap;
}

.page_mv__title_en {
  font-size: 4.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  margin-bottom: 8px;
}

.page_mv__title_ja {
  line-height: 1;
  letter-spacing: 0.2em;
}

.page_mv__img {
  width: 100%;
  height: 100%;
}

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .page_mv {
    height: 180px;
    margin-bottom: 50px;
  }

  .page_mv--career {
    margin-bottom: 0;
  }

  .page_mv__title {
    padding: 14px 32px 12px;
    white-space: nowrap;
  }

  .page_mv__title_en {
    font-size: 2.4rem;
    margin-bottom: 5px;
  }
}
/*------------------------------------------------------------------------------
  cta
------------------------------------------------------------------------------*/
.cta {
  width: 100%;
  background-image: url(../img/vegetable_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 98px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.cta__content {
  width: 100%;
  max-width: 314px;
  border: 1px solid #1D1717;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 33px 10px 29px;
  margin: 0 auto;
  display: block;
}

.cta__logo {
  width: 100%;
  max-width: 262.5px;
  margin: 0 auto 6px;
}

.cta__text {
  color: #000;
  line-height: 1;
  text-align: center;
}

.cta.comming-soon .cta__content {
  pointer-events: none;
  position: relative;
}
.cta.comming-soon .cta__content::before {
  content: "Comming soon";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #333;
  font-size: 3.2rem;
  letter-spacing: 0.15em;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.92);
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 10px;
}

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .cta {
    padding: 50px 20px;
  }

  .cta__content {
    max-width: 270px;
    padding: 20px 10px;
  }

  .cta__logo {
    max-width: 170px;
    margin: 0 auto 3px;
  }

  .cta.comming-soon .cta__content::before {
    font-size: 2.4rem;
    letter-spacing: 0.1em;
    padding-bottom: 5px;
  }
}
/*------------------------------------------------------------------------------
  title
------------------------------------------------------------------------------*/
.title__en {
  color: #002076;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  margin-bottom: 11px;
}

.title02 .title__en {
  margin-bottom: 0;
}

.title__ja {
  color: #7C7C7C;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1;
}

.title02 .title__ja {
  margin-bottom: 10px;
}

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .title__en {
    font-size: 2.8rem;
    margin-bottom: 8px;
  }

  .title__ja {
    font-size: 1.3rem;
  }
}
/*------------------------------------------------------------------------------
  btn
------------------------------------------------------------------------------*/
.btn {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.71;
  background-color: #002076;
  display: block;
  width: 100%;
  max-width: 157px;
  padding: 8px 5px 8px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .btn {
    font-size: 1.3rem;
    padding: 8px 5px 8px 25px;
  }
  .btn::after {
    right: 15px;
  }
}
/*------------------------------------------------------------------------------
  fixed_btn
------------------------------------------------------------------------------*/
.fixed_btn {
  position: fixed;
  bottom: 70px;
  right: 20px;
  max-width: 70px;
  width: 100px;
  z-index: 9;
}

/* 768px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .fixed_btn {
    bottom: 20px;
    right: 10px;
    max-width: 45px;
  }
}
/*------------------------------------------------------------------------------
  news_media
------------------------------------------------------------------------------*/
.news_media_wrapper {
  margin-bottom: 70px;
}

.news_media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 10px;
  border-bottom: 1px solid #6679AC;
  padding-bottom: 25px;
}
.news_media:not(:last-child) {
  margin-bottom: 20px;
}

.news_media__thumbnail {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
  height: 150px;
  max-width: 150px;
  margin-right: 25px;
  display: block;
}

.news_media__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.news_media__date {
  color: #797979;
  font-size: 1.4rem;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.news_media__title {
  font-size: 1.8rem;
  line-height: 1.5;
  display: block;
  margin-bottom: 22px;
}
.news_media__title:hover {
  text-decoration: underline;
}

.news_media__category {
  margin-top: auto;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  margin-bottom: 5px;
}

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .news_media_wrapper {
    margin-bottom: 35px;
  }

  .news_media {
    padding-right: 5px;
    padding-bottom: 17px;
  }

  .news_media__content {
    margin-top: 10px;
  }

  .news_media__thumbnail {
    height: 120px;
    max-width: 120px;
    margin-right: 15px;
  }

  .news_media__date {
    font-size: 1.3rem;
    margin-bottom: 7px;
  }

  .news_media__title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
}
/* 480px 
--------------------------------------------- */
@media only screen and (max-width: 480px) {
  .news_media__content {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .news_media__thumbnail {
    height: 100px;
    max-width: 100px;
    margin-right: 13px;
  }

  .news_media__date {
    -webkit-box-ordinal-group: -1;
    -webkit-order: -2;
        -ms-flex-order: -2;
            order: -2;
    margin: 5px 8px 0 0;
  }

  .news_media__category {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    margin: 0;
  }

  .news_media__title {
    margin: 9px 0 0;
  }
}
/*------------------------------------------------------------------------------
  sidebar
------------------------------------------------------------------------------*/
.single_post__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  border-bottom: 1px solid #6679AC;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.single_post__date {
  color: #797979;
  font-size: 1.4rem;
  line-height: 1;
  margin-right: 21px;
  display: block;
  margin-top: 7px;
}

.single_post__title {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 100%;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  font-size: 2rem;
  font-weight: normal;
  line-height: 1.5;
  margin-top: 20px;
}

.single_post__content {
  margin-bottom: 67px;
}
.single_post__content p {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.single_post__content p:not(:last-of-type) {
  margin-bottom: 35px;
}
.single_post__content a {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #002998;
}
.single_post__content a:hover {
  text-decoration: underline;
}

.single_post__img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.single_post__btn {
  max-width: 250px;
  padding: 13px 5px 13px 82px;
}

/* 800px 
--------------------------------------------- */
@media only screen and (max-width: 800px) {
  .single_post__title {
    font-size: 1.6rem;
  }
}
/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .single_post__head {
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .single_post__date {
    font-size: 1.3rem;
    margin-right: 12px;
    margin-top: 5px;
  }

  .single_post__title {
    margin-top: 12px;
  }

  .single_post__content {
    margin-bottom: 40px;
  }
  .single_post__content p {
    font-size: 1.3rem;
  }
  .single_post__content p:not(:last-of-type) {
    margin-bottom: 20px;
  }

  .single_post__img {
    margin-bottom: 20px;
  }

  .single_post__btn {
    max-width: 200px;
    padding: 10px 5px 10px 57px;
  }
}
/*------------------------------------------------------------------------------
  category_label
------------------------------------------------------------------------------*/
.category_label {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  background-color: #002076;
  text-align: center;
  display: inline-block;
  border-radius: 2px;
  padding: 7px 16px;
}

/* 768px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .category_label {
    font-size: 1.3rem;
    padding: 5px 12px;
  }
}
/*------------------------------------------------------------------------------
  sidebar
------------------------------------------------------------------------------*/
.sidebar {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 25%;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
  max-width: 250px;
  width: 100%;
}

.sidebar__content:not(:last-of-type) {
  margin-bottom: 50px;
}

.sidebar__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  padding-bottom: 12px;
  border-bottom: 1px solid #6679AC;
  width: 100%;
}

.sidebar__title_en {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #002076;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-family: "Oswald", sans-serif;
  margin-right: 8px;
}

.sidebar__title_ja {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #656565;
  font-size: 1.3rem;
  font-weight: normal;
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
}

.sidebar__category li {
  position: relative;
}
.sidebar__category li::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 500;
}

.sidebar__category li a {
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  width: 100%;
  border-bottom: 1px solid #6679AC;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 22px 16px 5px;
  display: block;
}

.sidebar__archive {
  margin-top: 15px;
  position: relative;
}
.sidebar__archive:after {
  content: "";
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: -1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 6px;
  height: 6px;
  border-right: 1px solid #111;
  border-bottom: 1px solid #111;
}

.sidebar__archive_list {
  font-size: 1.5rem;
  width: 100%;
  height: 42px;
  line-height: 42px;
  border: 1px solid #ddd;
  padding-left: 14px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .sidebar {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 100%;
  }

  .sidebar__content:not(:last-of-type) {
    margin-bottom: 40px;
  }

  .sidebar__title {
    padding-bottom: 9px;
  }

  .sidebar__title_en {
    font-size: 2.2rem;
  }

  .sidebar__title_ja {
    font-size: 1.25rem;
  }

  .sidebar__category li a {
    padding: 14px 22px 14px 5px;
  }

  .sidebar__archive_list {
    color: #333;
    font-size: 1.6rem;
    height: 42px;
    line-height: 42px;
    border: 1px solid #ddd;
  }
}
/*------------------------------------------------------------------------------
  pagination
------------------------------------------------------------------------------*/
.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.pagination li {
  margin: 0 7.5px;
}

.pagination__prev,
.pagination__next,
.pagination__number {
  color: #fff;
  font-size: 2rem;
  line-height: 45px;
  width: 45px;
  height: 45px;
  display: block;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #002076;
  border: 1px solid #002076;
  font-family: "Oswald", sans-serif;
}
.pagination__prev:hover,
.pagination__next:hover,
.pagination__number:hover {
  color: #002076;
  background-color: #fff;
}

.pagination__number.current {
  pointer-events: none;
  color: #002076;
  background-color: #fff;
}

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .pagination li {
    margin: 0 6px;
  }

  .pagination__prev,
.pagination__next,
.pagination__number {
    font-size: 1.6rem;
    line-height: 37px;
    width: 37px;
    height: 37px;
  }
}
/*------------------------------------------------------------------------------
  utility
------------------------------------------------------------------------------*/
.mx_auto {
  margin: 0 auto;
}

.text_center {
  text-align: center;
}

/* 768px 
--------------------------------------------- */
/*------------------------------------------------------------------------------
  mv
------------------------------------------------------------------------------*/
.mv {
  width: 100%;
  margin-bottom: 80px;
  position: relative;
  z-index: 0;
}

.swiper1 {
  width: 100%;
  height: 36.8vw;
  min-height: 530px;
}

.mv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  background-color: #002076;
  z-index: 2;
  width: 100%;
  max-width: 445px;
  text-align: center;
  padding: 35px 10px 40px;
}

.mv__title_en {
  font-size: 6.8rem;
  font-weight: 500;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  margin-bottom: 17px;
}

.mv__title_ja {
  letter-spacing: 0.2em;
  line-height: 1;
}

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

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .mv {
    margin-bottom: 40px;
  }

  .swiper1 {
    height: 66vw;
    min-height: 280px;
  }

  .mv__title {
    max-width: 260px;
    padding: 17px 10px 20px;
  }

  .mv__title_en {
    font-size: 3.4rem;
    margin-bottom: 10px;
  }
}
/*------------------------------------------------------------------------------
  iwata group
------------------------------------------------------------------------------*/
.iwata_group_wrapper {
  margin-bottom: 40px;
}

.iwata_group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

.iwata_group__logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 16.0%;
      -ms-flex: 0 1 16.0%;
          flex: 0 1 16.0%;
  width: 100%;
}
.iwata_group__logo:nth-child(2) {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 15.8%;
      -ms-flex: 0 1 15.8%;
          flex: 0 1 15.8%;
}
.iwata_group__logo:nth-child(3) {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 6.89%;
      -ms-flex: 0 1 6.89%;
          flex: 0 1 6.89%;
}
.iwata_group__logo:nth-child(4) {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 13.87%;
      -ms-flex: 0 1 13.87%;
          flex: 0 1 13.87%;
}
.iwata_group__logo:nth-child(5) {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 17.3%;
      -ms-flex: 0 1 17.3%;
          flex: 0 1 17.3%;
}
.iwata_group__logo:last-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 10.84%;
      -ms-flex: 0 1 10.84%;
          flex: 0 1 10.84%;
}

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .iwata_group_wrapper {
    margin-bottom: 30px;
  }

  .iwata_group {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 500px;
  }

  .iwata_group__logo {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 45%;
        -ms-flex: 0 1 45%;
            flex: 0 1 45%;
    width: 100%;
    margin-bottom: 20px;
  }
  .iwata_group__logo:nth-child(2) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 45%;
        -ms-flex: 0 1 45%;
            flex: 0 1 45%;
  }
  .iwata_group__logo:nth-child(3) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 45%;
        -ms-flex: 0 1 45%;
            flex: 0 1 45%;
  }
  .iwata_group__logo:nth-child(3) img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  .iwata_group__logo:nth-child(4) {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 45%;
        -ms-flex: 0 1 45%;
            flex: 0 1 45%;
  }
  .iwata_group__logo:last-child {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 45%;
        -ms-flex: 0 1 45%;
            flex: 0 1 45%;
    margin: 0 auto;
  }
}
/*------------------------------------------------------------------------------
  top_news
------------------------------------------------------------------------------*/
.top_news {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.top_news__title {
  color: #002076;
  font-size: 2.5rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  margin-right: 30px;
  padding-top: 19px;
}

.top_news__list {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 29px;
}

.top_news__item {
  border-bottom: 1px solid #ddd;
}

.top_news__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.71;
  font-size: 1.4rem;
  padding: 23px 0;
}

.top_news__item_date {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #797979;
  margin-right: 30px;
}

.top_news__item_title {
  font-size: 1.4rem;
  font-weight: normal;
}
.top_news__item_title:hover {
  text-decoration: underline;
}

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .top_news {
    display: block;
  }

  .top_news__title {
    font-size: 2.4rem;
    margin-right: 0;
    padding-top: 0;
  }

  .top_news__item a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    display: block;
    font-size: 1.3rem;
    padding: 13px 0;
  }

  .top_news__item_date {
    margin-right: 0;
    margin-bottom: 10px;
    display: block;
  }

  .top_news__item_title {
    font-size: 1.3rem;
  }
}
/*------------------------------------------------------------------------------
  top_about top_business
------------------------------------------------------------------------------*/
.top_about {
  margin-bottom: 80px;
}

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

.top_media__content {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 34.5%;
      -ms-flex: 0 1 34.5%;
          flex: 0 1 34.5%;
}

.top_about .top_media__content {
  margin-left: 11.8%;
  margin-left: calc((100vw - 1000px) / 2);
  margin-top: 166px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.top_media__detail {
  background-color: #F7F7F7;
  width: 100%;
  max-width: 400px;
  min-height: 228px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.top_about .top_media__detail {
  margin-left: -55px;
}

.top_media__detail_inner {
  position: relative;
  padding: 50px 10px 10px 50px;
}

.top_media__title {
  position: absolute;
  top: -33px;
  left: 50px;
}

.top_media__text {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 33px;
}

.top_media__img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 65.5%;
      -ms-flex: 0 1 65.5%;
          flex: 0 1 65.5%;
  width: 100%;
  height: 34.7vw;
  min-height: 400px;
}

.top_business {
  margin-bottom: 80px;
}

.top_business .top_media__content {
  margin-top: 134px;
  margin-right: 11.8%;
  margin-right: calc((100vw - 1000px) / 2);
  margin-left: 30px;
}

.top_business_card_wrapper {
  padding: 160px 0 100px;
  margin-top: -70px;
  background-color: #DFE2EA;
}

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

.top_business_card {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 23.1%;
      -ms-flex: 0 1 23.1%;
          flex: 0 1 23.1%;
  max-width: 231px;
}
.top_business_card a {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fff;
}

.top_business_card__img {
  width: 100%;
  height: 156px;
}

.top_business_card__title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.33;
  text-align: center;
  padding: 16px 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top_business_card__title span {
  height: 100%;
}

/* 1441px 
--------------------------------------------- */
@media only screen and (min-width: 1441px) {
  .top_media__content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 30%;
        -ms-flex: 0 1 30%;
            flex: 0 1 30%;
  }

  .top_about .top_media__content {
    margin-right: 30px;
  }

  .top_about .top_media__content .top_media__detail {
    margin-left: 0;
    margin-right: 30px;
  }

  .top_business .top_media__content .top_media__detail {
    margin-left: auto;
  }

  .top_media__img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 68%;
        -ms-flex: 0 1 68%;
            flex: 0 1 68%;
  }
}
/* 1200px 
--------------------------------------------- */
@media only screen and (max-width: 1200px) {
  .top_media__content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 39%;
        -ms-flex: 0 1 39%;
            flex: 0 1 39%;
  }

  .top_about .top_media__detail {
    margin-left: 0px;
  }

  .top_media__img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 55%;
        -ms-flex: 0 1 55%;
            flex: 0 1 55%;
  }
}
/* 1024px 
--------------------------------------------- */
@media only screen and (max-width: 1024px) {
  .top_media__content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 43.5%;
        -ms-flex: 0 1 43.5%;
            flex: 0 1 43.5%;
  }

  .top_about .top_media__content {
    padding: 0 20px;
    margin-left: 0;
    margin-top: 100px;
  }

  .top_business .top_media__content {
    margin: 70px 0 0;
    padding: 0 20px;
  }
}
/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .top_about {
    margin-bottom: 40px;
  }

  .top_media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .top_about .top_media__content {
    padding: 0 20px;
    margin-top: 48px;
  }

  .top_media__detail {
    max-width: 350px;
    min-height: 170px;
  }

  .top_media__detail_inner {
    padding: 30px 10px 10px 20px;
  }

  .top_media__title {
    position: absolute;
    top: -28px;
    left: 20px;
  }

  .top_media__text {
    font-size: 1.3rem;
    margin-bottom: 22px;
  }

  .top_media__img {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    min-height: 0;
    height: 100%;
  }
  .top_media__img img {
    width: calc(100% - 40px);
    margin: 0 auto;
    display: block;
  }

  .top_business {
    margin-bottom: 40px;
  }

  .top_business .top_media__content {
    margin: 55px 0 0;
  }

  .top_business_card_wrapper {
    padding: 90px 0 30px;
    margin-top: -50px;
  }

  .top_business_card_list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
  }

  .top_business_card {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 48%;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
    max-width: 300px;
    margin-bottom: 15px;
  }

  .top_business_card__img {
    height: 29vw;
  }

  .top_business_card__title {
    font-size: 1.3rem;
    padding: 14px 9px;
    min-height: 65px;
  }
}
/*------------------------------------------------------------------------------
    top_career 
  ------------------------------------------------------------------------------*/
.top_career {
  margin-bottom: 80px;
}

.top_career__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 300px;
  background-color: #F7F7F7;
}

.top_career__img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 50%;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  width: 100%;
  height: 100%;
  max-width: 500px;
}

.top_career__content {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 50%;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.top_career__detail {
  padding-top: 57px;
  text-align: center;
}

.top_career__text {
  font-size: 1.4rem;
  line-height: 2;
  display: block;
  margin: 10px 0 12px;
}

.top_career .btn {
  text-align: left;
}

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .top_career {
    margin-bottom: 40px;
  }

  .top_career__flex {
    display: block;
    height: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .top_career__img {
    max-width: 100%;
  }

  .top_career__detail {
    padding-top: 20px;
    padding: 20px 0 30px;
  }

  .top_career__text {
    font-size: 1.3rem;
    line-height: 1.7;
    margin: 10px 0 12px;
  }
}
/*------------------------------------------------------------------------------
  about
------------------------------------------------------------------------------*/
.about {
  margin-bottom: 150px;
  position: relative;
}
.about::after {
  content: "";
  position: absolute;
  top: 73px;
  right: 0;
  width: 40.2vw;
  height: 670px;
  z-index: -1;
  background-color: #F2F5FC;
}

.about__inner {
  max-width: 1130px;
}

.about__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 43px;
}

.about__text_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 49%;
      -ms-flex: 0 1 49%;
          flex: 0 1 49%;
  margin-top: 32px;
}

.about__title {
  color: #002076;
  font-size: 4.2rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1;
  margin-bottom: 35px;
}

.about__text {
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 28px;
}

.about__text--last {
  margin-bottom: 55px;
}

.about__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  max-width: 365px;
  margin-bottom: 28px;
}
.about__list li {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 33.3%;
      -ms-flex: 0 1 33.3%;
          flex: 0 1 33.3%;
  color: #002076;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-left: 25px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.about__list li:nth-child(-n+3) {
  margin-bottom: 16px;
}
.about__list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/check-blue.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
}

.about__sign {
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.about__sign--bold {
  font-weight: 500;
  letter-spacing: 0.15em;
}

.about__img_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 51%;
      -ms-flex: 0 1 51%;
          flex: 0 1 51%;
  max-width: 533px;
}
.about__img_wrapper img {
  -webkit-box-shadow: 0 0 15px rgba(51, 51, 51, 0.2);
          box-shadow: 0 0 15px rgba(51, 51, 51, 0.2);
}

.about__img_lg {
  width: 100%;
  height: 355px;
}

.about__img {
  width: 100%;
  height: 287px;
  max-width: 430px;
  margin: 40px auto 0;
}

/* 1023px 
--------------------------------------------- */
@media only screen and (max-width: 1023px) {
  .about__text_wrapper {
    margin-top: 0;
    padding-right: 20px;
  }

  .about__title {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .about__list li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 48%;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
  .about__list li:nth-child(-n+3) {
    margin-bottom: 16px;
  }
}
/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .about {
    margin-bottom: 90px;
  }
  .about::after {
    top: auto;
    bottom: -35px;
    width: 82vw;
    height: 170px;
  }

  .about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 0;
    padding-right: 10px;
  }

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

  .about__title {
    font-size: 2.6rem;
  }

  .about__text {
    margin-bottom: 18px;
    letter-spacing: 0.02em;
  }

  .about__text--last {
    margin-bottom: 20px;
  }

  .about__sign {
    font-size: 1.5rem;
  }

  .about__sign--bold {
    font-size: 1.6rem;
  }

  .about__list li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 33%;
        -ms-flex: 0 1 33%;
            flex: 0 1 33%;
    padding-left: 19px;
  }
  .about__list li:nth-child(-n+3) {
    margin-bottom: 12px;
  }
  .about__list li::before {
    width: 13px;
    height: 13px;
  }

  .about__img_wrapper {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .about__img_lg {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 56%;
        -ms-flex: 0 1 56%;
            flex: 0 1 56%;
    height: 180px;
  }

  .about__img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 42%;
        -ms-flex: 0 1 42%;
            flex: 0 1 42%;
    height: 130px;
    max-width: 100%;
    margin: 20px -10px 0;
  }
}
/*------------------------------------------------------------------------------
  vision
------------------------------------------------------------------------------*/
.vision {
  background-image: url(../img/vision_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
  z-index: -2;
}

.vision__box {
  padding: 79px 35px 88px;
  background-color: #fff;
  position: relative;
  z-index: -1;
}
.vision__box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid #002076;
  z-index: 0;
}

.vision__content {
  margin: 0 auto;
  max-width: 755px;
  text-align: center;
}
.vision__content:first-of-type {
  margin-bottom: 72px;
}

.vision .title {
  margin-bottom: 20px;
}

.vision__text {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.action li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 26px;
}
.action li:last-child {
  margin-bottom: 0;
}

.action__number {
  color: #002076;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  margin-right: 12px;
}

.action__text {
  font-size: 1.8rem;
  line-height: 1.6;
}

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .vision {
    padding: 40px 0;
  }

  .vision__box {
    padding: 35px 24px 42px;
  }
  .vision__box::before {
    content: "";
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border: 1px solid #002076;
  }

  .vision__content:first-of-type {
    margin-bottom: 38px;
  }

  .vision .title {
    margin-bottom: 18px;
  }

  .vision__text {
    font-size: 1.4rem;
    letter-spacing: 0;
  }

  .action li {
    display: block;
    margin-bottom: 20px;
  }
  .action li:last-child {
    margin-bottom: 0;
  }

  .action__number {
    font-size: 2rem;
    margin-right: 0;
    margin-bottom: 5px;
    display: block;
  }

  .action__text {
    font-size: 1.4rem;
  }
}
/*------------------------------------------------------------------------------
  company
------------------------------------------------------------------------------*/
.company {
  position: relative;
  margin-bottom: 135px;
}

.company__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 42.3vw;
  height: 455px;
  z-index: 1;
}

.company__content {
  min-width: 610px;
  width: 42.3vw;
  background-color: #F2F5FC;
  padding: 76px 0 26px 42px;
  position: relative;
  top: 45px;
  left: 0;
}

.company__title {
  position: absolute;
  top: -43px;
  left: 20px;
}

.company__detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  max-width: 470px;
}
.company__detail dt {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 32.6%;
      -ms-flex: 0 1 32.6%;
          flex: 0 1 32.6%;
  margin-bottom: 20px;
}
.company__detail dd {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 67.4%;
      -ms-flex: 0 1 67.4%;
          flex: 0 1 67.4%;
  margin-bottom: 20px;
}

/* 1023px 
--------------------------------------------- */
@media only screen and (max-width: 1023px) {
  .company__img {
    width: 38vw;
    height: 400px;
  }

  .company__content {
    padding: 76px 0 26px 20px;
  }

  .company__detail {
    font-size: 1.4rem;
  }
  .company__detail dt {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 24%;
        -ms-flex: 0 1 24%;
            flex: 0 1 24%;
  }
  .company__detail dd {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 76%;
        -ms-flex: 0 1 76%;
            flex: 0 1 76%;
  }
}
/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .company {
    margin-bottom: 230px;
  }

  .company__img {
    top: auto;
    bottom: -178px;
    width: 85vw;
    height: 180px;
  }

  .company__content {
    width: 100%;
    padding: 32px 18px 30px;
    top: 30px;
  }

  .company__title {
    top: -38px;
    left: 18px;
  }

  .company__detail {
    font-size: 1.3rem;
    letter-spacing: 0;
    padding-right: 18px;
  }
  .company__detail dt {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 21%;
        -ms-flex: 0 1 21%;
            flex: 0 1 21%;
    margin-bottom: 15px;
  }
  .company__detail dd {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 79%;
        -ms-flex: 0 1 79%;
            flex: 0 1 79%;
    margin-bottom: 15px;
  }
}
/* 374px 
--------------------------------------------- */
@media only screen and (max-width: 374px) {
  .company__detail {
    font-size: 1.2rem;
  }
  .company__detail dt {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 18%;
        -ms-flex: 0 1 18%;
            flex: 0 1 18%;
  }
  .company__detail dd {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 82%;
        -ms-flex: 0 1 82%;
            flex: 0 1 82%;
  }
}
/*------------------------------------------------------------------------------
  history
------------------------------------------------------------------------------*/
.history {
  max-width: 850px;
  margin: 50px auto 0;
}

.history__detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.75;
  border-bottom: 1px solid rgba(0, 32, 118, 0.4);
  padding: 22px 10px;
}
.history__detail:first-child {
  border-top: 1px solid rgba(0, 32, 118, 0.4);
}
.history__detail span {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 22%;
      -ms-flex: 0 1 22%;
          flex: 0 1 22%;
  color: #002076;
  font-weight: 600;
}
.history__detail p {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 78%;
      -ms-flex: 0 1 78%;
          flex: 0 1 78%;
}

/* 1023px 
--------------------------------------------- */
@media only screen and (max-width: 1023px) {
  .history__detail span {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 25%;
        -ms-flex: 0 1 25%;
            flex: 0 1 25%;
  }
  .history__detail p {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 75%;
        -ms-flex: 0 1 75%;
            flex: 0 1 75%;
  }
}
/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .history {
    margin: 30px auto 0;
  }

  .history__detail {
    display: block;
    line-height: 1.66;
    padding: 17px 5px;
  }
  .history__detail span {
    display: block;
    margin-bottom: 5px;
  }
}
/*------------------------------------------------------------------------------
  career_about
------------------------------------------------------------------------------*/
.career_about {
  background-color: #F3F6FC;
  padding: 90px 0 80px;
}

.career_about__inner {
  max-width: 1140px;
}

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

.career_about__img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 58%;
      -ms-flex: 0 1 58%;
          flex: 0 1 58%;
  width: 100%;
  height: 439px;
  max-width: 562px;
}
.career_about__img img {
  -webkit-box-shadow: 0 0 15px rgba(51, 51, 51, 0.2);
          box-shadow: 0 0 15px rgba(51, 51, 51, 0.2);
}
.career_about__img figcaption {
  font-size: 1.55rem;
  letter-spacing: 0.1em;
  margin-top: 13px;
  padding-left: 2px;
}

.career_about__text_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 42%;
      -ms-flex: 0 1 42%;
          flex: 0 1 42%;
  width: 100%;
  margin: -4px 50px 0 60px;
}

.career_about__title {
  color: #002076;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.66;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}

.career_about__text {
  letter-spacing: 0.08em;
  line-height: 2;
}
.career_about__text:not(:last-of-type) {
  margin-bottom: 32px;
}

/* 1023px 
--------------------------------------------- */
@media only screen and (max-width: 1023px) {
  .career_about__text_wrapper {
    margin: -4px 0 0 30px;
  }

  .career_about__title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .career_about__text {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
  }
}
/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .career_about {
    padding: 45px 0 35px;
    margin-bottom: 25px;
  }

  .career_about__content {
    display: block;
  }

  .career_about__img {
    width: 95%;
    height: auto;
    max-width: 100%;
    margin-bottom: 25px;
  }
  .career_about__img figcaption {
    font-size: 1.25rem;
    margin-top: 9px;
  }

  .career_about__text_wrapper {
    margin: 0 20px 0 0;
  }

  .career_about__title {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
  }

  .career_about__text {
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    line-height: 1.75;
    max-width: 320px;
  }
  .career_about__text:not(:last-of-type) {
    margin-bottom: 18px;
  }
}
/*------------------------------------------------------------------------------
  career
------------------------------------------------------------------------------*/
.career {
  margin-bottom: 80px;
}
.career:last-of-type {
  margin-bottom: 90px;
}

.career--odd .career__inner {
  margin-left: 11.8%;
  margin-left: calc((100vw - 1000px) / 2);
  padding-left: 20px;
}

.career--even .career__inner {
  margin-right: 11.8%;
  margin-right: calc((100vw - 1000px) / 2);
  padding-right: 20px;
}

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

.career__text_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 42%;
      -ms-flex: 0 1 42%;
          flex: 0 1 42%;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  position: relative;
  margin-top: -25px;
}

.career__text_wrapper--odd {
  padding-right: 20px;
}

.career__text_wrapper--even {
  padding-left: 153px;
}

.career__number {
  color: #EDEDED;
  font-size: 8rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  position: relative;
  top: 15px;
  left: -15px;
  z-index: -1;
}

.career__title {
  color: #002076;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 30px;
  padding-left: 10px;
}

.career__lead {
  color: #002076;
  font-size: 2.2rem;
  font-weight: 600;
  padding-left: 10px;
  margin-bottom: 55px;
  position: relative;
}
.career__lead::after {
  content: "";
  position: absolute;
  bottom: -13px;
  width: 60vw;
  height: 1px;
  display: block;
  background-color: rgba(0, 32, 118, 0.6);
  z-index: -1;
}

.career--odd .career__lead::after {
  left: 0;
}

.career--even .career__lead::after {
  right: 0;
}

.career__text {
  line-height: 2.2;
  letter-spacing: 0.07em;
  max-width: 430px;
  padding-left: 10px;
}

.career__img_wrapper {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 51%;
      -ms-flex: 0 1 51%;
          flex: 0 1 51%;
  position: relative;
}
.career__img_wrapper::after {
  content: "";
  position: absolute;
  top: 71px;
  width: 47.22vw;
  height: 27.56vw;
  z-index: -2;
}
.career__img_wrapper img {
  -webkit-box-shadow: 0 0 15px rgba(51, 51, 51, 0.2);
          box-shadow: 0 0 15px rgba(51, 51, 51, 0.2);
}

.career__img_wrapper--odd::after {
  right: 0;
  background-color: #F7F7F7;
}

.career__img_wrapper--even::after {
  left: 0;
  background-color: #F2F5FC;
}

.career__img1 {
  width: 35.76vw;
  height: 21.1vw;
}

.career__img_wrapper--odd .career__img1 {
  margin: 0 0 35px auto;
}

.career__img_wrapper--even .career__img1 {
  margin: 0 auto 35px 0;
}

.career__img2 {
  width: 29.86vw;
  height: 20.1vw;
}

.career__img_wrapper--odd .career__img2 {
  margin: 0 12.15vw 0 auto;
}

.career__img_wrapper--even .career__img2 {
  margin: 0 auto 0 12.15vw;
}

/* 1280px 
--------------------------------------------- */
@media only screen and (max-width: 1280px) {
  .career__text_wrapper--even {
    padding-left: 20px;
  }
}
/* 1023px 
--------------------------------------------- */
@media only screen and (max-width: 1023px) {
  .career--odd .career__inner {
    margin-left: 0;
  }

  .career--even .career__inner {
    margin-right: 0;
  }

  .career__number {
    font-size: 6rem;
    top: 15px;
    left: -15px;
  }

  .career__title {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }

  .career__lead {
    font-size: 1.8rem;
    margin-bottom: 45px;
  }
}
/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .career {
    margin-bottom: 50px;
  }
  .career:last-of-type {
    margin-bottom: 80px;
  }

  .career__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .career__text_wrapper {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
    margin: 0 auto 15px;
  }

  .career__number {
    font-size: 4.4rem;
    top: 10px;
    left: -10px;
  }

  .career__title {
    font-size: 1.9rem;
    margin-bottom: 20px;
    padding-left: 5px;
  }

  .career__lead {
    font-size: 1.5rem;
    margin-bottom: 22px;
    padding-left: 5px;
  }
  .career__lead::after {
    bottom: -8px;
    width: 100%;
  }

  .career__text {
    line-height: 2;
    letter-spacing: 0.04em;
    padding: 0 5px;
  }

  .career__img_wrapper {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .career__img_wrapper::after {
    top: 40px;
    width: 86vw;
    height: 25vw;
  }

  .career__img1 {
    width: 45vw;
    height: 28vw;
  }

  .career__img2 {
    width: 37vw;
    height: 25vw;
  }

  .career__img_wrapper--odd .career__img1 {
    margin: 0;
  }

  .career__img_wrapper--even .career__img1 {
    margin: 0 0 0 20px;
  }

  .career__img_wrapper--odd .career__img2 {
    margin: 0 auto 0 20px;
  }

  .career__img_wrapper--even .career__img2 {
    margin: 0 auto 0 20px;
  }
}
/*------------------------------------------------------------------------------
  business business1
------------------------------------------------------------------------------*/
.business1 {
  margin: 65px 0 60px;
}

.business__heading {
  margin-bottom: 43px;
}

.business__number {
  color: #EDEDED;
  font-size: 8rem;
  font-weight: 300;
  letter-spacing: 0.07em;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  position: relative;
  top: 15px;
  left: 0px;
}

.business__title {
  color: #002076;
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 19px;
  padding-left: 20px;
  position: relative;
  z-index: 1;
}

.business__lead {
  color: #656565;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  padding-left: 20px;
}

.business1__img_wrapper {
  position: relative;
}

.business__img {
  width: 100%;
  height: 480px;
  margin-bottom: 24px;
}

.business1__img {
  height: 523px;
  margin-bottom: 35px;
}

.business1__img_label {
  padding: 27px 24px 1px 20px;
  background-color: #fff;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.business1__img_text {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.07em;
  margin-bottom: 9px;
}

.business1__img_logo {
  width: 100%;
  max-width: 163.5px;
}

.business__text {
  font-size: 1.5rem;
  letter-spacing: 0.07em;
  line-height: 2.1;
  padding: 0 20px;
}

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .business1 {
    margin: 35px 0 30px;
  }

  .business__heading {
    margin-bottom: 20px;
  }

  .business__number {
    font-size: 4.4rem;
    top: 12px;
    left: -5px;
  }

  .business__title {
    font-size: 2.2rem;
    font-size: clamp(2.2rem, 4.4vw, 3rem);
    margin-bottom: 5px;
    line-height: 1.3;
    padding-left: 10px;
  }

  .business__lead {
    font-size: 1.3rem;
    padding-left: 10px;
  }

  .business__img {
    height: 190px;
    margin-bottom: 14px;
  }

  .business1__img {
    height: 200px;
    margin-bottom: 45px;
  }

  .business1__img_label {
    padding: 14px 12px 1px 10px;
    bottom: -35px;
  }

  .business1__img_text {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }

  .business1__img_logo {
    max-width: 130px;
  }

  .business__text {
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    line-height: 1.8;
    padding: 0 10px;
  }
}
/* 374px 
--------------------------------------------- */
@media only screen and (max-width: 374px) {
  .business__title {
    font-size: 2rem;
  }
}
/*------------------------------------------------------------------------------
  andmilk
------------------------------------------------------------------------------*/
.andmilk__content {
  padding: 70px 20px 66px;
  background-color: #F3F6FC;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.andmilk__content_inner {
  max-width: 870px;
  margin: 0 auto;
}

.andmilk__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}

.andmilk__title_img {
  width: 100%;
  max-width: 248px;
  margin-right: 4px;
}

.andmilk__title_text {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.03em;
}

.andmilk__lead {
  color: #002076;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1;
  text-align: center;
  margin-bottom: 35px;
}

.andmilk__img_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 22px;
}

.andmilk__img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 31.1%;
      -ms-flex: 0 1 31.1%;
          flex: 0 1 31.1%;
  width: 100%;
  max-width: 270px;
  height: 180px;
}

.andmilk__text {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.1em;
  max-width: 746px;
  margin: 0 auto 55px;
}

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

.andmilk__card {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 46%;
      -ms-flex: 0 1 46%;
          flex: 0 1 46%;
  max-width: 400px;
}

.andmilk__card_title_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}

.andmilk__card_title {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #002076;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-right: 17px;
}

.andmilk__card_border {
  width: 100%;
  height: 1px;
  display: block;
  background-color: #002076;
}

.andmilk__card__img {
  width: 100%;
  height: 230px;
  margin-bottom: 20px;
}

.andmilk__card_text {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.andmilk__card_point li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
  padding-left: 18px;
  position: relative;
}
.andmilk__card_point li:last-child {
  margin-bottom: 0;
}
.andmilk__card_point li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background-image: url(../img/check-blue.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 13px;
  height: 14px;
}

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .andmilk .inner {
    padding: 0 15px;
  }

  .andmilk__content {
    padding: 35px 15px 33px;
  }

  .andmilk__title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 40px;
  }

  .andmilk__title_img {
    max-width: 190px;
  }

  .andmilk__title_text {
    font-size: 2.2rem;
    margin-top: 3px;
  }

  .andmilk__lead {
    font-size: 1.6rem;
    line-height: 1.65;
    margin-bottom: 17px;
  }

  .andmilk__img_list {
    margin-bottom: 22px;
  }

  .andmilk__img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 32%;
        -ms-flex: 0 1 32%;
            flex: 0 1 32%;
    max-width: 270px;
    height: 80px;
  }

  .andmilk__text {
    font-size: 1.3rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
    margin: 0 auto 30px;
  }

  .andmilk__card_wrapper {
    display: block;
  }

  .andmilk__card {
    margin: 0 auto;
  }
  .andmilk__card:first-child {
    margin-bottom: 35px;
  }

  .andmilk__card_title_wrapper {
    margin-bottom: 10px;
  }

  .andmilk__card_title {
    font-size: 1.8rem;
    padding-right: 12px;
  }

  .andmilk__card__img {
    height: 170px;
    margin-bottom: 15px;
  }

  .andmilk__card_text {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .andmilk__card_point li {
    font-size: 1.3rem;
    padding-left: 14px;
  }
  .andmilk__card_point li::before {
    top: 4px;
    width: 10px;
    height: 11px;
  }
}
/*------------------------------------------------------------------------------
  business2
------------------------------------------------------------------------------*/
.business2 {
  margin-bottom: 85px;
}

.business__heading--business2 {
  margin: 0 auto;
  max-width: 440px;
  margin-bottom: 90px;
}
.business__heading--business2 .business__number {
  left: -12px;
}
.business__heading--business2 .business__title,
.business__heading--business2 .business__lead {
  text-align: center;
}

.problem__title_wrapper {
  text-align: center;
  margin-bottom: 64px;
}

.problem__title {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  display: inline-block;
  position: relative;
}
.problem__title::before, .problem__title::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 23px;
  height: 21px;
}
.problem__title::before {
  top: -27px;
  left: -27px;
  background-image: url(../img/double_quote1.png);
}
.problem__title::after {
  bottom: -27px;
  right: -27px;
  background-image: url(../img/double_quote2.png);
}
.problem__title .dot {
  position: relative;
}
.problem__title .dot::before {
  content: "";
  position: absolute;
  top: -17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #92D6DF;
}

.problem__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.problem__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 19.4%;
      -ms-flex: 0 1 19.4%;
          flex: 0 1 19.4%;
}

.problem__img {
  width: 100%;
  margin: 0 auto 15px;
}

.problem__img--1 {
  max-width: 126px;
}

.problem__img--2 {
  max-width: 135px;
}

.problem__img--3 {
  max-width: 167px;
}

.problem__img--4 {
  max-width: 120px;
}

.problem__text {
  font-size: 1.8rem;
  line-height: 1.77;
  letter-spacing: 0.02em;
  text-align: center;
}

.problem__arrow {
  width: 100%;
  max-width: 150px;
  margin: 0 auto 40px;
}

.service__lead {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 59px;
}
.service__lead span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(61%, #F8F787), to(#F8F787));
  background: linear-gradient(to bottom, transparent 60%, #F8F787 61%, #F8F787);
}
.service__lead span:first-child {
  margin-bottom: 14px;
}

.service__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service__list li {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 45%;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
}

.service__head {
  width: 100%;
  max-width: 180px;
  margin-bottom: 19px;
}

.service__title {
  color: #002076;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: 17px;
}

.service__text {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* 1024px 
--------------------------------------------- */
@media only screen and (max-width: 1024px) {
  .problem__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 23%;
        -ms-flex: 0 1 23%;
            flex: 0 1 23%;
  }

  .problem__img {
    height: 182px;
  }

  .problem__text {
    font-size: 1.5rem;
  }

  .service__title {
    font-size: 2.2rem;
  }
}
/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .business2 {
    margin-bottom: 45px;
  }

  .business__heading--business2 {
    max-width: 285px;
    margin-bottom: 50px;
  }
  .business__heading--business2 .business__title {
    font-size: 2.2rem;
  }

  .problem__title_wrapper {
    margin-bottom: 60px;
  }

  .problem__title {
    font-size: 1.8rem;
  }
  .problem__title::before, .problem__title::after {
    width: 14px;
    height: 13px;
  }
  .problem__title::before {
    top: -17px;
    left: -17px;
  }
  .problem__title::after {
    bottom: -17px;
    right: -17px;
  }
  .problem__title .dot::before {
    top: -12px;
    width: 5px;
    height: 5px;
  }

  .problem__list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 450px;
    margin: 0 auto 10px;
  }

  .problem__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 48%;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
    margin-bottom: 25px;
  }

  .problem__img {
    margin: 0 auto 10px;
    height: auto;
    min-height: 130px;
  }

  .problem__img--1 {
    max-width: 86px;
  }

  .problem__img--2 {
    max-width: 95px;
  }

  .problem__img--3 {
    max-width: 125px;
  }

  .problem__img--4 {
    max-width: 92px;
  }

  .problem__text {
    font-size: 1.3rem;
  }

  .problem__arrow {
    max-width: 90px;
    margin: 0 auto 30px;
  }

  .service__lead {
    font-size: 1.55rem;
    letter-spacing: 0;
    margin-bottom: 40px;
  }
  .service__lead span:first-child {
    margin-bottom: 10px;
  }

  .service__list {
    display: block;
  }
  .service__list li:first-child {
    margin-bottom: 35px;
  }

  .service__head {
    max-width: 130px;
    margin: 0 auto 10px;
  }

  .service__title {
    font-size: 1.85rem;
    line-height: 1.4;
    margin-bottom: 12px;
    text-align: center;
  }

  .service__text {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
/* 374px 
--------------------------------------------- */
@media only screen and (max-width: 374px) {
  .business__heading--business2 .business__title {
    font-size: 2rem;
  }

  .service__lead {
    font-size: 1.4rem;
    white-space: nowrap;
  }
}
/*------------------------------------------------------------------------------
  business3
------------------------------------------------------------------------------*/
.business3 {
  padding: 55px 0 80px;
  background-color: #F3F6FC;
  position: relative;
  margin-bottom: 65px;
}
.business3 .business__number {
  color: rgba(0, 32, 118, 0.1);
}

.business__media_wrapper {
  max-width: 960px;
  margin: 72px auto 0;
}

.business_media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.business_media:not(:last-child) {
  margin-bottom: 50px;
}

.business3 .business_media {
  padding: 48px 60px 50px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, 0.07);
          box-shadow: 0 0 20px rgba(51, 51, 51, 0.07);
}

.business_media__content {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 55%;
      -ms-flex: 0 1 55%;
          flex: 0 1 55%;
}

.business_media__title {
  color: #002076;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.business_media__text {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 28px;
}

.business_media__link_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.business_media__link_wrapper span {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.08em;
  margin-left: 5px;
}

.business_media__link {
  color: #002076;
  font-size: 1.4rem;
  line-height: 2.2;
  letter-spacing: 0.08em;
  text-decoration: underline;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.business_media__link:hover {
  text-decoration: underline;
}

.business_media__address {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 14px;
}

.business_media__logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 40%;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
  width: 100%;
  max-width: 250px;
}

/* 1023px 
--------------------------------------------- */
@media only screen and (max-width: 1023px) {
  .business3 .business_media {
    padding: 38px 30px 30px;
  }

  .business_media__logo {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 35%;
        -ms-flex: 0 1 35%;
            flex: 0 1 35%;
  }
}
/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .business3 {
    padding: 25px 0 45px;
    margin-bottom: 30px;
  }
  .business3 .inner {
    padding: 0 15px;
  }

  .business__media_wrapper {
    margin: 40px auto 0;
  }

  .business_media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .business_media:not(:last-child) {
    margin-bottom: 30px;
  }

  .business3 .business_media {
    padding: 35px 18px 30px;
  }

  .business_media__content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }

  .business_media__title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .business_media__text {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .business_media__link_wrapper {
    display: block;
  }
  .business_media__link_wrapper span {
    font-size: 1.2rem;
    letter-spacing: 0;
    margin-left: 0;
  }

  .business_media__link {
    color: #002076;
    font-size: 1.4rem;
    line-height: 2.2;
    letter-spacing: 0.08em;
    text-decoration: underline;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .business_media__link:hover {
    text-decoration: underline;
  }

  .business_media__address {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.08em;
    display: block;
    margin-top: 14px;
  }

  .business_media__logo {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 200px;
    margin-bottom: 15px;
  }

  .business_media__logo.large {
    max-width: 420px;
  }
}
/*------------------------------------------------------------------------------
  business4
------------------------------------------------------------------------------*/
.business4 .business_media__content {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 47%;
      -ms-flex: 0 1 47%;
          flex: 0 1 47%;
  max-width: 480px;
}

.business4 .business_media__title {
  margin-bottom: 0;
}

.business_media__title--sm {
  color: #002076;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  display: block;
}

.business_media__img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 44.5%;
      -ms-flex: 0 1 44.5%;
          flex: 0 1 44.5%;
  width: 100%;
  height: 300px;
  max-width: 445px;
}
.business_media__img img {
  -webkit-box-shadow: 0 0 20px rgba(51, 51, 51, 0.07);
          box-shadow: 0 0 20px rgba(51, 51, 51, 0.07);
}

/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .business4 .business_media__content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    width: calc(100% - 30px);
  }

  .business_media__title--sm {
    font-size: 1.3rem;
    letter-spacing: 0;
    margin-bottom: 20px;
    display: block;
  }

  .business_media__img {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    height: 190px;
    width: 90%;
    width: calc(100% - 34px);
    margin-bottom: 12px;
  }
}
/*------------------------------------------------------------------------------
  contact
------------------------------------------------------------------------------*/
.contact {
  max-width: 890px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contact__text {
  font-size: 1.7rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: center;
}

.contact__form {
  margin: 55px 0 60px;
}
.contact__form li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact__form li:not(:last-child) {
  margin-bottom: 35px;
}

.contact__heading {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30%;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  margin-right: 10px;
}

.contact__required {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  line-height: 25px;
  width: 100%;
  height: 25px;
  max-width: 46px;
  border-radius: 2px;
  text-align: center;
  background-color: #AD210D;
  display: block;
  margin-right: 10px;
}

.contact__title {
  font-weight: normal;
  letter-spacing: 0.02em;
}

.contact__input_wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.contact__input_wrapper input,
.contact__input_wrapper textarea,
.contact__input_wrapper select {
  font-size: 1.6rem;
  width: 100%;
  padding: 10px 15px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #99A5C8;
}
.contact__input_wrapper input::-webkit-input-placeholder, .contact__input_wrapper textarea::-webkit-input-placeholder, .contact__input_wrapper select::-webkit-input-placeholder {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, Meiryo, sans-serif;
}
.contact__input_wrapper input::-moz-placeholder, .contact__input_wrapper textarea::-moz-placeholder, .contact__input_wrapper select::-moz-placeholder {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, Meiryo, sans-serif;
}
.contact__input_wrapper input:-ms-input-placeholder, .contact__input_wrapper textarea:-ms-input-placeholder, .contact__input_wrapper select:-ms-input-placeholder {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, Meiryo, sans-serif;
}
.contact__input_wrapper input::-ms-input-placeholder, .contact__input_wrapper textarea::-ms-input-placeholder, .contact__input_wrapper select::-ms-input-placeholder {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, Meiryo, sans-serif;
}
.contact__input_wrapper input::placeholder,
.contact__input_wrapper textarea::placeholder,
.contact__input_wrapper select::placeholder {
  color: #aaa;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.02em;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, Meiryo, sans-serif;
}
.contact__input_wrapper textarea {
  resize: none;
  min-height: 270px;
}

.contact__select_wrapper {
  max-width: 250px;
  background-color: #fff;
  position: relative;
}
.contact__select_wrapper select {
  font-size: 1.5rem;
  cursor: pointer;
  display: block;
  height: 100%;
  position: relative;
  background-color: transparent;
  z-index: 1;
}
.contact__select_wrapper::after {
  content: "▼";
  position: absolute;
  top: 48.2%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #444;
  font-size: 1rem;
  cursor: pointer;
}

.contact__btn {
  margin: 0 auto;
  padding: 0;
  max-width: 250px;
}
.contact__btn input {
  cursor: pointer;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  padding: 13px 5px 13px 3px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.contact__btn input:hover {
  opacity: 0.9;
}

.wpcf7-spinner {
  position: absolute;
  bottom: -50px;
  left: 34%;
}

.contact__select_wrapper .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -25px;
  width: 225px;
}

/* 800px 
--------------------------------------------- */
@media only screen and (max-width: 800px) {
  .contact__text {
    font-size: 1.6rem;
  }

  .contact__title {
    font-size: 1.5rem;
  }
}
/* 767px 
--------------------------------------------- */
@media only screen and (max-width: 767px) {
  .contact__text {
    font-size: 1.45rem;
    letter-spacing: 0;
  }

  .contact__form {
    margin: 30px 0 35px;
  }
  .contact__form li {
    display: block;
  }
  .contact__form li:not(:last-child) {
    margin-bottom: 25px;
  }

  .contact__heading {
    margin: 0 0 15px;
  }

  .contact__required {
    font-size: 1.2rem;
    line-height: 23px;
    height: 23px;
  }

  .contact__input_wrapper textarea {
    min-height: 200px;
  }

  .contact__btn {
    max-width: 200px;
  }
  .contact__btn input {
    font-size: 1.5rem;
    padding: 10px 5px 10px 3px;
  }

  .wpcf7-spinner {
    left: 29%;
  }

  .contact__select_wrapper .wpcf7-not-valid-tip {
    width: 190px;
    bottom: -19px;
  }
}
/*# sourceMappingURL=style.css.map */