@charset "UTF-8";
/*------------------------------------------------------------------------------
  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;
}

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;
}

button {
  background-color: transparent;
  cursor: pointer;
}

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;
}

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

body {
  color: #333;
  font-size: 1.6rem;
  font-weight: normal;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}

img {
  border: 0;
  margin: 0;
  vertical-align: bottom;
  max-width: 100%;
  -webkit-user-drag: none;
}

p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
a:hover {
  opacity: 0.85;
}

.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 !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

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

.l-main {
  display: block;
  background-color: transparent;
}

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

.l-main__container {
  margin-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .l-main__container {
    margin-bottom: 64px;
  }
}

.l-main__double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-main__double {
    display: block;
  }
}

.l-main__contents {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 66%;
          flex: 0 1 66%;
}

/*------------------------------------------------------------------------------
  l-header
------------------------------------------------------------------------------*/
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .l-header {
    background-color: rgba(255, 255, 255, 0.95);
  }
}
.l-header.is-fixed {
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 20px 24px;
}
@media screen and (max-width: 1280px) {
  .l-header__inner {
    padding: 20px 16px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__inner {
    padding: 16px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 0 0 0 8px;
  }
}

.l-header__logo {
  width: 100%;
  max-width: 376px;
}
@media screen and (max-width: 1280px) {
  .l-header__logo {
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    max-width: 204px;
    margin-top: 4px;
  }
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 8px;
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    margin-top: 0;
  }
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__nav-item {
  margin-right: 32px;
}
@media screen and (max-width: 1280px) {
  .l-header__nav-item {
    margin-right: 28px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav-item {
    margin-right: auto;
  }
}

.l-header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.l-header__nav-link-ja {
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 6px;
}
@media screen and (max-width: 1280px) {
  .l-header__nav-link-ja {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav-link-ja {
    color: #fff;
    font-size: 1.6rem;
  }
}

.l-header__nav-link-en {
  color: #4F6885;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.04em;
  font-family: "Roboto", serif;
}
@media screen and (max-width: 1280px) {
  .l-header__nav-link-en {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav-link-en {
    color: #aaa;
  }
}

.l-header__tel {
  line-height: 1.5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .l-header__tel {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
  }
}

.l-header__tel-number {
  color: #375980;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  font-family: "Roboto", serif;
  display: block;
  display: inline-block;
  padding-left: 13px;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .l-header__tel-number {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__tel-number {
    color: #fff;
    padding-left: 11px;
  }
}
.l-header__tel-number::before {
  content: "";
  position: absolute;
  top: 4px;
  left: -14px;
  background-image: url(../img/tel-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
}
@media screen and (max-width: 1280px) {
  .l-header__tel-number::before {
    top: 3px;
    left: -12px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__tel-number::before {
    top: 5px;
    left: -10px;
    background-image: url(../img/tel-icon-white.svg);
    width: 18px;
    height: 18px;
  }
}

.l-header__tel-text {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-align: right;
}
@media screen and (max-width: 1023px) {
  .l-header__tel-text {
    color: #ddd;
    font-weight: 300;
  }
}

.l-header__contact {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__contact {
    display: block;
    margin-left: auto;
    width: 74px;
    margin-right: -9px;
  }
}

.l-header__contact-icon img {
  width: 28px;
  display: block;
  margin: 5px auto 4px;
}

.l-header__contact-text {
  color: #375980;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.2;
}

/* 1023px
--------------------------------------------- */
@media only screen and (max-width: 1023px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: 999;
    width: 0;
    height: 100vh;
    -webkit-transition: all 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #375980;
    margin-right: 0;
    display: block;
  }
  .l-header__nav.open {
    opacity: 1;
    width: 100%;
    z-index: 999;
  }
  .l-header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 120px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }
  .l-header__nav-item {
    margin: 0 auto 32px;
    width: 100%;
    white-space: nowrap;
  }
}
/*------------------------------------------------------------------------------
  l-footer
------------------------------------------------------------------------------*/
.l-footer {
  padding: 76px 0 64px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 40px 0 24px;
  }
}

.l-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer__contents {
    display: block;
    text-align: center;
  }
}
.l-footer__contents::before {
  content: "";
  position: absolute;
  bottom: -64px;
  right: 20px;
  background-image: url(../img/fotter-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 781px;
  height: 508px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-footer__contents::before {
    right: -380px;
    opacity: 0.8;
  }
}

.l-footer__logo {
  width: 246px;
  display: block;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 170px;
    margin: 0 auto 16px;
  }
}

.l-footer__company {
  color: #375980;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .l-footer__company {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
}

.l-footer__texts {
  font-weight: 500;
}
.l-footer__texts p:not(:last-of-type) {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .l-footer__texts p:not(:last-of-type) {
    margin-bottom: 2px;
  }
}

.l-footer__nav-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 16px;
}

.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    display: none;
  }
}
.l-footer__nav li:not(:last-child) {
  margin-right: 56px;
}
@media screen and (max-width: 1023px) {
  .l-footer__nav li:not(:last-child) {
    margin-right: 20px;
  }
}
.l-footer__nav li a {
  color: #375980;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1023px) {
  .l-footer__nav li a {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
}

.l-footer__copyright {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: right;
  display: block;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 32px;
  }
}

/*------------------------------------------------------------------------------
  l-common-contact
------------------------------------------------------------------------------*/
.l-common-contact {
  background-image: url(../img/common-contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  text-align: center;
  padding: 82px 0;
}
@media screen and (max-width: 767px) {
  .l-common-contact {
    padding: 40px 0 48px;
  }
}

.l-common-contact__title-en {
  font-size: 12.8rem;
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1;
  font-family: "Roboto", serif;
  opacity: 0.05;
}
@media screen and (max-width: 767px) {
  .l-common-contact__title-en {
    font-size: 7.8rem;
  }
}

.l-common-contact__title {
  margin-top: -56px;
}
@media screen and (max-width: 767px) {
  .l-common-contact__title {
    margin-top: -32px;
  }
}
.l-common-contact__title.c-title__ja {
  color: #fff;
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .l-common-contact__title.c-title__ja {
    margin-bottom: 28px;
  }
}

.l-common-contact__lead {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 52px;
}
@media screen and (max-width: 1023px) {
  .l-common-contact__lead {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-common-contact__lead {
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
  }
}

.l-common-contact__btn {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Roboto", serif;
  width: 100%;
  max-width: 360px;
  height: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 58px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-common-contact__btn {
    font-size: 2rem;
    max-width: 320px;
    height: 66px;
  }
}
@media screen and (max-width: 767px) {
  .l-common-contact__btn {
    font-size: 1.6rem;
    max-width: 290px;
    height: 56px;
  }
}
.l-common-contact__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/caret-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 14px;
}
@media screen and (max-width: 767px) {
  .l-common-contact__btn::after {
    top: 51%;
    right: 20px;
    width: 9px;
    height: 12px;
  }
}

/*------------------------------------------------------------------------------
  l-sidebar
------------------------------------------------------------------------------*/
.l-sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 28.5%;
          flex: 0 1 28.5%;
}
@media screen and (max-width: 767px) {
  .l-sidebar {
    margin-top: 40px;
  }
}

.l-sidebar__block:not(:last-child) {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .l-sidebar__block:not(:last-child) {
    margin-bottom: 32px;
  }
}

