@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald&display=swap");
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;
  box-sizing: border-box;
}

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

ol, 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;
  box-sizing: border-box;
}

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

th, td {
  vertical-align: middle;
}

input, select {
  vertical-align: middle;
  outline: none;
}

textarea,
iframe {
  display: block;
}

img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

html {
  overflow-y: scroll;
  background: #222;
}

body {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  text-align: left;
  color: #333;
  font-size: 15px;
  line-height: 1.8;
  background: #FFF;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
  padding-top: 80px;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}

a:link,
a:visited {
  color: #009D7F;
  text-decoration: underline;
}

a:hover,
a:active {
  color: #009D7F;
  text-decoration: none;
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 0;
  box-sizing: border-box;
}

input[type=text],
input[type=email],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border-radius: 3px;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-size: 108%;
  line-height: 1.6;
  box-sizing: border-box;
}

input[type=text],
input[type=email],
input[type=password],
textarea {
  border: 1px solid #999;
  padding: 8px;
  width: 80%;
}
@media screen and (max-width: 1024px) {
  input[type=text],
  input[type=email],
  input[type=password],
  textarea {
    width: 100%;
  }
}

input[type=radio] {
  position: absolute;
  opacity: 0;
}
input[type=radio] + .radio-label {
  cursor: pointer;
}
input[type=radio] + .radio-label::before {
  position: relative;
  display: inline-block;
  content: "";
  background: #FFF;
  border-radius: 100%;
  border: 1px solid #999;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  vertical-align: middle;
  text-align: center;
}
input[type=radio]:checked + .radio-label::before {
  background-color: #333;
  box-shadow: inset 0 0 0 3px #FFF;
}

input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
input[type=checkbox] + .checkbox-label {
  position: relative;
  cursor: pointer;
}
input[type=checkbox] + .checkbox-label::before {
  position: relative;
  display: inline-block;
  content: "";
  background: #FFF;
  border: 1px solid #999;
  border-radius: 2px;
  width: 1em;
  height: 1em;
  margin-top: -2px;
  margin-right: 0.5em;
  vertical-align: middle;
  text-align: center;
}
input[type=checkbox]:checked + .checkbox-label::before {
  background: #333;
  border: 1px solid #333;
}
input[type=checkbox]:checked + .checkbox-label::after {
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 4px;
  height: 9px;
  transform: rotate(40deg);
  border-bottom: 3px solid #FFF;
  border-right: 3px solid #FFF;
}

select {
  border: 1px solid #999;
  padding: 8px;
  border-radius: 3px;
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-size: 100%;
  line-height: 1.6;
  cursor: pointer;
}

input::placeholder {
  color: #BBB;
}

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

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

.l-header {
  position: fixed;
  z-index: 600;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  background: #FFF;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 60px;
  }
}

@media screen and (min-width: 768px) {
  .l-global-nav {
    height: 100%;
    display: block !important;
  }
  .l-global-nav__inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-global-nav {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(45deg, rgba(0, 124, 107, 0.9), rgba(0, 157, 127, 0.9));
    backdrop-filter: blur(10px);
  }
  .l-global-nav__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
}
.l-container-fluid {
  position: relative;
  padding: 60px 30px;
}
@media screen and (max-width: 767px) {
  .l-container-fluid {
    padding: 30px 15px;
  }
}

.l-container-fluid-broad {
  position: relative;
  padding: 60px 30px;
}
@media screen and (max-width: 767px) {
  .l-container-fluid-broad {
    padding: 30px 15px;
  }
}

.l-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.l-container::after {
  content: "";
  display: block;
  clear: both;
}

.l-container-narrow {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.l-container-narrow::after {
  content: "";
  display: block;
  clear: both;
}

.l-mainvisual,
.l-swiper {
  position: relative;
}

.l-secondvisual {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, #00595C, #007C6B, #009D7F);
  padding: 0 30px;
  height: 150px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-secondvisual {
    padding: 0 15px;
    height: 90px;
  }
}

.l-topicpath {
  padding: 13px 30px;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .l-topicpath {
    padding: 10px 15px;
  }
}

.l-contents {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-contents {
    display: block;
  }
}

.l-main {
  width: 100%;
  padding-right: 70px;
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-right: 0;
  }
}

.l-side {
  width: 250px;
  min-width: 250px;
}
@media screen and (max-width: 767px) {
  .l-side {
    width: auto;
    min-width: auto;
    margin-top: 30px;
  }
}

.l-side-group {
  margin-bottom: 40px;
}
.l-side-group:last-child {
  margin-bottom: 0;
}

.l-books {
  max-width: 1100px;
  margin: 60px auto 0 auto;
  padding: 30px 40px 40px 40px;
}
@media screen and (max-width: 767px) {
  .l-books {
    margin-top: 30px;
    padding: 20px;
  }
}

.l-footer {
  background: #222;
  padding: 60px 30px 70px 30px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 25px 15px;
  }
}

.l-footer-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer-inner {
    display: block;
  }
}
.l-footer-inner__left {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .l-footer-inner__left {
    width: auto;
  }
}
.l-footer-inner__right {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .l-footer-inner__right {
    width: auto;
  }
}

a.c-btn-more {
  position: relative;
  display: inline-block;
  width: 300px;
  padding: 18px;
  font-size: 124%;
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
  color: #FFF;
  background: #009D7F;
}
@media screen and (max-width: 767px) {
  a.c-btn-more {
    width: 220px;
    padding: 15px;
    font-size: 108%;
  }
}
a.c-btn-more::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 8px;
  height: 8px;
  border-top: 3px solid;
  border-right: 3px solid;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  a.c-btn-more::before {
    right: 20px;
  }
}
a.c-btn-more:hover {
  background: #007C6B;
}
a.c-btn-more::before {
  border-color: #FFF;
}

a.c-btn-more-white {
  position: relative;
  display: inline-block;
  width: 300px;
  padding: 18px;
  font-size: 124%;
  line-height: 1.4;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  transition: 0.2s;
  color: #009D7F;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  a.c-btn-more-white {
    width: 220px;
    padding: 15px;
    font-size: 108%;
  }
}
a.c-btn-more-white::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 8px;
  height: 8px;
  border-top: 3px solid;
  border-right: 3px solid;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  a.c-btn-more-white::before {
    right: 20px;
  }
}
a.c-btn-more-white:hover {
  background: #C8E7DB;
}
a.c-btn-more-white::before {
  border-color: #009D7F;
}

