@charset "UTF-8";
/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
/* HTML5要素対応 */
main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, picture {
  display: block;
}

/* 要素の基本リセット */
body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, mark, audio, video, figure {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
}

/* リストと引用 */
li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

/* 表・画像・フォーム要素 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

img {
  vertical-align: top;
}

/* 入力系要素 */
input,
textarea,
select,
button {
  font: inherit;
  appearance: none;
}

input,
select {
  vertical-align: middle;
}

/* 強調・補足など */
sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

mark {
  background: none;
  font-style: normal;
}

/* ボタン */
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

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

html {
  font-size: 62.5%;
}

/*------------
Body
--------------*/
body {
  background: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  color: #2F2F2F;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.87;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 767px) {
  body {
    line-height: 1.7;
  }
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

/*------------
Element
--------------*/
h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

a {
  letter-spacing: 0.05em;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

ul {
  list-style: none;
}

/*------------
Utility
--------------*/
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  .sp-only {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sp-only {
    display: none !important;
  }
}
/*-----------------------------------------------------------
header
-----------------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
  background: #fff;
}
.header * {
  transition: all 0.4s ease;
}
.header-inner {
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  line-height: 1;
}
.header-logo .logo01 {
  width: 114px;
  margin-right: 30px;
}
.header-logo .logo02 {
  width: 115px;
}
.header-txt {
  font-size: 1.2rem;
  line-height: 1.5;
}
.header-right-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.header-btns {
  display: flex;
  gap: 8px;
}
.header-btns > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  border: 1px solid #1DABE3;
  background: #1DABE3;
  color: #fff;
  font-weight: 700;
  position: relative;
  transition: all 0.3s;
}
.header-btns > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border: 0px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transition: all 0.3s;
}
.header-btns > li > a:hover {
  background: #fff;
  color: #1DABE3;
}
.header-btns > li > a:hover::before {
  border-top: 1px solid #1DABE3;
  border-right: 1px solid #1DABE3;
}
.header-navi01 {
  display: flex;
  gap: 20px;
  margin-right: 25px;
}
.header-navi01 > li {
  font-size: 1.3rem;
}
.header-navi01 > li:not(:last-child) {
  position: relative;
}
.header-navi01 > li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  background: #DCDEDF;
}
.header-navi01 > li > a:hover {
  text-decoration: underline;
}
.header-navi02 {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  margin-right: 15px;
}
.header-navi02 > li:not(:last-child) {
  position: relative;
}
.header-navi02 > li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  background: #DCDEDF;
}
.header-navi02 > li > a:hover {
  text-decoration: underline;
}
.header-br {
  display: none;
}
.header .hamburger {
  display: none;
  width: 50px;
  height: 50px;
  position: relative;
  margin-right: 30px;
  cursor: pointer;
  transition: all 0.4s;
}
.header .hamburger span {
  width: 36px;
  height: 1px;
  background: #707070;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
.header .hamburger span:nth-child(1) {
  top: 9px;
}
.header .hamburger span:nth-child(2) {
  top: 18px;
}
.header .hamburger span:nth-child(3) {
  top: 27px;
}
.header .hamburger p {
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  text-align: center;
  color: #242424;
}
.header .hamburger.is-open span:nth-child(1) {
  top: 18px;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header .hamburger.is-open span:nth-child(2) {
  display: none;
}
.header .hamburger.is-open span:nth-child(3) {
  top: 18px;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header .gnavi {
  max-width: 770px;
  display: flex;
  justify-content: space-between;
  color: #fff;
}
.header .gnavi-column {
  min-width: 190px;
}
.header .gnavi-ttl .txt {
  display: block;
  font-size: 1.4rem;
  padding-bottom: 5px;
  margin-bottom: 10px;
  white-space: nowrap;
  position: relative;
}
.header .gnavi-ttl .txt::before {
  content: "";
  width: 100%;
  height: 0;
  border-bottom: 1px solid #8D8D8D;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(1);
  transition: all 0.4s;
  transform-origin: left;
}
.header .gnavi-ttl a.txt:hover::before {
  transform: scale(0);
}
.header .gnavi-list > li {
  font-size: 1.2rem;
  line-height: 1.6;
  white-space: nowrap;
}
.header .gnavi-list > li:not(:last-child) {
  margin-bottom: 5px;
}
.header .gnavi-list > li > a:hover {
  opacity: 1;
  text-decoration: underline;
}
.header .gnavi-item + .gnavi-item {
  margin-top: 40px;
}
.header .gnavi-links {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 70px;
}
.header .gnavi-links-btn {
  width: 230px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  min-height: 50px;
  letter-spacing: 0;
  font-size: 1.6rem;
  font-weight: 700;
  transition: all 0.3s;
}
.header .gnavi-links-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.header .gnavi-sns {
  display: flex;
  gap: 20px;
  justify-content: center;
  line-height: 1;
}
.header .gnavi-sns a {
  display: block;
  transition: all 0.3s;
}
.header .gnavi-sns a:hover {
  opacity: 0.6;
}
.header .gnavi-sns img {
  width: 40px;
}
.header .gnavi-drawer {
  visibility: hidden;
  padding: 100px 60px;
  position: fixed;
  top: 90px;
  bottom: 0;
  right: 0;
  left: 0;
  transition: all 0.4s ease;
  opacity: 0;
  z-index: 999;
  width: 100%;
  height: calc(100% - 90px);
  background: rgba(47, 47, 47, 0.95);
}
.header .gnavi-drawer.is-open {
  visibility: visible;
  overflow-y: auto;
  opacity: 1;
}
.header .gnavi .container {
  padding: 60px 70px;
  min-height: 590px;
}

.header.is-fixed .header-inner {
  align-items: center;
}
.header.is-fixed .header-logo {
  margin-bottom: 0;
}
.header.is-fixed .header-logo .logo01 {
  width: 91px;
  margin-right: 23px;
}
.header.is-fixed .header-logo .logo02 {
  width: 92px;
}
.header.is-fixed .header-txt {
  display: none;
}
.header.is-fixed .header-right-top {
  margin-bottom: 0;
}
.header.is-fixed .header-navi01 {
  display: none;
}
.header.is-fixed .header-navi02 {
  display: none;
}
.header.is-fixed .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 1400px) {
  .header-logo {
    margin-bottom: 10px;
  }
  .header-logo .logo01 {
    width: 100px;
    margin-right: 20px;
  }
  .header-logo .logo02 {
    width: 100px;
  }
  .header-txt {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .header-right-top {
    margin-bottom: 15px;
  }
  .header-btns > li > a {
    width: 110px;
    height: 36px;
    font-size: 1.2rem;
  }
  .header-btns > li > a::before {
    right: 10px;
    width: 8px;
    height: 8px;
  }
  .header-navi02 {
    gap: 24px;
    margin-right: 0;
  }
  .header-navi02 > li {
    font-size: 1.4rem;
  }
  .header-navi02 > li:not(:last-child)::after {
    height: 14px;
    right: -12px;
  }
  .header-br {
    display: inline;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .header .header-inner {
    align-items: center;
  }
  .header .header-logo {
    margin-bottom: 0;
  }
  .header .header-logo .logo01 {
    width: 91px;
    margin-right: 23px;
  }
  .header .header-logo .logo02 {
    width: 92px;
  }
  .header .header-txt {
    display: none;
  }
  .header .header-right-top {
    margin-bottom: 0;
  }
  .header .header-navi01 {
    display: none;
  }
  .header .header-navi02 {
    display: none;
  }
  .header .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .header {
    position: fixed;
  }
  .header-inner {
    padding: 10px 10px 10px 5%;
  }
  .header-logo {
    margin-bottom: 0;
  }
  .header-logo .logo01 {
    width: 70px;
    margin-right: 15px;
  }
  .header-logo .logo02 {
    width: 80px;
  }
  .header-txt {
    display: none;
  }
  .header-right-top {
    margin-bottom: 0;
  }
  .header-btns {
    display: none;
  }
  .header-navi01 {
    display: none;
  }
  .header-navi02 {
    display: none;
  }
  .header-br {
    display: none;
  }
  .header .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    width: 40px;
    height: 35px;
    margin-right: 0;
  }
  .header .hamburger span {
    width: 30px;
  }
  .header .hamburger span:nth-child(1) {
    top: 3px;
  }
  .header .hamburger span:nth-child(2) {
    top: 10px;
  }
  .header .hamburger span:nth-child(3) {
    top: 17px;
  }
  .header .hamburger p {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  .header .hamburger.is-open span:nth-child(1) {
    top: 10px;
  }
  .header .hamburger.is-open span:nth-child(3) {
    top: 10px;
  }
  .header .gnavi {
    max-width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    gap: 30px;
  }
  .header .gnavi-column {
    min-width: auto;
  }
  .header .gnavi-item + .gnavi-item {
    margin-top: 30px;
  }
  .header .gnavi-links {
    margin: 15px auto;
    justify-content: flex-start;
    display: block;
  }
  .header .gnavi-links-btn {
    width: auto;
    min-width: 160px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    min-height: 42px;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 15px 0;
  }
  .header .gnavi-sns {
    gap: 15px;
  }
  .header .gnavi-sns img {
    width: 34px;
  }
  .header .gnavi-drawer {
    padding: 50px 5%;
    top: 55px;
    height: calc(100% - 55px);
  }
  .header.is-fixed .header-logo {
    margin-bottom: 0;
  }
  .header.is-fixed .header-logo .logo01 {
    width: 70px;
    margin-right: 15px;
  }
  .header.is-fixed .header-logo .logo02 {
    width: 80px;
  }
}
/*-----------------------------------------------------------
footer
-----------------------------------------------------------*/
.footer-contact .top-ttl {
  text-align: center;
}
.footer-contact .top-ttl .en {
  margin-bottom: 0;
}
.footer-contact-cont {
  display: flex;
  flex-wrap: wrap;
}
.footer-contact-item {
  width: 50%;
  height: 330px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  margin-top: 1px;
}
.footer-contact-item.item01 {
  background: url(../images/contact_img01.jpg) center/cover no-repeat;
}
.footer-contact-item.item02 {
  background: url(../images/contact_img02.jpg) center/cover no-repeat;
}
.footer-contact-item.item03 {
  background: url(../images/contact_img03.jpg) center/cover no-repeat;
}
.footer-contact-item.item04 {
  background: url(../images/contact_img04.jpg) center/cover no-repeat;
}
.footer-contact-item .btn-more {
  margin-top: 20px;
  width: 280px;
}
.footer-contact-item .btn-more > a {
  width: 260px;
}
.footer-contact-item .tel {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 2.2rem;
  line-height: 1.5;
}
.footer-contact-item .-small {
  font-size: 1.3rem;
}
.footer-contact-ttl {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.footer-bottom {
  background: #F8F6F1;
  padding: 65px 0 50px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
}
.footer-logo {
  width: 114px;
  margin-bottom: 20px;
}
.footer-logo > a {
  display: block;
}
.footer-name {
  margin-bottom: 20px;
}
.footer-address {
  font-size: 1.2rem;
  line-height: 1.9;
}
.footer-navi {
  flex: 1;
  max-width: 714px;
  display: flex;
  gap: 5%;
}
.footer-navi-column {
  flex: 1;
}
.footer-navi-ttl .txt {
  display: block;
  font-size: 1.4rem;
  padding-bottom: 5px;
  margin-bottom: 10px;
  white-space: nowrap;
  position: relative;
}
.footer-navi-ttl .txt::before {
  content: "";
  width: 100%;
  height: 0;
  border-bottom: 1px solid #8D8D8D;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(1);
  transition: all 0.4s;
  transform-origin: left;
}
.footer-navi-ttl a.txt:hover::before {
  transform: scale(0);
}
.footer-navi-list > li {
  font-size: 1.2rem;
  line-height: 1.6;
}
.footer-navi-list > li:not(:last-child) {
  margin-bottom: 5px;
}
.footer-navi-list > li > a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer-navi-item + .footer-navi-item {
  margin-top: 40px;
}
.footer-navi-br {
  display: none;
}
.footer-links {
  width: 230px;
}
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}
.footer-links-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2F2F2F;
  min-height: 50px;
  letter-spacing: 0;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s;
}
.footer-links-btn:hover {
  background: rgba(47, 47, 47, 0.1);
}
.footer-sns {
  display: flex;
  gap: 20px;
  justify-content: center;
  line-height: 1;
  margin-top: 30px;
}
.footer-sns a {
  display: block;
  transition: all 0.3s;
}
.footer-sns a:hover {
  opacity: 0.6;
}
.footer-sns img {
  width: 40px;
}
.footer-copy {
  background: #1DAAE3;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  padding: 17px 5%;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .footer-bottom .container {
    flex-wrap: wrap;
  }
  .footer-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
  }
  .footer-logo {
    margin-bottom: 10px;
  }
  .footer-name {
    margin-bottom: 0;
  }
  .footer-address-wrap {
    display: flex;
    gap: 20px;
  }
  .footer-navi {
    gap: 25px;
    margin-right: 30px;
  }
  .footer-navi-br {
    display: inline;
  }
  .footer-links {
    width: 160px;
  }
  .footer-links-btn {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .footer {
    padding-top: 30px;
  }
  .footer-contact .top-ttl {
    text-align: center;
    margin-bottom: 15px;
  }
  .footer-contact-cont {
    flex-direction: column;
  }
  .footer-contact-item {
    width: 100%;
    height: auto;
    padding: 30px 5% 35px;
    justify-content: flex-start;
  }
  .footer-contact-item .btn-more {
    margin-top: 20px;
    width: 100%;
  }
  .footer-contact-item .btn-more > a {
    width: auto;
    background: #fff;
    color: #2F2F2F;
  }
  .footer-contact-item p {
    font-size: 1.4rem;
    text-align: left;
  }
  .footer-contact-item .-small {
    font-size: 1.2rem;
  }
  .footer-contact-ttl {
    font-size: 2rem;
  }
  .footer-bottom {
    padding: 40px 0;
  }
  .footer-bottom .container {
    justify-content: flex-start;
    flex-direction: column;
  }
  .footer-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .footer-name {
    margin-bottom: 0;
  }
  .footer-navi {
    max-width: none;
    gap: 25px;
    flex-direction: column;
  }
  .footer-navi-column:nth-child(1) {
    display: flex;
    gap: 4%;
  }
  .footer-navi-column:nth-child(1) .footer-navi-item {
    width: 48%;
  }
  .footer-navi-column:nth-child(2) .footer-navi-list {
    column-count: 2;
  }
  .footer-navi-column:nth-child(3) {
    display: flex;
    gap: 4%;
  }
  .footer-navi-column:nth-child(3) .footer-navi-item {
    width: 48%;
  }
  .footer-navi-ttl {
    letter-spacing: 0;
  }
  .footer-navi-item + .footer-navi-item {
    margin-top: 0;
  }
  .footer-navi-br {
    display: inline;
  }
  .footer-links {
    width: auto;
    margin-top: 30px;
  }
  .footer-links-list {
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .footer-links-list > li {
    width: calc((100% - 10px) / 2);
  }
  .footer-links-btn {
    min-height: 40px;
    font-size: 1.4rem;
  }
  .footer-sns {
    gap: 15px;
    margin-top: 20px;
  }
  .footer-sns img {
    width: 36px;
  }
  .footer-copy {
    font-size: 1.1rem;
    padding: 15px 5%;
  }
}
/*-----------------------------------------------------------
TOP
-----------------------------------------------------------*/
/* ===== MV ===== */
.hero {
  margin-top: 140px;
  width: 100%;
  height: 45.8vw;
  position: relative;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  z-index: 1;
}
.hero-img img {
  width: 100%;
  object-fit: cover;
}
.hero-img.img01 {
  width: 60vw;
  height: 39vw;
  bottom: 0;
  right: 0;
}
.hero-img.img02 {
  width: 30vw;
  height: 26vw;
  top: 0;
  left: 0;
}
.hero-img.img03 {
  width: 16vw;
  height: 18vw;
  bottom: 10px;
  left: 10px;
}
.hero-desc {
  position: absolute;
  z-index: 5;
  left: 12%;
  bottom: 5vw;
}
.hero-desc-inr {
  position: relative;
}
.hero-desc-inr::after {
  content: "";
  width: 880px;
  height: 614px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/hero-txt_bg.png) center/contain no-repeat;
  z-index: -1;
}
.hero-ttl {
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.6rem;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .hero {
    margin-top: 65px;
    height: calc(50vw + 220px);
  }
  .hero-img {
    position: absolute;
    z-index: 1;
  }
  .hero-img img {
    width: 100%;
    object-fit: cover;
  }
  .hero-img.img01 {
    bottom: auto;
    top: 10vw;
  }
  .hero-img.img02 {
    width: 33vw;
    height: 29vw;
  }
  .hero-img.img03 {
    width: 24vw;
    height: 27vw;
    bottom: auto;
    top: 35vw;
    left: 7vw;
  }
  .hero-desc {
    left: 5%;
    bottom: 30px;
  }
  .hero-desc-inr {
    position: relative;
  }
  .hero-desc-inr::after {
    width: 572px;
    height: 399.1px;
  }
  .hero-ttl {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  .hero-sub {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
/* ===== Title ===== */
.top-ttl {
  margin-bottom: 50px;
}
.top-ttl .en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 5rem;
  letter-spacing: 0.1em;
}
.top-ttl .en::first-letter {
  color: #1DABE3;
}
.top-ttl .jp {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.top-ttl.center {
  text-align: center;
}

@media (max-width: 767px) {
  .top-ttl {
    margin-bottom: 30px;
  }
  .top-ttl .en {
    font-size: 3.6rem;
    margin-bottom: 3px;
    letter-spacing: 0.08em;
  }
  .top-ttl .jp {
    font-size: 1.5rem;
  }
}
/* ===== components ===== */
.top-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5%;
}

@media (max-width: 767px) {
  .top-wrap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
}
/* ===== contents ===== */
.strengths {
  background: #FAF9F5;
  padding: 130px 0 90px;
  margin-bottom: 170px;
}
.strengths-lead01 {
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 60px;
  font-size: 2.8rem;
}
.strengths-lead02 {
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.8;
}
.strengths-lead02 span {
  display: inline-block;
  text-align: center;
  font-size: 3rem;
  color: #fff;
  line-height: 1.7;
  padding: 0 18px;
  margin: 0 5px;
}
.strengths-lead02 span.-black {
  background: #2F2F2F;
}
.strengths-lead02 span.-blue {
  background: #1DAAE3;
}
.strengths-lead02 + .strengths-lead02 {
  margin-top: 8px;
}
.strengths-wrap {
  position: relative;
}
.strengths-wrap-fixed {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 592px;
  z-index: 10;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: top 1s ease;
  top: 140px;
}
.strengths-wrap-fixed .item-txt {
  width: 200px;
  height: 180px;
  color: #fff;
  writing-mode: vertical-rl;
  font-size: 2.8rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.6;
  letter-spacing: 0.4em;
  padding-top: 8px;
}
.strengths-wrap-fixed .item-txt.-left {
  background: #2F2F2F;
}
.strengths-wrap-fixed .item-txt.-right {
  background: #1EAAE3;
}
.strengths-cont {
  display: flex;
  gap: 20px;
  margin-bottom: 110px;
}
.strengths-item {
  width: calc((100% - 20px) / 2);
}
.strengths-img {
  width: 100%;
  margin-bottom: 20px;
}
.strengths-img img {
  width: 100%;
}
.strengths-desc {
  width: 80%;
  max-width: 540px;
  margin: 0 auto;
}
.strengths-ttl {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 15px;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .strengths {
    padding: 90px 0;
    margin-bottom: 90px;
  }
  .strengths-wrap {
    position: relative;
  }
  .strengths-wrap-fixed {
    width: 360px;
  }
  .strengths-wrap-fixed .item-txt {
    width: 120px;
    height: 110px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .strengths-cont {
    margin-bottom: 80px;
  }
  .strengths-desc {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .strengths {
    padding: 50px 0 60px;
    margin-bottom: 50px;
  }
  .strengths-lead01 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  .strengths-lead02 {
    font-size: 1.8rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
  .strengths-lead02 span {
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 0 5px;
    margin: 0 3px;
  }
  .strengths-lead02 + .strengths-lead02 {
    margin-top: 5px;
  }
  .strengths-wrap-fixed {
    width: 270px;
    transition: top 0.7s ease;
    top: 0;
  }
  .strengths-wrap-fixed .item-txt {
    width: 90px;
    height: 90px;
    font-size: 1.7rem;
    line-height: 1.3;
    letter-spacing: 0.3em;
    padding-top: 4px;
  }
  .strengths-wrap-fixed .item-center img {
    width: 36px;
  }
  .strengths-cont {
    gap: 35px;
    margin-bottom: 50px;
    flex-direction: column;
    padding-top: 110px;
  }
  .strengths-item {
    width: 100%;
  }
  .strengths-desc {
    width: 90%;
    margin: 0 auto;
  }
  .strengths-ttl {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 15px;
  }
}
.reform {
  margin-bottom: 150px;
}
.reform-cont {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.reform-item {
  color: #fff;
  padding: 75px 10% 65px;
}
.reform-item .btn-line {
  margin-top: 40px;
}
.reform-item.item01 {
  background: url(../images/under/reformmenu01.jpg) center/cover no-repeat;
}
.reform-item.item02 {
  background: url(../images/under/reformmenu02.jpg) center/cover no-repeat;
}
.reform-item.item03 {
  background: url(../images/under/reformmenu03.jpg) center/cover no-repeat;
}
.reform-item.item04 {
  background: url(../images/under/reformmenu04.jpg) center/cover no-repeat;
}
.reform-ttl {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 25px;
}
.reform-sub {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 15px;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .reform {
    margin-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .reform {
    margin-bottom: 100px;
    position: relative;
    padding-bottom: 80px;
  }
  .reform-cont {
    margin-top: 30px;
    gap: 5px;
  }
  .reform-item {
    padding: 40px 5%;
  }
  .reform-item .btn-line {
    margin-top: 25px;
  }
  .reform-item p {
    display: none;
    font-size: 1rem;
  }
  .reform-item p.reform-sub {
    font-size: 1.6rem;
  }
  .reform-ttl {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .reform-sub {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .reform .btn-more {
    position: absolute;
    bottom: 0;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.works {
  margin-bottom: 150px;
}
.works-cont {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}
.works-item {
  width: 25%;
  height: 0;
  padding-top: 25%;
  position: relative;
}
.works-item > a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  z-index: 1;
}
.works-item > a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(47, 47, 47, 0.55);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}
.works-item > a:hover {
  opacity: 1;
}
.works-item > a:hover::before {
  opacity: 1;
}
.works-item > a:hover .works-desc {
  opacity: 1;
}
.works-item.item01 {
  background: url(../images/works_img01.jpg) center/cover no-repeat;
}
.works-item.item02 {
  background: url(../images/works_img02.jpg) center/cover no-repeat;
}
.works-item.item03 {
  background: url(../images/works_img03.jpg) center/cover no-repeat;
}
.works-item.item04 {
  background: url(../images/works_img04.jpg) center/cover no-repeat;
}
.works-item.item05 {
  background: url(../images/works_img05.jpg) center/cover no-repeat;
}
.works-item.item06 {
  background: url(../images/works_img06.jpg) center/cover no-repeat;
}
.works-item.item07 {
  background: url(../images/works_img07.jpg) center/cover no-repeat;
}
.works-item.item08 {
  background: url(../images/works_img08.jpg) center/cover no-repeat;
}
.works-desc {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s;
}
.works-ttl {
  font-size: 2.2rem;
  margin-bottom: 5px;
}
.works-sub {
  font-size: 1.4rem;
}

@media (max-width: 1024px) {
  .works-item > a::before {
    opacity: 1;
  }
  .works-desc {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .works {
    margin-bottom: 100px;
    position: relative;
    padding-bottom: 80px;
  }
  .works-cont {
    margin-top: 30px;
  }
  .works-item {
    width: 50%;
    padding-top: 50%;
  }
  .works-item > a {
    padding: 10px;
  }
  .works-item > a::before {
    opacity: 1;
  }
  .works-desc {
    opacity: 1;
  }
  .works-ttl {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
  .works-sub {
    font-size: 1.3rem;
  }
  .works .btn-more {
    position: absolute;
    bottom: 0;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.flow {
  margin-bottom: 120px;
}
.flow .top-ttl {
  margin-bottom: 0;
}
.flow .top-wrap {
  margin-bottom: 50px;
}
.flow-cont {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 45px;
}
.flow-item {
  display: flex;
  gap: 20px;
}
.flow-ttl {
  display: flex;
  writing-mode: vertical-rl;
  justify-content: center;
  align-items: center;
  color: #1DAAE3;
  width: 16px;
  position: relative;
}
.flow-ttl::before {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-right: 1px solid #1DAAE3;
}
.flow-ttl span {
  display: block;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.3em;
  width: fit-content;
  background: #fff;
  line-height: 1;
  padding: 5px 0;
}
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
.flow-list::before {
  content: "";
  width: 5px;
  height: 105px;
  position: absolute;
  top: 38px;
  left: 18px;
  background: linear-gradient(#31BBF0, #1EAAE3, #008CC3);
  z-index: -1;
}
.flow-list > li {
  display: flex;
  align-items: center;
  gap: 20px;
  max-height: 41px;
}
.flow-list > li p {
  font-size: 1.8rem;
  line-height: 1.333;
}
.flow-list > li:nth-child(1) .num {
  background: #31BBF0;
}
.flow-list > li:nth-child(2) .num {
  background: #1DABE3;
}
.flow-list > li:nth-child(3) .num {
  background: #008CC3;
}
.flow-list .num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 41px;
  height: 41px;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  padding: 1px 0 0 1px;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .flow-cont {
    gap: 30px;
  }
  .flow-item {
    gap: 15px;
  }
  .flow-ttl span {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
  }
  .flow-list::before {
    width: 4px;
    top: 26px;
    left: 13px;
  }
  .flow-list > li {
    gap: 10px;
  }
  .flow-list > li p {
    font-size: 1.3rem;
  }
  .flow-list .num {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .flow {
    margin-bottom: 60px;
  }
  .flow .top-wrap {
    margin-bottom: 30px;
  }
  .flow-cont {
    margin-top: 30px;
    justify-content: flex-start;
    flex-direction: column;
    gap: 25px;
  }
  .flow-item {
    gap: 15px;
  }
  .flow-ttl {
    width: 26px;
  }
  .flow-ttl span {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
  .flow-list {
    gap: 20px;
  }
  .flow-list::before {
    width: 4px;
    top: 26px;
    left: 15px;
  }
  .flow-list > li {
    gap: 15px;
  }
  .flow-list > li p {
    font-size: 1.5rem;
  }
  .flow-list .num {
    width: 34px;
    height: 34px;
  }
  .flow .container {
    position: relative;
    padding-bottom: 90px;
  }
  .flow .btn-more {
    position: absolute;
    bottom: 0;
  }
}
.model {
  padding: 110px 0 100px;
  background: #FAF9F5;
  margin-bottom: 110px;
}
.model .top-ttl {
  margin-bottom: 40px;
}
.model-cont {
  display: flex;
  gap: 5%;
  margin-top: 55px;
}
.model-img {
  margin-bottom: 20px;
}
.model-img img {
  width: 100%;
}
.model-ttl {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.model .btn-line {
  margin-top: 25px;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .model {
    padding: 90px 0;
    margin-bottom: 90px;
  }
  .model-cont {
    gap: 3%;
  }
  .model-ttl {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .model {
    padding: 50px 0 60px;
    margin-bottom: 50px;
  }
  .model .top-ttl {
    margin-bottom: 30px;
  }
  .model-cont {
    flex-direction: column;
    gap: 50px;
    margin-top: 30px;
  }
  .model-img {
    margin-bottom: 18px;
  }
  .model-ttl {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .model .btn-line {
    margin-top: 20px;
  }
}
.ideas {
  margin-bottom: 100px;
}
.ideas-cont {
  display: flex;
  gap: 3px;
}
.ideas-item {
  width: calc(33.3333333333% - 2px);
  display: flex;
  flex-direction: column;
}
.ideas-item .btn-line {
  margin-top: 25px;
}
.ideas-desc {
  flex: 1;
  background: #FAF9F5;
  padding: 30px 14% 60px;
}
.ideas-ttl {
  font-size: 2rem;
  margin-bottom: 15px;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .ideas {
    margin-bottom: 90px;
  }
  .ideas-desc {
    padding: 30px 10% 40px;
  }
  .ideas-ttl {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .ideas {
    margin-bottom: 50px;
  }
  .ideas-cont {
    gap: 5px;
    flex-direction: column;
  }
  .ideas-item {
    width: 100%;
  }
  .ideas-item .btn-line {
    margin-top: 25px;
  }
  .ideas-desc {
    flex: 1;
    padding: 30px 5% 45px;
  }
  .ideas-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
.info {
  margin-bottom: 100px;
}
.info-cont {
  display: flex;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.info-cont + .info-cont {
  margin-top: 110px;
}
.info-ttl {
  padding-right: 50px;
  margin-right: 50px;
  border-right: 1px solid #2F2F2F;
}
.info .top-ttl {
  margin-bottom: 40px;
}
.info .top-ttl .en {
  font-size: 4rem;
}
.info-right {
  flex: 1;
}

@media (max-width: 767px) {
  .info {
    margin-bottom: 50px;
  }
  .info-cont {
    flex-direction: column;
    align-items: flex-start;
    max-width: none;
    position: relative;
    padding-bottom: 80px;
  }
  .info-cont + .info-cont {
    margin-top: 60px;
  }
  .info-ttl {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
  .info .top-ttl {
    margin-bottom: 30px;
  }
  .info .top-ttl .en {
    font-size: 3.6rem;
  }
  .info .btn-more {
    position: absolute;
    bottom: 0;
  }
}
/* ===== posts ===== */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.post-list > li {
  display: flex;
  align-items: center;
  line-height: 1.5;
}
.post-list > li time {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #1DABE3;
  width: 90px;
  padding-top: 3px;
}
.post-txt {
  flex: 1;
  width: 100%;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.post-txt > a:hover {
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .post-list {
    gap: 20px;
  }
  .post-list > li {
    display: block;
  }
  .post-list > li time {
    width: auto;
    padding-top: 0;
    display: block;
    margin-bottom: 3px;
  }
}
/*-----------------------------------------------------------
under
-----------------------------------------------------------*/
.page-ttl {
  width: 100%;
  min-height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 140px;
  position: relative;
}
.page-ttl .en {
  width: 96%;
  font-size: 14rem;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1;
  color: #F4F4F4;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.page-ttl .en::first-letter {
  color: #E5F5FA;
}
.page-ttl .jp {
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media (max-width: 1400px) and (min-width: 1025px) {
  .page-ttl .en {
    font-size: 10vw;
  }
}
@media (max-width: 1024px) {
  .page-ttl .en {
    font-size: 8.6rem;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 767px) {
  .page-ttl {
    width: 100%;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0px;
    position: relative;
  }
  .page-ttl .en {
    font-size: 6.6rem;
    letter-spacing: 0.05em;
  }
  .page-ttl .en.-sp-min {
    font-size: 4rem;
    letter-spacing: 0.04em;
  }
  .page-ttl .en.-sp-min2 {
    font-size: 5.6rem;
    letter-spacing: 0.04em;
  }
  .page-ttl .jp {
    font-size: 2rem;
    letter-spacing: 0;
  }
}
.u-section.-bg {
  background: #FAF9F5;
  padding: 75px 0 80px;
}
.u-section:not(:first-child) {
  padding-top: 90px;
}
.u-section:last-child {
  margin-bottom: 100px;
}

.u-section + .u-section.-bg {
  margin-top: 100px;
}

@media (max-width: 767px) {
  .u-section.-bg {
    padding: 50px 0 60px;
    margin-bottom: 50px;
  }
  .u-section:not(:first-child) {
    padding-top: 50px;
  }
  .u-section:last-child {
    margin-bottom: 60px;
  }
  .u-section + .u-section.-bg {
    margin-top: 50px;
  }
}
.sec-bg-short {
  background: #FAF9F5;
  padding: 60px 0;
}

@media (max-width: 767px) {
  .sec-bg-short {
    padding: 40px 0;
  }
}
.u-container, .u-box01 .u-layout04, .box-style06-inr, .list-link {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}
.u-container.-wide, .u-box01 .-wide.u-layout04, .-wide.box-style06-inr, .-wide.list-link {
  max-width: 1260px;
}
.u-container.-short, .u-box01 .-short.u-layout04, .-short.box-style06-inr, .-short.list-link {
  max-width: 780px;
}
.u-container.-small, .u-box01 .-small.u-layout04, .-small.box-style06-inr, .-small.list-link {
  max-width: 940px;
}

.u-h2 {
  text-align: center;
  margin-bottom: 40px;
}
.u-h2 .en {
  line-height: 1.22;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 5rem;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
.u-h2 .en::first-letter {
  color: #1DABE3;
}
.u-h2 .jp {
  line-height: 1.44;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 400;
}

@media (max-width: 767px) {
  .u-h2 {
    margin-bottom: 30px;
  }
  .u-h2 .en {
    font-size: 3.4rem;
    margin-bottom: 3px;
  }
  .u-h2 .jp {
    font-size: 1.5rem;
  }
}
.u-h3 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .u-h3 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.u-ttl01 {
  text-align: center;
  font-weight: 600;
  color: #C99E52;
  font-size: 3.2rem;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .u-ttl01 {
    font-size: 2.2rem;
  }
}
.thanks-ttl {
  text-align: center;
  font-weight: 500;
  color: #1DAAE3;
  font-size: 2rem;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .thanks-ttl {
    font-size: 1.7rem;
  }
}
.u-main-ttl {
  margin-top: 180px;
  margin-bottom: 15px;
  text-align: center;
}
.u-main-ttl .sub {
  background-color: #EFE3B5;
  padding: 8px 18px;
  display: inline-block;
  margin-bottom: 30px;
}
.u-main-ttl .main {
  display: block;
  font-size: 4.8rem;
}
.u-main-ttl.no-margin {
  margin-top: 0 !important;
}

@media (max-width: 767px) {
  .u-main-ttl {
    margin-top: 100px;
  }
  .u-main-ttl .sub {
    padding: 8px 18px;
    display: inline-block;
    margin-bottom: 30px;
  }
  .u-main-ttl .main {
    font-size: 2.5rem;
  }
}
.l-style01 {
  position: relative;
  display: flex;
  padding-right: calc((100vw - 1080px) / 2);
  padding-bottom: 70px;
}
@media screen and (max-width: 1200px) and (min-width: 767px) {
  .l-style01 {
    padding-right: 5vw;
  }
}
.l-style01 + .l-style01 {
  margin-top: 80px;
}
.l-style01::before {
  content: "";
  width: 93.75%;
  height: calc(100% - 90px);
  position: absolute;
  left: 0;
  bottom: 0;
  background: #FAF9F5;
  z-index: -1;
}
@media screen and (max-width: 1300px) and (min-width: 767px) {
  .l-style01::before {
    width: 97.5%;
  }
}
.l-style01 .l-img {
  width: 59.5%;
  padding-left: 60px;
  margin-right: 5.5%;
}
@media screen and (max-width: 1200px) and (min-width: 767px) {
  .l-style01 .l-img {
    padding-left: 5vw;
  }
}
.l-style01 .l-img img {
  width: 100%;
}
.l-style01 .l-desc {
  flex: 1;
  padding-top: 45px;
  margin-right: 1px;
}
.l-style01 .l-num {
  color: #1DABE3;
  font-family: "Montserrat", sans-serif;
  display: flex;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 35px;
}
.l-style01 .l-num .txt {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.4;
}
.l-style01 .l-num .num {
  font-size: 7rem;
  font-weight: 300;
  line-height: 1;
}
.l-style01 .l-ttl {
  font-size: 3.2rem;
}
.l-style01 .l-sub {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.l-style01.-reverse {
  flex-direction: row-reverse;
  padding-right: 0;
  padding-left: calc((100vw - 1080px) / 2);
}
@media screen and (max-width: 1200px) and (min-width: 767px) {
  .l-style01.-reverse {
    padding-left: 5vw;
  }
}
.l-style01.-reverse::before {
  left: auto;
  right: 0;
}
.l-style01.-reverse .l-img {
  padding-left: 0;
  padding-right: 60px;
  margin-right: 0;
  margin-left: 5.5%;
}
@media screen and (max-width: 1200px) and (min-width: 767px) {
  .l-style01.-reverse .l-img {
    padding-right: 5vw;
  }
}

@media (max-width: 767px) {
  .l-style01 {
    display: block;
    padding: 0 0 30px;
  }
  .l-style01 + .l-style01 {
    margin-top: 60px;
  }
  .l-style01::before {
    width: 100%;
    height: calc(100% - 40vw);
  }
  .l-style01 .l-img {
    width: 90%;
    padding: 0;
    margin: 0 auto;
  }
  .l-style01 .l-desc {
    width: 90%;
    margin: 0 auto;
    padding-top: 20px;
  }
  .l-style01 .l-num {
    gap: 5px;
    margin-bottom: 0;
    position: absolute;
    top: -35px;
  }
  .l-style01 .l-num .txt {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .l-style01 .l-num .num {
    font-size: 4.2rem;
  }
  .l-style01 .l-ttl {
    font-size: 2.2rem;
  }
  .l-style01 .l-sub {
    font-size: 1.7rem;
    margin-bottom: 15px;
  }
  .l-style01.-reverse {
    padding: 0 0 30px;
  }
  .l-style01.-reverse::before {
    left: auto;
    right: 0;
  }
  .l-style01.-reverse .l-img {
    padding: 0;
    margin: 0 auto;
  }
}
.l-style03 {
  display: flex;
  align-items: center;
}
.l-style03 .l-img {
  width: 46.5%;
  margin-right: 4%;
}
.l-style03 .l-img img {
  width: 100%;
}
.l-style03 .l-desc {
  flex: 1;
}
.l-style03 .l-desc p + p {
  margin-top: 2rem;
}
.l-style03 .l-desc p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .l-style03 {
    display: block;
  }
  .l-style03 .l-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .l-style03 .l-desc p + p {
    margin-top: 1rem;
  }
  .l-style03 .l-desc p {
    font-size: 15px;
  }
}
.box-style01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}
.box-style01.type01 .box-inr {
  display: flex;
  justify-content: center;
}
.box-style01 .box-inr {
  max-width: 100%;
  width: 860px;
  border: 3px solid #EBE9DC;
  padding: 55px 40px 40px;
}
.box-style01 .box-ttl {
  background: #fff;
  width: fit-content;
  margin: 0 auto -18px;
  position: relative;
  z-index: 2;
  color: #C99E52;
  font-size: 2.4rem;
  padding: 0 25px;
}
.box-style01 .box-layout {
  display: flex;
  flex-direction: row-reverse;
  gap: 27px;
}
.box-style01 .box-layout-img {
  width: 162px;
}
.box-style01 .box-layout-img figcaption {
  margin-top: 5px;
}
.box-style01 .box-layout-img figcaption span {
  letter-spacing: 0;
  font-size: 1.5rem;
  display: block;
  line-height: 1.5;
}
.box-style01 .box-layout-img figcaption span.-small {
  font-size: 1.3rem;
}
.box-style01 .box-layout-desc {
  flex: 1;
}
.box-style01 .box-cta {
  display: flex;
  max-width: 690px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 20px;
}
.box-style01 .box-cta-tel {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.box-style01 .box-cta-tel .-small {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
.box-style01 .box-cta .btn-more {
  width: 280px;
}
.box-style01 .box-cta .btn-more > a {
  width: 260px;
}
.box-style01 .box-cta.-center {
  justify-content: center;
  gap: 0;
}
.box-style01 .box-cta-txt {
  font-size: 18px;
}

@media (max-width: 767px) {
  .box-style01 .box-inr {
    padding: 45px 20px 30px;
  }
  .box-style01 .box-ttl {
    margin: 0 auto -18px;
    font-size: 2rem;
    padding: 0 15px;
  }
  .box-style01 .box-layout {
    flex-direction: column;
    gap: 20px;
  }
  .box-style01 .box-layout-img {
    margin: 0 auto;
  }
  .box-style01 .box-layout-img figcaption {
    text-align: center;
  }
  .box-style01 .box-layout-desc {
    flex: 1;
  }
  .box-style01 .box-cta {
    flex-direction: column;
    max-width: none;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .box-style01 .box-cta-tel {
    font-size: 2.6rem;
  }
  .box-style01 .box-cta-tel .-small {
    font-size: 1.4rem;
  }
  .box-style01 .box-cta .btn-more {
    width: 280px;
  }
  .box-style01 .box-cta .btn-more > a {
    width: 260px;
  }
}
.box-style02 {
  background: #FAF9F5;
  padding: 60px 0 80px;
}
.box-style02 .box-inr {
  max-width: 860px;
  margin: 0 auto;
}
.box-style02 .box-inr.type01 {
  max-width: 1080px;
}
.box-style02 .box-inr-ttl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}
.box-style02 .box-inr-w {
  max-width: 1080px;
  margin: 0 auto;
  background-color: #fff;
  margin: 70px 0 85px;
  padding: 70px 0;
}
.box-style02 .box-ttl {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
}
.box-style02 .box-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 54px;
}
.box-style02 .box-list .en {
  background-color: #C99E52;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-block;
  padding: 3px 27px;
  margin-bottom: 12px;
}
.box-style02 .box-list .img01 {
  max-width: 570px;
  text-align: center;
  margin: 0 auto;
}
.box-style02 p + p {
  margin-top: 2rem;
}
.box-style02 .img-list {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px 50px;
}
.box-style02 .img-list .list-img {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .box-style02 {
    padding: 30px 15px;
  }
  .box-style02 .box-inr {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  .box-style02 .box-inr.type01 {
    max-width: none;
  }
  .box-style02 .box-inr-ttl {
    font-size: 20px;
  }
  .box-style02 .box-inr-w {
    max-width: none;
    margin: 40px 0;
    padding: 30px 0;
  }
  .box-style02 .box-ttl {
    font-size: 22px;
    text-align: center;
    margin-bottom: 40px;
  }
  .box-style02 .box-list {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .box-style02 .box-list .en {
    font-size: 16px;
  }
  .box-style02 .box-list .img01 {
    max-width: initial;
  }
  .box-style02 p + p {
    margin-top: 1rem;
  }
  .box-style02 .img-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .box-style02 .img-list .list-img {
    margin-bottom: 10px;
  }
}
.list-disc > li {
  position: relative;
  padding-left: 10px;
}
.list-disc > li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1DABE3;
  position: absolute;
  top: 12px;
  left: 0;
}
@media (max-width: 767px) {
  .list-disc > li::before {
    top: 11px;
  }
}
.list-disc.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
}
@media (max-width: 767px) {
  .list-disc.col2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.list-style01 {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 30px;
}
.list-style01 > li {
  width: calc((100% - 60px) / 3);
}
.list-style01 .list-img {
  margin-bottom: 15px;
}
.list-style01 .list-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.list-style01 .list-ttl {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.list-style01 .list-tag {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  line-height: 1.5;
}
.list-style01 .list-tag span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0;
  color: #ADADAD;
}
.list-style01 .list-tag span:not(:last-child) {
  margin-right: 25px;
}
.list-style01 .list-txt {
  font-size: 14px;
  margin-bottom: 30px;
}
.list-style01.-column .list-tag {
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .list-style01 {
    gap: 50px;
  }
  .list-style01 > li {
    width: 100%;
  }
  .list-style01 .list-img {
    margin-bottom: 15px;
  }
  .list-style01 .list-img img {
    height: 220px;
  }
  .list-style01 .list-ttl {
    font-size: 1.8rem;
  }
  .list-style01 .list-tag {
    margin-bottom: 20px;
  }
  .list-style01 .list-tag span:not(:last-child) {
    margin-right: 15px;
  }
}
.list-style02 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.list-style02 > li {
  background: #FAF9F5;
  padding: 40px 50px;
  display: flex;
  gap: 40px;
}
.list-style02 .list-img {
  width: 220px;
}
.list-style02 .list-img img {
  width: 100%;
  height: 322px;
  object-fit: cover;
}
.list-style02 .list-desc {
  flex: 1;
}
.list-style02 .list-name {
  display: flex;
  gap: 15px;
  line-height: 1.4;
  align-items: baseline;
  margin-bottom: 20px;
}
.list-style02 .list-name .jp {
  font-size: 2.8rem;
  font-weight: 500;
}
.list-style02 .list-name .en {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #1DABE3;
}
.list-style02 .list-txt {
  margin-bottom: 25px;
  white-space: pre-line;
}
.list-style02 .list-dl {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.list-style02 .list-dl > dt {
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid #DCCCB0;
  margin-bottom: 5px;
}
.list-style02 .list-dl > dt:not(:first-child) {
  margin-top: 20px;
}
.list-style02 .list-dl > dd > ul {
  column-count: 3;
}
.list-style02 .list-dl > dd > ul > li {
  position: relative;
  padding-left: 10px;
  line-height: 1.86;
  letter-spacing: 0;
}
.list-style02 .list-dl > dd > ul > li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1DABE3;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .list-style02 {
    gap: 20px;
  }
  .list-style02 > li {
    padding: 30px 20px;
    flex-direction: column;
    gap: 15px;
  }
  .list-style02 .list-img {
    width: 220px;
    margin: 0 auto;
  }
  .list-style02 .list-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center top;
  }
  .list-style02 .list-desc {
    flex: 1;
  }
  .list-style02 .list-name {
    justify-content: center;
    margin-bottom: 10px;
  }
  .list-style02 .list-name .jp {
    font-size: 2.2rem;
  }
  .list-style02 .list-name .en {
    padding-top: 5px;
    font-size: 1.4rem;
  }
  .list-style02 .list-txt {
    margin-bottom: 20px;
  }
  .list-style02 .list-dl {
    grid-template-columns: repeat(1, 1fr);
  }
  .list-style02 .list-dl > dt {
    padding-bottom: 2px;
    margin-bottom: 5px;
  }
  .list-style02 .list-dl > dt:not(:first-child) {
    margin-top: 20px;
  }
  .list-style02 .list-dl > dd > ul {
    column-count: 1;
  }
  .list-style02 .list-dl > dd > ul > li {
    font-size: 1.4rem;
  }
}
.list-card01 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.list-card01 > li {
  width: calc((100% - 60px) / 4);
}
.list-card01 > li > a {
  display: block;
  position: relative;
}
.list-card01 > li > a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(47, 47, 47, 0.5);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s;
}
.list-card01 > li > a:hover::before {
  opacity: 1;
}
.list-card01 .list-txt {
  color: #fff;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  line-height: 1.36;
}

@media (max-width: 767px) {
  .list-card01 {
    gap: 10px;
  }
  .list-card01 > li {
    width: calc((100% - 10px) / 2);
  }
  .list-card01 .list-txt {
    font-size: 1.7rem;
  }
}
.list-card02 {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 30px;
  padding-top: 35px;
}
.list-card02 > li {
  width: calc((100% - 60px) / 3);
  background: #FAF9F5;
  padding: 40px 40px 30px;
  position: relative;
}
.list-card02 .list-num {
  color: #1DABE3;
  font-family: "Montserrat", sans-serif;
  font-size: 6rem;
  font-weight: 300;
  line-height: 1;
  position: absolute;
  top: -35px;
  left: 0;
  z-index: 2;
}
.list-card02 .list-ttl {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.list-card02 .list-layout {
  display: flex;
  gap: 30px;
}
.list-card02 .list-layout-img {
  width: 110px;
}
.list-card02 .list-layout-desc {
  flex: 1;
  font-size: 1.4rem;
}

@media (max-width: 1024px) {
  .list-card02 > li {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .list-card02 {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 40px;
    padding-top: 25px;
  }
  .list-card02 > li {
    width: 100%;
    padding: 35px 20px 30px;
  }
  .list-card02 .list-num {
    font-size: 4.6rem;
    top: -25px;
  }
  .list-card02 .list-ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  .list-card02 .list-layout {
    display: flex;
    gap: 20px;
  }
  .list-card02 .list-layout-img {
    width: 110px;
  }
  .list-card02 .list-layout-desc {
    flex: 1;
    font-size: 1.4rem;
  }
}
.list-card03 {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 30px;
  padding-top: 17px;
}
.list-card03 > li {
  width: calc((100% - 60px) / 3);
  background: #FAF9F5;
  padding: 30px 30px 35px;
  position: relative;
}
.list-card03 .list-sub {
  width: 100%;
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}
.list-card03 .list-sub span {
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  line-height: 1.4;
  background: #2F2F2F;
  color: #fff;
  font-size: 2rem;
  padding: 3px 10px 5px;
}
.list-card03 .list-ttl {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 15px;
}
.list-card03 .list-img {
  margin-bottom: 10px;
}
.list-card03 .list-dl dt {
  font-size: 2rem;
  margin-bottom: 5px;
}

@media (max-width: 1024px) {
  .list-card03 > li {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .list-card03 {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 40px;
    padding-top: 25px;
  }
  .list-card03 > li {
    width: 100%;
    padding: 30px 20px 30px;
  }
  .list-card03 .list-sub {
    top: -15px;
  }
  .list-card03 .list-sub span {
    font-size: 1.7rem;
  }
  .list-card03 .list-ttl {
    font-size: 2rem;
  }
  .list-card03 .list-dl dt {
    font-size: 1.8rem;
  }
}
.list-card07 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 28px;
  padding-top: 13px;
}
.list-card07 li {
  background-color: #FAF9F5;
  padding: 30px 15px;
  position: relative;
}
.list-card07 li .en {
  position: absolute;
  top: -13px;
  left: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: flex-end;
}
.list-card07 li .en .num {
  font-size: 27px;
  font-style: italic;
  display: block;
  margin-left: 5px;
}
.list-card07 li .list-img {
  margin-bottom: 20px;
}
.list-card07 li .list-ttl {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.list-card07 li .list-txt {
  font-size: 14px;
}

@media (max-width: 767px) {
  .list-card07 {
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
}
.list-card08 {
  display: flex;
  width: fit-content;
  margin: 0 auto 50px;
  max-width: 840px;
  flex-wrap: wrap;
}
.list-card08 li {
  background-color: #eee;
  padding: 2px 10px;
  position: relative;
  margin: 5px 8px;
  border-radius: 4px;
}
.list-card08 li .en {
  position: absolute;
  top: -13px;
  left: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: flex-end;
}
.list-card08 li .en .num {
  font-size: 27px;
  font-style: italic;
  display: block;
  margin-left: 5px;
}
.list-card08 li .list-img {
  margin-bottom: 20px;
}
.list-card08 li .list-ttl {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.list-card08 li .list-txt {
  font-size: 14px;
}

.list-flow {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.list-flow > li {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #FAF9F5;
  padding: 30px 40px 35px;
  display: flex;
  gap: 20px;
}
.list-flow .list-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 1;
  color: #fff;
  padding: 1px 0 0 1px;
  background: #31BBF0;
}
.list-flow .list-desc {
  flex: 1;
}
.list-flow .list-ttl {
  font-size: 2.4rem;
  margin-bottom: 25px;
  padding-top: 10px;
}

@media (max-width: 767px) {
  .list-flow {
    gap: 20px;
  }
  .list-flow > li {
    max-width: none;
    margin: 0;
    padding: 25px 25px 30px 20px;
    gap: 15px;
  }
  .list-flow .list-num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    padding: 1px 0 0 1px;
    background: #31BBF0;
  }
  .list-flow .list-desc {
    flex: 1;
  }
  .list-flow .list-ttl {
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding-top: 3px;
  }
}
.flow-layout01 {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.flow-layout01 .l-chart {
  position: sticky;
  top: 120px;
  width: 320px;
  display: flex;
  gap: 20px;
}
.flow-layout01 .l-chart-left {
  display: flex;
  gap: 12px;
}
.flow-layout01 .l-chart-left-item {
  display: block;
  width: 20px;
  line-height: 20px;
  padding: 5px 0;
  position: relative;
}
.flow-layout01 .l-chart-left-item .-txt {
  writing-mode: vertical-rl;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
}
.flow-layout01 .l-chart-left-item .-arrow {
  position: absolute;
  z-index: -1;
  width: 20px;
  left: 0;
}
.flow-layout01 .l-chart-left-item .-arrow > span {
  display: block;
  position: relative;
  background: #ccc;
  width: 20px;
  height: 100%;
}
.flow-layout01 .l-chart-left-item .-arrow > span::before {
  content: "";
  width: 20px;
  border-style: solid;
  border-width: 10px 10px 0;
  border-color: #ccc transparent transparent transparent;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.flow-layout01 .l-chart-left-item.item01 .-arrow {
  top: 0;
  height: calc(100% - 10px);
}
.flow-layout01 .l-chart-left-item.item01 .-arrow > span {
  background: #B4E1FF;
}
.flow-layout01 .l-chart-left-item.item01 .-arrow > span::before {
  border-color: #B4E1FF transparent transparent transparent;
}
.flow-layout01 .l-chart-left-item.item02 .-arrow {
  top: 0;
  height: 135px;
}
.flow-layout01 .l-chart-left-item.item02 .-arrow > span {
  background: #EDE6C4;
}
.flow-layout01 .l-chart-left-item.item02 .-arrow > span::before {
  border-color: #EDE6C4 transparent transparent transparent;
}
.flow-layout01 .l-chart-left-item.item02 .-arrow:last-child {
  top: auto;
  bottom: 10px;
  height: 115px;
}
.flow-layout01 .l-chart-right {
  flex: 1;
}
.flow-layout01 .l-chart-item {
  position: relative;
}
.flow-layout01 .l-chart-item:not(:last-child) {
  padding-bottom: 13px;
  border-bottom: 1px solid #EFF0F0;
}
.flow-layout01 .l-chart-item:not(:first-child) {
  padding-top: 13px;
}
.flow-layout01 .l-chart-txt {
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  position: absolute;
  right: 25px;
  top: 0;
  transform: translateX(50%);
  height: 100%;
}
.flow-layout01 .l-chart-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.flow-layout01 .l-chart-list-item {
  display: flex;
  gap: 10px;
  position: relative;
}
.flow-layout01 .l-chart-list-item::after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  left: 15px;
  top: -11px;
  transform: translateX(-50%);
  background: #32BBF0;
  transition: height 0.3s ease;
  z-index: 2;
}
.flow-layout01 .l-chart-list-item:first-child::after {
  top: -29px;
  transition: height 0.75s ease;
}
.flow-layout01 .l-chart-list-item.-no-line::after {
  display: none;
}
.flow-layout01 .l-chart-list-item > span {
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid #31BBF0;
  background: #fff;
  color: #31BBF0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  padding: 1px 0 0 2px;
  transition: all 0.3s;
}
.flow-layout01 .l-chart-list-item > p {
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: #ADADAD;
  transition: all 0.3s;
}
.flow-layout01 .l-chart-list-item.is-active::after {
  height: 12px;
}
.flow-layout01 .l-chart-list-item.is-active:first-child::after {
  height: 30px;
}
.flow-layout01 .l-chart-list-item.is-active > span {
  border: 1px solid #31BBF0;
  background: #31BBF0;
  color: #fff;
}
.flow-layout01 .l-chart-list-item.is-active > p {
  color: #2F2F2F;
}
.flow-layout01 .l-flow {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.flow-layout01 .l-flow-item {
  background: #FAF9F5;
  padding: 30px 40px 40px;
}
.flow-layout01 .l-flow-wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
}
.flow-layout01 .l-flow-img {
  width: 40%;
}
.flow-layout01 .l-flow-desc {
  flex: 1;
}
.flow-layout01 .l-flow-ttl {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.flow-layout01 .l-flow-ttl .-num {
  font-family: "Montserrat", sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  color: #FFF;
  line-height: 58px;
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  background: #31BBF0;
  padding: 2px 0 0 0;
}
.flow-layout01 .l-flow-ttl .-ttl {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 9px;
  flex: 1;
}
.flow-layout01 .l-flow-box {
  background: #fff;
  padding: 20px 30px 30px;
}
.flow-layout01 .l-flow-box .box-ttl {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  color: #1DABE3;
}

@media (max-width: 1024px) {
  .flow-layout01 {
    gap: 20px;
  }
  .flow-layout01 .l-flow-item {
    padding: 25px 20px;
  }
  .flow-layout01 .l-flow-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .flow-layout01 .l-flow-img {
    width: 100%;
  }
  .flow-layout01 .l-flow-desc br.pc-only {
    display: none;
  }
  .flow-layout01 .l-flow-ttl {
    gap: 10px;
    margin-bottom: 10px;
  }
  .flow-layout01 .l-flow-ttl .-num {
    font-size: 2rem;
    line-height: 34px;
    width: 34px;
    height: 34px;
    padding: 0;
  }
  .flow-layout01 .l-flow-ttl .-ttl {
    font-size: 2rem;
    margin-top: 3px;
  }
  .flow-layout01 .l-flow-box {
    padding: 20px;
  }
  .flow-layout01 .l-flow-box .box-ttl {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .flow-layout01 {
    flex-direction: column;
    gap: 40px;
  }
  .flow-layout01 .l-chart {
    position: static;
    top: auto;
    width: 100%;
  }
  .flow-layout01 .l-chart-list-item {
    display: flex;
    gap: 10px;
    position: relative;
  }
  .flow-layout01 .l-chart-list-item::after {
    height: 12px;
  }
  .flow-layout01 .l-chart-list-item:first-child::after {
    height: 30px;
  }
  .flow-layout01 .l-chart-list-item.-no-line::after {
    display: none;
  }
  .flow-layout01 .l-chart-list-item > span {
    background: #31BBF0;
    color: #fff;
  }
  .flow-layout01 .l-chart-list-item > p {
    color: #2F2F2F;
  }
}
.list-link {
  display: flex;
  justify-content: center;
  gap: 40px;
}

@media (max-width: 767px) {
  .list-link {
    justify-content: flex-start;
    flex-direction: column;
    gap: 15px;
  }
}
.table-style01 {
  border: 1px solid #DDD;
  text-align: left;
}
.table-style01 tr:not(:last-child) {
  border-bottom: 1px solid #DDD;
}
.table-style01 th {
  background: #FAF9F5;
  padding: 16px 30px;
  width: 180px;
  font-weight: 400;
}
.table-style01 td {
  padding: 16px 30px;
  width: calc(100% - 180px);
  background: #fff;
}
.table-style01.-color01 th {
  background: #F8F6EC;
}

@media (max-width: 767px) {
  .table-style01 th, .table-style01 td {
    padding: 10px;
  }
  .table-style01 th {
    width: 100%;
    display: block;
    padding: 10px 15px;
    text-align: left;
  }
  .table-style01 td {
    width: 100%;
    display: block;
    padding: 10px 15px;
  }
}
.map {
  line-height: 1;
  display: flex;
  justify-content: center;
}
.map iframe {
  vertical-align: bottom;
  width: 900px;
  height: 360px;
}
.map-txt {
  text-align: center;
  margin-top: 20px;
}
.map.-min iframe {
  width: 860px;
  height: 345px;
}

@media (max-width: 767px) {
  .map iframe {
    width: 100%;
    height: 300px;
  }
  .map.-min iframe {
    width: 100%;
    height: 300px;
  }
}
/*-----------------------------------------------------------
ページごと個別記述
-----------------------------------------------------------*/
.consultation-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.consultation-list-item > a {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 410px;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.consultation-list-item > a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: transform 0.5s;
}
.consultation-list-item > a:hover::before {
  transform: scale(1.03);
}
.consultation-list-item.item01 a::before {
  background: url(../images/under/consultation_img01.jpg) center/cover no-repeat;
}
.consultation-list-item.item02 a::before {
  background: url(../images/under/consultation_img02.jpg) center/cover no-repeat;
}
.consultation-list-item.item03 a::before {
  background: url(../images/under/consultation_img03.jpg) center/cover no-repeat;
}
.consultation-list-desc {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.consultation-list-ttl {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.consultation-list-address {
  font-size: 1.5rem;
  margin-left: 20px;
}

@media (max-width: 767px) {
  .consultation-list {
    gap: 5px;
  }
  .consultation-list-item > a {
    min-height: 220px;
  }
  .consultation-list-ttl {
    font-size: 2.6rem;
    margin-bottom: 5px;
  }
  .consultation-list-address {
    font-size: 1.4rem;
    margin-left: 0;
  }
}
.reformmenu-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.reformmenu-list-item {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 410px;
  overflow: hidden;
  z-index: 1;
  position: relative;
}
.reformmenu-list-item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: transform 0.5s;
}
.reformmenu-list-item.item01::before {
  background: url(../images/under/reformmenu01.jpg) center/cover no-repeat;
}
.reformmenu-list-item.item02::before {
  background: url(../images/under/reformmenu02.jpg) center/cover no-repeat;
}
.reformmenu-list-item.item03::before {
  background: url(../images/under/reformmenu03.jpg) center/cover no-repeat;
}
.reformmenu-list-item.item04::before {
  background: url(../images/under/reformmenu04.jpg) center/cover no-repeat;
}
.reformmenu-list-desc {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.reformmenu-list-ttl {
  font-size: 3.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}
.reformmenu-list-sub {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.reformmenu-list-txt {
  margin-bottom: 50px;
}
.reformmenu-list-btn {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  display: inline-block;
  padding-right: 5%;
  position: relative;
  transition: 0.3s;
}
.reformmenu-list-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 5px));
  right: 8px;
  clip-path: polygon(50% 100%, 100% 50%, 50% 0);
  width: 10px;
  height: 8px;
  background-color: #fff;
  transition: 0.3s;
}
.reformmenu-list-btn:hover {
  opacity: 0.5;
}
.reformmenu-list-btn:hover::before {
  transform: translate(5px, calc(-50% - 5px));
}

@media (max-width: 767px) {
  .reformmenu-list {
    gap: 5px;
  }
  .reformmenu-list-item {
    min-height: 300px;
    padding: 30px 0;
  }
  .reformmenu-list-item.item01::before, .reformmenu-list-item.item02::before, .reformmenu-list-item.item03::before, .reformmenu-list-item.item04::before {
    background-position: 35% 50%;
  }
  .reformmenu-list-desc {
    max-width: initial;
  }
  .reformmenu-list-ttl {
    font-size: 2.5rem;
    margin-bottom: 5px;
  }
  .reformmenu-list-sub {
    font-size: 1.8rem;
  }
  .reformmenu-list-txt {
    margin-bottom: 30px;
  }
  .reformmenu-list-btn {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    display: inline-block;
    padding-right: 5%;
    position: relative;
    transition: 0.3s;
  }
  .reformmenu-list-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 5px));
    right: 8px;
    clip-path: polygon(50% 100%, 100% 50%, 50% 0);
    width: 10px;
    height: 8px;
    background-color: #fff;
    transition: 0.3s;
  }
  .reformmenu-list-btn:hover {
    opacity: 0.5;
  }
  .reformmenu-list-btn:hover::before {
    transform: translate(5px, calc(-50% - 5px));
  }
}
.txt-font {
  font-size: 16px;
}

.u-ttl {
  text-align: center;
  margin-bottom: 44px;
}
.u-ttl .jp {
  font-size: 36px;
  font-weight: 600;
  display: block;
}

@media (max-width: 767px) {
  .u-ttl {
    margin-bottom: 30px;
  }
  .u-ttl .jp {
    font-size: 25px;
  }
}
.img-large {
  width: 100%;
  margin-bottom: 45px;
}

@media (max-width: 767px) {
  .img-large {
    margin-bottom: 30px;
  }
}
/*-----------------------------------------------------------
contact
-----------------------------------------------------------*/
.contact {
  background: #fff;
  padding: 50px 40px;
}
.contact-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  grid-gap: 20px;
}
.contact-item dt {
  font-weight: 500;
  display: flex;
  align-items: center;
}
.contact-item label {
  line-height: 1.85;
}
.contact-item:not(:first-child) {
  margin-top: 30px;
}
.contact-item-center {
  display: flex;
  justify-content: center;
}
.contact-item-center .wpcf7-checkbox {
  display: block !important;
}
.contact-num {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact .required {
  display: inline-block;
  text-align: center;
  font-size: 1.2rem;
  background: #E81515;
  color: #fff;
  line-height: 1;
  padding: 3px 7px 4px;
  margin-left: 7px;
}
.contact .required02 {
  font-size: 1.4rem;
  color: #E81515;
  line-height: 1;
  padding: 10px 0px 0;
}
.contact .select-wrap {
  max-width: 220px;
  position: relative;
}
.contact .select-wrap::before {
  content: "";
  border-style: solid;
  border-width: 9px 5px 0;
  border-color: #2F2F2F transparent transparent transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  z-index: 2;
}
.contact .num-wrap {
  max-width: 60px;
}
.contact input[type=text],
.contact input[type=email],
.contact input[type=number],
.contact select,
.contact textarea {
  -webkit-appearance: none;
  appearance: none;
  background: #FAFAFA;
  border: none;
  border-radius: 0;
  color: #2F2F2F;
  padding: 10px 20px;
  margin: 0;
  width: 100%;
  min-height: 50px;
}
.contact input[type=text]::placeholder,
.contact input[type=email]::placeholder,
.contact input[type=number]::placeholder,
.contact select::placeholder,
.contact textarea::placeholder {
  color: #8E8E8E;
  opacity: 1;
}
.contact input[type=text]:focus,
.contact input[type=email]:focus,
.contact input[type=number]:focus,
.contact select:focus,
.contact textarea:focus {
  outline: 1px solid #8E8E8E;
}
.contact input[type=number] {
  padding: 10px;
  text-align: center;
}
.contact .wpcf7-radio {
  display: flex;
  gap: 20px;
}
.contact .wpcf7-radio .wpcf7-list-item label {
  line-height: 23px;
  display: flex;
  align-items: center;
}
.contact .wpcf7-radio input[type=radio] {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #8D8D8D;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  -webkit-appearance: none;
  appearance: none;
  margin: 0 5px 0 0;
}
.contact .wpcf7-radio input[type=radio]:checked::after {
  content: "";
  width: 13px;
  height: 13px;
  background: #1DAAE3; /* 印の色 */
  border-radius: 50%;
}
.contact .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-gap: 7px;
}
.contact .wpcf7-checkbox label {
  display: flex;
  align-items: flex-start;
  position: relative;
  font-size: 1.5rem;
}
.contact .wpcf7-checkbox input[type=checkbox] {
  flex: 0 0 23px;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #8D8D8D;
  border-radius: 0;
  width: 23px;
  height: 23px;
  -webkit-appearance: none;
  appearance: none;
  margin: 3px 12px 0 0;
}
.contact .wpcf7-checkbox input[type=checkbox]:checked + span::before {
  content: "";
  display: block;
  border: solid #2B2B2B;
  border-width: 0 2px 2px 0;
  width: 9px;
  height: 14px;
  position: absolute;
  top: 6px;
  left: 7px;
  transform: rotate(45deg);
  z-index: 0;
}
.contact .wpcf7-checkbox input[type=checkbox]:focus-visible {
  border-color: #2B2B2B;
  outline: none;
}
.contact .submit-btn {
  line-height: 1;
  width: 320px;
  margin: 50px auto 0;
  position: relative;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .contact .submit-btn {
    width: 280px;
    padding-right: 15px;
  }
}
.contact .submit-btn::before {
  content: "";
  width: 35px;
  height: 0;
  border-top: 1px solid #8D8D8D;
  position: absolute;
  top: 50%;
  right: 0;
  transform-origin: left;
  transition: transform 0.3s;
  transform: translateY(-50%) scaleX(1);
}
@media (max-width: 1024px) and (min-width: 768px) {
  .contact .submit-btn::before {
    width: 30px;
  }
}
.contact .submit-btn [type=submit] {
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  font-size: 1.5rem;
  width: 300px;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  border: 1px solid #8D8D8D;
  font-weight: 600;
  line-height: 1.5;
  transition: all 0.3s;
  background: #fff;
  color: #2F2F2F;
}
.contact .submit-btn:hover::before {
  transform: translateY(-50%) scaleX(0);
}
.contact .submit-btn:hover [type=submit] {
  background: #EFEFEF;
}
.contact .wpcf7-spinner {
  display: none !important;
}

@media (max-width: 767px) {
  .contact {
    padding: 25px 15px;
  }
  .contact-item {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  .contact-item label {
    line-height: 1.7;
  }
  .contact-item:not(:first-child) {
    margin-top: 20px;
  }
  .contact-item-center {
    justify-content: flex-start;
  }
  .contact-num {
    gap: 10px;
  }
  .contact input[type=text],
  .contact input[type=email],
  .contact input[type=number],
  .contact select,
  .contact textarea {
    padding: 10px 15px;
    min-height: 48px;
    font-size: 1.4rem;
  }
  .contact .wpcf7-radio {
    flex-direction: column;
    gap: 10px;
  }
  .contact .wpcf7-radio .wpcf7-list-item label {
    line-height: 20px;
    display: flex;
    align-items: center;
  }
  .contact .wpcf7-radio input[type=radio] {
    width: 20px;
    height: 20px;
  }
  .contact .wpcf7-radio input[type=radio]:checked::after {
    width: 10px;
    height: 10px;
  }
  .contact .wpcf7-checkbox {
    grid-template-columns: 1fr;
    grid-gap: 7px;
  }
  .contact .wpcf7-checkbox label {
    display: flex;
    align-items: flex-start;
    position: relative;
    font-size: 1.5rem;
  }
  .contact .wpcf7-checkbox input[type=checkbox] {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin: 4px 8px 0 0;
  }
  .contact .wpcf7-checkbox input[type=checkbox]:checked + span::before {
    width: 8px;
    height: 13px;
    left: 6px;
  }
  .contact .submit-btn {
    width: 280px;
    max-width: 100%;
    padding-right: 15px;
    margin: 30px auto 0;
  }
  .contact .submit-btn::before {
    content: "";
    width: 30px;
    height: 0;
    border-top: 1px solid #8D8D8D;
    position: absolute;
    top: 50%;
    right: 0;
    transform-origin: left;
    transition: transform 0.3s;
    transform: translateY(-50%) scaleX(1);
  }
  .contact .submit-btn [type=submit] {
    letter-spacing: 0;
    font-size: 1.4rem;
    width: 100%;
    min-height: 50px;
  }
}
.year {
  width: 20% !important;
}

/*-----------------------------------------------------------
post
-----------------------------------------------------------*/
.post-layout + .post-layout {
  margin-top: 70px;
}
.post-layout time {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #1DABE3;
  width: 90px;
  padding-top: 3px;
}

.post-ttl {
  font-size: 3.2rem;
  margin-bottom: 30px;
}

.post-btn {
  margin-top: 30px;
  display: flex;
  justify-content: flex-end;
}

.postdata h1 {
  font-size: 30px;
  color: #2F2F2F;
  font-family: "Noto Sans JP", sans-serif;
}
.postdata h2 {
  font-size: 25px;
  color: #2F2F2F;
  font-family: "Noto Sans JP", sans-serif;
}
.postdata h3 {
  font-size: 20px;
  color: #2F2F2F;
  font-family: "Noto Sans JP", sans-serif;
}
.postdata h4 {
  font-size: 18px;
  color: #1DABE3;
  font-family: "Noto Sans JP", sans-serif;
}
.postdata h5 {
  font-size: 16px;
  color: #C99E52;
  font-family: "Noto Sans JP", sans-serif;
}
.postdata h6 {
  font-size: 15px;
  color: #1DABE3;
  font-family: "Noto Sans JP", sans-serif;
}
.postdata p, .postdata ul, .postdata ol {
  margin-bottom: 15px;
}
.postdata a {
  text-decoration: underline;
}
.postdata a:hover {
  text-decoration: none;
}
.postdata strong {
  font-weight: bold;
}
.postdata em {
  font-style: italic;
}
.postdata ul li {
  list-style: inside disc;
}
.postdata ul li > ul {
  margin: 0 0 0 15px;
}
.postdata ol li {
  list-style: inside decimal;
}
.postdata ol li > ol {
  margin: 0 0 0 15px;
}

.post-number {
  margin-top: 100px;
}
.post-number-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.post-number-list > li {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #ADADAD;
  line-height: 1;
}
.post-number-list > li .current {
  color: #1DABE3;
}
.post-number-list > li .next, .post-number-list > li .prev {
  display: block;
  width: 10px;
  height: 10px;
  position: relative;
  transition: all 0.3s;
}
.post-number-list > li .next:hover, .post-number-list > li .prev:hover {
  opacity: 0.6;
}
.post-number-list > li .next::before, .post-number-list > li .prev::before {
  content: "";
  width: 9px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/share/btn_arrow_b.svg) center/contain no-repeat;
  transition: all 0.3s;
}
.post-number-list > li .prev::before {
  transform: translate(-50%, -50%) rotate(-180deg);
}

@media (max-width: 767px) {
  .post-layout + .post-layout {
    margin-top: 40px;
  }
  .post-layout time {
    width: auto;
    padding-top: 0;
    display: block;
    margin-bottom: 3px;
  }
  .post-ttl {
    font-size: 2.3rem;
    margin-bottom: 20px;
  }
  .post-btn {
    margin-top: 30px;
    display: block;
  }
  .post-number {
    margin-top: 60px;
  }
  .post-number-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .post-number-list > li {
    font-family: "Montserrat", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #ADADAD;
  }
  .post-number-list > li span, .post-number-list > li a {
    display: block;
    line-height: 1.5;
    vertical-align: baseline;
  }
  .post-number-list > li .current {
    color: #1DABE3;
  }
  .post-number-list > li .next, .post-number-list > li .prev {
    display: block;
    width: 10px;
    height: 10px;
    position: relative;
    transition: all 0.3s;
  }
  .post-number-list > li .next:hover, .post-number-list > li .prev:hover {
    opacity: 0.6;
  }
  .post-number-list > li .next::before, .post-number-list > li .prev::before {
    content: "";
    width: 9px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/share/btn_arrow_b.svg) center/contain no-repeat;
    transition: all 0.3s;
  }
}
.works-post {
  width: 100%;
  overflow: hidden;
}
.works-post-mv {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto 40px;
}
.works-post-mv img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.works-post-ttl {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 30px;
}
.works-post-txt {
  max-width: 850px;
  margin: 0 auto;
}
.works-post-layout {
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 55px;
}
.works-post-layout .l-img {
  width: 64%;
  margin-left: -8%;
}
.works-post-layout .l-img img {
  width: 100%;
  height: 400px;
  object-fit: contain;
}
.works-post-layout .l-desc {
  flex: 1;
}
.works-post-layout .l-detail {
  display: flex;
  padding: 10px 0;
  border-bottom: #ADADAD dotted 1px;
}
.works-post-layout .l-detail h4 {
  font-size: 1.6rem;
  line-height: 1.4em;
  width: 30%;
}
.works-post-layout .l-detail p {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.4em;
  width: 70%;
}
.works-post-layout .l-ttl {
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.works-post-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.works-post-list .list-img {
  width: 100%;
  background-color: #fafafa;
}
.works-post-list .list-img img {
  width: 100%;
  height: 360px;
  object-fit: contain;
}
.works-post .box-style01 {
  margin-top: 60px;
}
.works-post-btn {
  margin-top: 80px;
}

@media (max-width: 767px) {
  .works-post-mv {
    margin: 0 auto 20px;
  }
  .works-post-mv img {
    height: 160px;
  }
  .works-post-ttl {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
  .works-post-txt {
    max-width: none;
    margin: 0;
  }
  .works-post-layout {
    margin-top: 50px;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .works-post-layout .l-img {
    width: 100%;
    margin-left: 0;
  }
  .works-post-layout .l-img img {
    height: 250px;
  }
  .works-post-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .works-post-list {
    margin-top: 40px;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .works-post-list .list-img img {
    height: 250px;
  }
  .works-post .box-style01 {
    margin-top: 50px;
  }
  .works-post-btn {
    margin-top: 40px;
  }
}
.side-bar {
  display: flex;
  align-items: flex-start;
  gap: 5%;
  margin-top: 190px;
}

.column-post {
  flex: 1;
}
.column-post-sub {
  background-color: #EFE3B5;
  display: inline-block;
  padding: 4px 47px;
  margin-bottom: 10px;
}
.column-post-ttl {
  font-size: 3.8rem;
  margin-bottom: 30px;
}
.column-post-mv {
  margin-bottom: 72px;
}
.column-post-cont h2 {
  font-size: 3.2rem;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #292929;
}
.column-post-cont h3 {
  font-size: 20px;
  padding-bottom: 13px;
  margin-bottom: 30px;
  border-bottom: 1px dashed #959595;
}
.column-post-cont .wp-block-image {
  margin: 0 auto 40px;
  width: 46.4%;
}
.column-post-cont .wp-block-image img {
  width: 100%;
  height: auto;
}
.column-post-cont p:not(:last-child) {
  margin-bottom: 40px;
}
.column-post .btn-more {
  margin-top: 50px;
}

.side-contents {
  width: 24%;
}
.side-contents .side-ttl {
  font-size: 26px;
  margin-bottom: 24px;
}
.side-contents .side-list {
  margin-bottom: 50px;
}
.side-contents .side-list li > a {
  padding-bottom: 14px;
  border-bottom: 1px solid #D3D3D3;
  display: flex;
  letter-spacing: 0;
  transition: 0.3s;
}
.side-contents .side-list li > a:hover {
  opacity: 0.5;
}
.side-contents .side-list li:not(:last-child) > a {
  margin-bottom: 20px;
}
.side-contents .side-list li .list-img {
  margin-right: 20px;
  width: 80px;
}
.side-contents .side-list li .list-img img {
  width: 100%;
}
.side-contents .side-list li .list-ttl {
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.side-contents .side-list li .list-txt {
  font-size: 13px;
}
.side-contents .side-list li .list-tag {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
  line-height: 1.5;
}
.side-contents .side-list li .list-tag span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0;
  color: #ADADAD;
}
.side-contents .side-list li .list-tag span:not(:last-child) {
  margin-right: 25px;
}
.side-contents .side-list li .list-desc {
  flex: 1;
}
@media (max-width: 1024px) {
  .side-contents .side-list li > a {
    display: block;
  }
  .side-contents .side-list li .list-img {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .side-contents .side-list li .list-ttl {
    margin-bottom: 10px;
  }
  .side-contents .side-list li .list-txt {
    font-size: 13px;
  }
  .side-contents .side-list li .list-desc {
    flex: 1;
  }
}
.side-contents .side-category {
  text-decoration: underline;
  line-height: 2;
}
.side-contents .side-category:hover {
  text-decoration: none;
}

@media (max-width: 767px) {
  .side-bar {
    flex-direction: column;
    gap: 50px;
    margin-top: 100px;
  }
  .column-post-ttl {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  .column-post-mv {
    margin-bottom: 40px;
  }
  .column-post-cont h2 {
    font-size: 2.2rem;
  }
  .column-post-cont h3 {
    font-size: 18px;
  }
  .column-post-cont .wp-block-image {
    margin: 0 auto 30px;
    width: 100%;
  }
  .column-post-cont p:not(:last-child) {
    margin-bottom: 30px;
  }
  .side-contents {
    width: 100%;
  }
  .side-contents .side-ttl {
    font-size: 22px;
  }
  .side-contents .side-list {
    margin-bottom: 40px;
  }
  .side-contents .side-list li > a {
    display: flex;
  }
  .side-contents .side-list li .list-img {
    margin-right: 20px;
    margin-bottom: 0;
  }
  .side-contents .side-category {
    text-decoration: underline;
    line-height: 2;
  }
  .side-contents .side-category:hover {
    text-decoration: none;
  }
}
/*-----------------------------------------------------------
Utility
-----------------------------------------------------------*/
.btn-more {
  width: 320px;
  padding-right: 20px;
  position: relative;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .btn-more {
    width: 280px;
    padding-right: 15px;
  }
}
.btn-more::before {
  content: "";
  width: 35px;
  height: 0;
  border-top: 1px solid #8D8D8D;
  position: absolute;
  top: 50%;
  right: 0;
  transform-origin: left;
  transition: transform 0.3s;
  transform: translateY(-50%) scaleX(1);
}
@media (max-width: 1024px) and (min-width: 768px) {
  .btn-more::before {
    width: 30px;
  }
}
.btn-more > a {
  width: 300px;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  border: 1px solid #8D8D8D;
  font-weight: 600;
  line-height: 1.5;
  transition: all 0.3s;
  background: #fff;
  color: #2F2F2F;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .btn-more > a {
    width: 265px;
    min-height: 50px;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.btn-more.-min {
  width: 220px;
}
.btn-more.-min > a {
  width: 200px;
  min-height: 50px;
}
.btn-more.-center {
  margin-left: auto;
  margin-right: auto;
}
.btn-more:hover::before {
  transform: translateY(-50%) scaleX(0);
}
.btn-more:hover > a {
  background: #EFEFEF;
}
.btn-more.-large {
  font-size: 20px;
  width: 360px;
}
.btn-more.-large > a {
  width: 340px;
  min-height: 84px;
}

.btn-line {
  display: block;
  width: 240px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: 1px solid #2F2F2F;
  position: relative;
}
@media (max-width: 1024px) and (min-width: 768px) {
  .btn-line {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .btn-line {
    width: 100%;
  }
}
.btn-line::before {
  content: "";
  width: 9px;
  height: 10px;
  position: absolute;
  top: 8px;
  right: 8px;
  background: url(../images/share/btn_arrow_b.svg) center/contain no-repeat;
  transition: all 0.3s;
}
.btn-line.-white {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.btn-line.-white::before {
  background: url(../images/share/btn_arrow_w.svg) center/contain no-repeat;
}
.btn-line:hover::before {
  right: 0;
}

@media (max-width: 1024px) and (min-width: 768px) {
  .btn-more {
    width: 280px;
    padding-right: 15px;
  }
  .btn-more::before {
    width: 30px;
  }
  .btn-more > a {
    width: 265px;
    min-height: 50px;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
  .btn-line {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .btn-more {
    width: 100%;
    padding-right: 20px;
  }
  .btn-more > a {
    width: auto;
    min-height: 50px;
  }
  .btn-more.-min {
    width: 100%;
  }
  .btn-more.-min > a {
    width: auto;
  }
  .btn-more.-large {
    font-size: 15px;
    width: 100%;
  }
  .btn-more.-large > a {
    width: auto;
  }
  .btn-line {
    font-size: 1.5rem;
    width: 100%;
  }
}
.u-tel {
  display: block;
  width: fit-content;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 2rem;
}

.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.fade {
  transition: 0.5s;
}
.fade:hover {
  opacity: 0.5;
}

.bold, strong {
  font-weight: bold;
}

.underline {
  text-decoration: underline;
}

.w500 {
  font-weight: 500;
}

.w600 {
  font-weight: 600;
}

.font-en {
  font-family: "Montserrat", sans-serif;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left !important;
}

.link {
  color: #1DABE3;
}
.link:hover {
  text-decoration: underline;
}

.notice {
  font-size: 1.2rem;
}

.txt-lead {
  text-align: center;
  color: #1DABE3;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.45;
}
.txt-lead.-min {
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .sp-tal {
    text-align: left !important;
  }
  .txt-lead {
    font-size: 1.9rem;
  }
}
.txt-large {
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .txt-large {
    font-size: 1.6rem;
  }
}
.m-auto {
  margin: 0 auto;
}

.mb10 {
  margin-bottom: 10px;
}

.mbXS {
  margin-bottom: 20px;
}

.mbS {
  margin-bottom: 30px;
}

.mbM {
  margin-bottom: 40px;
}

.mbL {
  margin-bottom: 50px;
}

.mbXL {
  margin-bottom: 60px;
}

.mbXXL {
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .mbXS {
    margin-bottom: 15px;
  }
  .mbS {
    margin-bottom: 20px;
  }
  .mbM {
    margin-bottom: 30px;
  }
  .mbL {
    margin-bottom: 30px;
  }
  .mbXL {
    margin-bottom: 40px;
  }
  .mbXXL {
    margin-bottom: 60px;
  }
}
/*------------
パンクズリスト
--------------*/
.breadcrumb {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
}
.breadcrumb ul {
  font-size: 1.2rem;
  padding: 5px 5vw;
}
.breadcrumb ul li {
  display: inline;
  font-family: "Noto Sans JP", sans-serif;
}
.breadcrumb ul li + li:before {
  content: "/";
  display: inline-block;
  width: 6px;
  height: 6px;
  color: #E2E2E2;
  margin: 0 6px 0 3px;
  vertical-align: 1px;
}

.mb15 {
  margin-bottom: 15px;
}

.mtL {
  margin-top: 120px;
}

@media (max-width: 767px) {
  .mtL {
    margin-top: 60px;
  }
}
.u-section.-bg {
  background: #FAF9F5;
  padding: 75px 0 80px;
}
.u-section:not(:first-child) {
  padding-top: 90px;
}
.u-section:last-child {
  margin-bottom: 100px;
}
.u-section.-high:not(:first-child) {
  padding-top: 100px;
}
.u-section.-higher:not(:first-child) {
  padding-top: 120px;
}
.u-section.-highL:not(:first-child) {
  padding-top: 160px;
}
.u-section-short + .u-section-short {
  padding-top: 80px;
}

@media (max-width: 767px) {
  .u-section.-bg {
    padding: 50px 0 60px;
    margin-bottom: 50px;
  }
  .u-section:not(:first-child) {
    padding-top: 50px;
  }
  .u-section:last-child {
    margin-bottom: 60px;
  }
  .u-section.-high:not(:first-child) {
    padding-top: 50px;
  }
  .u-section.-higher:not(:first-child) {
    padding-top: 50px;
  }
  .u-section.-highL:not(:first-child) {
    padding-top: 50px;
  }
  .u-section-short + .u-section-short {
    padding-top: 40px;
  }
  .u-section + .u-section.-bg {
    margin-top: 50px;
  }
}
.sec-box {
  padding: 60px 0 0;
}

@media (max-width: 767px) {
  .sec-box {
    padding: 40px 0 0;
  }
}
.u-ttl02 {
  text-align: center;
  font-weight: 500;
  font-size: 3.2rem;
  margin-bottom: 32px;
}

@media (max-width: 767px) {
  .u-ttl02 {
    font-size: 2.2rem;
  }
}
.u-ttl03 {
  text-align: center;
  font-weight: 500;
  font-size: 3rem;
  margin-bottom: 10px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .u-ttl03 {
    font-size: 2.2rem;
  }
}
.ttl-wrap {
  display: flex;
  align-items: flex-end;
}
.ttl-wrap .ttl {
  font-size: 3.2rem;
  font-weight: 500;
  margin-right: 30px;
}

.txt-list {
  display: flex;
  font-size: 16px;
}
.txt-list li:not(:last-child) {
  margin-right: 25px;
}

@media (max-width: 767px) {
  .ttl-wrap {
    display: block;
  }
  .ttl-wrap .ttl {
    font-size: 2.2rem;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .txt-list {
    display: block;
    font-size: 16px;
  }
  .txt-list li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.u-ttl-sub {
  font-size: 16px;
}

.cont-ttl {
  text-align: center;
  font-size: 24px;
}
.cont-ttl .color01 {
  color: #1DABE3;
}

@media (max-width: 767px) {
  .cont-ttl {
    font-size: 18px;
  }
}
.l-style02 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.l-style02 .l-img {
  width: 50.8%;
  margin-left: 5%;
}
.l-style02 .l-desc {
  flex: 1;
}
.l-style02 .l-desc .l-ttl {
  font-size: 28px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .l-style02 {
    display: block;
  }
  .l-style02 .l-img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .l-style02 .l-desc .l-ttl {
    font-size: 22px;
  }
}
.l-col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
.l-col2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/under/arrow_deco.svg) center/contain no-repeat;
  width: 35px;
  height: 20px;
}
.l-col2 .item {
  background-color: #FAF9F5;
  padding: 34px 10px 17px;
  border: 6px solid #FAF9F5;
}
.l-col2 .item.type01 {
  background-color: #fff;
  border: 6px solid #FAF9F5;
}
.l-col2 .item.type01 .en {
  color: #6A6A6A;
}
.l-col2 .item .en {
  font-size: 20px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  color: #21A8E3;
}
.l-col2 .item .img-wrap {
  display: flex;
}

@media (max-width: 767px) {
  .l-col2 {
    grid-template-columns: 1fr;
  }
  .l-col2::before {
    top: 54%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 35px;
    height: 20px;
  }
  .l-col2 .item {
    padding: 30px 10px;
  }
  .l-col2 .item .en {
    font-size: 18px;
  }
  .l-col2 .item .img-wrap {
    display: block;
  }
  .l-col2 .item .img-wrap .l-img {
    text-align: center;
  }
}
.u-layout01 {
  display: flex;
}
.u-layout01 .left {
  margin-right: 11%;
  width: 34%;
  position: relative;
}
.u-layout01 .left .table-ttl {
  font-size: 3.2rem;
  margin-bottom: 15px;
}
.u-layout01 .left .u-table01 {
  font-size: 19px;
}
.u-layout01 .left .u-table01 tr {
  border-bottom: 1px dashed #EAE9DD;
  text-align: left;
}
.u-layout01 .left .u-table01 tr:first-child {
  border-top: 4px solid #EAE9DD;
}
.u-layout01 .left .u-table01 tr:last-child {
  border-bottom: 4px solid #EAE9DD;
}
.u-layout01 .left .u-table01 th,
.u-layout01 .left .u-table01 td {
  padding: 10px 0;
  font-weight: 400;
}
.u-layout01 .left .total {
  font-size: 37px;
  color: #1DABE3;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  align-items: flex-end;
  line-height: 1;
  margin-bottom: 10px;
}
.u-layout01 .left .total .-small {
  font-size: 24px;
}
.u-layout01 .left .small-txt {
  font-size: 12px;
  color: #7C7C7C;
}
.u-layout01 .left .ab-item {
  position: absolute;
  background: #1DABE3;
  border-radius: 50%;
  width: 142px;
  height: 142px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  right: -70px;
  font-weight: 600;
  top: 300px;
  font-size: 19px;
}
.u-layout01 .left .ab-item .txt {
  color: #fff;
  line-height: 1.2;
}
.u-layout01 .left .ab-item .small {
  font-size: 14px;
}
.u-layout01 .left .ab-item .color01 {
  color: #FFFF80;
}
.u-layout01 .left .ab-item .color01 .fs {
  font-size: 17px;
}
.u-layout01 .left .ab-item .color01 .num {
  font-size: 33px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.u-layout01 .right {
  flex: 1;
}
.u-layout01 .right .img-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 22px;
}

@media (max-width: 1270px) {
  .u-layout01 .left .ab-item {
    position: static;
    width: 122px;
    height: 122px;
    right: -70px;
    bottom: 0;
    font-size: 16px;
  }
  .u-layout01 .left .ab-item .txt {
    line-height: 1.2;
  }
  .u-layout01 .left .ab-item .small {
    font-size: 13px;
  }
  .u-layout01 .left .ab-item .color01 .fs {
    font-size: 15px;
  }
  .u-layout01 .left .ab-item .color01 .num {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .u-layout01 {
    display: block;
  }
  .u-layout01 .left {
    margin-right: 0;
    margin-bottom: 30px;
    width: 100%;
  }
  .u-layout01 .left .table-ttl {
    font-size: 2.2rem;
  }
  .u-layout01 .left .u-table01 {
    font-size: 17px;
  }
  .u-layout01 .left .total {
    font-size: 25px;
  }
  .u-layout01 .left .total .-small {
    font-size: 14px;
  }
  .u-layout01 .left .ab-item {
    position: static;
    width: 122px;
    height: 122px;
    right: -70px;
    bottom: 0;
    font-size: 16px;
  }
  .u-layout01 .left .ab-item .txt {
    line-height: 1.2;
  }
  .u-layout01 .left .ab-item .small {
    font-size: 13px;
  }
  .u-layout01 .left .ab-item .color01 .fs {
    font-size: 15px;
  }
  .u-layout01 .left .ab-item .color01 .num {
    font-size: 20px;
  }
  .u-layout01 .right .img-wrap {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}
.u-layout02 {
  margin-top: 10px;
  display: flex;
}
.u-layout02 .item {
  flex: 1;
}

.u-layout03 {
  display: flex;
  align-items: center;
}
.u-layout03 .l-img {
  width: 48.3%;
  margin-right: 7%;
}
.u-layout03 .l-desc {
  flex: 1;
}
.u-layout03 .l-desc .u-h2 {
  text-align: left;
}

@media (max-width: 767px) {
  .u-layout03 {
    display: block;
  }
  .u-layout03 .l-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.u-layout04 {
  display: flex;
  flex-direction: row-reverse;
}
.u-layout04 .l-img {
  position: relative;
  flex: 1;
}
.u-layout04 .l-img .sub-ttl {
  background-color: #1DABE3;
  display: inline-block;
  font-size: 15px;
  color: #fff;
  position: absolute;
  top: 15px;
  left: 0;
  line-height: 1;
  padding: 3px 8px;
}
.u-layout04 .l-img-wrap {
  width: 63.5%;
  display: flex;
  align-items: flex-end;
}
.u-layout04 .l-img-wrap .l-img02 {
  width: 24.5%;
  margin-right: 38px;
}
.u-layout04 .l-desc {
  flex: 1;
  margin-right: 20px;
}
.u-layout04 .l-desc .l-ttl {
  margin-bottom: 25px;
  margin-right: -13%;
}
.u-layout04 .l-desc .l-ttl .en {
  color: #1DABE3;
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  letter-spacing: 0.1em;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}
.u-layout04 .l-desc .l-ttl .jp {
  font-size: 32px;
}

.u-box01:first-of-type .u-layout04 .l-img .sub-ttl {
  font-size: 18px;
  padding: 5px 8px;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (max-width: 767px) {
  .u-layout04 {
    display: block;
  }
  .u-layout04 .l-img {
    margin-top: 30px;
  }
  .u-layout04 .l-img .sub-ttl {
    top: 5px;
    left: 0;
    line-height: 1;
    padding: 3px 8px;
    font-size: 13px;
  }
  .u-layout04 .l-img-wrap {
    width: 100%;
    display: block;
  }
  .u-layout04 .l-img-wrap .l-img02 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .u-layout04 .l-desc {
    margin-right: 0;
  }
  .u-layout04 .l-desc .l-ttl {
    margin-right: 0;
  }
  .u-layout04 .l-desc .l-ttl .en {
    font-size: 20px;
  }
  .u-layout04 .l-desc .l-ttl .jp {
    font-size: 22px;
  }
  .u-box01:first-of-type .u-layout04 .l-img .sub-ttl {
    font-size: 14px;
    padding: 3px 8px;
    top: -10px;
  }
}
.box-style03 {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border: 3px solid #EBE9DC;
  padding: 40px 20px 50px;
}
.box-style03 .box-ttl {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #C99E52;
  text-align: center;
}
.box-style03 .txt {
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .box-style03 {
    max-width: initial;
    padding: 30px 20px;
  }
  .box-style03 .box-ttl {
    font-size: 20px;
  }
  .box-style03 .txt {
    font-size: 18px;
  }
}
.box-style04 {
  position: relative;
  padding-top: 16px;
}
.box-style04-inr {
  background-color: #FAF9F5;
  padding: 35px 17px 15px;
}
.box-style04 .sub-ttl {
  background-color: #2F2F2F;
  color: #fff;
  font-size: 16px;
  padding: 4px 17px;
  display: inline-block;
  position: absolute;
  top: 0;
}
.box-style04 .box-txt {
  padding-left: 34px;
  position: relative;
  font-size: 2.6rem;
  font-weight: 800;
  color: #1DABE3;
}
.box-style04 .box-txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/under/arrow_deco02.svg) center/contain no-repeat;
  width: 29px;
  height: 16px;
}

@media (max-width: 767px) {
  .box-style04-inr {
    padding: 30px 17px 15px;
  }
  .box-style04 .sub-ttl {
    font-size: 15px;
    padding: 3px 15px;
  }
  .box-style04 .box-txt {
    padding-left: 34px;
    font-size: 1.8rem;
  }
  .box-style04 .box-txt::before {
    width: 25px;
    height: 12px;
  }
}
.box-style05 {
  background-color: #FAF9F5;
  padding: 73px 110px 50px;
}
.box-style05-inr {
  padding: 63px 45px 40px;
  position: relative;
  border: 3px solid #EAE9DD;
}
.box-style05-inr::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FAF9F5;
  width: 80%;
  height: 40px;
  z-index: 1;
}
.box-style05 .box-ttl {
  position: absolute;
  top: -33px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  white-space: nowrap;
  text-align: center;
  z-index: 2;
}
.box-style05 .box-ttl .color01 {
  color: #1DABE3;
}
.box-style05 .-small {
  font-size: 10px;
  color: #767676;
}

@media (max-width: 1024px) {
  .box-style05 {
    padding: 73px 50px 50px;
  }
}
@media (max-width: 767px) {
  .box-style05 {
    padding: 50px 15px 30px;
  }
  .box-style05-inr {
    padding: 60px 20px 30px;
  }
  .box-style05-inr::before {
    top: -20px;
    width: 80%;
    height: 40px;
    z-index: 1;
  }
  .box-style05 .box-ttl {
    font-size: 17px;
    white-space: normal;
    width: 100%;
  }
}
.box-style06 {
  background: #FAF9F5;
  padding: 40px;
}
@media (max-width: 767px) {
  .box-style06 {
    padding: 30px 20px;
  }
}
.box-style07 {
  padding-top: 35px;
  position: relative;
}
.box-style07-inr {
  border: 3px solid #EAE9DD;
  padding: 77px 80px 40px;
}
.box-style07 .box-ttl {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  text-align: center;
  z-index: 2;
}
.box-style07 .box-img {
  margin-bottom: 40px;
}
.box-style07::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  width: 45%;
  height: 80px;
  z-index: 1;
}

@media (max-width: 767px) {
  .box-style07-inr {
    padding: 70px 20px 30px;
  }
  .box-style07 .box-ttl {
    font-size: 18px;
    width: 100%;
  }
  .box-style07 .box-img {
    margin-bottom: 30px;
  }
  .box-style07::before {
    width: 80%;
  }
}
.box-style08 {
  position: relative;
  padding-top: 40px;
}
.box-style08 .en {
  position: absolute;
  top: 0;
  left: 0;
  color: #1DABE3;
  font-size: 60px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 1;
}
.box-style08-inr {
  background-color: #FAF9F5;
  padding: 70px 75px 60px;
}
.box-style08-inr .box-ttl {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
}
.box-style08 .box-layout {
  display: flex;
  align-items: flex-end;
}
.box-style08 .box-layout .box-desc {
  flex: 1;
  margin-right: 10%;
}
.box-style08 .box-layout .box-desc .box-sub-ttl {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
}
.box-style08 .box-layout .box-desc .s-txt {
  font-size: 24px;
  margin-right: 5px;
}
.box-style08 .box-layout .box-desc .num {
  font-family: "Montserrat", sans-serif;
  font-size: 44px;
  font-weight: 500;
  color: #1DABE3;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 5px;
}
.box-style08 .box-layout .box-desc .m-txt {
  font-size: 24px;
}
.box-style08 .box-layout .box-desc .mark {
  font-size: 16px;
  position: absolute;
  top: 0;
  right: -18px;
}
.box-style08 .box-layout .box-desc .-small {
  font-size: 12px;
}
.box-style08 .box-layout .box-sub-cont {
  display: grid;
  grid-template-columns: 125px 1fr;
  grid-gap: 45px;
  align-items: flex-start;
}
.box-style08 .box-layout .box-sub-cont .box-sub-ttl {
  font-size: 20px;
  color: #fff;
  background-color: #1DABE3;
  padding: 8px 10px;
  margin-bottom: 0;
}
.box-style08 .box-layout .box-img {
  width: 20.3%;
}

@media (max-width: 767px) {
  .box-style08 {
    padding-top: 30px;
  }
  .box-style08 .en {
    font-size: 45px;
  }
  .box-style08-inr {
    padding: 30px 20px 30px;
  }
  .box-style08-inr .box-ttl {
    font-size: 20px;
  }
  .box-style08 .box-layout {
    display: block;
  }
  .box-style08 .box-layout .box-desc {
    margin-right: 0;
  }
  .box-style08 .box-layout .box-desc .box-sub-ttl {
    font-size: 17px;
  }
  .box-style08 .box-layout .box-desc .s-txt {
    font-size: 18px;
    margin-right: 5px;
  }
  .box-style08 .box-layout .box-desc .num {
    font-size: 34px;
  }
  .box-style08 .box-layout .box-desc .m-txt {
    font-size: 20px;
  }
  .box-style08 .box-layout .box-desc .mark {
    font-size: 14px;
  }
  .box-style08 .box-layout .box-sub-cont {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  .box-style08 .box-layout .box-sub-cont .box-sub-ttl {
    font-size: 16px;
    padding: 5px;
    text-align: center;
  }
  .box-style08 .box-layout .box-img {
    width: 100%;
  }
}
.u-box01 {
  background-color: #FAF9F5;
  padding: 57px 20px 36px;
}
.u-box01 + .u-box01 {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .u-box01 {
    padding: 30px 20px;
  }
  .u-box01 .u-layout04 {
    margin: 0;
    width: 100%;
  }
  .u-box01 + .u-box01 {
    margin-top: 40px;
  }
}
.list-style03 {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  gap: 30px;
  width: calc(100% - 72px);
}
@media (max-width: 1270px) {
  .list-style03 {
    flex-wrap: wrap;
  }
}
.list-style03 .list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 273px;
  min-height: 227px;
  text-align: center;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 500;
}
.list-style03 .list-item:first-child {
  background: url(../images/under/seismic_bg01.svg) center/contain no-repeat;
}
.list-style03 .list-item:nth-child(2) {
  background: url(../images/under/seismic_bg02.svg) center/contain no-repeat;
}
.list-style03 .list-item:nth-child(3) {
  background: url(../images/under/seismic_bg03.svg) center/contain no-repeat;
}
.list-style03 .list-item:nth-child(4) {
  background: url(../images/under/seismic_bg04.svg) center/contain no-repeat;
}
.list-style03 .list-item .color01 {
  color: #1DABE3;
  font-weight: 700;
}
.list-style03 .list-item .list-img {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .list-style03 {
    gap: 15px;
    margin: 0;
    width: 100%;
  }
  .list-style03 .list-item {
    font-size: 16px;
    margin: 0 auto;
  }
  .list-style03 .list-item .list-img {
    margin-bottom: 10px;
  }
}
.list-card04 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.list-card04 > li {
  background-color: #FAF9F5;
  padding: 30px;
}
.list-card04 .list-img {
  margin-bottom: 20px;
}
.list-card04 .list-ttl {
  font-size: 24px;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .list-card04 {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .list-card04 > li {
    padding: 30px 20px;
  }
  .list-card04 .list-ttl {
    font-size: 20px;
  }
}
.list-card04-2 {
  display: flex;
  justify-content: center;
}
.list-card04-2 > li {
  background-color: #FAF9F5;
  padding: 30px;
  width: 50%;
}
.list-card04-2 img {
  max-height: 300px;
  object-fit: cover;
}
.list-card04-2 .list-img {
  margin-bottom: 20px;
}
.list-card04-2 .list-ttl {
  font-size: 24px;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .list-card04-2 {
    grid-gap: 20px;
  }
  .list-card04-2 > li {
    padding: 30px 20px;
    width: 100%;
  }
  .list-card04-2 .list-ttl {
    font-size: 20px;
  }
}
.list-card04-3 {
  display: flex;
  justify-content: center;
}
.list-card04-3 > li {
  width: 30%;
}
.list-card04-3 img {
  max-height: 100px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .list-card04-3 {
    grid-gap: 20px;
  }
  .list-card04-3 > li {
    padding: 10px 20px;
    width: 80%;
  }
}
.list-card05 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 34px;
}
.list-card05 > li {
  background-color: #fff;
}
.list-card05 > li .list-ttl {
  font-size: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #EAE9DD;
  padding: 12px;
  text-align: center;
}
.list-card05 > li .list-desc {
  padding: 26px 16px 20px;
}
.list-card05 > li .list-desc .list-ttl-sub02 {
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}
.list-card05 > li .list-desc .list-ttl-sub {
  font-size: 14px;
}
.list-card05 > li .list-desc .price {
  color: #1DABE3;
  font-size: 24px;
  margin-bottom: 17px;
  text-align: center;
  line-height: 1em;
}
.list-card05 > li .list-desc .price span {
  font-size: 14px;
}
.list-card05 > li .list-desc .txt {
  font-size: 12px;
}

@media (max-width: 767px) {
  .list-card05 {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .list-card05 > li .list-ttl {
    font-size: 20px;
  }
  .list-card05 > li .list-desc .price {
    font-size: 22px;
  }
}
.list-card06 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 45px;
}
.list-card06 > li {
  background-color: #FAF9F5;
  padding: 35px 30px;
}
.list-card06 > li .list-ttl {
  font-size: 26px;
  margin-bottom: 30px;
}
.list-card06 > li .list-ttl span {
  font-size: 14px;
}
.list-card06 > li .price {
  color: #1DABE3;
  font-size: 24px;
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1em;
}
.list-card06 > li .price span {
  font-size: 14px;
  color: #2F2F2F;
}
.list-card06 .btn-link {
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 11px;
  border-bottom: 1px solid #8D8D8D;
  max-width: 270px;
  position: relative;
  display: block;
  transition: 0.3s;
}
.list-card06 .btn-link::before {
  content: "";
  position: absolute;
  top: 40%;
  right: 0;
  transform: translateY(-50%);
  background-color: #2F2F2F;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 10px;
  height: 8px;
  transition: 0.3s;
}
.list-card06 .btn-link:hover {
  opacity: 0.5;
}
.list-card06 .btn-link:hover::before {
  transform: translate(5px, -50%);
}

@media (max-width: 767px) {
  .list-card06 {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
  .list-card06 > li {
    padding: 25px 15px;
  }
  .list-card06 > li .list-ttl {
    font-size: 18px;
  }
  .list-card06 > li .price {
    font-size: 20px;
  }
  .list-card06 .btn-link {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 11px;
    border-bottom: 1px solid #8D8D8D;
    max-width: 270px;
    position: relative;
    display: block;
    transition: 0.3s;
  }
  .list-card06 .btn-link::before {
    content: "";
    position: absolute;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    background-color: #2F2F2F;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    width: 10px;
    height: 8px;
    transition: 0.3s;
  }
  .list-card06 .btn-link:hover {
    opacity: 0.5;
  }
  .list-card06 .btn-link:hover::before {
    transform: translate(5px, -50%);
  }
}
.hojyo {
  margin-top: 20px;
}
.hojyo dt {
  font-weight: bold;
}
.hojyo dd {
  margin-top: 5px;
  margin-bottom: 20px;
}

.accordion-style01 {
  background-color: #fff;
  margin-top: 18px;
}
.accordion-style01 .accordion-btn {
  cursor: pointer;
  padding: 12px 23px;
  position: relative;
}
.accordion-style01 .accordion-desc {
  display: none;
  padding: 0 30px 30px;
  position: relative;
}
.accordion-style01 .accordion-ttl {
  font-weight: bold;
  font-size: 16px;
}
.accordion-style01 .accordion-open-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.accordion-style01 .accordion-open-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-bottom: 1px solid #2F2F2F;
  border-right: 1px solid #2F2F2F;
  width: 8px;
  height: 8px;
  transition: 0.3s;
  transform: translateY(-50%) rotate(45deg);
}
.accordion-style01 .color01 {
  color: #1DABE3;
  font-weight: 500;
}
.accordion-style01 .is-open .accordion-open-icon::before {
  transform: translateY(-50%) rotate(225deg);
}
.accordion-style01 + .accordion-style01 {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .accordion-style01 {
    line-height: 1.5;
  }
  .accordion-style01 .accordion-btn {
    padding: 15px 35px 15px 15px;
  }
  .accordion-style01 .accordion-ttl {
    font-size: 15px;
  }
  .accordion-style01 .accordion-desc {
    padding: 0 15px 30px;
  }
  .accordion-style01 .accordion-open-icon {
    right: 0;
  }
}
.fs16 {
  font-size: 16px;
}

.large-txt {
  font-size: 20px;
  font-weight: 500;
}/*# sourceMappingURL=style.css.map */