.l-sidebar__block-title {
  color: #375980;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-bottom: 14px;
}
@media screen and (max-width: 1023px) {
  .l-sidebar__block-title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-sidebar__block-title {
    font-size: 1.5rem;
  }
}

.l-sidebar__list {
  border-top: 1px solid #D1DCE9;
}
.l-sidebar__list li {
  border-bottom: 1px solid #D1DCE9;
}
.l-sidebar__list li a {
  color: #375980;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-weight: bold;
  width: 100%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 18px 20px 18px 6px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .l-sidebar__list li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-sidebar__list li a {
    font-size: 1.3rem;
  }
}
.l-sidebar__list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/caret2-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 7px;
  height: 11px;
  pointer-events: none;
}
.l-sidebar__list li a:hover {
  background-color: #F3F7F9;
  opacity: 1;
}

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

.c-inner--sm {
  max-width: 840px;
}

.c-inner--lg {
  max-width: 1240px;
}

/*------------------------------------------------------------------------------
  c-title
------------------------------------------------------------------------------*/
.c-title {
  text-align: center;
}

.c-title--md .c-title__ja {
  font-size: 3.6rem;
}
@media screen and (max-width: 1023px) {
  .c-title--md .c-title__ja {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title--md .c-title__ja {
    font-size: 2.8rem;
    margin-bottom: 4px;
  }
}
.c-title--md .c-title__en {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-title--md .c-title__en {
    font-size: 1.2rem;
  }
}

.c-title__ja {
  color: #375980;
  font-size: 3.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 8px;
}
@media screen and (max-width: 1023px) {
  .c-title__ja {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__ja {
    font-size: 2.8rem;
    margin-bottom: 4px;
  }
}

.c-title__ja--sm {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .c-title__ja--sm {
    font-size: 2.2rem;
  }
}

.c-title__en {
  color: #8C9BAC;
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Roboto", serif;
}
@media screen and (max-width: 1023px) {
  .c-title__en {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__en {
    font-size: 1.2rem;
  }
}

.c-title__en--sm {
  font-size: 1.5rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .c-title__en--sm {
    font-size: 1.2rem;
  }
}

/*------------------------------------------------------------------------------
  c-btn
------------------------------------------------------------------------------*/
.c-btn {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 320px;
  height: 68px;
  background-color: #375980;
  border-radius: 50px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .c-btn {
    font-size: 1.6rem;
    max-width: 290px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 1.5rem;
    max-width: 240px;
    height: 52px;
  }
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 51%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/arrow-btn.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 1023px) {
  .c-btn::before {
    width: 26px;
    height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn::before {
    width: 22px;
    height: 22px;
  }
}

.c-btn--sm {
  font-size: 1.6rem;
  max-width: 220px;
  height: 52px;
}
.c-btn--sm::before {
  right: 15px;
  width: 21px;
  height: 21px;
}

/*------------------------------------------------------------------------------
  c-burger-btn
------------------------------------------------------------------------------*/
.c-burger-btn {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-burger-btn {
    display: block;
    border: none;
    cursor: pointer;
    position: relative;
    top: 0px;
    z-index: 999;
    padding: 15px 30px;
    background-color: transparent;
    margin-left: auto;
    margin-right: -24px;
    /* ハンバーガーメニューが開いたとき */
  }
  .c-burger-btn.cross .c-burger-btn__bar {
    background-color: #fff;
  }
  .c-burger-btn.cross .c-burger-btn__bar--top {
    -webkit-transition-delay: 40ms;
            transition-delay: 40ms;
    -webkit-transform: translateY(10px) rotate(135deg);
            transform: translateY(10px) rotate(135deg);
  }
  .c-burger-btn.cross .c-burger-btn__bar--mid {
    -webkit-transition-delay: 120ms;
            transition-delay: 120ms;
    -webkit-transform: translateX(-15px) scaleX(0);
            transform: translateX(-15px) scaleX(0);
  }
  .c-burger-btn.cross .c-burger-btn__bar--bottom {
    -webkit-transition-delay: 20ms;
            transition-delay: 20ms;
    -webkit-transform: translateY(-10px) rotate(-135deg);
            transform: translateY(-10px) rotate(-135deg);
  }
}
@media screen and (max-width: 767px) {
  .c-burger-btn {
    padding: 20px 16px;
    margin-left: 0;
    margin-right: 0;
  }
}

.c-burger-btn__bar {
  margin: 0 auto;
  display: block;
  height: 2px;
  width: 32px;
  border-radius: 1px;
  background-color: #375980;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-burger-btn__bar--top,
.c-burger-btn__bar--mid {
  margin-bottom: 8px;
}

/*------------------------------------------------------------------------------
  c-label
------------------------------------------------------------------------------*/
.c-label {
  color: #fff;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  display: inline-block;
  background-color: #375980;
  border-radius: 24px;
  padding: 5px 16px;
}
@media screen and (max-width: 767px) {
  .c-label {
    font-size: 1.2rem;
    padding: 4px 12px;
  }
}

.c-label--white {
  color: #375980;
  border: 1px solid #375980;
  background-color: #fff;
  padding: 7px 16px;
}
@media screen and (max-width: 767px) {
  .c-label--white {
    padding: 5px 14px;
  }
}

/*------------------------------------------------------------------------------
  c-fixed-contact
------------------------------------------------------------------------------*/
.c-fixed-contact {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
  padding: 26px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #375980;
  border-radius: 2px 0px 0px 2px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1023px) {
  .c-fixed-contact {
    padding: 24px 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-fixed-contact {
    display: none;
  }
}
.c-fixed-contact:hover {
  opacity: 0.9;
}

.c-fixed-contact__icon {
  margin: 0 auto;
  width: 100%;
  max-width: 18px;
  margin-bottom: 7px;
  display: block;
}

.c-fixed-contact__text {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1.12;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 1023px) {
  .c-fixed-contact__text {
    font-size: 1.8rem;
  }
}

/*------------------------------------------------------------------------------
  c-breadcrumb
------------------------------------------------------------------------------*/
.c-breadcrumb {
  width: 100%;
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-breadcrumb__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.c-breadcrumb__item:not(:last-child) {
  margin-right: 35px;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:not(:last-child) {
    margin-right: 28px;
  }
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "＞";
  position: absolute;
  top: 7px;
  right: -24px;
  font-size: 1rem;
  font-weight: 200;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:not(:last-child)::after {
    right: -19px;
  }
}

.c-breadcrumb__link {
  color: #375980;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__link {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0;
  }
}
.c-breadcrumb__link:hover {
  text-decoration: underline;
}
.c-breadcrumb__link.--current {
  pointer-events: none;
}

/*------------------------------------------------------------------------------
  c-wp-pagenavi
------------------------------------------------------------------------------*/
.c-wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 6.4rem;
}
@media screen and (max-width: 767px) {
  .c-wp-pagenavi {
    margin-top: 4rem;
  }
}
.c-wp-pagenavi .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-wp-pagenavi .wp-pagenavi span,
.c-wp-pagenavi .wp-pagenavi a {
  margin: 0 3.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #375980;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Roboto", serif;
  background-color: #fff;
  border: 1px solid #375980;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 42px;
  height: 40px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-wp-pagenavi .wp-pagenavi span,
  .c-wp-pagenavi .wp-pagenavi a {
    font-size: 1.4rem;
    width: 38px;
    height: 38px;
  }
}
.c-wp-pagenavi .wp-pagenavi span.current, .c-wp-pagenavi .wp-pagenavi span:hover,
.c-wp-pagenavi .wp-pagenavi a.current,
.c-wp-pagenavi .wp-pagenavi a:hover {
  color: #fff;
  background-color: #375980;
  opacity: 1;
}
.c-wp-pagenavi .wp-pagenavi span.extend,
.c-wp-pagenavi .wp-pagenavi a.extend {
  color: #375980;
  width: 20px;
  border: none;
  -ms-flex-item-align: end;
      align-self: flex-end;
  height: 100%;
  background-color: transparent;
}

/*------------------------------------------------------------------------------
  p-mv
------------------------------------------------------------------------------*/
.p-mv {
  margin-top: 103px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-mv {
    margin-top: 88px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv {
    margin-top: 64px;
  }
}

.p-mv__ornament {
  position: absolute;
  top: 210px;
  left: 26px;
  width: 210px;
}
@media screen and (max-width: 1023px) {
  .p-mv__ornament {
    top: 160px;
    width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__ornament {
    top: 80px;
    left: 10px;
    width: 120px;
  }
}

.p-mv__lead-wrap {
  position: absolute;
  top: 430px;
  left: 60px;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .p-mv__lead-wrap {
    left: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .p-mv__lead-wrap {
    top: 340px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__lead-wrap {
    top: 270px;
    left: 10px;
  }
}
.p-mv__lead-wrap span {
  color: #375980;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
  background-color: #fff;
  border-radius: 2px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 22px 15px;
}
@media screen and (max-width: 767px) {
  .p-mv__lead-wrap span {
    letter-spacing: 0.05em;
    padding: 13px 9px;
  }
}

.p-mv__lead-sm {
  font-size: 3rem;
  margin-bottom: 18px;
}
@media screen and (max-width: 1023px) {
  .p-mv__lead-sm {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__lead-sm {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
}

.p-mv__lead {
  font-size: 3.8rem;
}
@media screen and (max-width: 1023px) {
  .p-mv__lead {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__lead {
    font-size: 2.2rem;
  }
}

.p-mv__bg {
  width: calc(100% - 220px);
  height: 810px;
  margin-left: auto;
}
@media screen and (max-width: 1280px) {
  .p-mv__bg {
    width: calc(100% - 120px);
  }
}
@media screen and (max-width: 1023px) {
  .p-mv__bg {
    width: calc(100% - 60px);
    height: 640px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__bg {
    width: calc(100% - 40px);
    height: 390px;
  }
}
.p-mv__bg img {
  border-radius: 10px 0 0 10px;
}

/*------------------------------------------------------------------------------
  p-top-search
------------------------------------------------------------------------------*/
.p-top-search {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 100px 0 260px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1023px) {
  .p-top-search {
    padding: 80px 0 160px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-search {
    padding: 40px 0 88px;
    margin-bottom: 32px;
  }
}
.p-top-search::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: calc(100% + 140px);
  background-image: url(../img/wave-bg1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .p-top-search::before {
    top: -88px;
    height: calc(100% + 88px);
  }
}
.p-top-search::after {
  content: "";
  position: absolute;
  top: -140px;
  left: 0;
  z-index: 0;
  background-image: url(../img/wave1-top.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 270px;
  height: 37px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-search::after {
    top: -88px;
  }
}

.p-top-search__box {
  background-color: rgba(255, 255, 255, 0.94);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  max-width: 900px;
  padding: 48px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top-search__box {
    padding: 32px 16px;
  }
}

.p-top-search__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 36px;
  margin-left: -12px;
  margin-right: -12px;
}
@media screen and (max-width: 767px) {
  .p-top-search__btn-wrap {
    margin: 20px auto 0;
  }
}

.p-top-search__btn {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 64px;
  max-width: 220px;
  text-align: center;
  background-color: #375980;
  border-radius: 2px;
  margin: 0 12px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-top-search__btn {
    font-size: 1.8rem;
    max-width: 190px;
    height: 56px;
    margin: 0 8px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-search__btn {
    font-size: 1.6rem;
    max-width: 240px;
    height: 52px;
    margin: 0 auto;
  }
  .p-top-search__btn:not(:last-child) {
    margin-bottom: 8px;
  }
}
.p-top-search__btn::before {
  content: "";
  position: absolute;
  top: 51%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/arrow-btn-sm.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 23px;
  height: 23px;
}

.p-top-search__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/*------------------------------------------------------------------------------
  p-top-property
------------------------------------------------------------------------------*/
.p-top-property {
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-top-property {
    margin-bottom: 60px;
  }
}

.p-top-property__list {
  margin: 48px auto 64px;
}
@media screen and (max-width: 767px) {
  .p-top-property__list {
    margin: 24px auto 32px;
  }
}

/*------------------------------------------------------------------------------
  p-top-about
------------------------------------------------------------------------------*/
.p-top-about {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-top-about {
    margin-bottom: 60px;
  }
}

.p-top-about__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 180px 0 140px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-top-about__contents {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 88px 0 50px;
  }
}
.p-top-about__contents::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100px;
  width: calc(100% - 30px);
  height: 100%;
  border-radius: 24px;
  background-color: #F2F2F2;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-about__contents::before {
    right: 24px;
    width: 100%;
    border-radius: 16px;
  }
}
.p-top-about__contents::after {
  content: "";
  position: absolute;
  top: 86px;
  left: 86px;
  z-index: 0;
  background-image: url(../img/seagull2.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 170px;
  height: 63px;
}
@media screen and (max-width: 1023px) {
  .p-top-about__contents::after {
    left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__contents::after {
    top: 26px;
    left: 14px;
    width: 110px;
    height: 36px;
  }
}

.p-top-about__text-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 37.75%;
          flex: 0 1 37.75%;
  margin-top: 42px;
}
@media screen and (max-width: 1023px) {
  .p-top-about__text-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 46%;
            flex: 0 1 46%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__text-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    display: contents;
    margin-top: 0;
  }
  .p-top-about__text-wrap .c-title {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
    margin-bottom: 24px;
  }
}

.p-top-about__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin: 32px 0 48px;
}
@media screen and (max-width: 1023px) {
  .p-top-about__text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__text {
    font-size: 1.3rem;
    margin: 16px 0 28px;
  }
}

.p-top-about__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 53.9%;
          flex: 0 1 53.9%;
}
@media screen and (max-width: 1023px) {
  .p-top-about__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

/*------------------------------------------------------------------------------
  p-top-business
------------------------------------------------------------------------------*/
.p-top-business {
  margin-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-business {
    margin-bottom: 48px;
  }
}

.p-top-business__card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .p-top-business__card-wrap {
    display: block;
    margin-top: 32px;
  }
}

.p-top-business__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47.5%;
          flex: 0 1 47.5%;
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-business__card:not(:last-child) {
    margin-bottom: 32px;
  }
}
.p-top-business__card:hover {
  opacity: 1;
}
.p-top-business__card:hover .p-top-business__card-img img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}
@media screen and (max-width: 767px) {
  .p-top-business__card:hover .p-top-business__card-img img {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.p-top-business__card-contents {
  position: absolute;
  bottom: 35px;
  width: 100%;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 1023px) {
  .p-top-business__card-contents {
    bottom: 16px;
  }
}

.p-top-business__card-title {
  color: #375980;
  line-height: 1.2;
  position: relative;
  left: -34px;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .p-top-business__card-title {
    left: -12px;
  }
}

.p-top-business__card-title-en {
  background-color: #fff;
  line-height: 1;
  letter-spacing: 0.06em;
  font-family: "Roboto", serif;
  border-radius: 2px;
  padding: 4px 10px;
  margin-bottom: 10px;
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  .p-top-business__card-title-en {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-business__card-title-en {
    font-size: 1.3rem;
    margin-bottom: 6px;
  }
}

.p-top-business__card-title-ja {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  display: inline-block;
  background-color: #fff;
  padding: 10px 16px;
}
@media screen and (max-width: 1280px) {
  .p-top-business__card-title-ja {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-business__card-title-ja {
    font-size: 1.6rem;
    letter-spacing: 0;
    padding: 8px 12px;
  }
}

.p-top-business__card-btn {
  width: 55px;
  display: block;
  margin-bottom: -4px;
  margin-right: 24px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .p-top-business__card-btn {
    width: 48px;
    margin-right: 16px;
  }
}
@media screen and (max-width: 1023px) {
  .p-top-business__card-btn {
    width: 36px;
    margin-right: 8px;
    margin-bottom: 2px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-business__card-btn {
    width: 30px;
    margin-bottom: 3px;
  }
}

.p-top-business__card-img {
  display: block;
  width: 100%;
  height: 428px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .p-top-business__card-img {
    height: auto;
    aspect-ratio: 4/3;
  }
}
.p-top-business__card-img img {
  border-radius: 10px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.p-top-business__bg {
  position: absolute;
  top: 348px;
  left: 0;
  width: 100%;
  height: 720px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-business__bg {
    top: 220px;
    height: 800px;
  }
}
.p-top-business__bg::before, .p-top-business__bg::after {
  content: "";
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  z-index: 0;
}
.p-top-business__bg::before {
  top: -1px;
  height: 86px;
  background-image: url(../img/wave2-top.png);
  background-position: center 0;
}
@media screen and (max-width: 767px) {
  .p-top-business__bg::before {
    height: 20px;
  }
}
.p-top-business__bg::after {
  bottom: -1px;
  height: 46px;
  background-image: url(../img/wave2-bottom.png);
  background-position: center 100%;
}
@media screen and (max-width: 767px) {
  .p-top-business__bg::after {
    height: 16px;
  }
}

/*------------------------------------------------------------------------------
  p-top-news
------------------------------------------------------------------------------*/
.p-top-news {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    margin-bottom: 50px;
  }
}

.p-top-news__box {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 88px 20px;
}
@media screen and (max-width: 767px) {
  .p-top-news__box {
    padding: 80px 16px 40px;
  }
}

.p-top-news__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-top-news__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
}

.p-top-news__head {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 220px;
          flex: 0 1 220px;
  margin-top: 22px;
  min-height: 324px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 16px;
}
@media screen and (max-width: 767px) {
  .p-top-news__head {
    display: contents;
    margin-top: 0;
    padding-right: 0;
  }
  .p-top-news__head .c-btn {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 24px;
  }
}
.p-top-news__head .c-title {
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .p-top-news__head .c-title {
    margin-bottom: 8px;
  }
}

.p-top-news__ornament {
  position: absolute;
  bottom: -10px;
  left: -4px;
  width: 179px;
}
@media screen and (max-width: 767px) {
  .p-top-news__ornament {
    top: -50px;
    left: 10px;
    width: 70px;
    bottom: auto;
  }
}

.p-top-news__news-list {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 74.2%;
          flex: 0 1 74.2%;
  max-width: 816px;
}
.p-top-news__news-list .p-news-list__item-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 65.32%;
          flex: 0 1 65.32%;
}
@media screen and (max-width: 767px) {
  .p-top-news__news-list .p-news-list__item-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

/*------------------------------------------------------------------------------
  p-page-mv
------------------------------------------------------------------------------*/
.p-page-mv {
  position: relative;
  margin-top: 128px;
}
@media screen and (max-width: 767px) {
  .p-page-mv {
    margin-top: 64px;
  }
}

.p-page-mv__bg {
  width: calc(100% - 120px);
  height: 350px;
  margin-left: auto;
}
@media screen and (max-width: 1280px) {
  .p-page-mv__bg {
    width: calc(100% - 60px);
    height: 330px;
  }
}
@media screen and (max-width: 1023px) {
  .p-page-mv__bg {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv__bg {
    width: calc(100% - 20px);
    height: 270px;
  }
}
.p-page-mv__bg img {
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 767px) {
  .p-page-mv__bg img {
    border-radius: 6px 0 0 6px;
  }
}

.p-page-mv__ornament {
  position: absolute;
  top: 134px;
  left: 28px;
  width: 161px;
}
@media screen and (max-width: 1280px) {
  .p-page-mv__ornament {
    top: 80px;
    left: 12px;
    width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv__ornament {
    top: 60px;
    left: 8px;
    width: 100px;
  }
}

.p-page-mv__inner {
  position: absolute;
  bottom: -12px;
  left: 120px;
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .p-page-mv__inner {
    left: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .p-page-mv__inner {
    left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv__inner {
    left: 20px;
  }
}

.p-page-mv__texts {
  background-color: #fff;
  display: inline-block;
  border-radius: 0 20px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 26px 36px 0 16px;
}
@media screen and (max-width: 767px) {
  .p-page-mv__texts {
    border-radius: 0 10px 0 0;
    padding: 20px 24px 0 4px;
  }
}

.p-page-mv__title {
  color: #375980;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
@media screen and (max-width: 1023px) {
  .p-page-mv__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv__title {
    font-size: 2.8rem;
    margin-bottom: 6px;
  }
}

/*------------------------------------------------------------------------------
  p-common-mv
------------------------------------------------------------------------------*/
.p-common-mv {
  background-image: url(../img/common-mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 210px 0 126px;
  margin-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-common-mv {
    padding: 140px 0 60px;
    margin-bottom: 32px;
  }
}

.p-common-mv__title {
  color: #375980;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .p-common-mv__title {
    font-size: 2.4rem;
    margin-bottom: 8px;
  }
}

.p-common-mv__bg {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
}

/*------------------------------------------------------------------------------
  p-property
------------------------------------------------------------------------------*/
.p-property__head {
  margin-bottom: 16px;
}

.p-property__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-property__filter {
    display: block;
    margin-bottom: 20px;
  }
}

.p-property__filter-text {
  color: #375980;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .p-property__filter-text {
    font-size: 1.5rem;
    margin: 0 0 6px;
  }
}

.p-property__filter-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -16px;
  margin-right: -12px;
}
@media screen and (max-width: 767px) {
  .p-property__filter-wrap {
    margin: -8px -10px 0 0;
  }
}
.p-property__filter-wrap .c-label {
  margin-top: 12px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-property__filter-wrap .c-label {
    margin-top: 10px;
  }
}
.p-property__filter-wrap .c-label:not(:last-child) {
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .p-property__filter-wrap .c-label:not(:last-child) {
    margin-right: 10px;
  }
}
.p-property__filter-wrap .c-label:hover, .p-property__filter-wrap .c-label.is--active {
  color: #fff;
  background-color: #375980;
  opacity: 1;
}
.p-property__filter-wrap .c-label.is--active {
  pointer-events: none;
}

.p-property__head-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.p-property__search-count {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-property__search-count {
    font-size: 1.3rem;
  }
}

.p-property__search-num {
  color: #375980;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Roboto", serif;
  margin: 0 1px;
}
@media screen and (max-width: 767px) {
  .p-property__search-num {
    font-size: 2.4rem;
  }
}

.p-property__sort {
  border: 1px solid #8C9BAC;
  border-radius: 2px;
  width: 100%;
  height: 35px;
  max-width: 150px;
  padding-left: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-property__sort {
    height: 32px;
    padding-left: 12px;
  }
}
.p-property__sort::after {
  content: "";
  position: absolute;
  top: 53%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/caret-blue-bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 11px;
  height: 8px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-property__sort::after {
    width: 10px;
    height: 7px;
  }
}
.p-property__sort select {
  color: #375980;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 33px;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-property__sort select {
    font-size: 1.3rem;
    line-height: 30px;
  }
}

/*------------------------------------------------------------------------------
  p-property-single
------------------------------------------------------------------------------*/
.p-property-single__category {
  font-weight: bold;
  padding: 7px 18px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-property-single__category {
    padding: 6px 16px;
    margin-bottom: 6px;
  }
}

.p-property-single__title {
  color: #375980;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 32px;
}
@media screen and (max-width: 1023px) {
  .p-property-single__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-property-single__title {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
}

.p-property-single__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .p-property-single__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-property-single__gallery {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 42%;
          flex: 0 1 42%;
}
@media screen and (max-width: 640px) {
  .p-property-single__gallery {
    display: contents;
  }
}

.p-property-single__main-img {
  width: 100%;
  border-radius: 4px;
}
.p-property-single__main-img img {
  aspect-ratio: 4/3;
  border-radius: 4px;
}

.p-property-single__img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2%;
}
.p-property-single__img-list img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 32%;
          flex: 0 1 32%;
  width: 32%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  aspect-ratio: 4/3;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  margin-top: 8px;
}
.p-property-single__img-list img:hover {
  opacity: 0.8;
}

.p-property-single__comment {
  background-color: #F3F7F9;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(30, 61, 96, 0.11);
          box-shadow: 0px 0px 12px 0px rgba(30, 61, 96, 0.11);
  padding-bottom: 28px;
  margin-top: 48px;
}
@media screen and (max-width: 1023px) {
  .p-property-single__comment {
    padding-bottom: 24px;
  }
}
@media screen and (max-width: 640px) {
  .p-property-single__comment {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-bottom: 20px;
    margin-top: 24px;
  }
}

.p-property-single__comment-heading {
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  background-color: #375980;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px;
  max-width: 212px;
  height: 40px;
  border-radius: 10px 0 10px 0;
}
@media screen and (max-width: 1023px) {
  .p-property-single__comment-heading {
    font-size: 1.6rem;
    max-width: 196px;
  }
}
@media screen and (max-width: 767px) {
  .p-property-single__comment-heading {
    font-size: 1.4rem;
    max-width: 182px;
    height: 36px;
  }
}

.p-property-single__comment-texts {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 24px 24px 0;
}
@media screen and (max-width: 1023px) {
  .p-property-single__comment-texts {
    font-size: 1.4rem;
    margin: 20px 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-property-single__comment-texts {
    font-size: 1.3rem;
    letter-spacing: 0;
    margin: 16px 12px 0;
  }
}

.p-property-single__detail-list {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 54.5%;
          flex: 0 1 54.5%;
  border: 1px solid #D1DCE9;
  width: 100%;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (max-width: 640px) {
  .p-property-single__detail-list {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-top: 24px;
  }
}

.p-property-single__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.p-property-single__detail:not(:last-child) {
  border-bottom: 1px solid #D1DCE9;
}

.p-property-single__detail-heading {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 136px;
          flex: 0 0 136px;
  font-weight: bold;
  background-color: #F3F7F9;
  text-align: center;
  padding: 13px 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-property-single__detail-heading {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 112px;
            flex: 0 0 112px;
  }
}
@media screen and (max-width: 767px) {
  .p-property-single__detail-heading {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 90px;
            flex: 0 0 90px;
    padding: 11px 6px;
  }
}

.p-property-single__detail-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 13px 12px;
}
@media screen and (max-width: 767px) {
  .p-property-single__detail-text {
    padding: 11px 12px;
  }
}

/*------------------------------------------------------------------------------
  p-business
------------------------------------------------------------------------------*/
.p-business {
  margin: 150px 0;
}
@media screen and (max-width: 767px) {
  .p-business {
    margin: 96px 0 72px;
  }
}

.p-business-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-business-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
}
.p-business-media:not(:first-child) {
  padding-top: 180px;
}
@media screen and (max-width: 767px) {
  .p-business-media:not(:first-child) {
    padding-top: 96px;
  }
}

.p-business-media__text-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 43.46%;
          flex: 0 1 43.46%;
  max-width: 524px;
  margin-right: 90px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-business-media__text-wrap {
    margin-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-business-media__text-wrap {
    display: contents;
    margin-right: 0;
  }
}

.p-business-media__number {
  position: absolute;
  top: -78px;
  left: 10px;
  color: #375980;
  font-size: 20rem;
  font-weight: normal;
  line-height: 1;
  font-family: "Roboto", serif;
  opacity: 0.05;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .p-business-media__number {
    top: -60px;
    font-size: 16rem;
  }
}
@media screen and (max-width: 767px) {
  .p-business-media__number {
    top: -42px;
    left: 2px;
    font-size: 11.2rem;
  }
}
.p-business-media__number.--01 {
  letter-spacing: -0.06em;
}
.p-business-media__number.--02 {
  letter-spacing: -0.03em;
}
@media screen and (max-width: 767px) {
  .p-business-media__number.--02 {
    top: 52px;
  }
}

.p-business-media__title {
  color: #375980;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 64px;
}
@media screen and (max-width: 1023px) {
  .p-business-media__title {
    font-size: 2.2rem;
    margin-bottom: 48px;
  }
}
@media screen and (max-width: 767px) {
  .p-business-media__title {
    font-size: 1.9rem;
    letter-spacing: 0.04em;
    width: 100%;
    margin-bottom: 32px;
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }
}

.p-business-media__texts {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 1023px) {
  .p-business-media__texts {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-business-media__texts {
    font-size: 1.3rem;
    text-align: justify;
    line-height: 1.8;
  }
}
.p-business-media__texts p:not(:last-of-type) {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-business-media__texts p:not(:last-of-type) {
    margin-bottom: 1em;
  }
}

.p-business-media__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 41.67%;
          flex: 0 1 41.67%;
  -ms-flex-item-align: start;
      align-self: flex-start;
  border-radius: 24px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-business-media__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    border-radius: 16px;
    margin-bottom: 28px;
  }
}
.p-business-media__img img {
  border-radius: 24px;
}
@media screen and (max-width: 767px) {
  .p-business-media__img img {
    border-radius: 16px;
  }
}
.p-business-media__img::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  background-image: url(../img/wave-bg3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-business-media__img::before {
    top: 10px;
    left: 10px;
    border-radius: 16px;
  }
}

/*------------------------------------------------------------------------------
  p-message
------------------------------------------------------------------------------*/
.p-message {
  margin: 130px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-message {
    margin: 60px 0;
  }
}

.p-message__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 130px 0 110px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-message__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 56px 0;
  }
}
.p-message__contents::before {
  content: "";
  position: absolute;
  top: 0;
  right: 238px;
  width: 100vw;
  height: 100%;
  background-color: #F3F7F9;
  border-radius: 0 20px 20px 0;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .p-message__contents::before {
    right: 19vw;
  }
}
@media screen and (max-width: 767px) {
  .p-message__contents::before {
    right: 28px;
    border-radius: 0 12px 12px 0;
  }
}

.p-message__text-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46.2%;
          flex: 0 1 46.2%;
}
@media screen and (max-width: 767px) {
  .p-message__text-wrap {
    display: contents;
  }
  .p-message__text-wrap .c-title {
    -webkit-box-ordinal-group: -2;
        -ms-flex-order: -3;
            order: -3;
  }
}

.p-message__lead {
  color: #375980;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.14em;
  margin: 24px 0;
}
@media screen and (max-width: 767px) {
  .p-message__lead {
    font-size: 1.7rem;
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
    margin: 16px 0 24px;
  }
}

.p-message__texts {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-message__texts {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
}
.p-message__texts p:not(:last-child) {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-message__texts p:not(:last-child) {
    margin-bottom: 1em;
  }
}

.p-message__position {
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-message__position {
    font-size: 1.3rem;
  }
}

.p-message__sign {
  width: 112px;
}
@media screen and (max-width: 767px) {
  .p-message__sign {
    width: 100px;
  }
}

.p-message__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 46.2%;
          flex: 0 1 46.2%;
  -ms-flex-item-align: start;
      align-self: flex-start;
  border-radius: 10px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-message__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: 0 0 20px;
  }
}
.p-message__img img {
  border-radius: 10px;
}

/*------------------------------------------------------------------------------
  p-overview
------------------------------------------------------------------------------*/
.p-overview {
  margin-bottom: 130px;
}
@media screen and (max-width: 767px) {
  .p-overview {
    margin-bottom: 60px;
  }
  .p-overview .c-title {
    padding-left: 20px;
  }
  .p-overview .c-inner {
    padding: 0;
  }
}

.p-overview__list {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-overview__list {
    margin-top: 24px;
  }
}

.p-overview__row {
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .p-overview__row {
    padding: 22px 0;
  }
}
.p-overview__row dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 266px;
          flex: 0 0 266px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 16px 0 32px;
}
@media screen and (max-width: 767px) {
  .p-overview__row dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 132px;
            flex: 0 0 132px;
    letter-spacing: 0.02em;
    padding: 0 8px 0 20px;
  }
}
.p-overview__row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 16px;
}
.p-overview__row dd.p-overview__map {
  width: 100%;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .p-overview__row dd.p-overview__map {
    padding-right: 20px;
  }
}
.p-overview__row dd.p-overview__map iframe {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 435px;
}
@media screen and (max-width: 767px) {
  .p-overview__row dd.p-overview__map iframe {
    height: 280px;
  }
}
.p-overview__row:nth-child(odd) {
  background-color: #F3F7F9;
}

.p-overview__row--map {
  display: block;
}
.p-overview__row--map .p-overview__map {
  margin-top: 12px;
  padding-left: 20px;
}

/*------------------------------------------------------------------------------
  p-contact
------------------------------------------------------------------------------*/
.p-contact {
  margin: 80px 0 50px;
}
@media screen and (max-width: 767px) {
  .p-contact {
    margin: 56px 0 40px;
  }
}

.p-contact__lead {
  color: #375980;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 56px;
}
@media screen and (max-width: 1023px) {
  .p-contact__lead {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.75;
    margin-bottom: 32px;
  }
}

.p-contact__form-box {
  background-color: #F3F7F9;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 72px 16px;
}
@media screen and (max-width: 767px) {
  .p-contact__form-box {
    padding: 48px 16px;
  }
}

.p-contact-form {
  max-width: 890px;
  margin: 0 auto;
}

.p-contact__form-title {
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .p-contact__form-title {
    margin-bottom: 32px;
  }
}
.p-contact__form-title .c-title__ja {
  font-size: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form-title .c-title__ja {
    font-size: 2.2rem;
  }
}

.p-contact-form__list {
  margin-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__list {
    margin-bottom: 32px;
  }
}

.p-contact-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item {
    display: block;
  }
}
.p-contact-form__item:not(:last-child) {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item:not(:last-child) {
    margin-bottom: 2.8rem;
  }
}

.p-contact-form__item-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
  color: #375980;
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 8px;
}
@media screen and (max-width: 1023px) {
  .p-contact-form__item-title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form__item-title {
    margin: 0 0 1.2rem;
  }
}
.p-contact-form__item-title.u-mt-0 {
  margin-top: -1px !important;
}

.p-contact-form__required {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
  font-weight: bold;
  background-color: #375980;
  text-align: center;
  display: inline-block;
  border-radius: 2px;
  padding: 0.7rem 1rem;
  margin-right: 16px;
}
@media screen and (max-width: 1023px) {
  .p-contact-form__required {
    font-size: 1.2rem;
    margin-right: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form__required {
    padding: 0.6rem 1rem;
  }
}
.p-contact-form__required.--any {
  background-color: #aaa;
}

.p-contact-form__input-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.p-contact-form__input-wrap input[type=text],
.p-contact-form__input-wrap input[type=email],
.p-contact-form__input-wrap input[type=tel],
.p-contact-form__input-wrap select,
.p-contact-form__input-wrap textarea {
  color: #333;
  font-size: 1.6rem !important;
  width: 100%;
  padding: 11.5px 12px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 1px;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=email]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-webkit-input-placeholder, .p-contact-form__input-wrap select::-webkit-input-placeholder, .p-contact-form__input-wrap textarea::-webkit-input-placeholder {
  color: #A3A3A3;
  font-size: 1.5rem;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-moz-placeholder, .p-contact-form__input-wrap input[type=email]::-moz-placeholder, .p-contact-form__input-wrap input[type=tel]::-moz-placeholder, .p-contact-form__input-wrap select::-moz-placeholder, .p-contact-form__input-wrap textarea::-moz-placeholder {
  color: #A3A3A3;
  font-size: 1.5rem;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]:-ms-input-placeholder, .p-contact-form__input-wrap select:-ms-input-placeholder, .p-contact-form__input-wrap textarea:-ms-input-placeholder {
  color: #A3A3A3;
  font-size: 1.5rem;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-ms-input-placeholder, .p-contact-form__input-wrap select::-ms-input-placeholder, .p-contact-form__input-wrap textarea::-ms-input-placeholder {
  color: #A3A3A3;
  font-size: 1.5rem;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::placeholder,
.p-contact-form__input-wrap input[type=email]::placeholder,
.p-contact-form__input-wrap input[type=tel]::placeholder,
.p-contact-form__input-wrap select::placeholder,
.p-contact-form__input-wrap textarea::placeholder {
  color: #A3A3A3;
  font-size: 1.5rem;
  font-weight: normal;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-wrap input[type=text]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=email]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-webkit-input-placeholder, .p-contact-form__input-wrap select::-webkit-input-placeholder, .p-contact-form__input-wrap textarea::-webkit-input-placeholder {
    font-size: 1.3rem;
  }
  .p-contact-form__input-wrap input[type=text]::-moz-placeholder, .p-contact-form__input-wrap input[type=email]::-moz-placeholder, .p-contact-form__input-wrap input[type=tel]::-moz-placeholder, .p-contact-form__input-wrap select::-moz-placeholder, .p-contact-form__input-wrap textarea::-moz-placeholder {
    font-size: 1.3rem;
  }
  .p-contact-form__input-wrap input[type=text]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]:-ms-input-placeholder, .p-contact-form__input-wrap select:-ms-input-placeholder, .p-contact-form__input-wrap textarea:-ms-input-placeholder {
    font-size: 1.3rem;
  }
  .p-contact-form__input-wrap input[type=text]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-ms-input-placeholder, .p-contact-form__input-wrap select::-ms-input-placeholder, .p-contact-form__input-wrap textarea::-ms-input-placeholder {
    font-size: 1.3rem;
  }
  .p-contact-form__input-wrap input[type=text]::placeholder,
  .p-contact-form__input-wrap input[type=email]::placeholder,
  .p-contact-form__input-wrap input[type=tel]::placeholder,
  .p-contact-form__input-wrap select::placeholder,
  .p-contact-form__input-wrap textarea::placeholder {
    font-size: 1.3rem;
  }
}
.p-contact-form__input-wrap textarea {
  resize: none;
  min-height: 200px;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-wrap textarea {
    min-height: 170px;
  }
}
.p-contact-form__input-wrap input[type=radio],
.p-contact-form__input-wrap input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #375980;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: -4.5px;
  background-color: transparent;
  -webkit-box-shadow: 0 0 0 -2px #fff;
          box-shadow: 0 0 0 -2px #fff;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
}
.p-contact-form__input-wrap input[type=radio]:checked,
.p-contact-form__input-wrap input[type=checkbox]:checked {
  border: 2px solid #F3F7F9;
  -webkit-box-shadow: 0 0 0 1px #375980;
          box-shadow: 0 0 0 1px #375980;
  background-color: #375980;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-contact-form__radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap {
    display: block;
  }
}
.p-contact-form__radio-wrap label {
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap label {
    display: block;
  }
  .p-contact-form__radio-wrap label:not(:first-child) {
    margin-top: 12px;
  }
}
.p-contact-form__radio-wrap label:not(:last-child) {
  margin-right: 40px;
}

.p-contact-form__btn {
  height: 6.2rem;
  width: 100%;
  max-width: 26rem;
  margin: 0 auto;
  display: block;
  border-radius: 1px;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-contact-form__btn {
    max-width: 24rem;
    height: 5.6rem;
  }
}
.p-contact-form__btn::before {
  content: none;
}
.p-contact-form__btn input[type=submit] {
  color: #fff;
  font-size: 1.9rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  width: 100%;
  height: 100%;
  border-radius: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  display: block;
  margin: 0 auto;
}
.p-contact-form__btn input[type=submit]:hover {
  opacity: 0.75;
}
@media screen and (max-width: 767px) {
  .p-contact-form__btn input[type=submit] {
    font-size: 1.6rem;
  }
}

.p-contact-form .wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-contact-form .wpcf7-form-control.wpcf7-radio {
    display: block;
  }
}
.p-contact-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  font-weight: bold;
  display: inline-block;
}
.p-contact-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:not(:last-child) {
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .p-contact-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:not(:last-child) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    display: block;
  }
  .p-contact-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:not(:first-child) {
    margin-top: 1.2rem;
  }
}
.p-contact-form .wpcf7-list-item {
  margin-left: 0;
}