a.c-btn-more-small {
  position: relative;
  display: inline-block;
  width: 175px;
  padding: 14px;
  font-size: 100%;
  line-height: 1.4;
  text-align: center;
  color: #FFF;
  font-weight: 500;
  text-decoration: none;
  background: #009D7F;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  a.c-btn-more-small {
    width: 220px;
    padding: 15px;
    font-size: 108%;
  }
}
a.c-btn-more-small:hover {
  background: #007C6B;
}
a.c-btn-more-small::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  width: 7px;
  height: 7px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  a.c-btn-more-small::before {
    width: 8px;
    height: 8px;
    right: 20px;
  }
}

a.c-btn-slide-small {
  position: relative;
  display: inline-block;
  width: 175px;
  padding: 13px;
  font-size: 100%;
  line-height: 1.4;
  text-align: center;
  color: #009D7F;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  overflow: hidden;
  z-index: 0;
  border: 1px solid #009D7F;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  a.c-btn-slide-small {
    width: 220px;
    padding: 14px;
    font-size: 108%;
  }
}
a.c-btn-slide-small::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  width: 7px;
  height: 7px;
  border-top: 3px solid #009D7F;
  border-right: 3px solid #009D7F;
  transform: rotate(45deg);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  a.c-btn-slide-small::before {
    width: 8px;
    height: 8px;
  }
}
a.c-btn-slide-small::after {
  position: absolute;
  content: "";
  z-index: -1;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  a.c-btn-slide-small::after {
    display: none;
  }
}
a.c-btn-slide-small:hover {
  color: #FFF;
}
@media screen and (max-width: 767px) {
  a.c-btn-slide-small:hover {
    color: #009D7F;
  }
}
a.c-btn-slide-small:hover::before {
  border-color: #009D7F;
}
a.c-btn-slide-small:hover::after {
  left: 0;
  background-color: #009D7F;
}

.c-grid {
  margin-bottom: 60px;
}
.c-grid::after {
  content: "";
  display: block;
  clear: both;
}
.c-grid:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-grid {
    margin-bottom: 30px;
  }
  .c-grid:last-child {
    margin-bottom: 0;
  }
}

.c-grid-1 {
  width: 3.75%;
}

.c-grid-2 {
  width: 12.5%;
}

.c-grid-3 {
  width: 21.2%;
}

.c-grid-4 {
  width: 30%;
}

.c-grid-5 {
  width: 40%;
}

.c-grid-6 {
  width: 47.5%;
}

.c-grid-7 {
  width: 55%;
}

.c-grid-8 {
  width: 65%;
}

.c-grid-9 {
  width: 73.8%;
}

.c-grid-10 {
  width: 82.5%;
}

.c-grid-11 {
  width: 91.2%;
}

.c-grid-12 {
  width: 100%;
}

.c-grid-1,
.c-grid-2,
.c-grid-3,
.c-grid-4,
.c-grid-5,
.c-grid-6,
.c-grid-7,
.c-grid-8,
.c-grid-9,
.c-grid-10,
.c-grid-11 {
  float: left;
  margin: 0 5% 0 0;
}
@media screen and (max-width: 767px) {
  .c-grid-1,
  .c-grid-2,
  .c-grid-3,
  .c-grid-4,
  .c-grid-5,
  .c-grid-6,
  .c-grid-7,
  .c-grid-8,
  .c-grid-9,
  .c-grid-10,
  .c-grid-11 {
    width: auto;
    float: none;
    margin: 0 0 30px 0;
  }
}

.c-grid-1:last-child,
.c-grid-2:last-child,
.c-grid-3:last-child,
.c-grid-4:last-child,
.c-grid-5:last-child,
.c-grid-6:last-child,
.c-grid-7:last-child,
.c-grid-8:last-child,
.c-grid-9:last-child,
.c-grid-10:last-child,
.c-grid-11:last-child {
  float: right;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-grid-1:last-child,
  .c-grid-2:last-child,
  .c-grid-3:last-child,
  .c-grid-4:last-child,
  .c-grid-5:last-child,
  .c-grid-6:last-child,
  .c-grid-7:last-child,
  .c-grid-8:last-child,
  .c-grid-9:last-child,
  .c-grid-10:last-child,
  .c-grid-11:last-child {
    float: none;
    margin: 0;
  }
}

.c-grid-about {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-grid-about {
    display: block;
  }
}
.c-grid-about__left {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .c-grid-about__left {
    width: auto;
    margin-bottom: 30px;
  }
}
.c-grid-about__right {
  width: 58%;
}
@media screen and (max-width: 767px) {
  .c-grid-about__right {
    width: auto;
  }
}

.c-grid-service {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-grid-service {
    margin-bottom: 30px;
    display: block;
  }
}
.c-grid-service:last-of-type {
  margin-bottom: 0;
}
.c-grid-service:nth-child(even) {
  flex-direction: row-reverse;
}
.c-grid-service__image {
  width: 47.5%;
}
@media screen and (max-width: 767px) {
  .c-grid-service__image {
    width: auto;
    margin-bottom: 25px;
  }
}
.c-grid-service__content {
  width: 47.5%;
}
@media screen and (max-width: 767px) {
  .c-grid-service__content {
    width: auto;
  }
}

.c-grid-info {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-grid-info {
    display: block;
  }
}
.c-grid-info__left {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .c-grid-info__left {
    width: auto;
    margin-bottom: 30px;
  }
}
.c-grid-info__right {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .c-grid-info__right {
    width: auto;
  }
}

.c-grid-books {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 -3% -3%;
}
@media screen and (max-width: 767px) {
  .c-grid-books {
    display: block;
    margin: 0;
  }
}
.c-grid-books__column {
  margin: 0 0 3% 3%;
  padding: 35px;
  width: 30.33%;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .c-grid-books__column {
    margin: 0 0 20px 0;
    padding: 25px;
    width: auto;
  }
  .c-grid-books__column:last-child {
    margin-bottom: 0;
  }
}

