@charset "UTF-8";
/* CSS Document */
/* Body Html Fonts
------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Baskervville&display=swap");
:root {
  interpolate-size: allow-keywords;
}

html {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  background-color: #FFF;
}
@media screen and (max-width: 700px) {
  html {
    font-size: 15px;
  }
}

body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: relative;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1A2229;
  line-height: 2;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.06em;
}
body.fixed {
  position: fixed;
}
body a {
  color: #2a90cd;
  text-decoration: none;
  transition: color 0.3s ease;
}
body a:hover {
  text-decoration: underline;
}
body a img {
  transition: opacity 0.3s ease;
  backface-visibility: hidden;
}
body a img:hover {
  opacity: 0.7;
}
body img, body picture {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
body iframe {
  vertical-align: top;
}
body .wrap {
  width: 1216px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
body ::selection {
  background: rgba(42, 144, 205, 0.2); /* Safari */
}
body ::-moz-selection {
  background: rgba(42, 144, 205, 0.2); /* Firefox */
}

/* header
------------------------------------------------------------*/
header {
  position: relative;
  height: 140px;
  width: 100%;
  padding: 10px 44px 18px 56px;
  z-index: 10;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  box-sizing: border-box;
}
header .head-logo {
  margin-right: auto;
  padding-bottom: 12px;
}
header .head-logo a {
  display: block;
  position: relative;
}
header .head-logo a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/logo-white@2x.png) no-repeat center/contain;
  opacity: 0;
  visibility: hidden;
}
header .head-nav {
  width: 10px;
  -ms-flex: 1 0 auto;
  flex-grow: 1;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
header .head-nav .item-top {
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 16px;
}
header .head-nav .item-top li {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.2;
}
header .head-nav .item-top li:not(:last-child) {
  padding-right: 12px;
  margin-right: 12px;
  border-right: 1px solid #DEE1E3;
}
header .head-nav .item-top li a {
  color: #1A2229;
}
header .head-nav .item-list {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}
header .head-nav .item-list li {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
}
header .head-nav .item-list li:not(:last-child) {
  margin-right: 24px;
}
header .head-nav .item-list li a {
  color: #07375D;
}
header .head-nav .item-btns {
  display: flex;
  margin-left: 32px;
}
header .head-nav .item-btns .btn:not(:last-child) {
  margin-right: 10px;
}
header .head-nav .item-btn {
  margin-left: 40px;
  background-color: #07375D;
  color: #FFF;
}
header .head-nav .item-btn:hover {
  background-color: #FFF;
  color: #07375D;
}
header .head-menu, header .head-hidden {
  display: none;
}
header.top {
  position: absolute;
  top: 0;
  left: 0;
}
header.top .head-logo a img {
  opacity: 0;
  visibility: hidden;
}
header.top .head-logo a:after {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 1001px) {
  header.top .head-nav .item-top li:not(:last-child) {
    border-right-color: rgba(255, 255, 255, 0.6);
  }
  header.top .head-nav .item-top li a {
    color: #FFF;
  }
  header.top .head-nav .item-list li a {
    color: #FFF;
  }
  header.top .head-nav .item-btn {
    background-color: #FFF;
    color: #07375D;
    border-color: transparent;
  }
  header.top .head-nav .item-btn:hover {
    background-color: #07375D;
    color: #FFF;
  }
}
@media screen and (max-width: 1300px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }
  header .head-nav .item-list li {
    font-size: 16px;
    font-size: 1rem;
  }
  header .head-nav .item-list li:not(:last-child) {
    margin-right: 18px;
  }
  header .head-nav .item-btns {
    margin-left: 25px;
  }
  header .head-nav .item-btn {
    margin-left: 30px;
    width: 180px;
  }
}
@media screen and (max-width: 1000px) {
  header {
    padding: 0 20px;
    height: 60px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header .head-logo {
    padding-bottom: 0;
    width: 240px;
    line-height: 0;
  }
  header .head-nav {
    display: none;
  }
  header .head-menu {
    margin-left: auto;
    position: fixed;
    top: 5px;
    right: 10px;
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    width: 50px;
    text-align: center;
    box-sizing: border-box;
    z-index: 5;
    cursor: pointer;
    overflow: hidden;
    background-color: #07375D;
    border-radius: 50%;
  }
  header .head-menu span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 0 auto;
    background-color: #FFF;
    transition: all 0.3s ease;
  }
  header .head-menu span:last-child {
    margin-bottom: 0;
  }
  header .head-menu span.top {
    transform: translateY(-7px);
  }
  header .head-menu span.middle {
    margin-top: -2px;
    left: 0;
    position: relative;
  }
  header .head-menu span.bottom {
    margin-top: -2px;
    transform: translateY(7px);
  }
  header .head-hidden {
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    width: 200px;
    height: 100%;
    right: 0;
    transform: translateX(100%);
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-wrap: wrap;
    background: #FFF;
    z-index: 2;
    padding-top: 60px;
    pointer-events: none;
    box-sizing: border-box;
  }
  header .head-hidden nav {
    display: flex;
    -webkit-box-orient: vertical;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  header .head-hidden nav .item-list {
    display: block;
    width: 100%;
    margin-left: 0;
    border-bottom: 1px solid #ECEEEF;
  }
  header .head-hidden nav .item-list li {
    margin-right: 0;
    border-top: 1px solid #ECEEEF;
    padding: 10px 15px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
  header .head-hidden nav .item-list li:not(:last-child) {
    margin-right: 0;
  }
  header .head-hidden nav .item-list li a {
    color: #1A2229;
  }
  header .head-hidden nav .item-btns {
    margin-left: 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  header .head-hidden nav .item-btns .btn {
    width: 100%;
    border-radius: 0;
    margin-top: -1px;
  }
  header .head-hidden nav .item-btns .btn:not(:last-child) {
    margin-right: 0;
  }
  header .head-hidden nav .item-btn {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 0;
    background-color: #07375D;
    color: #FFF;
    border: none;
  }
  header .head-hidden nav .item-top {
    -webkit-box-original-group: 3;
    -ms-flex-order: 3;
    order: 3;
    -webkit-box-orient: vertical;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  header .head-hidden nav .item-top li:not(:last-child) {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
  header .head-hidden nav .item-top li a {
    color: #1A2229;
  }
  header.active .head-menu .middle {
    opacity: 0;
    left: 20px;
  }
  header.active .head-menu .top {
    transform: rotate(-45deg);
    transform-origin: center center;
  }
  header.active .head-menu .bottom {
    transform: rotate(45deg);
    transform-origin: center center;
  }
  header.active .head-hidden {
    transform: translateX(0);
    pointer-events: auto;
    box-shadow: -3px 0 4px 0 rgba(26, 34, 41, 0.2);
  }
}
@media screen and (max-width: 700px) {
  header .head-logo {
    width: 180px;
  }
}

/* footer
------------------------------------------------------------*/
footer .foot-main {
  background: #07375D;
  color: #FFF;
  padding: 120px 50px 90px;
}
footer .foot-main a {
  color: #FFF;
}
footer .foot-main .item-inside {
  width: 1216px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
footer .foot-main .item-logo {
  text-align: center;
  margin-bottom: 80px;
}
footer .foot-main .item-nav {
  display: flex;
  margin-right: -32px;
  margin-bottom: -32px;
}
footer .foot-main .item-nav:not(:last-child) {
  margin-bottom: 14px;
}
footer .foot-main .item-nav dl {
  margin-right: 32px;
  margin-bottom: 32px;
  width: calc(25% - 32px);
}
footer .foot-main .item-nav dl dt:not(:first-child) {
  margin-top: 48px;
}
footer .foot-main .item-nav dl dt a {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  padding: 0 15px 15px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.1;
}
footer .foot-main .item-nav dl dt a:after {
  content: "";
  width: 11px;
  height: 10px;
  background: no-repeat center/auto;
  background-image: url(../img/common/arrow-white.svg);
  margin-left: auto;
  transition: all 0.3s ease;
}
footer .foot-main .item-nav dl dt a:hover {
  text-decoration: none;
  border-bottom-color: #FFF;
}
footer .foot-main .item-nav dl dt a:hover:after {
  transform: translateX(5px);
}
footer .foot-main .item-nav dl dd {
  padding: 24px 16px 0;
}
footer .foot-main .item-nav dl dd ul li {
  line-height: 1.4;
}
footer .foot-main .item-nav dl dd ul li:not(:last-child) {
  margin-bottom: 15px;
}
footer .foot-main .item-nav dl dd ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
footer .foot-main .item-nav dl dd ul li a:hover {
  text-decoration: none;
  color: #FFF;
  font-weight: bold;
}
footer .foot-main .item-sub {
  display: flex;
}
footer .foot-main .item-sub li {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
}
footer .foot-main .item-sub li:not(:last-child):after {
  content: "|";
  margin-left: 10px;
  margin-right: 10px;
}
footer .foot-main .item-sub li a {
  color: #FFF;
}
footer .foot-bottom {
  padding: 25px 50px;
}
footer .foot-bottom .item-inside {
  width: 1216px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .foot-bottom .item-copy {
  width: 10px;
  -ms-flex: 1 0 auto;
  flex-grow: 1;
  margin-left: 30%;
  text-align: center;
  color: #ABB7C1;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  display: block;
}
footer .foot-bottom .item-sns {
  width: 30%;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
footer .foot-bottom .item-sns li {
  margin-left: 15px;
}
@media screen and (min-width: 701px) and (max-width: 1216px) {
  footer .foot-main {
    padding-left: 40px;
    padding-right: 40px;
  }
  footer .foot-main .item-nav {
    flex-wrap: wrap;
    margin-right: -25px;
    margin-bottom: -40px;
  }
  footer .foot-main .item-nav dl {
    margin-right: 25px;
    margin-bottom: 40px;
    width: calc(25% - 25px);
  }
}
@media screen and (min-width: 701px) and (max-width: 1216px) and (max-width: 1000px) {
  footer .foot-main .item-nav dl {
    width: calc(50% - 25px);
  }
}
@media screen and (min-width: 701px) and (max-width: 1216px) {
  footer .foot-bottom {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 700px) {
  footer .foot-main {
    padding: 40px 20px 30px;
  }
  footer .foot-main .item-logo {
    margin-bottom: 20px;
  }
  footer .foot-main .item-logo img {
    width: 200px;
  }
  footer .foot-main .item-nav {
    flex-wrap: wrap;
    margin-right: -15px;
    margin-bottom: -20px;
  }
  footer .foot-main .item-nav:not(:last-child) {
    margin-bottom: 0;
  }
  footer .foot-main .item-nav dl {
    margin-right: 15px;
    margin-bottom: 20px;
    width: calc(50% - 15px);
  }
  footer .foot-main .item-nav dl dt:not(:first-child) {
    margin-top: 20px;
  }
  footer .foot-main .item-nav dl dt a {
    padding: 0 10px 10px;
    font-size: 15px;
    font-size: 0.9375rem;
    font-size: min(3.4vw, 15 + px);
    font-size: min(3.4vw, 0.9375rem);
  }
  footer .foot-main .item-nav dl dd {
    padding: 15px 10px 0;
  }
  footer .foot-main .item-nav dl dd ul li:not(:last-child) {
    margin-bottom: 8px;
  }
  footer .foot-main .item-nav dl dd ul li a {
    font-size: min(3vw, 13 + px);
    font-size: min(3vw, 0.8125rem);
  }
  footer .foot-main .item-sub {
    flex-wrap: wrap;
  }
  footer .foot-main .item-sub li {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  footer .foot-bottom {
    padding: 15px 20px;
  }
  footer .foot-bottom .item-inside {
    flex-direction: column-reverse;
  }
  footer .foot-bottom .item-copy {
    width: 100%;
    margin-left: 0%;
    margin-top: 8px;
    font-size: 11px;
    font-size: 0.6875rem;
  }
  footer .foot-bottom .item-sns {
    width: auto;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: -15px;
  }
  footer .foot-bottom .item-sns li {
    margin-left: 15px;
  }
}

/* mainimg
------------------------------------------------------------*/
#mainimg.top {
  position: relative;
}
#mainimg.top .item-box {
  position: relative;
  height: 720px;
  max-height: 100vh;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 80px;
  box-sizing: border-box;
}
#mainimg.top .item-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#mainimg.top .item-bg span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 110%;
}
#mainimg.top .item-bg span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#mainimg.top .item-inside {
  width: 1216px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  color: #FFF;
  z-index: 2;
}
#mainimg.top .item-hd {
  margin-bottom: 16px;
}
#mainimg.top .item-hd span {
  display: block;
}
#mainimg.top .item-hd span:nth-child(1) {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 120px;
  font-size: 7.5rem;
  line-height: 1;
  margin-bottom: 40px;
}
#mainimg.top .item-hd span:nth-child(2) {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
}
#mainimg.top .item-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
#mainimg.top .item-news {
  position: absolute;
  width: 840px;
  height: auto;
  right: 40px;
  bottom: 0;
  transform: translateY(60%);
  display: flex;
  max-width: 80%;
  z-index: 2;
}
#mainimg.top .item-news ul {
  width: 100%;
  background: #FFF;
  box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  padding: 20px 40px;
}
#mainimg.top .item-news ul li:not(:last-child) {
  border-bottom: 1px dotted #ECEEEF;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