/*------------------------------------------------------------------------------
  p-card
------------------------------------------------------------------------------*/
.p-card__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4.04%;
}
@media screen and (max-width: 767px) {
  .p-card__wrap {
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 47.98%;
          flex: 0 1 47.98%;
  width: 100%;
  max-width: 380px;
}
.p-card:nth-child(n+3) {
  margin-top: 32px;
}

.p-card__link {
  display: block;
  width: 100%;
  height: 100%;
}
.p-card__link:hover .p-card__img img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
}
@media screen and (max-width: 767px) {
  .p-card__link:hover .p-card__img img {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.p-card__img {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-card__img {
    margin-bottom: 4px;
  }
}
.p-card__img img {
  aspect-ratio: 4/3;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border-radius: 4px;
}

.p-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .p-card__head {
    margin-bottom: 8px;
  }
}
.p-card__head .c-label {
  margin-right: 12px;
}
@media screen and (max-width: 1023px) {
  .p-card__head .c-label {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-card__head .c-label {
    font-size: 1.1rem;
    letter-spacing: 0;
    padding: 4px 10px;
    margin-top: 6px;
    margin-right: 8px;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.p-card__price {
  color: #DD5C2A;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .p-card__price {
    font-size: 1.6rem;
    line-height: 1.65;
  }
}
@media screen and (max-width: 767px) {
  .p-card__price {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-top: 5px;
  }
}

.p-card__texts {
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-card__texts {
    font-size: 1.2rem;
  }
}
.p-card__texts li:not(:last-child) {
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .p-card__texts li:not(:last-child) {
    margin-bottom: 0;
  }
}

.p-card__wrap--3column {
  gap: 2%;
}
.p-card__wrap--3column .p-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 32%;
          flex: 0 1 32%;
}
@media screen and (max-width: 767px) {
  .p-card__wrap--3column .p-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47.98%;
            flex: 0 1 47.98%;
  }
}
.p-card__wrap--3column .p-card:nth-child(3) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-card__wrap--3column .p-card:nth-child(3) {
    margin-top: 4%;
  }
}
.p-card__wrap--3column .p-card:nth-child(n+4) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-card__wrap--3column .p-card:nth-child(n+4) {
    margin-top: 4%;
  }
}
.p-card__wrap--3column .c-label {
  font-size: 1.4rem;
}
@media screen and (max-width: 1023px) {
  .p-card__wrap--3column .c-label {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-card__wrap--3column .c-label {
    font-size: 1.1rem;
    letter-spacing: 0;
    padding: 4px 10px;
  }
}
.p-card__wrap--3column .p-card__price {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-card__wrap--3column .p-card__price {
    font-size: 1.4rem;
  }
}
.p-card__wrap--3column .p-card__texts {
  font-size: 1.4rem;
}
@media screen and (max-width: 1023px) {
  .p-card__wrap--3column .p-card__texts {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-card__wrap--3column .p-card__texts {
    font-size: 1.2rem;
  }
}

/*------------------------------------------------------------------------------
  p-news-list
------------------------------------------------------------------------------*/
.p-news-list__item {
  border-bottom: 1px solid #D1DCE9;
}
.p-news-list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 28px 8px;
}
@media screen and (max-width: 767px) {
  .p-news-list__item a {
    padding: 20px 4px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.p-news-list__item-date {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 120px;
          flex: 0 1 120px;
  color: #375980;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: normal;
  font-family: "Roboto", serif;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 8px;
}
@media screen and (max-width: 767px) {
  .p-news-list__item-date {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 102px;
            flex: 0 1 102px;
    font-size: 1.3rem;
  }
}

.p-news-list__item-category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.3rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-news-list__item-category {
    font-size: 1.2rem;
  }
}

.p-news-list__item-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 71.6%;
          flex: 0 1 71.6%;
  font-weight: 500;
  line-height: 1.5;
  width: 100%;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 36px 0 16px;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news-list__item-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    width: 100%;
    padding: 0 26px 0 0;
    margin-left: 0;
    margin-top: 8px;
  }
}
.p-news-list__item-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/caret-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .p-news-list__item-title::after {
    height: 15px;
  }
}
.p-news-list__item-title:hover {
  text-decoration: underline;
}