.c-grid-message {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-grid-message {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column-reverse;
  }
}
.c-grid-message__left {
  width: 57%;
}
@media screen and (max-width: 767px) {
  .c-grid-message__left {
    width: auto;
    margin-top: 60px;
  }
}
.c-grid-message__right {
  width: 37%;
}
@media screen and (max-width: 767px) {
  .c-grid-message__right {
    width: auto;
  }
}

.c-grid-profile {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-grid-profile {
    display: block;
  }
}
.c-grid-profile__left {
  width: 47.5%;
}
@media screen and (max-width: 767px) {
  .c-grid-profile__left {
    width: auto;
  }
}
.c-grid-profile__right {
  width: 47.5%;
}
@media screen and (max-width: 767px) {
  .c-grid-profile__right {
    width: auto;
  }
}

.c-label-category {
  display: block;
  white-space: nowrap;
  background: #ECB931;
  padding: 6px 10px;
  min-width: 100px;
  font-size: 85%;
  line-height: 1;
  color: #FFF;
  text-align: center;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  .c-label-category {
    min-width: 70px;
    padding: 4px 8px;
    font-size: 70%;
  }
}

.p-logo {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .p-logo {
    padding-left: 15px;
  }
}
.p-logo img {
  width: 240px;
  min-width: 240px;
}
@media screen and (max-width: 1024px) {
  .p-logo img {
    width: 200px;
    min-width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-logo img {
    width: 180px;
    min-width: 180px;
  }
}

.p-head-number {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  background: #009D7F;
}
.p-head-number a {
  display: block;
  text-decoration: none;
}
.p-head-number a img {
  display: block;
  width: 187px;
  min-width: 187px;
}
@media screen and (max-width: 767px) {
  .p-head-number a img {
    display: inline;
  }
}
.p-head-number a span {
  display: block;
  margin-top: 8px;
  font-size: 77%;
  line-height: 1.3;
  color: #FFF;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-head-number a span {
    margin-top: 10px;
    padding-left: 15px;
    font-size: 70%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-head-number {
    display: block;
    width: 80%;
    height: auto;
    background: none;
    margin-top: 30px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    animation: number-fadein 0.5s forwards;
    animation-delay: 0.6s;
  }
}

@keyframes number-fadein {
  0% {
    opacity: 0;
    transform: translateX(15px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.p-logo-white {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .p-logo-white {
    margin-bottom: 15px;
    text-align: center;
  }
}
.p-logo-white img {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .p-logo-white img {
    width: 220px;
  }
}

.p-address {
  font-size: 93%;
  color: #CCC;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .p-address {
    font-size: 85%;
    text-align: center;
  }
}

.p-banner {
  position: absolute;
  bottom: 5px;
  right: 0;
}
.p-banner img {
  width: 285px;
  transition: 0.2s;
}
.p-banner img:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-banner img:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-banner img {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-banner {
    position: static;
    width: auto;
    text-align: center;
    margin-top: 25px;
  }
}

.p-copyright {
  margin-top: 20px;
  font-size: 93%;
  color: #CCC;
  font-family: Arial, Helvetica, sans-serif;
}
@media screen and (max-width: 767px) {
  .p-copyright {
    margin-top: 25px;
    font-size: 85%;
    text-align: center;
  }
}

.p-pagetop {
  position: fixed;
  z-index: 500;
  right: 20px;
  bottom: 20px;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-pagetop {
    right: 10px;
    bottom: 10px;
  }
}
.p-pagetop a {
  display: block;
  position: relative;
  width: 43px;
  height: 43px;
  text-indent: -9999px;
  overflow: hidden;
  background: #009D7F;
  border-radius: 50%;
  transition: all 0.2s ease;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-pagetop a {
    width: 30px;
    height: 30px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }
}
.p-pagetop a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-pagetop a:hover {
    opacity: 1;
  }
}
.p-pagetop a::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 6px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .p-pagetop a::before {
    top: 5px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
  }
}

.hamburger {
  display: none;
}

@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    z-index: 600;
    background: #009D7F;
    touch-action: manipulation;
    text-decoration: none !important;
  }
  .hamburger_text::before {
    position: absolute;
    left: 0;
    right: 0;
    margin-top: 10px;
    font-size: 62%;
    color: #333;
    text-align: center;
    content: "MENU";
    color: #FFF;
  }
  .hamburger.active .hamburger_text::before {
    content: "CLOSE";
  }
  .hamburger_icon,
  .hamburger_icon::before,
  .hamburger_icon::after {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 27px;
    height: 2px;
    background: #FFF;
    -moz-transition-property: background-color, -moz-transform;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
  }
  .hamburger_icon {
    margin-top: 22px;
  }
  .hamburger_icon::before, .hamburger_icon::after {
    position: absolute;
    content: "";
  }
  .hamburger_icon::before {
    top: -7px;
  }
  .hamburger_icon::after {
    top: 7px;
  }
  .hamburger.active {
    background: #222;
  }
  .hamburger.active .hamburger_icon {
    background: none;
  }
  .hamburger.active .hamburger_icon::before {
    transform: translateY(7px) rotate(38deg);
  }
  .hamburger.active .hamburger_icon::after {
    transform: translateY(-7px) rotate(-38deg);
  }
  .hamburger.active .hamburger_icon::before,
  .hamburger.active .hamburger_icon::after {
    background: #FFF;
  }
}
@media screen and (min-width: 768px) {
  .p-global-nav {
    display: flex;
    height: 100%;
    margin-right: 2em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-global-nav {
    margin-right: 1em;
  }
}
@media screen and (min-width: 768px) {
  .p-global-nav li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 2em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-global-nav li {
    margin-left: 1em;
  }
}
@media screen and (min-width: 768px) {
  .p-global-nav li a {
    position: relative;
    padding: 8px 0;
    font-size: 108%;
    line-height: 1.3;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
  }
  .p-global-nav li a:hover::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #009D7F;
  }
  .home .p-global-nav .nav1 a,
  .blog .p-global-nav .nav2 a,
  .archive .p-global-nav .nav2 a,
  .category .p-global-nav .nav2 a,
  .single .p-global-nav .nav2 a,
  .page-id-10 .p-global-nav .nav3 a,
  .page-id-25 .p-global-nav .nav3 a,
  .page-id-27 .p-global-nav .nav3 a,
  .page-id-29 .p-global-nav .nav3 a,
  .page-id-18 .p-global-nav .nav4 a {
    color: #009D7F;
  }
  .home .p-global-nav .nav1 a::before,
  .blog .p-global-nav .nav2 a::before,
  .archive .p-global-nav .nav2 a::before,
  .category .p-global-nav .nav2 a::before,
  .single .p-global-nav .nav2 a::before,
  .page-id-10 .p-global-nav .nav3 a::before,
  .page-id-25 .p-global-nav .nav3 a::before,
  .page-id-27 .p-global-nav .nav3 a::before,
  .page-id-29 .p-global-nav .nav3 a::before,
  .page-id-18 .p-global-nav .nav4 a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #009D7F;
  }
}
@media screen and (max-width: 767px) {
  .p-global-nav {
    width: 80%;
  }
  .p-global-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .p-global-nav li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .p-global-nav li a {
    position: relative;
    display: block;
    padding: 12px 15px;
    font-size: 108%;
    font-weight: 500;
    color: #FFF;
    text-decoration: none;
    opacity: 0;
    animation: gnav-fadein 0.5s forwards;
  }
  .p-global-nav li a::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 6%;
    width: 7px;
    height: 7px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg);
  }
  .p-global-nav li:nth-child(1) a {
    animation-delay: 0.2s;
  }
  .p-global-nav li:nth-child(2) a {
    animation-delay: 0.3s;
  }
  .p-global-nav li:nth-child(3) a {
    animation-delay: 0.4s;
  }
  .p-global-nav li:nth-child(4) a {
    animation-delay: 0.5s;
  }
  .home .p-global-nav .nav1 a,
  .blog .p-global-nav .nav2 a,
  .archive .p-global-nav .nav2 a,
  .category .p-global-nav .nav2 a,
  .single .p-global-nav .nav2 a,
  .page-id-10 .p-global-nav .nav3 a,
  .page-id-25 .p-global-nav .nav3 a,
  .page-id-27 .p-global-nav .nav3 a,
  .page-id-29 .p-global-nav .nav3 a,
  .page-id-18 .p-global-nav .nav4 a {
    background: rgba(255, 255, 255, 0.08);
  }
}
@keyframes gnav-fadein {
  0% {
    opacity: 0;
    transform: translateX(15px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.p-footer-nav {
  display: flex;
  justify-content: right;
  padding-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-footer-nav {
    display: none;
  }
}
.p-footer-nav li {
  line-height: 1.5;
  margin-right: 25px;
  padding-right: 25px;
  border-right: 1px solid #444;
}
.p-footer-nav li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.p-footer-nav li a {
  font-size: 108%;
  color: #CCC;
  text-decoration: none;
}
.p-footer-nav li a:hover {
  text-decoration: underline;
}

.p-topicpath {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 93%;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-topicpath {
    font-size: 77%;
  }
}
.p-topicpath li {
  display: inline;
}
.p-topicpath li a {
  display: inline-block;
  position: relative;
  margin-right: 7px;
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  .p-topicpath li a {
    margin-right: 5px;
    padding-right: 11px;
  }
}
.p-topicpath li a::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 5px;
  height: 5px;
  border-top: 2px solid #009D7F;
  border-right: 2px solid #009D7F;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-topicpath li a::before {
    width: 4px;
    height: 4px;
  }
}

.wp-pagenavi {
  margin-top: 56px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    font-size: 85%;
    margin-top: 26px;
  }
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  padding: 14px 17px;
  margin: 4px 2px 0 2px;
  line-height: 1;
  color: #666;
  text-decoration: none;
  background: #F3F3F3;
  transition: 0.1s;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    padding: 10px 12px;
  }
}

