@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  font-size: 1.8rem;
  font-size: 18px;
  color: #4B4A4D;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.8;
  width: 100%;
  border: 8px solid #806FA3;
  border-bottom: none;
}
body.hidden {
  overflow: hidden;
}

a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
  -ms-transition: .3s;
}

a:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.65;
}

a:active, a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul, ol {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, figure, dd, dt, dl {
  margin: 0;
}

figcaption, figure, main,
article, aside, footer,
header, nav, section {
  display: block;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

button, input, optgroup, select, textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  border: none;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type="checkbox"], [type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

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

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

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

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

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

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

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

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

/*margin*/
.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
select {
  font-size: 18px;
  font-size: 1.8rem;
  background: #FFF;
  border: 1px solid #ccc;
  margin: 0;
  padding: 20px 25px;
  width: 100%;
  height: 80px;
  border-radius: 10px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus {
  outline: none;
  border-color: #a9a9a9;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: .5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 18px;
  font-size: 1.8rem;
  background: #FFF;
  border: 1px solid #ccc;
  padding: 20px 25px;
  resize: vertical;
  width: 100%;
  height: 220px;
  border-radius: 15px;
}
textarea :focus {
  outline: none;
  border-color: #a9a9a9;
}

input[type=checkbox],
input[type=radio] {
  background: #FFF;
  cursor: pointer;
  margin-right: .5em;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.8rem;
  color: rgba(75, 74, 76, 0.5);
}

/* wordpress pager */
.pager {
  display: flex;
  height: 35px;
  margin-bottom: 60px;
  max-width: 100%;
  padding: 30px 0;
  position: relative;
}
.pager a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  position: relative;
  line-height: 1.42857143;
  text-decoration: none;
  border-radius: 4px;
  color: #000;
  font-weight: bold;
  margin: 5px;
  padding: 5px 10px;
}

.pc .pager a:active,
.pc .pager a:hover,
.pc .pager a:focus {
  border-color: #000;
  color: #000;
}

.pager .previous, .pager .next,
.pager .back {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pager .previous a {
  padding-left: 1.5em;
}

.pager .previous a:before {
  content: "≪";
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
}

.pager .next a {
  padding-right: 1.5em;
}
.pager .next a:after {
  content: "≫";
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
}

.pager .back a {
  padding: 5px;
}

/* wordpress pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.pagination > li {
  position: relative;
}

.pagination > li > span,
.pagination > li > a {
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #231815;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.pagination > li > span {
  border-color: #231815;
  cursor: default;
}

.pc .pagination > li > a:active,
.pc .pagination > li > a:hover,
.pc .pagination > li > a:focus {
  border-color: #000;
  color: #000;
}

.pagination > li span.dot {
  border: none;
  width: 1em;
}

/* wordpress wp-pagenavi */
.wp-pagenavi {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-family: "Manrope", sans-serif;
  font-size: 2.5rem;
  color: #777;
  margin: 0;
  width: 45px;
  height: 32px;
  line-height: 32px;
  display: block;
  text-decoration: none;
  padding: 0;
}
@media screen and (max-width: 425px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 2rem;
    width: 9vw;
    height: 32px;
    line-height: 32px;
  }
}
.wp-pagenavi .no-item {
  position: relative;
  color: transparent;
}
.wp-pagenavi .no-item:after {
  position: absolute;
  content: '';
  width: 22px;
  height: 4px;
  border-top: 4px dotted #777;
  top: calc(50% - 2px);
  left: calc(50% - 11px);
}
.wp-pagenavi .current {
  border: 0;
  color: #fff;
  background: #806FA3;
  border-top-right-radius: 20px 15px;
  border-top-left-radius: 20px 15px;
  border-bottom-right-radius: 20px 15px;
  border-bottom-left-radius: 20px 15px;
}
.wp-pagenavi .previouspostslink .arrow {
  position: relative;
}
.wp-pagenavi .previouspostslink .arrow:before {
  position: absolute;
  content: '';
  width: 13px;
  height: 13px;
  border-top: 1px solid #806FA3;
  border-left: 1px solid #806FA3;
  transform: rotate(-45deg);
  top: calc(50% - 10px);
  left: 0;
}
@media screen and (max-width: 425px) {
  .wp-pagenavi .previouspostslink .arrow:before {
    width: 10px;
    height: 10px;
    top: calc(50% - 7px);
  }
}
.wp-pagenavi .nextpostslink .arrow {
  position: relative;
}
.wp-pagenavi .nextpostslink .arrow:before {
  position: absolute;
  content: '';
  width: 13px;
  height: 13px;
  border-top: 1px solid #806FA3;
  border-right: 1px solid #806FA3;
  transform: rotate(45deg);
  top: calc(50% - 10px);
  right: 0;
}
@media screen and (max-width: 425px) {
  .wp-pagenavi .nextpostslink .arrow:before {
    width: 10px;
    height: 10px;
    top: calc(50% - 7px);
  }
}

/* wordpress breadcrumbs */
.txt_ellipsis .breadcrumbs span:last-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 130px;
  display: inline-block;
  vertical-align: bottom;
}

.breadcrumbs {
  margin: 2% 0;
  font-size: 1.2rem;
}
.breadcrumbs .container {
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.breadcrumbs a {
  color: #231815;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #000;
}
.breadcrumbs ul, .breadcrumbs ol {
  list-style: none;
  padding: 0;
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs li:before {
  content: ">";
  margin: 0 10px;
}
.breadcrumbs li:first-child:before {
  display: none;
}

@media screen and (max-width: 560px) {
  .breadcrumbs {
    font-size: 1rem;
  }
  .breadcrumbs li:before {
    margin: 0 5px;
  }
}
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

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

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img,
.slick-initialized .slick-slide {
  display: block;
}

.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick/slick.woff") format("woff"), url("./fonts/slick/slick.ttf") format("truetype"), url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(./img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(./img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #AAA;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots .slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: .2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date,
  .slick-archive__label {
    font-size: 1rem;
  }

  .slick-archive__title {
    font-size: 1.2rem;
  }
}
 /***************************

layout/header.scss

***************************/
/* toggle button */
.toggle {
  display: none;
}

@media screen and (max-width: 1024px) {
  .toggle {
    cursor: pointer;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    position: absolute;
    width: 92px;
    height: 100px;
    padding: 13px;
    right: 0;
    text-align: center;
    top: 0;
    z-index: 7;
    background: #806FA3;
  }
}
@media screen and (max-width: 500px) {
  .toggle {
    width: 72px;
    height: 80px;
  }
}

@media screen and (max-width: 1024px) {
  .fixed-nav .toggle {
    height: 92px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 500px) {
  .fixed-nav .toggle {
    width: 80px;
    height: 72px;
  }
}

@media screen and (max-width: 1024px) {
  .toggle__bar {
    position: relative;
    margin: 8px auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .toggle__bar, .toggle__bar::before, .toggle__bar::after {
    display: block;
    width: 35px;
    height: 1px;
    background-color: #fff;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
}
@media screen and (max-width: 1024px) and (max-width: 500px) {
  .toggle__bar, .toggle__bar::before, .toggle__bar::after {
    width: 25px;
  }
}

@media screen and (max-width: 1024px) {
  .toggle__bar::before, .toggle__bar::after {
    position: absolute;
    content: "";
  }

  .toggle__bar::before {
    top: -10px;
  }

  .toggle__bar::after {
    top: 10px;
  }
}
.toggle.active .toggle__bar {
  background-color: transparent;
}

.toggle.active .toggle__bar::before {
  -webkit-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}

.toggle.active .toggle__bar::after {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0;
}

@media screen and (min-width: 1025px) {
  .gnav {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .gnav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 6;
    border: 8px solid #806FA3;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    padding: 120px 50px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }
  .gnav:before {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background: #806FA3;
    top: 0;
    left: 0;
  }
  .gnav:after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background: #fff;
    top: 0;
    left: 0;
    border-top-left-radius: 15px;
  }
  .gnav.active {
    opacity: 1;
    visibility: visible;
  }
  .gnav ul {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
  .gnav ul li {
    margin-bottom: 15px;
    line-height: 1;
  }
  .gnav ul li a {
    font-size: 2rem;
    font-weight: 500;
  }
  .gnav ul li a:hover {
    opacity: 1;
    color: #806FA3;
  }
  .gnav ul li a .en {
    font-family: "Outfit", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: #CDCDCD;
  }
}
@media screen and (max-width: 500px) {
  .gnav {
    grid-template-columns: 100%;
    grid-template-rows: max-content;
  }
  .gnav ul li a {
    font-size: 1.8rem;
  }
  .gnav ul li a .en {
    font-size: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .gnav {
    padding: 100px 20px 30px;
    overflow-y: scroll;
  }
}
 /***************************

 header

***************************/
header {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    border-bottom: none;
  }
}

.header_inner {
  position: relative;
  width: 100%;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  background: #fff;
  padding-left: 324px;
}

header .logo {
  position: absolute;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 324px;
  min-height: 215px;
  height: 120%;
  background: #fff;
  border-bottom-right-radius: 20px;
  padding: 25px 25px 20px 64px;
  top: 0;
  left: 0;
  z-index: 10;
}
header .logo:before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: #806FA3;
  top: 0;
  left: 0;
}
header .logo:after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: #fff;
  top: 0;
  left: 0;
  border-top-left-radius: 15px;
}

.head-center-block {
  width: calc(100% - 160px);
  padding: 25px 0;
}
.head-center-block .day {
  font-size: 1.3rem;
  line-height: 1.2;
  background: #F5F5F5;
  padding: 10px 20px;
  border-radius: 20px;
  margin-right: 20px;
}
.head-center-block .tel {
  line-height: 1;
  white-space: nowrap;
}
.head-center-block .tel h2 {
  font-weight: 500;
  font-size: 3.4rem;
}
.head-center-block .tel h2 span {
  font-weight: 600;
  font-size: 2rem;
}
.head-center-block .tel p {
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 5px;
}

.head-menu {
  margin-top: 25px;
}
.head-menu ul li {
  position: relative;
  position: relative;
  padding: 0 15px 0 0;
  margin-right: 15px;
}
.head-menu ul li:after {
  position: absolute;
  content: '';
  width: 2px;
  height: 74%;
  border-right: 2px dotted #DDDDDD;
  right: 0;
  top: 13%;
}
.head-menu ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.head-menu ul li:last-child:after {
  display: none;
}
.head-menu ul li a {
  text-align: center;
  font-weight: 500;
  line-height: 1;
}
.head-menu ul li a:hover {
  color: #806FA3;
  opacity: 1;
}
.head-menu ul li a span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #CDCDCD;
}

.head-day {
  display: none;
}

@media screen and (max-width: 1450px) {
  .head-day {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .head-tel {
    display: none;
  }
}
.head-tel a {
  display: block;
  width: 120px;
  height: 100px;
  background: url(./img/common/phone-line.png) no-repeat top 15px center;
  background-size: 26px;
  background-color: #806FA3;
  border-bottom-left-radius: 0;
  padding-top: 45px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  margin-right: 1px;
}
.head-tel a span {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.head-contact a {
  display: block;
  width: 160px;
  height: 145px;
  background: url(./img/common/h-mail-icn.png) no-repeat top 35px center;
  background-size: 39px 32px;
  background-color: #806FA3;
  border-bottom-left-radius: 20px;
  padding-top: 80px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: #fff;
}
.head-contact a span {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.14em;
}

@media screen and (max-width: 1024px) {
  .header_inner {
    -webkit-box-pack: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
    padding-left: 250px;
    padding-right: 93px;
  }

  header .logo {
    min-height: auto;
    height: 100%;
    background: #fff;
    border-bottom-right-radius: 20px;
    padding: 25px 25px;
    top: 0;
    left: 0;
  }

  .head-center-block {
    display: none;
  }

  .head-contact a {
    display: block;
    width: 120px;
    height: 100px;
    background: url(./img/common/h-mail-icn.png) no-repeat top 15px center;
    background-size: 25px 20.5px;
    background-color: #806FA3;
    border-bottom-left-radius: 0;
    padding-top: 45px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
  }
  .head-contact a span {
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.14em;
  }
}
@media screen and (max-width: 768px) {
  .header_inner {
    padding-left: 0;
    height: 100px;
  }
  .header_inner .head-tel,
  .header_inner .head-contact {
    display: none;
  }

  header .logo {
    width: auto;
    padding: 10px;
  }
}
@media screen and (max-width: 500px) {
  .header_inner {
    padding-right: 73px;
    height: 80px;
  }

  header .logo {
    width: calc(100% - 80px);
  }

  .head-contact a {
    width: 80px;
    height: 80px;
    background-position: center center;
    color: transparent;
    border-radius: 0;
    overflow: hidden;
  }
}
.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100px;
  border: 8px solid #806FA3;
  border-bottom: none;
  transform: translateY(-100%);
  transition: transform .6s;
  background: #fff;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
.fixed-nav.show {
  transform: translateY(0);
}
.fixed-nav .logo {
  max-width: calc(100% - 92px);
  position: relative;
  height: 100%;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
}
.fixed-nav .logo:before {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: #806FA3;
  top: 0;
  left: 0;
}
.fixed-nav .logo:after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: #fff;
  top: 0;
  left: 0;
  border-top-left-radius: 15px;
}
.fixed-nav .logo a {
  line-height: 1;
}
.fixed-nav .fixed-nav-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 20px;
}
.fixed-nav .fixed-nav-link li {
  position: relative;
  position: relative;
  padding: 0 15px 0 0;
  margin-right: 15px;
}
.fixed-nav .fixed-nav-link li:after {
  position: absolute;
  content: '';
  width: 2px;
  height: 74%;
  border-right: 2px dotted #DDDDDD;
  right: 0;
  top: 13%;
}
.fixed-nav .fixed-nav-link li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.fixed-nav .fixed-nav-link li:last-child:after {
  display: none;
}
.fixed-nav .fixed-nav-link li a {
  text-align: center;
  font-weight: 500;
  line-height: 1;
  font-size: 1.5rem;
}
.fixed-nav .fixed-nav-link li a:hover {
  color: #806FA3;
  opacity: 1;
}
.fixed-nav .fixed-nav-link li a span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #CDCDCD;
}
.fixed-nav .fixed-nav-btn {
  display: flex;
}
.fixed-nav .fixed-nav-btn .head-tel a {
  height: 92px;
}
.fixed-nav-btn .head-contact a {
  display: block;
  width: 120px;
  height: 92px;
  background: url(./img/common/h-mail-icn.png) no-repeat top 15px center;
  background-size: 25px 20.5px;
  background-color: #806FA3;
  border-bottom-left-radius: 0;
  padding-top: 45px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
}
.fixed-nav-btn .head-contact a span {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.14em;
}

@media screen and (max-width: 1270px) {
  .fixed-nav {
    height: 120px;
  }
  .fixed-nav-btn .head-contact a {
    height: 112px;
    padding-top: 55px;
  }
}
@media screen and (max-width: 1024px) {
  .fixed-nav .fixed-nav-btn {
    padding-right: 93px;
  }
  .fixed-nav {
    height: 100px;
  }
  .fixed-nav-btn .head-contact a {
    height: 92px;
    padding-top: 45px;
  }
  .fixed-nav .fixed-nav-link {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .fixed-nav .fixed-nav-btn {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .fixed-nav {
    height: 80px;
  }
}
 /***************************

layout/footer.scss

***************************/
footer {
  background: #806FA3;
  border-top-right-radius: 90px;
  border-top-left-radius: 90px;
  padding: 75px 20px 40px;
  color: #fff;
  overflow: hidden;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #fff;
}

.footer_ttl {
  font-size: 3.4rem;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.18em;
}

.footer_inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 330px 3fr;
}
.footer_inner .add .logo {
  margin-bottom: 30px;
}
.footer_inner .add p {
  font-size: 1.5rem;
  line-height: 1.6;
}
.footer_inner .menu {
  width: 100%;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 60px;
}
.footer_inner .menu-list {
  padding-right: 4%;
}
.footer_inner .menu-list li {
  position: relative;
  padding-left: 25px;
  line-height: 1;
  margin-bottom: 20px;
}
.footer_inner .menu-list li:before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 100%;
  left: 0;
  top: 8px;
}
.footer_inner .menu-list li a {
  font-size: 2rem;
  font-weight: 500;
}
.footer_inner .menu-list li a .en {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.14em;
}
.footer_inner .menu-btn {
  max-width: 400px;
  width: 100%;
}
.footer_inner .menu-btn li {
  width: 100%;
}
.footer_inner .menu-btn li:not(:last-child) {
  margin-bottom: 15px;
}
.footer_inner .menu-btn li.tel a {
  background: url(./img/common/f-tel-icn.png) no-repeat center left 10px;
  background-size: 84px;
  background-color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 20px 0 20px 105px;
  text-decoration: none;
}
.footer_inner .menu-btn li.tel a span {
  font-size: 2rem;
}
.footer_inner .menu-btn li.mail a {
  background: url(./img/common/f-mail-icn.png) no-repeat center left 10px;
  background-size: 84px;
  background-color: #fff;
  font-size: 2rem;
  font-weight: 500;
  padding: 32px 0 32px 105px;
}
.footer_inner .menu-btn li a {
  display: block;
  width: 100%;
  height: 100px;
  color: #806FA3;
  padding-left: 105px;
  border-radius: 50px;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 45px 50px 108px;
    border-top-right-radius: 60px;
    border-top-left-radius: 60px;
  }

  .footer_ttl {
    font-size: 3rem;
  }

  .footer_inner {
    grid-template-columns: 100%;
  }
  .footer_inner .add {
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
  }
  .footer_inner .add .logo {
    margin-right: 30px;
    margin-bottom: 0;
  }
  .footer_inner .add .inner {
    margin-top: 20px;
  }
  .footer_inner .menu-list {
    width: 50%;
  }
}
@media screen and (max-width: 635px) {
  .footer_inner .add .logo {
    width: 100%;
    text-align: center;
    margin-right: 0;
  }

  .footer_inner .add .inner {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  footer {
    padding: 45px 20px 108px;
  }

  .footer_ttl {
    font-size: 1.8rem;
  }

  .footer_inner .add .logo {
    margin-right: 0;
    width: 100%;
  }
  .footer_inner .add .inner {
    width: 100%;
  }
  .footer_inner .menu-list {
    width: 100%;
    padding: 0 0 0 30px;
  }
  .footer_inner .menu-btn li.tel a {
    background: url(./img/common/f-tel-icn.png) no-repeat center left 10px;
    background-size: 64px;
    background-color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    padding: 15px 0 15px 85px;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer_inner .menu-btn li.tel a span {
    font-size: 1.8rem;
  }
  .footer_inner .menu-btn li.tel a .fz-13 {
    font-size: 1.1rem;
  }
  .footer_inner .menu-btn li.mail a {
    background: url(./img/common/f-mail-icn.png) no-repeat center left 10px;
    background-size: 64px;
    background-color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 22px 0 22px 85px;
  }
  .footer_inner .menu-btn li a {
    height: 80px;
  }
}
@media screen and (max-width: 375px) {
  .footer_inner .menu-btn li.tel a {
    background: url(./img/common/f-tel-icn.png) no-repeat center left 10px;
    background-size: 44px;
    background-color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.2;
    padding: 10px 0 10px 60px;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer_inner .menu-btn li.tel a span {
    font-size: 1.6rem;
  }
  .footer_inner .menu-btn li.tel a .fz-13 {
    font-size: 1rem;
  }
  .footer_inner .menu-btn li.mail a {
    background: url(./img/common/f-mail-icn.png) no-repeat center left 10px;
    background-size: 44px;
    background-color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 14px 0 14px 60px;
  }
  .footer_inner .menu-btn li a {
    height: 60px;
  }
}
.footer_last {
  position: relative;
  max-width: 1320px;
  width: 100%;
  padding-right: 240px;
  margin: 20px auto 0;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer_last:after {
  position: absolute;
  content: '';
  width: 281px;
  height: 95px;
  background: url(./img/common/f-cat.png) no-repeat center top;
  background-size: 281px 242px;
  right: -25px;
  bottom: -40px;
}
.footer_last .copy {
  width: 330px;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
}
.footer_last .foot-scroll {
  position: relative;
  max-width: 735px;
  width: calc(100% - 330px);
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: #7F6DA3;
}
.footer_last .foot-scroll:before {
  position: absolute;
  content: '';
  width: 15px;
  height: 17px;
  background: #fff;
  right: -12px;
  bottom: 10px;
  transform: rotate(5deg);
}
.footer_last .foot-scroll:after {
  position: absolute;
  content: '';
  width: 16px;
  height: 18px;
  background: #7F6DA3;
  border-bottom-left-radius: 20px;
  right: -15px;
  bottom: 10px;
  transform: rotate(5deg);
}
.footer_last .foot-scroll-wrap {
  width: 100%;
  height: 45px;
  line-height: 45px;
  background: #fff;
  overflow: hidden;
  border-radius: 30px;
  white-space: nowrap;
}
.footer_last .foot-scroll-wrap span {
  display: inline-block;
  animation: text-endless 15s linear infinite;
}

@keyframes text-endless {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 900px) {
  .footer_last {
    display: block;
  }
  .footer_last .copy {
    width: 100%;
    padding-left: 0;
    margin-bottom: 40px;
  }
  .footer_last .foot-scroll {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer_last {
    padding-right: 180px;
  }
  .footer_last:after {
    width: 200px;
    height: 75px;
    background-size: 100% auto;
  }
}
@media screen and (max-width: 500px) {
  .footer_last {
    padding-right: 0;
    margin-top: 30px;
  }
  .footer_last:after {
    bottom: -80px;
  }
  .footer_last .foot-scroll {
    margin-bottom: 40px;
  }
  .footer_last .foot-scroll:before {
    right: 160px;
    bottom: -15px;
    transform: rotate(-15deg);
  }
  .footer_last .foot-scroll:after {
    right: 158px;
    bottom: -20px;
    transform: rotate(-15deg);
    border-bottom-left-radius: 0;
    border-top-left-radius: 20px;
  }
}
.pagetop {
  right: 20px;
  z-index: 10;
  visibility: visible;
}
@media screen and (max-width: 1024px) {
  .pagetop {
    position: absolute !important;
    bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  .pagetop {
    bottom: 160px !important;
  }
}
@media screen and (max-width: 500px) {
  .pagetop {
    width: 52px;
    padding-bottom: 20px;
    bottom: 190px !important;
  }
}

.under-fixed-content {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 20px;
  z-index: 5;
}
@media screen and (min-width: 769px) {
  .under-fixed-content {
    display: none;
  }
}
.under-fixed-content .link-list {
  width: 90%;
  display: flex;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
}
.under-fixed-content .link-list.col_3 li {
  width: calc((100% - 4px) / 3);
}
.under-fixed-content .link-list.col_2 li {
  width: calc((100% - 2px) / 2);
}
.under-fixed-content .link-list li:first-child {
  background: #785C9A;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.under-fixed-content .link-list li:not(:last-child):nth-child(2) {
  background: #D34562;
}
.under-fixed-content .link-list li:last-child {
  background: #1F8894;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.under-fixed-content .link-list li a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 1.2;
  padding: 5px 10px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
}
.under-fixed-content .link-list li a i {
  font-size: 2rem;
}

@media screen and (max-width: 500px) {
  .under-fixed-content .link-list li a {
    font-size: 1.2rem;
    margin-top: 5px;
  }
}
/*////////////////////////

 user common css

////////////////////////*/
@media screen and (min-width: 1476px) {
  main {
    margin-top: 170px;
  }
}
@media screen and (max-width: 1475px) {
  main {
    margin-top: 210px;
  }
}
@media screen and (max-width: 1150px) {
  main {
    margin-top: 225px;
  }
}
@media screen and (max-width: 1024px) {
  main {
    margin-top: 0;
  }
}

.container_l {
  max-width: 1390px;
  width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_m {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container_s {
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.tab {
  display: none;
}

.sp_550 {
  display: none;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.vt_align_top {
  vertical-align: top;
}

.wd_100 {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .tab {
    display: block;
  }
}
@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block;
  }
}
@media screen and (max-width: 550px) {
  .pc_550 {
    display: none;
  }

  .sp_550 {
    display: block;
  }
}
/*////////////////////////

fonts

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

.word-break {
  word-break: break-word;
}

.ls_5 {
  letter-spacing: 0.05em;
}

.lh_2 {
  line-height: 2;
}

.lh_18 {
  line-height: 1.8;
}

.lh_16 {
  line-height: 1.6;
}

.lh_14 {
  line-height: 1.4;
}

.lh_1 {
  line-height: 1;
}

.zen-kaku-gothic-new {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.manrope {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.outfit {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

@font-face {
  font-family: "Shippori Gothic B2 Bold";
  src: url("./fonts/shippori-gothic-b2/ShipporiGothicB2-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}
.shippori-gothic {
  font-family: "Shippori Gothic B2 Bold";
}

.fz-13 {
  font-size: 1.3rem;
}

.fz-14 {
  font-size: 1.4rem;
}

.fz-15 {
  font-size: 1.5rem;
}

.fz-16 {
  font-size: 1.6rem;
}

.fz-20 {
  font-size: 2rem;
}

.col-gray {
  color: #878787;
}

.col-blue {
  color: #0D8BF2;
}

.col-green {
  color: #54AB79;
}

.col-purple {
  color: #7F6CA3;
}

.col-red {
  color: #ff0000;
}

/***************************

object/project/effects.scss

***************************/
/*ロード時にフェードイン*/
.fadein {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*スクロールフェードイン*/
.fadeInTop {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
  visibility: visible !important;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInBottom {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  visibility: visible !important;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@-webkit-keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}
.js--border .js--border_item {
  background: linear-gradient(90deg, #806FA3, #806FA3);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s;
}
.js--border:hover {
  opacity: 1;
}
.js--border.hov .js--border_item {
  color: #7F6CA3;
  background-size: 100% 1px;
}
.js--border.is--white .js--border_item {
  background: linear-gradient(90deg, #fff, #fff);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s;
}
.js--border.is--white.hov .js--border_item {
  color: #fff;
  background-size: 100% 1px;
}

/*////////////////////////

btn

////////////////////////*/
.btn-A {
  display: block;
  max-width: 460px;
  width: 100%;
  padding: 4px;
  background: linear-gradient(160deg, #F9F5F2 0%, #E8EEFA 50%, #D3DEEF 100%);
  border-radius: 50px;
}
.btn-A span {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.04em;
  text-align: center;
  color: #7F6EA3;
  background: url(./img/common/btn-01-arrow.png) no-repeat;
  background-position: center right 30px;
  background-color: #fff;
  border-radius: 50px;
  padding: 30px 60px;
  transition: all .6s;
}
@media screen and (max-width: 500px) {
  .btn-A span {
    padding: 15px 60px;
  }
}
.btn-A:hover span {
  background: url(./img/common/btn-01-arrow.png) no-repeat;
  background-position: center right 20px;
  background-color: #fff;
}
.btn-A.btn-back {
  max-width: 305px;
}
.btn-A.btn-back span {
  padding: 25px 60px;
  font-size: 1.8rem;
  background: url(./img/common/btn-back-arrow.png) no-repeat;
  background-position: center left 30px;
  background-color: #fff;
}
@media screen and (max-width: 500px) {
  .btn-A.btn-back span {
    padding: 10px 60px;
  }
}
.btn-A.btn-back:hover span {
  background: url(./img/common/btn-back-arrow.png) no-repeat;
  background-position: center left 20px;
  background-color: #fff;
}

.btn-B {
  position: relative;
  display: inline-block;
  font-size: 1.7rem;
  font-weight: bold;
  color: #7F6CA3;
  padding: 15px 50px 15px 30px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.btn-B:after {
  position: absolute;
  content: '\f105';
  width: 18px;
  height: 18px;
  background: #7F6EA3;
  border-radius: 100%;
  top: calc(50% - 9px);
  right: 20px;
  position: absolute;
  content: '\f105';
  width: 16px;
  height: 16px;
  border-radius: 100%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: .7rem;
  text-align: center;
  line-height: 18px;
  color: #fff;
}
.btn-B:hover {
  opacity: 1;
  background: #7F6CA3;
  border-color: #7F6CA3;
  color: #fff;
}
.btn-B:hover:after {
  background: #fff;
  color: #7F6CA3;
}

.btn-center {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .tab-center {
    margin: 0 auto;
  }
}
/*////////////////////////

hdg__

////////////////////////*/
.hdg__01 {
  font-size: 9rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .hdg__01 {
    font-size: 7rem;
  }
}
@media screen and (max-width: 600px) {
  .hdg__01 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 500px) {
  .hdg__01.--min {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 375px) {
  .hdg__01.--min {
    font-size: 3.8rem;
  }
}
.hdg__01__en {
  display: inline-block;
  position: relative;
  font-family: "Outfit", sans-serif;
  font-weight: 100;
  letter-spacing: 0.02em;
  color: transparent;
  background: linear-gradient(348deg, #D3B5CC 0%, #2C6CB8 40%, #979CC5 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hdg__01__en:after {
  position: absolute;
  content: url(./img/common/hdg-deco01.png);
  margin-left: 10px;
}
@media screen and (max-width: 600px) {
  .hdg__01__en:after {
    content: url(./img/common/hdg-deco01_SP.png);
  }
}
.hdg__01__ja {
  display: block;
  font-size: 2.8rem;
  font-weight: 400;
  color: #4C79B9;
}
@media screen and (max-width: 600px) {
  .hdg__01__ja {
    font-size: 2rem;
  }
}

.hdg__02 {
  position: relative;
  font-size: 4rem;
  color: #7F6DA3;
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
  .hdg__02 {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 600px) {
  .hdg__02 {
    font-size: 2.8rem;
    padding-left: 30px;
  }
}
.hdg__02:before {
  position: absolute;
  content: url(./img/common/hdg-deco01.png);
  left: 0;
}
@media screen and (max-width: 600px) {
  .hdg__02:before {
    content: url(./img/common/hdg-deco01_SP.png);
  }
}

.hdg__03 {
  position: relative;
  font-size: 3.4rem;
  color: #7F6DA3;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .hdg__03 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .hdg__03 {
    font-size: 2.5rem;
    line-height: 1.4;
    padding-left: 30px;
  }
}
.hdg__03:before {
  position: absolute;
  content: '';
  width: 30px;
  height: 7px;
  border-radius: 5px;
  background: linear-gradient(280deg, #A0D3B7 0%, #91D2E3 50%, #83B3E0 100%);
  left: 0;
  top: 28px;
}
@media screen and (max-width: 600px) {
  .hdg__03:before {
    width: 20px;
    height: 4px;
    top: 14px;
  }
}

.hdg__04 {
  position: relative;
  font-size: 2.8rem;
  color: #7F6CA3;
  letter-spacing: 0.08em;
  padding-left: 20px;
}
@media screen and (max-width: 600px) {
  .hdg__04 {
    font-size: 2.3rem;
  }
}
.hdg__04:before {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  background: #7F6CA3;
  border-radius: 100%;
  left: 0;
  top: 20px;
}
.hdg__04 span {
  background: linear-gradient(180deg, transparent 70%, rgba(127, 108, 163, 0.15) 70%);
}

.hdg__05 {
  display: inline-block;
  font-weight: 500;
  padding: 5px 20px;
  letter-spacing: 0.08em;
  background: #7F6CA3;
  border-radius: 30px;
  border-bottom-left-radius: 0;
  color: #fff;
}
.hdg__05.col-blue {
  background: #0D8BF2;
}
.hdg__05.col-green {
  background: #54AB79;
}

.sub-ttl__01 {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  color: #7F6CA3;
  padding: 0 20px;
}
.sub-ttl__01:before {
  position: absolute;
  content: '[';
  left: 0;
}
.sub-ttl__01:after {
  position: absolute;
  content: ']';
  right: 0;
}

/***************************

object/project/top.scss

***************************/
.top01 {
  width: 100%;
  display: flex;
  margin-bottom: 80px;
}

.main-visual_side {
  width: 62px;
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.24em;
  color: #806FA3;
  writing-mode: tb-rl;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.main-visual_side:first-child {
  transform: rotate(180deg);
}

.main-visual {
  width: calc(100% - 124px);
}

@media screen and (max-width: 768px) {
  .main-visual_side {
    width: 32px;
  }

  .main-visual {
    width: calc(100% - 64px);
  }
}
.top02 {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .top02 {
    margin-bottom: 40px;
  }
}
.top02 .scroll-cat__01 {
  position: absolute;
  right: 10%;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .top02 .scroll-cat__01 {
    right: 5%;
    width: 142px;
  }
}

.t-about-wrap {
  position: relative;
  width: 100%;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  padding-top: 110px;
}
@media screen and (max-width: 1024px) {
  .t-about-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .t-about-wrap {
    padding-top: 60px;
  }
}
.t-about-wrap:after {
  position: absolute;
  content: '';
  width: 88%;
  height: calc(100% - 110px);
  background: linear-gradient(300deg, #ACC9E9 0%, #D6D1E5 100%);
  border-radius: 15px;
  top: 0;
  left: 6%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .t-about-wrap:after {
    width: calc(100% - 60px);
    left: 30px;
  }
}
@media screen and (max-width: 500px) {
  .t-about-wrap:after {
    width: calc(100% - 40px);
    left: 20px;
    height: calc(100% - 40px);
  }
}

.t-about-image_box {
  position: relative;
  width: 64%;
}
@media screen and (max-width: 1024px) {
  .t-about-image_box {
    width: 90%;
    margin-top: 50px;
  }
}
@media screen and (max-width: 500px) {
  .t-about-image_box {
    width: 93%;
  }
}
.t-about-image_box__item01 {
  width: 100%;
  border: 8px solid #fff;
  border-left: none;
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .t-about-image_box__item01 {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}
@media screen and (max-width: 500px) {
  .t-about-image_box__item01 {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
.t-about-image_box__item01 img {
  width: 100%;
}
.t-about-image_box__item02 {
  position: relative;
  width: 60%;
  border: 8px solid #fff;
  border-radius: 60px;
  border-top-right-radius: 0;
  overflow: hidden;
  margin-left: 40%;
  margin-top: -15%;
}
@media screen and (max-width: 768px) {
  .t-about-image_box__item02 {
    border-radius: 30px;
    border-top-right-radius: 0;
  }
}
@media screen and (max-width: 500px) {
  .t-about-image_box__item02 {
    margin-top: -30px;
    width: 80%;
    margin-left: 20%;
    border-radius: 15px;
  }
}
.t-about-image_box__item02 img {
  width: 100%;
}
.t-about-image_box__flag {
  position: absolute;
  bottom: 0;
  right: 62%;
}
@media screen and (max-width: 768px) {
  .t-about-image_box__flag {
    width: 30%;
  }
}
@media screen and (max-width: 500px) {
  .t-about-image_box__flag {
    position: relative;
    bottom: inherit;
    right: inherit;
    width: 60%;
    margin-top: -30px;
    padding-left: 20px;
  }
  .t-about-image_box__flag img {
    width: 100%;
  }
}
.t-about-image_box__flag .inner {
  position: absolute;
  width: 210px;
  height: 110px;
  top: 0;
  left: 0;
  padding: 20px 15px;
  font-family: "Shippori Gothic B2 Bold";
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: #4C79BA;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .t-about-image_box__flag .inner {
    width: 100%;
    height: 47%;
    font-size: 2vw;
  }
}
@media screen and (max-width: 500px) {
  .t-about-image_box__flag .inner {
    width: calc(100% - 20px);
    font-size: 1.4rem;
    left: 20px;
  }
}
@media screen and (max-width: 375px) {
  .t-about-image_box__flag .inner {
    font-size: 1.2rem;
  }
}
.t-about-image_box__flag img {
  position: relative;
  z-index: 1;
}

.t-about-text_box {
  width: 520px;
  padding-right: 6%;
}
@media screen and (max-width: 1024px) {
  .t-about-text_box {
    width: 100%;
    padding-right: 0;
  }
}
.t-about-text_box .inner {
  padding: 0 17%;
}
@media screen and (max-width: 1024px) {
  .t-about-text_box .inner {
    padding: 0 50px;
  }
}
.t-about-text_box p {
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .t-about-text_box p {
    margin-bottom: 20px;
  }
}
.t-about-text_box a {
  width: 170px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .t-about-text_box a {
    width: 100px;
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 500px) {
  .t-about-text_box a {
    width: 80px;
  }
}

.t-about-sub__ttl {
  position: relative;
  max-width: 220px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin: 0 auto 25px;
}
@media screen and (max-width: 1024px) {
  .t-about-sub__ttl {
    margin-left: 0;
    margin-right: auto;
  }
}
.t-about-sub__ttl:before {
  position: absolute;
  content: '(';
  left: 0;
  color: #fff;
}
.t-about-sub__ttl:after {
  position: absolute;
  content: ')';
  right: 0;
  color: #fff;
}

.t-about__ttl {
  font-family: "Shippori Gothic B2 Bold";
  font-size: 4rem;
  line-height: 1.4;
  writing-mode: tb-rl;
  color: #fff;
  margin: 0 auto 30px;
}
@media screen and (max-width: 1024px) {
  .t-about__ttl {
    writing-mode: rl-tb;
  }
}
@media screen and (max-width: 768px) {
  .t-about__ttl {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .t-about__ttl {
    font-size: 2.5rem;
  }
}

.top03 {
  width: 100%;
  margin-bottom: 80px;
}

.service-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 0;
  margin-top: 60px;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .service-list {
    grid-template-columns: 100%;
  }
}
.service-list__item {
  text-align: center;
  color: #fff;
}
.service-list__item:first-child .inner {
  background: #785C9A;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
@media screen and (max-width: 768px) {
  .service-list__item:first-child .inner {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
.service-list__item:nth-child(2) .inner {
  background: #D34562;
}
@media screen and (max-width: 1024px) {
  .service-list__item:nth-child(2) .inner {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .service-list__item:nth-child(2) .inner {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}
.service-list__item:last-child .inner {
  background: #1F8894;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .service-list__item:last-child .inner {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
}
.service-list__item .inner {
  width: 100%;
  min-height: 550px;
  padding: 45px 20px 80px;
}
.service-list__item a {
  display: block;
  width: 108px;
  margin: 0 auto;
  margin-top: -52px;
}
.service-list__item__img {
  min-height: 220px;
}
.service-list__item h4 {
  font-size: 3.4rem;
  line-height: .9;
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .service-list__item h4 {
    font-size: 2.7rem;
  }
}
.service-list__item h4 span {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
}

.service-sub__ttl {
  position: relative;
  font-weight: 500;
  text-align: center;
  padding: 0 40px;
  display: inline-block;
  margin-bottom: 30px;
}
.service-sub__ttl:before {
  position: absolute;
  content: '(';
  left: 0;
}
.service-sub__ttl:after {
  position: absolute;
  content: ')';
  right: 0;
}

.top04 {
  position: relative;
  width: 100%;
  padding-top: 230px;
  margin-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .top04 {
    padding-top: 180px;
    margin-bottom: 70px;
  }
}
.top04 .scroll-cat__02 {
  position: absolute;
  content: '';
  width: 235px;
  height: 490px;
  background: url(./img/top/scroll-cat02.png) no-repeat top left/contain;
  background-size: 275px 485px;
  right: -8px;
}
@media screen and (max-width: 1024px) {
  .top04 .scroll-cat__02 {
    width: 135px;
    background-size: 120% auto;
  }
}
@media screen and (max-width: 600px) {
  .top04 .scroll-cat__02 {
    width: 100px;
  }
}
.top04 .scroll-cat__03 {
  position: absolute;
  content: '';
  width: 180px;
  height: 480px;
  background: url(./img/top/scroll-cat03.png) no-repeat top right/contain;
  background-size: 326px 483px;
  left: -8px;
}
@media screen and (max-width: 1024px) {
  .top04 .scroll-cat__03 {
    width: 120px;
    background-size: 150% auto;
  }
}
@media screen and (max-width: 600px) {
  .top04 .scroll-cat__03 {
    width: 100px;
  }
}
.top04 .scroll-chenge__bk {
  position: absolute;
  content: '';
  width: 100%;
  height: calc(100% - 400px);
  top: 0;
  left: 0;
  z-index: -1;
  border-top-left-radius: 600px 100px;
  border-top-right-radius: 600px 100px;
  border-bottom-left-radius: 80px;
  border-bottom-right-radius: 80px;
  overflow: hidden;
}
.top04 .scroll-chenge__bk__inner {
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(160deg, #FEF5EC 0%, #EEF3FB 43%, #D3DEEF 100%);
}

.advantages-list {
  width: 100%;
  position: relative;
  margin-top: 60px;
  border-radius: 20px;
  margin-bottom: 70px;
}
.advantages-list__item {
  position: sticky;
  transform-origin: center top;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .advantages-list__item {
    display: flex;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.advantages-list__item:first-child {
  z-index: 1;
}
.advantages-list__item:first-child .inner {
  background: url(./img/top/advantages-bk01.png) no-repeat center right/cover;
}
@media screen and (max-width: 768px) {
  .advantages-list__item:first-child .inner {
    background: #5F4987;
  }
}
.advantages-list__item:first-child .inner .num {
  color: #5F4987;
}
.advantages-list__item:first-child .img {
  background: url(./img/top/advantages-image01.png) no-repeat center right/cover;
}
.advantages-list__item:nth-child(2) {
  z-index: 2;
}
.advantages-list__item:nth-child(2) .inner {
  background: url(./img/top/advantages-bk02.png) no-repeat center right/cover;
}
@media screen and (max-width: 768px) {
  .advantages-list__item:nth-child(2) .inner {
    background: #705595;
  }
}
.advantages-list__item:nth-child(2) .inner .num {
  color: #705595;
}
.advantages-list__item:nth-child(2) .img {
  background: url(./img/top/advantages-image02.png) no-repeat center right/cover;
}
.advantages-list__item:nth-child(3) {
  z-index: 3;
}
.advantages-list__item:nth-child(3) .inner {
  background: url(./img/top/advantages-bk03.png) no-repeat center right/cover;
}
@media screen and (max-width: 768px) {
  .advantages-list__item:nth-child(3) .inner {
    background: #806FA3;
  }
}
.advantages-list__item:nth-child(3) .inner .num {
  color: #806FA3;
}
.advantages-list__item:nth-child(3) .img {
  background: url(./img/top/advantages-image03.png) no-repeat center right/cover;
}
.advantages-list__item:nth-child(4) {
  z-index: 4;
}
.advantages-list__item:nth-child(4) .inner {
  background: url(./img/top/advantages-bk04.png) no-repeat center right/cover;
}
@media screen and (max-width: 768px) {
  .advantages-list__item:nth-child(4) .inner {
    background: #9692C5;
  }
}
.advantages-list__item:nth-child(4) .inner .num {
  color: #9692C5;
}
.advantages-list__item:nth-child(4) .img {
  background: url(./img/top/advantages-image04.png) no-repeat center right/cover;
}
.advantages-list__item:last-child {
  z-index: 5;
}
.advantages-list__item:last-child .inner {
  background: url(./img/top/advantages-bk05.png) no-repeat center right/cover;
}
@media screen and (max-width: 768px) {
  .advantages-list__item:last-child .inner {
    background: #BBACD2;
  }
}
.advantages-list__item:last-child .inner .num {
  color: #BBACD2;
}
.advantages-list__item:last-child .img {
  background: url(./img/top/advantages-image05.png) no-repeat center right/cover;
}
.advantages-list__item .inner {
  position: relative;
  width: 440px;
  min-height: 450px;
  padding: 80px 60px 70px;
  color: #fff;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .advantages-list__item .inner {
    width: 100%;
    min-height: 40vh;
    padding: 50px 30px 30px;
    border-top-left-radius: 0;
    border-bottom-right-radius: 20px;
  }
}
.advantages-list__item .inner .num {
  position: absolute;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Manrope", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  width: 42px;
  height: 30px;
  background: url(./img/top/advantages-num-bk.png) no-repeat center center/cover;
  border-radius: 15px;
  top: 40px;
  left: 40px;
}
@media screen and (max-width: 768px) {
  .advantages-list__item .inner .num {
    left: 20px;
  }
}
@media screen and (max-width: 500px) {
  .advantages-list__item .inner .num {
    top: 10px;
  }
}
.advantages-list__item .inner .text h4 {
  font-size: 3.4rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .advantages-list__item .inner .text h4 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 500px) {
  .advantages-list__item .inner .text h4 {
    font-size: 2.5rem;
  }
}
.advantages-list__item .img {
  width: 100%;
  height: 25vw;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
@media screen and (min-width: 769px) {
  .advantages-list__item .img {
    position: absolute;
    content: '';
    width: calc(100% - 380px);
    height: 100%;
    right: 0;
    top: 0;
    z-index: -1;
  }
}
@media screen and (max-width: 500px) {
  .advantages-list__item .img {
    height: 50vw;
  }
}

.top05 {
  width: 100%;
  margin-bottom: 140px;
}
.top05 .btn-A.sp-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .top05 .hdg__01.mb-50 {
    margin-bottom: 10px;
  }
  .top05 .btn-A.pc-btn {
    display: none;
  }
  .top05 .btn-A.sp-btn {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .top05 {
    margin-bottom: 70px;
  }
}

.t-information {
  width: 300px;
}
@media screen and (max-width: 1024px) {
  .t-information {
    width: 100%;
  }
}

.information-list {
  max-width: 800px;
  width: calc(100% - 350px);
}
@media screen and (max-width: 1024px) {
  .information-list {
    max-width: 100%;
    width: 100%;
    margin-bottom: 50px;
  }
}
.information-list__item {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #EDEDEF;
}
.information-list__item a {
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.information-list__item a:hover {
  opacity: 1;
}
.information-list__item a .day {
  width: 90px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
.information-list__item a .cat {
  position: relative;
  width: 170px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  margin-right: 20px;
}
.information-list__item a .cat:before {
  position: absolute;
  left: 0;
  content: '(';
}
.information-list__item a .cat:after {
  position: absolute;
  right: 0;
  content: ')';
}
.information-list__item a h4 {
  width: calc(100% - 280px);
  color: #4B4A4C;
}
@media screen and (max-width: 600px) {
  .information-list__item a h4 {
    width: 100%;
  }
}

/***************************

object/project/conten_part.scss

***************************/
.subpage {
  max-width: 1360px;
  width: 90%;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  .subpage {
    width: calc(100% - 40px);
    margin-bottom: 50px;
  }
}

.subpage-main {
  position: relative;
  width: 100%;
  min-height: 320px;
  margin-bottom: 20px;
  padding: 20px 420px 20px 70px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: linear-gradient(130deg, #ACC9E9 0%, #D6D1E5 100%);
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .subpage-main {
    padding-right: 40%;
  }
}
@media screen and (max-width: 768px) {
  .subpage-main {
    min-height: 270px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 600px) {
  .subpage-main {
    padding-right: 30px;
    min-height: 220px;
  }
}

.subpage__icon {
  position: absolute;
  bottom: -20px;
}

.subpage__ttl {
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
}
.subpage__ttl .ja {
  font-size: 4.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .subpage__ttl .ja {
    font-size: 3rem;
  }
}
@media screen and (max-width: 660px) {
  .subpage__ttl .ja {
    font-size: 2.6rem;
  }
}
.subpage__ttl .en {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}
@media screen and (max-width: 660px) {
  .subpage__ttl .en {
    font-size: 1.2rem;
  }
}

.bread {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
.bread ul {
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.bread ul li, .bread ul a {
  font-family: "Shippori Gothic B2 Bold";
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}
.bread ul li:not(:first-child) {
  position: relative;
  margin-left: 25px;
}
.bread ul li:not(:first-child):before {
  position: absolute;
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
  color: #CCCCCC;
  left: -25px;
}
.bread ul li:not(:last-child) {
  margin-right: 15px;
}
.bread ul a {
  color: #7F6EA3;
  text-decoration: underline;
}

.underpage-base {
  max-width: 1320px;
  width: 88%;
  margin: 0 auto 120px;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .underpage-base {
    margin-bottom: 70px;
  }
}

.base-main-cont {
  max-width: 920px;
  width: calc(100% - 330px);
}
@media screen and (max-width: 900px) {
  .base-main-cont {
    max-width: 100%;
    width: 100%;
    margin-bottom: 50px;
  }
}

.base-side-cont {
  width: 280px;
  padding-top: 45px;
  background: url(./img/parts/side-cat.png) no-repeat center top;
  background-size: 187px 160px;
}
@media screen and (max-width: 900px) {
  .base-side-cont {
    width: 100%;
  }
}
.base-side-cont .side-wrap {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}
.base-side-cont .side-wrap:not(:last-child) {
  margin-bottom: 30px;
}
.base-side-cont .side-wrap:not(.is--banner) {
  border: 2px solid #7F6CA3;
}
.base-side-cont .side-wrap .ttl {
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  color: #fff;
  background: #7F6CA3;
  padding: 20px 25px;
  font-weight: 500;
  line-height: 1.4;
}
.base-side-cont .side-wrap .ttl .ja {
  font-size: 2rem;
}
.base-side-cont .side-wrap .ttl .en {
  font-size: 1rem;
  letter-spacing: 0.14em;
}
.base-side-cont .side-wrap .side-nav {
  width: 100%;
}
.base-side-cont .side-wrap .side-nav__item {
  position: relative;
}
.base-side-cont .side-wrap .side-nav__item:not(.tel) {
  padding: 10px 30px 10px 40px;
}
.base-side-cont .side-wrap .side-nav__item:not(:last-child) {
  border-bottom: 1px dotted #806FA3;
}
.base-side-cont .side-wrap .side-nav__item.current {
  background: #F5F5F2;
}
.base-side-cont .side-wrap .side-nav__item.current a {
  font-weight: bold;
}
.base-side-cont .side-wrap .side-nav__item.current .side-under a {
  color: transparent;
  transition: color .3s;
}
.base-side-cont .side-wrap .side-nav__item.current .side-under.open a {
  color: #4B4A4D;
}
.base-side-cont .side-wrap .side-nav__item:not(.tel):before {
  position: absolute;
  content: '\f105';
  width: 16px;
  height: 16px;
  border-radius: 100%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: .8rem;
  text-align: center;
  line-height: 16px;
  color: #fff;
  background: #7F6EA3;
  left: 15px;
  top: 20px;
}
.base-side-cont .side-wrap .side-nav__item a {
  font-size: 2rem;
  font-weight: 500;
  color: #7F6CA3;
}
.base-side-cont .side-wrap .side-nav__item .sideToggle {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  right: 20px;
  top: 20px;
  display: block;
  cursor: pointer;
}
.base-side-cont .side-wrap .side-nav__item .sideToggle:before, .base-side-cont .side-wrap .side-nav__item .sideToggle:after {
  position: absolute;
  content: '';
  width: 16px;
  height: 3px;
  background: #806FA3;
  border-radius: 10px;
  left: calc(50% - 8px);
  top: calc(50% - 1.5px);
}
.base-side-cont .side-wrap .side-nav__item .sideToggle:after {
  transform: rotate(90deg);
  transition: all .3s;
}
.base-side-cont .side-wrap .side-nav__item .sideToggle.open:after {
  transform: rotate(180deg);
}
.base-side-cont .side-wrap .side-nav__item .side-under {
  position: relative;
  visibility: hidden;
}
.base-side-cont .side-wrap .side-nav__item .side-under.open {
  visibility: visible;
}
.base-side-cont .side-wrap .side-nav__item .side-under li {
  height: 0;
  position: relative;
  padding-left: 20px;
  transition: height .3s;
}
.base-side-cont .side-wrap .side-nav__item .side-under li:before {
  position: absolute;
  content: '';
  width: 5px;
  height: 1px;
  background: transparent;
  left: 0;
  top: 19px;
}
.base-side-cont .side-wrap .side-nav__item .side-under a {
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  color: transparent;
  line-height: 0;
  transition: line-height .3s;
}
.base-side-cont .side-wrap .side-nav__item .side-under a:hover {
  opacity: 1;
  color: #7F6CA3 !important;
}
.base-side-cont .side-wrap .side-nav__item .side-under.open li {
  height: auto;
}
.base-side-cont .side-wrap .side-nav__item .side-under.open li:before {
  background: #4B4A4D;
}
.base-side-cont .side-wrap .side-nav__item .side-under.open li.now a {
  pointer-events: none;
  color: #7F6CA3;
}
.base-side-cont .side-wrap .side-nav__item .side-under.open a {
  line-height: 1.2;
  color: #4B4A4D;
}
.base-side-cont .side-wrap .side-nav.information .side-nav__item:before {
  position: absolute;
  content: '#';
  font-size: 2rem;
  font-weight: 500;
  background: none;
  color: #7F6CA3;
}
.base-side-cont .side-wrap .side-nav.information .side-nav__item.current:before {
  font-weight: bold;
}
.base-side-cont .side-wrap.is--contact {
  border-color: #83B3E0;
}
.base-side-cont .side-wrap.is--contact .ttl {
  position: relative;
  background: linear-gradient(200deg, #9CD3C1 0%, #83B3E0 100%);
  padding-right: 75px;
}
.base-side-cont .side-wrap.is--contact .ttl:after {
  position: absolute;
  content: '';
  width: 48px;
  height: 43px;
  background-image: url(./img/parts/contact-icon.png);
  top: 20px;
  right: 20px;
}
.base-side-cont .side-wrap.is--contact .side-nav__item {
  color: #3F86CD;
}
.base-side-cont .side-wrap.is--contact .side-nav__item:before {
  background: #3F86CD;
}
.base-side-cont .side-wrap.is--contact .side-nav__item a {
  color: #3F86CD;
}
.base-side-cont .side-wrap.is--contact .side-nav__item.tel {
  padding: 10px 20px;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 900px) {
  .base-side-cont .side-wrap.is--contact .side-nav__item.tel {
    text-align: left;
  }
}
.base-side-cont .side-wrap.is--contact .side-nav__item.tel a {
  font-size: 3rem;
  text-decoration: none;
}
.base-side-cont .side-wrap.is--contact .side-nav__item.tel a span {
  font-size: 1.8rem;
}
.base-side-cont .side-wrap.is--contact .side-nav__item.tel p {
  font-weight: 500;
  font-size: 1.4rem;
  color: #3F86CD;
}
@media screen and (max-width: 900px) {
  .base-side-cont .side-wrap.is--banner .side-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .base-side-cont .side-wrap.is--banner .side-banner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .base-side-cont .side-wrap.is--banner .side-banner {
    grid-template-columns: 100%;
    gap: 10px;
  }
}
@media screen and (max-width: 600px) {
  .base-side-cont .side-wrap.is--banner li {
    text-align: center;
  }
}
.base-side-cont .side-wrap.is--banner li:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .base-side-cont .side-wrap.is--banner li:not(:last-child) {
    margin-bottom: 0;
  }
}

.section-block {
  width: 100%;
}
.section-block:not(:last-child) {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .section-block:not(:last-child) {
    margin-bottom: 50px;
  }
}
.section-block-inner {
  width: 100%;
}
.section-block-inner:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .section-block-inner:not(:first-child) {
    margin-top: 30px;
  }
}
.section-block-inner:not(:last-child) {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .section-block-inner:not(:last-child) {
    margin-bottom: 40px;
  }
}

.page-last-cont {
  position: relative;
  border-radius: 15px;
  background: #D34562;
  color: #fff;
  padding: 50px 100px;
}
.page-last-cont.is--for_business {
  background: #208895;
}
.page-last-cont.is--visa_support {
  background: #785c97;
}
@media screen and (max-width: 1024px) {
  .page-last-cont {
    padding: 50px 80px;
  }
}
@media screen and (max-width: 600px) {
  .page-last-cont {
    margin-top: 200px;
    padding: 30px;
  }
}
.page-last-cont .image_box__cat {
  position: absolute;
  right: -25px;
  top: 90px;
}
@media screen and (max-width: 1024px) {
  .page-last-cont .image_box__cat {
    width: 120px;
  }
}
@media screen and (max-width: 600px) {
  .page-last-cont .image_box__cat {
    display: none;
  }
}
.page-last-cont .image_box__flag {
  position: absolute;
  left: -55px;
  top: -20px;
}
@media screen and (max-width: 1024px) {
  .page-last-cont .image_box__flag {
    width: 120px;
    left: -25px;
  }
}
@media screen and (max-width: 600px) {
  .page-last-cont .image_box__flag {
    width: 315px;
    top: -150px;
    left: -10px;
    z-index: -1;
  }
}
@media screen and (max-width: 320px) {
  .page-last-cont .image_box__flag {
    width: 290px;
    top: -130px;
  }
}
.page-last-cont .image_box__flag .inner {
  position: absolute;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 140px;
  height: 95px;
  padding: 10px 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #D24561;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .page-last-cont .image_box__flag .inner {
    width: 120px;
    height: 80px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 600px) {
  .page-last-cont .image_box__flag .inner {
    width: 315px;
    height: 47px;
    font-size: 1.5rem;
  }
  .page-last-cont .image_box__flag .inner .cen {
    display: none;
  }
}
@media screen and (max-width: 320px) {
  .page-last-cont .image_box__flag .inner {
    width: 290px;
    height: 40px;
  }
}
.page-last-cont .image_box__flag .img {
  position: relative;
  z-index: 1;
}

.page-last-cont .inner {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.6;
}
.page-last-cont .inner h3 {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .page-last-cont .inner h3 {
    font-size: 2.5rem;
  }
}
.page-last-cont .inner .link {
  color: #fff;
  border-bottom: 1px solid #fff;
}
.page-last-cont .btn-line {
  position: relative;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 20px 50px 20px 30px;
  color: #fff;
  background: #06C755;
  border-radius: 8px;
}
.page-last-cont .btn-facebook {
  background: #0865fe;
}
.page-last-cont .btn-line:after {
  position: absolute;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 24px;
  height: 24px;
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.2rem;
  color: #06C755;
  background: #fff;
  border-radius: 100%;
  right: 25px;
  top: calc(50% - 12px);
}
.page-last-cont .btn-facebook:after {
  color: #0865fe;
}
.page-last-cont .btn-line .ttl {
  font-size: 2.2rem;
  font-weight: bold;
  margin-right: 10px;
}
@media screen and (max-width: 600px) {
  .page-last-cont .btn-line .ttl {
    font-size: 2rem;
  }
}
.page-last-cont .btn-line i {
  margin-right: 10px;
}
.page-last-cont .btn-line p {
  font-size: 1.4rem;
}
.page-last-cont ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}
@media screen and (max-width: 1200px) {
  .page-last-cont ul {
    grid-template-columns: 100%;
  }
}
.page-last-cont ul li {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  color: #D34562;
}
.page-last-cont.is--for_business ul li {
  color: #208895;
}
.page-last-cont.is--visa_support ul li {
  color: #785c97;
}
.page-last-cont ul li h4 {
  font-size: 2rem;
  color: #D34562;
  background: #FDE3E3;
  text-align: center;
  padding: 10px;
  border-bottom: 1px dotted #d34562;
}
.page-last-cont.is--for_business ul li h4 {
  color: #208895;
  background: #eaf4f6;
  border-bottom: 1px dotted #208895;
}
.page-last-cont.is--visa_support ul li h4 {
  color: #785c97;
  background: #ececf4;
  border-bottom: #785c97;
}
@media screen and (max-width: 600px) {
  .page-last-cont ul li h4 {
    font-size: 1.8rem;
  }
}
.page-last-cont ul li h4 a {
  position: relative;
  color: #D34562;
  padding-right: 25px;
}
.page-last-cont.is--for_business ul li h4 a {
  color: #208895;
}
.page-last-cont.is--visa_support ul li h4 a {
  color: #785c97;
}
.page-last-cont ul li h4 a:after {
  position: absolute;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 19px;
  height: 19px;
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  background: #d34562;
  border-radius: 100%;
  right: 0;
  top: calc(50% - 10px);
}
.page-last-cont.is--for_business ul li h4 a:after {
  background: #208895;
}
.page-last-cont.is--visa_support ul li h4 a:after {
  background: #785c97;
}
.page-last-cont ul li .inner {
  font-size: 1.4rem;
  padding: 10px;
  font-weight: 500;
  text-align: center;
}
.page-last-cont ul li .inner .manrope {
  font-size: 1.8rem;
}
.page-last-cont ul li .inner .manrope a {
  text-decoration: none;
  font-size: 3rem;
  color: #d34562;
}
.page-last-cont.is--for_business ul li .inner .manrope a {
  color: #208895;
}
.page-last-cont.is--visa_support ul li .inner .manrope a {
  color: #785c97;
}
@media screen and (max-width: 600px) {
  .page-last-cont ul li .inner .manrope a {
    font-size: 2.5rem;
  }
}

.page-nav {
  width: 100%;
  background: #F5F5F5;
  border-radius: 10px;
  padding: 35px 45px;
}
.page-nav h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.page-nav-list {
  width: 100%;
}
.page-nav-list__item {
  position: relative;
  padding-left: 10px;
  line-height: 1.4;
}
.page-nav-list__item:not(:last-child) {
  margin-bottom: 10px;
}
.page-nav-list__item:before {
  position: absolute;
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: #4B4A4C;
  left: 0;
  top: 13px;
}
.page-nav-list__item:hover:before {
  background: #7F6CA3;
}
.page-nav-list__item a {
  font-size: 1.4rem;
  font-weight: 500;
}
.page-nav-list__under {
  width: 100%;
  padding-left: 30px;
  margin-bottom: 10px;
}
.page-nav-list__under ul li {
  position: relative;
  line-height: 1.4;
}
.page-nav-list__under ul li:not(:last-child) {
  margin-bottom: 5px;
}
.page-nav-list__under ul li:before {
  position: absolute;
  content: '';
  width: 5px;
  height: 1px;
  background: #4B4A4C;
  left: -10px;
  top: 14px;
}
.page-nav-list__under ul li a {
  font-size: 1.4rem;
  font-weight: 500;
}

.base-ul-list_01 {
  width: 100%;
}
.base-ul-list_01 li:not(.box) {
  font-weight: bold;
  color: #7F6CA3;
  border: 3px solid #f3f2f7;
  border-radius: 30px;
  padding: 10px 20px 10px 60px;
  background: url(./img/parts/check-icon.png) no-repeat top 20px left 25px;
  background-size: 18px 14px;
}
.base-ul-list_01 li:not(:last-child) {
  margin-bottom: 5px;
}
.base-ul-list_01 li.box {
  border: 3px solid #f3f2f7;
  border-radius: 20px;
  padding: 20px;
}
.base-ul-list_01 li.box h4 {
  position: relative;
  padding-left: 40px;
  color: #7F6CA3;
  background: url(./img/parts/check-icon.png) no-repeat top 10px left;
  background-size: 18px 14px;
}
.base-ul-list_01 li.box p {
  margin-top: 5px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}

.base-ul-list_02 {
  width: 100%;
}
.base-ul-list_02 li {
  padding: 30px 40px;
  background: #F5F5F2;
  border-radius: 10px;
}
.base-ul-list_02 li:not(:last-child) {
  margin-bottom: 15px;
}
.base-ul-list_02 li p {
  font-size: 1.6rem;
  line-height: 1.6;
}
.base-ul-list_02 li dl {
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.base-ul-list_02 li dl dt {
  width: 110px;
  height: 32px;
  background: #7F6EA3;
  border-radius: 16px;
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
  line-height: 32px;
  text-align: center;
  margin-right: 10px;
}
.base-ul-list_02 li dl dd {
  width: calc(100% - 120px);
  font-size: 2.4rem;
  font-weight: bold;
  color: #7F6EA3;
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .base-ul-list_02 li dl dd {
    width: 100%;
    font-size: 2rem;
    margin-top: 10px;
  }
}
.base-ul-list_02 li .inner {
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
.base-ul-list_02 li .inner .img {
  width: 29%;
  max-width: 240px;
}
@media screen and (max-width: 1024px) {
  .base-ul-list_02 li .inner .img {
    width: 100%;
    margin-top: 10px;
  }
}
.base-ul-list_02 li .inner p {
  width: 68%;
}
@media screen and (max-width: 1024px) {
  .base-ul-list_02 li .inner p {
    width: 100%;
  }
}

.base-ul-list_03 {
  width: 100%;
}
.base-ul-list_03 li {
  position: relative;
  font-size: 1.5rem;
  font-weight: 500;
  padding-left: 10px;
}
.base-ul-list_03 li:not(:last-child) {
  margin-bottom: 10px;
}
.base-ul-list_03 li:before {
  position: absolute;
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background: #4B4A4C;
  left: 0;
  top: 12px;
}

.base-ul-list_04 {
  width: 100%;
  overflow: hidden;
  border: 2px solid #ccc;
  border-radius: 10px;
}
.base-ul-list_04 li {
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.base-ul-list_04 li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.base-ul-list_04 li .l-box {
  width: 155px;
  font-weight: bold;
  padding: 15px 30px;
  background: #F5F5F5;
}
@media screen and (max-width: 600px) {
  .base-ul-list_04 li .l-box {
    width: 100%;
    padding: 10px 15px;
  }
}
.base-ul-list_04 li .r-box {
  width: calc(100% - 155px);
  font-weight: 500;
  padding: 15px 30px;
}
@media screen and (max-width: 600px) {
  .base-ul-list_04 li .r-box {
    width: 100%;
    padding: 10px 15px;
  }
}
.base-ul-list_04.is--lb li .l-box {
  width: 320px;
}
@media screen and (max-width: 650px) {
  .base-ul-list_04.is--lb li .l-box {
    width: 100%;
  }
}
.base-ul-list_04.is--lb li .r-box {
  width: calc(100% - 320px);
}
@media screen and (max-width: 650px) {
  .base-ul-list_04.is--lb li .r-box {
    width: 100%;
  }
}
.base-ul-list_04.col-green {
  border-color: #54AB79;
  color: #54AB79;
}
.base-ul-list_04.col-green li .l-box {
  background: #F4F8F3;
}
.base-ul-list_04.col-blue {
  border-color: #0D8BF2;
  color: #0D8BF2;
}
.base-ul-list_04.col-blue li .l-box {
  background: #F1F9FA;
}

.base-ol-list_01 {
  width: 100%;
  counter-reset: 0;
}
.base-ol-list_01 li {
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px 10px;
  counter-increment: count 1;
}
.base-ol-list_01 li:not(:last-child) {
  margin-bottom: 15px;
}
.base-ol-list_01 li:nth-child(n+10) .ttl .num:after {
  content: counter(count);
}
.base-ol-list_01 li .ttl {
  position: relative;
  width: 40%;
  padding: 0 30px;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.base-ol-list_01 li .ttl.flex-justify-start {
  justify-content: flex-start;
}
.base-ol-list_01 li .ttl .star span {
  font-size: 1.4rem;
  background: #ec9217;
  color: #fff;
  padding: 5px 15px;
  border-radius: 10px;
  line-height: 1;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .base-ol-list_01 li .ttl {
    width: 100%;
    padding: 0 10px;
    padding-bottom: 10px;
  }
}
.base-ol-list_01 li .ttl:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  border-right: 2px dotted #ccc;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .base-ol-list_01 li .ttl:after {
    width: 100%;
    height: 1;
    border-right: none;
    border-bottom: 2px dotted #ccc;
  }
}
.base-ol-list_01 li .ttl .num {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #7F6EA3;
}
.base-ol-list_01 li .ttl .num:after {
  content: "0" counter(count);
}
.base-ol-list_01 li .ttl h4 {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #7F6EA3;
}
@media screen and (max-width: 768px) {
  .base-ol-list_01 li .ttl h4 {
    font-size: 2rem;
  }
}
.base-ol-list_01 li .text {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 60%;
  min-height: 100px;
  padding: 0 30px;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .base-ol-list_01 li .text {
    width: 100%;
    min-height: auto;
    padding: 0 10px;
    margin-top: 10px;
  }
}

.base-ol-list_02 {
  width: 100%;
  counter-reset: 0;
}
.base-ol-list_02__item {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  counter-increment: count 1;
}
.base-ol-list_02__item:not(:last-child) {
  margin-bottom: 20px;
}
.base-ol-list_02__item .box-ttl {
  position: relative;
  font-size: 2.4rem;
  line-height: 1.2;
  color: #7F6CA3;
  padding: 15px 20px 15px 80px;
}
.base-ol-list_02__item .box-ttl:not(:last-child) {
  border-bottom: 2px dotted #ccc;
}
@media screen and (max-width: 600px) {
  .base-ol-list_02__item .box-ttl {
    font-size: 2rem;
    padding-left: 60px;
  }
}
.base-ol-list_02__item .box-ttl:before {
  position: absolute;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  content: counter(count);
  width: 60px;
  height: 100%;
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: #fff;
  background: #7F6CA3;
  left: 0;
  top: 0;
}
@media screen and (max-width: 600px) {
  .base-ol-list_02__item .box-ttl:before {
    width: 45px;
    font-size: 2.5rem;
  }
}
.base-ol-list_02 .content {
  width: 100%;
  padding: 20px 30px;
  font-size: 1.6rem;
  line-height: 1.6;
}

.other-page-link {
  width: 100%;
}
.other-page-link li {
  width: 100%;
}
.other-page-link li:not(:last-child) {
  margin-bottom: 15px;
}
.other-page-link li a {
  position: relative;
  display: block;
  width: 100%;
  padding: 30px 60px 30px 40px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
  color: #7F6CA3;
}
@media screen and (max-width: 600px) {
  .other-page-link li a {
    font-size: 2rem;
    padding: 15px 40px 15px 20px;
  }
}
.other-page-link li a:after {
  position: absolute;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 32px;
  height: 32px;
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
  background: #7F6CA3;
  border-radius: 100%;
  right: 25px;
  top: calc(50% - 16px);
}
@media screen and (max-width: 600px) {
  .other-page-link li a:after {
    width: 28px;
    height: 28px;
    top: calc(50% - 14px);
    right: 15px;
  }
}
.other-page-link li a:hover {
  opacity: 1;
  background: #F5F2F9;
  border: 2px solid #7F6CA3;
}

.base-stylebox_01 {
  width: 100%;
  background: #F5F5F2;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-left: 2px solid #7F6CA3;
  padding: 20px 30px;
}

.base-stylebox_02 {
  position: relative;
  width: 100%;
  padding: 65px 50px;
  border: 3px solid #f2f2f2;
  background: #F9F9F9;
  border-radius: 60px;
}
@media screen and (max-width: 768px) {
  .base-stylebox_02 {
    padding: 35px 30px;
    border-radius: 40px;
  }
}
.base-stylebox_02:before {
  position: absolute;
  content: '';
  width: 75px;
  height: 53px;
  top: -15px;
  left: 45px;
  background: url(./img/parts/comma-top.png) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .base-stylebox_02:before {
    width: 45px;
    height: 32px;
    background-size: 45px auto;
    left: 25px;
  }
}
.base-stylebox_02:after {
  position: absolute;
  content: '';
  width: 75px;
  height: 53px;
  bottom: -15px;
  right: 45px;
  background: url(./img/parts/comma-bottom.png) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .base-stylebox_02:after {
    width: 45px;
    height: 32px;
    background-size: 45px auto;
    right: 25px;
  }
}

.base-accordion-list01 {
  width: 100%;
}
.base-accordion-list01 .base-accordion-block {
  border-top: 1px solid #ccc;
}
.base-accordion-list01 .base-accordion-block:last-child {
  border-bottom: 1px solid #ccc;
}
.base-accordion-list01 .base-accordion-block.open {
  background: #FAFAF8;
}
.base-accordion-list01 .base-accordion-block.open .ttl .boxToggle:after {
  transform: rotate(180deg);
}
.base-accordion-list01 .base-accordion-block.open .text {
  line-height: 1.6;
  color: #4B4A4D;
  visibility: visible;
  padding: 0 30px 30px;
  display: block;
}
@media screen and (max-width: 768px) {
  .base-accordion-list01 .base-accordion-block.open .text {
    padding-bottom: 15px;
  }
}
.base-accordion-list01 .base-accordion-block.is--faq .ttl h4 {
  padding-left: 45px;
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .base-accordion-list01 .base-accordion-block.is--faq .ttl h4 {
    padding-left: 35px;
  }
}
.base-accordion-list01 .base-accordion-block.is--faq .ttl h4:before {
  position: absolute;
  content: 'Q';
  width: 34px;
  height: 34px;
  background: #7F6CA3;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1.9rem;
  color: #fff;
  border-radius: 100%;
  left: 0;
  top: 0;
  text-align: center;
  line-height: 34px;
}
@media screen and (max-width: 600px) {
  .base-accordion-list01 .base-accordion-block.is--faq .ttl h4:before {
    width: 25px;
    height: 25px;
    font-size: 1.5rem;
    line-height: 25px;
    top: 3px;
  }
}
.base-accordion-list01 .base-accordion-block.is--faq .text {
  position: relative;
  padding-left: 75px;
}
@media screen and (max-width: 600px) {
  .base-accordion-list01 .base-accordion-block.is--faq .text {
    padding-left: 45px;
  }
}
.base-accordion-list01 .base-accordion-block.is--faq .text:before {
  position: absolute;
  content: 'A';
  width: 30px;
  height: 30px;
  border: 2px solid #7F6CA3;
  background: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1.9rem;
  color: #7F6CA3;
  border-radius: 100%;
  left: 30px;
  top: 0;
  text-align: center;
  line-height: 30px;
}
@media screen and (max-width: 600px) {
  .base-accordion-list01 .base-accordion-block.is--faq .text:before {
    width: 21px;
    height: 21px;
    font-size: 1.5rem;
    line-height: 21px;
    left: 15px;
    top: 3px;
  }
}
.base-accordion-list01 .base-accordion-block .ttl {
  position: relative;
  padding: 20px 30px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .base-accordion-list01 .base-accordion-block .ttl {
    padding: 10px 30px;
  }
}
@media screen and (max-width: 600px) {
  .base-accordion-list01 .base-accordion-block .ttl {
    padding: 10px 15px;
  }
}
.base-accordion-list01 .base-accordion-block .ttl h4 {
  position: relative;
  font-size: 2.4rem;
  padding-left: 20px;
  color: #7F6CA3;
}
@media screen and (max-width: 600px) {
  .base-accordion-list01 .base-accordion-block .ttl h4 {
    font-size: 2rem;
  }
}
.base-accordion-list01 .base-accordion-block .ttl h4:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: #7F6CA3;
  border-radius: 100%;
  left: 0;
  top: 20px;
}
@media screen and (max-width: 600px) {
  .base-accordion-list01 .base-accordion-block .ttl h4:before {
    top: 14px;
  }
}
.base-accordion-list01 .base-accordion-block .ttl .boxToggle {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  right: 20px;
  top: 28px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .base-accordion-list01 .base-accordion-block .ttl .boxToggle {
    top: 20px;
  }
}
@media screen and (max-width: 600px) {
  .base-accordion-list01 .base-accordion-block .ttl .boxToggle {
    width: 18px;
    height: 18px;
    top: 20px;
    right: 10px;
  }
}
.base-accordion-list01 .base-accordion-block .ttl .boxToggle:before, .base-accordion-list01 .base-accordion-block .ttl .boxToggle:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 4px;
  background: #7F6CA3;
  border-radius: 2px;
  top: calc(50% - 2px);
  left: 0;
}
.base-accordion-list01 .base-accordion-block .ttl .boxToggle:after {
  transform: rotate(90deg);
  transition: all .3s;
}
.base-accordion-list01 .base-accordion-block .text {
  font-size: 1.6rem;
  line-height: 0;
  color: transparent;
  padding: 0;
  visibility: hidden;
  display: none;
}

.attention-text {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
  padding-left: 30px;
  color: #7F6DA3;
}
.attention-text:before {
  position: absolute;
  content: '\21';
  width: 17px;
  height: 17px;
  border: 2px solid #7F6CA3;
  font-family: "FontAwesome 5 Free";
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 17px;
  text-align: center;
  left: 0;
  top: 8px;
  border-radius: 100%;
}

.symbol01 {
  position: relative;
  padding-left: 20px;
}
.symbol01:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: #7F6CA3;
  border-radius: 100%;
  left: 0;
  top: 13px;
}

.txt-bk_yellow {
  background: #FFFF99;
}

.text-deco01 {
  border-bottom: 1px solid #4B4A4D;
}

/***************************

object/project/disability_pension.scss

***************************/
.disability_pension .subpage__icon {
  right: 80px;
}
@media screen and (max-width: 1024px) {
  .disability_pension .subpage__icon {
    right: -10px;
    width: 40%;
  }
}

/***************************

object/project/first_contact.scss

***************************/
.characteristics-list {
  width: 100%;
}
.characteristics-list li {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.characteristics-list li:not(:last-child) {
  margin-bottom: 30px;
}
.characteristics-list li .text {
  position: relative;
  width: 71%;
  min-height: 340px;
  padding: 70px 60px;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .characteristics-list li .text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .characteristics-list li .text {
    padding: 50px 30px 30px;
    min-height: auto;
  }
}
.characteristics-list li .text .num {
  position: absolute;
  content: '';
  width: 42px;
  height: 30px;
  font-weight: bold;
  font-size: 1.6rem;
  font-style: italic;
  text-align: center;
  line-height: 30px;
  border-top-right-radius: 25px 20px;
  border-top-left-radius: 25px 20px;
  border-bottom-right-radius: 25px 20px;
  border-bottom-left-radius: 25px 20px;
  top: 30px;
  left: 20px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .characteristics-list li .text .num {
    top: 15px;
  }
}
.characteristics-list li .text .inner {
  color: #fff;
}
.characteristics-list li .text .inner h4 {
  font-size: 3.4rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .characteristics-list li .text .inner h4 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .characteristics-list li .text .inner h4 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
}
.characteristics-list li .img {
  width: 100%;
  min-height: 340px;
}
@media screen and (min-width: 1025px) {
  .characteristics-list li .img {
    position: absolute;
    width: 46%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
  }
}
@media screen and (max-width: 600px) {
  .characteristics-list li .img {
    min-height: 220px;
  }
}
.characteristics-list li:first-child .text {
  background: url(./img/first_contact/characteristics-bk01.png) no-repeat center right/cover;
}
@media screen and (max-width: 1024px) {
  .characteristics-list li:first-child .text {
    background: #5F4987;
  }
}
.characteristics-list li:first-child .text .num {
  color: #5F4987;
}
.characteristics-list li:first-child .img {
  background: url(./img/first_contact/characteristics-img01.jpg) no-repeat center right/cover;
}
@media screen and (max-width: 600px) {
  .characteristics-list li:first-child .img {
    background-position: top right !important;
  }
}
.characteristics-list li:nth-child(2) .text {
  background: url(./img/first_contact/characteristics-bk02.png) no-repeat center right/cover;
}
@media screen and (max-width: 1024px) {
  .characteristics-list li:nth-child(2) .text {
    background: #705595;
  }
}
.characteristics-list li:nth-child(2) .text .num {
  color: #705595;
}
.characteristics-list li:nth-child(2) .img {
  background: url(./img/first_contact/characteristics-img02.jpg) no-repeat center right/cover;
}
@media screen and (max-width: 600px) {
  .characteristics-list li:nth-child(2) .img {
    background-position: top right !important;
  }
}
.characteristics-list li:nth-child(3) .text {
  background: url(./img/first_contact/characteristics-bk03.png) no-repeat center right/cover;
}
@media screen and (max-width: 1024px) {
  .characteristics-list li:nth-child(3) .text {
    background: #806FA3;
  }
}
.characteristics-list li:nth-child(3) .text .num {
  color: #806FA3;
}
.characteristics-list li:nth-child(3) .img {
  background: url(./img/first_contact/characteristics-img03.jpg) no-repeat center right/cover;
}
.characteristics-list li:nth-child(4) .text {
  background: url(./img/first_contact/characteristics-bk04.png) no-repeat center right/cover;
}
@media screen and (max-width: 1024px) {
  .characteristics-list li:nth-child(4) .text {
    background: #806FA3;
  }
}
.characteristics-list li:nth-child(4) .text .num {
  color: #806FA3;
}
.characteristics-list li:nth-child(4) .img {
  background: url(./img/first_contact/characteristics-img04.jpg) no-repeat center right/cover;
}
.characteristics-list li:last-child .text {
  background: url(./img/first_contact/characteristics-bk05.png) no-repeat center right/cover;
}
@media screen and (max-width: 1024px) {
  .characteristics-list li:last-child .text {
    background: #BBACD2;
  }
}
.characteristics-list li:last-child .text .num {
  color: #BBACD2;
}
.characteristics-list li:last-child .img {
  background: url(./img/first_contact/characteristics-img05.jpg) no-repeat center right/cover;
}
@media screen and (max-width: 600px) {
  .characteristics-list li:last-child .img {
    background-position: top right !important;
  }
}

/***************************

object/project/price.scss

***************************/
.price-table-wrap {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 10px;
}

@media screen and (max-width: 1130px) {
  .price-table-wrap {
    overflow-x: scroll;
  }
}

.price-table {
  width: 100%;
  min-width: 650px;
}
@media screen and (max-width: 600px) {
  .price-table {
    min-width: 500px;
  }
}
@media screen and (max-width: 768px) {
  .price-table thead th {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
@media screen and (max-width: 600px) {
  .price-table thead th {
    font-size: 1.4rem;
  }
}
.price-table thead th:first-child {
  width: 49%;
  background: #F5F5F5;
}
@media screen and (max-width: 768px) {
  .price-table thead th:first-child {
    width: 250px;
  }
}
.price-table thead th:not(:first-child) {
  width: calc(51% / 2);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .price-table thead th:not(:first-child) {
    width: calc((100% - 250px) / 2);
  }
}
.price-table thead th:nth-child(2) {
  text-align: center;
  background: #0D8BF2;
  padding: 20px 10px;
  border-right: 3px solid #0D8BF2;
  border-left: 3px solid #0D8BF2;
}
@media screen and (max-width: 768px) {
  .price-table thead th:nth-child(2) {
    padding: 10px;
  }
}
.price-table thead th:last-child {
  text-align: center;
  background: #54AB79;
  padding: 20px 10px;
  border-right: 3px solid #54AB79;
  border-left: 3px solid #54AB79;
}
@media screen and (max-width: 768px) {
  .price-table thead th:last-child {
    padding: 10px;
  }
}
.price-table tr {
  border-bottom: 1px solid #ccc;
}
.price-table tr:not(:first-child):last-child {
  border-bottom: none;
}
.price-table tbody tr:last-child td:nth-child(2) {
  border-bottom: 3px solid #0D8BF2;
}
.price-table tbody tr:last-child td:last-child {
  border-bottom: 3px solid #54AB79;
  border-bottom-right-radius: 10px;
}
.price-table tbody td:first-child {
  padding: 20px 30px;
  background: #F5F5F5;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .price-table tbody td:first-child {
    font-size: 1.6rem;
    padding: 10px 15px;
  }
}
@media screen and (max-width: 600px) {
  .price-table tbody td:first-child {
    font-size: 1.4rem;
  }
}
.price-table tbody td:nth-child(2) {
  text-align: center;
  padding: 20px 10px;
  border-right: 3px solid #0D8BF2;
  border-left: 3px solid #0D8BF2;
}
.price-table tbody td:last-child {
  text-align: center;
  padding: 20px 10px;
  border-right: 3px solid #54AB79;
  border-left: 3px solid #54AB79;
}
.price-table tbody td:last-child.true:after {
  border-color: #54AB79;
}
.price-table tbody td:last-child.false {
  position: relative;
}
.price-table tbody td:last-child.false:before, .price-table tbody td:last-child.false:after {
  position: absolute;
  content: '';
  width: 4px;
  height: 24px;
  background: #54AB79;
  border-radius: 2px;
  top: calc(50% - 12px);
  left: calc(50% - 2px);
}
.price-table tbody td:last-child.false:before {
  transform: rotate(45deg);
}
.price-table tbody td:last-child.false:after {
  transform: rotate(-45deg);
}
.price-table tbody td.true {
  position: relative;
}
.price-table tbody td.true:after {
  position: absolute;
  content: '';
  width: 18px;
  height: 18px;
  border: 4px solid #0D8BF2;
  border-radius: 100%;
  top: calc(50% - 13px);
  left: calc(50% - 13px);
}

.price-table-02 {
  min-width: 650px;
}
@media screen and (max-width: 600px) {
  .price-table-02 {
    min-width: 500px;
  }
}
.price-table-02 tr:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.price-table-02 th {
  width: 24%;
  padding: 20px;
  font-weight: bold;
  border-right: 1px solid #ccc;
  background: #F5F5F5;
}
@media screen and (max-width: 768px) {
  .price-table-02 th {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .price-table-02 th {
    width: 130px;
    padding: 10px;
    font-size: 1.4rem;
  }
}
.price-table-02 td {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .price-table-02 td {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .price-table-02 td {
    padding: 10px;
    font-size: 1.4rem;
  }
}
.price-table-02 td:nth-child(2) {
  width: 15%;
  border-right: 1px solid #ccc;
  text-align: center;
  padding: 20px 10px;
}
@media screen and (max-width: 600px) {
  .price-table-02 td:nth-child(2) {
    width: 95px;
  }
}
.price-table-02 td:last-child {
  width: 61%;
}

@media screen and (max-width: 600px) {
  .price-table-03 {
    min-width: 500px;
  }
}
.price-table-03 th {
  width: 24%;
  padding: 20px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  background: #F5F5F5;
}
@media screen and (max-width: 768px) {
  .price-table-03 th {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .price-table-03 th {
    padding: 10px;
    font-size: 1.4rem;
  }
}
.price-table-03 td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .price-table-03 td {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .price-table-03 td {
    font-size: 1.4rem;
  }
}
.price-table-03 td.last {
  width: 22%;
  text-align: center;
  border-left: 1px solid #ccc;
}
.price-table-03.is-04 td:last-child {
  width: 22%;
  padding: 10px 15px;
  border-left: 1px solid #ccc;
}

/***************************

object/project/about.scss

***************************/
.person-image {
  position: relative;
  width: 100%;
  margin: 0 auto 50px;
  text-align: center;
}
.person-image .person {
  position: relative;
  display: inline-block;
  border: 10px solid #806FA3;
  border-radius: 10px;
  margin: 25px 35px 45px;
  z-index: 1;
}
.person-image .person:before {
  position: absolute;
  content: '';
  width: 140px;
  height: 181px;
  background: url(./img/about/frame-cat01.png) no-repeat center center;
  left: -35px;
  top: -25px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .person-image .person:before {
    width: 120px;
    height: 154px;
    background-size: 120px auto;
  }
}
@media screen and (max-width: 600px) {
  .person-image .person:before {
    width: 100px;
    height: 129px;
    background-size: 100px auto;
  }
}
.person-image .person:after {
  position: absolute;
  content: '';
  width: 135px;
  height: 206px;
  background: url(./img/about/frame-cat02.png) no-repeat center center;
  right: -35px;
  bottom: -45px;
}
@media screen and (max-width: 768px) {
  .person-image .person:after {
    width: 105px;
    height: 160px;
    background-size: 105px auto;
  }
}
@media screen and (max-width: 600px) {
  .person-image .person:after {
    width: 95px;
    height: 145px;
    background-size: 95px auto;
  }
}

.about-info {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .about-info {
    margin-bottom: 40px;
  }
}
.about-info div {
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
}
.about-info div:first-child {
  border-top: 1px solid #ccc;
}
.about-info dt {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 190px;
  font-weight: bold;
  background: #F5F5F5;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .about-info dt {
    width: 100%;
    padding: 10px 15px;
  }
  .about-info dt .tab_none {
    display: none;
  }
}
.about-info dd {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100% - 190px);
  font-weight: bold;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .about-info dd {
    width: 100%;
    padding: 10px 15px;
  }
}

.build-image {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 600px) {
  .build-image {
    grid-template-columns: 100%;
  }
}
.build-image li {
  text-align: center;
}
.build-image img {
  border-radius: 10px;
}

.access-map {
  position: relative;
  width: 100%;
  padding-top: 52%;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .access-map {
    padding-top: 80%;
  }
}
.access-map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/***************************

object/project/information.scss

***************************/
.information .information-list {
  max-width: 100%;
  width: 100%;
  margin-bottom: 70px;
}
.information .information-list__item a {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.information .information-list__item a .cat {
  width: 190px;
  color: #806FA3;
}
@media screen and (max-width: 1024px) {
  .information .information-list__item a .cat {
    margin-right: 0;
  }
}
@media screen and (max-width: 425px) {
  .information .information-list__item a .cat {
    width: 160px;
    font-size: 1.4rem;
  }
}
.information .information-list__item a h4 {
  width: calc(100% - 300px);
}
@media screen and (max-width: 1024px) {
  .information .information-list__item a h4 {
    width: 100%;
  }
}

.information-cat {
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  margin-bottom: 20px;
}
.information-cat dt {
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  color: #806FA3;
  letter-spacing: 0.04em;
  margin-right: 20px;
}
.information-cat dd {
  position: relative;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #806FA3;
  padding: 0 20px;
}
.information-cat dd:before {
  position: absolute;
  left: 0;
  content: '(';
}
.information-cat dd:after {
  position: absolute;
  right: 0;
  content: ')';
}

.detail-wrap {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 35px;
  padding: 20px 0 40px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.detail-wrap h2 {
  position: relative;
  font-size: 4rem;
  color: #7F6DA3;
  padding-left: 60px;
}

.detail-wrap h2:before {
  position: absolute;
  content: url(./img/common/hdg-deco01.png);
  left: 0;
}

.detail-wrap h3 {
  position: relative;
  font-size: 3.4rem;
  color: #7F6DA3;
  padding-left: 50px;
}

.detail-wrap h3:before {
  position: absolute;
  content: '';
  width: 30px;
  height: 7px;
  border-radius: 5px;
  background: linear-gradient(280deg, #A0D3B7 0%, #91D2E3 50%, #83B3E0 100%);
  left: 0;
  top: 28px;
}

.detail-wrap h4 {
  position: relative;
  font-size: 2.8rem;
  color: #7F6CA3;
  letter-spacing: 0.08em;
  padding-left: 20px;
  text-decoration: underline;
  text-decoration-thickness: 10px;
  text-underline-offset: -5px;
  text-decoration-color: rgba(127, 108, 163, 0.15);
}

.detail-wrap h4:before {
  position: absolute;
  content: '';
  width: 14px;
  height: 14px;
  background: #7F6CA3;
  border-radius: 100%;
  left: 0;
  top: 20px;
}

.detail-wrap h5 {
  display: inline-block;
  font-weight: 500;
  padding: 5px 20px;
  letter-spacing: 0.08em;
  background: #7F6CA3;
  border-radius: 30px;
  border-bottom-left-radius: 0;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .detail-wrap h2 {
    font-size: 3.5rem;
  }

  .detail-wrap h3 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 600px) {
  .detail-wrap h2 {
    font-size: 2.8rem;
    padding-left: 30px;
  }

  .detail-wrap h2:before {
    content: url(./img/common/hdg-deco01_SP.png);
  }

  .detail-wrap h3 {
    font-size: 2.5rem;
    line-height: 1.4;
    padding-left: 30px;
  }

  .detail-wrap h3:before {
    width: 20px;
    height: 4px;
    top: 14px;
  }

  .detail-wrap h4 {
    font-size: 2.3rem;
  }
}

/***************************

object/project/contact.scss

***************************/
.contact-link {
  max-width: 720px;
  width: 100%;
  margin-top: 50px;
}
.contact-link.thank {
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .contact-link {
    margin-top: 30px;
  }
  .contact-link.thank {
    margin: 30px auto 0;
  }
}
.contact-link li:not(:last-child) {
  margin-bottom: 10px;
}
.contact-link li:not(.tel) a {
  position: relative;
  width: 100%;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 45px 20px 25px;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .contact-link li:not(.tel) a {
    padding: 10px 45px 10px 25px;
  }
}
.contact-link li:not(.tel) a.line {
  background: #06C755;
}
.contact-link li:not(.tel) a.line:after {
  color: #06C755;
}
.contact-link li:not(.tel) a.facebook {
  background: #0866FF;
}
.contact-link li:not(.tel) a.facebook:after {
  color: #0866FF;
}
.contact-link li:not(.tel) a:after {
  position: absolute;
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 100%;
  right: 20px;
  top: calc(50% - 12px);
}
.contact-link li:not(.tel) a h4 {
  font-size: 2.2rem;
  margin-right: 10px;
}
.contact-link li:not(.tel) a p {
  font-size: 1.4rem;
}
.contact-link li.tel {
  padding: 15px 0;
  border-radius: 8px;
  background: #eee;
  line-height: 1.4;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .contact-link li.tel {
    -webkit-box-pack: flex-start;
    -ms-flex-pack: flex-start;
    justify-content: flex-start;
  }
}
.contact-link li.tel .manrope {
  font-size: 2.4rem;
  color: #7F6EA3;
  border-right: 2px dotted #ccc;
}
@media screen and (max-width: 600px) {
  .contact-link li.tel .manrope {
    font-size: 2rem;
    border-right: none;
  }
}
.contact-link li.tel .manrope a {
  font-size: 4.5rem;
  font-weight: 500;
  color: #7F6EA3;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .contact-link li.tel .manrope a {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 600px) {
  .contact-link li.tel .manrope a {
    font-size: 3rem;
  }
}
.contact-link li.tel p {
  font-size: 1.4rem;
  padding: 0 15px;
}

.form-wrap {
  width: 100%;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .form-wrap {
    margin-top: 30px;
  }
}
.form-wrap dl {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .form-wrap dl {
    padding: 15px 0;
  }
}
.form-wrap dl:last-of-type {
  border-bottom: 1px solid #ccc;
}
.form-wrap dl div {
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.form-wrap dl dt {
  width: 270px;
}
@media screen and (max-width: 768px) {
  .form-wrap dl dt {
    width: 100%;
    margin-bottom: 15px;
  }
}
.form-wrap dl dt span {
  display: inline-block;
  width: 80px;
  height: 32px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background: #7F6EA3;
  border-radius: 20px;
  line-height: 32px;
  text-align: center;
  margin-left: 10px;
}
.form-wrap dl dt.flexbox {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.form-wrap dl dd {
  width: calc(100% - 270px);
}
@media screen and (max-width: 768px) {
  .form-wrap dl dd {
    width: 100%;
  }
}

.radio-box {
  margin-bottom: 10px;
}

.privacy-box {
  width: 100%;
  height: 240px;
  overflow-y: scroll;
  margin-top: 40px;
  margin-bottom: 40px;
  border: 1px solid #ccc;
}
.mw_wp_form_confirm .privacy-box {
  display: none;
}

.privacy-box::-webkit-scrollbar {
  width: 10px;
}
.privacy-box::-webkit-scrollbar-track {
  background-color: transparent;
}
.privacy-box::-webkit-scrollbar-thumb {
  background-color: #806FA3;
}
.privacy-box .inner {
  padding: 35px 40px;
}
.privacy-box .inner h4 {
  font-size: 2rem;
  color: #737274;
  margin-bottom: 20px;
}
.privacy-box .inner p {
  font-size: 1.4rem;
  color: #737274;
}
.privacy-box .inner li {
  font-size: 1.4rem;
  color: #737274;
}

.privacy-box .inner span.fz-20.bold {
  font-size: 1.8rem;
  margin-right: 10px;
}

.privacy-box .inner span.fz-20.bold:after {
  content: '.';
}

.privacy-check {
  text-align: center;
  margin-bottom: 30px;
}

.mw_wp_form_confirm .privacy-check {
  display: none;
}

.mw_wp_form_confirm .confirm_none {
  display: none;
}

.input_wrapper {
  display: block;
  max-width: 305px;
  width: 100%;
  padding: 4px;
  background: linear-gradient(160deg, #F9F5F2 0%, #E8EEFA 50%, #D3DEEF 100%);
  border-radius: 50px;
  margin: 0 auto;
}

.input_wrapper.is--back {
  padding: 0;
}

.mw_wp_form_confirm .input_wrapper {
  margin-top: 30px;
}

.mw_wp_form_confirm .input_wrapper.is--back {
  padding: 4px;
}

.input_wrapper .form_btn {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-align: center;
  color: #7F6EA3;
  background: url(./img/common/btn-01-arrow.png) no-repeat;
  background-position: center right 30px;
  background-color: #fff;
  border-radius: 50px;
  padding: 30px 60px;
  transition: all .6s;
  border: none;
  cursor: pointer;
}
.input_wrapper.is--back .form_btn {
  background: url(./img/common/btn-back-arrow.png) no-repeat;
  background-position: center left 30px;
  background-color: #fff;
}
.input_wrapper .form_btn:hover {
  background: url(./img/common/btn-01-arrow.png) no-repeat;
  background-position: center right 20px;
  background-color: #fff;
}
.input_wrapper.is--back .form_btn:hover {
  background: url(./img/common/btn-back-arrow.png) no-repeat;
  background-position: center left 20px;
  background-color: #fff;
}
@media screen and (max-width: 500px) {
  .input_wrapper .form_btn {
    padding: 15px 60px;
  }
}

.thank-wrap {
  width: 100%;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  .thank-wrap {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}

.mwform-radio-field {
  display: block;
  width: 100%;
  padding: 0;
  margin-right: 40px;
}

.mwform-radio-field input[type=radio] {
  display: none;
}

.mwform-radio-field .mwform-radio-field-text,
.mwform-checkbox-field label {
  position: relative;
  padding: 0 0 0 30px;
  cursor: pointer;
  line-height: 2;
  font-size: 1.8rem;
  line-height: 1.4;
}

.mwform-radio-field .mwform-radio-field-text::after, .mwform-radio-field .mwform-radio-field-text::before {
  position: absolute;
  content: "";
  display: block;
  transition: all .3s;
}

.mwform-radio-field .mwform-radio-field-text::after {
  left: 0;
  top: 7px;
  width: 15px;
  height: 15px;
  background: #fff;
  border: 1px solid #A8A8A9;
  border-radius: 50%;
}

.mwform-radio-field .mwform-radio-field-text::before {
  left: 3px;
  top: 10px;
  margin-top: 0;
  width: 11px;
  height: 11px;
  background: #7F6EA3;
  border-radius: 100%;
  opacity: 0;
  z-index: 1;
  border: 0;
}

.mwform-radio-field input[type=radio]:checked + .mwform-radio-field-text::before,
.mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}

.mwform-checkbox-field {
  display: inline-block;
  margin-right: 20px;
  padding: 5px 0;
}
.mwform-checkbox-field:after {
  display: inline-block;
  content: '必須';
  width: 68px;
  height: 27px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  background: #7F6EA3;
  border-radius: 20px;
  line-height: 27px;
  text-align: center;
  margin-left: 10px;
}

.mwform-checkbox-field [type="checkbox"] {
  display: none;
}

.mwform-checkbox-field label {
  position: relative;
  padding-left: 40px;
  cursor: pointer;
}

.mwform-checkbox-field label::before {
  width: 20px;
  height: 20px;
  content: '';
  position: absolute;
  left: 0;
  top: calc(50% - 11px);
  background: #FFF;
  border: 1px solid #cdcdcd;
}

.mwform-checkbox-field-text {
  font-size: 1.6rem;
  line-height: 1.2;
  white-space: break-spaces;
}

.mwform-checkbox-field-text::after {
  width: 15px;
  height: 8px;
  border: 3px solid #7F6EA3;
  content: '';
  position: absolute;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 5px;
  top: 3px;
  border-top: none;
  border-right: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}


/* 240722 */
.base-accordion-list01 .base-accordion-block .text .spot-inner {
  display: none;
}

.base-accordion-list01 .base-accordion-block.open .text .spot-inner {
  display: block;
}

@media screen and (max-width: 1260px) {
  .base-accordion-list01 .base-accordion-block.open .text .spot-inner .price-table-wrap {
    overflow-x: scroll;
  }
}

.spot-table-01,
.spot-table-02 {
  min-width: 700px;
  background: #fff;
  border-radius: 10px;
}

.spot-table-02 tr:not(:first-child) th {
  border-top: 1px solid #ccc;
}

.spot-table-02 tr:not(:first-child) td {
  border-top: 1px solid #ccc;
}

.spot-table-01 tr td,
.spot-table-02 tr td {
  border-left: 1px solid #ccc;
}

.spot-table-01 th {
  font-weight: bold;
  width: calc(100% - 170px);
  padding: 10px;
  background: #F5F5F5;
}

.spot-table-01 td {
  width: 170px;
  padding: 10px;
}


.spot-table-02 th {
  font-weight: bold;
  text-align: center;
  width: 170px;
  padding: 10px;
  background: #F5F5F5;
}

.spot-table-02 td {
  padding: 10px;
}

.spot-table-02 .box {
  width: 100px;
  text-align: center;
}

.spot-table-02 .price {
  width: 170px;
}

.support04-table-wrap {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 15px;
}

.support04-table01 {
  min-width: 770px;
  width: 100%;
}

.support04-table01 tr:not(:first-child) {
  border-top: 1px solid #ccc;
}

.support04-table01 th,
.support04-table01 td {
  padding: 10px 15px;
}

.support04-table01 th:not(:first-child),
.support04-table01 td:not(:first-child) {
  border-left: 1px solid #ccc;
}

.support04-table01 th {
  background: #F5F5F5;
}

.support04-table01 th:first-child {
  border-top-left-radius: 15px;
}

.support04-table01 th:last-child {
  border-top-right-radius: 15px;
}

.support04-table01 td:first-child {
  text-align: center;
}

.support04-table01 td:not(:first-child) {
  text-align: right;
}


@media screen and (max-width: 1260px) {
  .support04-table-wrap {
    overflow-x: scroll;
  }
}

.support04-table02 {
  min-width: 770px;
  width: 100%;
}

.support04-table02 div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.support04-table02 div:not(:first-child) {
  border-top: 1px solid #ccc;
}

.support04-table02 div:first-child dt,
.support04-table02 div:first-child dd {
  background: #F5F5F5;
}

.support04-table02 div:first-child dt {
  border-top-left-radius: 15px;
}

.support04-table02 div:first-child dd {
  border-top-right-radius: 15px;
}

.support04-table02 dt,
.support04-table02 dd {
  padding: 10px 15px;
}

.support04-table02 dd {
  border-left: 1px solid #ccc;
}

/* 240731 */
.head-under-wrap {
  position: fixed;
  top: 170px;
  left: 0;
  width: 100%;
  background: rgba(128, 111, 163, .7);
  padding: 80px 50px 50px;
  display: none;
  opacity: 0;
  visibility: hidden;
}

.head-under-wrap.hov {
  display: block;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.head-under-wrap .inner {
  width: 100%;
  padding: 30px 50px;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 15px;
}

.head-under-wrap .inner .head-under:not(:last-child) {
  margin-right: 50px;
}

.head-under_item:not(:last-child) {
  margin-bottom: 10px;
}

.head-under_item_inner {
  position: relative;
  padding-left: 40px;
}

.head-under_item_inner:not(:last-child) {
  margin-bottom: 10px;
}

.head-under_item_inner::before {
  position: absolute;
  content: '';
  width: 10px;
  height: 3px;
  background: #806FA3;
  left: 20px;
  top: calc(50% - 1.5px);
}

.head-under_item_inner a {
  font-size: 1.5rem;
}

@media screen and (max-width: 1450px) {
  .head-under-wrap {
    top: 210px;
  }
}

@media screen and (max-width: 1140px) {
  .head-under-wrap {
    top: 250px;
  }
}