#mainimg.top .item-news a {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #1A2229;
  transition: all 0s ease;
}
#mainimg.top .item-news a time {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #ABB7C1;
  margin-right: 12px;
}
#mainimg.top .item-news a p {
  width: 10px;
  -ms-flex: 1 0 auto;
  flex-grow: 1;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}
#mainimg.top .item-news a:after {
  content: "";
  width: 11px;
  height: 10px;
  background: no-repeat center/auto;
  background-image: url(../img/common/arrow-navy.svg);
  margin-left: 10px;
  margin-right: -8px;
  transition: all 0.3s ease;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
}
#mainimg.top .item-news a:hover {
  text-decoration: none;
}
#mainimg.top .item-news a:hover:after {
  transform: translateX(5px);
}
@media screen and (min-width: 701px) and (max-width: 1216px) {
  #mainimg.top .item-box {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 50px;
    height: 600px;
  }
  #mainimg.top .item-hd span {
    display: block;
  }
  #mainimg.top .item-hd span:nth-child(1) {
    font-size: min(9vw, 100 + px);
    font-size: min(9vw, 6.25rem);
    margin-bottom: 25px;
  }
  #mainimg.top .item-hd span:nth-child(2) {
    font-size: min(2.6vw, 26 + px);
    font-size: min(2.6vw, 1.625rem);
  }
  #mainimg.top .item-text {
    font-size: 16px;
    font-size: 1rem;
    font-weight: bold;
  }
  #mainimg.top .item-news {
    margin-right: 20px;
    margin-left: auto;
    margin-top: -40px;
    margin-bottom: -80px;
    right: 0;
    transform: translateY(0%);
    position: relative;
  }
  #mainimg.top .item-news ul {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 700px) {
  #mainimg.top .item-box {
    padding: 0 20px 50px;
    height: 450px;
  }
  #mainimg.top .item-hd {
    margin-bottom: 8px;
  }
  #mainimg.top .item-hd span:nth-child(1) {
    font-size: min(10vw, 80 + px);
    font-size: min(10vw, 5rem);
    margin-bottom: 20px;
  }
  #mainimg.top .item-hd span:nth-child(2) {
    font-size: min(4vw, 20 + px);
    font-size: min(4vw, 1.25rem);
  }
  #mainimg.top .item-text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  #mainimg.top .item-news {
    margin-left: auto;
    margin-right: 20px;
    margin-top: -20px;
    margin-bottom: -40px;
    right: 0;
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
    transform: translateY(0%);
    position: relative;
  }
  #mainimg.top .item-news ul {
    padding: 10px 20px;
  }
  #mainimg.top .item-news a time {
    font-size: 11px;
    font-size: 0.6875rem;
  }
  #mainimg.top .item-news a p {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
#mainimg.next {
  background: linear-gradient(87.12deg, #FBFDFF 0%, #F8F9FA 25.62%, #F2F6F9 100%);
  padding: 30px 50px;
  height: 280px;
  box-sizing: border-box;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
}
#mainimg.next:not(:has(.item-title)) {
  height: auto;
}
#mainimg.next:not(:has(.item-title)) .item-bread ul {
  text-align: left;
}
#mainimg.next .item-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#mainimg.next .item-bg img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: 70% center;
}
#mainimg.next .item-bg ~ .item-inside .item-title {
  color: #FFF;
}
#mainimg.next .item-bg ~ .item-inside .item-title span {
  color: #FFF;
}
#mainimg.next .item-bg ~ .item-inside .item-bread a, #mainimg.next .item-bg ~ .item-inside .item-bread strong {
  color: #FFF;
}
#mainimg.next .item-bg ~ .item-inside .item-bread li {
  color: #FFF;
}
#mainimg.next .item-bg ~ .item-inside .item-bread li:not(:last-child):after {
  background-color: #FFF;
}
#mainimg.next .item-inside {
  width: 1216px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#mainimg.next .item-title {
  color: #07375D;
  line-height: 1;
}
#mainimg.next .item-title span {
  display: block;
}
#mainimg.next .item-title span:nth-child(1) {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 80px;
  font-size: 5rem;
  font-weight: normal;
  margin-bottom: 30px;
}
#mainimg.next .item-title span:nth-child(2) {
  color: #ABB7C1;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
#mainimg.next .item-bread ul {
  text-align: right;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}
#mainimg.next .item-bread ul li {
  display: inline;
  color: #07375D;
}
#mainimg.next .item-bread ul li a {
  color: #07375D;
}
#mainimg.next .item-bread ul li:nth-child(1) a {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  color: rgba(7, 55, 93, 0.5);
}
#mainimg.next .item-bread ul li:not(:last-child):after {
  content: "";
  width: 20px;
  height: 1px;
  background: #07375D;
  display: -moz-inline-box;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  margin-right: 10px;
}
@media screen and (min-width: 701px) and (max-width: 1216px) {
  #mainimg.next {
    padding: 20px 40px;
    height: 240px;
  }
  #mainimg.next .item-title span:nth-child(1) {
    margin-bottom: 20px;
    font-size: min(7vw, 70 + px);
    font-size: min(7vw, 4.375rem);
  }
  #mainimg.next .item-title span:nth-child(2) {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 700px) {
  #mainimg.next {
    padding: 15px 20px;
    height: 180px;
  }
  #mainimg.next .item-title span:nth-child(1) {
    margin-bottom: 10px;
    font-size: min(9vw, 60 + px);
    font-size: min(9vw, 3.75rem);
  }
  #mainimg.next .item-title span:nth-child(2) {
    font-size: 16px;
    font-size: 1rem;
  }
  #mainimg.next .item-bread {
    margin-top: 5px;
  }
}

/* main
------------------------------------------------------------*/
main {
  display: block;
}
main > section, main > article {
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}
main > section .content, main > article .content {
  width: 1216px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
main .voice-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -32px;
  margin-bottom: -40px;
}
main .voice-list:not(:last-child) {
  margin-bottom: 24px;
}
main .voice-list .item-li {
  width: calc(33.3333333333% - 32px);
  margin-right: 32px;
  margin-bottom: 40px;
  display: flex;
  -webkit-box-orient: vertical;
  flex-direction: column;
}
main .voice-list .item-link {
  width: 100%;
  -ms-flex: 1 0 auto;
  flex-grow: 1;
  display: flex;
  -webkit-box-orient: vertical;
  flex-direction: column;
}
main .voice-list .item-link:hover {
  text-decoration: none;
}
main .voice-list .item-link:hover .item-img img {
  transform: scale(1.1);
  transform-origin: center center;
}
main .voice-list .item-img {
  overflow: hidden;
  text-align: center;
  background: #ECEEEF;
  padding: 7px;
}
main .voice-list .item-img img {
  transition: all 0.8s ease;
}
main .voice-list .item-text {
  background: #FFF;
  color: #1A2229;
  -ms-flex: 1 0 auto;
  flex-grow: 1;
  padding: 32px;
}
main .voice-list .item-text .title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 12px;
  letter-spacing: 0em;
}
main .voice-list .item-text .info {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #ABB7C1;
}
main .voice-list .item-text .info:not(:last-child) {
  margin-bottom: 4px;
}
main .voice-list .item-text .name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
main .property-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -32px;
  margin-bottom: -40px;
}
main .property-list:not(:last-child) {
  margin-bottom: 10px;
}
main .property-list .item-li {
  margin-right: 32px;
  width: calc(50% - 32px);
  margin-bottom: 40px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
main .property-list .item-li.hidden {
  filter: blur(4px);
  pointer-events: none;
}
main .property-list .item-img {
  margin-right: 30px;
  max-width: 65%;
}
main .property-list .item-img a {
  display: block;
  overflow: hidden;
}
main .property-list .item-img a img {
  transition: all 0.8s ease;
}
main .property-list .item-img a:hover img {
  transform: scale(1.1);
  transform-origin: center center;
}
main .property-list .item-text {
  width: 10px;
  -ms-flex: 1 0 auto;
  flex-grow: 1;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: wrap;
}
main .property-list .item-text .cat {
  margin-right: 10px;
  margin-bottom: 10px;
}
main .property-list .item-text .title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 25px;
}
main .property-list .item-text .title a {
  color: #1A2229;
}
main .property-list .item-text dl {
  padding-top: 25px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  font-weight: bold;
}
main .property-list .item-text dl:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: calc(100% + 30px);
  height: 1px;
  right: 0;
  background: #ECEEEF;
}
main .property-list .item-text dl dt {
  width: 50px;
  color: #ABB7C1;
  letter-spacing: 0em;
}
main .property-list .item-text dl dd {
  color: #606E79;
  width: calc(100% - 50px);
}
main .service-list {
  width: 1408px;
  max-width: calc(100vw - 32px);
  position: relative;
  left: calc((1408px - 1216px) / -2);
}
@media screen and (max-width: 1440px) {
  main .service-list {
    left: calc((100vw - 1216px) / -2 + 16px);
  }
}
@media screen and (max-width: 1308px) {
  main .service-list {
    left: -34px;
  }
}
main .service-list .item-ul {
  display: flex;
}
main .service-list .item-li {
  width: 10px;
  -ms-flex: 1 0 auto;
  flex-grow: 1;
  display: flex;
  -webkit-box-orient: vertical;
  flex-direction: column;
}
main .service-list .item-link {
  -ms-flex: 1 0 auto;
  flex-grow: 1;
  display: flex;
  -webkit-box-orient: vertical;
  flex-direction: column;
  color: #1A2229;
}
main .service-list .item-link:hover {
  text-decoration: none;
}
main .service-list .item-link:hover .item-img img {
  transform: scale(1.1);
  transform-origin: center center;
}
main .service-list .item-img {
  overflow: hidden;
}
main .service-list .item-img img {
  transition: all 0.8s ease;
}
main .service-list .item-text {
  margin-left: 32px;
  margin-right: 32px;
  margin-top: -110px;
  background: #FFF;
  position: relative;
  -ms-flex: 1 0 auto;
  flex-grow: 1;
  padding: 40px 32px;
}
main .service-list .item-text h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 8px;
}
main .service-list .item-text p {
  font-size: 14px;
  font-size: 0.875rem;
  color: #606E79;
  line-height: 1.5;
}
main .service-list .item-btn {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 64px;
}