.wp-pagenavi a:hover {
  color: #FFF;
  background: #009D7F;
}

.wp-pagenavi span.current {
  color: #FFF;
  background: #009D7F;
}

.p-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px auto 0 auto;
}
@media screen and (max-width: 767px) {
  .p-pager {
    margin: 30px auto 0 auto;
  }
}
.p-pager li {
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .p-pager li {
    padding: 0 5px;
  }
}
.p-pager li a {
  display: block;
  width: 150px;
  padding: 13px 0;
  line-height: 1.5;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  background: #009D7F;
  transition: 0.2s;
}
.p-pager li a:hover {
  background: #007C6B;
}
@media screen and (max-width: 767px) {
  .p-pager li a {
    width: 100px;
    padding: 10px 0;
    font-size: 85%;
  }
}

.p-pagelink {
  margin: -3% -3% 0 0;
  display: flex;
  flex-wrap: wrap;
}
.p-pagelink li {
  margin: 3% 3% 0 0;
  width: 30.33%;
  border: 1px solid #009D7F;
  font-size: 108%;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .p-pagelink li {
    width: 47%;
    font-size: 93%;
  }
}
.p-pagelink li a {
  position: relative;
  display: block;
  padding: 15px;
  color: #009D7F;
  text-decoration: none;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-pagelink li a {
    padding: 10px 12px;
  }
}
.p-pagelink li a::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #009D7F;
  border-right: 3px solid #009D7F;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-pagelink li a::before {
    right: 15px;
    width: 6px;
    height: 6px;
    border-width: 2px;
  }
}
.p-pagelink li a:hover {
  background: #EDF8F6;
}
.p-pagelink li.is-active {
  padding: 15px;
  color: #FFF;
  background: #009D7F;
}
@media screen and (max-width: 767px) {
  .p-pagelink li.is-active {
    padding: 10px 12px;
  }
}

.p-title-image {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-title-image {
    margin-bottom: 30px;
  }
}
.p-title-image img {
  height: 70px;
}
@media screen and (max-width: 767px) {
  .p-title-image img {
    height: 50px;
  }
}