/*------------------------------------------------------------------------------
  p-news-single
------------------------------------------------------------------------------*/
.p-news-single__head {
  border-bottom: 1px solid #D1DCE9;
  padding-bottom: 2.8rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__head {
    padding-bottom: 1.8rem;
    margin-bottom: 2.4rem;
  }
}

.p-news-single__date {
  color: #375980;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: "Roboto", serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin-right: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__date {
    font-size: 1.3rem;
    margin-right: 1.2rem;
  }
}

.p-news-single__category {
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.5;
  display: inline-block;
  vertical-align: 0;
}
@media screen and (max-width: 767px) {
  .p-news-single__category {
    font-size: 1.22rem;
  }
}

.p-news-single__title {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 1.2rem;
}
@media screen and (max-width: 1023px) {
  .p-news-single__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-news-single__title {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-top: 0.8rem;
  }
}

.p-news-single__contents {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-news-single__contents {
    margin-bottom: 3.2rem;
  }
}
.p-news-single__contents h2 {
  color: #375980;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-left: 3px solid #375980;
  padding-left: 1.8rem;
  margin: 1em 0;
}
@media screen and (max-width: 767px) {
  .p-news-single__contents h2 {
    font-size: 1.8rem;
    line-height: 1.5;
    border-width: 2.5px;
    padding-left: 1.2rem;
  }
}
.p-news-single__contents h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 1em 0;
}
@media screen and (max-width: 767px) {
  .p-news-single__contents h3 {
    font-size: 1.5rem;
  }
}
.p-news-single__contents h4,
.p-news-single__contents h5,
.p-news-single__contents a,
.p-news-single__contents p,
.p-news-single__contents .wp-block-table,
.p-news-single__contents .wp-block-image,
.p-news-single__contents .wp-block-media-text {
  margin: 1em 0;
}
.p-news-single__contents a {
  color: #375980;
  text-decoration: underline;
}