@media screen and (min-width: 701px) and (max-width: 1216px) {
  /* main
  ------------------------------------------------------------*/
  main > section, main > article {
    padding-left: 40px;
    padding-right: 40px;
  }
  main .voice-list {
    margin-right: -25px;
  }
  main .voice-list .item-li {
    width: calc(33.3333333333% - 25px);
    margin-right: 25px;
    margin-bottom: 40px;
  }
  main .voice-list .item-text {
    padding: 20px;
  }
  main .voice-list .item-text .title {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  main .property-list {
    margin-right: -20px;
  }
  main .property-list .item-li {
    margin-right: 20px;
    width: calc(50% - 20px);
  }
}
@media screen and (min-width: 701px) and (max-width: 1216px) and (max-width: 900px) {
  main .property-list .item-li {
    width: calc(100% - 20px);
  }
}
@media screen and (min-width: 701px) and (max-width: 1216px) {
  main .property-list .item-img {
    margin-right: 20px;
    max-width: 50%;
  }
  main .property-list .item-text .title {
    font-size: 19px;
    font-size: 1.1875rem;
  }
  main .property-list .item-text dl:before {
    width: calc(100% + 20px);
  }
  main .service-list {
    max-width: calc(100vw - 32px);
    left: -24px;
  }
  main .service-list .item-ul {
    flex-wrap: wrap;
    margin-bottom: -20px;
  }
  main .service-list .item-li {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 701px) and (max-width: 1216px) and (max-width: 850px) {
  main .service-list .item-li {
    width: 50%;
  }
}
@media screen and (min-width: 701px) and (max-width: 1216px) {
  main .service-list .item-img img {
    width: 100%;
  }
  main .service-list .item-text {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: -80px;
    padding: 30px 22px;
  }
}
@media screen and (max-width: 700px) {
  /* main
  ------------------------------------------------------------*/
  main > section, main > article {
    padding-left: 20px;
    padding-right: 20px;
  }
  main .voice-list {
    margin-right: -15px;
    margin-bottom: -20px;
  }
  main .voice-list:not(:last-child) {
    margin-bottom: 10px;
  }
  main .voice-list .item-li {
    width: calc(100% - 15px);
    margin-right: 15px;
    margin-bottom: 20px;
    -webkit-box-orient: horizontal;
    flex-direction: row;
  }
  main .voice-list .item-link {
    -webkit-box-orient: horizontal;
    flex-direction: row;
  }
  main .voice-list .item-img {
    width: 150px;
    max-width: 40%;
  }
  main .voice-list .item-img img {
    height: 100%;
    object-fit: cover;
  }
  main .voice-list .item-text {
    width: 10px;
    -ms-flex: 1 0 auto;
    flex-grow: 1;
    padding: 15px;
  }
  main .voice-list .item-text .title {
    font-size: 16px;
    font-size: 1rem;
    margin-bottom: 8px;
  }
  main .voice-list .item-text .info {
    font-size: 12px;
    font-size: 0.75rem;
  }
  main .voice-list .item-text .name {
    font-size: 14px;
    font-size: 0.875rem;
  }
  main .property-list {
    margin-right: -15px;
    margin-bottom: -30px;
  }
  main .property-list:not(:last-child) {
    margin-bottom: 5px;
  }
  main .property-list .item-li {
    margin-right: 15px;
    width: calc(100% - 15px);
    margin-bottom: 30px;
  }
  main .property-list .item-img {
    margin-right: 20px;
    max-width: 50%;
  }
  main .property-list .item-text .title {
    font-size: 17px;
    font-size: 1.0625rem;
    margin-bottom: 15px;
  }
  main .property-list .item-text dl {
    padding-top: 15px;
  }
  main .property-list .item-text dl:before {
    width: calc(100% + 20px);
  }
  main .property-list .item-text dl dt {
    width: 50px;
    color: #ABB7C1;
    letter-spacing: 0em;
  }
  main .property-list .item-text dl dd {
    color: #606E79;
    width: calc(100% - 50px);
  }
  main .service-list {
    max-width: calc(100vw - 16px);
    left: -12px;
  }
  main .service-list .item-ul {
    flex-wrap: wrap;
    margin-bottom: -20px;
  }
  main .service-list .item-li {
    margin-bottom: 20px;
    width: 50%;
  }
  main .service-list .item-text {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -40px;
    padding: 20px;
  }
  main .service-list .item-text h3 {
    font-size: 17px;
    font-size: 1.0625rem;
  }
  main .service-list .item-btn {
    margin-top: 30px;
  }
}
/* padding & margin */
.pd {
  padding: 30px;
}

.mg {
  margin: 30px;
}

.nomb {
  margin-bottom: 0 !important;
}

.nomt {
  margin-top: 0 !important;
}

.nopt {
  padding-top: 0 !important;
}

.nopb {
  padding-bottom: 0 !important;
}

.pt {
  padding-top: 30px;
}
.pt5 {
  padding-top: 5px;
}
.pt10 {
  padding-top: 10px;
}
.pt15 {
  padding-top: 15px;
}
.pt20 {
  padding-top: 20px;
}
.pt25 {
  padding-top: 25px;
}
.pt30 {
  padding-top: 30px;
}
.pt35 {
  padding-top: 35px;
}
.pt40 {
  padding-top: 40px;
}
.pt45 {
  padding-top: 45px;
}
.pt50 {
  padding-top: 50px;
}
.pt60 {
  padding-top: 60px;
}
.pt70 {
  padding-top: 70px;
}
.pt80 {
  padding-top: 80px;
}
.pt90 {
  padding-top: 90px;
}
.pt100 {
  padding-top: 100px;
}
.pt110 {
  padding-top: 110px;
}
.pt120 {
  padding-top: 120px;
}
.pt130 {
  padding-top: 130px;
}
.pt140 {
  padding-top: 140px;
}
.pt150 {
  padding-top: 150px;
}
.pt160 {
  padding-top: 160px;
}
.pt170 {
  padding-top: 170px;
}
.pt180 {
  padding-top: 180px;
}
.pt190 {
  padding-top: 190px;
}
.pt200 {
  padding-top: 200px;
}

.pb {
  padding-bottom: 30px;
}
.pb5 {
  padding-bottom: 5px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb15 {
  padding-bottom: 15px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb25 {
  padding-bottom: 25px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb35 {
  padding-bottom: 35px;
}
.pb40 {
  padding-bottom: 40px;
}
.pb45 {
  padding-bottom: 45px;
}
.pb50 {
  padding-bottom: 50px;
}
.pb60 {
  padding-bottom: 60px;
}
.pb70 {
  padding-bottom: 70px;
}
.pb80 {
  padding-bottom: 80px;
}
.pb90 {
  padding-bottom: 90px;
}
.pb100 {
  padding-bottom: 100px;
}
.pb110 {
  padding-bottom: 110px;
}
.pb120 {
  padding-bottom: 120px;
}
.pb130 {
  padding-bottom: 130px;
}
.pb140 {
  padding-bottom: 140px;
}
.pb150 {
  padding-bottom: 150px;
}
.pb160 {
  padding-bottom: 160px;
}
.pb170 {
  padding-bottom: 170px;
}
.pb180 {
  padding-bottom: 180px;
}
.pb190 {
  padding-bottom: 190px;
}
.pb200 {
  padding-bottom: 200px;
}

.mt {
  margin-top: 30px;
}
.mt5 {
  margin-top: 5px;
}
.mt10 {
  margin-top: 10px;
}
.mt15 {
  margin-top: 15px;
}
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}
.mt35 {
  margin-top: 35px;
}
.mt40 {
  margin-top: 40px;
}
.mt45 {
  margin-top: 45px;
}
.mt50 {
  margin-top: 50px;
}
.mt60 {
  margin-top: 60px;
}
.mt70 {
  margin-top: 70px;
}
.mt80 {
  margin-top: 80px;
}
.mt90 {
  margin-top: 90px;
}
.mt100 {
  margin-top: 100px;
}
.mt110 {
  margin-top: 110px;
}
.mt120 {
  margin-top: 120px;
}
.mt130 {
  margin-top: 130px;
}
.mt140 {
  margin-top: 140px;
}
.mt150 {
  margin-top: 150px;
}
.mt160 {
  margin-top: 160px;
}
.mt170 {
  margin-top: 170px;
}
.mt180 {
  margin-top: 180px;
}
.mt190 {
  margin-top: 190px;
}
.mt200 {
  margin-top: 200px;
}

.mb {
  margin-bottom: 30px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}
.mb35 {
  margin-bottom: 35px;
}
.mb40 {
  margin-bottom: 40px;
}
.mb45 {
  margin-bottom: 45px;
}
.mb50 {
  margin-bottom: 50px;
}
.mb60 {
  margin-bottom: 60px;
}
.mb70 {
  margin-bottom: 70px;
}
.mb80 {
  margin-bottom: 80px;
}
.mb90 {
  margin-bottom: 90px;
}
.mb100 {
  margin-bottom: 100px;
}
.mb110 {
  margin-bottom: 110px;
}
.mb120 {
  margin-bottom: 120px;
}
.mb130 {
  margin-bottom: 130px;
}
.mb140 {
  margin-bottom: 140px;
}
.mb150 {
  margin-bottom: 150px;
}
.mb160 {
  margin-bottom: 160px;
}
.mb170 {
  margin-bottom: 170px;
}
.mb180 {
  margin-bottom: 180px;
}
.mb190 {
  margin-bottom: 190px;
}
.mb200 {
  margin-bottom: 200px;
}

.pl {
  padding-left: 30px;
}
.pl5 {
  padding-left: 5px;
}
.pl10 {
  padding-left: 10px;
}
.pl15 {
  padding-left: 15px;
}
.pl20 {
  padding-left: 20px;
}
.pl25 {
  padding-left: 25px;
}

.pr {
  padding-right: 30px;
}
.pr5 {
  padding-right: 5px;
}
.pr10 {
  padding-right: 10px;
}
.pr15 {
  padding-right: 15px;
}
.pr20 {
  padding-right: 20px;
}
.pr25 {
  padding-right: 25px;
}

.ml {
  margin-left: 30px;
}
.ml-a {
  margin-left: auto;
}
.ml5 {
  margin-left: 5px;
}
.ml10 {
  margin-left: 10px;
}
.ml15 {
  margin-left: 15px;
}
.ml20 {
  margin-left: 20px;
}
.ml25 {
  margin-left: 25px;
}

.mr {
  margin-right: 30px;
}
.mr-a {
  margin-right: auto;
}
.mr5 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr15 {
  margin-right: 15px;
}
.mr20 {
  margin-right: 20px;
}
.mr25 {
  margin-right: 25px;
}

@media screen and (max-width: 700px) {
  .pd {
    padding: 20px;
  }
  .mg {
    margin: 20px;
  }
  .pt {
    padding-top: 20px;
  }
  .pt5 {
    padding-top: 3px;
  }
  .pt10 {
    padding-top: 6px;
  }
  .pt15 {
    padding-top: 9px;
  }
  .pt20 {
    padding-top: 12px;
  }
  .pt25 {
    padding-top: 15px;
  }
  .pt30 {
    padding-top: 18px;
  }
  .pt35 {
    padding-top: 21px;
  }
  .pt40 {
    padding-top: 24px;
  }
  .pt45 {
    padding-top: 27px;
  }
  .pt50 {
    padding-top: 30px;
  }
  .pt60 {
    padding-top: 36px;
  }
  .pt70 {
    padding-top: 42px;
  }
  .pt80 {
    padding-top: 48px;
  }
  .pt90 {
    padding-top: 54px;
  }
  .pt100 {
    padding-top: 60px;
  }
  .pt110 {
    padding-top: 66px;
  }
  .pt120 {
    padding-top: 72px;
  }
  .pt130 {
    padding-top: 78px;
  }
  .pt140 {
    padding-top: 84px;
  }
  .pt150 {
    padding-top: 90px;
  }
  .pt160 {
    padding-top: 96px;
  }
  .pt170 {
    padding-top: 102px;
  }
  .pt180 {
    padding-top: 108px;
  }
  .pt190 {
    padding-top: 114px;
  }
  .pt200 {
    padding-top: 120px;
  }
  .pb {
    padding-bottom: 20px;
  }
  .pb5 {
    padding-bottom: 3px;
  }
  .pb10 {
    padding-bottom: 6px;
  }
  .pb15 {
    padding-bottom: 9px;
  }
  .pb20 {
    padding-bottom: 12px;
  }
  .pb25 {
    padding-bottom: 15px;
  }
  .pb30 {
    padding-bottom: 18px;
  }
  .pb35 {
    padding-bottom: 21px;
  }
  .pb40 {
    padding-bottom: 24px;
  }
  .pb45 {
    padding-bottom: 27px;
  }
  .pb50 {
    padding-bottom: 30px;
  }
  .pb55 {
    padding-bottom: 33px;
  }
  .pb60 {
    padding-bottom: 36px;
  }
  .pb65 {
    padding-bottom: 39px;
  }
  .pb70 {
    padding-bottom: 42px;
  }
  .pb75 {
    padding-bottom: 45px;
  }
  .pb80 {
    padding-bottom: 48px;
  }
  .pb85 {
    padding-bottom: 51px;
  }
  .pb90 {
    padding-bottom: 54px;
  }
  .pb95 {
    padding-bottom: 57px;
  }
  .pb100 {
    padding-bottom: 60px;
  }
  .pb60 {
    padding-bottom: 36px;
  }
  .pb70 {
    padding-bottom: 42px;
  }
  .pb80 {
    padding-bottom: 48px;
  }
  .pb90 {
    padding-bottom: 54px;
  }
  .pb100 {
    padding-bottom: 60px;
  }
  .mt {
    margin-top: 20px;
  }
  .mt5 {
    margin-top: 3px;
  }
  .mt10 {
    margin-top: 6px;
  }
  .mt15 {
    margin-top: 9px;
  }
  .mt20 {
    margin-top: 12px;
  }
  .mt25 {
    margin-top: 15px;
  }
  .mt30 {
    margin-top: 18px;
  }
  .mt35 {
    margin-top: 21px;
  }
  .mt40 {
    margin-top: 24px;
  }
  .mt45 {
    margin-top: 27px;
  }
  .mt50 {
    margin-top: 30px;
  }
  .mt55 {
    margin-top: 33px;
  }
  .mt60 {
    margin-top: 36px;
  }
  .mt65 {
    margin-top: 39px;
  }
  .mt70 {
    margin-top: 42px;
  }
  .mt75 {
    margin-top: 45px;
  }
  .mt80 {
    margin-top: 48px;
  }
  .mt85 {
    margin-top: 51px;
  }
  .mt90 {
    margin-top: 54px;
  }
  .mt95 {
    margin-top: 57px;
  }
  .mt100 {
    margin-top: 60px;
  }
  .mt60 {
    margin-top: 36px;
  }
  .mt70 {
    margin-top: 42px;
  }
  .mt80 {
    margin-top: 48px;
  }
  .mt90 {
    margin-top: 54px;
  }
  .mt100 {
    margin-top: 60px;
  }
  .mb {
    margin-bottom: 20px;
  }
  .mb5 {
    margin-bottom: 3px;
  }
  .mb10 {
    margin-bottom: 6px;
  }
  .mb15 {
    margin-bottom: 9px;
  }
  .mb20 {
    margin-bottom: 12px;
  }
  .mb25 {
    margin-bottom: 15px;
  }
  .mb30 {
    margin-bottom: 18px;
  }
  .mb35 {
    margin-bottom: 21px;
  }
  .mb40 {
    margin-bottom: 24px;
  }
  .mb45 {
    margin-bottom: 27px;
  }
  .mb50 {
    margin-bottom: 30px;
  }
  .mb55 {
    margin-bottom: 33px;
  }
  .mb60 {
    margin-bottom: 36px;
  }
  .mb65 {
    margin-bottom: 39px;
  }
  .mb70 {
    margin-bottom: 42px;
  }
  .mb75 {
    margin-bottom: 45px;
  }
  .mb80 {
    margin-bottom: 48px;
  }
  .mb85 {
    margin-bottom: 51px;
  }
  .mb90 {
    margin-bottom: 54px;
  }
  .mb95 {
    margin-bottom: 57px;
  }
  .mb100 {
    margin-bottom: 60px;
  }
  .mb60 {
    margin-bottom: 36px;
  }
  .mb70 {
    margin-bottom: 42px;
  }
  .mb80 {
    margin-bottom: 48px;
  }
  .mb90 {
    margin-bottom: 54px;
  }
  .mb100 {
    margin-bottom: 60px;
  }
  .pl {
    padding-left: 20px;
  }
  .pl5 {
    padding-left: 3px;
  }
  .pl10 {
    padding-left: 6px;
  }
  .pl15 {
    padding-left: 9px;
  }
  .pl20 {
    padding-left: 12px;
  }
  .pl25 {
    padding-left: 15px;
  }
  .pr {
    padding-right: 20px;
  }
  .pr5 {
    padding-right: 3px;
  }
  .pr10 {
    padding-right: 6px;
  }
  .pr15 {
    padding-right: 9px;
  }
  .pr20 {
    padding-right: 12px;
  }
  .pr25 {
    padding-right: 15px;
  }
  .ml {
    margin-left: 20px;
  }
  .ml5 {
    margin-left: 3px;
  }
  .ml10 {
    margin-left: 6px;
  }
  .ml15 {
    margin-left: 9px;
  }
  .ml20 {
    margin-left: 12px;
  }
  .ml25 {
    margin-left: 15px;
  }
  .mr {
    margin-right: 20px;
  }
  .mr5 {
    margin-right: 3px;
  }
  .mr10 {
    margin-right: 6px;
  }
  .mr15 {
    margin-right: 9px;
  }
  .mr20 {
    margin-right: 12px;
  }
  .mr25 {
    margin-right: 15px;
  }
}
/* padding & margin */
/* btn */
.btn {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  max-width: 100%;
  height: 56px;
  padding-left: 15px;
  padding-right: 15px;
  background: #FFF;
  border: 1px solid rgba(7, 55, 93, 0.6);
  color: #07375D;
  border-radius: 30px;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  box-sizing: border-box;
  text-align: center;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  -moz-transition: background 0.3s ease, color 0.3s ease;
  -ms-transition: background 0.3s ease, color 0.3s ease;
  -o-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  appearance: none;
  top: 0;
  line-height: 1.2;
}
@media screen and (max-width: 700px) {
  .btn {
    height: 50px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.btn:hover {
  text-decoration: none;
  color: #FFF;
  background-color: #07375D;
}
.btn:disabled {
  pointer-events: none;
  opacity: 0.7;
}
.btn.sml {
  height: 35px;
  font-size: 14px;
  font-size: 0.875rem;
}
.btn.mdl {
  height: 45px;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 700px) {
  .btn.mdl {
    font-size: 15px;
    font-size: 0.9375rem;
    height: 40px;
  }
}
.btn.lg {
  height: 66px;
  font-size: 17px;
  font-size: 1.0625rem;
  border-radius: 40px;
}
@media screen and (max-width: 700px) {
  .btn.lg {
    height: 60px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.btn.white {
  border-color: #FFF;
}
.btn.gray {
  background-color: #F3F4F5;
}
.btn.gray:hover {
  background-color: #07375D;
}
.btn.navy {
  background-color: #07375D;
  color: #FFF;
}
.btn.navy:hover {
  background-color: #FFF;
  color: #07375D;
}
.btn.doc:before {
  content: "";
  width: 15px;
  height: 21px;
  background: no-repeat center/auto;
  background-image: url(../img/common/icon-doc.svg);
  margin-right: 10px;
  transition: all 0.3s ease;
}
.btn.doc:hover:before {
  background-image: url(../img/common/icon-doc_white.svg);
}
.btn.mail:before {
  content: "";
  width: 18px;
  height: 14px;
  background: no-repeat center/auto;
  background-image: url(../img/common/icon-mail_navy.svg);
  margin-right: 10px;
  transition: all 0.3s ease;
}
.btn.mail:hover:before {
  background-image: url(../img/common/icon-mail_white.svg);
}
.btn.mail.navy:before {
  background-image: url(../img/common/icon-mail_white.svg);
}
.btn.mail.navy:hover:before {
  background-image: url(../img/common/icon-mail_navy.svg);
}
.btn.search:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  right: 0;
  background: url(../img/common/icon-search_navy.svg) no-repeat center;
  transition: all 0.3s ease;
}
.btn.search:hover:after {
  background-image: url(../img/common/icon-search_white.svg);
}
.btn.search.navy:after {
  background-image: url(../img/common/icon-search_white.svg);
}
.btn.search.navy:hover:after {
  background-image: url(../img/common/icon-search_navy.svg);
}
.btn.arrow:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  right: 0;
  background: url(../img/common/arrow-navy.svg) no-repeat center;
  transition: all 0.3s ease;
}
.btn.arrow:hover:after {
  transform: translateX(5px);
  background-image: url(../img/common/arrow-white.svg);
}
.btn.back:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 100%;
  background: url(../img/common/arrow-navy.svg) no-repeat center;
  transition: all 0.3s ease;
  transform: rotate(180deg);
  transform-origin: center center;
}
.btn.back:hover:after {
  left: -5px;
  background-image: url(../img/common/arrow-white.svg);
}
.btn-block {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -10px -15px;
}
.btn-block.left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.btn-block.right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.btn-block.f-wrap {
  flex-wrap: wrap;
}
.btn-block > * {
  margin: 0 10px 15px;
}
.btn-block > *.w5p {
  width: calc(5% - 20px);
}
.btn-block > *.w10p {
  width: calc(10% - 20px);
}
.btn-block > *.w15p {
  width: calc(15% - 20px);
}
.btn-block > *.w20p {
  width: calc(20% - 20px);
}
.btn-block > *.w25p {
  width: calc(25% - 20px);
}
.btn-block > *.w30p {
  width: calc(30% - 20px);
}
.btn-block > *.w35p {
  width: calc(35% - 20px);
}
.btn-block > *.w40p {
  width: calc(40% - 20px);
}
.btn-block > *.w45p {
  width: calc(45% - 20px);
}
.btn-block > *.w50p {
  width: calc(50% - 20px);
}
.btn-block > *.w55p {
  width: calc(55% - 20px);
}
.btn-block > *.w60p {
  width: calc(60% - 20px);
}
.btn-block > *.w65p {
  width: calc(65% - 20px);
}
.btn-block > *.w70p {
  width: calc(70% - 20px);
}
.btn-block > *.w75p {
  width: calc(75% - 20px);
}
.btn-block > *.w80p {
  width: calc(80% - 20px);
}
.btn-block > *.w85p {
  width: calc(85% - 20px);
}
.btn-block > *.w90p {
  width: calc(90% - 20px);
}
.btn-block > *.w95p {
  width: calc(95% - 20px);
}
.btn-block > *.w100p {
  width: calc(100% - 20px);
}
@media screen and (max-width: 700px) {
  .btn-block {
    flex-wrap: wrap;
    margin: 0 -5px -10px;
  }
  .btn-block > * {
    margin: 0 5px 10px;
  }
  .btn-block > *.w5p {
    width: calc(5% - 10px);
  }
  .btn-block > *.w5p-sp {
    width: calc(5% - 10px);
  }
  .btn-block > *.w10p {
    width: calc(10% - 10px);
  }
  .btn-block > *.w10p-sp {
    width: calc(10% - 10px);
  }
  .btn-block > *.w15p {
    width: calc(15% - 10px);
  }
  .btn-block > *.w15p-sp {
    width: calc(15% - 10px);
  }
  .btn-block > *.w20p {
    width: calc(20% - 10px);
  }
  .btn-block > *.w20p-sp {
    width: calc(20% - 10px);
  }
  .btn-block > *.w25p {
    width: calc(25% - 10px);
  }
  .btn-block > *.w25p-sp {
    width: calc(25% - 10px);
  }
  .btn-block > *.w30p {
    width: calc(30% - 10px);
  }
  .btn-block > *.w30p-sp {
    width: calc(30% - 10px);
  }
  .btn-block > *.w35p {
    width: calc(35% - 10px);
  }
  .btn-block > *.w35p-sp {
    width: calc(35% - 10px);
  }
  .btn-block > *.w40p {
    width: calc(40% - 10px);
  }
  .btn-block > *.w40p-sp {
    width: calc(40% - 10px);
  }
  .btn-block > *.w45p {
    width: calc(45% - 10px);
  }
  .btn-block > *.w45p-sp {
    width: calc(45% - 10px);
  }
  .btn-block > *.w50p {
    width: calc(50% - 10px);
  }
  .btn-block > *.w50p-sp {
    width: calc(50% - 10px);
  }
  .btn-block > *.w55p {
    width: calc(55% - 10px);
  }
  .btn-block > *.w55p-sp {
    width: calc(55% - 10px);
  }
  .btn-block > *.w60p {
    width: calc(60% - 10px);
  }
  .btn-block > *.w60p-sp {
    width: calc(60% - 10px);
  }
  .btn-block > *.w65p {
    width: calc(65% - 10px);
  }
  .btn-block > *.w65p-sp {
    width: calc(65% - 10px);
  }
  .btn-block > *.w70p {
    width: calc(70% - 10px);
  }
  .btn-block > *.w70p-sp {
    width: calc(70% - 10px);
  }
  .btn-block > *.w75p {
    width: calc(75% - 10px);
  }
  .btn-block > *.w75p-sp {
    width: calc(75% - 10px);
  }
  .btn-block > *.w80p {
    width: calc(80% - 10px);
  }
  .btn-block > *.w80p-sp {
    width: calc(80% - 10px);
  }
  .btn-block > *.w85p {
    width: calc(85% - 10px);
  }
  .btn-block > *.w85p-sp {
    width: calc(85% - 10px);
  }
  .btn-block > *.w90p {
    width: calc(90% - 10px);
  }
  .btn-block > *.w90p-sp {
    width: calc(90% - 10px);
  }
  .btn-block > *.w95p {
    width: calc(95% - 10px);
  }
  .btn-block > *.w95p-sp {
    width: calc(95% - 10px);
  }
  .btn-block > *.w100p {
    width: calc(100% - 10px);
  }
  .btn-block > *.w100p-sp {
    width: calc(100% - 10px);
  }
}
.btn:where(button) {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.btn:where(input) {
  display: -moz-inline-box;
  display: inline-block;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* btn */
/* link */
.link {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.link-block {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -10px -15px;
}
.link-block.left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.link-block.right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.link-block.f-wrap {
  flex-wrap: wrap;
}
.link-block > * {
  margin: 0 10px 15px;
}
.link-block > *.w5p {
  width: calc(5% - 20px);
}
.link-block > *.w10p {
  width: calc(10% - 20px);
}
.link-block > *.w15p {
  width: calc(15% - 20px);
}
.link-block > *.w20p {
  width: calc(20% - 20px);
}
.link-block > *.w25p {
  width: calc(25% - 20px);
}
.link-block > *.w30p {
  width: calc(30% - 20px);
}
.link-block > *.w35p {
  width: calc(35% - 20px);
}
.link-block > *.w40p {
  width: calc(40% - 20px);
}
.link-block > *.w45p {
  width: calc(45% - 20px);
}
.link-block > *.w50p {
  width: calc(50% - 20px);
}
.link-block > *.w55p {
  width: calc(55% - 20px);
}
.link-block > *.w60p {
  width: calc(60% - 20px);
}
.link-block > *.w65p {
  width: calc(65% - 20px);
}
.link-block > *.w70p {
  width: calc(70% - 20px);
}
.link-block > *.w75p {
  width: calc(75% - 20px);
}
.link-block > *.w80p {
  width: calc(80% - 20px);
}
.link-block > *.w85p {
  width: calc(85% - 20px);
}
.link-block > *.w90p {
  width: calc(90% - 20px);
}
.link-block > *.w95p {
  width: calc(95% - 20px);
}
.link-block > *.w100p {
  width: calc(100% - 20px);
}
@media screen and (max-width: 700px) {
  .link-block {
    flex-wrap: wrap;
    margin: 0 -5px -10px;
  }
  .link-block > * {
    margin: 0 5px 10px;
  }
  .link-block > *.w5p {
    width: calc(5% - 10px);
  }
  .link-block > *.w5p-sp {
    width: calc(5% - 10px);
  }
  .link-block > *.w10p {
    width: calc(10% - 10px);
  }
  .link-block > *.w10p-sp {
    width: calc(10% - 10px);
  }
  .link-block > *.w15p {
    width: calc(15% - 10px);
  }
  .link-block > *.w15p-sp {
    width: calc(15% - 10px);
  }
  .link-block > *.w20p {
    width: calc(20% - 10px);
  }
  .link-block > *.w20p-sp {
    width: calc(20% - 10px);
  }
  .link-block > *.w25p {
    width: calc(25% - 10px);
  }
  .link-block > *.w25p-sp {
    width: calc(25% - 10px);
  }
  .link-block > *.w30p {
    width: calc(30% - 10px);
  }
  .link-block > *.w30p-sp {
    width: calc(30% - 10px);
  }
  .link-block > *.w35p {
    width: calc(35% - 10px);
  }
  .link-block > *.w35p-sp {
    width: calc(35% - 10px);
  }
  .link-block > *.w40p {
    width: calc(40% - 10px);
  }
  .link-block > *.w40p-sp {
    width: calc(40% - 10px);
  }
  .link-block > *.w45p {
    width: calc(45% - 10px);
  }
  .link-block > *.w45p-sp {
    width: calc(45% - 10px);
  }
  .link-block > *.w50p {
    width: calc(50% - 10px);
  }
  .link-block > *.w50p-sp {
    width: calc(50% - 10px);
  }
  .link-block > *.w55p {
    width: calc(55% - 10px);
  }
  .link-block > *.w55p-sp {
    width: calc(55% - 10px);
  }
  .link-block > *.w60p {
    width: calc(60% - 10px);
  }
  .link-block > *.w60p-sp {
    width: calc(60% - 10px);
  }
  .link-block > *.w65p {
    width: calc(65% - 10px);
  }
  .link-block > *.w65p-sp {
    width: calc(65% - 10px);
  }
  .link-block > *.w70p {
    width: calc(70% - 10px);
  }
  .link-block > *.w70p-sp {
    width: calc(70% - 10px);
  }
  .link-block > *.w75p {
    width: calc(75% - 10px);
  }
  .link-block > *.w75p-sp {
    width: calc(75% - 10px);
  }
  .link-block > *.w80p {
    width: calc(80% - 10px);
  }
  .link-block > *.w80p-sp {
    width: calc(80% - 10px);
  }
  .link-block > *.w85p {
    width: calc(85% - 10px);
  }
  .link-block > *.w85p-sp {
    width: calc(85% - 10px);
  }
  .link-block > *.w90p {
    width: calc(90% - 10px);
  }
  .link-block > *.w90p-sp {
    width: calc(90% - 10px);
  }
  .link-block > *.w95p {
    width: calc(95% - 10px);
  }
  .link-block > *.w95p-sp {
    width: calc(95% - 10px);
  }
  .link-block > *.w100p {
    width: calc(100% - 10px);
  }
  .link-block > *.w100p-sp {
    width: calc(100% - 10px);
  }
}

/* link */
/* cat */
.cat {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  background-color: #ABB7C1;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #FFF;
  padding: 5px 15px;
  border-radius: 40px;
  transition: all 0.3s ease;
}
.cat:hover {
  text-decoration: none;
  background-color: #606E79;
  color: #FFF;
}
.cat-list {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -5px -10px 0;
}
.cat-list.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cat-list.right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.cat-list.f-wrap {
  flex-wrap: wrap;
}
.cat-list > * {
  margin: 0 5px 10px 0;
}
.cat-list > *.w5p {
  width: calc(5% - 20px);
}
.cat-list > *.w10p {
  width: calc(10% - 20px);
}
.cat-list > *.w15p {
  width: calc(15% - 20px);
}
.cat-list > *.w20p {
  width: calc(20% - 20px);
}
.cat-list > *.w25p {
  width: calc(25% - 20px);
}
.cat-list > *.w30p {
  width: calc(30% - 20px);
}
.cat-list > *.w35p {
  width: calc(35% - 20px);
}
.cat-list > *.w40p {
  width: calc(40% - 20px);
}
.cat-list > *.w45p {
  width: calc(45% - 20px);
}
.cat-list > *.w50p {
  width: calc(50% - 20px);
}
.cat-list > *.w55p {
  width: calc(55% - 20px);
}
.cat-list > *.w60p {
  width: calc(60% - 20px);
}
.cat-list > *.w65p {
  width: calc(65% - 20px);
}
.cat-list > *.w70p {
  width: calc(70% - 20px);
}
.cat-list > *.w75p {
  width: calc(75% - 20px);
}
.cat-list > *.w80p {
  width: calc(80% - 20px);
}
.cat-list > *.w85p {
  width: calc(85% - 20px);
}
.cat-list > *.w90p {
  width: calc(90% - 20px);
}
.cat-list > *.w95p {
  width: calc(95% - 20px);
}
.cat-list > *.w100p {
  width: calc(100% - 20px);
}
@media screen and (max-width: 700px) {
  .cat-list {
    flex-wrap: wrap;
    margin: 0 -5px -10px;
  }
  .cat-list > * {
    margin: 0 5px 10px;
  }
  .cat-list > *.w5p {
    width: calc(5% - 10px);
  }
  .cat-list > *.w5p-sp {
    width: calc(5% - 10px);
  }
  .cat-list > *.w10p {
    width: calc(10% - 10px);
  }
  .cat-list > *.w10p-sp {
    width: calc(10% - 10px);
  }
  .cat-list > *.w15p {
    width: calc(15% - 10px);
  }
  .cat-list > *.w15p-sp {
    width: calc(15% - 10px);
  }
  .cat-list > *.w20p {
    width: calc(20% - 10px);
  }
  .cat-list > *.w20p-sp {
    width: calc(20% - 10px);
  }
  .cat-list > *.w25p {
    width: calc(25% - 10px);
  }
  .cat-list > *.w25p-sp {
    width: calc(25% - 10px);
  }
  .cat-list > *.w30p {
    width: calc(30% - 10px);
  }
  .cat-list > *.w30p-sp {
    width: calc(30% - 10px);
  }
  .cat-list > *.w35p {
    width: calc(35% - 10px);
  }
  .cat-list > *.w35p-sp {
    width: calc(35% - 10px);
  }
  .cat-list > *.w40p {
    width: calc(40% - 10px);
  }
  .cat-list > *.w40p-sp {
    width: calc(40% - 10px);
  }
  .cat-list > *.w45p {
    width: calc(45% - 10px);
  }
  .cat-list > *.w45p-sp {
    width: calc(45% - 10px);
  }
  .cat-list > *.w50p {
    width: calc(50% - 10px);
  }
  .cat-list > *.w50p-sp {
    width: calc(50% - 10px);
  }
  .cat-list > *.w55p {
    width: calc(55% - 10px);
  }
  .cat-list > *.w55p-sp {
    width: calc(55% - 10px);
  }
  .cat-list > *.w60p {
    width: calc(60% - 10px);
  }
  .cat-list > *.w60p-sp {
    width: calc(60% - 10px);
  }
  .cat-list > *.w65p {
    width: calc(65% - 10px);
  }
  .cat-list > *.w65p-sp {
    width: calc(65% - 10px);
  }
  .cat-list > *.w70p {
    width: calc(70% - 10px);
  }
  .cat-list > *.w70p-sp {
    width: calc(70% - 10px);
  }
  .cat-list > *.w75p {
    width: calc(75% - 10px);
  }
  .cat-list > *.w75p-sp {
    width: calc(75% - 10px);
  }
  .cat-list > *.w80p {
    width: calc(80% - 10px);
  }
  .cat-list > *.w80p-sp {
    width: calc(80% - 10px);
  }
  .cat-list > *.w85p {
    width: calc(85% - 10px);
  }
  .cat-list > *.w85p-sp {
    width: calc(85% - 10px);
  }
  .cat-list > *.w90p {
    width: calc(90% - 10px);
  }
  .cat-list > *.w90p-sp {
    width: calc(90% - 10px);
  }
  .cat-list > *.w95p {
    width: calc(95% - 10px);
  }
  .cat-list > *.w95p-sp {
    width: calc(95% - 10px);
  }
  .cat-list > *.w100p {
    width: calc(100% - 10px);
  }
  .cat-list > *.w100p-sp {
    width: calc(100% - 10px);
  }
}

/* cat */
/* form */
.style-style, select, input[type=text], input[type=email], input[type=tel], input[type=password], input[type=number], input[type=search], textarea {
  border-radius: 0;
  border: 1px solid #F3F4F5;
  background-color: #F3F4F5;
  -webkit-appearance: none;
  appearance: none;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  outline: none;
  transition: all 0.3s ease;
}
.style-style:focus, select:focus, input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=password]:focus, input[type=number]:focus, input[type=search]:focus, textarea:focus {
  background-color: #FFF;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
}
.style-style::placeholder, select::placeholder, input[type=text]::placeholder, input[type=email]::placeholder, input[type=tel]::placeholder, input[type=password]::placeholder, input[type=number]::placeholder, input[type=search]::placeholder, textarea::placeholder {
  color: rgba(7, 55, 93, 0.5);
}
.style-input, select, input[type=text], input[type=email], input[type=tel], input[type=password], input[type=number], input[type=search] {
  line-height: 54px;
  height: 54px;
  padding-left: 18px;
}
@media screen and (max-width: 700px) {
  .style-input, select, input[type=text], input[type=email], input[type=tel], input[type=password], input[type=number], input[type=search] {
    height: 48px;
    height: 48px;
  }
}
.style-font, select, label.radio, label.checkbox, input[type=text], input[type=email], input[type=tel], input[type=password], input[type=number], input[type=search], textarea {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #1A2229;
}

textarea {
  position: relative;
  resize: vertical;
  padding: 10px 18px;
  vertical-align: top;
}
textarea.h100 {
  height: 100px;
}

input[type=text].lg, input[type=email].lg, input[type=tel].lg, input[type=password].lg, input[type=number].lg, input[type=search].lg {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-size: 1.125rem;
}
input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked + .checkbox:after {
  opacity: 1;
  visibility: visible;
  transform: rotate(45deg);
  transform-origin: center center;
}
input[type=radio] {
  display: none;
}
input[type=radio]:checked + .radio:after {
  opacity: 1;
  visibility: visible;
}

label.checkbox {
  padding-left: 30px;
  min-height: 18px;
  cursor: pointer;
  margin: 0;
  display: -moz-inline-box;
  display: inline-block;
  position: relative;
  line-height: 1.5;
}
label.checkbox.single {
  width: 20px;
  padding-left: 0;
}
label.checkbox:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: -moz-inline-box;
  display: inline-block;
  width: 19px;
  height: 19px;
  border-radius: 2px;
  background-color: #F3F4F5;
  border: 1px solid #ABB7C1;
  margin-top: 2px;
}
label.checkbox:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 8px;
  display: block;
  width: 4px;
  height: 8px;
  border-right: 2px solid #07375D;
  border-bottom: 2px solid #07375D;
  transform: rotate(60deg);
  transform-origin: center center;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  margin-top: 2px;
}
label.radio {
  padding-left: 30px;
  min-height: 24px;
  cursor: pointer;
  margin: 0;
  display: -moz-inline-box;
  display: inline-block;
  position: relative;
  line-height: 1.5;
}
label.radio.single {
  width: 20px;
  padding-left: 0;
}
label.radio:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  display: -moz-inline-box;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #ECEEEF;
  box-sizing: border-box;
  background-color: #FFF;
  border-radius: 50% 50% 50% 50%;
  margin-top: 2px;
}
label.radio:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  display: block;
  width: 12px;
  height: 12px;
  background-color: #1A2229;
  border-radius: 50% 50% 50% 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 2px;
}
label.select {
  position: relative;
  display: block;
  max-width: 100%;
}
label.select select {
  padding-right: 50px;
  width: 100%;
}
label.select:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #07375D;
  border-bottom: 2px solid #07375D;
  right: 20px;
  margin-top: -4px;
  transform: rotate(45deg);
  transform-origin: center center;
  pointer-events: none;
  box-sizing: border-box;
}

select {
  cursor: pointer;
}
select option {
  padding: 8px;
  border: none;
}
select.lg {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  font-size: 1.125rem;
}
select::-ms-expand {
  display: none;
}

.check-radios {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-bottom: -5px;
}
.check-radios > * {
  margin-right: 15px;
  margin-bottom: 5px;
}
.check-radios .horizontal-item {
  margin-left: 0;
}
.check-radios .horizontal-item + .horizontal-item {
  margin-left: 0;
}
.check-radios.vertical {
  -webkit-box-orient: vertical;
  flex-direction: column;
}

/* form */
/* table */
table {
  width: 100%;
  background-color: #FFF;
}
table th, table td {
  padding: 15px;
  border: 1px solid #ECEEEF;
  vertical-align: middle;
}
table th {
  background-color: #F3F4F5;
  font-weight: bold;
}
table thead th {
  background-color: #ECEEEF;
  color: #FFF;
}
@media screen and (max-width: 700px) {
  table.sp-column {
    display: block;
    border: 1px solid #ECEEEF;
  }
  table.sp-column thead, table.sp-column tbody, table.sp-column tr, table.sp-column th, table.sp-column td {
    display: block;
  }
  table.sp-column th, table.sp-column td {
    padding: 10px;
    border: none;
  }
}

/* table */
/* text */
.heading, .heading-lv02, .heading-lv01 {
  line-height: 1.4;
}
.heading:not(:last-child), .heading-lv02:not(:last-child), .heading-lv01:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 700px) {
  .heading:not(:last-child), .heading-lv02:not(:last-child), .heading-lv01:not(:last-child) {
    margin-bottom: 35px;
  }
}
.heading:not(:last-child) + .sub, .heading-lv02:not(:last-child) + .sub, .heading-lv01:not(:last-child) + .sub {
  margin-top: -20px;
}
.heading:not(:last-child) + .sub:not(:last-child), .heading-lv02:not(:last-child) + .sub:not(:last-child), .heading-lv01:not(:last-child) + .sub:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 700px) {
  .heading:not(:last-child) + .sub, .heading-lv02:not(:last-child) + .sub, .heading-lv01:not(:last-child) + .sub {
    margin-top: -10px;
  }
  .heading:not(:last-child) + .sub:not(:last-child), .heading-lv02:not(:last-child) + .sub:not(:last-child), .heading-lv01:not(:last-child) + .sub:not(:last-child) {
    margin-bottom: 30px;
  }
}
.heading-lv01 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
.heading-lv01 span {
  display: block;
}
.heading-lv01 span:nth-child(1) {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 80px;
  font-size: 5rem;
  color: #07375D;
}
.heading-lv01 span:nth-child(2) {
  color: #ABB7C1;
}
.heading-lv01.white span {
  color: #FFF;
}
@media screen and (min-width: 701px) and (max-width: 1216px) {
  .heading-lv01 {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .heading-lv01 span:nth-child(1) {
    font-size: min(6vw, 70 + px);
    font-size: min(6vw, 4.375rem);
  }
}
@media screen and (max-width: 700px) {
  .heading-lv01 {
    font-size: 16px;
    font-size: 1rem;
  }
  .heading-lv01 span:nth-child(1) {
    font-size: min(8vw, 60 + px);
    font-size: min(8vw, 3.75rem);
  }
}
.heading-lv02 {
  font-size: 22px;
  font-size: 1.375rem;
  color: #07375D;
  border-left: 4px solid #07375D;
  padding-left: 15px;
}
.heading-lv02:not(:last-child) {
  margin-bottom: 20px;
}
.heading-lv02:not(:last-child) + .sub:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 700px) {
  .heading-lv02:not(:last-child) + .sub:not(:last-child) {
    margin-bottom: 40px;
  }
}
.heading-lv02.border {
  position: relative;
}
.heading-lv02.border:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  bottom: -20px;
  background: #ECEEEF;
}
.heading-lv02.border:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 700px) {
  .heading-lv02 {
    font-size: 19px;
    font-size: 1.1875rem;
    padding-left: 10px;
  }
  .heading-lv02:not(:last-child) {
    margin-bottom: 15px;
  }
  .heading-lv02.border:after {
    bottom: -15px;
  }
  .heading-lv02.border:not(:last-child) {
    margin-bottom: 30px;
  }
}
.heading-lv03 {
  line-height: 1.3;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
.heading-lv03:not(:last-child) {
  margin-bottom: 30px;
}
.heading-lv03:not(:last-child) + .sub:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 700px) {
  .heading-lv03:not(:last-child) + .sub {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .heading-lv03:not(:last-child) + .sub:not(:last-child) {
    margin-bottom: 30px;
  }
}
.heading-lv03 span {
  display: block;
}
.heading-lv03 span:nth-child(1) {
  font-family: "Baskervville", serif;
  font-weight: 400;
  font-size: 52px;
  font-size: 3.25rem;
  font-weight: normal;
  color: #07375D;
}
.heading-lv03 span:nth-child(2) {
  color: #ABB7C1;
}
@media screen and (min-width: 701px) and (max-width: 1216px) {
  .heading-lv03 > span:nth-child(1) {
    font-size: 44px;
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 700px) {
  .heading-lv03 {
    font-size: 16px;
    font-size: 1rem;
  }
  .heading-lv03 span:nth-child(1) {
    font-size: min(6vw, 34 + px);
    font-size: min(6vw, 2.125rem);
  }
}
.heading-lv04 {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 8px;
  line-height: 1.4;
  color: #07375D;
}
.heading-lv04:not(:last-child) {
  margin-bottom: 50px;
}
.heading-lv04:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 28px;
  height: 4px;
  bottom: 0;
  margin-left: -14px;
  background: #07375D;
}
.heading-lv04 + .sub {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  margin-top: -25px;
}
.heading-lv04 + .sub:not(:last-child) {
  margin-bottom: 70px;
}

.fs11 {
  font-size: 11px;
  font-size: 0.6875rem;
}
.fs12 {
  font-size: 12px;
  font-size: 0.75rem;
}
.fs13 {
  font-size: 13px;
  font-size: 0.8125rem;
}
.fs14 {
  font-size: 14px;
  font-size: 0.875rem;
}
.fs15 {
  font-size: 15px;
  font-size: 0.9375rem;
}
.fs16 {
  font-size: 16px;
  font-size: 1rem;
}
.fs17 {
  font-size: 17px;
  font-size: 1.0625rem;
}
.fs18 {
  font-size: 18px;
  font-size: 1.125rem;
}
.fs19 {
  font-size: 19px;
  font-size: 1.1875rem;
}
.fs20 {
  font-size: 20px;
  font-size: 1.25rem;
}
.fs21 {
  font-size: 21px;
  font-size: 1.3125rem;
}
.fs22 {
  font-size: 22px;
  font-size: 1.375rem;
}
.fs23 {
  font-size: 23px;
  font-size: 1.4375rem;
}
.fs24 {
  font-size: 24px;
  font-size: 1.5rem;
}
.fs25 {
  font-size: 25px;
  font-size: 1.5625rem;
}
.fs26 {
  font-size: 26px;
  font-size: 1.625rem;
}
.fs27 {
  font-size: 27px;
  font-size: 1.6875rem;
}
.fs28 {
  font-size: 28px;
  font-size: 1.75rem;
}
.fs29 {
  font-size: 29px;
  font-size: 1.8125rem;
}
.fs30 {
  font-size: 30px;
  font-size: 1.875rem;
}

.tac {
  text-align: center;
}
.tal {
  text-align: left;
}
.tar {
  text-align: right;
}

.text-sup {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 14px;
  font-size: 0.875rem;
}
.text-red {
  color: #BE131F;
}
.text-blue {
  color: #2a90cd;
}
.text-bold {
  font-weight: bold;
}

/* text */
/* etc */
.lh0 {
  line-height: 0;
}

.w10 {
  width: 10px;
}
.w20 {
  width: 20px;
}
.w30 {
  width: 30px;
}
.w40 {
  width: 40px;
}
.w50 {
  width: 50px;
}
.w60 {
  width: 60px;
}
.w70 {
  width: 70px;
}
.w80 {
  width: 80px;
}
.w90 {
  width: 90px;
}
.w100 {
  width: 100px;
}
.w110 {
  width: 110px;
}
.w120 {
  width: 120px;
}
.w130 {
  width: 130px;
}
.w140 {
  width: 140px;
}
.w150 {
  width: 150px;
}
.w160 {
  width: 160px;
}
.w170 {
  width: 170px;
}
.w180 {
  width: 180px;
}
.w190 {
  width: 190px;
}
.w200 {
  width: 200px;
}
.w210 {
  width: 210px;
}
.w220 {
  width: 220px;
}
.w230 {
  width: 230px;
}
.w240 {
  width: 240px;
}
.w250 {
  width: 250px;
}
.w260 {
  width: 260px;
}
.w270 {
  width: 270px;
}
.w280 {
  width: 280px;
}
.w290 {
  width: 290px;
}
.w300 {
  width: 300px;
}
.w310 {
  width: 310px;
}
.w320 {
  width: 320px;
}
.w330 {
  width: 330px;
}
.w340 {
  width: 340px;
}
.w350 {
  width: 350px;
}
.w360 {
  width: 360px;
}
.w370 {
  width: 370px;
}
.w380 {
  width: 380px;
}
.w390 {
  width: 390px;
}
.w400 {
  width: 400px;
}
.w410 {
  width: 410px;
}
.w420 {
  width: 420px;
}
.w430 {
  width: 430px;
}
.w440 {
  width: 440px;
}
.w450 {
  width: 450px;
}
.w460 {
  width: 460px;
}
.w470 {
  width: 470px;
}
.w480 {
  width: 480px;
}
.w490 {
  width: 490px;
}
.w500 {
  width: 500px;
}
.w510 {
  width: 510px;
}
.w520 {
  width: 520px;
}
.w530 {
  width: 530px;
}
.w540 {
  width: 540px;
}
.w550 {
  width: 550px;
}
.w560 {
  width: 560px;
}
.w570 {
  width: 570px;
}
.w580 {
  width: 580px;
}
.w590 {
  width: 590px;
}
.w600 {
  width: 600px;
}
.w610 {
  width: 610px;
}
.w620 {
  width: 620px;
}
.w630 {
  width: 630px;
}
.w640 {
  width: 640px;
}
.w650 {
  width: 650px;
}
.w660 {
  width: 660px;
}
.w670 {
  width: 670px;
}
.w680 {
  width: 680px;
}
.w690 {
  width: 690px;
}
.w700 {
  width: 700px;
}
.w710 {
  width: 710px;
}
.w720 {
  width: 720px;
}
.w730 {
  width: 730px;
}
.w740 {
  width: 740px;
}
.w750 {
  width: 750px;
}
.w760 {
  width: 760px;
}
.w770 {
  width: 770px;
}
.w780 {
  width: 780px;
}
.w790 {
  width: 790px;
}
.w800 {
  width: 800px;
}
.w810 {
  width: 810px;
}
.w820 {
  width: 820px;
}
.w830 {
  width: 830px;
}
.w840 {
  width: 840px;
}
.w850 {
  width: 850px;
}
.w860 {
  width: 860px;
}
.w870 {
  width: 870px;
}
.w880 {
  width: 880px;
}
.w890 {
  width: 890px;
}
.w900 {
  width: 900px;
}
.w910 {
  width: 910px;
}
.w920 {
  width: 920px;
}
.w930 {
  width: 930px;
}
.w940 {
  width: 940px;
}
.w950 {
  width: 950px;
}
.w960 {
  width: 960px;
}
.w970 {
  width: 970px;
}
.w980 {
  width: 980px;
}
.w990 {
  width: 990px;
}
.w1000 {
  width: 1000px;
}
.w150 {
  width: 150px;
}
.w200 {
  width: 200px;
}
.w250 {
  width: 250px;
}
.w300 {
  width: 300px;
}
.w350 {
  width: 350px;
}
.w400 {
  width: 400px;
}
.w450 {
  width: 450px;
}
.w500 {
  width: 500px;
}
.w550 {
  width: 550px;
}
.w600 {
  width: 600px;
}
.w650 {
  width: 650px;
}
.w700 {
  width: 700px;
}
.w750 {
  width: 750px;
}
.w800 {
  width: 800px;
}
.w850 {
  width: 850px;
}
.w900 {
  width: 900px;
}
.w950 {
  width: 950px;
}
.w1000 {
  width: 1000px;
}
.w5p {
  width: 5%;
}
.w10p {
  width: 10%;
}
.w15p {
  width: 15%;
}
.w20p {
  width: 20%;
}
.w25p {
  width: 25%;
}
.w30p {
  width: 30%;
}
.w35p {
  width: 35%;
}
.w40p {
  width: 40%;
}
.w45p {
  width: 45%;
}
.w50p {
  width: 50%;
}
.w55p {
  width: 55%;
}
.w60p {
  width: 60%;
}
.w65p {
  width: 65%;
}
.w70p {
  width: 70%;
}
.w75p {
  width: 75%;
}
.w80p {
  width: 80%;
}
.w85p {
  width: 85%;
}
.w90p {
  width: 90%;
}
.w95p {
  width: 95%;
}
.w100p {
  width: 100%;
}
@media screen and (max-width: 700px) {
  .w10-sp {
    width: 10px;
  }
}
@media screen and (max-width: 700px) {
  .w20-sp {
    width: 20px;
  }
}
@media screen and (max-width: 700px) {
  .w30-sp {
    width: 30px;
  }
}
@media screen and (max-width: 700px) {
  .w40-sp {
    width: 40px;
  }
}
@media screen and (max-width: 700px) {
  .w50-sp {
    width: 50px;
  }
}
@media screen and (max-width: 700px) {
  .w60-sp {
    width: 60px;
  }
}
@media screen and (max-width: 700px) {
  .w70-sp {
    width: 70px;
  }
}
@media screen and (max-width: 700px) {
  .w80-sp {
    width: 80px;
  }
}
@media screen and (max-width: 700px) {
  .w90-sp {
    width: 90px;
  }
}
@media screen and (max-width: 700px) {
  .w100-sp {
    width: 100px;
  }
}
@media screen and (max-width: 700px) {
  .w110-sp {
    width: 110px;
  }
}
@media screen and (max-width: 700px) {
  .w120-sp {
    width: 120px;
  }
}
@media screen and (max-width: 700px) {
  .w130-sp {
    width: 130px;
  }
}
@media screen and (max-width: 700px) {
  .w140-sp {
    width: 140px;
  }
}
@media screen and (max-width: 700px) {
  .w150-sp {
    width: 150px;
  }
}
@media screen and (max-width: 700px) {
  .w160-sp {
    width: 160px;
  }
}
@media screen and (max-width: 700px) {
  .w170-sp {
    width: 170px;
  }
}
@media screen and (max-width: 700px) {
  .w180-sp {
    width: 180px;
  }
}
@media screen and (max-width: 700px) {
  .w190-sp {
    width: 190px;
  }
}
@media screen and (max-width: 700px) {
  .w200-sp {
    width: 200px;
  }
}
@media screen and (max-width: 700px) {
  .w210-sp {
    width: 210px;
  }
}
@media screen and (max-width: 700px) {
  .w220-sp {
    width: 220px;
  }
}
@media screen and (max-width: 700px) {
  .w230-sp {
    width: 230px;
  }
}
@media screen and (max-width: 700px) {
  .w240-sp {
    width: 240px;
  }
}
@media screen and (max-width: 700px) {
  .w250-sp {
    width: 250px;
  }
}
@media screen and (max-width: 700px) {
  .w260-sp {
    width: 260px;
  }
}
@media screen and (max-width: 700px) {
  .w270-sp {
    width: 270px;
  }
}
@media screen and (max-width: 700px) {
  .w280-sp {
    width: 280px;
  }
}
@media screen and (max-width: 700px) {
  .w290-sp {
    width: 290px;
  }
}
@media screen and (max-width: 700px) {
  .w300-sp {
    width: 300px;
  }
}
@media screen and (max-width: 700px) {
  .w310-sp {
    width: 310px;
  }
}
@media screen and (max-width: 700px) {
  .w320-sp {
    width: 320px;
  }
}
@media screen and (max-width: 700px) {
  .w330-sp {
    width: 330px;
  }
}
@media screen and (max-width: 700px) {
  .w340-sp {
    width: 340px;
  }
}
@media screen and (max-width: 700px) {
  .w350-sp {
    width: 350px;
  }
}
@media screen and (max-width: 700px) {
  .w360-sp {
    width: 360px;
  }
}
@media screen and (max-width: 700px) {
  .w370-sp {
    width: 370px;
  }
}
@media screen and (max-width: 700px) {
  .w380-sp {
    width: 380px;
  }
}
@media screen and (max-width: 700px) {
  .w390-sp {
    width: 390px;
  }
}
@media screen and (max-width: 700px) {
  .w400-sp {
    width: 400px;
  }
}
@media screen and (max-width: 700px) {
  .w410-sp {
    width: 410px;
  }
}
@media screen and (max-width: 700px) {
  .w420-sp {
    width: 420px;
  }
}
@media screen and (max-width: 700px) {
  .w430-sp {
    width: 430px;
  }
}
@media screen and (max-width: 700px) {
  .w440-sp {
    width: 440px;
  }
}
@media screen and (max-width: 700px) {
  .w450-sp {
    width: 450px;
  }
}
@media screen and (max-width: 700px) {
  .w460-sp {
    width: 460px;
  }
}
@media screen and (max-width: 700px) {
  .w470-sp {
    width: 470px;
  }
}
@media screen and (max-width: 700px) {
  .w480-sp {
    width: 480px;
  }
}
@media screen and (max-width: 700px) {
  .w490-sp {
    width: 490px;
  }
}
@media screen and (max-width: 700px) {
  .w500-sp {
    width: 500px;
  }
}
@media screen and (max-width: 700px) {
  .w150-sp {
    width: 150px;
  }
}
@media screen and (max-width: 700px) {
  .w200-sp {
    width: 200px;
  }
}
@media screen and (max-width: 700px) {
  .w250-sp {
    width: 250px;
  }
}
@media screen and (max-width: 700px) {
  .w300-sp {
    width: 300px;
  }
}
@media screen and (max-width: 700px) {
  .w350-sp {
    width: 350px;
  }
}
@media screen and (max-width: 700px) {
  .w400-sp {
    width: 400px;
  }
}
@media screen and (max-width: 700px) {
  .w450-sp {
    width: 450px;
  }
}
@media screen and (max-width: 700px) {
  .w500-sp {
    width: 500px;
  }
}
@media screen and (max-width: 700px) {
  .w5p-sp {
    width: 5%;
  }
}
@media screen and (max-width: 700px) {
  .w10p-sp {
    width: 10%;
  }
}
@media screen and (max-width: 700px) {
  .w15p-sp {
    width: 15%;
  }
}
@media screen and (max-width: 700px) {
  .w20p-sp {
    width: 20%;
  }
}
@media screen and (max-width: 700px) {
  .w25p-sp {
    width: 25%;
  }
}
@media screen and (max-width: 700px) {
  .w30p-sp {
    width: 30%;
  }
}
@media screen and (max-width: 700px) {
  .w35p-sp {
    width: 35%;
  }
}
@media screen and (max-width: 700px) {
  .w40p-sp {
    width: 40%;
  }
}
@media screen and (max-width: 700px) {
  .w45p-sp {
    width: 45%;
  }
}
@media screen and (max-width: 700px) {
  .w50p-sp {
    width: 50%;
  }
}
@media screen and (max-width: 700px) {
  .w55p-sp {
    width: 55%;
  }
}
@media screen and (max-width: 700px) {
  .w60p-sp {
    width: 60%;
  }
}
@media screen and (max-width: 700px) {
  .w65p-sp {
    width: 65%;
  }
}
@media screen and (max-width: 700px) {
  .w70p-sp {
    width: 70%;
  }
}
@media screen and (max-width: 700px) {
  .w75p-sp {
    width: 75%;
  }
}
@media screen and (max-width: 700px) {
  .w80p-sp {
    width: 80%;
  }
}
@media screen and (max-width: 700px) {
  .w85p-sp {
    width: 85%;
  }
}
@media screen and (max-width: 700px) {
  .w90p-sp {
    width: 90%;
  }
}
@media screen and (max-width: 700px) {
  .w95p-sp {
    width: 95%;
  }
}
@media screen and (max-width: 700px) {
  .w100p-sp {
    width: 100%;
  }
}

@media screen and (max-width: 700px) {
  br.pc {
    display: none;
  }
}
br.tablet {
  display: none;
}
@media screen and (min-width: 701px) and (max-width: 1216px) {
  br.tablet {
    display: inline;
  }
}
br.sp {
  display: none;
}
@media screen and (max-width: 700px) {
  br.sp {
    display: inline;
  }
}

@media screen and (max-width: 700px) {
  img.pc {
    display: none;
  }
}
@media screen and (min-width: 701px) {
  img.sp {
    display: none;
  }
}

@media screen and (min-width: 701px) {
  .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .hidden-sp {
    display: none;
  }
}

/* etc */
/* column */
.column-style, .column-04, .column-03, .column-02 {
  display: flex;
  flex-wrap: wrap;
  margin-right: -30px;
}
.column-style:last-child, .column-04:last-child, .column-03:last-child, .column-02:last-child {
  margin-bottom: -30px;
}
.column-style > *, .column-04 > *, .column-03 > *, .column-02 > * {
  width: 10px;
  margin-right: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 501px) {
  .column-style > *.w5p, .column-04 > *.w5p, .column-03 > *.w5p, .column-02 > *.w5p {
    width: calc(5% - 30px);
  }
  .column-style > *.w10p, .column-04 > *.w10p, .column-03 > *.w10p, .column-02 > *.w10p {
    width: calc(10% - 30px);
  }
  .column-style > *.w15p, .column-04 > *.w15p, .column-03 > *.w15p, .column-02 > *.w15p {
    width: calc(15% - 30px);
  }
  .column-style > *.w20p, .column-04 > *.w20p, .column-03 > *.w20p, .column-02 > *.w20p {
    width: calc(20% - 30px);
  }
  .column-style > *.w25p, .column-04 > *.w25p, .column-03 > *.w25p, .column-02 > *.w25p {
    width: calc(25% - 30px);
  }
  .column-style > *.w30p, .column-04 > *.w30p, .column-03 > *.w30p, .column-02 > *.w30p {
    width: calc(30% - 30px);
  }
  .column-style > *.w35p, .column-04 > *.w35p, .column-03 > *.w35p, .column-02 > *.w35p {
    width: calc(35% - 30px);
  }
  .column-style > *.w40p, .column-04 > *.w40p, .column-03 > *.w40p, .column-02 > *.w40p {
    width: calc(40% - 30px);
  }
  .column-style > *.w45p, .column-04 > *.w45p, .column-03 > *.w45p, .column-02 > *.w45p {
    width: calc(45% - 30px);
  }
  .column-style > *.w50p, .column-04 > *.w50p, .column-03 > *.w50p, .column-02 > *.w50p {
    width: calc(50% - 30px);
  }
  .column-style > *.w55p, .column-04 > *.w55p, .column-03 > *.w55p, .column-02 > *.w55p {
    width: calc(55% - 30px);
  }
  .column-style > *.w60p, .column-04 > *.w60p, .column-03 > *.w60p, .column-02 > *.w60p {
    width: calc(60% - 30px);
  }
  .column-style > *.w65p, .column-04 > *.w65p, .column-03 > *.w65p, .column-02 > *.w65p {
    width: calc(65% - 30px);
  }
  .column-style > *.w70p, .column-04 > *.w70p, .column-03 > *.w70p, .column-02 > *.w70p {
    width: calc(70% - 30px);
  }
  .column-style > *.w75p, .column-04 > *.w75p, .column-03 > *.w75p, .column-02 > *.w75p {
    width: calc(75% - 30px);
  }
  .column-style > *.w80p, .column-04 > *.w80p, .column-03 > *.w80p, .column-02 > *.w80p {
    width: calc(80% - 30px);
  }
  .column-style > *.w85p, .column-04 > *.w85p, .column-03 > *.w85p, .column-02 > *.w85p {
    width: calc(85% - 30px);
  }
  .column-style > *.w90p, .column-04 > *.w90p, .column-03 > *.w90p, .column-02 > *.w90p {
    width: calc(90% - 30px);
  }
  .column-style > *.w95p, .column-04 > *.w95p, .column-03 > *.w95p, .column-02 > *.w95p {
    width: calc(95% - 30px);
  }
  .column-style > *.w100p, .column-04 > *.w100p, .column-03 > *.w100p, .column-02 > *.w100p {
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 700px) {
  .column-style, .column-04, .column-03, .column-02 {
    margin-right: -20px;
  }
  .column-style:last-child, .column-04:last-child, .column-03:last-child, .column-02:last-child {
    margin-bottom: -20px;
  }
  .column-style > *, .column-04 > *, .column-03 > *, .column-02 > * {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
.column-02 > * {
  width: calc(50% - 30px);
}
.column-03 > * {
  width: calc(33.3333% - 30px);
}
.column-04 > * {
  width: calc(25% - 30px);
}
@media screen and (max-width: 700px) {
  .column-02 > * {
    width: calc(50% - 20px);
  }
  .column-03 > * {
    width: calc(50% - 20px);
  }
  .column-04 > * {
    width: calc(33.3333% - 20px);
  }
}
@media screen and (max-width: 700px) and (max-width: 500px) {
  .column-02 > * {
    width: calc(100% - 20px);
  }
  .column-03 > * {
    width: calc(100% - 20px);
  }
  .column-04 > * {
    width: calc(50% - 20px);
  }
}

/* column */
.post .margin-bottom:not(:last-child):not([class^=mb]), .post table:not(:last-child):not([class^=mb]), .post .wp-caption:not(:last-child):not([class^=mb]), .post blockquote:not(:last-child):not([class^=mb]), .post ol:not(:last-child):not([class^=mb]), .post ul:not(:last-child):not([class^=mb]) {
  margin-bottom: 30px;
}
.post ul li {
  list-style-type: none;
  text-indent: -1em;
  padding-left: 1em;
}
.post ul li:before {
  content: "・";
  margin-right: 0.5em;
}
.post ol {
  padding-left: 1.5em;
}
.post ol li {
  list-style-type: decimal;
}
.post ol li:not(:last-child) {
  margin-bottom: 10px;
}
.post ol li:last-child {
  padding-bottom: 0;
}
.post strong {
  font-weight: bold;
}
.post em {
  font-style: italic;
}
.post del {
  text-decoration: line-through;
  color: #ABB7C1;
}
.post blockquote {
  display: block;
  padding: 15px;
  background-color: #F3F4F5;
  clear: both;
}
.post .h, .post h4, .post h3:not([class*=heading]), .post h2:not([class*=heading]), .post h1 {
  line-height: 1.3;
  letter-spacing: 0.1em;
  color: #07375D;
}
.post .h:not(:first-child), .post h4:not(:first-child), .post h3:not(:first-child):not([class*=heading]), .post h2:not(:first-child):not([class*=heading]), .post h1:not(:first-child) {
  margin-top: 45px;
}
.post .h:not(:last-child), .post h4:not(:last-child), .post h3:not(:last-child):not([class*=heading]), .post h2:not(:last-child):not([class*=heading]), .post h1:not(:last-child) {
  margin-bottom: 15px;
}
.post h1 {
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: bold;
}
.post h2:not([class*=heading]) {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  border-bottom: 2px solid #DEE1E3;
  padding-bottom: 10px;
  position: relative;
}
.post h2:not([class*=heading]):after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  width: 65px;
  height: 2px;
  background: #07375D;
}
.post h3:not([class*=heading]) {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  border-left: 3px solid #07375D;
  padding-left: 10px;
}
.post h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
.post h5 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
.post iframe {
  max-width: 100%;
}
.post a {
  color: #2a90cd;
  text-decoration: underline;
}
.post a:hover {
  text-decoration: none;
}
.post .aligncenter {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.post .aligncenter:not(:first-child) {
  margin-top: 30px;
}
.post .aligncenter:not(:last-child) {
  margin-bottom: 30px;
}
.post .alignright {
  text-align: right;
  float: right;
  display: block;
  margin: 0 0 10px 15px;
}
.post .alignleft {
  text-align: left;
  float: left;
  margin: 0 15px 10px 0;
}
.post .wp-caption {
  max-width: 100%;
}
.post .wp-caption-text {
  color: #ABB7C1;
}
.post p:not(:last-child):not([class^=mb]) {
  margin-bottom: 30px;
}
.post table td p:not(:last-child) {
  margin-bottom: 10px;
}
.post cite {
  border: 1px solid #ECEEEF;
  margin-top: 15px;
  padding: 10px;
  display: -moz-inline-box;
  display: inline-block;
}
.post cite:before, .post cite:after {
  content: "”";
}
.post small {
  font-size: 12px;
  font-size: 0.75rem;
}
.post .video-container {
  max-width: 640px;
  margin: 30px auto 0;
}
.post .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.post .video iframe, .post .video object, .post .video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 700px) {
  .post .alignright {
    max-width: 160px;
    height: auto;
    margin: 0 0 10px 10px;
  }
  .post .alignleft {
    max-width: 160px;
    height: auto;
    margin: 0 10px 10px 0;
  }
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.eg-parent > *:not(.eg) {
  opacity: 0;
  visibility: hidden;
}

*[data-emergence], *.eg {
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  opacity: 0;
}
*[data-emergence=visible] {
  animation-name: fadeIn;
}
@supports (clip-path: polygon(0 0, 0 0, 0 0)) {
  *[data-anm=skew] {
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    transition: 1s all ease-out;
  }
  *[data-anm=skew][data-emergence=visible] {
    animation-duration: 0.3s;
    transition-delay: 0.3s;
    -webkit-clip-path: polygon(0 0, 220% 0, 0 220%, 0 0);
    clip-path: polygon(0 0, 220% 0, 0 220%, 0 0);
  }
}

/* floating */
@keyframes floating {
  0% {
    transform: translateY(0%);
  }
  50% {
    transform: translateY(30%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }
  50% {
    -webkit-transform: translateY(30%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes flipIn {
  0% {
    opacity: 0;
    -webkit-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}
@keyframes flipIn {
  0% {
    opacity: 0;
    -webkit-transform: perspective(2000px) rotateY(90deg);
    -ms-transform: perspective(2000px) rotateY(90deg);
    transform: perspective(2000px) rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(2000px) rotateY(0);
    -ms-transform: perspective(2000px) rotateY(0);
    transform: perspective(2000px) rotateY(0);
  }
}
.flipIn {
  -webkit-animation-name: flipIn;
  animation-name: flipIn;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