.p-title-common {
  margin-bottom: 45px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-title-common {
    margin-bottom: 30px;
  }
}
.p-title-common__jpn {
  font-size: 216%;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-title-common__jpn {
    font-size: 139%;
  }
}
.p-title-common__eng {
  font-size: 93%;
  color: #009D7F;
  font-family: "Oswald", sans-serif;
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .p-title-common__eng {
    font-size: 77%;
  }
}

.p-title-common-white {
  margin-bottom: 45px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-title-common-white {
    margin-bottom: 30px;
  }
}
.p-title-common-white__jpn {
  font-size: 216%;
  line-height: 1.5;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-title-common-white__jpn {
    font-size: 139%;
  }
}
.p-title-common-white__eng {
  font-size: 93%;
  color: #FFF;
  font-family: "Oswald", sans-serif;
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .p-title-common-white__eng {
    font-size: 77%;
  }
}

.p-title-info {
  width: 170px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-title-info {
    width: auto;
  }
}
.p-title-info__jpn {
  font-size: 216%;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-title-info__jpn {
    font-size: 170%;
  }
}
.p-title-info__eng {
  font-size: 93%;
  color: #009D7F;
  font-family: "Oswald", sans-serif;
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .p-title-info__eng {
    font-size: 85%;
    margin-top: 0;
  }
}

.p-title-pagename {
  width: 1100px;
  margin: 0 auto;
}
.p-title-pagename__jpn {
  position: relative;
  z-index: 1;
  font-size: 231%;
  line-height: 1.3;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-title-pagename__jpn {
    font-size: 154%;
    text-align: center;
  }
}
.p-title-pagename__eng {
  position: absolute;
  bottom: -3px;
  right: -3px;
  font-size: 800%;
  line-height: 1;
  color: #FFF;
  font-family: "Oswald", sans-serif;
  opacity: 0.1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-title-pagename__eng {
    font-size: 350%;
    text-align: center;
  }
}

.p-title-main {
  margin-bottom: 15px;
  font-size: 124%;
  line-height: 1.6;
}

.p-title-side {
  margin-bottom: 15px;
  font-size: 124%;
  line-height: 1.6;
}

.p-title-post {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #E5E5E5;
}
@media screen and (max-width: 767px) {
  .p-title-post {
    padding-bottom: 15px;
  }
}
.p-title-post h1 {
  margin-bottom: 10px;
  font-size: 185%;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-title-post h1 {
    font-size: 139%;
  }
}
.p-title-post ul {
  display: flex;
  align-items: center;
}
.p-title-post ul li.date {
  margin-right: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-title-post ul li.date {
    margin-right: 10px;
    font-size: 85%;
  }
}

.p-title-leftline {
  margin-bottom: 20px;
  padding-left: 15px;
  font-size: 139%;
  line-height: 1.7;
  color: #009D7F;
  border-left: 5px solid #009D7F;
}
@media screen and (max-width: 767px) {
  .p-title-leftline {
    font-size: 124%;
  }
}

.p-title-threecolour {
  position: relative;
  margin-bottom: 60px;
  font-size: 231%;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-title-threecolour {
    margin-bottom: 35px;
    font-size: 170%;
  }
}
.p-title-threecolour::before {
  position: absolute;
  content: "";
  margin: auto;
  bottom: -15px;
  left: 0;
  right: 0;
  width: 80px;
  height: 5px;
  background-image: linear-gradient(90deg, #ECB931 0% 33.33%, #007AC3 33.33% 66.66%, #E40039 66.66% 100%);
}
@media screen and (max-width: 767px) {
  .p-title-threecolour::before {
    bottom: -10px;
    width: 60px;
    height: 4px;
  }
}

.p-title-simple {
  margin-bottom: 30px;
  font-size: 185%;
  line-height: 1.6;
  color: #00595C;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-title-simple {
    font-size: 139%;
  }
}

.p-title-simple-small {
  margin-bottom: 30px;
  font-size: 154%;
  line-height: 1.6;
  color: #00595C;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-title-simple-small {
    margin-bottom: 20px;
    font-size: 124%;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.13);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoomUp 10s linear 0s 1 normal both;
}

.slide-img img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 750px;
}
@media screen and (max-width: 1024px) {
  .slide-img img {
    height: 600px;
  }
}
@media screen and (max-width: 767px) {
  .slide-img img {
    height: 250px;
  }
}

.swiper-pagination {
  font-size: 0;
  position: absolute;
  right: 40px;
  bottom: 40px;
}
@media screen and (max-width: 767px) {
  .swiper-pagination {
    right: 30px;
    bottom: 30px;
  }
}

.swiper-pagination-bullet {
  display: block;
  margin-top: 15px;
  width: 11px;
  height: 11px;
  border: 1px solid #FFF;
  background: none;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    margin-top: 12px;
    width: 9px;
    height: 9px;
  }
}

.swiper-pagination-bullet-active {
  background: #FFF;
}

.p-catchcopy {
  position: absolute;
  bottom: 180px;
  left: 60px;
  z-index: 5;
  font-size: 350%;
  line-height: 1.4;
  color: #FFF;
  font-weight: 500;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  animation-name: catchcopy-txt;
  animation-duration: 1.3s;
  animation-iteration-count: 1;
}
@media screen and (max-width: 767px) {
  .p-catchcopy {
    bottom: 30px;
    left: 15px;
    font-size: 180%;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  }
}

@keyframes catchcopy-txt {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-scroll {
  position: absolute;
  z-index: 1;
  left: 50px;
  bottom: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-scroll {
    display: none;
  }
}
.p-scroll a {
  position: relative;
  display: block;
  padding: 20px 10px 70px 10px;
  font-family: "Oswald", sans-serif;
  font-size: 85%;
  line-height: 1;
  color: #FFF;
  font-style: italic;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.p-scroll a span {
  display: block;
  transform: rotate(90deg);
}
.p-scroll a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 49%;
  width: 1px;
  height: 15px;
  background: #FFF;
  animation: sdl 3s ease infinite;
}
.p-scroll a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 49%;
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.4);
}
@keyframes sdl {
  0% {
    transform: translateY(-35px);
  }
  50%, 100% {
    transform: translateY(15px);
  }
}