.p-news-single__btn {
  margin: 56px auto 0;
}
@media screen and (max-width: 767px) {
  .p-news-single__btn {
    margin-top: 4rem;
  }
}

/*------------------------------------------------------------------------------
  u-color
------------------------------------------------------------------------------*/
.u-primary-color {
  color: #375980;
}

/*------------------------------------------------------------------------------
  u-fz
------------------------------------------------------------------------------*/
.u-fz16 {
  font-size: 1.6rem;
}

.u-fz15 {
  font-size: 1.5rem;
}

.u-fz14 {
  font-size: 1.4rem;
}

.u-fz13 {
  font-size: 1.3rem;
}

.u-fz12 {
  font-size: 1.2rem;
}

/*------------------------------------------------------------------------------
  u-fw
------------------------------------------------------------------------------*/
.u-fw-bold {
  font-weight: bold;
}

.u-fw-medium {
  font-weight: 500;
}

.u-fw-normal {
  font-weight: 400;
}

/*------------------------------------------------------------------------------
  u-text-align
------------------------------------------------------------------------------*/
.u-text-align-left {
  text-align: left !important;
}

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

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

/*------------------------------------------------------------------------------
  margin
------------------------------------------------------------------------------*/
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-space-2 {
  margin-top: 2px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-space-4 {
  margin-top: 4px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-1 {
  margin-top: 8px !important;
}

.u-mt-2 {
  margin-top: 16px !important;
}

.u-mt-3 {
  margin-top: 24px !important;
}

.u-mt-4 {
  margin-top: 32px !important;
}

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

.u-mt-6 {
  margin-top: 48px !important;
}

.u-mt-7 {
  margin-top: 56px !important;
}

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

.u-mb-05 {
  margin-bottom: 4px !important;
}

.u-mb-1 {
  margin-bottom: 8px !important;
}

.u-mb-2 {
  margin-bottom: 16px !important;
}

.u-mb-3 {
  margin-bottom: 24px !important;
}

.u-mb-4 {
  margin-bottom: 32px !important;
}

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

.u-mb-6 {
  margin-bottom: 48px !important;
}

.u-mb-7 {
  margin-bottom: 56px !important;
}

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

.u-my-1 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.u-my-2 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.u-my-3 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.u-my-4 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.u-my-5 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.u-my-6 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.u-my-7 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

.u-ml-1 {
  margin-left: 8px !important;
}

.u-ml-2 {
  margin-left: 16px !important;
}

.u-ml-05 {
  margin-left: 4px !important;
}

.u-mr-1 {
  margin-right: 8px !important;
}

.u-mr-2 {
  margin-right: 16px !important;
}

.u-mr-3 {
  margin-right: 24px !important;
}

.u-mr-4 {
  margin-right: 32px !important;
}

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

.u-m-space-4 {
  margin: 4px !important;
}

.u-m-1 {
  margin: 8px !important;
}

.u-m-2 {
  margin: 16px !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

/*------------------------------------------------------------------------------
  padding
------------------------------------------------------------------------------*/
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-1 {
  padding-top: 8px !important;
}

.u-pt-2 {
  padding-top: 16px !important;
}

.u-pt-3 {
  padding-top: 24px !important;
}

.u-pt-4 {
  padding-top: 32px !important;
}

.u-pt-5 {
  padding-top: 40px !important;
}

.u-pt-6 {
  padding-top: 48px !important;
}

.u-pt-7 {
  padding-top: 56px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-1 {
  padding-bottom: 8px !important;
}

.u-pb-2 {
  padding-bottom: 16px !important;
}

.u-pb-3 {
  padding-bottom: 24px !important;
}

.u-pb-4 {
  padding-bottom: 32px !important;
}

.u-pb-5 {
  padding-bottom: 40px !important;
}

.u-pb-6 {
  padding-bottom: 48px !important;
}

.u-pb-7 {
  padding-bottom: 56px !important;
}

.u-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-py-1 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-py-2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-py-3 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-py-4 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.u-py-5 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u-py-6 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.u-py-7 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.u-pl-1 {
  padding-left: 8px !important;
}

.u-pl-2 {
  padding-left: 16px !important;
}

.u-pr-1 {
  padding-right: 8px !important;
}

.u-pr-2 {
  padding-right: 16px !important;
}

.u-p-1 {
  padding: 8px !important;
}

.u-p-2 {
  padding: 16px !important;
}

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

.u-justify-content-star {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
}

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

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

.u-justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.u-align-items-flex-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

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

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

.u-align-self-start {
  -ms-flex-item-align: start !important;
      -ms-grid-row-align: start !important;
      align-self: start !important;
}

.u-align-self-end {
  -ms-flex-item-align: end !important;
      -ms-grid-row-align: end !important;
      align-self: end !important;
}

.u-align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.u-align-self-strech {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.u-flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.u-flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/*# sourceMappingURL=style.css.map */