.p-about-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFF;
  height: 450px;
  box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .p-about-logo {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }
}
.p-about-logo img {
  width: 200px;
}
@media screen and (max-width: 1024px) {
  .p-about-logo img {
    width: 160px;
  }
}
@media screen and (max-width: 767px) {
  .p-about-logo img {
    width: 110px;
  }
}

.p-about-lead {
  margin-bottom: 50px;
  font-size: 200%;
  line-height: 1.6;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-about-lead {
    margin-bottom: 30px;
    font-size: 139%;
  }
}

.p-gojoh {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #DDD;
}
.p-gojoh dt {
  width: 47px;
  padding: 13px 20px;
  font-size: 170%;
  line-height: 24px;
  font-weight: 500;
  border-bottom: 1px solid #DDD;
  color: #009D7F;
}
@media screen and (max-width: 767px) {
  .p-gojoh dt {
    width: 35px;
    padding: 10px;
    font-size: 139%;
  }
}
.p-gojoh dd {
  padding: 13px;
  width: calc(100% - 47px);
  font-size: 124%;
  line-height: 24px;
  border-bottom: 1px solid #DDD;
}
.p-gojoh dd span {
  margin-right: 1em;
}
@media screen and (max-width: 767px) {
  .p-gojoh dd {
    padding: 10px;
    width: calc(100% - 35px);
    font-size: 108%;
  }
}

.p-list-service {
  display: flex;
  justify-content: space-between;
  margin: 0 0 -2% -2%;
}
@media screen and (max-width: 767px) {
  .p-list-service {
    display: block;
    margin: 0;
  }
}
.p-list-service li {
  position: relative;
  width: 31.33%;
  margin: 0 0 2% 2%;
  overflow: hidden;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .p-list-service li {
    width: auto;
    margin: 0 0 15px 0;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  }
  .p-list-service li:last-child {
    margin-bottom: 0;
  }
}
.p-list-service li img {
  object-fit: cover;
  width: 100%;
  height: 350px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-list-service li img {
    height: 230px;
  }
}
.p-list-service li:hover img {
  transform: scale(1.08);
}
.p-list-service li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 101%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.p-list-service li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  text-decoration: none;
  transition: 0.3s;
}
.p-list-service li a dl {
  text-align: center;
  color: #FFF;
}
.p-list-service li a dl dt {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #FFF;
  font-size: 108%;
  line-height: 1.5;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .p-list-service li a dl dt {
    font-size: 93%;
  }
}
.p-list-service li a dl dd {
  font-size: 154%;
  line-height: 1.3;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .p-list-service li a dl dd {
    font-size: 139%;
  }
}
.p-list-service li a:hover {
  background: rgba(0, 15, 15, 0.4);
}

.p-list-company {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-list-company {
    display: block;
  }
}
.p-list-company li {
  width: 33.33%;
  margin-right: 2px;
  background: #FFF;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .p-list-company li {
    width: auto;
    margin: 0 0 30px 0;
  }
}
.p-list-company li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-list-company li:last-child {
    margin: 0;
  }
}
.p-list-company li a {
  display: block;
  color: #333;
  text-decoration: none;
}

.p-company-image {
  overflow: hidden;
}
.p-company-image img {
  object-fit: cover;
  width: 100%;
  height: 230px;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-company-image img {
    height: 180px;
  }
}
.p-company-image:hover img {
  transform: scale(1.1, 1.1);
}

.p-company {
  padding: 25px 30px;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding: 20px 25px;
  }
}
.p-company dt {
  font-size: 139%;
  line-height: 1.7;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-company dt {
    font-size: 116%;
  }
}
.p-company dd {
  margin-top: 5px;
}

.p-info {
  border-top: 1px solid #E5E5E5;
}
.p-info li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 17px 45px 17px 20px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #E5E5E5;
}
.p-info li a::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #009D7F;
  border-right: 2px solid #009D7F;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-info li a::before {
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-info li a {
    flex-wrap: wrap;
    padding: 15px 35px 15px 10px;
  }
}
.p-info__date {
  margin-right: 25px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-info__date {
    margin-right: 10px;
    font-size: 85%;
  }
}
.p-info__label {
  margin-right: 25px;
}
@media screen and (max-width: 767px) {
  .p-info__label {
    margin-right: 0;
  }
}
.p-info__title {
  color: #333;
  text-decoration: underline;
}
.p-info__title:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-info__title {
    width: 100%;
    margin-top: 6px;
  }
}

.p-btn-info {
  position: absolute;
  top: 120px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-btn-info {
    position: static;
    margin-top: 30px;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .p-books {
    text-align: center;
  }
}
.p-books dt {
  margin-bottom: 20px;
  padding: 0 10%;
}
.p-books dt img {
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
.p-books dd h3 {
  margin-bottom: 20px;
  font-size: 108%;
  line-height: 1.6;
}

.p-eyecatch {
  margin-bottom: 30px;
}

.p-list-side {
  border-top: 1px solid #E5E5E5;
}
.p-list-side li {
  padding: 12px 10px;
  line-height: 1.6;
  border-bottom: 1px solid #E5E5E5;
}

.p-service-content h3 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-size: 170%;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-service-content h3 {
    font-size: 139%;
    text-align: center;
  }
}
.p-service-content h3::before {
  position: absolute;
  content: "";
  margin: auto;
  bottom: 0;
  left: 0;
  width: 75px;
  height: 4px;
  background-image: linear-gradient(90deg, #ECB931 0% 33.33%, #007AC3 33.33% 66.66%, #E40039 66.66% 100%);
}
@media screen and (max-width: 767px) {
  .p-service-content h3::before {
    right: 0;
    width: 60px;
  }
}
.p-service-content p {
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .p-service-content p {
    font-size: 93%;
  }
}
.p-service-content p:last-child {
  margin-bottom: 0;
}

.p-btn-service {
  margin-top: 25px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-btn-service {
    text-align: center;
  }
}

.p-service-catch {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-service-catch {
    margin-bottom: 30px;
  }
}
.p-service-catch img {
  object-fit: cover;
  width: 100%;
  height: 480px;
}
@media screen and (max-width: 767px) {
  .p-service-catch img {
    object-fit: fill;
    height: auto;
  }
}

.p-service-text {
  margin-bottom: 1em;
  font-size: 108%;
  line-height: 2;
}
.p-service-text:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-service-text {
    font-size: 100%;
    line-height: 1.8;
  }
}

.p-list-flow {
  position: relative;
}
.p-list-flow::before {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  left: 100px;
  width: 2px;
  height: 100%;
  background: #009D7F;
}
@media screen and (max-width: 767px) {
  .p-list-flow::before {
    left: 36px;
    width: 1px;
  }
}
.p-list-flow li {
  position: relative;
  margin-bottom: 30px;
  padding: 45px 60px 45px 80px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.05);
  background: #FFF;
  overflow: hidden;
}
.p-list-flow li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-list-flow li {
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.05);
  }
  .p-list-flow li:last-child {
    margin-bottom: 0;
  }
}
.p-list-flow li::before {
  position: absolute;
  content: "";
  margin: auto;
  top: 0;
  left: 100px;
  width: 2px;
  height: 100%;
  background: #009D7F;
}
@media screen and (max-width: 767px) {
  .p-list-flow li::before {
    left: 36px;
    width: 1px;
  }
}
.p-list-flow li:first-child::before {
  top: 50px;
}
.p-list-flow li:last-child::before {
  height: 50px;
}

.p-flow-number {
  position: absolute;
  left: 80px;
  width: 41px;
  height: 41px;
  font-size: 147%;
  line-height: 39px;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  border-radius: 50%;
  background: #009D7F;
}
@media screen and (max-width: 767px) {
  .p-flow-number {
    left: 20px;
    width: 32px;
    height: 32px;
    font-size: 124%;
    line-height: 30px;
  }
}

.p-flow {
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding-left: 45px;
  }
}
.p-flow dt {
  font-size: 139%;
  line-height: 1.6;
  color: #009D7F;
  font-weight: 500;
  padding: 3px 0;
}
@media screen and (max-width: 767px) {
  .p-flow dt {
    font-size: 124%;
    padding: 0;
  }
}
.p-flow dd {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-flow dd {
    margin-top: 10px;
  }
}

.p-list-settle {
  padding: 25px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.05);
  background: #FFF;
}
.p-list-settle dt {
  margin-bottom: 15px;
  font-size: 124%;
  line-height: 1.6;
  color: #009D7F;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-list-settle dt {
    margin-bottom: 10px;
  }
}
.p-list-settle dd ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-list-settle dd ul {
    display: block;
  }
}
.p-list-settle dd ul li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-list-settle dd ul li {
    width: auto;
  }
}

.p-note {
  font-size: 93%;
  line-height: 1.7;
  color: #E40039;
  text-indent: -1em;
  padding-left: 1em;
}

.p-table-course {
  width: 100%;
}
.p-table-course th {
  text-align: center;
  white-space: nowrap;
  border: 1px solid #00595C;
}
@media screen and (max-width: 767px) {
  .p-table-course th {
    border-width: 1px;
  }
}
.p-table-course th.head1 {
  padding: 12px;
  background: #009D7F;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-table-course th.head1 {
    padding: 10px;
  }
}
.p-table-course th.head2 {
  width: 22%;
  padding: 20px;
  background: #E0F2ED;
  font-size: 124%;
  color: #00595C;
}
@media screen and (max-width: 767px) {
  .p-table-course th.head2 {
    padding: 15px;
    font-size: 116%;
  }
}
.p-table-course td {
  padding: 20px;
  background: #FFF;
  border: 1px solid #00595C;
}
@media screen and (max-width: 767px) {
  .p-table-course td {
    padding: 15px;
    border-width: 1px;
  }
}

.p-course {
  margin-top: 20px;
  padding: 12px 15px;
  background: #F5F5F5;
  border-radius: 5px;
  font-size: 93%;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-course {
    margin-top: 15px;
    padding: 10px 12px;
    font-size: 85%;
  }
}
.p-course dt {
  float: left;
}
.p-course dd {
  overflow: hidden;
}

.p-philosophy {
  padding: 50px;
  background: #FFF;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-philosophy {
    padding: 30px;
  }
}

.p-txt-philosophy {
  margin-top: -30px;
  font-size: 124%;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-txt-philosophy {
    margin-top: -15px;
    font-size: 100%;
    line-height: 1.8;
    text-align: left;
  }
  .p-txt-philosophy br {
    display: none;
  }
}

.p-txt-message {
  margin-bottom: 1.5em;
  font-size: 108%;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-txt-message {
    margin-bottom: 1.2em;
    font-size: 100%;
  }
}

.p-president {
  position: relative;
}

.p-president-image {
  text-align: center;
}
.p-president-image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-president-image img {
    width: 80%;
  }
}

.p-president-name {
  position: absolute;
  bottom: -55px;
  right: 30px;
  padding: 20px;
  background: #FFF;
  width: 250px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #009D7F;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-president-name {
    bottom: -33px;
    right: 15px;
    transform: scale(0.7, 0.7);
    transform-origin: bottom right;
  }
}
.p-president-name__desc {
  font-size: 93%;
  font-weight: bold;
  color: #009D7F;
}
.p-president-name__main {
  display: flex;
  align-items: center;
  line-height: 1.6;
}
.p-president-name__main strong {
  font-size: 200%;
  margin-right: 15px;
}
.p-president-name__main em {
  font-size: 70%;
  padding-top: 6px;
  color: #999;
}

.p-table-profile {
  width: 100%;
}
.p-table-profile th {
  padding: 12px;
  width: 22%;
  text-align: center;
  border: 1px solid #CCC;
  background: #F5F5F5;
}
@media screen and (max-width: 767px) {
  .p-table-profile th {
    display: block;
    padding: 8px;
    width: auto;
    margin-top: -1px;
  }
}
.p-table-profile td {
  padding: 12px;
  border: 1px solid #CCC;
}
@media screen and (max-width: 767px) {
  .p-table-profile td {
    display: block;
    border-top: 0;
  }
}

.p-career {
  display: flex;
  flex-wrap: wrap;
  font-size: 93%;
  overflow: hidden;
}
.p-career dt {
  width: 80px;
  margin-top: -1px;
  padding: 5px 10px;
  font-weight: 500;
  border-top: 1px solid #EEE;
  white-space: nowrap;
}
.p-career dd {
  margin-top: -1px;
  padding: 5px 10px;
  width: calc(100% - 80px);
  border-top: 1px solid #EEE;
}

.p-list-disc {
  padding-left: 1.5em;
  list-style: disc;
}
.p-list-disc li::marker {
  color: #009D7F;
}

.p-table-green {
  width: 100%;
}
.p-table-green th {
  padding: 12px;
  width: 22%;
  color: #FFF;
  text-align: center;
  background: #009D7F;
  border: 1px solid #007C6B;
}
@media screen and (max-width: 767px) {
  .p-table-green th {
    padding: 10px;
    width: 100px;
  }
}
.p-table-green td {
  padding: 12px;
  background: #FFF;
  border: 1px solid #007C6B;
}
@media screen and (max-width: 767px) {
  .p-table-green td {
    padding: 10px;
  }
}

.p-gmap {
  width: 100%;
  height: 450px;
  border: 2px solid #FFF;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .p-gmap {
    height: 320px;
  }
}

.entry p {
  margin-bottom: 1.2em;
}
.entry p:last-child {
  margin-bottom: 0;
}

.entry h2 {
  margin: 45px 0 30px 0;
  padding: 13px 18px;
  font-size: 124%;
  line-height: 1.6;
  color: #FFF;
  background: #009D7F;
}
@media screen and (max-width: 767px) {
  .entry h2 {
    padding: 12px 15px;
  }
}

.entry h3 {
  margin: 45px 0 30px 0;
  padding-bottom: 15px;
  font-size: 124%;
  line-height: 1.5;
  border-bottom: 3px solid #E5E5E5;
  position: relative;
}
.entry h3::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 250px;
  height: 3px;
  background: #009D7F;
}
@media screen and (max-width: 767px) {
  .entry h3::before {
    width: 50%;
  }
}

.entry h4 {
  margin: 30px 0 20px 0;
  padding: 4px 0 4px 15px;
  font-size: 116%;
  line-height: 1.5;
  border-left: 5px solid #009D7F;
}

.entry h5 {
  margin: 30px 0 10px 0;
  font-size: 108%;
  line-height: 1.5;
}

.entry h6 {
  margin: 30px 0 10px 0;
  font-size: 108%;
  line-height: 1.5;
}

.entry ul {
  list-style: disc;
  margin: 1em 0;
  padding-left: 2em;
}
.entry ul li::marker {
  color: #009D7F;
}

.entry ol {
  list-style: decimal;
  margin: 1em 0;
  padding-left: 2em;
}

.entry table {
  width: 100%;
  margin: 1.5em 0;
}
.entry table th {
  border: 1px solid #CCC;
  padding: 12px;
  background: #F5F5F5;
  text-align: center;
}
.entry table td {
  border: 1px solid #CCC;
  padding: 12px;
}

.u-anchor {
  display: block;
  position: absolute;
  z-index: 100;
  width: 0;
  height: 0;
  top: -79px;
}
@media screen and (max-width: 767px) {
  .u-anchor {
    top: -59px;
  }
}

.u-spacer {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .u-spacer {
    margin-top: 30px;
  }
}

.u-bgimg-company {
  background: #F5F5F5 url(../img/bg_company.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .u-bgimg-company {
    background: #F5F5F5;
  }
}

.u-bgimg-watergreen {
  background: url(../img/bg_watergreen.jpg) no-repeat center center/cover;
}

.u-bgcolor-beige, .u-bgcolor-beige-shadow {
  background: #F9F8F0;
}

.u-bgcolor-beige-shadow {
  overflow: hidden;
}
.u-bgcolor-beige-shadow::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  right: 0;
  bottom: -100%;
  background: rgba(0, 0, 0, 0.02);
  transform: skew(0deg, -15deg);
}
@media screen and (max-width: 767px) {
  .u-bgcolor-beige-shadow::before {
    top: 95%;
    transform: skew(0deg, -45deg);
  }
}

.u-bgcolor-green-gradient {
  background: linear-gradient(45deg, #00595C, #007C6B, #009D7F);
}

.u-bgcolor-rightgreen {
  background: #EDF8F6;
}

.u-color-green {
  color: #009D7F;
}

.u-color-white {
  color: #FFF;
}

.u-color-red {
  color: #CB0000;
}

.u-overflow-hidden {
  overflow: hidden;
}

.u-txt-l {
  text-align: left !important;
}

.u-txt-c {
  text-align: center !important;
}

.u-txt-r {
  text-align: right !important;
}

.u-fs11 {
  font-size: 11px !important;
}

.u-fs12 {
  font-size: 12px !important;
}

.u-fs14 {
  font-size: 14px !important;
}

.u-fs16 {
  font-size: 16px !important;
}

.u-fs18 {
  font-size: 18px !important;
}

.u-fs20 {
  font-size: 20px !important;
}

.u-fs22 {
  font-size: 22px !important;
}

.u-fs24 {
  font-size: 24px !important;
}

.u-fs26 {
  font-size: 26px !important;
}

.u-fs28 {
  font-size: 28px !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-w5 {
  width: 5% !important;
}

.u-w10 {
  width: 10% !important;
}

.u-w15 {
  width: 15% !important;
}

.u-w20 {
  width: 20% !important;
}

.u-w25 {
  width: 25% !important;
}

.u-w30 {
  width: 30% !important;
}

.u-w35 {
  width: 35% !important;
}

.u-w40 {
  width: 40% !important;
}

.u-w45 {
  width: 45% !important;
}

.u-w50 {
  width: 50% !important;
}

.u-w55 {
  width: 55% !important;
}

.u-w60 {
  width: 60% !important;
}

.u-w65 {
  width: 65% !important;
}

.u-w70 {
  width: 70% !important;
}

.u-w75 {
  width: 75% !important;
}

.u-w80 {
  width: 80% !important;
}

.u-w85 {
  width: 85% !important;
}

.u-w90 {
  width: 90% !important;
}

.u-w95 {
  width: 95% !important;
}

.u-w100 {
  width: 100% !important;
}